Version Description
3/Apr/2018 =
FEATURE: Add a "Database only" option to the UpdraftPlus email backup options
FEATURE: An UpdraftPlus add-on (paid) to run the backup process through WP CLI
FIX: Restoration did not display the decryption passphrase input (but always used the saved one)
FIX: Browse content download file was not working in Windows hosting
FIX: The wrong default for the 'Delete local backup' setting was applied if you had never saved your settings
TWEAK: Prevent a PHP notice showing when testing S3 storage
TWEAK: Prevent a PHP notice when downloading from Dropbox
TWEAK: Improved the migrate UI
TWEAK: Update bundle cacert bundle to latest (2018-01-17) release
TWEAK: Ajouter soutien pour le nouveau region AWS Paris (eu-west-3)
TWEAK: Handle short filesystem reads when sending data to Google Drive
TWEAK: Improve handling of PHP errors and exceptions during back-end calls
TWEAK: Update internal OneDrive SDK for compatibility with 'OneDrive for Business' (not yet fully supported)
TWEAK: Internal refactoring and improvements to the UpdraftPlus.com form
TWEAK: Job ID is now separate from the file nonce
TWEAK: Show increments in the UI
TWEAK: Add visibility controls to functions of a stream wrapper class for WebDAV access
TWEAK: Handle errors when getting folder ID from Google Drive more patiently
TWEAK: Displays more descriptive error when google drive authentication error occur
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.14.5 |
Comparing to | |
See all releases |
Code changes from version 1.14.4 to 1.14.5
- admin.php +243 -56
- backup.php +8 -9
- central/bootstrap.php +12 -0
- changelog.txt +258 -0
- class-updraftplus.php +6 -2
- css/updraftplus-admin.css +45 -1
- css/updraftplus-admin.min.css +1 -1
- css/updraftplus-admin.min.css.map +1 -1
- images/addons-images/incremental.png +0 -0
- images/addons-images/wp-cli.png +0 -0
- includes/S3compat.php +2 -2
- includes/cacert.pem +272 -1383
- includes/class-backup-history.php +1 -1
- includes/class-commands.php +89 -39
- includes/class-udrpc.php +0 -2
- includes/updraftplus-admin.js +273 -36
- includes/updraftplus-admin.min.js +3 -3
- includes/updraftplus-notices.php +1 -1
- languages/updraftplus-af.po +1038 -962
- languages/updraftplus-ar.mo +0 -0
- languages/updraftplus-ar.po +1039 -963
- languages/updraftplus-bg_BG.po +1015 -940
@@ -654,9 +654,10 @@ class UpdraftPlus_Admin {
|
|
654 |
$remote_storage_options_and_templates = $updraftplus->get_remote_storage_options_and_templates();
|
655 |
wp_localize_script('updraftplus-admin', 'updraftlion', array(
|
656 |
'sendonlyonwarnings' => __('Send a report only when there are warnings/errors', 'updraftplus'),
|
657 |
-
'wholebackup' => __('When the Email storage method is enabled, also send the
|
658 |
'emailsizelimits' => esc_attr(sprintf(__('Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive.', 'updraftplus'), '10-20')),
|
659 |
'rescanning' => __('Rescanning (looking for backups that you have uploaded manually into the internal backup store)...', 'updraftplus'),
|
|
|
660 |
'rescanningremote' => __('Rescanning remote and local storage for backup sets...', 'updraftplus'),
|
661 |
'enteremailhere' => esc_attr(__('To send to more than one address, separate each address with a comma.', 'updraftplus')),
|
662 |
'excludedeverything' => __('If you exclude both the database and the files, then you have excluded everything!', 'updraftplus'),
|
@@ -1066,21 +1067,36 @@ class UpdraftPlus_Admin {
|
|
1066 |
* Start a download of a backup. This method is called via the AJAX action updraft_download_backup. May die instead of returning depending upon the mode in which it is called.
|
1067 |
*/
|
1068 |
public function updraft_download_backup() {
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1084 |
die();
|
1085 |
}
|
1086 |
|
@@ -1396,7 +1412,6 @@ class UpdraftPlus_Admin {
|
|
1396 |
if (!wp_verify_nonce($nonce, 'updraftplus-credentialtest-nonce') || empty($_REQUEST['subaction'])) die('Security check');
|
1397 |
|
1398 |
$subaction = $_REQUEST['subaction'];
|
1399 |
-
|
1400 |
// Mitigation in case the nonce leaked to an unauthorised user
|
1401 |
if ('dismissautobackup' == $subaction) {
|
1402 |
if (!current_user_can('update_plugins') && !current_user_can('update_themes')) return;
|
@@ -1422,8 +1437,26 @@ class UpdraftPlus_Admin {
|
|
1422 |
|
1423 |
// TODO: Once all commands come through here and through updraft_send_command(), the data should always come from this attribute (once updraft_send_command() is modified appropriately).
|
1424 |
if (isset($data['action_data'])) $data = $data['action_data'];
|
1425 |
-
|
1426 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1427 |
if (is_wp_error($results)) {
|
1428 |
$results = array(
|
1429 |
'result' => false,
|
@@ -1440,27 +1473,77 @@ class UpdraftPlus_Admin {
|
|
1440 |
echo json_encode($results);
|
1441 |
}
|
1442 |
die;
|
1443 |
-
|
1444 |
}
|
1445 |
|
1446 |
// Below are all the commands not ported over into class-commands.php or class-wpadmin-commands.php
|
1447 |
|
1448 |
if ('activejobs_list' == $subaction) {
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1454 |
} elseif ('httpget' == $subaction) {
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
|
1460 |
} elseif ('doaction' == $subaction && !empty($_REQUEST['subsubaction']) && 'updraft_' == substr($_REQUEST['subsubaction'], 0, 8)) {
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1464 |
} else {
|
1465 |
// These can be removed after a few releases
|
1466 |
include(UPDRAFTPLUS_DIR.'/includes/deprecated-actions.php');
|
@@ -1881,7 +1964,6 @@ class UpdraftPlus_Admin {
|
|
1881 |
} else {
|
1882 |
$active_jobs = $this->print_active_jobs();
|
1883 |
}
|
1884 |
-
|
1885 |
$logupdate_array = array();
|
1886 |
if (!empty($request['log_fetch'])) {
|
1887 |
if (isset($request['log_nonce'])) {
|
@@ -1890,7 +1972,6 @@ class UpdraftPlus_Admin {
|
|
1890 |
$logupdate_array = $this->fetch_log($log_nonce, $log_pointer);
|
1891 |
}
|
1892 |
}
|
1893 |
-
|
1894 |
return array(
|
1895 |
// We allow the front-end to decide what to do if there's nothing logged - we used to (up to 1.11.29) send a pre-defined message
|
1896 |
'l' => htmlspecialchars(UpdraftPlus_Options::get_updraft_lastmessage()),
|
@@ -1898,7 +1979,6 @@ class UpdraftPlus_Admin {
|
|
1898 |
'ds' => $download_status,
|
1899 |
'u' => $logupdate_array
|
1900 |
);
|
1901 |
-
|
1902 |
}
|
1903 |
|
1904 |
public function request_backupnow($request, $close_connection_callable = false) {
|
@@ -1912,7 +1992,7 @@ class UpdraftPlus_Admin {
|
|
1912 |
|
1913 |
$msg = array(
|
1914 |
'nonce' => $nonce,
|
1915 |
-
'm' => '<strong>'.__('Start backup', 'updraftplus').':</strong> '.htmlspecialchars(__('OK. You should soon see activity in the "Last log message" field below.', 'updraftplus'))
|
1916 |
);
|
1917 |
|
1918 |
if ($close_connection_callable && is_callable($close_connection_callable)) {
|
@@ -2625,6 +2705,81 @@ class UpdraftPlus_Admin {
|
|
2625 |
|
2626 |
}
|
2627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2628 |
/**
|
2629 |
* Return widgetry for the 'backup now' modal
|
2630 |
*
|
@@ -4157,7 +4312,7 @@ ENDHERE;
|
|
4157 |
|
4158 |
}
|
4159 |
|
4160 |
-
$updraftplus_restorer->delete = UpdraftPlus_Options::get_updraft_option('updraft_delete_local') ? true : false;
|
4161 |
if ('none' === $service || 'email' === $service || empty($service) || (is_array($service) && 1 == count($service) && (in_array('none', $service) || in_array('', $service) || in_array('email', $service))) || !empty($updraftplus_restorer->ud_foreign)) {
|
4162 |
if ($updraftplus_restorer->delete) $updraftplus->log_e('Will not delete any archives after unpacking them, because there was no cloud storage for this backup');
|
4163 |
$updraftplus_restorer->delete = false;
|
@@ -4339,29 +4494,61 @@ ENDHERE;
|
|
4339 |
}
|
4340 |
|
4341 |
public function updraft_ajax_savesettings() {
|
4342 |
-
|
4343 |
-
|
4344 |
-
|
4345 |
-
|
4346 |
-
|
4347 |
-
|
4348 |
-
|
4349 |
-
|
4350 |
-
|
4351 |
-
|
4352 |
-
|
4353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4354 |
die;
|
4355 |
}
|
4356 |
|
4357 |
public function updraft_ajax_importsettings() {
|
4358 |
-
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
|
4363 |
-
|
4364 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4365 |
}
|
4366 |
|
4367 |
/**
|
654 |
$remote_storage_options_and_templates = $updraftplus->get_remote_storage_options_and_templates();
|
655 |
wp_localize_script('updraftplus-admin', 'updraftlion', array(
|
656 |
'sendonlyonwarnings' => __('Send a report only when there are warnings/errors', 'updraftplus'),
|
657 |
+
'wholebackup' => __('When the Email storage method is enabled, also send the backup', 'updraftplus'),
|
658 |
'emailsizelimits' => esc_attr(sprintf(__('Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive.', 'updraftplus'), '10-20')),
|
659 |
'rescanning' => __('Rescanning (looking for backups that you have uploaded manually into the internal backup store)...', 'updraftplus'),
|
660 |
+
'dbbackup' => __('Only email the database backup', 'updraftplus'),
|
661 |
'rescanningremote' => __('Rescanning remote and local storage for backup sets...', 'updraftplus'),
|
662 |
'enteremailhere' => esc_attr(__('To send to more than one address, separate each address with a comma.', 'updraftplus')),
|
663 |
'excludedeverything' => __('If you exclude both the database and the files, then you have excluded everything!', 'updraftplus'),
|
1067 |
* Start a download of a backup. This method is called via the AJAX action updraft_download_backup. May die instead of returning depending upon the mode in which it is called.
|
1068 |
*/
|
1069 |
public function updraft_download_backup() {
|
1070 |
+
try {
|
1071 |
+
if (empty($_REQUEST['_wpnonce']) || !wp_verify_nonce($_REQUEST['_wpnonce'], 'updraftplus_download')) die;
|
1072 |
+
|
1073 |
+
if (empty($_REQUEST['timestamp']) || !is_numeric($_REQUEST['timestamp']) || empty($_REQUEST['type'])) exit;
|
1074 |
+
|
1075 |
+
$findex = empty($_REQUEST['findex']) ? 0 : (int) $_REQUEST['findex'];
|
1076 |
+
$stage = empty($_REQUEST['stage']) ? '' : $_REQUEST['stage'];
|
1077 |
+
$file_path = empty($_REQUEST['filepath']) ? '' : $_REQUEST['filepath'];
|
1078 |
+
|
1079 |
+
// This call may not actually return, depending upon what mode it is called in
|
1080 |
+
$result = $this->do_updraft_download_backup($findex, $_REQUEST['type'], $_REQUEST['timestamp'], $stage, false, $file_path);
|
1081 |
+
|
1082 |
+
// In theory, if a response was already sent, then Connection: close has been issued, and a Content-Length. However, in https://updraftplus.com/forums/topic/pclzip_err_bad_format-10-invalid-archive-structure/ a browser ignores both of these, and then picks up the second output and complains.
|
1083 |
+
if (empty($result['already_closed'])) echo json_encode($result);
|
1084 |
+
} catch (Exception $e) {
|
1085 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during download backup. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1086 |
+
error_log($log_message);
|
1087 |
+
echo json_encode(array(
|
1088 |
+
'fatal_error' => true,
|
1089 |
+
'fatal_error_message' => $log_message
|
1090 |
+
));
|
1091 |
+
// @codingStandardsIgnoreLine
|
1092 |
+
} catch (Error $e) {
|
1093 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during download backup. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1094 |
+
error_log($log_message);
|
1095 |
+
echo json_encode(array(
|
1096 |
+
'fatal_error' => true,
|
1097 |
+
'fatal_error_message' => $log_message
|
1098 |
+
));
|
1099 |
+
}
|
1100 |
die();
|
1101 |
}
|
1102 |
|
1412 |
if (!wp_verify_nonce($nonce, 'updraftplus-credentialtest-nonce') || empty($_REQUEST['subaction'])) die('Security check');
|
1413 |
|
1414 |
$subaction = $_REQUEST['subaction'];
|
|
|
1415 |
// Mitigation in case the nonce leaked to an unauthorised user
|
1416 |
if ('dismissautobackup' == $subaction) {
|
1417 |
if (!current_user_can('update_plugins') && !current_user_can('update_themes')) return;
|
1437 |
|
1438 |
// TODO: Once all commands come through here and through updraft_send_command(), the data should always come from this attribute (once updraft_send_command() is modified appropriately).
|
1439 |
if (isset($data['action_data'])) $data = $data['action_data'];
|
1440 |
+
try {
|
1441 |
+
$results = call_user_func(array($commands, $subaction), $data);
|
1442 |
+
} catch (Exception $e) {
|
1443 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during '.$subaction.' subaction. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1444 |
+
error_log($log_message);
|
1445 |
+
echo json_encode(array(
|
1446 |
+
'fatal_error' => true,
|
1447 |
+
'fatal_error_message' => $log_message
|
1448 |
+
));
|
1449 |
+
die;
|
1450 |
+
// @codingStandardsIgnoreLine
|
1451 |
+
} catch (Error $e) {
|
1452 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during '.$subaction.' subaction. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1453 |
+
error_log($log_message);
|
1454 |
+
echo json_encode(array(
|
1455 |
+
'fatal_error' => true,
|
1456 |
+
'fatal_error_message' => $log_message
|
1457 |
+
));
|
1458 |
+
die;
|
1459 |
+
}
|
1460 |
if (is_wp_error($results)) {
|
1461 |
$results = array(
|
1462 |
'result' => false,
|
1473 |
echo json_encode($results);
|
1474 |
}
|
1475 |
die;
|
|
|
1476 |
}
|
1477 |
|
1478 |
// Below are all the commands not ported over into class-commands.php or class-wpadmin-commands.php
|
1479 |
|
1480 |
if ('activejobs_list' == $subaction) {
|
1481 |
+
try {
|
1482 |
+
// N.B. Also called from autobackup.php
|
1483 |
+
// TODO: This should go into UpdraftPlus_Commands, once the add-ons have been ported to use updraft_send_command()
|
1484 |
+
echo json_encode($this->get_activejobs_list($updraftplus->wp_unslash($_GET)));
|
1485 |
+
} catch (Exception $e) {
|
1486 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during get active job list. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1487 |
+
error_log($log_message);
|
1488 |
+
echo json_encode(array(
|
1489 |
+
'fatal_error' => true,
|
1490 |
+
'fatal_error_message' => $log_message
|
1491 |
+
));
|
1492 |
+
// @codingStandardsIgnoreLine
|
1493 |
+
} catch (Error $e) {
|
1494 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during get active job list. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1495 |
+
error_log($log_message);
|
1496 |
+
echo json_encode(array(
|
1497 |
+
'fatal_error' => true,
|
1498 |
+
'fatal_error_message' => $log_message
|
1499 |
+
));
|
1500 |
+
}
|
1501 |
+
|
1502 |
} elseif ('httpget' == $subaction) {
|
1503 |
+
try {
|
1504 |
+
// httpget
|
1505 |
+
$curl = empty($_REQUEST['curl']) ? false : true;
|
1506 |
+
echo $this->http_get($updraftplus->wp_unslash($_REQUEST['uri']), $curl);
|
1507 |
+
// @codingStandardsIgnoreLine
|
1508 |
+
} catch (Error $e) {
|
1509 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during http get. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1510 |
+
error_log($log_message);
|
1511 |
+
echo json_encode(array(
|
1512 |
+
'fatal_error' => true,
|
1513 |
+
'fatal_error_message' => $log_message
|
1514 |
+
));
|
1515 |
+
} catch (Exception $e) {
|
1516 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during http get. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1517 |
+
error_log($log_message);
|
1518 |
+
echo json_encode(array(
|
1519 |
+
'fatal_error' => true,
|
1520 |
+
'fatal_error_message' => $log_message
|
1521 |
+
));
|
1522 |
+
}
|
1523 |
|
1524 |
} elseif ('doaction' == $subaction && !empty($_REQUEST['subsubaction']) && 'updraft_' == substr($_REQUEST['subsubaction'], 0, 8)) {
|
1525 |
+
$subsubaction = $_REQUEST['subsubaction'];
|
1526 |
+
try {
|
1527 |
+
// These generally echo and die - they will need further work to port to one of the command classes. Some may already have equivalents in UpdraftPlus_Commands, if they are used from UpdraftCentral.
|
1528 |
+
do_action($updraftplus->wp_unslash($subsubaction));
|
1529 |
+
} catch (Exception $e) {
|
1530 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during doaction subaction with '.$subsubaction.' subsubaction. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1531 |
+
error_log($log_message);
|
1532 |
+
echo json_encode(array(
|
1533 |
+
'fatal_error' => true,
|
1534 |
+
'fatal_error_message' => $log_message
|
1535 |
+
));
|
1536 |
+
die;
|
1537 |
+
// @codingStandardsIgnoreLine
|
1538 |
+
} catch (Error $e) {
|
1539 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during doaction subaction with '.$subsubaction.' subsubaction. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
1540 |
+
error_log($log_message);
|
1541 |
+
echo json_encode(array(
|
1542 |
+
'fatal_error' => true,
|
1543 |
+
'fatal_error_message' => $log_message
|
1544 |
+
));
|
1545 |
+
die;
|
1546 |
+
}
|
1547 |
} else {
|
1548 |
// These can be removed after a few releases
|
1549 |
include(UPDRAFTPLUS_DIR.'/includes/deprecated-actions.php');
|
1964 |
} else {
|
1965 |
$active_jobs = $this->print_active_jobs();
|
1966 |
}
|
|
|
1967 |
$logupdate_array = array();
|
1968 |
if (!empty($request['log_fetch'])) {
|
1969 |
if (isset($request['log_nonce'])) {
|
1972 |
$logupdate_array = $this->fetch_log($log_nonce, $log_pointer);
|
1973 |
}
|
1974 |
}
|
|
|
1975 |
return array(
|
1976 |
// We allow the front-end to decide what to do if there's nothing logged - we used to (up to 1.11.29) send a pre-defined message
|
1977 |
'l' => htmlspecialchars(UpdraftPlus_Options::get_updraft_lastmessage()),
|
1979 |
'ds' => $download_status,
|
1980 |
'u' => $logupdate_array
|
1981 |
);
|
|
|
1982 |
}
|
1983 |
|
1984 |
public function request_backupnow($request, $close_connection_callable = false) {
|
1992 |
|
1993 |
$msg = array(
|
1994 |
'nonce' => $nonce,
|
1995 |
+
'm' => apply_filters('updraftplus_backupnow_start_message', '<strong>'.__('Start backup', 'updraftplus').':</strong> '.htmlspecialchars(__('OK. You should soon see activity in the "Last log message" field below.', 'updraftplus')), $nonce)
|
1996 |
);
|
1997 |
|
1998 |
if ($close_connection_callable && is_callable($close_connection_callable)) {
|
2705 |
|
2706 |
}
|
2707 |
|
2708 |
+
/**
|
2709 |
+
* This method will build the UpdraftPlus.com login form and echo it to the page.
|
2710 |
+
*
|
2711 |
+
* @param string $option_page - the option page this form is being output to
|
2712 |
+
*
|
2713 |
+
* @return void
|
2714 |
+
*/
|
2715 |
+
public function build_credentials_form($option_page) {
|
2716 |
+
|
2717 |
+
$enter_credentials_begin = UpdraftPlus_Options::options_form_begin('', false, array(), 'updraftplus_com_login');
|
2718 |
+
|
2719 |
+
if (is_multisite()) $enter_credentials_begin .= '<input type="hidden" name="action" value="update">';
|
2720 |
+
|
2721 |
+
$interested = htmlspecialchars(__('Interested in knowing about your UpdraftPlus.Com password security? Read about it here.', 'updraftplus'));
|
2722 |
+
|
2723 |
+
$connect = htmlspecialchars(__('Connect', 'updraftplus'));
|
2724 |
+
|
2725 |
+
$enter_credentials_end = '<p style="margin-left: 258px;"><input id="ud_connectsubmit" type="submit" class="button-primary" value="'.$connect.'" /></p>';
|
2726 |
+
|
2727 |
+
$enter_credentials_end .= '<p style="margin-left: 258px; font-size: 70%"><em><a href="https://updraftplus.com/faqs/tell-me-about-my-updraftplus-com-account/">'.$interested.'</a></em></p>';
|
2728 |
+
|
2729 |
+
$enter_credentials_end .= '</form>';
|
2730 |
+
|
2731 |
+
$this->show_credentials_form($enter_credentials_begin, $enter_credentials_end, $option_page);
|
2732 |
+
}
|
2733 |
+
|
2734 |
+
/**
|
2735 |
+
* This method will build the UpdraftPlus.com login form and echo it to the page.
|
2736 |
+
*
|
2737 |
+
* @param string $enter_credentials_begin - a string that contains the start of the form
|
2738 |
+
* @param string $enter_credentials_end - a string that contains the end of the form
|
2739 |
+
* @param string $option_page - the option page this form is being output to
|
2740 |
+
*
|
2741 |
+
* @return void
|
2742 |
+
*/
|
2743 |
+
private function show_credentials_form($enter_credentials_begin, $enter_credentials_end, $option_page) {
|
2744 |
+
|
2745 |
+
global $updraftplus;
|
2746 |
+
|
2747 |
+
echo $enter_credentials_begin;
|
2748 |
+
|
2749 |
+
// We have to duplicate settings_fields() in order to set our referer
|
2750 |
+
// settings_fields(UDADDONS2_SLUG.'_options');
|
2751 |
+
|
2752 |
+
$option_group = $option_page.'_options';
|
2753 |
+
echo "<input type='hidden' name='option_page' value='" . esc_attr($option_group) . "' />";
|
2754 |
+
echo '<input type="hidden" name="action" value="update" />';
|
2755 |
+
|
2756 |
+
// wp_nonce_field("$option_group-options");
|
2757 |
+
|
2758 |
+
// This one is used on multisite
|
2759 |
+
echo '<input type="hidden" name="tab" value="addons" />';
|
2760 |
+
|
2761 |
+
$name = "_wpnonce";
|
2762 |
+
$action = esc_attr($option_group."-options");
|
2763 |
+
$nonce_field = '<input type="hidden" name="' . $name . '" value="' . wp_create_nonce($action) . '" />';
|
2764 |
+
|
2765 |
+
echo $nonce_field;
|
2766 |
+
|
2767 |
+
$referer = esc_attr($updraftplus->wp_unslash($_SERVER['REQUEST_URI']));
|
2768 |
+
|
2769 |
+
// This one is used on single site installs
|
2770 |
+
if (false === strpos($referer, '?')) {
|
2771 |
+
$referer .= '?tab=addons';
|
2772 |
+
} else {
|
2773 |
+
$referer .= '&tab=addons';
|
2774 |
+
}
|
2775 |
+
|
2776 |
+
echo '<input type="hidden" name="_wp_http_referer" value="'.$referer.'" />';
|
2777 |
+
// End of duplication of settings-fields()
|
2778 |
+
|
2779 |
+
do_settings_sections($option_page);
|
2780 |
+
echo $enter_credentials_end;
|
2781 |
+
}
|
2782 |
+
|
2783 |
/**
|
2784 |
* Return widgetry for the 'backup now' modal
|
2785 |
*
|
4312 |
|
4313 |
}
|
4314 |
|
4315 |
+
$updraftplus_restorer->delete = UpdraftPlus_Options::get_updraft_option('updraft_delete_local', 1) ? true : false;
|
4316 |
if ('none' === $service || 'email' === $service || empty($service) || (is_array($service) && 1 == count($service) && (in_array('none', $service) || in_array('', $service) || in_array('email', $service))) || !empty($updraftplus_restorer->ud_foreign)) {
|
4317 |
if ($updraftplus_restorer->delete) $updraftplus->log_e('Will not delete any archives after unpacking them, because there was no cloud storage for this backup');
|
4318 |
$updraftplus_restorer->delete = false;
|
4494 |
}
|
4495 |
|
4496 |
public function updraft_ajax_savesettings() {
|
4497 |
+
try {
|
4498 |
+
global $updraftplus;
|
4499 |
+
if (empty($_POST) || empty($_POST['subaction']) || 'savesettings' != $_POST['subaction'] || !isset($_POST['nonce']) || !is_user_logged_in() || !UpdraftPlus_Options::user_can_manage() || !wp_verify_nonce($_POST['nonce'], 'updraftplus-settings-nonce')) die('Security check');
|
4500 |
+
|
4501 |
+
if (empty($_POST['settings']) || !is_string($_POST['settings'])) die('Invalid data');
|
4502 |
+
|
4503 |
+
parse_str(stripslashes($_POST['settings']), $posted_settings);
|
4504 |
+
// We now have $posted_settings as an array
|
4505 |
+
if (!empty($_POST['updraftplus_version'])) $posted_settings['updraftplus_version'] = $_POST['updraftplus_version'];
|
4506 |
+
|
4507 |
+
echo json_encode($this->save_settings($posted_settings));
|
4508 |
+
} catch (Exception $e) {
|
4509 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during save settings. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4510 |
+
error_log($log_message);
|
4511 |
+
echo json_encode(array(
|
4512 |
+
'fatal_error' => true,
|
4513 |
+
'fatal_error_message' => $log_message
|
4514 |
+
));
|
4515 |
+
// @codingStandardsIgnoreLine
|
4516 |
+
} catch (Error $e) {
|
4517 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during save settings. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4518 |
+
error_log($log_message);
|
4519 |
+
echo json_encode(array(
|
4520 |
+
'fatal_error' => true,
|
4521 |
+
'fatal_error_message' => $log_message
|
4522 |
+
));
|
4523 |
+
}
|
4524 |
die;
|
4525 |
}
|
4526 |
|
4527 |
public function updraft_ajax_importsettings() {
|
4528 |
+
try {
|
4529 |
+
global $updraftplus;
|
4530 |
+
|
4531 |
+
if (empty($_POST) || empty($_POST['subaction']) || 'importsettings' != $_POST['subaction'] || !isset($_POST['nonce']) || !is_user_logged_in() || !UpdraftPlus_Options::user_can_manage() || !wp_verify_nonce($_POST['nonce'], 'updraftplus-settings-nonce')) die('Security check');
|
4532 |
+
|
4533 |
+
if (empty($_POST['settings']) || !is_string($_POST['settings'])) die('Invalid data');
|
4534 |
+
|
4535 |
+
$this->import_settings($_POST);
|
4536 |
+
} catch (Exception $e) {
|
4537 |
+
$log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during import settings. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4538 |
+
error_log($log_message);
|
4539 |
+
echo json_encode(array(
|
4540 |
+
'fatal_error' => true,
|
4541 |
+
'fatal_error_message' => $log_message
|
4542 |
+
));
|
4543 |
+
// @codingStandardsIgnoreLine
|
4544 |
+
} catch (Error $e) {
|
4545 |
+
$log_message = 'PHP Fatal error ('.get_class($e).') has occurred during import settings. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4546 |
+
error_log($log_message);
|
4547 |
+
echo json_encode(array(
|
4548 |
+
'fatal_error' => true,
|
4549 |
+
'fatal_error_message' => $log_message
|
4550 |
+
));
|
4551 |
+
}
|
4552 |
}
|
4553 |
|
4554 |
/**
|
@@ -216,7 +216,7 @@ class UpdraftPlus_Backup {
|
|
216 |
// Temporary file, to be able to detect actual completion (upon which, it is renamed)
|
217 |
|
218 |
// New (Jun-13) - be more aggressive in removing temporary files from earlier attempts - anything >=600 seconds old of this kind
|
219 |
-
$updraftplus->clean_temporary_files('_'.$updraftplus->
|
220 |
|
221 |
// Firstly, make sure that the temporary file is not already being written to - which can happen if a resumption takes place whilst an old run is still active
|
222 |
$zip_name = $full_path.'.tmp';
|
@@ -231,7 +231,7 @@ class UpdraftPlus_Backup {
|
|
231 |
// Now, check for other forms of temporary file, which would indicate that some activity is going on (even if it hasn't made it into the main zip file yet)
|
232 |
// Note: this doesn't catch PclZip temporary files
|
233 |
$d = dir($this->updraft_dir);
|
234 |
-
$match = '_'.$updraftplus->
|
235 |
while (false !== ($e = $d->read())) {
|
236 |
if ('.' == $e || '..' == $e || !is_file($this->updraft_dir.'/'.$e)) continue;
|
237 |
$ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $e);
|
@@ -297,11 +297,11 @@ class UpdraftPlus_Backup {
|
|
297 |
} else {
|
298 |
$updraftplus->log("Looked-for $whichone zip (".$this->index.") was not found (".basename($full_path).".tmp)", 'warning');
|
299 |
}
|
300 |
-
$updraftplus->clean_temporary_files('_'.$updraftplus->
|
301 |
}
|
302 |
|
303 |
// Remove cache list files as well, if there are any
|
304 |
-
$updraftplus->clean_temporary_files('_'.$updraftplus->
|
305 |
|
306 |
// Create the results array to send back (just the new ones, not any prior ones)
|
307 |
$files_existing = array();
|
@@ -552,7 +552,7 @@ class UpdraftPlus_Backup {
|
|
552 |
}
|
553 |
|
554 |
// If they turned off deletion on local backups, then there is nothing to do
|
555 |
-
if (
|
556 |
$updraftplus->log("Prune old backups from local store: nothing to do, since the user disabled local deletion and we are using local backups");
|
557 |
return;
|
558 |
}
|
@@ -1234,7 +1234,7 @@ class UpdraftPlus_Backup {
|
|
1234 |
*/
|
1235 |
private function get_backup_file_basename_from_time($use_time) {
|
1236 |
global $updraftplus;
|
1237 |
-
return 'backup_'.get_date_from_gmt(gmdate('Y-m-d H:i:s', $use_time), 'Y-m-d-Hi').'_'.$this->blog_name.'_'.$updraftplus->
|
1238 |
}
|
1239 |
|
1240 |
private function find_existing_zips($dir, $match_nonce) {
|
@@ -1331,7 +1331,7 @@ class UpdraftPlus_Backup {
|
|
1331 |
// $whichdir might be an array (if $youwhat is 'more')
|
1332 |
|
1333 |
// Returns an array (keyed off the entity) of ($timestamp, $filename) arrays
|
1334 |
-
$existing_zips = $this->find_existing_zips($this->updraft_dir, $updraftplus->
|
1335 |
|
1336 |
foreach ($possible_backups as $youwhat => $whichdir) {
|
1337 |
|
@@ -2798,7 +2798,6 @@ class UpdraftPlus_Backup {
|
|
2798 |
makezip_recursive_batchedbytes
|
2799 |
zipfiles_skipped_notaltered
|
2800 |
zipfiles_dirbatched
|
2801 |
-
|
2802 |
Class variables that the result depends upon (other than the state of the filesystem):
|
2803 |
makezip_if_altered_since
|
2804 |
existing_files
|
@@ -3422,7 +3421,7 @@ class UpdraftPlus_Backup {
|
|
3422 |
$this->zip_microtime_start = microtime(true);
|
3423 |
|
3424 |
// No need to add $itext here - we can just delete any temporary files for this zip
|
3425 |
-
$updraftplus->clean_temporary_files('_'.$updraftplus->
|
3426 |
|
3427 |
$this->index++;
|
3428 |
$this->job_file_entities[$youwhat]['index'] = $this->index;
|
216 |
// Temporary file, to be able to detect actual completion (upon which, it is renamed)
|
217 |
|
218 |
// New (Jun-13) - be more aggressive in removing temporary files from earlier attempts - anything >=600 seconds old of this kind
|
219 |
+
$updraftplus->clean_temporary_files('_'.$updraftplus->file_nonce."-$whichone", 600);
|
220 |
|
221 |
// Firstly, make sure that the temporary file is not already being written to - which can happen if a resumption takes place whilst an old run is still active
|
222 |
$zip_name = $full_path.'.tmp';
|
231 |
// Now, check for other forms of temporary file, which would indicate that some activity is going on (even if it hasn't made it into the main zip file yet)
|
232 |
// Note: this doesn't catch PclZip temporary files
|
233 |
$d = dir($this->updraft_dir);
|
234 |
+
$match = '_'.$updraftplus->file_nonce."-".$whichone;
|
235 |
while (false !== ($e = $d->read())) {
|
236 |
if ('.' == $e || '..' == $e || !is_file($this->updraft_dir.'/'.$e)) continue;
|
237 |
$ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $e);
|
297 |
} else {
|
298 |
$updraftplus->log("Looked-for $whichone zip (".$this->index.") was not found (".basename($full_path).".tmp)", 'warning');
|
299 |
}
|
300 |
+
$updraftplus->clean_temporary_files('_'.$updraftplus->file_nonce."-$whichone", 0);
|
301 |
}
|
302 |
|
303 |
// Remove cache list files as well, if there are any
|
304 |
+
$updraftplus->clean_temporary_files('_'.$updraftplus->file_nonce."-$whichone", 0, true);
|
305 |
|
306 |
// Create the results array to send back (just the new ones, not any prior ones)
|
307 |
$files_existing = array();
|
552 |
}
|
553 |
|
554 |
// If they turned off deletion on local backups, then there is nothing to do
|
555 |
+
if (!UpdraftPlus_Options::get_updraft_option('updraft_delete_local', 1) && 1 == count($services) && array_key_exists('none', $services)) {
|
556 |
$updraftplus->log("Prune old backups from local store: nothing to do, since the user disabled local deletion and we are using local backups");
|
557 |
return;
|
558 |
}
|
1234 |
*/
|
1235 |
private function get_backup_file_basename_from_time($use_time) {
|
1236 |
global $updraftplus;
|
1237 |
+
return apply_filters('updraftplus_get_backup_file_basename_from_time', 'backup_'.get_date_from_gmt(gmdate('Y-m-d H:i:s', $use_time), 'Y-m-d-Hi').'_'.$this->blog_name.'_'.$updraftplus->file_nonce, $use_time, $this->blog_name);
|
1238 |
}
|
1239 |
|
1240 |
private function find_existing_zips($dir, $match_nonce) {
|
1331 |
// $whichdir might be an array (if $youwhat is 'more')
|
1332 |
|
1333 |
// Returns an array (keyed off the entity) of ($timestamp, $filename) arrays
|
1334 |
+
$existing_zips = $this->find_existing_zips($this->updraft_dir, $updraftplus->file_nonce);
|
1335 |
|
1336 |
foreach ($possible_backups as $youwhat => $whichdir) {
|
1337 |
|
2798 |
makezip_recursive_batchedbytes
|
2799 |
zipfiles_skipped_notaltered
|
2800 |
zipfiles_dirbatched
|
|
|
2801 |
Class variables that the result depends upon (other than the state of the filesystem):
|
2802 |
makezip_if_altered_since
|
2803 |
existing_files
|
3421 |
$this->zip_microtime_start = microtime(true);
|
3422 |
|
3423 |
// No need to add $itext here - we can just delete any temporary files for this zip
|
3424 |
+
$updraftplus->clean_temporary_files('_'.$updraftplus->file_nonce."-".$youwhat, 600);
|
3425 |
|
3426 |
$this->index++;
|
3427 |
$this->job_file_entities[$youwhat]['index'] = $this->index;
|
@@ -149,6 +149,12 @@ class UpdraftPlus_UpdraftCentral_Main {
|
|
149 |
update_site_option('updraftcentral_client_log', $udrpc_log);
|
150 |
}
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
public function delete_key($key_id) {
|
153 |
$our_keys = UpdraftPlus_Options::get_updraft_option('updraft_central_localkeys');
|
154 |
if (!is_array($our_keys)) $our_keys = array();
|
@@ -159,6 +165,12 @@ class UpdraftPlus_UpdraftCentral_Main {
|
|
159 |
return array('deleted' => 1, 'keys_table' => $this->get_keys_table());
|
160 |
}
|
161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
public function get_log($params) {
|
163 |
|
164 |
$udrpc_log = get_site_option('updraftcentral_client_log');
|
149 |
update_site_option('updraftcentral_client_log', $udrpc_log);
|
150 |
}
|
151 |
|
152 |
+
/**
|
153 |
+
* Delete UpdraftCentral Key
|
154 |
+
*
|
155 |
+
* @param array $key_id key_id of UpdraftCentral
|
156 |
+
* @return array which contains deleted flag and key table. If error, Returns array which contains fatal_error flag and fatal_error_message
|
157 |
+
*/
|
158 |
public function delete_key($key_id) {
|
159 |
$our_keys = UpdraftPlus_Options::get_updraft_option('updraft_central_localkeys');
|
160 |
if (!is_array($our_keys)) $our_keys = array();
|
165 |
return array('deleted' => 1, 'keys_table' => $this->get_keys_table());
|
166 |
}
|
167 |
|
168 |
+
/**
|
169 |
+
* Get UpdraftCentral Log
|
170 |
+
*
|
171 |
+
* @param array $params which have action, subaction and nonce
|
172 |
+
* @return array which contains log_contents. If error, Returns array which contains fatal_error flag and fatal_error_message
|
173 |
+
*/
|
174 |
public function get_log($params) {
|
175 |
|
176 |
$udrpc_log = get_site_option('updraftcentral_client_log');
|
@@ -1,5 +1,263 @@
|
|
1 |
This file contains changelog entries that are not contained in the main readme.txt file (that file contains the newest entries).
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.12.5 - 08/Apr/2016 =
|
4 |
|
5 |
* TWEAK: (Paid versions) - tweak the updater class so that it sends the information that updraftplus.com needs in order to correctly advise about language pack update availability. (If you are continuously seeing the same language pack update offered, then this may continue for a few more hours - please be patient!).
|
1 |
This file contains changelog entries that are not contained in the main readme.txt file (that file contains the newest entries).
|
2 |
|
3 |
+
= 1.12.35 - 03/Mar/2017 =
|
4 |
+
|
5 |
+
* FIX: Fix an issue causing corruption of interrupted Dropbox backups. All Dropbox users are recommended to update asap.
|
6 |
+
* TWEAK: Fix a regression that prevented information about a faulty WP scheduler from being shown in recent releases (incomplete fix in 1.12.34)
|
7 |
+
* TWEAK: submit_button() needs to be available (possible UpdraftCentral fatal when requesting filesystem creds)
|
8 |
+
* TWEAK: Remove an ES5 JavaScript construct (incompatible with some old browsers)
|
9 |
+
* TWEAK: Fix incorrect variable name in routine that triggered WP automatic update check
|
10 |
+
* TWEAK: Fix a logic error whereby if Google Drive and Google Cloud were both in use and partially set up, a notice about completing the setup of Cloud could fail to show
|
11 |
+
|
12 |
+
= 1.12.34 - 23/Feb/2017 =
|
13 |
+
|
14 |
+
* FEATURE: Added the ability to allow other plugins to call an automatic backup more easily
|
15 |
+
* FEATURE: Added the ability to select which tables you want to backup when using the 'Backup now' modal (Premium)
|
16 |
+
* FIX: Re-scanning a Dropbox that contained more than 1000 backup archives only fetched the first 1000 (this was previously awaiting on Dropbox fixing a related bug on their API servers).
|
17 |
+
* FIX: Escape table names to allow table names with hyphens in, when reading data
|
18 |
+
* FIX: The "Advanced Tools" tab was appearing with no contents if you chose an unwritable backup directory (regression)
|
19 |
+
* TRANSLATIONS: Remove bundled Swedish (sv), Spanish (Spain) (es_ES) and Czeck (Čeština, cs_CZ) translations, since these are now retrieved from wordpress.org.
|
20 |
+
* TWEAK: Prevent a JavaScript message being logged when loading UD infrastructure on non-UD settings pages (e.g. plugins that integrate to do backups via UD)
|
21 |
+
* TWEAK: Make it easier for other plugins to get/set UpdraftPlus options with less code
|
22 |
+
* TWEAK: Make sure that the get_plugins() function is available before using it when generating notices
|
23 |
+
* TWEAK: Add the updraftplus_exclude_directory and updraftplus_exclude_file filters allowing arbitrary backup exclusions from code
|
24 |
+
* TWEAK: Add a work-around for a bug in some server/Firefox combinations in handling of the Content-Length header with non-ASCII characters
|
25 |
+
* TWEAK: Cause an informational message to be shown in the Rackspace module if php-json is not enabled
|
26 |
+
* TWEAK: Fix a regression that prevented information about a faulty WP scheduler from being shown in recent releases
|
27 |
+
* TWEAK: Made alert regarding plupload's 'HTTP -200' error, when upload of file fails, more informative.
|
28 |
+
* TWEAK: Internal changes to the remote storage method API (future improvements which build on these are planned)
|
29 |
+
|
30 |
+
= 1.12.32 - 26/Jan/2017 =
|
31 |
+
|
32 |
+
* FEATURE: Add UpdraftCentral (https://updraftcentral.com) UpdraftVault listener
|
33 |
+
* FEATURE: Encryption and decryption is now chunked, meaning that large databases of any size can be encrypted without being prevented by memory limits
|
34 |
+
* FIX: Fix a bug whereby if a backup set containing a manual "more files" element was imported via a remote scan, then an error would show concerning it when attempting to restore.
|
35 |
+
* FIX: On certain combinations of changing the "more files to back up" settings, these changes might not be reflected in the "Backup Now" dialog without a page reload
|
36 |
+
* FIX: Remove a PHP 5.5+-only construction that crept into 1.12.31
|
37 |
+
* TWEAK: Allow UpdraftCentral command classes to provide commands via the __call method
|
38 |
+
* TWEAK: Move the existing backups table into the templating system
|
39 |
+
* TWEAK: When trying to restore before cleaning up a previous restore, the detailed error message shown needed tweaking
|
40 |
+
* TWEAK: Some refactoring of the dashboard JavaScript, to abstract/harmonise all AJAX calls
|
41 |
+
* TWEAK: Removed the triple click and replaced it with standard double click
|
42 |
+
* TWEAK: Some refactoring of the UpdraftCentral command interface, to facilitate reduction of duplicated dashboard control code
|
43 |
+
* TWEAK: One less HTTP round-trip when deleting from the dashboard
|
44 |
+
* TWEAK: Updated advanced tools to allow UpdraftCentral to use wipe settings and export / import
|
45 |
+
* TWEAK: Revamped the 'Premium / Extensions' tab in the free version
|
46 |
+
* TWEAK: Work around HTTP 400 error from Dropbox on servers with several-year old version of curl, caused by bad interaction between curl and Dropbox over a specific header
|
47 |
+
* TWEAK: Add a notice advising of WP-Optimize (https://wordpress.org/plugins/wp-optimize/) to the available notices
|
48 |
+
* TWEAK: Prevent an unwanted PHP log notice when using Google Drive
|
49 |
+
* TWEAK: More file directories are now added using a directory browser
|
50 |
+
* TWEAK: Update plugin update checker library (paid versions) to version 3.1, which fixes some PHP 7 issues
|
51 |
+
|
52 |
+
= 1.12.30 - 23/Dec/2016 =
|
53 |
+
|
54 |
+
* FIX: Fix a Dropbox APIv2 issue where paths containing certain characters were incorrectly being encoded
|
55 |
+
* FEATURE: Add UpdraftCentral (https://updraftcentral.com) comment-control and advanced tools listeners
|
56 |
+
* TWEAK: Starting an operation to retrieve a remote backup from UpdraftCentral succeeded, but gave a UI error in UC when doing so
|
57 |
+
* TWEAK: Fix a Dropbox APIv2 issue where Team storage displayed an incorrect value
|
58 |
+
* TWEAK: Support for the new AWS S3 Canada Central 1 and London regions
|
59 |
+
* TWEAK: Some re-factoring of the settings page output code for easier maintenance
|
60 |
+
* TWEAK: Some re-factoring of the notices code, to allow re-use in other projects
|
61 |
+
* TWEAK: Make sure that a UpdraftCentral_Commands class is available before loading any external command classes, so that they can rely on its presence
|
62 |
+
|
63 |
+
= 1.12.29 - 22/Nov/2016 =
|
64 |
+
|
65 |
+
* FIX: Fix a PHP error in the notices code (regression in 1.12.28)
|
66 |
+
* FIX: Manual database search and replace now outputs logged operation information (regression in 1.12.28)
|
67 |
+
|
68 |
+
= 1.12.28 - 21/Nov/2016 =
|
69 |
+
|
70 |
+
* TWEAK: The UPDRAFTPLUS_DROPBOX_API_V1 constant will be ignored from 28th June 2017 (when Dropbox turn off that API entirely)
|
71 |
+
* TWEAK: A new internal infrastructure for handling user-visible notices in the dashboard and reports
|
72 |
+
* TWEAK: Small layout tweak to fix a malformatted error message
|
73 |
+
|
74 |
+
= 1.12.27 - 17/Nov/2016 =
|
75 |
+
|
76 |
+
* FIX: The WP 4.7 compatibility tweak in 1.12.26 introduced a regression that caused the question to appear when unwanted on other WP versions.
|
77 |
+
|
78 |
+
= 1.12.26 - 16/Nov/2016 =
|
79 |
+
|
80 |
+
* COMPATIBILITY: On WordPress 4.7, the behaviour of shiny updates has changed, necessitating a small tweak to prevent an unwanted "do you really want to move away from this page?" question from the browser on the updates/plugins pages in some situations.
|
81 |
+
* TWEAK: When the Dropbox quota state seems to imply that the next upload will fail, do not register this as an error before it actually happens.
|
82 |
+
* TWEAK: When an error occurs when re-scanning Dropbox, make sure the error details are logged in the browser developer console
|
83 |
+
* FIX: Fix ability to rescan a Dropbox sub-folder (regression in 1.12.25)
|
84 |
+
|
85 |
+
= 1.12.25 - 12/Nov/2016 =
|
86 |
+
|
87 |
+
* COMPATIBILITY: Dropbox APIv2 capability (see: https://updraftplus.com/dropbox-api-version-1-deprecation/) in 1.12.24 was not complete - this release now avoids all APIv1 use
|
88 |
+
* TWEAK: The 'site information' advanced tool now contains information on loaded Apache modules.
|
89 |
+
* TWEAK: Small layout tweak to fix a malformatted error message
|
90 |
+
|
91 |
+
= 1.12.24 - 08/Nov/2016 =
|
92 |
+
|
93 |
+
* FIX: When importing a single site into a multisite install as a new site (experimental feature), the main multisite URL was being incorrectly adjusted
|
94 |
+
* FIX: Fix a bug with remote scans not returning more database archives correctly
|
95 |
+
* COMPATIBILITY: Add Dropbox APIv2 capability (see: https://updraftplus.com/dropbox-api-version-1-deprecation/)
|
96 |
+
* FEATURE: Look for mysqldump.exe in likely locations on Windows, for faster database backups
|
97 |
+
* TWEAK: UpdraftVault, Amazon S3 and DreamObjects downloaders have been rewritten without race conditions
|
98 |
+
* TWEAK: Introduce an abstraction layer for reporting on the status of restore operations
|
99 |
+
* TWEAK: Deleting remote backup sets from the dashboard is now batched for sets with many archives, to avoid potential PHP timeouts on slow remote services
|
100 |
+
* TWEAK: Updated bundled phpseclib library to version 1.0.4
|
101 |
+
* TWEAK: Introduce an internal templating layer, for improved long-term maintainability
|
102 |
+
* TWEAK: When importing a single site into a multisite install as a new site, remove any cron entries for backup runs on the new site
|
103 |
+
* TWEAK: Fix an inconsequential off-by-one in the chunked downloading algorithm so that the behaviour is as documented
|
104 |
+
* TWEAK: Improve accessibility of Labelauty components with keyboard navigation
|
105 |
+
* TWEAK: Tweak the algorithm for scheduling resumptions, to improve efficiency in the (once) seen corner-case of PHP usually having a predictable run-time, but with an instance of a much longer run-time
|
106 |
+
* TWEAK: Slightly more logging when an S3 error condition occurs, allowing easier diagnosis
|
107 |
+
* TWEAK: Add support for the new US East (Ohio) region to S3
|
108 |
+
* TWEAK: OneDrive authentication can now detect a block by CloudFlare, and direct the user accordingly
|
109 |
+
* TWEAK: If there are remote storage methods needing authentication, then pop up a box showing this to the user - so that it does not rely on them spotting the dashboard notice or having read the instructions
|
110 |
+
|
111 |
+
= 1.12.23 - 04/Oct/2016 =
|
112 |
+
|
113 |
+
* FIX: Fix a bug in URL replacement when cloning from a flat configuration to a WP-in-own-directory configuration
|
114 |
+
* FIX: The button for testing connections to extra databases added to the backup was not working
|
115 |
+
* FIX: Direct dashboard logins from UpdraftCentral were not working on WP 3.2 - 3.4 sites
|
116 |
+
* COMPATIBILITY: Will upgrade Dropbox OAuthv1 tokens to OAuthv2 (to handle Dropbox API v1 deprecation in summer 2017)
|
117 |
+
* TWEAK: Deleting an already-deleted backup set from UpdraftCentral now produces a more informative error message
|
118 |
+
* TWEAK: When restoring only a single site out of a multisite install, store less data in memory on irrelevant tables, and do less logging when skipping tables
|
119 |
+
* TWEAK: Update bundled UDRPC library to version 1.4.9 - fixes a bug with the admin URL used for contact via UpdraftCentral on multisite
|
120 |
+
* TWEAK: Explicitly store the UpdraftPlus object as a global
|
121 |
+
* TWEAK: Prevent a pointless "unsaved settings" warning if settings were changed then the 'wipe' button used
|
122 |
+
* TWEAK: When using the Importer add-on, allow backups from WordPress Backup to Dropbox to be wrapped in an extra 'wpb2d' folder
|
123 |
+
* TWEAK: Strengthen protections against resuming an already-complete backup after migration on servers with misbehaving WP schedulers
|
124 |
+
* TWEAK: Touch already-existing but incomplete files being downloaded, to reduce possibility of two processes downloading at once
|
125 |
+
* TWEAK: Add a link to more information about UpdraftCentral in the advanced tool
|
126 |
+
* TWEAK: The UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE define can now be used on Windows (you will need to define a path to take advantage of it)
|
127 |
+
* TWEAK: Introduce the UPDRAFTPLUS_SKIP_CPANEL_QUOTA_CHECK constant to allow skipping of trying to check cPanel quota
|
128 |
+
|
129 |
+
= 1.12.21 - 08/Sep/2016 =
|
130 |
+
|
131 |
+
* FIX: Fix a bug in the updater code that caused updates checks to be run more often than intended
|
132 |
+
* TWEAK: Improve/tidy layout of the "Advanced Tools" tab
|
133 |
+
* TWEAK: Make it more obvious in the file uploading widget when an upload is 100% complete
|
134 |
+
* TWEAK: Prevent spurious OneDrive message being shown when re-scanning remote storage and not using OneDrive
|
135 |
+
* TWEAK: OneDrive storage now uses the refresh token yes frequently (less HTTP calls)
|
136 |
+
|
137 |
+
= 1.12.20 - 29/Aug/2016 =
|
138 |
+
|
139 |
+
* FEATURE: OpenStack uploads (including Rackspace Cloudfiles) can now adapt their upload rate to network conditions, leading to much faster uploads on many networks
|
140 |
+
* FEATURE: Updated the OneDrive configuration to make it easier to setup. A custom Microsoft Developer App is no longer required
|
141 |
+
* FEATURE: The "Advanced Tools" tab now has tools for importing and exporting settings
|
142 |
+
* TWEAK: Honour the "do not verify SSL certificates" setting with WebDAV storage on PHP 5.6+
|
143 |
+
* TWEAK: When there's a connection problem to updraftplus.com when claiming licences, provide more error info and guidance
|
144 |
+
* TWEAK: In particular circumstances (malfunctioning WP scheduler, expert option to keep backups after despatching remotely selected (non-default)), zips could be sent to Google Drive more than once
|
145 |
+
* TWEAK: Tweak issue in 1.12.18 with automatic backup pop-up appearing under another pop-up if you update themes via the themes pop-up (instead of the direct link)
|
146 |
+
* TWEAK: When rescanning remote storage, don't log a potentially confusing message for an unconfigured storage module
|
147 |
+
* TWEAK: Show a visual indicator and advice if an invalid hostname is entered for WebDAV
|
148 |
+
* TWEAK: Removed the no-longer-useful debug backup buttons
|
149 |
+
* TWEAK: Add a message when generating a key on a server without php-openssl, with information about how to make it faster
|
150 |
+
* TWEAK: Prevent PHP installs which print PHP logging information to the browser from messing up the WebDAV settings in some situations
|
151 |
+
* TWEAK: If PHP reports the current memory limit as a non-positive integer, do not display any message to the user about a low memory limit
|
152 |
+
* TWEAK: If the user deletes their Google API project, then show clearer information on what to do when a backup fails
|
153 |
+
* TWEAK: If you changed your OneDrive client ID, UD will now more clearly advise you of the need to re-authenticate
|
154 |
+
* COMPATABILITY: Updated the OneDrive authentication procedure to make it compatible with the new Microsoft Developer Apps
|
155 |
+
|
156 |
+
= 1.12.18 - 03/Aug/2016 =
|
157 |
+
|
158 |
+
* TWEAK: When Microsoft OneDrive quota is insufficient, the advisory message from UD now includes the available quota (as well as the used)
|
159 |
+
* FEATURE: The Azure add-on/Premium now supports new-style Azure storage, as well as classic
|
160 |
+
* FEATURE: The Rackspace enhanced wizard can now be accessed via UpdraftCentral
|
161 |
+
* TWEAK: Fix a regression in recent WP versions which caused remote keys to not always be retained after a migration
|
162 |
+
* TWEAK: When logging Azure upload locations, include the account name
|
163 |
+
* TWEAK: Make the entering of settings for WebDAV more user-friendly
|
164 |
+
* TWEAK: Update bundled select2 to version 4.0.3
|
165 |
+
* TWEAK: Clarify error message when a 'more files' location is not found
|
166 |
+
* TWEAK: Add redirection_404 to the list of tables likely to be large, and not needing search/replacing
|
167 |
+
* COMPATIBILITY: Compatible with WP 4.6 (previous paid versions have incompatibilities with the changes made to 'shiny updates/installs/deletes' in WP 4.6)
|
168 |
+
|
169 |
+
= 1.12.17 - 19/Jul/2016 =
|
170 |
+
|
171 |
+
* FIX: Previous free release included empty translation files
|
172 |
+
* TWEAK: Add 'snapshots' to the default list of directories to exclude from the uploads backup (is used by another backup plugin - avoid backups-of-backups)
|
173 |
+
* TWEAK: Add et_bloom_stats to the list of tables likely to be large, and not needing search/replacing
|
174 |
+
|
175 |
+
= 1.12.16 - 07/Jul/2016 =
|
176 |
+
|
177 |
+
* TWEAK: Log FTP progress upload less often (slight resource usage improvement)
|
178 |
+
* TWEAK: For multi-archive backup sets, the HTML title attribute of download buttons had unnecessary duplicated information
|
179 |
+
* TWEAK: Improve OneDrive performance by cacheing directory listings
|
180 |
+
* TWEAK: Detect and handle a case in which OneDrive incorrectly reports a file as incompletely uploaded
|
181 |
+
* FIX: OneDrive scanning of large directories for existing backup sets was only detecting the first 200 files
|
182 |
+
|
183 |
+
= 1.12.15 - 06/Jul/2016 =
|
184 |
+
|
185 |
+
* TWEAK: S3 now supports the new Mumbai region
|
186 |
+
* TWEAK: If the user enters an AWS/S3 access key that looks prima facie invalid, then mention this in the error output
|
187 |
+
* TWEAK: Make the message that the user is shown in the case of no network connectivity to updraftplus.com when connecting for updates (paid versions) clearer
|
188 |
+
* TWEAK: Extend cacheing of enumeration of uploads that was introduced in 1.11.1 to other data in wp-content also
|
189 |
+
* TWEAK: Avoid fatal error in Migrator if running via WP-CLI with the USER environment variable unset
|
190 |
+
* TWEAK: When DB_CHARSET is defined but empty, treat it the same as if undefined
|
191 |
+
* TWEAK: Add updraftplus_remotesend_udrpc_object_obtained action hook, allowing customisation of HTTP transport options for remote sending
|
192 |
+
* TWEAK: Introduced new UPDRAFTPLUS_RESTORE_ALL_SETTINGS constant to assist in complicated load-balancing setups with duplicate install on the same URL
|
193 |
+
* TWEAK: Update bundled tripleclick script to fix bug in teardown handler
|
194 |
+
* TWEAK: Update bundled UDRPC library to version 1.4.8
|
195 |
+
* TWEAK: Patch Labelauty to be friendly to screen-readers
|
196 |
+
* TWEAK: Suppress the UD updates check on paid versions that immediately follows a WP automatic core security update
|
197 |
+
* TWEAK: Handle missing UpdraftCentral command classes more elegantly
|
198 |
+
* FEATURE: Endpoint handlers for forthcoming updates and user mangement features in UpdraftCentral
|
199 |
+
* TRANSLATIONS: Remove bundled German (de_DE) translation, since this is now retrieved from wordpress.org
|
200 |
+
* FIX: Fix inaccurate reporting of the current Vault quota usage in the report email
|
201 |
+
* FIX: Fix logic errors in processing return codes when no direct MySQL/MySQLi connection was possible in restoring that could cause UpdraftPlus to wrongly conclude that restoring was not possible
|
202 |
+
|
203 |
+
= 1.12.13 - 07/Jun/2016 =
|
204 |
+
|
205 |
+
* TWEAK: Default the S3 secret key field type to 'password' instead of 'text'
|
206 |
+
* TWEAK: Do more checks for active output buffers prior to spooling files to the browser (to prevent memory overflows)
|
207 |
+
* TWEAK: Update bundled UDRPC library to version 1.4.7
|
208 |
+
|
209 |
+
= 1.12.12 - 25/May/2016 =
|
210 |
+
|
211 |
+
* FIX: When restoring a plugins backup on multisite, old plugins were inactivated but not always removed
|
212 |
+
* TWEAK: Use POST instead of GET for OneDrive token requests - some new accounts seem to have begun requiring this
|
213 |
+
* TWEAK: When backing up user-configured directories, don't log confusing/misleading messages for unzippable directory symlinks
|
214 |
+
* TRANSLATIONS: wordpress.org is now serving up translations for fr_FR, pt_PT and ro_RO, so these can/have been removed from the plugin zip (1.2Mb released)
|
215 |
+
|
216 |
+
= 1.12.11 - 19/May/2016 =
|
217 |
+
|
218 |
+
* FIX: 1.12.8 (paid versions only) contained a regression that prevented S3 access if the user had a custom policy that did not include location permission. This fix means that the work-around of adding that permission to the policy is no longer required.
|
219 |
+
* FIX: Fix a regression in 1.12.8 that prevented non-existent DreamObjects buckets from being created
|
220 |
+
* FIX: Fix inaccurate reporting of the current Vault quota usage in the report email since 1.12.8
|
221 |
+
* FIX: The short-lived 1.12.10 had a duplicate copy of the plugin in the release zip
|
222 |
+
* TWEAK: Detect a particular obscure PHP bug in some versions that is triggered by the Amazon S3 SDK, and automatically switch to the older SDK if it is hit (N.B. Not compatible with Frankfurt region).
|
223 |
+
* TWEAK: Audit/update all use of wp_remote_ functions to reflect API changes in the upcoming WP 4.6
|
224 |
+
* TWEAK: Tweak to the settings saving, to avoid a false-positive trigger of a particular rule found in some mod_security installs
|
225 |
+
* TWEAK: Update bundled UDRPC library to version 1.4.5
|
226 |
+
|
227 |
+
= 1.12.9 - 11/May/2016 =
|
228 |
+
|
229 |
+
* FIX: In yesterday's 1.12.8, some previously accessible Amazon S3 buckets could no longer be accessed
|
230 |
+
|
231 |
+
= 1.12.8 - 10/May/2016 =
|
232 |
+
|
233 |
+
* FEATURE: Support S3's "infrequent access" storage class (Premium)
|
234 |
+
* FIX: Fix bug in SFTP uploading algorithm that would corrupt archives if a resumption was necessary
|
235 |
+
* TWEAK: Add information on UpdraftVault quota to reporting emails
|
236 |
+
* TWEAK: Update the bundled AWS library to version 2.8.30
|
237 |
+
* TWEAK: Update the bundled Symfony library to version 2.8.5
|
238 |
+
* TWEAK: Update the bundled phpseclib library to version 1.0.2 (which includes a fix for SFTP on PHP 5.3)
|
239 |
+
* TWEAK: Improve the overlapping runs detection when writing out individual database tables, for helping servers with huge tables without mysqldump
|
240 |
+
* TWEAK: Prevent restoration from replacing the local record of keys of remote sites to send backups to (Migrator add-on)
|
241 |
+
* TWEAK: Re-order the classes in class-zip.php, to help misbehaving XCache (and perhaps other opcode cache) instances
|
242 |
+
* TWEAK: Do not include transient update availability data in the backup (which will be immediately out-of-date)
|
243 |
+
* TWEAK: Updated the URLs of various S3-compatible providers to use SSL, where available
|
244 |
+
* TWEAK: Added an endpoint drop-down for Dreamobjects, using their new/updated endpoint (currently only one choice, but they will have more in future)
|
245 |
+
* TWEAK: Suppress a log message from UpdraftVault when that message is not in use
|
246 |
+
* TWEAK: When key creation times out in the Migrator, display the error message in the UI
|
247 |
+
|
248 |
+
= 1.12.6 - 30/Apr/2016 =
|
249 |
+
|
250 |
+
* FIX: UpdraftVault quota usage was being shown incorrectly in recounts on sites connected to accounts backing up multiple sites
|
251 |
+
* TWEAK: In accordance with Barracuda's previous announcement, copy.com no longer exists - https://techlib.barracuda.com/CudaDrive/EOL
|
252 |
+
* TWEAK: Allow particular log lines to be cancelled
|
253 |
+
* TWEAK: Explicitly set the separator when calling http_build_query(), to prevent problems with non-default configurations
|
254 |
+
* TWEAK: Tweak the algorithm for sending data to a remote UD installation to cope with eventually-consistent filesystems that are temporarily inconsistent
|
255 |
+
* TWEAK: Make the automatic backups advert prettier
|
256 |
+
* TWEAK: Detect and combine file and database backups running on different schedules which coincide
|
257 |
+
* TWEAK: Update bundled Select2 to version 4.0.2
|
258 |
+
* TWEAK: Update UDRPC library to version 1.4.3
|
259 |
+
* TWEAK: Update dashboard notices for 2017/18
|
260 |
+
|
261 |
= 1.12.5 - 08/Apr/2016 =
|
262 |
|
263 |
* TWEAK: (Paid versions) - tweak the updater class so that it sends the information that updraftplus.com needs in order to correctly advise about language pack update availability. (If you are continuously seeing the same language pack update offered, then this may continue for a few more hours - please be patient!).
|
@@ -32,6 +32,8 @@ class UpdraftPlus {
|
|
32 |
|
33 |
public $nonce;
|
34 |
|
|
|
|
|
35 |
public $logfile_name = "";
|
36 |
|
37 |
public $logfile_handle = false;
|
@@ -756,6 +758,7 @@ class UpdraftPlus {
|
|
756 |
$this->job_time_ms = microtime(true);
|
757 |
$this->backup_time = time();
|
758 |
if (false === $nonce) $nonce = substr(md5(time().rand()), 20);
|
|
|
759 |
$this->nonce = $nonce;
|
760 |
return $nonce;
|
761 |
}
|
@@ -1178,7 +1181,6 @@ class UpdraftPlus {
|
|
1178 |
* (bool)log: (bool) - if absent, defaults to true
|
1179 |
* (int)new_chunk_size: advisory amount for the chunk size for future chunks
|
1180 |
* NOT IMPLEMENTED: (int)bytes_uploaded: Actual number of bytes uploaded (needs to be positive - o/w, should return an error instead)
|
1181 |
-
*
|
1182 |
* N.B. Consumers should consult $fp and $upload_start to get data; they should not re-calculate from $chunk_index, which is not an indicator of file position.
|
1183 |
*/
|
1184 |
$uploaded = $caller->chunked_upload($file, $fp, $chunk_index, $upload_size, $upload_start, $upload_end, $orig_file_size);
|
@@ -2026,6 +2028,7 @@ class UpdraftPlus {
|
|
2026 |
|
2027 |
if ($resumption_no > 0) {
|
2028 |
|
|
|
2029 |
$this->nonce = $bnonce;
|
2030 |
$this->backup_time = $this->jobdata_get('backup_time');
|
2031 |
$this->job_time_ms = $this->jobdata_get('job_time_ms');
|
@@ -3167,7 +3170,7 @@ class UpdraftPlus {
|
|
3167 |
|
3168 |
private function delete_local($file) {
|
3169 |
$log = "Deleting local file: $file: ";
|
3170 |
-
if (UpdraftPlus_Options::get_updraft_option('updraft_delete_local')) {
|
3171 |
$fullpath = $this->backups_dir_location().'/'.$file;
|
3172 |
|
3173 |
// check to make sure it exists before removing
|
@@ -4859,6 +4862,7 @@ class UpdraftPlus {
|
|
4859 |
'updraft_dreamobjects',
|
4860 |
'updraft_report_warningsonly',
|
4861 |
'updraft_report_wholebackup',
|
|
|
4862 |
'updraft_log_syslog',
|
4863 |
'updraft_extradatabases',
|
4864 |
);
|
32 |
|
33 |
public $nonce;
|
34 |
|
35 |
+
public $file_nonce;
|
36 |
+
|
37 |
public $logfile_name = "";
|
38 |
|
39 |
public $logfile_handle = false;
|
758 |
$this->job_time_ms = microtime(true);
|
759 |
$this->backup_time = time();
|
760 |
if (false === $nonce) $nonce = substr(md5(time().rand()), 20);
|
761 |
+
$this->file_nonce = apply_filters('updraftplus_incremental_backup_file_nonce', $nonce);
|
762 |
$this->nonce = $nonce;
|
763 |
return $nonce;
|
764 |
}
|
1181 |
* (bool)log: (bool) - if absent, defaults to true
|
1182 |
* (int)new_chunk_size: advisory amount for the chunk size for future chunks
|
1183 |
* NOT IMPLEMENTED: (int)bytes_uploaded: Actual number of bytes uploaded (needs to be positive - o/w, should return an error instead)
|
|
|
1184 |
* N.B. Consumers should consult $fp and $upload_start to get data; they should not re-calculate from $chunk_index, which is not an indicator of file position.
|
1185 |
*/
|
1186 |
$uploaded = $caller->chunked_upload($file, $fp, $chunk_index, $upload_size, $upload_start, $upload_end, $orig_file_size);
|
2028 |
|
2029 |
if ($resumption_no > 0) {
|
2030 |
|
2031 |
+
$this->file_nonce = apply_filters('updraftplus_incremental_backup_file_nonce', $bnonce);
|
2032 |
$this->nonce = $bnonce;
|
2033 |
$this->backup_time = $this->jobdata_get('backup_time');
|
2034 |
$this->job_time_ms = $this->jobdata_get('job_time_ms');
|
3170 |
|
3171 |
private function delete_local($file) {
|
3172 |
$log = "Deleting local file: $file: ";
|
3173 |
+
if (UpdraftPlus_Options::get_updraft_option('updraft_delete_local', 1)) {
|
3174 |
$fullpath = $this->backups_dir_location().'/'.$file;
|
3175 |
|
3176 |
// check to make sure it exists before removing
|
4862 |
'updraft_dreamobjects',
|
4863 |
'updraft_report_warningsonly',
|
4864 |
'updraft_report_wholebackup',
|
4865 |
+
'updraft_report_dbbackup',
|
4866 |
'updraft_log_syslog',
|
4867 |
'updraft_extradatabases',
|
4868 |
);
|
@@ -126,6 +126,36 @@ select {
|
|
126 |
border-color: rgb(238, 169, 32);
|
127 |
}
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
.button-backup {
|
130 |
border-color: #84CA1B;
|
131 |
color: #84CA1B;
|
@@ -282,6 +312,10 @@ h3 .thank-you {
|
|
282 |
left: 4px;
|
283 |
}
|
284 |
|
|
|
|
|
|
|
|
|
285 |
#updraft-navtab-settings-content .updraft-test-button {
|
286 |
font-size: 18px !important;
|
287 |
}
|
@@ -575,6 +609,16 @@ ul.updraft_premium_description_list li.last::after {
|
|
575 |
padding: 5px 10px;
|
576 |
}
|
577 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {
|
579 |
border: 1px solid black;
|
580 |
border-collapse: collapse;
|
@@ -1771,4 +1815,4 @@ div#updraft-wrap a {
|
|
1771 |
display: block;
|
1772 |
}
|
1773 |
|
1774 |
-
}
|
126 |
border-color: rgb(238, 169, 32);
|
127 |
}
|
128 |
|
129 |
+
.updraft_migrate_widget_module {
|
130 |
+
margin: 8px 4px;
|
131 |
+
padding: 5px 8px;
|
132 |
+
border: 1px dotted;
|
133 |
+
}
|
134 |
+
|
135 |
+
.updraft_migrate_widget_reset {
|
136 |
+
display: none;
|
137 |
+
margin-left: 4px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.updraft_migrate_widget_module_title {
|
141 |
+
cursor: pointer;
|
142 |
+
}
|
143 |
+
|
144 |
+
.updraft_migrate_widget_module_title > p {
|
145 |
+
line-height: 1em;
|
146 |
+
margin: 8px 0px 4px 0px;
|
147 |
+
padding: 4px 0px;
|
148 |
+
}
|
149 |
+
|
150 |
+
.updraft_migrate_widget_module_title > p > span {
|
151 |
+
font-size: 30px !important;
|
152 |
+
padding-right: 15px;
|
153 |
+
}
|
154 |
+
|
155 |
+
.updraft_migrate_widget_module_content {
|
156 |
+
display: none;
|
157 |
+
}
|
158 |
+
|
159 |
.button-backup {
|
160 |
border-color: #84CA1B;
|
161 |
color: #84CA1B;
|
312 |
left: 4px;
|
313 |
}
|
314 |
|
315 |
+
.updraft_report_dbbackup.updraft_report_disabled {
|
316 |
+
color: #CCC;
|
317 |
+
}
|
318 |
+
|
319 |
#updraft-navtab-settings-content .updraft-test-button {
|
320 |
font-size: 18px !important;
|
321 |
}
|
609 |
padding: 5px 10px;
|
610 |
}
|
611 |
|
612 |
+
.updraftplus_com_login_status {
|
613 |
+
display: none;
|
614 |
+
border-left-color: #DC3232 !important;
|
615 |
+
background: #FFF;
|
616 |
+
border-left: 4px solid #FFF;
|
617 |
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
618 |
+
margin: 5px 0 15px 0;
|
619 |
+
padding: 5px 12px;
|
620 |
+
}
|
621 |
+
|
622 |
.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {
|
623 |
border: 1px solid black;
|
624 |
border-collapse: collapse;
|
1815 |
display: block;
|
1816 |
}
|
1817 |
|
1818 |
+
}
|
@@ -1,2 +1,2 @@
|
|
1 |
-
.max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.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}.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}.button-backup{border-color:#84ca1b;color:#84ca1b}.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{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%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.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_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.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{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_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_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.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:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}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::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.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}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#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}#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}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_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;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-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{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.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{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.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}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.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}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.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_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{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}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}}@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}}
|
2 |
/*# sourceMappingURL=updraftplus-admin.min.css.map */
|
1 |
+
.max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.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}.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_widget_module{margin:8px 4px;padding:5px 8px;border:1px dotted}.updraft_migrate_widget_reset{display:none;margin-left:4px}.updraft_migrate_widget_module_title{cursor:pointer}.updraft_migrate_widget_module_title>p{line-height:1em;margin:8px 0 4px 0;padding:4px 0}.updraft_migrate_widget_module_title>p>span{font-size:30px !important;padding-right:15px}.updraft_migrate_widget_module_content{display:none}.button-backup{border-color:#84ca1b;color:#84ca1b}.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{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%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.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_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.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{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_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_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.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:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}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::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status{display:none;border-left-color:#dc3232 !important;background:#FFF;border-left:4px solid #FFF;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.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}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#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}#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}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_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;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-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{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.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{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.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}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.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}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.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_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{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}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}}@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}}
|
2 |
/*# sourceMappingURL=updraftplus-admin.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;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;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;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,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;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;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;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,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;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,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;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,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;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,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;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,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;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,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;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,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;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;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\twidth: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n/* Input boxes */\n\ninput {\n\tborder-radius: 4px;\n\tline-height: 1.42;\n\tborder: 1px solid #CCC;\n\theight: 27px;\n\tpadding: 2px 6px;\n\tcolor: #555;\n}\n\ninput[type=\"text\"] {\n\tfont-size: 14px;\n}\n\ninput[type=\"number\"] {\n\theight: 31px;\n}\n\nselect {\n\tborder-radius: 4px;\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\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.button-backup {\n\tborder-color: #84CA1B;\n\tcolor: #84CA1B;\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 {\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\n.form-table td.updraft_existingbackup_date {\n\tpadding-bottom: 5px;\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 .clear-right {\n\tclear: right;\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_report_cell .updraft_reportbox {\n\tpadding: 8px;\n\tmargin: 8px 0;\n\tborder: 1px dotted;\n\tclear: left;\n\tfloat: left;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete {\n\tfont-size: 50%;\n\tfloat: right;\n\tpadding: 0 3px;\n\tposition: relative;\n\ttop: -4px;\n\tleft: 4px;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_checkbox {\n\tmargin-top: 4px;\n}\n\n#updraft_report_cell .updraft_report_email {\n\twidth: 300px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\tbackground-color: #CCC;\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 {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n#updraft_zip_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n#updraft_zip_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_zip_files_jstree_container {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\theight: 300px;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n#updraft_jstree_buttons {\n\tposition: absolute;\n\ttop: 0;\n\tright: 0;\n}\n\n#updraft_jstree_container {\n\theight: 100%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\theight: 22px;\n\tline-height: 20px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 23px !important;\n}\n\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n\tfont-size: 24px !important;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n.updraftplus-remove {\n\tbackground-color: #C00000;\n\tborder: 1px solid #C00000;\n\theight: 22px;\n\tpadding: 4px 3px 0 3px;\n\tmargin-right: 6px;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tbackground-color: #FFF;\n\tcolor: #000;\n\tborder: 1px solid #000;\n\theight: 26px;\n\tpadding: 0px;\n\tmargin: 0 4px 0 0;\n\tborder-radius: 3px;\n\tfloat: left;\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:hover {\n\tbackground-color: #000;\n\tcolor: #FFF;\n\tborder: 1px solid #FFF;\n\tcursor: pointer;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.updraftplus-remove a {\n\tcolor: white;\n\tpadding: 4px 4px 0px 4px;\n}\n\n.updraftplus-remove:hover {\n\tbackground-color: white;\n\tborder: 1px solid #C00000;\n}\n\n.updraftplus-remove a:hover {\n\tcolor: #C00000;\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 5px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\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::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid black;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 16px;\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#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #F6A828;\n\theight: 5px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\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}\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.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.next-backup .updraft_all-files {\n\tcolor: blue;\n\tmargin: 0px;\n\tpadding: 2px 0px 0px 0px;\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\tfont-size: 115%;\n}\n\n.updraft_feat_table {\n\tmargin-top: 30px;\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_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\tmargin-top: 4px;\n}\n\n.download-backups .choose-components-button {\n\tfont-size: 16px;\n}\n\n.download-backups .ud-whitespace-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\twidth: 75%;\n\tmargin: 16px;\n\tmargin-left: 100px;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 70%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px;\n\tbackground: #F1F1F1;\n}\n\n#ud_massactions {\n\tpadding: 14px;\n\tposition: fixed;\n\tright: 25%;\n\ttop: 25%;\n\tborder: 2px solid;\n\tborder-radius: 4px;\n\tbackground: rgb(241, 241, 241);\n\tfloat: right;\n}\n\n#ud_massactions .updraftplus-remove {\n\tclear: left;\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n\tmargin-top: 4px;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv {\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n\tmargin-top: 4px;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n\ttop: 3px;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n\ttop: 3px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 12px;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n}\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\tmin-width: 480px;\n\tmin-height: 48px;\n\ttext-align: center;\n\tmargin-top: 4px;\n\tpadding: 8px;\n\tborder: 1px solid;\n\tfloat: left;\n\tclear: left;\n}\n\n.job-id {\n\tmin-width: 480px;\n\tmargin-top: 4px;\n\tpadding: 8px;\n\tborder: 1px solid;\n\tclear: left;\n\tfloat: left;\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: #F6A828;\n}\n\n.curstage {\n\tborder-radius: 4px;\n\tmargin-top: 8px;\n\tpadding-top: 4px;\n\tborder: 1px solid #AAA;\n\twidth: 100%;\n\theight: 22px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\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.existing-backups-table {\n\tmargin-top: 20px;\n\tmargin-left: 20px;\n\twidth: 80%;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n\tpadding: 0;\n\tpadding-left: 15px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n\tpadding: 0;\n\tpadding-left: 15px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n\tpadding: 0 0 10px 15px;\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.restore-button {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.updraftplus-remove {\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\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_premium_description_list {\n\ttext-align: left;\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.job-id {\n\tmargin: 0 auto;\n\twidth: 20%;\n}\n\n.updraft_all-files {\n\tcolor: #DF6926;\n}\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n@media screen and (max-width: 782px) {\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\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 {\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@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\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}"]}
|
1 |
+
{"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;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;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;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,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;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;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;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,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,sCAAsC;CACtC,iBAAiB;CACjB,4BAA4B;CAC5B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;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,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;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,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;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,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;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,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;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,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;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,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;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;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\twidth: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n/* Input boxes */\n\ninput {\n\tborder-radius: 4px;\n\tline-height: 1.42;\n\tborder: 1px solid #CCC;\n\theight: 27px;\n\tpadding: 2px 6px;\n\tcolor: #555;\n}\n\ninput[type=\"text\"] {\n\tfont-size: 14px;\n}\n\ninput[type=\"number\"] {\n\theight: 31px;\n}\n\nselect {\n\tborder-radius: 4px;\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\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_widget_module {\n\tmargin: 8px 4px;\n\tpadding: 5px 8px;\n\tborder: 1px dotted;\n}\n\n.updraft_migrate_widget_reset {\n\tdisplay: none;\n\tmargin-left: 4px;\n}\n\n.updraft_migrate_widget_module_title {\n\tcursor: pointer;\n}\n\n.updraft_migrate_widget_module_title > p {\n\tline-height: 1em;\n\tmargin: 8px 0px 4px 0px;\n\tpadding: 4px 0px;\n}\n\n.updraft_migrate_widget_module_title > p > span {\n\tfont-size: 30px !important;\n\tpadding-right: 15px;\n}\n\n.updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.button-backup {\n\tborder-color: #84CA1B;\n\tcolor: #84CA1B;\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 {\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\n.form-table td.updraft_existingbackup_date {\n\tpadding-bottom: 5px;\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 .clear-right {\n\tclear: right;\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_report_cell .updraft_reportbox {\n\tpadding: 8px;\n\tmargin: 8px 0;\n\tborder: 1px dotted;\n\tclear: left;\n\tfloat: left;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete {\n\tfont-size: 50%;\n\tfloat: right;\n\tpadding: 0 3px;\n\tposition: relative;\n\ttop: -4px;\n\tleft: 4px;\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_checkbox {\n\tmargin-top: 4px;\n}\n\n#updraft_report_cell .updraft_report_email {\n\twidth: 300px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\tbackground-color: #CCC;\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 {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n#updraft_zip_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n#updraft_zip_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_zip_files_jstree_container {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\theight: 300px;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n#updraft_jstree_buttons {\n\tposition: absolute;\n\ttop: 0;\n\tright: 0;\n}\n\n#updraft_jstree_container {\n\theight: 100%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\theight: 22px;\n\tline-height: 20px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 23px !important;\n}\n\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n\tfont-size: 24px !important;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n.updraftplus-remove {\n\tbackground-color: #C00000;\n\tborder: 1px solid #C00000;\n\theight: 22px;\n\tpadding: 4px 3px 0 3px;\n\tmargin-right: 6px;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tbackground-color: #FFF;\n\tcolor: #000;\n\tborder: 1px solid #000;\n\theight: 26px;\n\tpadding: 0px;\n\tmargin: 0 4px 0 0;\n\tborder-radius: 3px;\n\tfloat: left;\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:hover {\n\tbackground-color: #000;\n\tcolor: #FFF;\n\tborder: 1px solid #FFF;\n\tcursor: pointer;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.updraftplus-remove a {\n\tcolor: white;\n\tpadding: 4px 4px 0px 4px;\n}\n\n.updraftplus-remove:hover {\n\tbackground-color: white;\n\tborder: 1px solid #C00000;\n}\n\n.updraftplus-remove a:hover {\n\tcolor: #C00000;\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 5px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\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::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 {\n\tdisplay: none;\n\tborder-left-color: #DC3232 !important;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid black;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 16px;\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#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #F6A828;\n\theight: 5px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\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}\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.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.next-backup .updraft_all-files {\n\tcolor: blue;\n\tmargin: 0px;\n\tpadding: 2px 0px 0px 0px;\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\tfont-size: 115%;\n}\n\n.updraft_feat_table {\n\tmargin-top: 30px;\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_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\tmargin-top: 4px;\n}\n\n.download-backups .choose-components-button {\n\tfont-size: 16px;\n}\n\n.download-backups .ud-whitespace-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\twidth: 75%;\n\tmargin: 16px;\n\tmargin-left: 100px;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 70%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px;\n\tbackground: #F1F1F1;\n}\n\n#ud_massactions {\n\tpadding: 14px;\n\tposition: fixed;\n\tright: 25%;\n\ttop: 25%;\n\tborder: 2px solid;\n\tborder-radius: 4px;\n\tbackground: rgb(241, 241, 241);\n\tfloat: right;\n}\n\n#ud_massactions .updraftplus-remove {\n\tclear: left;\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n\tmargin-top: 4px;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv {\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n\tmargin-top: 4px;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n\ttop: 3px;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n\ttop: 3px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 12px;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n}\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\tmin-width: 480px;\n\tmin-height: 48px;\n\ttext-align: center;\n\tmargin-top: 4px;\n\tpadding: 8px;\n\tborder: 1px solid;\n\tfloat: left;\n\tclear: left;\n}\n\n.job-id {\n\tmin-width: 480px;\n\tmargin-top: 4px;\n\tpadding: 8px;\n\tborder: 1px solid;\n\tclear: left;\n\tfloat: left;\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: #F6A828;\n}\n\n.curstage {\n\tborder-radius: 4px;\n\tmargin-top: 8px;\n\tpadding-top: 4px;\n\tborder: 1px solid #AAA;\n\twidth: 100%;\n\theight: 22px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\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.existing-backups-table {\n\tmargin-top: 20px;\n\tmargin-left: 20px;\n\twidth: 80%;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n\tpadding: 0;\n\tpadding-left: 15px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n\tpadding: 0;\n\tpadding-left: 15px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n\tpadding: 0 0 10px 15px;\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.restore-button {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.updraftplus-remove {\n\tfont-size: 16px;\n\ttext-align: center;\n\tborder-radius: 4px;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\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_premium_description_list {\n\ttext-align: left;\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.job-id {\n\tmargin: 0 auto;\n\twidth: 20%;\n}\n\n.updraft_all-files {\n\tcolor: #DF6926;\n}\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n@media screen and (max-width: 782px) {\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\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 {\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@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\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"]}
|
Binary file
|
Binary file
|
@@ -234,10 +234,10 @@ class UpdraftPlus_S3_Compat {
|
|
234 |
|
235 |
// $verify_peer = ($validate) ? true : false;
|
236 |
// $verify_host = ($validate) ? 2 : 0;
|
237 |
-
//
|
238 |
// $this->config['scheme'] = 'https';
|
239 |
// $this->client->setConfig($this->config);
|
240 |
-
//
|
241 |
// $this->client->setSslVerification($validate, $verify_peer, $verify_host);
|
242 |
|
243 |
|
234 |
|
235 |
// $verify_peer = ($validate) ? true : false;
|
236 |
// $verify_host = ($validate) ? 2 : 0;
|
237 |
+
//
|
238 |
// $this->config['scheme'] = 'https';
|
239 |
// $this->client->setConfig($this->config);
|
240 |
+
//
|
241 |
// $this->client->setSslVerification($validate, $verify_peer, $verify_host);
|
242 |
|
243 |
|
@@ -1,130 +1,23 @@
|
|
1 |
##
|
2 |
-
##
|
3 |
##
|
4 |
-
## Certificate data from Mozilla as of:
|
5 |
##
|
6 |
## This is a bundle of X.509 certificates of public Certificate Authorities
|
7 |
## (CA). These were automatically extracted from Mozilla's root certificates
|
8 |
## file (certdata.txt). This file can be found in the mozilla source tree:
|
9 |
-
##
|
10 |
##
|
11 |
## It contains the certificates in PEM format and therefore
|
12 |
## can be directly used with curl / libcurl / php_curl, or with
|
13 |
## an Apache+mod_ssl webserver for SSL client authentication.
|
14 |
## Just configure this file as the SSLCACertificateFile.
|
15 |
##
|
|
|
|
|
|
|
16 |
|
17 |
|
18 |
-
GTE CyberTrust Global Root
|
19 |
-
==========================
|
20 |
-
-----BEGIN CERTIFICATE-----
|
21 |
-
MIICWjCCAcMCAgGlMA0GCSqGSIb3DQEBBAUAMHUxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9HVEUg
|
22 |
-
Q29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNvbHV0aW9ucywgSW5jLjEjMCEG
|
23 |
-
A1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJvb3QwHhcNOTgwODEzMDAyOTAwWhcNMTgwODEz
|
24 |
-
MjM1OTAwWjB1MQswCQYDVQQGEwJVUzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQL
|
25 |
-
Ex5HVEUgQ3liZXJUcnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0
|
26 |
-
IEdsb2JhbCBSb290MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCVD6C28FCc6HrHiM3dFw4u
|
27 |
-
sJTQGz0O9pTAipTHBsiQl8i4ZBp6fmw8U+E3KHNgf7KXUwefU/ltWJTSr41tiGeA5u2ylc9yMcql
|
28 |
-
HHK6XALnZELn+aks1joNrI1CqiQBOeacPwGFVw1Yh0X404Wqk2kmhXBIgD8SFcd5tB8FLztimQID
|
29 |
-
AQABMA0GCSqGSIb3DQEBBAUAA4GBAG3rGwnpXtlR22ciYaQqPEh346B8pt5zohQDhT37qw4wxYMW
|
30 |
-
M4ETCJ57NE7fQMh017l93PR2VX2bY1QY6fDq81yx2YtCHrnAlU66+tXifPVoYb+O7AWXX1uw16OF
|
31 |
-
NMQkpw0PlZPvy5TYnh+dXIVtx6quTx8itc2VrbqnzPmrC3p/
|
32 |
-
-----END CERTIFICATE-----
|
33 |
-
|
34 |
-
Thawte Server CA
|
35 |
-
================
|
36 |
-
-----BEGIN CERTIFICATE-----
|
37 |
-
MIIDEzCCAnygAwIBAgIBATANBgkqhkiG9w0BAQQFADCBxDELMAkGA1UEBhMCWkExFTATBgNVBAgT
|
38 |
-
DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29uc3Vs
|
39 |
-
dGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcGA1UE
|
40 |
-
AxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5j
|
41 |
-
b20wHhcNOTYwODAxMDAwMDAwWhcNMjAxMjMxMjM1OTU5WjCBxDELMAkGA1UEBhMCWkExFTATBgNV
|
42 |
-
BAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29u
|
43 |
-
c3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcG
|
44 |
-
A1UEAxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0
|
45 |
-
ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANOkUG7I/1Zr5s9dtuoMaHVHoqrC2oQl
|
46 |
-
/Kj0R1HahbUgdJSGHg91yekIYfUGbTBuFRkC6VLAYttNmZ7iagxEOM3+vuNkCXDF/rFrKbYvScg7
|
47 |
-
1CcEJRCXL+eQbcAoQpnXTEPew/UhbVSfXcNY4cDk2VuwuNy0e982OsK1ZiIS1ocNAgMBAAGjEzAR
|
48 |
-
MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAB/pMaVz7lcxG7oWDTSEwjsrZqG9J
|
49 |
-
GubaUeNgcGyEYRGhGshIPllDfU+VPaGLtwtimHp1it2ITk6eQNuozDJ0uW8NxuOzRAvZim+aKZuZ
|
50 |
-
GCg70eNAKJpaPNW15yAbi8qkq43pUdniTCxZqdq5snUb9kLy78fyGPmJvKP/iiMucEc=
|
51 |
-
-----END CERTIFICATE-----
|
52 |
-
|
53 |
-
Thawte Premium Server CA
|
54 |
-
========================
|
55 |
-
-----BEGIN CERTIFICATE-----
|
56 |
-
MIIDJzCCApCgAwIBAgIBATANBgkqhkiG9w0BAQQFADCBzjELMAkGA1UEBhMCWkExFTATBgNVBAgT
|
57 |
-
DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29uc3Vs
|
58 |
-
dGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEhMB8GA1UE
|
59 |
-
AxMYVGhhd3RlIFByZW1pdW0gU2VydmVyIENBMSgwJgYJKoZIhvcNAQkBFhlwcmVtaXVtLXNlcnZl
|
60 |
-
ckB0aGF3dGUuY29tMB4XDTk2MDgwMTAwMDAwMFoXDTIwMTIzMTIzNTk1OVowgc4xCzAJBgNVBAYT
|
61 |
-
AlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEdMBsGA1UEChMU
|
62 |
-
VGhhd3RlIENvbnN1bHRpbmcgY2MxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2VydmljZXMgRGl2
|
63 |
-
aXNpb24xITAfBgNVBAMTGFRoYXd0ZSBQcmVtaXVtIFNlcnZlciBDQTEoMCYGCSqGSIb3DQEJARYZ
|
64 |
-
cHJlbWl1bS1zZXJ2ZXJAdGhhd3RlLmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0jY2
|
65 |
-
aovXwlue2oFBYo847kkEVdbQ7xwblRZH7xhINTpS9CtqBo87L+pW46+GjZ4X9560ZXUCTe/LCaIh
|
66 |
-
Udib0GfQug2SBhRz1JPLlyoAnFxODLz6FVL88kRu2hFKbgifLy3j+ao6hnO2RlNYyIkFvYMRuHM/
|
67 |
-
qgeN9EJN50CdHDcCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQAm
|
68 |
-
SCwWwlj66BZ0DKqqX1Q/8tfJeGBeXm43YyJ3Nn6yF8Q0ufUIhfzJATj/Tb7yFkJD57taRvvBxhEf
|
69 |
-
8UqwKEbJw8RCfbz6q1lu1bdRiBHjpIUZa4JMpAwSremkrj/xw0llmozFyD4lt5SZu5IycQfwhl7t
|
70 |
-
UCemDaYj+bvLpgcUQg==
|
71 |
-
-----END CERTIFICATE-----
|
72 |
-
|
73 |
-
Equifax Secure CA
|
74 |
-
=================
|
75 |
-
-----BEGIN CERTIFICATE-----
|
76 |
-
MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEQMA4GA1UE
|
77 |
-
ChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5
|
78 |
-
MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoT
|
79 |
-
B0VxdWlmYXgxLTArBgNVBAsTJEVxdWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCB
|
80 |
-
nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPR
|
81 |
-
fM6fBeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+AcJkVV5MW
|
82 |
-
8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kCAwEAAaOCAQkwggEFMHAG
|
83 |
-
A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UE
|
84 |
-
CxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoG
|
85 |
-
A1UdEAQTMBGBDzIwMTgwODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvS
|
86 |
-
spXXR9gjIBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQFMAMB
|
87 |
-
Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAFjOKer89961
|
88 |
-
zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y7qj/WsjTVbJmcVfewCHrPSqnI0kB
|
89 |
-
BIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee95
|
90 |
-
70+sB3c4
|
91 |
-
-----END CERTIFICATE-----
|
92 |
-
|
93 |
-
Verisign Class 3 Public Primary Certification Authority
|
94 |
-
=======================================================
|
95 |
-
-----BEGIN CERTIFICATE-----
|
96 |
-
MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkGA1UEBhMCVVMx
|
97 |
-
FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmltYXJ5
|
98 |
-
IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVow
|
99 |
-
XzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAz
|
100 |
-
IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUA
|
101 |
-
A4GNADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhEBarsAx94
|
102 |
-
f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/isI19wKTakyYbnsZogy1Ol
|
103 |
-
hec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0GCSqGSIb3DQEBAgUAA4GBALtMEivPLCYA
|
104 |
-
TxQT3ab7/AoRhIzzKBxnki98tsX63/Dolbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59Ah
|
105 |
-
WM1pF+NEHJwZRDmJXNycAA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2Omuf
|
106 |
-
Tqj/ZA1k
|
107 |
-
-----END CERTIFICATE-----
|
108 |
-
|
109 |
-
Verisign Class 3 Public Primary Certification Authority - G2
|
110 |
-
============================================================
|
111 |
-
-----BEGIN CERTIFICATE-----
|
112 |
-
MIIDAjCCAmsCEH3Z/gfPqB63EHln+6eJNMYwDQYJKoZIhvcNAQEFBQAwgcExCzAJBgNVBAYTAlVT
|
113 |
-
MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMgUHJpbWFy
|
114 |
-
eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln
|
115 |
-
biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz
|
116 |
-
dCBOZXR3b3JrMB4XDTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVT
|
117 |
-
MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMgUHJpbWFy
|
118 |
-
eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln
|
119 |
-
biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz
|
120 |
-
dCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMXtERXVxp0KvTuWpMmR9ZmDCO
|
121 |
-
FoUgRm1HP9SFIIThbbP4pO0M8RcPO/mn+SXXwc+EY/J8Y8+iR/LGWzOOZEAEaMGAuWQcRXfH2G71
|
122 |
-
lSk8UOg013gfqLptQ5GVj0VXXn7F+8qkBOvqlzdUMG+7AUcyM83cV5tkaWH4mx0ciU9cZwIDAQAB
|
123 |
-
MA0GCSqGSIb3DQEBBQUAA4GBAFFNzb5cy5gZnBWyATl4Lk0PZ3BwmcYQWpSkU01UbSuvDV1Ai2TT
|
124 |
-
1+7eVmGSX6bEHRBhNtMsJzzoKQm5EWR0zLVznxxIqbxhAe7iF6YM40AIOw7n60RzKprxaZLvcRTD
|
125 |
-
Oaxxp5EJb+RxBrO6WVcmeQD2+A2iMzAo1KpYoJ2daZH9
|
126 |
-
-----END CERTIFICATE-----
|
127 |
-
|
128 |
GlobalSign Root CA
|
129 |
==================
|
130 |
-----BEGIN CERTIFICATE-----
|
@@ -168,25 +61,6 @@ BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
|
|
168 |
TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
|
169 |
-----END CERTIFICATE-----
|
170 |
|
171 |
-
RSA Root Certificate 1
|
172 |
-
======================
|
173 |
-
-----BEGIN CERTIFICATE-----
|
174 |
-
MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRp
|
175 |
-
b24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs
|
176 |
-
YXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZh
|
177 |
-
bGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAw
|
178 |
-
MjIzM1oXDTE5MDYyNjAwMjIzM1owgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0
|
179 |
-
d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENsYXNzIDMg
|
180 |
-
UG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0
|
181 |
-
LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMIGfMA0GCSqGSIb3DQEBAQUA
|
182 |
-
A4GNADCBiQKBgQDjmFGWHOjVsQaBalfDcnWTq8+epvzzFlLWLU2fNUSoLgRNB0mKOCn1dzfnt6td
|
183 |
-
3zZxFJmP3MKS8edgkpfs2Ejcv8ECIMYkpChMMFp2bbFc893enhBxoYjHW5tBbcqwuI4V7q0zK89H
|
184 |
-
BFx1cQqYJJgpp0lZpd34t0NiYfPT4tBVPwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFa7AliEZwgs
|
185 |
-
3x/be0kz9dNnnfS0ChCzycUs4pJqcXgn8nCDQtM+z6lU9PHYkhaM0QTLS6vJn0WuPIqpsHEzXcjF
|
186 |
-
V9+vqDWzf4mH6eglkrh/hXqu1rweN1gqZ8mRzyqBPu3GOd/APhmcGcwTTYJBtYze4D1gCCAPRX5r
|
187 |
-
on+jjBXu
|
188 |
-
-----END CERTIFICATE-----
|
189 |
-
|
190 |
Verisign Class 3 Public Primary Certification Authority - G3
|
191 |
============================================================
|
192 |
-----BEGIN CERTIFICATE-----
|
@@ -211,30 +85,6 @@ xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa
|
|
211 |
t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
|
212 |
-----END CERTIFICATE-----
|
213 |
|
214 |
-
Verisign Class 4 Public Primary Certification Authority - G3
|
215 |
-
============================================================
|
216 |
-
-----BEGIN CERTIFICATE-----
|
217 |
-
MIIEGjCCAwICEQDsoKeLbnVqAc/EfMwvlF7XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
|
218 |
-
UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
|
219 |
-
cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
|
220 |
-
IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
|
221 |
-
dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
|
222 |
-
CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
|
223 |
-
dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
|
224 |
-
cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkg
|
225 |
-
Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
226 |
-
ggEBAK3LpRFpxlmr8Y+1GQ9Wzsy1HyDkniYlS+BzZYlZ3tCD5PUPtbut8XzoIfzk6AzufEUiGXaS
|
227 |
-
tBO3IFsJ+mGuqPKljYXCKtbeZjbSmwL0qJJgfJxptI8kHtCGUvYynEFYHiK9zUVilQhu0GbdU6LM
|
228 |
-
8BDcVHOLBKFGMzNcF0C5nk3T875Vg+ixiY5afJqWIpA7iCXy0lOIAgwLePLmNxdLMEYH5IBtptiW
|
229 |
-
Lugs+BGzOA1mppvqySNb247i8xOOGlktqgLw7KSHZtzBP/XYufTsgsbSPZUd5cBPhMnZo0QoBmrX
|
230 |
-
Razwa2rvTl/4EYIeOGM0ZlDUPpNz+jDDZq3/ky2X7wMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
|
231 |
-
j/ola09b5KROJ1WrIhVZPMq1CtRK26vdoV9TxaBXOcLORyu+OshWv8LZJxA6sQU8wHcxuzrTBXtt
|
232 |
-
mhwwjIDLk5Mqg6sFUYICABFna/OIYUdfA5PVWw3g8dShMjWFsjrbsIKr0csKvE+MW8VLADsfKoKm
|
233 |
-
fjaF3H48ZwC15DtS4KjrXRX5xm3wrR0OhbepmnMUWluPQSjA1egtTaRezarZ7c7c2NU8Qh0XwRJd
|
234 |
-
RTjDOPP8hS6DRkiy1yBfkjaP53kPmF6Z6PDQpLv1U70qzlmwr25/bLvSHgCwIe34QWKCudiyxLtG
|
235 |
-
UPMxxY8BqHTr9Xgn2uf3ZkPznoM+IKrDNWCRzg==
|
236 |
-
-----END CERTIFICATE-----
|
237 |
-
|
238 |
Entrust.net Premium 2048 Secure Server CA
|
239 |
=========================================
|
240 |
-----BEGIN CERTIFICATE-----
|
@@ -280,64 +130,6 @@ Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
|
|
280 |
RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
|
281 |
-----END CERTIFICATE-----
|
282 |
|
283 |
-
Equifax Secure Global eBusiness CA
|
284 |
-
==================================
|
285 |
-
-----BEGIN CERTIFICATE-----
|
286 |
-
MIICkDCCAfmgAwIBAgIBATANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT
|
287 |
-
RXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBTZWN1cmUgR2xvYmFsIGVCdXNp
|
288 |
-
bmVzcyBDQS0xMB4XDTk5MDYyMTA0MDAwMFoXDTIwMDYyMTA0MDAwMFowWjELMAkGA1UEBhMCVVMx
|
289 |
-
HDAaBgNVBAoTE0VxdWlmYXggU2VjdXJlIEluYy4xLTArBgNVBAMTJEVxdWlmYXggU2VjdXJlIEds
|
290 |
-
b2JhbCBlQnVzaW5lc3MgQ0EtMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuucXkAJlsTRV
|
291 |
-
PEnCUdXfp9E3j9HngXNBUmCbnaEXJnitx7HoJpQytd4zjTov2/KaelpzmKNc6fuKcxtc58O/gGzN
|
292 |
-
qfTWK8D3+ZmqY6KxRwIP1ORROhI8bIpaVIRw28HFkM9yRcuoWcDNM50/o5brhTMhHD4ePmBudpxn
|
293 |
-
hcXIw2ECAwEAAaNmMGQwEQYJYIZIAYb4QgEBBAQDAgAHMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j
|
294 |
-
BBgwFoAUvqigdHJQa0S3ySPY+6j/s1draGwwHQYDVR0OBBYEFL6ooHRyUGtEt8kj2Puo/7NXa2hs
|
295 |
-
MA0GCSqGSIb3DQEBBAUAA4GBADDiAVGqx+pf2rnQZQ8w1j7aDRRJbpGTJxQx78T3LUX47Me/okEN
|
296 |
-
I7SS+RkAZ70Br83gcfxaz2TE4JaY0KNA4gGK7ycH8WUBikQtBmV1UsCGECAhX2xrD2yuCRyv8qIY
|
297 |
-
NMR1pHMc8Y3c7635s3a0kr/clRAevsvIO1qEYBlWlKlV
|
298 |
-
-----END CERTIFICATE-----
|
299 |
-
|
300 |
-
Equifax Secure eBusiness CA 1
|
301 |
-
=============================
|
302 |
-
-----BEGIN CERTIFICATE-----
|
303 |
-
MIICgjCCAeugAwIBAgIBBDANBgkqhkiG9w0BAQQFADBTMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT
|
304 |
-
RXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNzIENB
|
305 |
-
LTEwHhcNOTkwNjIxMDQwMDAwWhcNMjAwNjIxMDQwMDAwWjBTMQswCQYDVQQGEwJVUzEcMBoGA1UE
|
306 |
-
ChMTRXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNz
|
307 |
-
IENBLTEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM4vGbwXt3fek6lfWg0XTzQaDJj0ItlZ
|
308 |
-
1MRoRvC0NcWFAyDGr0WlIVFFQesWWDYyb+JQYmT5/VGcqiTZ9J2DKocKIdMSODRsjQBuWqDZQu4a
|
309 |
-
IZX5UkxVWsUPOE9G+m34LjXWHXzr4vCwdYDIqROsvojvOm6rXyo4YgKwEnv+j6YDAgMBAAGjZjBk
|
310 |
-
MBEGCWCGSAGG+EIBAQQEAwIABzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEp4MlIR21kW
|
311 |
-
Nl7fwRQ2QGpHfEyhMB0GA1UdDgQWBBRKeDJSEdtZFjZe38EUNkBqR3xMoTANBgkqhkiG9w0BAQQF
|
312 |
-
AAOBgQB1W6ibAxHm6VZMzfmpTMANmvPMZWnmJXbMWbfWVMMdzZmsGd20hdXgPfxiIKeES1hl8eL5
|
313 |
-
lSE/9dR+WB5Hh1Q+WKG1tfgq73HnvMP2sUlG4tega+VWeponmHxGYhTnyfxuAxJ5gDgdSIKN/Bf+
|
314 |
-
KpYrtWKmpj29f5JZzVoqgrI3eQ==
|
315 |
-
-----END CERTIFICATE-----
|
316 |
-
|
317 |
-
AddTrust Low-Value Services Root
|
318 |
-
================================
|
319 |
-
-----BEGIN CERTIFICATE-----
|
320 |
-
MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
321 |
-
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU
|
322 |
-
cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw
|
323 |
-
CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO
|
324 |
-
ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB
|
325 |
-
AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6
|
326 |
-
54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr
|
327 |
-
oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1
|
328 |
-
Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui
|
329 |
-
GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w
|
330 |
-
HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD
|
331 |
-
AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT
|
332 |
-
RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw
|
333 |
-
HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt
|
334 |
-
ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph
|
335 |
-
iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY
|
336 |
-
eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr
|
337 |
-
mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj
|
338 |
-
ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk=
|
339 |
-
-----END CERTIFICATE-----
|
340 |
-
|
341 |
AddTrust External Root
|
342 |
======================
|
343 |
-----BEGIN CERTIFICATE-----
|
@@ -362,54 +154,6 @@ e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u
|
|
362 |
G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
|
363 |
-----END CERTIFICATE-----
|
364 |
|
365 |
-
AddTrust Public Services Root
|
366 |
-
=============================
|
367 |
-
-----BEGIN CERTIFICATE-----
|
368 |
-
MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
369 |
-
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU
|
370 |
-
cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ
|
371 |
-
BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l
|
372 |
-
dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF
|
373 |
-
AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu
|
374 |
-
nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i
|
375 |
-
d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG
|
376 |
-
Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw
|
377 |
-
HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G
|
378 |
-
A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
|
379 |
-
/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux
|
380 |
-
FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G
|
381 |
-
A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4
|
382 |
-
JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL
|
383 |
-
+YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao
|
384 |
-
GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9
|
385 |
-
Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H
|
386 |
-
EufOX1362KqxMy3ZdvJOOjMMK7MtkAY=
|
387 |
-
-----END CERTIFICATE-----
|
388 |
-
|
389 |
-
AddTrust Qualified Certificates Root
|
390 |
-
====================================
|
391 |
-
-----BEGIN CERTIFICATE-----
|
392 |
-
MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
|
393 |
-
QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU
|
394 |
-
cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx
|
395 |
-
CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ
|
396 |
-
IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG
|
397 |
-
9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx
|
398 |
-
64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3
|
399 |
-
KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o
|
400 |
-
L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR
|
401 |
-
wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU
|
402 |
-
MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/
|
403 |
-
BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE
|
404 |
-
BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y
|
405 |
-
azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD
|
406 |
-
ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG
|
407 |
-
GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X
|
408 |
-
dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze
|
409 |
-
RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB
|
410 |
-
iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE=
|
411 |
-
-----END CERTIFICATE-----
|
412 |
-
|
413 |
Entrust Root Certification Authority
|
414 |
====================================
|
415 |
-----BEGIN CERTIFICATE-----
|
@@ -436,27 +180,6 @@ W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0
|
|
436 |
tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
|
437 |
-----END CERTIFICATE-----
|
438 |
|
439 |
-
RSA Security 2048 v3
|
440 |
-
====================
|
441 |
-
-----BEGIN CERTIFICATE-----
|
442 |
-
MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK
|
443 |
-
ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy
|
444 |
-
MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb
|
445 |
-
BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
|
446 |
-
AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7
|
447 |
-
Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb
|
448 |
-
WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH
|
449 |
-
KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP
|
450 |
-
+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/
|
451 |
-
MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E
|
452 |
-
FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY
|
453 |
-
v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj
|
454 |
-
0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj
|
455 |
-
VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395
|
456 |
-
nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA
|
457 |
-
pKnXwiJPZ9d37CAFYd4=
|
458 |
-
-----END CERTIFICATE-----
|
459 |
-
|
460 |
GeoTrust Global CA
|
461 |
==================
|
462 |
-----BEGIN CERTIFICATE-----
|
@@ -478,27 +201,6 @@ XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm
|
|
478 |
Mw==
|
479 |
-----END CERTIFICATE-----
|
480 |
|
481 |
-
GeoTrust Global CA 2
|
482 |
-
====================
|
483 |
-
-----BEGIN CERTIFICATE-----
|
484 |
-
MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
|
485 |
-
R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw
|
486 |
-
MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
|
487 |
-
LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
|
488 |
-
ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/
|
489 |
-
NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k
|
490 |
-
LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA
|
491 |
-
Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b
|
492 |
-
HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF
|
493 |
-
MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH
|
494 |
-
K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7
|
495 |
-
srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh
|
496 |
-
ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL
|
497 |
-
OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC
|
498 |
-
x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF
|
499 |
-
H4z1Ir+rzoPz4iIprn2DQKi6bA==
|
500 |
-
-----END CERTIFICATE-----
|
501 |
-
|
502 |
GeoTrust Universal CA
|
503 |
=====================
|
504 |
-----BEGIN CERTIFICATE-----
|
@@ -581,25 +283,6 @@ YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt
|
|
581 |
398znM/jra6O1I7mT1GvFpLgXPYHDw==
|
582 |
-----END CERTIFICATE-----
|
583 |
|
584 |
-
Certum Root CA
|
585 |
-
==============
|
586 |
-
-----BEGIN CERTIFICATE-----
|
587 |
-
MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK
|
588 |
-
ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla
|
589 |
-
Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u
|
590 |
-
by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x
|
591 |
-
wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL
|
592 |
-
kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ
|
593 |
-
89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K
|
594 |
-
Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P
|
595 |
-
NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq
|
596 |
-
hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+
|
597 |
-
GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg
|
598 |
-
GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/
|
599 |
-
0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS
|
600 |
-
qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw==
|
601 |
-
-----END CERTIFICATE-----
|
602 |
-
|
603 |
Comodo AAA Services root
|
604 |
========================
|
605 |
-----BEGIN CERTIFICATE-----
|
@@ -624,56 +307,6 @@ Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z
|
|
624 |
12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
|
625 |
-----END CERTIFICATE-----
|
626 |
|
627 |
-
Comodo Secure Services root
|
628 |
-
===========================
|
629 |
-
-----BEGIN CERTIFICATE-----
|
630 |
-
MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
|
631 |
-
R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
|
632 |
-
TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw
|
633 |
-
MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu
|
634 |
-
Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi
|
635 |
-
BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP
|
636 |
-
ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP
|
637 |
-
9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc
|
638 |
-
rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC
|
639 |
-
oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V
|
640 |
-
p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E
|
641 |
-
FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
|
642 |
-
gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj
|
643 |
-
YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm
|
644 |
-
aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm
|
645 |
-
4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj
|
646 |
-
Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL
|
647 |
-
DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw
|
648 |
-
pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H
|
649 |
-
RR3B7Hzs/Sk=
|
650 |
-
-----END CERTIFICATE-----
|
651 |
-
|
652 |
-
Comodo Trusted Services root
|
653 |
-
============================
|
654 |
-
-----BEGIN CERTIFICATE-----
|
655 |
-
MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
|
656 |
-
R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
|
657 |
-
TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw
|
658 |
-
MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h
|
659 |
-
bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw
|
660 |
-
IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC
|
661 |
-
AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7
|
662 |
-
3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y
|
663 |
-
/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6
|
664 |
-
juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS
|
665 |
-
ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud
|
666 |
-
DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
|
667 |
-
/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp
|
668 |
-
ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl
|
669 |
-
cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw
|
670 |
-
uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32
|
671 |
-
pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA
|
672 |
-
BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l
|
673 |
-
R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O
|
674 |
-
9y5Xt5hwXsjEeLBi
|
675 |
-
-----END CERTIFICATE-----
|
676 |
-
|
677 |
QuoVadis Root CA
|
678 |
================
|
679 |
-----BEGIN CERTIFICATE-----
|
@@ -813,79 +446,6 @@ EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH
|
|
813 |
llpwrN9M
|
814 |
-----END CERTIFICATE-----
|
815 |
|
816 |
-
Staat der Nederlanden Root CA
|
817 |
-
=============================
|
818 |
-
-----BEGIN CERTIFICATE-----
|
819 |
-
MIIDujCCAqKgAwIBAgIEAJiWijANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQGEwJOTDEeMBwGA1UE
|
820 |
-
ChMVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSYwJAYDVQQDEx1TdGFhdCBkZXIgTmVkZXJsYW5kZW4g
|
821 |
-
Um9vdCBDQTAeFw0wMjEyMTcwOTIzNDlaFw0xNTEyMTYwOTE1MzhaMFUxCzAJBgNVBAYTAk5MMR4w
|
822 |
-
HAYDVQQKExVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xJjAkBgNVBAMTHVN0YWF0IGRlciBOZWRlcmxh
|
823 |
-
bmRlbiBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmNK1URF6gaYUmHFt
|
824 |
-
vsznExvWJw56s2oYHLZhWtVhCb/ekBPHZ+7d89rFDBKeNVU+LCeIQGv33N0iYfXCxw719tV2U02P
|
825 |
-
jLwYdjeFnejKScfST5gTCaI+Ioicf9byEGW07l8Y1Rfj+MX94p2i71MOhXeiD+EwR+4A5zN9RGca
|
826 |
-
C1Hoi6CeUJhoNFIfLm0B8mBF8jHrqTFoKbt6QZ7GGX+UtFE5A3+y3qcym7RHjm+0Sq7lr7HcsBth
|
827 |
-
vJly3uSJt3omXdozSVtSnA71iq3DuD3oBmrC1SoLbHuEvVYFy4ZlkuxEK7COudxwC0barbxjiDn6
|
828 |
-
22r+I/q85Ej0ZytqERAhSQIDAQABo4GRMIGOMAwGA1UdEwQFMAMBAf8wTwYDVR0gBEgwRjBEBgRV
|
829 |
-
HSAAMDwwOgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cucGtpb3ZlcmhlaWQubmwvcG9saWNpZXMvcm9v
|
830 |
-
dC1wb2xpY3kwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSofeu8Y6R0E3QA7Jbg0zTBLL9s+DAN
|
831 |
-
BgkqhkiG9w0BAQUFAAOCAQEABYSHVXQ2YcG70dTGFagTtJ+k/rvuFbQvBgwp8qiSpGEN/KtcCFtR
|
832 |
-
EytNwiphyPgJWPwtArI5fZlmgb9uXJVFIGzmeafR2Bwp/MIgJ1HI8XxdNGdphREwxgDS1/PTfLbw
|
833 |
-
MVcoEoJz6TMvplW0C5GUR5z6u3pCMuiufi3IvKwUv9kP2Vv8wfl6leF9fpb8cbDCTMjfRTTJzg3y
|
834 |
-
nGQI0DvDKcWy7ZAEwbEpkcUwb8GpcjPM/l0WFywRaed+/sWDCN+83CI6LiBpIzlWYGeQiy52OfsR
|
835 |
-
iJf2fL1LuCAWZwWN4jvBcj+UlTfHXbme2JOhF4//DGYVwSR8MnwDHTuhWEUykw==
|
836 |
-
-----END CERTIFICATE-----
|
837 |
-
|
838 |
-
UTN DATACorp SGC Root CA
|
839 |
-
========================
|
840 |
-
-----BEGIN CERTIFICATE-----
|
841 |
-
MIIEXjCCA0agAwIBAgIQRL4Mi1AAIbQR0ypoBqmtaTANBgkqhkiG9w0BAQUFADCBkzELMAkGA1UE
|
842 |
-
BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl
|
843 |
-
IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xGzAZ
|
844 |
-
BgNVBAMTElVUTiAtIERBVEFDb3JwIFNHQzAeFw05OTA2MjQxODU3MjFaFw0xOTA2MjQxOTA2MzBa
|
845 |
-
MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4w
|
846 |
-
HAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRy
|
847 |
-
dXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dDMIIBIjANBgkqhkiG9w0BAQEFAAOC
|
848 |
-
AQ8AMIIBCgKCAQEA3+5YEKIrblXEjr8uRgnn4AgPLit6E5Qbvfa2gI5lBZMAHryv4g+OGQ0SR+ys
|
849 |
-
raP6LnD43m77VkIVni5c7yPeIbkFdicZD0/Ww5y0vpQZY/KmEQrrU0icvvIpOxboGqBMpsn0GFlo
|
850 |
-
wHDyUwDAXlCCpVZvNvlK4ESGoE1O1kduSUrLZ9emxAW5jh70/P/N5zbgnAVssjMiFdC04MwXwLLA
|
851 |
-
9P4yPykqlXvY8qdOD1R8oQ2AswkDwf9c3V6aPryuvEeKaq5xyh+xKrhfQgUL7EYw0XILyulWbfXv
|
852 |
-
33i+Ybqypa4ETLyorGkVl73v67SMvzX41MPRKA5cOp9wGDMgd8SirwIDAQABo4GrMIGoMAsGA1Ud
|
853 |
-
DwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRTMtGzz3/64PGgXYVOktKeRR20TzA9
|
854 |
-
BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLURBVEFDb3JwU0dD
|
855 |
-
LmNybDAqBgNVHSUEIzAhBggrBgEFBQcDAQYKKwYBBAGCNwoDAwYJYIZIAYb4QgQBMA0GCSqGSIb3
|
856 |
-
DQEBBQUAA4IBAQAnNZcAiosovcYzMB4p/OL31ZjUQLtgyr+rFywJNn9Q+kHcrpY6CiM+iVnJowft
|
857 |
-
Gzet/Hy+UUla3joKVAgWRcKZsYfNjGjgaQPpxE6YsjuMFrMOoAyYUJuTqXAJyCyjj98C5OBxOvG0
|
858 |
-
I3KgqgHf35g+FFCgMSa9KOlaMCZ1+XtgHI3zzVAmbQQnmt/VDUVHKWss5nbZqSl9Mt3JNjy9rjXx
|
859 |
-
EZ4du5A/EkdOjtd+D2JzHVImOBwYSf0wdJrE5SIv2MCN7ZF6TACPcn9d2t0bi0Vr591pl6jFVkwP
|
860 |
-
DPafepE39peC4N1xaf92P2BNPM/3mfnGV/TJVTl4uix5yaaIK/QI
|
861 |
-
-----END CERTIFICATE-----
|
862 |
-
|
863 |
-
UTN USERFirst Hardware Root CA
|
864 |
-
==============================
|
865 |
-
-----BEGIN CERTIFICATE-----
|
866 |
-
MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE
|
867 |
-
BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl
|
868 |
-
IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd
|
869 |
-
BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx
|
870 |
-
OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0
|
871 |
-
eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz
|
872 |
-
ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3
|
873 |
-
DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI
|
874 |
-
wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd
|
875 |
-
tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8
|
876 |
-
i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf
|
877 |
-
Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw
|
878 |
-
gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF
|
879 |
-
lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF
|
880 |
-
UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF
|
881 |
-
BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM
|
882 |
-
//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW
|
883 |
-
XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2
|
884 |
-
lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn
|
885 |
-
iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67
|
886 |
-
nfhmqA==
|
887 |
-
-----END CERTIFICATE-----
|
888 |
-
|
889 |
Camerfirma Chambers of Commerce Root
|
890 |
====================================
|
891 |
-----BEGIN CERTIFICATE-----
|
@@ -940,41 +500,6 @@ IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes
|
|
940 |
t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A==
|
941 |
-----END CERTIFICATE-----
|
942 |
|
943 |
-
NetLock Notary (Class A) Root
|
944 |
-
=============================
|
945 |
-
-----BEGIN CERTIFICATE-----
|
946 |
-
MIIGfTCCBWWgAwIBAgICAQMwDQYJKoZIhvcNAQEEBQAwga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQI
|
947 |
-
EwdIdW5nYXJ5MREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6
|
948 |
-
dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9j
|
949 |
-
ayBLb3pqZWd5em9pIChDbGFzcyBBKSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNDIzMTQ0N1oX
|
950 |
-
DTE5MDIxOTIzMTQ0N1owga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQH
|
951 |
-
EwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQuMRowGAYD
|
952 |
-
VQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBLb3pqZWd5em9pIChDbGFz
|
953 |
-
cyBBKSBUYW51c2l0dmFueWtpYWRvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvHSM
|
954 |
-
D7tM9DceqQWC2ObhbHDqeLVu0ThEDaiDzl3S1tWBxdRL51uUcCbbO51qTGL3cfNk1mE7PetzozfZ
|
955 |
-
z+qMkjvN9wfcZnSX9EUi3fRc4L9t875lM+QVOr/bmJBVOMTtplVjC7B4BPTjbsE/jvxReB+SnoPC
|
956 |
-
/tmwqcm8WgD/qaiYdPv2LD4VOQ22BFWoDpggQrOxJa1+mm9dU7GrDPzr4PN6s6iz/0b2Y6LYOph7
|
957 |
-
tqyF/7AlT3Rj5xMHpQqPBffAZG9+pyeAlt7ULoZgx2srXnN7F+eRP2QM2EsiNCubMvJIH5+hCoR6
|
958 |
-
4sKtlz2O1cH5VqNQ6ca0+pii7pXmKgOM3wIDAQABo4ICnzCCApswDgYDVR0PAQH/BAQDAgAGMBIG
|
959 |
-
A1UdEwEB/wQIMAYBAf8CAQQwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaC
|
960 |
-
Ak1GSUdZRUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pv
|
961 |
-
bGdhbHRhdGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQu
|
962 |
-
IEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2Vn
|
963 |
-
LWJpenRvc2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0
|
964 |
-
ZXRlbGUgYXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFz
|
965 |
-
IGxlaXJhc2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBh
|
966 |
-
IGh0dHBzOi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVu
|
967 |
-
b3J6ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1YW5jZSBh
|
968 |
-
bmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sg
|
969 |
-
Q1BTIGF2YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFp
|
970 |
-
bCBhdCBjcHNAbmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4IBAQBIJEb3ulZv+sgoA0BO5TE5
|
971 |
-
ayZrU3/b39/zcT0mwBQOxmd7I6gMc90Bu8bKbjc5VdXHjFYgDigKDtIqpLBJUsY4B/6+CgmM0ZjP
|
972 |
-
ytoUMaFP0jn8DxEsQ8Pdq5PHVT5HfBgaANzze9jyf1JsIPQLX2lS9O74silg6+NJMSEN1rUQQeJB
|
973 |
-
CWziGppWS3cC9qCbmieH6FUpccKQn0V4GuEVZD3QDtigdp+uxdAu6tYPVuxkf1qbFFgBJ34TUMdr
|
974 |
-
KuZoPL9coAob4Q566eKAw+np9v1sEZ7Q5SgnK1QyQhSCdeZK8CtmdWOMovsEPoMOmzbwGOQmIMOM
|
975 |
-
8CgHrTwXZoi1/baI
|
976 |
-
-----END CERTIFICATE-----
|
977 |
-
|
978 |
XRamp Global CA Root
|
979 |
====================
|
980 |
-----BEGIN CERTIFICATE-----
|
@@ -1047,47 +572,6 @@ KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3
|
|
1047 |
QBFGmh95DmK/D5fs4C8fF5Q=
|
1048 |
-----END CERTIFICATE-----
|
1049 |
|
1050 |
-
StartCom Certification Authority
|
1051 |
-
================================
|
1052 |
-
-----BEGIN CERTIFICATE-----
|
1053 |
-
MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
1054 |
-
U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
|
1055 |
-
ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
|
1056 |
-
NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
|
1057 |
-
LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
|
1058 |
-
U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
1059 |
-
ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
|
1060 |
-
o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
|
1061 |
-
Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
|
1062 |
-
eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
|
1063 |
-
2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
|
1064 |
-
6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
|
1065 |
-
osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
|
1066 |
-
untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
|
1067 |
-
UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
|
1068 |
-
37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE
|
1069 |
-
FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0
|
1070 |
-
Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj
|
1071 |
-
YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH
|
1072 |
-
AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw
|
1073 |
-
Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg
|
1074 |
-
U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5
|
1075 |
-
LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl
|
1076 |
-
cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh
|
1077 |
-
cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT
|
1078 |
-
dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC
|
1079 |
-
AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh
|
1080 |
-
3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm
|
1081 |
-
vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk
|
1082 |
-
fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3
|
1083 |
-
fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ
|
1084 |
-
EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq
|
1085 |
-
yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl
|
1086 |
-
1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/
|
1087 |
-
lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro
|
1088 |
-
g14=
|
1089 |
-
-----END CERTIFICATE-----
|
1090 |
-
|
1091 |
Taiwan GRCA
|
1092 |
===========
|
1093 |
-----BEGIN CERTIFICATE-----
|
@@ -1118,38 +602,6 @@ CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy
|
|
1118 |
+fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS
|
1119 |
-----END CERTIFICATE-----
|
1120 |
|
1121 |
-
Swisscom Root CA 1
|
1122 |
-
==================
|
1123 |
-
-----BEGIN CERTIFICATE-----
|
1124 |
-
MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQG
|
1125 |
-
EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy
|
1126 |
-
dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4
|
1127 |
-
MTgyMjA2MjBaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln
|
1128 |
-
aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIIC
|
1129 |
-
IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9m2BtRsiM
|
1130 |
-
MW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdihFvkcxC7mlSpnzNApbjyF
|
1131 |
-
NDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/TilftKaNXXsLmREDA/7n29uj/x2lzZAe
|
1132 |
-
AR81sH8A25Bvxn570e56eqeqDFdvpG3FEzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkC
|
1133 |
-
b6dJtDZd0KTeByy2dbcokdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn
|
1134 |
-
7uHbHaBuHYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNFvJbN
|
1135 |
-
cA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo19AOeCMgkckkKmUp
|
1136 |
-
WyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjCL3UcPX7ape8eYIVpQtPM+GP+HkM5
|
1137 |
-
haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJWbjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNY
|
1138 |
-
MUJDLXT5xp6mig/p/r+D5kNXJLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw
|
1139 |
-
HQYDVR0hBBYwFDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j
|
1140 |
-
BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzcK6FptWfUjNP9
|
1141 |
-
MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzfky9NfEBWMXrrpA9gzXrzvsMn
|
1142 |
-
jgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7IkVh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQ
|
1143 |
-
MbFamIp1TpBcahQq4FJHgmDmHtqBsfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4H
|
1144 |
-
VtA4oJVwIHaM190e3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtl
|
1145 |
-
vrsRls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ipmXeascCl
|
1146 |
-
OS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HHb6D0jqTsNFFbjCYDcKF3
|
1147 |
-
1QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksfrK/7DZBaZmBwXarNeNQk7shBoJMBkpxq
|
1148 |
-
nvy5JMWzFYJ+vq6VK+uxwNrjAWALXmmshFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCy
|
1149 |
-
x/yP2FS1k2Kdzs9Z+z0YzirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMW
|
1150 |
-
NY6E0F/6MBr1mmz0DlP5OlvRHA==
|
1151 |
-
-----END CERTIFICATE-----
|
1152 |
-
|
1153 |
DigiCert Assured ID Root CA
|
1154 |
===========================
|
1155 |
-----BEGIN CERTIFICATE-----
|
@@ -1282,31 +734,6 @@ vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3
|
|
1282 |
oKfN5XozNmr6mis=
|
1283 |
-----END CERTIFICATE-----
|
1284 |
|
1285 |
-
TURKTRUST Certificate Services Provider Root 2
|
1286 |
-
==============================================
|
1287 |
-
-----BEGIN CERTIFICATE-----
|
1288 |
-
MIIEPDCCAySgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBF
|
1289 |
-
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP
|
1290 |
-
MA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg
|
1291 |
-
QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwHhcN
|
1292 |
-
MDUxMTA3MTAwNzU3WhcNMTUwOTE2MTAwNzU3WjCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBFbGVr
|
1293 |
-
dHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEPMA0G
|
1294 |
-
A1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls
|
1295 |
-
acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwggEiMA0G
|
1296 |
-
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpNn7DkUNMwxmYCMjHWHtPFoylzkkBH3MOrHUTpvqe
|
1297 |
-
LCDe2JAOCtFp0if7qnefJ1Il4std2NiDUBd9irWCPwSOtNXwSadktx4uXyCcUHVPr+G1QRT0mJKI
|
1298 |
-
x+XlZEdhR3n9wFHxwZnn3M5q+6+1ATDcRhzviuyV79z/rxAc653YsKpqhRgNF8k+v/Gb0AmJQv2g
|
1299 |
-
QrSdiVFVKc8bcLyEVK3BEx+Y9C52YItdP5qtygy/p1Zbj3e41Z55SZI/4PGXJHpsmxcPbe9TmJEr
|
1300 |
-
5A++WXkHeLuXlfSfadRYhwqp48y2WBmfJiGxxFmNskF1wK1pzpwACPI2/z7woQ8arBT9pmAPAgMB
|
1301 |
-
AAGjQzBBMB0GA1UdDgQWBBTZN7NOBf3Zz58SFq62iS/rJTqIHDAPBgNVHQ8BAf8EBQMDBwYAMA8G
|
1302 |
-
A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAHJglrfJ3NgpXiOFX7KzLXb7iNcX/ntt
|
1303 |
-
Rbj2hWyfIvwqECLsqrkw9qtY1jkQMZkpAL2JZkH7dN6RwRgLn7Vhy506vvWolKMiVW4XSf/SKfE4
|
1304 |
-
Jl3vpao6+XF75tpYHdN0wgH6PmlYX63LaL4ULptswLbcoCb6dxriJNoaN+BnrdFzgw2lGh1uEpJ+
|
1305 |
-
hGIAF728JRhX8tepb1mIvDS3LoV4nZbcFMMsilKbloxSZj2GFotHuFEJjOp9zYhys2AzsfAKRO8P
|
1306 |
-
9Qk3iCQOLGsgOqL6EfJANZxEaGM7rDNvY7wsu/LSy3Z9fYjYHcgFHW68lKlmjHdxx/qR+i9Rnuk5
|
1307 |
-
UrbnBEI=
|
1308 |
-
-----END CERTIFICATE-----
|
1309 |
-
|
1310 |
SwissSign Gold CA - G2
|
1311 |
======================
|
1312 |
-----BEGIN CERTIFICATE-----
|
@@ -1532,33 +959,6 @@ wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD
|
|
1532 |
ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
|
1533 |
-----END CERTIFICATE-----
|
1534 |
|
1535 |
-
WellsSecure Public Root Certificate Authority
|
1536 |
-
=============================================
|
1537 |
-
-----BEGIN CERTIFICATE-----
|
1538 |
-
MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM
|
1539 |
-
F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw
|
1540 |
-
NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN
|
1541 |
-
MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl
|
1542 |
-
bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD
|
1543 |
-
VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
|
1544 |
-
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1
|
1545 |
-
iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13
|
1546 |
-
i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8
|
1547 |
-
bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB
|
1548 |
-
K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB
|
1549 |
-
AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu
|
1550 |
-
cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm
|
1551 |
-
lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB
|
1552 |
-
i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww
|
1553 |
-
GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg
|
1554 |
-
Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI
|
1555 |
-
K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0
|
1556 |
-
bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj
|
1557 |
-
qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es
|
1558 |
-
E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ
|
1559 |
-
tylv2G0xffX8oRAHh84vWdw+WNs=
|
1560 |
-
-----END CERTIFICATE-----
|
1561 |
-
|
1562 |
COMODO ECC Certification Authority
|
1563 |
==================================
|
1564 |
-----BEGIN CERTIFICATE-----
|
@@ -1576,30 +976,6 @@ FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA
|
|
1576 |
U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
|
1577 |
-----END CERTIFICATE-----
|
1578 |
|
1579 |
-
IGC/A
|
1580 |
-
=====
|
1581 |
-
-----BEGIN CERTIFICATE-----
|
1582 |
-
MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD
|
1583 |
-
VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE
|
1584 |
-
Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy
|
1585 |
-
MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI
|
1586 |
-
EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT
|
1587 |
-
STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB
|
1588 |
-
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2
|
1589 |
-
TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW
|
1590 |
-
So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy
|
1591 |
-
HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd
|
1592 |
-
frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ
|
1593 |
-
tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB
|
1594 |
-
egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC
|
1595 |
-
iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK
|
1596 |
-
q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q
|
1597 |
-
MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg
|
1598 |
-
Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI
|
1599 |
-
lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF
|
1600 |
-
0mBWWg==
|
1601 |
-
-----END CERTIFICATE-----
|
1602 |
-
|
1603 |
Security Communication EV RootCA1
|
1604 |
=================================
|
1605 |
-----BEGIN CERTIFICATE-----
|
@@ -1644,46 +1020,6 @@ hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY
|
|
1644 |
okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0=
|
1645 |
-----END CERTIFICATE-----
|
1646 |
|
1647 |
-
Microsec e-Szigno Root CA
|
1648 |
-
=========================
|
1649 |
-
-----BEGIN CERTIFICATE-----
|
1650 |
-
MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE
|
1651 |
-
BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL
|
1652 |
-
EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0
|
1653 |
-
MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz
|
1654 |
-
dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT
|
1655 |
-
GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
|
1656 |
-
AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG
|
1657 |
-
d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N
|
1658 |
-
oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc
|
1659 |
-
QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ
|
1660 |
-
PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb
|
1661 |
-
MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG
|
1662 |
-
IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD
|
1663 |
-
VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3
|
1664 |
-
LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A
|
1665 |
-
dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn
|
1666 |
-
AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA
|
1667 |
-
4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg
|
1668 |
-
AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA
|
1669 |
-
egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6
|
1670 |
-
Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO
|
1671 |
-
PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv
|
1672 |
-
c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h
|
1673 |
-
cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw
|
1674 |
-
IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT
|
1675 |
-
WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV
|
1676 |
-
MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER
|
1677 |
-
MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp
|
1678 |
-
Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal
|
1679 |
-
HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT
|
1680 |
-
nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE
|
1681 |
-
aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a
|
1682 |
-
86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK
|
1683 |
-
yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB
|
1684 |
-
S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU=
|
1685 |
-
-----END CERTIFICATE-----
|
1686 |
-
|
1687 |
Certigna
|
1688 |
========
|
1689 |
-----BEGIN CERTIFICATE-----
|
@@ -1728,28 +1064,6 @@ dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU
|
|
1728 |
Cm26OWMohpLzGITY+9HPBVZkVw==
|
1729 |
-----END CERTIFICATE-----
|
1730 |
|
1731 |
-
ComSign Secured CA
|
1732 |
-
==================
|
1733 |
-
-----BEGIN CERTIFICATE-----
|
1734 |
-
MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAwPDEbMBkGA1UE
|
1735 |
-
AxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQGEwJJTDAeFw0w
|
1736 |
-
NDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwxGzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBD
|
1737 |
-
QTEQMA4GA1UEChMHQ29tU2lnbjELMAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
|
1738 |
-
ggEKAoIBAQDGtWhfHZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs
|
1739 |
-
49ohgHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sWv+bznkqH
|
1740 |
-
7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ueMv5WJDmyVIRD9YTC2LxB
|
1741 |
-
kMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d1
|
1742 |
-
9guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUw
|
1743 |
-
AwEB/zBEBgNVHR8EPTA7MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29t
|
1744 |
-
U2lnblNlY3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58ADsA
|
1745 |
-
j8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkqhkiG9w0BAQUFAAOC
|
1746 |
-
AQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7piL1DRYHjZiM/EoZNGeQFsOY3wo3a
|
1747 |
-
BijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtCdsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtp
|
1748 |
-
FhpFfTMDZflScZAmlaxMDPWLkz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP
|
1749 |
-
51qJThRv4zdLhfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz
|
1750 |
-
OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw==
|
1751 |
-
-----END CERTIFICATE-----
|
1752 |
-
|
1753 |
Cybertrust Global Root
|
1754 |
======================
|
1755 |
-----BEGIN CERTIFICATE-----
|
@@ -1803,86 +1117,6 @@ sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD
|
|
1803 |
BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw=
|
1804 |
-----END CERTIFICATE-----
|
1805 |
|
1806 |
-
T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3
|
1807 |
-
=============================================================================================================================
|
1808 |
-
-----BEGIN CERTIFICATE-----
|
1809 |
-
MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH
|
1810 |
-
DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q
|
1811 |
-
aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry
|
1812 |
-
b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV
|
1813 |
-
BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg
|
1814 |
-
S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4
|
1815 |
-
MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl
|
1816 |
-
IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF
|
1817 |
-
n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl
|
1818 |
-
IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft
|
1819 |
-
dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl
|
1820 |
-
cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B
|
1821 |
-
AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO
|
1822 |
-
Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1
|
1823 |
-
xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR
|
1824 |
-
6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL
|
1825 |
-
hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd
|
1826 |
-
BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
|
1827 |
-
MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4
|
1828 |
-
N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT
|
1829 |
-
y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh
|
1830 |
-
LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M
|
1831 |
-
dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI=
|
1832 |
-
-----END CERTIFICATE-----
|
1833 |
-
|
1834 |
-
Buypass Class 2 CA 1
|
1835 |
-
====================
|
1836 |
-
-----BEGIN CERTIFICATE-----
|
1837 |
-
MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
|
1838 |
-
QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2
|
1839 |
-
MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh
|
1840 |
-
c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI
|
1841 |
-
hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M
|
1842 |
-
cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83
|
1843 |
-
0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4
|
1844 |
-
0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R
|
1845 |
-
uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC
|
1846 |
-
MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P
|
1847 |
-
AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV
|
1848 |
-
1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt
|
1849 |
-
7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2
|
1850 |
-
fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w
|
1851 |
-
wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho
|
1852 |
-
-----END CERTIFICATE-----
|
1853 |
-
|
1854 |
-
EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1
|
1855 |
-
==========================================================================
|
1856 |
-
-----BEGIN CERTIFICATE-----
|
1857 |
-
MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNVBAMML0VCRyBF
|
1858 |
-
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMTcwNQYDVQQKDC5FQkcg
|
1859 |
-
QmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAe
|
1860 |
-
Fw0wNjA4MTcwMDIxMDlaFw0xNjA4MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25p
|
1861 |
-
ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2lt
|
1862 |
-
IFRla25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIiMA0GCSqG
|
1863 |
-
SIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h4fuXd7hxlugTlkaDT7by
|
1864 |
-
X3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAktiHq6yOU/im/+4mRDGSaBUorzAzu8T2b
|
1865 |
-
gmmkTPiab+ci2hC6X5L8GCcKqKpE+i4stPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfr
|
1866 |
-
eYteIAbTdgtsApWjluTLdlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZ
|
1867 |
-
TqNGFav4c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8UmTDGy
|
1868 |
-
Y5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z+kI2sSXFCjEmN1Zn
|
1869 |
-
uqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0OLna9XvNRiYuoP1Vzv9s6xiQFlpJI
|
1870 |
-
qkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMWOeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vm
|
1871 |
-
ExH8nYQKE3vwO9D8owrXieqWfo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0
|
1872 |
-
Nokb+Clsi7n2l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB
|
1873 |
-
/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgwFoAU587GT/wW
|
1874 |
-
Z5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+8ygjdsZs93/mQJ7ANtyVDR2t
|
1875 |
-
FcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgm
|
1876 |
-
zJNSroIBk5DKd8pNSe/iWtkqvTDOTLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64k
|
1877 |
-
XPBfrAowzIpAoHMEwfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqT
|
1878 |
-
bCmYIai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJnxk1Gj7sU
|
1879 |
-
RT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4QDgZxGhBM/nV+/x5XOULK
|
1880 |
-
1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9qKd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt
|
1881 |
-
2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11thie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQ
|
1882 |
-
Y9iJSrSq3RZj9W6+YKH47ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9
|
1883 |
-
AahH3eU7QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT
|
1884 |
-
-----END CERTIFICATE-----
|
1885 |
-
|
1886 |
certSIGN ROOT CA
|
1887 |
================
|
1888 |
-----BEGIN CERTIFICATE-----
|
@@ -1903,49 +1137,6 @@ vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz
|
|
1903 |
TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
|
1904 |
-----END CERTIFICATE-----
|
1905 |
|
1906 |
-
CNNIC ROOT
|
1907 |
-
==========
|
1908 |
-
-----BEGIN CERTIFICATE-----
|
1909 |
-
MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE
|
1910 |
-
ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw
|
1911 |
-
OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw
|
1912 |
-
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD
|
1913 |
-
o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz
|
1914 |
-
VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT
|
1915 |
-
VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or
|
1916 |
-
czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK
|
1917 |
-
y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC
|
1918 |
-
wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S
|
1919 |
-
lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5
|
1920 |
-
Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM
|
1921 |
-
O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8
|
1922 |
-
BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2
|
1923 |
-
G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m
|
1924 |
-
mxE=
|
1925 |
-
-----END CERTIFICATE-----
|
1926 |
-
|
1927 |
-
ApplicationCA - Japanese Government
|
1928 |
-
===================================
|
1929 |
-
-----BEGIN CERTIFICATE-----
|
1930 |
-
MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT
|
1931 |
-
SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw
|
1932 |
-
MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl
|
1933 |
-
cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
1934 |
-
CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4
|
1935 |
-
fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN
|
1936 |
-
wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE
|
1937 |
-
jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu
|
1938 |
-
nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU
|
1939 |
-
WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV
|
1940 |
-
BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD
|
1941 |
-
vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs
|
1942 |
-
o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g
|
1943 |
-
/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD
|
1944 |
-
io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW
|
1945 |
-
dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL
|
1946 |
-
rosot4LKGAfmt1t06SAZf7IbiVQ=
|
1947 |
-
-----END CERTIFICATE-----
|
1948 |
-
|
1949 |
GeoTrust Primary Certification Authority - G3
|
1950 |
=============================================
|
1951 |
-----BEGIN CERTIFICATE-----
|
@@ -2077,7 +1268,7 @@ AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA==
|
|
2077 |
-----END CERTIFICATE-----
|
2078 |
|
2079 |
NetLock Arany (Class Gold) Főtanúsítvány
|
2080 |
-
|
2081 |
-----BEGIN CERTIFICATE-----
|
2082 |
MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
|
2083 |
A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
|
@@ -2132,58 +1323,6 @@ IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm
|
|
2132 |
66+KAQ==
|
2133 |
-----END CERTIFICATE-----
|
2134 |
|
2135 |
-
CA Disig
|
2136 |
-
========
|
2137 |
-
-----BEGIN CERTIFICATE-----
|
2138 |
-
MIIEDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMK
|
2139 |
-
QnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwHhcNMDYw
|
2140 |
-
MzIyMDEzOTM0WhcNMTYwMzIyMDEzOTM0WjBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMKQnJhdGlz
|
2141 |
-
bGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwggEiMA0GCSqGSIb3
|
2142 |
-
DQEBAQUAA4IBDwAwggEKAoIBAQCS9jHBfYj9mQGp2HvycXXxMcbzdWb6UShGhJd4NLxs/LxFWYgm
|
2143 |
-
GErENx+hSkS943EE9UQX4j/8SFhvXJ56CbpRNyIjZkMhsDxkovhqFQ4/61HhVKndBpnXmjxUizkD
|
2144 |
-
Pw/Fzsbrg3ICqB9x8y34dQjbYkzo+s7552oftms1grrijxaSfQUMbEYDXcDtab86wYqg6I7ZuUUo
|
2145 |
-
hwjstMoVvoLdtUSLLa2GDGhibYVW8qwUYzrG0ZmsNHhWS8+2rT+MitcE5eN4TPWGqvWP+j1scaMt
|
2146 |
-
ymfraHtuM6kMgiioTGohQBUgDCZbg8KpFhXAJIJdKxatymP2dACw30PEEGBWZ2NFAgMBAAGjgf8w
|
2147 |
-
gfwwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUjbJJaJ1yCCW5wCf1UJNWSEZx+Y8wDgYDVR0P
|
2148 |
-
AQH/BAQDAgEGMDYGA1UdEQQvMC2BE2Nhb3BlcmF0b3JAZGlzaWcuc2uGFmh0dHA6Ly93d3cuZGlz
|
2149 |
-
aWcuc2svY2EwZgYDVR0fBF8wXTAtoCugKYYnaHR0cDovL3d3dy5kaXNpZy5zay9jYS9jcmwvY2Ff
|
2150 |
-
ZGlzaWcuY3JsMCygKqAohiZodHRwOi8vY2EuZGlzaWcuc2svY2EvY3JsL2NhX2Rpc2lnLmNybDAa
|
2151 |
-
BgNVHSAEEzARMA8GDSuBHpGT5goAAAABAQEwDQYJKoZIhvcNAQEFBQADggEBAF00dGFMrzvY/59t
|
2152 |
-
WDYcPQuBDRIrRhCA/ec8J9B6yKm2fnQwM6M6int0wHl5QpNt/7EpFIKrIYwvF/k/Ji/1WcbvgAa3
|
2153 |
-
mkkp7M5+cTxqEEHA9tOasnxakZzArFvITV734VP/Q3f8nktnbNfzg9Gg4H8l37iYC5oyOGwwoPP/
|
2154 |
-
CBUz91BKez6jPiCp3C9WgArtQVCwyfTssuMmRAAOb54GvCKWU3BlxFAKRmukLyeBEicTXxChds6K
|
2155 |
-
ezfqwzlhA5WYOudsiCUI/HloDYd9Yvi0X/vF2Ey9WLw/Q1vUHgFNPGO+I++MzVpQuGhU+QqZMxEA
|
2156 |
-
4Z7CRneC9VkGjCFMhwnN5ag=
|
2157 |
-
-----END CERTIFICATE-----
|
2158 |
-
|
2159 |
-
Juur-SK
|
2160 |
-
=======
|
2161 |
-
-----BEGIN CERTIFICATE-----
|
2162 |
-
MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA
|
2163 |
-
c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw
|
2164 |
-
DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG
|
2165 |
-
SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy
|
2166 |
-
aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
2167 |
-
ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf
|
2168 |
-
TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC
|
2169 |
-
+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw
|
2170 |
-
UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa
|
2171 |
-
Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF
|
2172 |
-
MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD
|
2173 |
-
HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh
|
2174 |
-
AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA
|
2175 |
-
cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr
|
2176 |
-
AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw
|
2177 |
-
cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE
|
2178 |
-
FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G
|
2179 |
-
A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo
|
2180 |
-
ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL
|
2181 |
-
abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678
|
2182 |
-
IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh
|
2183 |
-
Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2
|
2184 |
-
yyqcjg==
|
2185 |
-
-----END CERTIFICATE-----
|
2186 |
-
|
2187 |
Hongkong Post Root CA 1
|
2188 |
=======================
|
2189 |
-----BEGIN CERTIFICATE-----
|
@@ -2225,53 +1364,6 @@ y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061
|
|
2225 |
lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
|
2226 |
-----END CERTIFICATE-----
|
2227 |
|
2228 |
-
ACEDICOM Root
|
2229 |
-
=============
|
2230 |
-
-----BEGIN CERTIFICATE-----
|
2231 |
-
MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UEAwwNQUNFRElD
|
2232 |
-
T00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMB4XDTA4
|
2233 |
-
MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEWMBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoG
|
2234 |
-
A1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEF
|
2235 |
-
AAOCAg8AMIICCgKCAgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHk
|
2236 |
-
WLn709gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7XBZXehuD
|
2237 |
-
YAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5PGrjm6gSSrj0RuVFCPYew
|
2238 |
-
MYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAKt0SdE3QrwqXrIhWYENiLxQSfHY9g5QYb
|
2239 |
-
m8+5eaA9oiM/Qj9r+hwDezCNzmzAv+YbX79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbk
|
2240 |
-
HQl/Sog4P75n/TSW9R28MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTT
|
2241 |
-
xKJxqvQUfecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI2Sf2
|
2242 |
-
3EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyHK9caUPgn6C9D4zq9
|
2243 |
-
2Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEaeZAwUswdbxcJzbPEHXEUkFDWug/Fq
|
2244 |
-
TYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz
|
2245 |
-
4SsrSbbXc6GqlPUB53NlTKxQMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU
|
2246 |
-
9QHnc2VMrFAwRAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv
|
2247 |
-
bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWImfQwng4/F9tqg
|
2248 |
-
aHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3gvoFNTPhNahXwOf9jU8/kzJP
|
2249 |
-
eGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKeI6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1Pwk
|
2250 |
-
zQSulgUV1qzOMPPKC8W64iLgpq0i5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1
|
2251 |
-
ThCojz2GuHURwCRiipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oI
|
2252 |
-
KiMnMCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZo5NjEFIq
|
2253 |
-
nxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6zqylfDJKZ0DcMDQj3dcE
|
2254 |
-
I2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacNGHk0vFQYXlPKNFHtRQrmjseCNj6nOGOp
|
2255 |
-
MCwXEGCSn1WHElkQwg9naRHMTh5+Spqtr0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3o
|
2256 |
-
tkYNbn5XOmeUwssfnHdKZ05phkOTOPu220+DkdRgfks+KzgHVZhepA==
|
2257 |
-
-----END CERTIFICATE-----
|
2258 |
-
|
2259 |
-
Verisign Class 3 Public Primary Certification Authority
|
2260 |
-
=======================================================
|
2261 |
-
-----BEGIN CERTIFICATE-----
|
2262 |
-
MIICPDCCAaUCEDyRMcsf9tAbDpq40ES/Er4wDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCVVMx
|
2263 |
-
FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmltYXJ5
|
2264 |
-
IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVow
|
2265 |
-
XzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAz
|
2266 |
-
IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUA
|
2267 |
-
A4GNADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhEBarsAx94
|
2268 |
-
f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/isI19wKTakyYbnsZogy1Ol
|
2269 |
-
hec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBABByUqkFFBky
|
2270 |
-
CEHwxWsKzH4PIRnN5GfcX6kb5sroc50i2JhucwNhkcV8sEVAbkSdjbCxlnRhLQ2pRdKkkirWmnWX
|
2271 |
-
bj9T/UWZYB2oK0z5XqcJ2HUw19JlYD1n1khVdWk/kfVIC0dpImmClr7JyDiGSnoscxlIaU5rfGW/
|
2272 |
-
D/xwzoiQ
|
2273 |
-
-----END CERTIFICATE-----
|
2274 |
-
|
2275 |
Microsec e-Szigno Root CA 2009
|
2276 |
==============================
|
2277 |
-----BEGIN CERTIFICATE-----
|
@@ -2632,95 +1724,6 @@ Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
|
|
2632 |
03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
|
2633 |
-----END CERTIFICATE-----
|
2634 |
|
2635 |
-
Certinomis - Autorité Racine
|
2636 |
-
=============================
|
2637 |
-
-----BEGIN CERTIFICATE-----
|
2638 |
-
MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjETMBEGA1UEChMK
|
2639 |
-
Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAkBgNVBAMMHUNlcnRpbm9taXMg
|
2640 |
-
LSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkG
|
2641 |
-
A1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYw
|
2642 |
-
JAYDVQQDDB1DZXJ0aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQAD
|
2643 |
-
ggIPADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jYF1AMnmHa
|
2644 |
-
wE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N8y4oH3DfVS9O7cdxbwly
|
2645 |
-
Lu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWerP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw
|
2646 |
-
2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92N
|
2647 |
-
jMD2AR5vpTESOH2VwnHu7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9q
|
2648 |
-
c1pkIuVC28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6lSTC
|
2649 |
-
lrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1Enn1So2+WLhl+HPNb
|
2650 |
-
xxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB0iSVL1N6aaLwD4ZFjliCK0wi1F6g
|
2651 |
-
530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql095gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna
|
2652 |
-
4NH4+ej9Uji29YnfAgMBAAGjWzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G
|
2653 |
-
A1UdDgQWBBQNjLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ
|
2654 |
-
KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9sov3/4gbIOZ/x
|
2655 |
-
WqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZMOH8oMDX/nyNTt7buFHAAQCva
|
2656 |
-
R6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40
|
2657 |
-
nJ+U8/aGH88bc62UeYdocMMzpXDn2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1B
|
2658 |
-
CxMjidPJC+iKunqjo3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjv
|
2659 |
-
JL1vnxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG5ERQL1TE
|
2660 |
-
qkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWqpdEdnV1j6CTmNhTih60b
|
2661 |
-
WfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZbdsLLO7XSAPCjDuGtbkD326C00EauFddE
|
2662 |
-
wk01+dIL8hf2rGbVJLJP0RyZwG71fet0BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/
|
2663 |
-
vgt2Fl43N+bYdJeimUV5
|
2664 |
-
-----END CERTIFICATE-----
|
2665 |
-
|
2666 |
-
Root CA Generalitat Valenciana
|
2667 |
-
==============================
|
2668 |
-
-----BEGIN CERTIFICATE-----
|
2669 |
-
MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE
|
2670 |
-
ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290
|
2671 |
-
IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3
|
2672 |
-
WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE
|
2673 |
-
CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G
|
2674 |
-
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2
|
2675 |
-
F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B
|
2676 |
-
ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ
|
2677 |
-
D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte
|
2678 |
-
JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB
|
2679 |
-
AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n
|
2680 |
-
dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB
|
2681 |
-
ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl
|
2682 |
-
AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA
|
2683 |
-
YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy
|
2684 |
-
AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA
|
2685 |
-
aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt
|
2686 |
-
AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA
|
2687 |
-
YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu
|
2688 |
-
AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA
|
2689 |
-
OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0
|
2690 |
-
dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV
|
2691 |
-
BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G
|
2692 |
-
A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S
|
2693 |
-
b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh
|
2694 |
-
TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz
|
2695 |
-
Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63
|
2696 |
-
NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH
|
2697 |
-
iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt
|
2698 |
-
+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM=
|
2699 |
-
-----END CERTIFICATE-----
|
2700 |
-
|
2701 |
-
A-Trust-nQual-03
|
2702 |
-
================
|
2703 |
-
-----BEGIN CERTIFICATE-----
|
2704 |
-
MIIDzzCCAregAwIBAgIDAWweMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJBVDFIMEYGA1UE
|
2705 |
-
Cgw/QS1UcnVzdCBHZXMuIGYuIFNpY2hlcmhlaXRzc3lzdGVtZSBpbSBlbGVrdHIuIERhdGVudmVy
|
2706 |
-
a2VociBHbWJIMRkwFwYDVQQLDBBBLVRydXN0LW5RdWFsLTAzMRkwFwYDVQQDDBBBLVRydXN0LW5R
|
2707 |
-
dWFsLTAzMB4XDTA1MDgxNzIyMDAwMFoXDTE1MDgxNzIyMDAwMFowgY0xCzAJBgNVBAYTAkFUMUgw
|
2708 |
-
RgYDVQQKDD9BLVRydXN0IEdlcy4gZi4gU2ljaGVyaGVpdHNzeXN0ZW1lIGltIGVsZWt0ci4gRGF0
|
2709 |
-
ZW52ZXJrZWhyIEdtYkgxGTAXBgNVBAsMEEEtVHJ1c3QtblF1YWwtMDMxGTAXBgNVBAMMEEEtVHJ1
|
2710 |
-
c3QtblF1YWwtMDMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtPWFuA/OQO8BBC4SA
|
2711 |
-
zewqo51ru27CQoT3URThoKgtUaNR8t4j8DRE/5TrzAUjlUC5B3ilJfYKvUWG6Nm9wASOhURh73+n
|
2712 |
-
yfrBJcyFLGM/BWBzSQXgYHiVEEvc+RFZznF/QJuKqiTfC0Li21a8StKlDJu3Qz7dg9MmEALP6iPE
|
2713 |
-
SU7l0+m0iKsMrmKS1GWH2WrX9IWf5DMiJaXlyDO6w8dB3F/GaswADm0yqLaHNgBid5seHzTLkDx4
|
2714 |
-
iHQF63n1k3Flyp3HaxgtPVxO59X4PzF9j4fsCiIvI+n+u33J4PTs63zEsMMtYrWacdaxaujs2e3V
|
2715 |
-
cuy+VwHOBVWf3tFgiBCzAgMBAAGjNjA0MA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0OBAoECERqlWdV
|
2716 |
-
eRFPMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAVdRU0VlIXLOThaq/Yy/kgM40
|
2717 |
-
ozRiPvbY7meIMQQDbwvUB/tOdQ/TLtPAF8fGKOwGDREkDg6lXb+MshOWcdzUzg4NCmgybLlBMRmr
|
2718 |
-
sQd7TZjTXLDR8KdCoLXEjq/+8T/0709GAHbrAvv5ndJAlseIOrifEXnzgGWovR/TeIGgUUw3tKZd
|
2719 |
-
JXDRZslo+S4RFGjxVJgIrCaSD96JntT6s3kr0qN51OyLrIdTaEJMUVF0HhsnLuP1Hyl0Te2v9+GS
|
2720 |
-
mYHovjrHF1D2t8b8m7CKa9aIA5GPBnc6hQLdmNVDeD/GMBWsm2vLV7eJUYs66MmEDNuxUCAKGkq6
|
2721 |
-
ahq97BvIxYSazQ==
|
2722 |
-
-----END CERTIFICATE-----
|
2723 |
-
|
2724 |
TWCA Root Certification Authority
|
2725 |
=================================
|
2726 |
-----BEGIN CERTIFICATE-----
|
@@ -2869,75 +1872,6 @@ l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl
|
|
2869 |
iB6XzCGcKQENZetX2fNXlrtIzYE=
|
2870 |
-----END CERTIFICATE-----
|
2871 |
|
2872 |
-
StartCom Certification Authority
|
2873 |
-
================================
|
2874 |
-
-----BEGIN CERTIFICATE-----
|
2875 |
-
MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
2876 |
-
U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
|
2877 |
-
ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
|
2878 |
-
NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
|
2879 |
-
LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
|
2880 |
-
U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
2881 |
-
ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
|
2882 |
-
o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
|
2883 |
-
Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
|
2884 |
-
eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
|
2885 |
-
2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
|
2886 |
-
6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
|
2887 |
-
osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
|
2888 |
-
untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
|
2889 |
-
UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
|
2890 |
-
37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD
|
2891 |
-
VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ
|
2892 |
-
Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0
|
2893 |
-
dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu
|
2894 |
-
c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv
|
2895 |
-
bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0
|
2896 |
-
aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0
|
2897 |
-
aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t
|
2898 |
-
L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG
|
2899 |
-
cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5
|
2900 |
-
fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm
|
2901 |
-
N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN
|
2902 |
-
Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T
|
2903 |
-
tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX
|
2904 |
-
e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA
|
2905 |
-
2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs
|
2906 |
-
HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE
|
2907 |
-
JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib
|
2908 |
-
D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8=
|
2909 |
-
-----END CERTIFICATE-----
|
2910 |
-
|
2911 |
-
StartCom Certification Authority G2
|
2912 |
-
===================================
|
2913 |
-
-----BEGIN CERTIFICATE-----
|
2914 |
-
MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
|
2915 |
-
U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg
|
2916 |
-
RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE
|
2917 |
-
ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp
|
2918 |
-
dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O
|
2919 |
-
o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG
|
2920 |
-
4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi
|
2921 |
-
Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul
|
2922 |
-
Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs
|
2923 |
-
O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H
|
2924 |
-
vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L
|
2925 |
-
nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS
|
2926 |
-
FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa
|
2927 |
-
z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E
|
2928 |
-
BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ
|
2929 |
-
KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K
|
2930 |
-
2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk
|
2931 |
-
J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+
|
2932 |
-
JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG
|
2933 |
-
/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc
|
2934 |
-
nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld
|
2935 |
-
blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc
|
2936 |
-
l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm
|
2937 |
-
7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm
|
2938 |
-
obp573PYtlNXLfbQ4ddI
|
2939 |
-
-----END CERTIFICATE-----
|
2940 |
-
|
2941 |
Buypass Class 2 Root CA
|
2942 |
=======================
|
2943 |
-----BEGIN CERTIFICATE-----
|
@@ -3044,31 +1978,6 @@ uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU
|
|
3044 |
dcGWxZ0=
|
3045 |
-----END CERTIFICATE-----
|
3046 |
|
3047 |
-
TURKTRUST Certificate Services Provider Root 2007
|
3048 |
-
=================================================
|
3049 |
-
-----BEGIN CERTIFICATE-----
|
3050 |
-
MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOcUktUUlVTVCBF
|
3051 |
-
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP
|
3052 |
-
MA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg
|
3053 |
-
QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4X
|
3054 |
-
DTA3MTIyNTE4MzcxOVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxl
|
3055 |
-
a3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMCVFIxDzAN
|
3056 |
-
BgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
|
3057 |
-
bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4gKGMpIEFyYWzEsWsgMjAwNzCCASIw
|
3058 |
-
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9N
|
3059 |
-
YvDdE3ePYakqtdTyuTFYKTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQv
|
3060 |
-
KUmi8wUG+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveGHtya
|
3061 |
-
KhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6PIzdezKKqdfcYbwnT
|
3062 |
-
rqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M733WB2+Y8a+xwXrXgTW4qhe04MsC
|
3063 |
-
AwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHkYb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAP
|
3064 |
-
BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/s
|
3065 |
-
Px+EnWVUXKgWAkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I
|
3066 |
-
aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5mxRZNTZPz/OO
|
3067 |
-
Xl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsaXRik7r4EW5nVcV9VZWRi1aKb
|
3068 |
-
BFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZqxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAK
|
3069 |
-
poRq0Tl9
|
3070 |
-
-----END CERTIFICATE-----
|
3071 |
-
|
3072 |
D-TRUST Root Class 3 CA 2 2009
|
3073 |
==============================
|
3074 |
-----BEGIN CERTIFICATE-----
|
@@ -3118,141 +2027,6 @@ NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv
|
|
3118 |
w9y4AyHqnxbxLFS1
|
3119 |
-----END CERTIFICATE-----
|
3120 |
|
3121 |
-
PSCProcert
|
3122 |
-
==========
|
3123 |
-
-----BEGIN CERTIFICATE-----
|
3124 |
-
MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1dG9yaWRhZCBk
|
3125 |
-
ZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9sYW5vMQswCQYDVQQGEwJWRTEQ
|
3126 |
-
MA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlzdHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lz
|
3127 |
-
dGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBl
|
3128 |
-
cmludGVuZGVuY2lhIGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUw
|
3129 |
-
IwYJKoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEwMFoXDTIw
|
3130 |
-
MTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHByb2NlcnQubmV0LnZlMQ8w
|
3131 |
-
DQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGExKjAoBgNVBAsTIVByb3ZlZWRvciBkZSBD
|
3132 |
-
ZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZp
|
3133 |
-
Y2FjaW9uIEVsZWN0cm9uaWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIw
|
3134 |
-
DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo97BVC
|
3135 |
-
wfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74BCXfgI8Qhd19L3uA
|
3136 |
-
3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38GieU89RLAu9MLmV+QfI4tL3czkkoh
|
3137 |
-
RqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmO
|
3138 |
-
EO8GqQKJ/+MMbpfg353bIdD0PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG2
|
3139 |
-
0qCZyFSTXai20b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH
|
3140 |
-
0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/6mnbVSKVUyqU
|
3141 |
-
td+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1mv6JpIzi4mWCZDlZTOpx+FIyw
|
3142 |
-
Bm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvp
|
3143 |
-
r2uKGcfLFFb14dq12fy/czja+eevbqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/
|
3144 |
-
AgEBMDcGA1UdEgQwMC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAz
|
3145 |
-
Ni0wMB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFDgBStuyId
|
3146 |
-
xuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0b3JpZGFkIGRlIENlcnRp
|
3147 |
-
ZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xhbm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQH
|
3148 |
-
EwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5h
|
3149 |
-
Y2lvbmFsIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5k
|
3150 |
-
ZW5jaWEgZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkqhkiG
|
3151 |
-
9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQDAgEGME0GA1UdEQRG
|
3152 |
-
MESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0wMDAwMDKgGwYFYIZeAgKgEgwQUklG
|
3153 |
-
LUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEagRKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52
|
3154 |
-
ZS9sY3IvQ0VSVElGSUNBRE8tUkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNy
|
3155 |
-
YWl6LnN1c2NlcnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v
|
3156 |
-
Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsGAQUFBwIBFh5o
|
3157 |
-
dHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcNAQELBQADggIBACtZ6yKZu4Sq
|
3158 |
-
T96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmN
|
3159 |
-
g7+mvTV+LFwxNG9s2/NkAZiqlCxB3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4q
|
3160 |
-
uxtxj7mkoP3YldmvWb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1
|
3161 |
-
n8GhHVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHmpHmJWhSn
|
3162 |
-
FFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXzsOfIt+FTvZLm8wyWuevo
|
3163 |
-
5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bEqCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq
|
3164 |
-
3TNWOByyrYDT13K9mmyZY+gAu0F2BbdbmRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5
|
3165 |
-
poLWccret9W6aAjtmcz9opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3Y
|
3166 |
-
eMLEYC/HYvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km
|
3167 |
-
-----END CERTIFICATE-----
|
3168 |
-
|
3169 |
-
China Internet Network Information Center EV Certificates Root
|
3170 |
-
==============================================================
|
3171 |
-
-----BEGIN CERTIFICATE-----
|
3172 |
-
MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMCQ04xMjAwBgNV
|
3173 |
-
BAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyMUcwRQYDVQQDDD5D
|
3174 |
-
aGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMg
|
3175 |
-
Um9vdDAeFw0xMDA4MzEwNzExMjVaFw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAG
|
3176 |
-
A1UECgwpQ2hpbmEgSW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMM
|
3177 |
-
PkNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRpZmljYXRl
|
3178 |
-
cyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z7r07eKpkQ0H1UN+U8i6y
|
3179 |
-
jUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA//DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV
|
3180 |
-
98YPjUesWgbdYavi7NifFy2cyjw1l1VxzUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2H
|
3181 |
-
klY0bBoQCxfVWhyXWIQ8hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23
|
3182 |
-
KzhmBsUs4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54ugQEC
|
3183 |
-
7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oYNJKiyoOCWTAPBgNV
|
3184 |
-
HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUfHJLOcfA22KlT5uqGDSSosqD
|
3185 |
-
glkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd5
|
3186 |
-
0XPFtQO3WKwMVC/GVhMPMdoG52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM
|
3187 |
-
7+czV0I664zBechNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws
|
3188 |
-
ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrIzo9uoV1/A3U0
|
3189 |
-
5K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATywy39FCqQmbkHzJ8=
|
3190 |
-
-----END CERTIFICATE-----
|
3191 |
-
|
3192 |
-
Swisscom Root CA 2
|
3193 |
-
==================
|
3194 |
-
-----BEGIN CERTIFICATE-----
|
3195 |
-
MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBkMQswCQYDVQQG
|
3196 |
-
EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy
|
3197 |
-
dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2
|
3198 |
-
MjUwNzM4MTRaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln
|
3199 |
-
aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIIC
|
3200 |
-
IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvErjw0DzpPM
|
3201 |
-
LgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r0rk0X2s682Q2zsKwzxNo
|
3202 |
-
ysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJ
|
3203 |
-
wDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVPACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpH
|
3204 |
-
Wrumnf2U5NGKpV+GY3aFy6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1a
|
3205 |
-
SgJA/MTAtukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL6yxS
|
3206 |
-
NLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0uPoTXGiTOmekl9Ab
|
3207 |
-
mbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrALacywlKinh/LTSlDcX3KwFnUey7QY
|
3208 |
-
Ypqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velhk6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3
|
3209 |
-
qPyZ7iVNTA6z00yPhOgpD/0QVAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw
|
3210 |
-
HQYDVR0hBBYwFDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O
|
3211 |
-
BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqhb97iEoHF8Twu
|
3212 |
-
MA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4RfbgZPnm3qKhyN2abGu2sEzsO
|
3213 |
-
v2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv/2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ
|
3214 |
-
82YqZh6NM4OKb3xuqFp1mrjX2lhIREeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLz
|
3215 |
-
o9v/tdhZsnPdTSpxsrpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcs
|
3216 |
-
a0vvaGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciATwoCqISxx
|
3217 |
-
OQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99nBjx8Oto0QuFmtEYE3saW
|
3218 |
-
mA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5Wt6NlUe07qxS/TFED6F+KBZvuim6c779o
|
3219 |
-
+sjaC+NCydAXFJy3SuCvkychVSa1ZC+N8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TC
|
3220 |
-
rvJcwhbtkj6EPnNgiLx29CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX
|
3221 |
-
5OfNeOI5wSsSnqaeG8XmDtkx2Q==
|
3222 |
-
-----END CERTIFICATE-----
|
3223 |
-
|
3224 |
-
Swisscom Root EV CA 2
|
3225 |
-
=====================
|
3226 |
-
-----BEGIN CERTIFICATE-----
|
3227 |
-
MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAwZzELMAkGA1UE
|
3228 |
-
BhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdpdGFsIENlcnRpZmljYXRlIFNl
|
3229 |
-
cnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcN
|
3230 |
-
MzEwNjI1MDg0NTA4WjBnMQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsT
|
3231 |
-
HERpZ2l0YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYg
|
3232 |
-
Q0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7BxUglgRCgz
|
3233 |
-
o3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD1ycfMQ4jFrclyxy0uYAy
|
3234 |
-
Xhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPHoCE2G3pXKSinLr9xJZDzRINpUKTk4Rti
|
3235 |
-
GZQJo/PDvO/0vezbE53PnUgJUmfANykRHvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8Li
|
3236 |
-
qG12W0OfvrSdsyaGOx9/5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaH
|
3237 |
-
Za0zKcQvidm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHLOdAG
|
3238 |
-
alNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaCNYGu+HuB5ur+rPQa
|
3239 |
-
m3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f46Fq9mDU5zXNysRojddxyNMkM3Ox
|
3240 |
-
bPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCBUWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDi
|
3241 |
-
xzgHcgplwLa7JSnaFp6LNYth7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/
|
3242 |
-
BAQDAgGGMB0GA1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED
|
3243 |
-
MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWBbj2ITY1x0kbB
|
3244 |
-
bkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6xXCX5145v9Ydkn+0UjrgEjihL
|
3245 |
-
j6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98TPLr+flaYC/NUn81ETm484T4VvwYmneTwkLbU
|
3246 |
-
wp4wLh/vx3rEUMfqe9pQy3omywC0Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7
|
3247 |
-
XwgiG/W9mR4U9s70WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH
|
3248 |
-
59yLGn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm7JFe3VE/
|
3249 |
-
23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4Snr8PyQUQ3nqjsTzyP6Wq
|
3250 |
-
J3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VNvBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyA
|
3251 |
-
HmBR3NdUIR7KYndP+tiPsys6DXhyyWhBWkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/gi
|
3252 |
-
uMod89a2GQ+fYWVq6nTIfI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuW
|
3253 |
-
l8PVP3wbI+2ksx0WckNLIOFZfsLorSa/ovc=
|
3254 |
-
-----END CERTIFICATE-----
|
3255 |
-
|
3256 |
CA Disig Root R1
|
3257 |
================
|
3258 |
-----BEGIN CERTIFICATE-----
|
@@ -3686,64 +2460,36 @@ G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP
|
|
3686 |
82Z+
|
3687 |
-----END CERTIFICATE-----
|
3688 |
|
3689 |
-
|
3690 |
-
|
3691 |
-
-----BEGIN CERTIFICATE-----
|
3692 |
-
MIIFdjCCA16gAwIBAgIQXmjWEXGUY1BWAGjzPsnFkTANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQG
|
3693 |
-
EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxKjAoBgNVBAMTIUNlcnRpZmljYXRpb24g
|
3694 |
-
QXV0aG9yaXR5IG9mIFdvU2lnbjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMFUxCzAJ
|
3695 |
-
BgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEqMCgGA1UEAxMhQ2VydGlmaWNh
|
3696 |
-
dGlvbiBBdXRob3JpdHkgb2YgV29TaWduMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA
|
3697 |
-
vcqNrLiRFVaXe2tcesLea9mhsMMQI/qnobLMMfo+2aYpbxY94Gv4uEBf2zmoAHqLoE1UfcIiePyO
|
3698 |
-
CbiohdfMlZdLdNiefvAA5A6JrkkoRBoQmTIPJYhTpA2zDxIIFgsDcSccf+Hb0v1naMQFXQoOXXDX
|
3699 |
-
2JegvFNBmpGN9J42Znp+VsGQX+axaCA2pIwkLCxHC1l2ZjC1vt7tj/id07sBMOby8w7gLJKA84X5
|
3700 |
-
KIq0VC6a7fd2/BVoFutKbOsuEo/Uz/4Mx1wdC34FMr5esAkqQtXJTpCzWQ27en7N1QhatH/YHGkR
|
3701 |
-
+ScPewavVIMYe+HdVHpRaG53/Ma/UkpmRqGyZxq7o093oL5d//xWC0Nyd5DKnvnyOfUNqfTq1+ez
|
3702 |
-
EC8wQjchzDBwyYaYD8xYTYO7feUapTeNtqwylwA6Y3EkHp43xP901DfA4v6IRmAR3Qg/UDaruHqk
|
3703 |
-
lWJqbrDKaiFaafPz+x1wOZXzp26mgYmhiMU7ccqjUu6Du/2gd/Tkb+dC221KmYo0SLwX3OSACCK2
|
3704 |
-
8jHAPwQ+658geda4BmRkAjHXqc1S+4RFaQkAKtxVi8QGRkvASh0JWzko/amrzgD5LkhLJuYwTKVY
|
3705 |
-
yrREgk/nkR4zw7CT/xH8gdLKH3Ep3XZPkiWvHYG3Dy+MwwbMLyejSuQOmbp8HkUff6oZRZb9/D0C
|
3706 |
-
AwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOFmzw7R
|
3707 |
-
8bNLtwYgFP6HEtX2/vs+MA0GCSqGSIb3DQEBBQUAA4ICAQCoy3JAsnbBfnv8rWTjMnvMPLZdRtP1
|
3708 |
-
LOJwXcgu2AZ9mNELIaCJWSQBnfmvCX0KI4I01fx8cpm5o9dU9OpScA7F9dY74ToJMuYhOZO9sxXq
|
3709 |
-
T2r09Ys/L3yNWC7F4TmgPsc9SnOeQHrAK2GpZ8nzJLmzbVUsWh2eJXLOC62qx1ViC777Y7NhRCOj
|
3710 |
-
y+EaDveaBk3e1CNOIZZbOVtXHS9dCF4Jef98l7VNg64N1uajeeAz0JmWAjCnPv/So0M/BVoG6kQC
|
3711 |
-
2nz4SNAzqfkHx5Xh9T71XXG68pWpdIhhWeO/yloTunK0jF02h+mmxTwTv97QRCbut+wucPrXnbes
|
3712 |
-
5cVAWubXbHssw1abR80LzvobtCHXt2a49CUwi1wNuepnsvRtrtWhnk/Yn+knArAdBtaP4/tIEp9/
|
3713 |
-
EaEQPkxROpaw0RPxx9gmrjrKkcRpnd8BKWRRb2jaFOwIQZeQjdCygPLPwj2/kWjFgGcexGATVdVh
|
3714 |
-
mVd8upUPYUk6ynW8yQqTP2cOEvIo4jEbwFcW3wh8GcF+Dx+FHgo2fFt+J7x6v+Db9NpSvd4MVHAx
|
3715 |
-
kUOVyLzwPt0JfjBkUO1/AaQzZ01oT74V77D2AhGiGxMlOtzCWfHjXEa7ZywCRuoeSKbmW9m1vFGi
|
3716 |
-
kpbbqsY3Iqb+zCB0oy2pLmvLwIIRIbWTee5Ehr7XHuQe+w==
|
3717 |
-
-----END CERTIFICATE-----
|
3718 |
-
|
3719 |
-
WoSign China
|
3720 |
-
============
|
3721 |
-----BEGIN CERTIFICATE-----
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
|
3727 |
-
|
3728 |
-
|
3729 |
-
|
3730 |
-
|
3731 |
-
|
3732 |
-
|
3733 |
-
+
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
|
3738 |
-
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
|
|
|
|
3747 |
-----END CERTIFICATE-----
|
3748 |
|
3749 |
USERTrust RSA Certification Authority
|
@@ -3794,6 +2540,7 @@ HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB
|
|
3794 |
HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
|
3795 |
9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
|
3796 |
-----END CERTIFICATE-----
|
|
|
3797 |
GlobalSign ECC Root CA - R4
|
3798 |
===========================
|
3799 |
-----BEGIN CERTIFICATE-----
|
@@ -3823,38 +2570,6 @@ uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7
|
|
3823 |
yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
|
3824 |
-----END CERTIFICATE-----
|
3825 |
|
3826 |
-
COMODO RSA Certification Authority
|
3827 |
-
==================================
|
3828 |
-
-----BEGIN CERTIFICATE-----
|
3829 |
-
MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE
|
3830 |
-
BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
|
3831 |
-
A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv
|
3832 |
-
biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC
|
3833 |
-
R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
|
3834 |
-
ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB
|
3835 |
-
dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn
|
3836 |
-
dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ
|
3837 |
-
FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+
|
3838 |
-
5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG
|
3839 |
-
x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX
|
3840 |
-
2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL
|
3841 |
-
OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3
|
3842 |
-
sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C
|
3843 |
-
GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5
|
3844 |
-
WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E
|
3845 |
-
FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
|
3846 |
-
DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt
|
3847 |
-
rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+
|
3848 |
-
nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg
|
3849 |
-
tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW
|
3850 |
-
sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp
|
3851 |
-
pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA
|
3852 |
-
zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq
|
3853 |
-
ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52
|
3854 |
-
7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I
|
3855 |
-
LaZRfyHBNVOFBkpdn627G190
|
3856 |
-
-----END CERTIFICATE-----
|
3857 |
-
|
3858 |
Staat der Nederlanden Root CA - G3
|
3859 |
==================================
|
3860 |
-----BEGIN CERTIFICATE-----
|
@@ -4050,7 +2765,7 @@ ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su
|
|
4050 |
-----END CERTIFICATE-----
|
4051 |
|
4052 |
TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5
|
4053 |
-
|
4054 |
-----BEGIN CERTIFICATE-----
|
4055 |
MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UEBhMCVFIxDzAN
|
4056 |
BgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
|
@@ -4073,30 +2788,6 @@ lpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CFYv4HAqGEVka+lgqaE9chTLd8
|
|
4073 |
B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW+qtB4Uu2NQvAmxU=
|
4074 |
-----END CERTIFICATE-----
|
4075 |
|
4076 |
-
TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6
|
4077 |
-
=========================================================
|
4078 |
-
-----BEGIN CERTIFICATE-----
|
4079 |
-
MIIEJjCCAw6gAwIBAgIGfaHyZeyKMA0GCSqGSIb3DQEBCwUAMIGxMQswCQYDVQQGEwJUUjEPMA0G
|
4080 |
-
A1UEBwwGQW5rYXJhMU0wSwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls
|
4081 |
-
acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF
|
4082 |
-
bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg2MB4XDTEzMTIxODA5
|
4083 |
-
MDQxMFoXDTIzMTIxNjA5MDQxMFowgbExCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExTTBL
|
4084 |
-
BgNVBAoMRFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSf
|
4085 |
-
aSBIaXptZXRsZXJpIEEuxZ4uMUIwQAYDVQQDDDlUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2VydGlm
|
4086 |
-
aWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLEgSDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
4087 |
-
AoIBAQCdsGjW6L0UlqMACprx9MfMkU1xeHe59yEmFXNRFpQJRwXiM/VomjX/3EsvMsew7eKC5W/a
|
4088 |
-
2uqsxgbPJQ1BgfbBOCK9+bGlprMBvD9QFyv26WZV1DOzXPhDIHiTVRZwGTLmiddk671IUP320EED
|
4089 |
-
wnS3/faAz1vFq6TWlRKb55cTMgPp1KtDWxbtMyJkKbbSk60vbNg9tvYdDjTu0n2pVQ8g9P0pu5Fb
|
4090 |
-
HH3GQjhtQiht1AH7zYiXSX6484P4tZgvsycLSF5W506jM7NE1qXyGJTtHB6plVxiSvgNZ1GpryHV
|
4091 |
-
+DKdeboaX+UEVU0TRv/yz3THGmNtwx8XEsMeED5gCLMxAgMBAAGjQjBAMB0GA1UdDgQWBBTdVRcT
|
4092 |
-
9qzoSCHK77Wv0QAy7Z6MtTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG
|
4093 |
-
9w0BAQsFAAOCAQEAb1gNl0OqFlQ+v6nfkkU/hQu7VtMMUszIv3ZnXuaqs6fvuay0EBQNdH49ba3R
|
4094 |
-
fdCaqaXKGDsCQC4qnFAUi/5XfldcEQlLNkVS9z2sFP1E34uXI9TDwe7UU5X+LEr+DXCqu4svLcsy
|
4095 |
-
o4LyVN/Y8t3XSHLuSqMplsNEzm61kod2pLv0kmzOLBQJZo6NrRa1xxsJYTvjIKIDgI6tflEATseW
|
4096 |
-
hvtDmHd9KMeP2Cpu54Rvl0EpABZeTeIT6lnAY2c6RPuY/ATTMHKm9ocJV612ph1jmv3XZch4gyt1
|
4097 |
-
O6VbuA1df74jrlZVlFjvH4GMKrLN5ptjnhi85WsGtAuYSyher4hYyw==
|
4098 |
-
-----END CERTIFICATE-----
|
4099 |
-
|
4100 |
Certinomis - Root CA
|
4101 |
====================
|
4102 |
-----BEGIN CERTIFICATE-----
|
@@ -4150,42 +2841,6 @@ HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic
|
|
4150 |
Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM=
|
4151 |
-----END CERTIFICATE-----
|
4152 |
|
4153 |
-
Certification Authority of WoSign G2
|
4154 |
-
====================================
|
4155 |
-
-----BEGIN CERTIFICATE-----
|
4156 |
-
MIIDfDCCAmSgAwIBAgIQayXaioidfLwPBbOxemFFRDANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQG
|
4157 |
-
EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxLTArBgNVBAMTJENlcnRpZmljYXRpb24g
|
4158 |
-
QXV0aG9yaXR5IG9mIFdvU2lnbiBHMjAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMFgx
|
4159 |
-
CzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEtMCsGA1UEAxMkQ2VydGlm
|
4160 |
-
aWNhdGlvbiBBdXRob3JpdHkgb2YgV29TaWduIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
4161 |
-
CgKCAQEAvsXEoCKASU+/2YcRxlPhuw+9YH+v9oIOH9ywjj2X4FA8jzrvZjtFB5sg+OPXJYY1kBai
|
4162 |
-
XW8wGQiHC38Gsp1ij96vkqVg1CuAmlI/9ZqD6TRay9nVYlzmDuDfBpgOgHzKtB0TiGsOqCR3A9Du
|
4163 |
-
W/PKaZE1OVbFbeP3PU9ekzgkyhjpJMuSA93MHD0JcOQg5PGurLtzaaNjOg9FD6FKmsLRY6zLEPg9
|
4164 |
-
5k4ot+vElbGs/V6r+kHLXZ1L3PR8du9nfwB6jdKgGlxNIuG12t12s9R23164i5jIFFTMaxeSt+BK
|
4165 |
-
v0mUYQs4kI9dJGwlezt52eJ+na2fmKEG/HgUYFf47oB3sQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC
|
4166 |
-
AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU+mCp62XF3RYUCE4MD42b4Pdkr2cwDQYJKoZI
|
4167 |
-
hvcNAQELBQADggEBAFfDejaCnI2Y4qtAqkePx6db7XznPWZaOzG73/MWM5H8fHulwqZm46qwtyeY
|
4168 |
-
P0nXYGdnPzZPSsvxFPpahygc7Y9BMsaV+X3avXtbwrAh449G3CE4Q3RM+zD4F3LBMvzIkRfEzFg3
|
4169 |
-
TgvMWvchNSiDbGAtROtSjFA9tWwS1/oJu2yySrHFieT801LYYRf+epSEj3m2M1m6D8QL4nCgS3gu
|
4170 |
-
+sif/a+RZQp4OBXllxcU3fngLDT4ONCEIgDAFFEYKwLcMFrw6AF8NTojrwjkr6qOKEJJLvD1mTS+
|
4171 |
-
7Q9LGOHSJDy7XUe3IfKN0QqZjuNuPq1w4I+5ysxugTH2e5x6eeRncRg=
|
4172 |
-
-----END CERTIFICATE-----
|
4173 |
-
|
4174 |
-
CA WoSign ECC Root
|
4175 |
-
==================
|
4176 |
-
-----BEGIN CERTIFICATE-----
|
4177 |
-
MIICCTCCAY+gAwIBAgIQaEpYcIBr8I8C+vbe6LCQkDAKBggqhkjOPQQDAzBGMQswCQYDVQQGEwJD
|
4178 |
-
TjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMTEkNBIFdvU2lnbiBFQ0MgUm9v
|
4179 |
-
dDAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQK
|
4180 |
-
ExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAxMSQ0EgV29TaWduIEVDQyBSb290MHYwEAYHKoZI
|
4181 |
-
zj0CAQYFK4EEACIDYgAE4f2OuEMkq5Z7hcK6C62N4DrjJLnSsb6IOsq/Srj57ywvr1FQPEd1bPiU
|
4182 |
-
t5v8KB7FVMxjnRZLU8HnIKvNrCXSf4/CwVqCXjCLelTOA7WRf6qU0NGKSMyCBSah1VES1ns2o0Iw
|
4183 |
-
QDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqv3VWqP2h4syhf3R
|
4184 |
-
MluARZPzA7gwCgYIKoZIzj0EAwMDaAAwZQIxAOSkhLCB1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0
|
4185 |
-
Daupn75OcsqF1NnstTJFGG+rrQIwfcf3aWMvoeGY7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYu
|
4186 |
-
a/GRspBl9JrmkO5K
|
4187 |
-
-----END CERTIFICATE-----
|
4188 |
-
|
4189 |
SZAFIR ROOT CA2
|
4190 |
===============
|
4191 |
-----BEGIN CERTIFICATE-----
|
@@ -4576,3 +3231,237 @@ TxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKrezrnK+T+Tb/mjuuqlPpmt
|
|
4576 |
7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31I
|
4577 |
iyBMz2TWuJdGsE7RKlY6oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr
|
4578 |
-----END CERTIFICATE-----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
##
|
2 |
+
## Bundle of CA Root Certificates
|
3 |
##
|
4 |
+
## Certificate data from Mozilla as of: Wed Jan 17 04:12:05 2018 GMT
|
5 |
##
|
6 |
## This is a bundle of X.509 certificates of public Certificate Authorities
|
7 |
## (CA). These were automatically extracted from Mozilla's root certificates
|
8 |
## file (certdata.txt). This file can be found in the mozilla source tree:
|
9 |
+
## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
|
10 |
##
|
11 |
## It contains the certificates in PEM format and therefore
|
12 |
## can be directly used with curl / libcurl / php_curl, or with
|
13 |
## an Apache+mod_ssl webserver for SSL client authentication.
|
14 |
## Just configure this file as the SSLCACertificateFile.
|
15 |
##
|
16 |
+
## Conversion done with mk-ca-bundle.pl version 1.27.
|
17 |
+
## SHA256: a3ac15b98179dd2f3c5de076d10b1d53048754372f7207c2f327510cdd78fbd8
|
18 |
+
##
|
19 |
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
GlobalSign Root CA
|
22 |
==================
|
23 |
-----BEGIN CERTIFICATE-----
|
61 |
TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
|
62 |
-----END CERTIFICATE-----
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
Verisign Class 3 Public Primary Certification Authority - G3
|
65 |
============================================================
|
66 |
-----BEGIN CERTIFICATE-----
|
85 |
t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
|
86 |
-----END CERTIFICATE-----
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
Entrust.net Premium 2048 Secure Server CA
|
89 |
=========================================
|
90 |
-----BEGIN CERTIFICATE-----
|
130 |
RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
|
131 |
-----END CERTIFICATE-----
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
AddTrust External Root
|
134 |
======================
|
135 |
-----BEGIN CERTIFICATE-----
|
154 |
G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
|
155 |
-----END CERTIFICATE-----
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
Entrust Root Certification Authority
|
158 |
====================================
|
159 |
-----BEGIN CERTIFICATE-----
|
180 |
tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
|
181 |
-----END CERTIFICATE-----
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
GeoTrust Global CA
|
184 |
==================
|
185 |
-----BEGIN CERTIFICATE-----
|
201 |
Mw==
|
202 |
-----END CERTIFICATE-----
|
203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
GeoTrust Universal CA
|
205 |
=====================
|
206 |
-----BEGIN CERTIFICATE-----
|
283 |
398znM/jra6O1I7mT1GvFpLgXPYHDw==
|
284 |
-----END CERTIFICATE-----
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
Comodo AAA Services root
|
287 |
========================
|
288 |
-----BEGIN CERTIFICATE-----
|
307 |
12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
|
308 |
-----END CERTIFICATE-----
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
QuoVadis Root CA
|
311 |
================
|
312 |
-----BEGIN CERTIFICATE-----
|
446 |
llpwrN9M
|
447 |
-----END CERTIFICATE-----
|
448 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
Camerfirma Chambers of Commerce Root
|
450 |
====================================
|
451 |
-----BEGIN CERTIFICATE-----
|
500 |
t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A==
|
501 |
-----END CERTIFICATE-----
|
502 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
XRamp Global CA Root
|
504 |
====================
|
505 |
-----BEGIN CERTIFICATE-----
|
572 |
QBFGmh95DmK/D5fs4C8fF5Q=
|
573 |
-----END CERTIFICATE-----
|
574 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
Taiwan GRCA
|
576 |
===========
|
577 |
-----BEGIN CERTIFICATE-----
|
602 |
+fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS
|
603 |
-----END CERTIFICATE-----
|
604 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
DigiCert Assured ID Root CA
|
606 |
===========================
|
607 |
-----BEGIN CERTIFICATE-----
|
734 |
oKfN5XozNmr6mis=
|
735 |
-----END CERTIFICATE-----
|
736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
SwissSign Gold CA - G2
|
738 |
======================
|
739 |
-----BEGIN CERTIFICATE-----
|
959 |
ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
|
960 |
-----END CERTIFICATE-----
|
961 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
COMODO ECC Certification Authority
|
963 |
==================================
|
964 |
-----BEGIN CERTIFICATE-----
|
976 |
U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
|
977 |
-----END CERTIFICATE-----
|
978 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
Security Communication EV RootCA1
|
980 |
=================================
|
981 |
-----BEGIN CERTIFICATE-----
|
1020 |
okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0=
|
1021 |
-----END CERTIFICATE-----
|
1022 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
Certigna
|
1024 |
========
|
1025 |
-----BEGIN CERTIFICATE-----
|
1064 |
Cm26OWMohpLzGITY+9HPBVZkVw==
|
1065 |
-----END CERTIFICATE-----
|
1066 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
Cybertrust Global Root
|
1068 |
======================
|
1069 |
-----BEGIN CERTIFICATE-----
|
1117 |
BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw=
|
1118 |
-----END CERTIFICATE-----
|
1119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1120 |
certSIGN ROOT CA
|
1121 |
================
|
1122 |
-----BEGIN CERTIFICATE-----
|
1137 |
TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
|
1138 |
-----END CERTIFICATE-----
|
1139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
GeoTrust Primary Certification Authority - G3
|
1141 |
=============================================
|
1142 |
-----BEGIN CERTIFICATE-----
|
1268 |
-----END CERTIFICATE-----
|
1269 |
|
1270 |
NetLock Arany (Class Gold) Főtanúsítvány
|
1271 |
+
========================================
|
1272 |
-----BEGIN CERTIFICATE-----
|
1273 |
MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
|
1274 |
A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
|
1323 |
66+KAQ==
|
1324 |
-----END CERTIFICATE-----
|
1325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1326 |
Hongkong Post Root CA 1
|
1327 |
=======================
|
1328 |
-----BEGIN CERTIFICATE-----
|
1364 |
lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
|
1365 |
-----END CERTIFICATE-----
|
1366 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1367 |
Microsec e-Szigno Root CA 2009
|
1368 |
==============================
|
1369 |
-----BEGIN CERTIFICATE-----
|
1724 |
03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
|
1725 |
-----END CERTIFICATE-----
|
1726 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1727 |
TWCA Root Certification Authority
|
1728 |
=================================
|
1729 |
-----BEGIN CERTIFICATE-----
|
1872 |
iB6XzCGcKQENZetX2fNXlrtIzYE=
|
1873 |
-----END CERTIFICATE-----
|
1874 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1875 |
Buypass Class 2 Root CA
|
1876 |
=======================
|
1877 |
-----BEGIN CERTIFICATE-----
|
1978 |
dcGWxZ0=
|
1979 |
-----END CERTIFICATE-----
|
1980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1981 |
D-TRUST Root Class 3 CA 2 2009
|
1982 |
==============================
|
1983 |
-----BEGIN CERTIFICATE-----
|
2027 |
w9y4AyHqnxbxLFS1
|
2028 |
-----END CERTIFICATE-----
|
2029 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2030 |
CA Disig Root R1
|
2031 |
================
|
2032 |
-----BEGIN CERTIFICATE-----
|
2460 |
82Z+
|
2461 |
-----END CERTIFICATE-----
|
2462 |
|
2463 |
+
COMODO RSA Certification Authority
|
2464 |
+
==================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2465 |
-----BEGIN CERTIFICATE-----
|
2466 |
+
MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE
|
2467 |
+
BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
|
2468 |
+
A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv
|
2469 |
+
biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC
|
2470 |
+
R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
|
2471 |
+
ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB
|
2472 |
+
dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn
|
2473 |
+
dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ
|
2474 |
+
FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+
|
2475 |
+
5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG
|
2476 |
+
x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX
|
2477 |
+
2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL
|
2478 |
+
OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3
|
2479 |
+
sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C
|
2480 |
+
GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5
|
2481 |
+
WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E
|
2482 |
+
FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
|
2483 |
+
DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt
|
2484 |
+
rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+
|
2485 |
+
nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg
|
2486 |
+
tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW
|
2487 |
+
sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp
|
2488 |
+
pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA
|
2489 |
+
zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq
|
2490 |
+
ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52
|
2491 |
+
7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I
|
2492 |
+
LaZRfyHBNVOFBkpdn627G190
|
2493 |
-----END CERTIFICATE-----
|
2494 |
|
2495 |
USERTrust RSA Certification Authority
|
2540 |
HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
|
2541 |
9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
|
2542 |
-----END CERTIFICATE-----
|
2543 |
+
|
2544 |
GlobalSign ECC Root CA - R4
|
2545 |
===========================
|
2546 |
-----BEGIN CERTIFICATE-----
|
2570 |
yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
|
2571 |
-----END CERTIFICATE-----
|
2572 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2573 |
Staat der Nederlanden Root CA - G3
|
2574 |
==================================
|
2575 |
-----BEGIN CERTIFICATE-----
|
2765 |
-----END CERTIFICATE-----
|
2766 |
|
2767 |
TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5
|
2768 |
+
====================================================
|
2769 |
-----BEGIN CERTIFICATE-----
|
2770 |
MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UEBhMCVFIxDzAN
|
2771 |
BgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
|
2788 |
B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW+qtB4Uu2NQvAmxU=
|
2789 |
-----END CERTIFICATE-----
|
2790 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2791 |
Certinomis - Root CA
|
2792 |
====================
|
2793 |
-----BEGIN CERTIFICATE-----
|
2841 |
Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM=
|
2842 |
-----END CERTIFICATE-----
|
2843 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2844 |
SZAFIR ROOT CA2
|
2845 |
===============
|
2846 |
-----BEGIN CERTIFICATE-----
|
3231 |
7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31I
|
3232 |
iyBMz2TWuJdGsE7RKlY6oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr
|
3233 |
-----END CERTIFICATE-----
|
3234 |
+
|
3235 |
+
TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
|
3236 |
+
=============================================
|
3237 |
+
-----BEGIN CERTIFICATE-----
|
3238 |
+
MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIxGDAWBgNVBAcT
|
3239 |
+
D0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxpbXNlbCB2ZSBUZWtub2xvamlr
|
3240 |
+
IEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0wKwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24g
|
3241 |
+
TWVya2V6aSAtIEthbXUgU00xNjA0BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRp
|
3242 |
+
ZmlrYXNpIC0gU3VydW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYD
|
3243 |
+
VQQGEwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXllIEJpbGlt
|
3244 |
+
c2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsTJEth
|
3245 |
+
bXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11
|
3246 |
+
IFNNIFNTTCBLb2sgU2VydGlmaWthc2kgLSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
|
3247 |
+
MIIBCgKCAQEAr3UwM6q7a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y8
|
3248 |
+
6Ij5iySrLqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INrN3wc
|
3249 |
+
wv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2XYacQuFWQfw4tJzh0
|
3250 |
+
3+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/iSIzL+aFCr2lqBs23tPcLG07xxO9
|
3251 |
+
WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4fAJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQU
|
3252 |
+
ZT/HiobGPN08VFw1+DrtUgxHV8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJ
|
3253 |
+
KoZIhvcNAQELBQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh
|
3254 |
+
AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPfIPP54+M638yc
|
3255 |
+
lNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4lzwDGrpDxpa5RXI4s6ehlj2R
|
3256 |
+
e37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0j
|
3257 |
+
q5Rm+K37DwhuJi1/FwcJsoz7UMCflo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM=
|
3258 |
+
-----END CERTIFICATE-----
|
3259 |
+
|
3260 |
+
GDCA TrustAUTH R5 ROOT
|
3261 |
+
======================
|
3262 |
+
-----BEGIN CERTIFICATE-----
|
3263 |
+
MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCQ04xMjAw
|
3264 |
+
BgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8wHQYDVQQD
|
3265 |
+
DBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVow
|
3266 |
+
YjELMAkGA1UEBhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ
|
3267 |
+
IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0B
|
3268 |
+
AQEFAAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJjDp6L3TQs
|
3269 |
+
AlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBjTnnEt1u9ol2x8kECK62p
|
3270 |
+
OqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+uKU49tm7srsHwJ5uu4/Ts765/94Y9cnrr
|
3271 |
+
pftZTqfrlYwiOXnhLQiPzLyRuEH3FMEjqcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ
|
3272 |
+
9Cy5WmYqsBebnh52nUpmMUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQ
|
3273 |
+
xXABZG12ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloPzgsM
|
3274 |
+
R6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3GkL30SgLdTMEZeS1SZ
|
3275 |
+
D2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeCjGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4
|
3276 |
+
oR24qoAATILnsn8JuLwwoC8N9VKejveSswoAHQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx
|
3277 |
+
9hoh49pwBiFYFIeFd3mqgnkCAwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlR
|
3278 |
+
MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg
|
3279 |
+
p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZmDRd9FBUb1Ov9
|
3280 |
+
H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5COmSdI31R9KrO9b7eGZONn35
|
3281 |
+
6ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ryL3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd
|
3282 |
+
+PwyvzeG5LuOmCd+uh8W4XAR8gPfJWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQ
|
3283 |
+
HtZa37dG/OaG+svgIHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBD
|
3284 |
+
F8Io2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV09tL7ECQ
|
3285 |
+
8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQXR4EzzffHqhmsYzmIGrv
|
3286 |
+
/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrqT8p+ck0LcIymSLumoRT2+1hEmRSuqguT
|
3287 |
+
aaApJUqlyyvdimYHFngVV3Eb7PVHhPOeMTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g==
|
3288 |
+
-----END CERTIFICATE-----
|
3289 |
+
|
3290 |
+
TrustCor RootCert CA-1
|
3291 |
+
======================
|
3292 |
+
-----BEGIN CERTIFICATE-----
|
3293 |
+
MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYDVQQGEwJQQTEP
|
3294 |
+
MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
|
3295 |
+
U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
|
3296 |
+
dHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkx
|
3297 |
+
MjMxMTcyMzE2WjCBpDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFu
|
3298 |
+
YW1hIENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUGA1UECwwe
|
3299 |
+
VHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZUcnVzdENvciBSb290Q2Vy
|
3300 |
+
dCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv463leLCJhJrMxnHQFgKq1mq
|
3301 |
+
jQCj/IDHUHuO1CAmujIS2CNUSSUQIpidRtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4
|
3302 |
+
pQa81QBeCQryJ3pS/C3Vseq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0
|
3303 |
+
JEsq1pme9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CVEY4h
|
3304 |
+
gLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorWhnAbJN7+KIor0Gqw
|
3305 |
+
/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/DeOxCbeKyKsZn3MzUOcwHwYDVR0j
|
3306 |
+
BBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
|
3307 |
+
AYYwDQYJKoZIhvcNAQELBQADggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5
|
3308 |
+
mDo4Nvu7Zp5I/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf
|
3309 |
+
ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZyonnMlo2HD6C
|
3310 |
+
qFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djtsL1Ac59v2Z3kf9YKVmgenFK+P
|
3311 |
+
3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdNzl/HHk484IkzlQsPpTLWPFp5LBk=
|
3312 |
+
-----END CERTIFICATE-----
|
3313 |
+
|
3314 |
+
TrustCor RootCert CA-2
|
3315 |
+
======================
|
3316 |
+
-----BEGIN CERTIFICATE-----
|
3317 |
+
MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlBBMQ8w
|
3318 |
+
DQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQwIgYDVQQKDBtUcnVzdENvciBT
|
3319 |
+
eXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0
|
3320 |
+
eTEfMB0GA1UEAwwWVHJ1c3RDb3IgUm9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEy
|
3321 |
+
MzExNzI2MzlaMIGkMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5h
|
3322 |
+
bWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U
|
3323 |
+
cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0
|
3324 |
+
IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnIG7CKqJiJJWQdsg4foDSq8Gb
|
3325 |
+
ZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9Nk
|
3326 |
+
RvRUqdw6VC0xK5mC8tkq1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1
|
3327 |
+
oYxOdqHp2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nKDOOb
|
3328 |
+
XUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hapeaz6LMvYHL1cEksr1
|
3329 |
+
/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF3wP+TfSvPd9cW436cOGlfifHhi5q
|
3330 |
+
jxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQP
|
3331 |
+
eSghYA2FFn3XVDjxklb9tTNMg9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+Ctg
|
3332 |
+
rKAmrhQhJ8Z3mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh
|
3333 |
+
8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAdBgNVHQ4EFgQU
|
3334 |
+
2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6UnrybPZx9mCAZ5YwwYrIwDwYD
|
3335 |
+
VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/h
|
3336 |
+
Osh80QA9z+LqBrWyOrsGS2h60COXdKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnp
|
3337 |
+
kpfbsEZC89NiqpX+MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv
|
3338 |
+
2wnL/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RXCI/hOWB3
|
3339 |
+
S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYaZH9bDTMJBzN7Bj8RpFxw
|
3340 |
+
PIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dv
|
3341 |
+
DDqPys/cA8GiCcjl/YBeyGBCARsaU1q7N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYU
|
3342 |
+
RpFHmygk71dSTlxCnKr3Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANE
|
3343 |
+
xdqtvArBAs8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp5KeX
|
3344 |
+
RKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu1uwJ
|
3345 |
+
-----END CERTIFICATE-----
|
3346 |
+
|
3347 |
+
TrustCor ECA-1
|
3348 |
+
==============
|
3349 |
+
-----BEGIN CERTIFICATE-----
|
3350 |
+
MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYDVQQGEwJQQTEP
|
3351 |
+
MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
|
3352 |
+
U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
|
3353 |
+
dHkxFzAVBgNVBAMMDlRydXN0Q29yIEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3Mjgw
|
3354 |
+
N1owgZwxCzAJBgNVBAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5
|
3355 |
+
MSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29y
|
3356 |
+
IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3IgRUNBLTEwggEiMA0GCSqG
|
3357 |
+
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb3w9U73NjKYKtR8aja+3+XzP4Q1HpGjOR
|
3358 |
+
MRegdMTUpwHmspI+ap3tDvl0mEDTPwOABoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23
|
3359 |
+
xFUfJ3zSCNV2HykVh0A53ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmc
|
3360 |
+
p0yJF4OuowReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/wZ0+
|
3361 |
+
fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZFZtS6mFjBAgMBAAGj
|
3362 |
+
YzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAfBgNVHSMEGDAWgBREnkj1zG1I1KBL
|
3363 |
+
f/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsF
|
3364 |
+
AAOCAQEABT41XBVwm8nHc2FvcivUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u
|
3365 |
+
/ukZMjgDfxT2AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F
|
3366 |
+
hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50soIipX1TH0Xs
|
3367 |
+
J5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BIWJZpTdwHjFGTot+fDz2LYLSC
|
3368 |
+
jaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1WitJ/X5g==
|
3369 |
+
-----END CERTIFICATE-----
|
3370 |
+
|
3371 |
+
SSL.com Root Certification Authority RSA
|
3372 |
+
========================================
|
3373 |
+
-----BEGIN CERTIFICATE-----
|
3374 |
+
MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxDjAM
|
3375 |
+
BgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24x
|
3376 |
+
MTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYw
|
3377 |
+
MjEyMTczOTM5WhcNNDEwMjEyMTczOTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
|
3378 |
+
EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NM
|
3379 |
+
LmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcNAQEBBQAD
|
3380 |
+
ggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2RxFdHaxh3a3by/ZPkPQ/C
|
3381 |
+
Fp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aXqhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8
|
3382 |
+
P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcCC52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/ge
|
3383 |
+
oeOy3ZExqysdBP+lSgQ36YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkp
|
3384 |
+
k8zruFvh/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrFYD3Z
|
3385 |
+
fBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93EJNyAKoFBbZQ+yODJ
|
3386 |
+
gUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVcUS4cK38acijnALXRdMbX5J+tB5O2
|
3387 |
+
UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi8
|
3388 |
+
1xtZPCvM8hnIk2snYxnP/Okm+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4s
|
3389 |
+
bE6x/c+cCbqiM+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV
|
3390 |
+
HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4GA1UdDwEB/wQE
|
3391 |
+
AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGVcpNxJK1ok1iOMq8bs3AD/CUr
|
3392 |
+
dIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBcHadm47GUBwwyOabqG7B52B2ccETjit3E+ZUf
|
3393 |
+
ijhDPwGFpUenPUayvOUiaPd7nNgsPgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAsl
|
3394 |
+
u1OJD7OAUN5F7kR/q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjq
|
3395 |
+
erQ0cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jra6x+3uxj
|
3396 |
+
MxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90IH37hVZkLId6Tngr75qNJ
|
3397 |
+
vTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/YK9f1JmzJBjSWFupwWRoyeXkLtoh/D1JI
|
3398 |
+
Pb9s2KJELtFOt3JY04kTlf5Eq/jXixtunLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406y
|
3399 |
+
wKBjYZC6VWg3dGq2ktufoYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NI
|
3400 |
+
WuuA8ShYIc2wBlX7Jz9TkHCpBB5XJ7k=
|
3401 |
+
-----END CERTIFICATE-----
|
3402 |
+
|
3403 |
+
SSL.com Root Certification Authority ECC
|
3404 |
+
========================================
|
3405 |
+
-----BEGIN CERTIFICATE-----
|
3406 |
+
MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMCVVMxDjAMBgNV
|
3407 |
+
BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xMTAv
|
3408 |
+
BgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEy
|
3409 |
+
MTgxNDAzWhcNNDEwMjEyMTgxNDAzWjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAO
|
3410 |
+
BgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv
|
3411 |
+
bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuBBAAiA2IA
|
3412 |
+
BEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI7Z4INcgn64mMU1jrYor+
|
3413 |
+
8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPgCemB+vNH06NjMGEwHQYDVR0OBBYEFILR
|
3414 |
+
hXMw5zUE044CkvvlpNHEIejNMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTT
|
3415 |
+
jgKS++Wk0cQh6M0wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCW
|
3416 |
+
e+0F+S8Tkdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+gA0z
|
3417 |
+
5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl
|
3418 |
+
-----END CERTIFICATE-----
|
3419 |
+
|
3420 |
+
SSL.com EV Root Certification Authority RSA R2
|
3421 |
+
==============================================
|
3422 |
+
-----BEGIN CERTIFICATE-----
|
3423 |
+
MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAlVTMQ4w
|
3424 |
+
DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9u
|
3425 |
+
MTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy
|
3426 |
+
MB4XDTE3MDUzMTE4MTQzN1oXDTQyMDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQI
|
3427 |
+
DAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYD
|
3428 |
+
VQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMIICIjAN
|
3429 |
+
BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvqM0fNTPl9fb69LT3w23jh
|
3430 |
+
hqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssufOePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7w
|
3431 |
+
cXHswxzpY6IXFJ3vG2fThVUCAtZJycxa4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTO
|
3432 |
+
Zw+oz12WGQvE43LrrdF9HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+
|
3433 |
+
B6KjBSYRaZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcAb9Zh
|
3434 |
+
CBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQGp8hLH94t2S42Oim
|
3435 |
+
9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQVPWKchjgGAGYS5Fl2WlPAApiiECto
|
3436 |
+
RHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMOpgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+Slm
|
3437 |
+
JuwgUHfbSguPvuUCYHBBXtSuUDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48
|
3438 |
+
+qvWBkofZ6aYMBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV
|
3439 |
+
HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa49QaAJadz20Zp
|
3440 |
+
qJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBWs47LCp1Jjr+kxJG7ZhcFUZh1
|
3441 |
+
++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nx
|
3442 |
+
Y/hoLVUE0fKNsKTPvDxeH3jnpaAgcLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2G
|
3443 |
+
guDKBAdRUNf/ktUM79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDz
|
3444 |
+
OFSz/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXtll9ldDz7
|
3445 |
+
CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEmKf7GUmG6sXP/wwyc5Wxq
|
3446 |
+
lD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKKQbNmC1r7fSOl8hqw/96bg5Qu0T/fkreR
|
3447 |
+
rwU7ZcegbLHNYhLDkBvjJc40vG93drEQw/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1
|
3448 |
+
hlMYegouCRw2n5H9gooiS9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX
|
3449 |
+
9hwJ1C07mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w==
|
3450 |
+
-----END CERTIFICATE-----
|
3451 |
+
|
3452 |
+
SSL.com EV Root Certification Authority ECC
|
3453 |
+
===========================================
|
3454 |
+
-----BEGIN CERTIFICATE-----
|
3455 |
+
MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMCVVMxDjAMBgNV
|
3456 |
+
BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xNDAy
|
3457 |
+
BgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYw
|
3458 |
+
MjEyMTgxNTIzWhcNNDEwMjEyMTgxNTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
|
3459 |
+
EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NM
|
3460 |
+
LmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB
|
3461 |
+
BAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMAVIbc/R/fALhBYlzccBYy
|
3462 |
+
3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1KthkuWnBaBu2+8KGwytAJKaNjMGEwHQYDVR0O
|
3463 |
+
BBYEFFvKXuXe0oGqzagtZFG22XKbl+ZPMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe
|
3464 |
+
5d7SgarNqC1kUbbZcpuX5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJ
|
3465 |
+
N+vp1RPZytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZgh5Mm
|
3466 |
+
m7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg==
|
3467 |
+
-----END CERTIFICATE-----
|
@@ -53,7 +53,7 @@ class UpdraftPlus_Backup_History {
|
|
53 |
|
54 |
foreach ($backupable_entities as $entity) {
|
55 |
|
56 |
-
if (
|
57 |
|
58 |
foreach ($bdata[$entity] as $key => $filename) {
|
59 |
|
53 |
|
54 |
foreach ($backupable_entities as $entity) {
|
55 |
|
56 |
+
if (!empty($bdata[$entity])) {
|
57 |
|
58 |
foreach ($bdata[$entity] as $key => $filename) {
|
59 |
|
@@ -5,11 +5,8 @@ if (!defined('UPDRAFTPLUS_DIR')) die('No access.');
|
|
5 |
/*
|
6 |
- A container for all the remote commands implemented. Commands map exactly onto method names (and hence this class should not implement anything else, beyond the constructor, and private methods)
|
7 |
- Return format is either to return data (boolean, string, array), or an WP_Error object
|
8 |
-
|
9 |
Commands are not allowed to begin with an underscore. So, any private methods can be prefixed with an underscore.
|
10 |
-
|
11 |
TODO: Many of these just verify input, and then call back into a relevant method in UpdraftPlus_Admin. Once all commands have been ported over to go via this class, those methods in UpdraftPlus_Admin can generally be folded into the relevant method in here, and removed from UpdraftPlus_Admin. (Since this class is intended to become the official way of performing actions). As a bonus, we then won't need so much _load_ud(_admin) boilerplate.
|
12 |
-
|
13 |
*/
|
14 |
|
15 |
if (class_exists('UpdraftPlus_Commands')) return;
|
@@ -21,7 +18,7 @@ class UpdraftPlus_Commands {
|
|
21 |
/**
|
22 |
* Constructor
|
23 |
*
|
24 |
-
* @param
|
25 |
*/
|
26 |
public function __construct($uc_helper) {
|
27 |
$this->_uc_helper = $uc_helper;
|
@@ -55,6 +52,13 @@ class UpdraftPlus_Commands {
|
|
55 |
|
56 |
}
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
public function downloader($downloader_params) {
|
59 |
|
60 |
if (false === ($updraftplus_admin = $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
|
@@ -92,7 +96,6 @@ class UpdraftPlus_Commands {
|
|
92 |
$request = array(
|
93 |
'thisjobonly' => $params['job_id']
|
94 |
);
|
95 |
-
|
96 |
$activejobs_list = $updraftplus_admin->get_activejobs_list($request);
|
97 |
|
98 |
return $activejobs_list;
|
@@ -105,7 +108,8 @@ class UpdraftPlus_Commands {
|
|
105 |
|
106 |
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
|
107 |
|
108 |
-
$
|
|
|
109 |
|
110 |
// Control returns when the backup finished; but, the browser connection should have been closed before
|
111 |
die;
|
@@ -365,55 +369,50 @@ class UpdraftPlus_Commands {
|
|
365 |
switch ($fragment) {
|
366 |
|
367 |
case 'last_backup_html':
|
368 |
-
|
369 |
break;
|
370 |
-
|
371 |
case 's3_new_api_user_form':
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
break;
|
377 |
|
378 |
case 'cloudfiles_new_api_user_form':
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
break;
|
390 |
-
|
391 |
case 'backupnow_modal_contents':
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
break;
|
399 |
|
400 |
case 'panel_download_and_restore':
|
401 |
-
$backup_history = UpdraftPlus_Backup_History::get_history();
|
402 |
-
if (empty($backup_history)) {
|
403 |
-
UpdraftPlus_Backup_History::rebuild_backup_history();
|
404 |
$backup_history = UpdraftPlus_Backup_History::get_history();
|
405 |
-
|
406 |
-
|
407 |
-
$output = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $data);
|
408 |
break;
|
409 |
|
410 |
case 'disk_usage':
|
411 |
-
|
412 |
break;
|
413 |
default:
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
break;
|
418 |
}
|
419 |
|
@@ -691,4 +690,55 @@ class UpdraftPlus_Commands {
|
|
691 |
|
692 |
return $response;
|
693 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
}
|
5 |
/*
|
6 |
- A container for all the remote commands implemented. Commands map exactly onto method names (and hence this class should not implement anything else, beyond the constructor, and private methods)
|
7 |
- Return format is either to return data (boolean, string, array), or an WP_Error object
|
|
|
8 |
Commands are not allowed to begin with an underscore. So, any private methods can be prefixed with an underscore.
|
|
|
9 |
TODO: Many of these just verify input, and then call back into a relevant method in UpdraftPlus_Admin. Once all commands have been ported over to go via this class, those methods in UpdraftPlus_Admin can generally be folded into the relevant method in here, and removed from UpdraftPlus_Admin. (Since this class is intended to become the official way of performing actions). As a bonus, we then won't need so much _load_ud(_admin) boilerplate.
|
|
|
10 |
*/
|
11 |
|
12 |
if (class_exists('UpdraftPlus_Commands')) return;
|
18 |
/**
|
19 |
* Constructor
|
20 |
*
|
21 |
+
* @param Class $uc_helper The 'helper' needs to provide the method _updraftplus_background_operation_started
|
22 |
*/
|
23 |
public function __construct($uc_helper) {
|
24 |
$this->_uc_helper = $uc_helper;
|
52 |
|
53 |
}
|
54 |
|
55 |
+
/**
|
56 |
+
* Begin a download process
|
57 |
+
*
|
58 |
+
* @param Array $downloader_params - download parameters (findex, type, timestamp, stage)
|
59 |
+
*
|
60 |
+
* @return Array - as from UpdrafPlus_Admin::do_updraft_download_backup() (with 'request' key added, with value $downloader_params)
|
61 |
+
*/
|
62 |
public function downloader($downloader_params) {
|
63 |
|
64 |
if (false === ($updraftplus_admin = $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
|
96 |
$request = array(
|
97 |
'thisjobonly' => $params['job_id']
|
98 |
);
|
|
|
99 |
$activejobs_list = $updraftplus_admin->get_activejobs_list($request);
|
100 |
|
101 |
return $activejobs_list;
|
108 |
|
109 |
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
|
110 |
|
111 |
+
$background_operation_started_method_name = empty($params['background_operation_started_method_name']) ? '_updraftplus_background_operation_started' : $params['background_operation_started_method_name'];
|
112 |
+
$updraftplus_admin->request_backupnow($params, array($this->_uc_helper, $background_operation_started_method_name));
|
113 |
|
114 |
// Control returns when the backup finished; but, the browser connection should have been closed before
|
115 |
die;
|
369 |
switch ($fragment) {
|
370 |
|
371 |
case 'last_backup_html':
|
372 |
+
$output = $updraftplus_admin->last_backup_html();
|
373 |
break;
|
374 |
+
|
375 |
case 's3_new_api_user_form':
|
376 |
+
ob_start();
|
377 |
+
do_action('updraft_s3_print_new_api_user_form', false);
|
378 |
+
$output = ob_get_contents();
|
379 |
+
ob_end_clean();
|
380 |
break;
|
381 |
|
382 |
case 'cloudfiles_new_api_user_form':
|
383 |
+
global $updraftplus_addon_cloudfilesenhanced;
|
384 |
+
if (!is_a($updraftplus_addon_cloudfilesenhanced, 'UpdraftPlus_Addon_CloudFilesEnhanced')) {
|
385 |
+
$error = true;
|
386 |
+
$output = 'cloudfiles_addon_not_found';
|
387 |
+
} else {
|
388 |
+
$output = array(
|
389 |
+
'accounts' => $updraftplus_addon_cloudfilesenhanced->account_options(),
|
390 |
+
'regions' => $updraftplus_addon_cloudfilesenhanced->region_options(),
|
391 |
+
);
|
392 |
+
}
|
393 |
break;
|
394 |
+
|
395 |
case 'backupnow_modal_contents':
|
396 |
+
$updraft_dir = $updraftplus->backups_dir_location();
|
397 |
+
if (!$updraftplus->really_is_writable($updraft_dir)) {
|
398 |
+
$output = array('error' => true, 'html' => __("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option).", 'updraftplus'));
|
399 |
+
} else {
|
400 |
+
$output = array('html' => $updraftplus_admin->backupnow_modal_contents());
|
401 |
+
}
|
402 |
break;
|
403 |
|
404 |
case 'panel_download_and_restore':
|
|
|
|
|
|
|
405 |
$backup_history = UpdraftPlus_Backup_History::get_history();
|
406 |
+
$output = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $data);
|
|
|
|
|
407 |
break;
|
408 |
|
409 |
case 'disk_usage':
|
410 |
+
$output = $updraftplus_admin->get_disk_space_used($data);
|
411 |
break;
|
412 |
default:
|
413 |
+
// We just return a code - translation is done on the other side
|
414 |
+
$output = 'ud_get_fragment_could_not_return';
|
415 |
+
$error = true;
|
416 |
break;
|
417 |
}
|
418 |
|
690 |
|
691 |
return $response;
|
692 |
}
|
693 |
+
|
694 |
+
/**
|
695 |
+
* This method will check the connection status to UpdraftPlus.com using the submitted credentials and return the result of that check.
|
696 |
+
*
|
697 |
+
* @param array $data - an array that contains the users UpdraftPlus.com credentials
|
698 |
+
*
|
699 |
+
* @return array - an array with the result of the connection status
|
700 |
+
*/
|
701 |
+
public function updraftplus_com_login_submit($data) {
|
702 |
+
if (false === ($updraftplus_admin = $this->_load_ud_admin()) || false === ($updraftplus = $this->_load_ud())) return new WP_Error('no_updraftplus');
|
703 |
+
|
704 |
+
global $updraftplus_addons2;
|
705 |
+
|
706 |
+
$options = $updraftplus_addons2->get_option(UDADDONS2_SLUG.'_options');
|
707 |
+
$new_options = $data['data'];
|
708 |
+
|
709 |
+
// Check if we can make a connection if we can then we don't want to reset the options in the case where the user has removed their password from the form
|
710 |
+
$result = !empty($options['email']) ? $updraftplus_addons2->connection_status() : false;
|
711 |
+
|
712 |
+
if (true !== $result) {
|
713 |
+
// We failed to make a connection so try the new options
|
714 |
+
$updraftplus_addons2->update_option(UDADDONS2_SLUG.'_options', $new_options);
|
715 |
+
$result = $updraftplus_addons2->connection_status();
|
716 |
+
}
|
717 |
+
|
718 |
+
if (true !== $result) {
|
719 |
+
if (is_wp_error($result)) {
|
720 |
+
$connection_errors = array();
|
721 |
+
foreach ($result->get_error_messages() as $key => $msg) {
|
722 |
+
$connection_errors[] = $msg;
|
723 |
+
}
|
724 |
+
} else {
|
725 |
+
if (!empty($options['email']) && !empty($options['password'])) $connection_errors = array(__('An unknown error occurred when trying to connect to UpdraftPlus.Com', 'updraftplus'));
|
726 |
+
}
|
727 |
+
$result = false;
|
728 |
+
}
|
729 |
+
|
730 |
+
if ($result) {
|
731 |
+
return array(
|
732 |
+
'success' => true
|
733 |
+
);
|
734 |
+
} else {
|
735 |
+
// There was an error reset the options so that we don't get unwanted notices on the dashboard.
|
736 |
+
$updraftplus_addons2->update_option(UDADDONS2_SLUG.'_options', array('email' => '', 'password' => ''));
|
737 |
+
|
738 |
+
return array(
|
739 |
+
'error' => true,
|
740 |
+
'message' => $connection_errors
|
741 |
+
);
|
742 |
+
}
|
743 |
+
}
|
744 |
}
|
@@ -860,9 +860,7 @@ class UpdraftPlus_Remote_Communications {
|
|
860 |
|
861 |
/*
|
862 |
In format 1 (legacy/obsolete), the one encrypts (the shared AES key) using one half of the key-pair, and decrypts with the other; whereas the other side of the conversation does the reverse when replying (and uses a different shared AES key). Though this is possible in RSA, this is the wrong thing to do - see https://crypto.stackexchange.com/questions/2123/rsa-encryption-with-private-key-and-decryption-with-a-public-key
|
863 |
-
|
864 |
In format 2, both sides have their own private and public key. The sender encrypts using the other side's public key, and decrypts using its own private key. Messages are signed (the message digest is SHA-256).
|
865 |
-
|
866 |
*/
|
867 |
|
868 |
// Is this for us?
|
860 |
|
861 |
/*
|
862 |
In format 1 (legacy/obsolete), the one encrypts (the shared AES key) using one half of the key-pair, and decrypts with the other; whereas the other side of the conversation does the reverse when replying (and uses a different shared AES key). Though this is possible in RSA, this is the wrong thing to do - see https://crypto.stackexchange.com/questions/2123/rsa-encryption-with-private-key-and-decryption-with-a-public-key
|
|
|
863 |
In format 2, both sides have their own private and public key. The sender encrypts using the other side's public key, and decrypts using its own private key. Messages are signed (the message digest is SHA-256).
|
|
|
864 |
*/
|
865 |
|
866 |
// Is this for us?
|
@@ -57,10 +57,24 @@ function updraft_send_command(action, data, callback, options) {
|
|
57 |
try {
|
58 |
var resp = ud_parse_json(response);
|
59 |
} catch (e) {
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
if ('function' == typeof callback) callback(resp, status, response);
|
66 |
} else {
|
@@ -274,7 +288,19 @@ function updraft_remote_storage_test(method, result_callback, instance_id) {
|
|
274 |
console.log(response.data);
|
275 |
}
|
276 |
}
|
277 |
-
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
}
|
279 |
|
280 |
function backupnow_whichfiles_checked(onlythesefileentities){
|
@@ -379,10 +405,13 @@ function updraft_restore_setoptions(entities) {
|
|
379 |
});
|
380 |
var cryptmatch = entities.match(/dbcrypted=1/);
|
381 |
if (cryptmatch) {
|
|
|
382 |
jQuery('.updraft_restore_crypteddb').show();
|
383 |
} else {
|
|
|
384 |
jQuery('.updraft_restore_crypteddb').hide();
|
385 |
}
|
|
|
386 |
var dmatch = entities.match(/meta_foreign=([12])/);
|
387 |
if (dmatch) {
|
388 |
jQuery('#updraft_restore_meta_foreign').val(dmatch[1]);
|
@@ -417,8 +446,11 @@ function updraft_migrate_dialog_open() {
|
|
417 |
jQuery('#updraft_migrate_modal_alt').hide();
|
418 |
updraft_migrate_modal_default_buttons = {};
|
419 |
updraft_migrate_modal_default_buttons[updraftlion.close] = function() {
|
420 |
-
|
|
|
421 |
jQuery("#updraft-migrate-modal").dialog("option", "buttons", updraft_migrate_modal_default_buttons);
|
|
|
|
|
422 |
jQuery('#updraft-migrate-modal').dialog('open');
|
423 |
jQuery('#updraft_migrate_modal_main').show();
|
424 |
}
|
@@ -506,7 +538,7 @@ function updraft_backupnow_inpage_go(success_callback, onlythisfileentity, extra
|
|
506 |
updraft_inpage_hasbegun = 0;
|
507 |
updraft_backupnow_go(backupnow_nodb, backupnow_nofiles, backupnow_nocloud, onlythisfileentity, extradata, label, '');
|
508 |
}
|
509 |
-
|
510 |
function updraft_activejobs_update(force) {
|
511 |
var timenow = (new Date).getTime();
|
512 |
if (false == force && timenow < updraft_activejobs_nextupdate) { return; }
|
@@ -538,11 +570,10 @@ function updraft_activejobs_update(force) {
|
|
538 |
gdata.thisjobonly = updraft_backupnow_nonce;
|
539 |
}
|
540 |
|
541 |
-
updraft_send_command('activejobs_list', gdata, function(response) {
|
542 |
|
543 |
try {
|
544 |
-
|
545 |
-
|
546 |
// if (repeat) { setTimeout(function(){updraft_activejobs_update(true);}, nexttimer);}
|
547 |
if (resp.hasOwnProperty('l')) {
|
548 |
if (resp.l) {
|
@@ -636,8 +667,8 @@ function updraft_activejobs_update(force) {
|
|
636 |
}
|
637 |
if ('' == lastlog_jobs) {
|
638 |
setTimeout(function() {
|
639 |
-
jQuery('#updraft_backup_started').slideUp();}, 3500);
|
640 |
-
|
641 |
} else {
|
642 |
if (!jQuery('#updraft_activejobsrow').is(':hidden')) {
|
643 |
// Backup has now apparently finished - hide the row. If using this for detecting a finished job, be aware that it may never have shown in the first place - so you'll need more than this.
|
@@ -674,7 +705,21 @@ jQuery('#updraft_backup_started').slideUp();}, 3500);
|
|
674 |
console.log(updraftlion.unexpectedresponse+' '+response);
|
675 |
console.log(err);
|
676 |
}
|
677 |
-
}, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
}
|
679 |
|
680 |
/**
|
@@ -713,11 +758,17 @@ function updraft_popuplog(backup_nonce) {
|
|
713 |
|
714 |
updraft_poplog_lastscroll = -1;
|
715 |
|
716 |
-
}, { type: 'GET', timeout: 60000, error_callback: function(response, status, error_code) {
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
}
|
722 |
|
723 |
function updraft_showlastbackup() {
|
@@ -999,6 +1050,19 @@ function zip_files_jstree(entity, timestamp, type, findex) {
|
|
999 |
} else {
|
1000 |
callback.call(this, response.nodes);
|
1001 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
});
|
1003 |
},
|
1004 |
"error": function(error) {
|
@@ -1054,6 +1118,17 @@ function zip_files_jstree(entity, timestamp, type, findex) {
|
|
1054 |
} else {
|
1055 |
alert(updraftlion.download_timeout);
|
1056 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
});
|
1058 |
});
|
1059 |
}
|
@@ -1075,7 +1150,9 @@ function updraft_downloader(base, backup_timestamp, what, whicharea, set_content
|
|
1075 |
jQuery(whicharea).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+stid+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+' '+what+itext+' ('+prdate+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+stid+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>');
|
1076 |
jQuery(stid_selector).data('downloaderfor', { base: base, nonce: backup_timestamp, what: what, index: set_contents[i] });
|
1077 |
setTimeout(function() {
|
1078 |
-
updraft_activejobs_update(true);
|
|
|
|
|
1079 |
}
|
1080 |
jQuery(stid_selector).data('lasttimebegan', (new Date).getTime());
|
1081 |
|
@@ -1192,11 +1269,11 @@ function updraft_restorer_checkstage2(doalert) {
|
|
1192 |
updraft_send_command('restore_alldownloaded', {
|
1193 |
timestamp: jQuery('#updraft_restore_timestamp').val(),
|
1194 |
restoreopts: jQuery('#updraft_restore_form').serialize()
|
1195 |
-
}, function(data) {
|
1196 |
var info = null;
|
1197 |
jQuery('#updraft_restorer_restore_options').val('');
|
1198 |
try {
|
1199 |
-
var resp = ud_parse_json(data);
|
1200 |
if (null == resp) {
|
1201 |
jQuery('#updraft-restore-modal-stage2a').html(updraftlion.emptyresponse);
|
1202 |
return;
|
@@ -1242,7 +1319,20 @@ function updraft_restorer_checkstage2(doalert) {
|
|
1242 |
console.log(err);
|
1243 |
jQuery('#updraft-restore-modal-stage2a').text(updraftlion.jsonnotunderstood+' '+updraftlion.errordata+": "+data).html();
|
1244 |
}
|
1245 |
-
}, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1246 |
}
|
1247 |
|
1248 |
|
@@ -1466,6 +1556,48 @@ jQuery(document).ready(function($) {
|
|
1466 |
}
|
1467 |
});
|
1468 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1469 |
$('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod a.updraft_add_instance', function(e) {
|
1470 |
e.preventDefault();
|
1471 |
|
@@ -1690,6 +1822,18 @@ jQuery(document).ready(function($) {
|
|
1690 |
} else {
|
1691 |
console.response(resp);
|
1692 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1693 |
});
|
1694 |
} catch (err) {
|
1695 |
jQuery('#updraft_central_key').html();
|
@@ -1749,10 +1893,9 @@ jQuery(document).ready(function($) {
|
|
1749 |
jQuery('#updraftcentral_keys').block({ message: '<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+'</div>'});
|
1750 |
|
1751 |
try {
|
1752 |
-
updraft_send_command('updraftcentral_create_key', data, function(
|
1753 |
jQuery('#updraftcentral_keys').unblock();
|
1754 |
try {
|
1755 |
-
resp = ud_parse_json(response);
|
1756 |
if (resp.hasOwnProperty('error')) {
|
1757 |
alert(resp.error);
|
1758 |
console.log(resp);
|
@@ -1777,7 +1920,19 @@ jQuery(document).ready(function($) {
|
|
1777 |
alert(updraftlion.unexpectedresponse+' '+response);
|
1778 |
console.log(err);
|
1779 |
}
|
1780 |
-
}, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
} catch (err) {
|
1782 |
jQuery('#updraft_central_key').html();
|
1783 |
console.log(err);
|
@@ -1799,6 +1954,18 @@ jQuery(document).ready(function($) {
|
|
1799 |
if (response.hasOwnProperty('keys_table')) {
|
1800 |
jQuery('#updraftcentral_keys_content').html(response.keys_table);
|
1801 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1802 |
});
|
1803 |
});
|
1804 |
|
@@ -1832,7 +1999,7 @@ updraft_activejobs_update(false);}, 1250);
|
|
1832 |
jQuery('#setting-error-settings_updated').slideUp();}, 5000);
|
1833 |
|
1834 |
jQuery('#updraft_restore_db').change(function() {
|
1835 |
-
if (jQuery('#updraft_restore_db').is(':checked')) {
|
1836 |
jQuery('#updraft_restorer_dboptions').slideDown();
|
1837 |
} else {
|
1838 |
jQuery('#updraft_restorer_dboptions').slideUp();
|
@@ -1996,7 +2163,18 @@ jQuery('#setting-error-settings_updated').slideUp();}, 5000);
|
|
1996 |
}
|
1997 |
}
|
1998 |
|
1999 |
-
}, { alert_on_error: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000 |
} catch (err) {
|
2001 |
console.log("UpdraftPlus: error (follows) when looking for items needing downloading");
|
2002 |
console.log(err);
|
@@ -2571,6 +2749,18 @@ jQuery(document).ready(function($) {
|
|
2571 |
}
|
2572 |
}
|
2573 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2574 |
});
|
2575 |
} catch (err) {
|
2576 |
$(settings_css_prefix+'#updraftvault_recountquota').html(updraftlion.updatequotacount);
|
@@ -2588,6 +2778,18 @@ jQuery(document).ready(function($) {
|
|
2588 |
$(settings_css_prefix+'#updraftvault_settings_connected').html(response.html).slideUp();
|
2589 |
$(settings_css_prefix+'#updraftvault_settings_default').slideDown();
|
2590 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2591 |
});
|
2592 |
} catch (err) {
|
2593 |
$(settings_css_prefix+'#updraftvault_disconnect').html(updraftlion.disconnect);
|
@@ -2628,6 +2830,18 @@ jQuery(document).ready(function($) {
|
|
2628 |
console.log(resp);
|
2629 |
alert(updraftlion.unexpectedresponse+' '+response);
|
2630 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2631 |
});
|
2632 |
return false;
|
2633 |
});
|
@@ -2807,9 +3021,9 @@ jQuery(document).ready(function($) {
|
|
2807 |
updraft_send_command('savesettings', {
|
2808 |
settings: form_data,
|
2809 |
updraftplus_version: updraftlion.updraftplus_version
|
2810 |
-
}, function(response) {
|
2811 |
// Add page updates etc based on response
|
2812 |
-
updraft_handle_page_updates(response);
|
2813 |
|
2814 |
$('#updraft-wrap .fade').delay(6000).fadeOut(2000);
|
2815 |
|
@@ -2820,7 +3034,18 @@ jQuery(document).ready(function($) {
|
|
2820 |
});
|
2821 |
|
2822 |
$.unblockUI();
|
2823 |
-
}, { action: 'updraft_savesettings',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2824 |
});
|
2825 |
|
2826 |
$('#updraftplus-settings-export').click(function() {
|
@@ -2887,8 +3112,8 @@ jQuery(document).ready(function($) {
|
|
2887 |
updraft_send_command('importsettings', {
|
2888 |
settings: stringified,
|
2889 |
updraftplus_version: updraftlion.updraftplus_version,
|
2890 |
-
}, function(response) {
|
2891 |
-
var resp = updraft_handle_page_updates(
|
2892 |
if (!resp.hasOwnProperty('saved') || resp.saved) {
|
2893 |
// Prevent the user being told they have unsaved settings
|
2894 |
updraft_settings_form_changed = false;
|
@@ -2900,7 +3125,20 @@ jQuery(document).ready(function($) {
|
|
2900 |
alert(resp.error_message);
|
2901 |
}
|
2902 |
}
|
2903 |
-
}, { action: 'updraft_importsettings', nonce: updraftplus_settings_nonce,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2904 |
} else {
|
2905 |
$.unblockUI();
|
2906 |
}
|
@@ -2944,15 +3182,14 @@ jQuery(document).ready(function($) {
|
|
2944 |
/**
|
2945 |
* Method to parse the response from the backend and update the page with the returned content or display error messages if failed
|
2946 |
*
|
|
|
2947 |
* @param {string} response - the JSON-encoded response containing information to update the settings page with
|
2948 |
*
|
2949 |
* @return {object} - the decoded response (empty if decoding was not successful)
|
2950 |
*/
|
2951 |
-
function updraft_handle_page_updates(response) {
|
2952 |
|
2953 |
try {
|
2954 |
-
var resp = ud_parse_json(response);
|
2955 |
-
|
2956 |
var messages = resp.messages;
|
2957 |
// var debug = resp.changed.updraft_debug_mode;
|
2958 |
|
57 |
try {
|
58 |
var resp = ud_parse_json(response);
|
59 |
} catch (e) {
|
60 |
+
if ('function' == typeof options.error_callback) {
|
61 |
+
return options.error_callback(response, e, 502, resp);
|
62 |
+
} else {
|
63 |
+
console.log(e);
|
64 |
+
console.log(response);
|
65 |
+
if (options.alert_on_error) { alert(updraftlion.unexpectedresponse+' '+response); }
|
66 |
+
return;
|
67 |
+
}
|
68 |
+
}
|
69 |
+
if (resp.hasOwnProperty('fatal_error')) {
|
70 |
+
if ('function' == typeof options.error_callback) {
|
71 |
+
// 500 is internal server error code
|
72 |
+
return options.error_callback(response, status, 500, resp);
|
73 |
+
} else {
|
74 |
+
console.error(resp.fatal_error_message);
|
75 |
+
if (options.alert_on_error) { alert(resp.fatal_error_message); }
|
76 |
+
return false;
|
77 |
+
}
|
78 |
}
|
79 |
if ('function' == typeof callback) callback(resp, status, response);
|
80 |
} else {
|
288 |
console.log(response.data);
|
289 |
}
|
290 |
}
|
291 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
292 |
+
$the_button.html(updraftlion.test_settings.replace('%s', method_label));
|
293 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
294 |
+
console.error(resp.fatal_error_message);
|
295 |
+
alert(resp.fatal_error_message);
|
296 |
+
} else {
|
297 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
298 |
+
console.log(error_message);
|
299 |
+
alert(error_message);
|
300 |
+
console.log(response);
|
301 |
+
}
|
302 |
+
}
|
303 |
+
});
|
304 |
}
|
305 |
|
306 |
function backupnow_whichfiles_checked(onlythesefileentities){
|
405 |
});
|
406 |
var cryptmatch = entities.match(/dbcrypted=1/);
|
407 |
if (cryptmatch) {
|
408 |
+
jQuery('#updraft_restore_db').data('encrypted', 1);
|
409 |
jQuery('.updraft_restore_crypteddb').show();
|
410 |
} else {
|
411 |
+
jQuery('#updraft_restore_db').data('encrypted', 0);
|
412 |
jQuery('.updraft_restore_crypteddb').hide();
|
413 |
}
|
414 |
+
jQuery('#updraft_restore_db').trigger('change');
|
415 |
var dmatch = entities.match(/meta_foreign=([12])/);
|
416 |
if (dmatch) {
|
417 |
jQuery('#updraft_restore_meta_foreign').val(dmatch[1]);
|
446 |
jQuery('#updraft_migrate_modal_alt').hide();
|
447 |
updraft_migrate_modal_default_buttons = {};
|
448 |
updraft_migrate_modal_default_buttons[updraftlion.close] = function() {
|
449 |
+
jQuery(this).dialog("close");
|
450 |
+
};
|
451 |
jQuery("#updraft-migrate-modal").dialog("option", "buttons", updraft_migrate_modal_default_buttons);
|
452 |
+
// Check if the reset function exists and if it does call it before we open the model so that the view is correctly setup
|
453 |
+
if (typeof updraft_migrate_widget_reset === "function") updraft_migrate_widget_reset();
|
454 |
jQuery('#updraft-migrate-modal').dialog('open');
|
455 |
jQuery('#updraft_migrate_modal_main').show();
|
456 |
}
|
538 |
updraft_inpage_hasbegun = 0;
|
539 |
updraft_backupnow_go(backupnow_nodb, backupnow_nofiles, backupnow_nocloud, onlythisfileentity, extradata, label, '');
|
540 |
}
|
541 |
+
var updraftplus_activejobs_list_fatal_error_alert = true;
|
542 |
function updraft_activejobs_update(force) {
|
543 |
var timenow = (new Date).getTime();
|
544 |
if (false == force && timenow < updraft_activejobs_nextupdate) { return; }
|
570 |
gdata.thisjobonly = updraft_backupnow_nonce;
|
571 |
}
|
572 |
|
573 |
+
updraft_send_command('activejobs_list', gdata, function(resp, status, response) {
|
574 |
|
575 |
try {
|
576 |
+
|
|
|
577 |
// if (repeat) { setTimeout(function(){updraft_activejobs_update(true);}, nexttimer);}
|
578 |
if (resp.hasOwnProperty('l')) {
|
579 |
if (resp.l) {
|
667 |
}
|
668 |
if ('' == lastlog_jobs) {
|
669 |
setTimeout(function() {
|
670 |
+
jQuery('#updraft_backup_started').slideUp();}, 3500);
|
671 |
+
}
|
672 |
} else {
|
673 |
if (!jQuery('#updraft_activejobsrow').is(':hidden')) {
|
674 |
// Backup has now apparently finished - hide the row. If using this for detecting a finished job, be aware that it may never have shown in the first place - so you'll need more than this.
|
705 |
console.log(updraftlion.unexpectedresponse+' '+response);
|
706 |
console.log(err);
|
707 |
}
|
708 |
+
}, { type: 'GET', error_callback: function(response, status, error_code, resp) {
|
709 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
710 |
+
console.error(resp.fatal_error_message);
|
711 |
+
if (true === updraftplus_activejobs_list_fatal_error_alert) {
|
712 |
+
updraftplus_activejobs_list_fatal_error_alert = false;
|
713 |
+
alert(this.alert_done + ' ' +resp.fatal_error_message);
|
714 |
+
}
|
715 |
+
} else {
|
716 |
+
var msg = (status == error_code) ? error_code : error_code+" ("+status+")";
|
717 |
+
console.error(msg);
|
718 |
+
console.log(response);
|
719 |
+
}
|
720 |
+
return false;
|
721 |
+
}
|
722 |
+
});
|
723 |
}
|
724 |
|
725 |
/**
|
758 |
|
759 |
updraft_poplog_lastscroll = -1;
|
760 |
|
761 |
+
}, { type: 'GET', timeout: 60000, error_callback: function(response, status, error_code, resp) {
|
762 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
763 |
+
console.error(resp.fatal_error_message);
|
764 |
+
jQuery('#updraft-poplog-content').append(resp.fatal_error_message);
|
765 |
+
} else {
|
766 |
+
var msg = (status == error_code) ? error_code : error_code+" ("+status+")";
|
767 |
+
jQuery('#updraft-poplog-content').append(msg);
|
768 |
+
console.log(response);
|
769 |
+
}
|
770 |
+
}
|
771 |
+
});
|
772 |
}
|
773 |
|
774 |
function updraft_showlastbackup() {
|
1050 |
} else {
|
1051 |
callback.call(this, response.nodes);
|
1052 |
}
|
1053 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1054 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1055 |
+
console.error(resp.fatal_error_message);
|
1056 |
+
jQuery('#updraft_zip_files_jstree').html('<p style="color:red; margin: 5px;">'+resp.fatal_error_message+'</p>');
|
1057 |
+
alert(resp.fatal_error_message);
|
1058 |
+
} else {
|
1059 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1060 |
+
jQuery('#updraft_zip_files_jstree').html('<p style="color:red; margin: 5px;">'+error_message+'</p>');
|
1061 |
+
console.log(error_message);
|
1062 |
+
alert(error_message);
|
1063 |
+
console.log(response);
|
1064 |
+
}
|
1065 |
+
}
|
1066 |
});
|
1067 |
},
|
1068 |
"error": function(error) {
|
1118 |
} else {
|
1119 |
alert(updraftlion.download_timeout);
|
1120 |
}
|
1121 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1122 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1123 |
+
console.error(resp.fatal_error_message);
|
1124 |
+
alert(resp.fatal_error_message);
|
1125 |
+
} else {
|
1126 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1127 |
+
console.log(error_message);
|
1128 |
+
alert(error_message);
|
1129 |
+
console.log(response);
|
1130 |
+
}
|
1131 |
+
}
|
1132 |
});
|
1133 |
});
|
1134 |
}
|
1150 |
jQuery(whicharea).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+stid+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+' '+what+itext+' ('+prdate+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+stid+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>');
|
1151 |
jQuery(stid_selector).data('downloaderfor', { base: base, nonce: backup_timestamp, what: what, index: set_contents[i] });
|
1152 |
setTimeout(function() {
|
1153 |
+
updraft_activejobs_update(true);
|
1154 |
+
},
|
1155 |
+
1500);
|
1156 |
}
|
1157 |
jQuery(stid_selector).data('lasttimebegan', (new Date).getTime());
|
1158 |
|
1269 |
updraft_send_command('restore_alldownloaded', {
|
1270 |
timestamp: jQuery('#updraft_restore_timestamp').val(),
|
1271 |
restoreopts: jQuery('#updraft_restore_form').serialize()
|
1272 |
+
}, function(resp, status, data) {
|
1273 |
var info = null;
|
1274 |
jQuery('#updraft_restorer_restore_options').val('');
|
1275 |
try {
|
1276 |
+
// var resp = ud_parse_json(data);
|
1277 |
if (null == resp) {
|
1278 |
jQuery('#updraft-restore-modal-stage2a').html(updraftlion.emptyresponse);
|
1279 |
return;
|
1319 |
console.log(err);
|
1320 |
jQuery('#updraft-restore-modal-stage2a').text(updraftlion.jsonnotunderstood+' '+updraftlion.errordata+": "+data).html();
|
1321 |
}
|
1322 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1323 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1324 |
+
console.error(resp.fatal_error_message);
|
1325 |
+
jQuery('#updraft-restore-modal-stage2a').html('<p style="color: red;">'+resp.fatal_error_message+'</p>');
|
1326 |
+
alert(resp.fatal_error_message);
|
1327 |
+
} else {
|
1328 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1329 |
+
jQuery('#updraft-restore-modal-stage2a').html('<p style="color: red;">'+error_message+'</p>');
|
1330 |
+
console.log(error_message);
|
1331 |
+
alert(error_message);
|
1332 |
+
console.log(response);
|
1333 |
+
}
|
1334 |
+
}
|
1335 |
+
});
|
1336 |
}
|
1337 |
|
1338 |
|
1556 |
}
|
1557 |
});
|
1558 |
|
1559 |
+
$('#updraft-navtab-addons-content .wrap').on('click', '.updraftplus_com_login #ud_connectsubmit', function (e) {
|
1560 |
+
e.preventDefault();
|
1561 |
+
var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
|
1562 |
+
var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
|
1563 |
+
var options = {
|
1564 |
+
email: email,
|
1565 |
+
password: password
|
1566 |
+
};
|
1567 |
+
updraftplus_com_login_submit(options);
|
1568 |
+
});
|
1569 |
+
|
1570 |
+
$('#updraft-navtab-addons-content .wrap').on('keydown', '.updraftplus_com_login input', function (e) {
|
1571 |
+
if (13 == e.which) {
|
1572 |
+
e.preventDefault();
|
1573 |
+
var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
|
1574 |
+
var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
|
1575 |
+
var options = {
|
1576 |
+
email: email,
|
1577 |
+
password: password
|
1578 |
+
};
|
1579 |
+
updraftplus_com_login_submit(options);
|
1580 |
+
}
|
1581 |
+
});
|
1582 |
+
|
1583 |
+
/**
|
1584 |
+
* This function will send an AJAX request to the backend to check the users credentials, then it will either inform the user of any errors or if there are none it will submit the form.
|
1585 |
+
*
|
1586 |
+
* @param {array} options - an array that includes the users email and password
|
1587 |
+
*/
|
1588 |
+
function updraftplus_com_login_submit(options) {
|
1589 |
+
$('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html('').hide();
|
1590 |
+
updraft_send_command('updraftplus_com_login_submit', {
|
1591 |
+
data: options,
|
1592 |
+
}, function (response) {
|
1593 |
+
if (response.hasOwnProperty('success')) {
|
1594 |
+
$('#updraft-navtab-addons-content .wrap .updraftplus_com_login').submit();
|
1595 |
+
} else if (response.hasOwnProperty('error')) {
|
1596 |
+
$('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(response.message).show();
|
1597 |
+
}
|
1598 |
+
});
|
1599 |
+
}
|
1600 |
+
|
1601 |
$('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod a.updraft_add_instance', function(e) {
|
1602 |
e.preventDefault();
|
1603 |
|
1822 |
} else {
|
1823 |
console.response(resp);
|
1824 |
}
|
1825 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1826 |
+
jQuery('#updraftcentral_view_log_container').unblock();
|
1827 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1828 |
+
console.error(resp.fatal_error_message);
|
1829 |
+
alert(resp.fatal_error_message);
|
1830 |
+
} else {
|
1831 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1832 |
+
console.log(error_message);
|
1833 |
+
alert(error_message);
|
1834 |
+
console.log(response);
|
1835 |
+
}
|
1836 |
+
}
|
1837 |
});
|
1838 |
} catch (err) {
|
1839 |
jQuery('#updraft_central_key').html();
|
1893 |
jQuery('#updraftcentral_keys').block({ message: '<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+'</div>'});
|
1894 |
|
1895 |
try {
|
1896 |
+
updraft_send_command('updraftcentral_create_key', data, function(resp) {
|
1897 |
jQuery('#updraftcentral_keys').unblock();
|
1898 |
try {
|
|
|
1899 |
if (resp.hasOwnProperty('error')) {
|
1900 |
alert(resp.error);
|
1901 |
console.log(resp);
|
1920 |
alert(updraftlion.unexpectedresponse+' '+response);
|
1921 |
console.log(err);
|
1922 |
}
|
1923 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1924 |
+
jQuery('#updraftcentral_keys').unblock();
|
1925 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1926 |
+
console.error(resp.fatal_error_message);
|
1927 |
+
alert(resp.fatal_error_message);
|
1928 |
+
} else {
|
1929 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1930 |
+
console.log(error_message);
|
1931 |
+
alert(error_message);
|
1932 |
+
console.log(response);
|
1933 |
+
}
|
1934 |
+
}
|
1935 |
+
});
|
1936 |
} catch (err) {
|
1937 |
jQuery('#updraft_central_key').html();
|
1938 |
console.log(err);
|
1954 |
if (response.hasOwnProperty('keys_table')) {
|
1955 |
jQuery('#updraftcentral_keys_content').html(response.keys_table);
|
1956 |
}
|
1957 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
1958 |
+
jQuery('#updraftcentral_keys').unblock();
|
1959 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
1960 |
+
console.error(resp.fatal_error_message);
|
1961 |
+
alert(resp.fatal_error_message);
|
1962 |
+
} else {
|
1963 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
1964 |
+
console.log(error_message);
|
1965 |
+
alert(error_message);
|
1966 |
+
console.log(response);
|
1967 |
+
}
|
1968 |
+
}
|
1969 |
});
|
1970 |
});
|
1971 |
|
1999 |
jQuery('#setting-error-settings_updated').slideUp();}, 5000);
|
2000 |
|
2001 |
jQuery('#updraft_restore_db').change(function() {
|
2002 |
+
if (jQuery('#updraft_restore_db').is(':checked') && 1 == jQuery(this).data('encrypted')) {
|
2003 |
jQuery('#updraft_restorer_dboptions').slideDown();
|
2004 |
} else {
|
2005 |
jQuery('#updraft_restorer_dboptions').slideUp();
|
2163 |
}
|
2164 |
}
|
2165 |
|
2166 |
+
}, { alert_on_error: false, error_callback: function(response, status, error_code, resp) {
|
2167 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
2168 |
+
console.error(resp.fatal_error_message);
|
2169 |
+
jQuery('#updraft-restore-modal-stage2a').html('<p style="color:red;">'+resp.fatal_error_message+'</p>');
|
2170 |
+
} else {
|
2171 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
2172 |
+
jQuery('#updraft-restore-modal-stage2a').html('<p style="color:red; margin: 5px;">'+error_message+'</p>');
|
2173 |
+
console.log(error_message);
|
2174 |
+
console.log(response);
|
2175 |
+
}
|
2176 |
+
}
|
2177 |
+
});
|
2178 |
} catch (err) {
|
2179 |
console.log("UpdraftPlus: error (follows) when looking for items needing downloading");
|
2180 |
console.log(err);
|
2749 |
}
|
2750 |
}
|
2751 |
}
|
2752 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
2753 |
+
$(settings_css_prefix+'#updraftvault_recountquota').html(updraftlion.updatequotacount);
|
2754 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
2755 |
+
console.error(resp.fatal_error_message);
|
2756 |
+
alert(resp.fatal_error_message);
|
2757 |
+
} else {
|
2758 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
2759 |
+
console.log(error_message);
|
2760 |
+
alert(error_message);
|
2761 |
+
console.log(response);
|
2762 |
+
}
|
2763 |
+
}
|
2764 |
});
|
2765 |
} catch (err) {
|
2766 |
$(settings_css_prefix+'#updraftvault_recountquota').html(updraftlion.updatequotacount);
|
2778 |
$(settings_css_prefix+'#updraftvault_settings_connected').html(response.html).slideUp();
|
2779 |
$(settings_css_prefix+'#updraftvault_settings_default').slideDown();
|
2780 |
}
|
2781 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
2782 |
+
$(settings_css_prefix+'#updraftvault_disconnect').html(updraftlion.disconnect);
|
2783 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
2784 |
+
console.error(resp.fatal_error_message);
|
2785 |
+
alert(resp.fatal_error_message);
|
2786 |
+
} else {
|
2787 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
2788 |
+
console.log(error_message);
|
2789 |
+
alert(error_message);
|
2790 |
+
console.log(response);
|
2791 |
+
}
|
2792 |
+
}
|
2793 |
});
|
2794 |
} catch (err) {
|
2795 |
$(settings_css_prefix+'#updraftvault_disconnect').html(updraftlion.disconnect);
|
2830 |
console.log(resp);
|
2831 |
alert(updraftlion.unexpectedresponse+' '+response);
|
2832 |
}
|
2833 |
+
}, { error_callback: function(response, status, error_code, resp) {
|
2834 |
+
$(settings_css_prefix+'#updraftvault_connect_go').html(updraftlion.connect);
|
2835 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
2836 |
+
console.error(resp.fatal_error_message);
|
2837 |
+
alert(resp.fatal_error_message);
|
2838 |
+
} else {
|
2839 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
2840 |
+
console.log(error_message);
|
2841 |
+
alert(error_message);
|
2842 |
+
console.log(response);
|
2843 |
+
}
|
2844 |
+
}
|
2845 |
});
|
2846 |
return false;
|
2847 |
});
|
3021 |
updraft_send_command('savesettings', {
|
3022 |
settings: form_data,
|
3023 |
updraftplus_version: updraftlion.updraftplus_version
|
3024 |
+
}, function(resp, status, response) {
|
3025 |
// Add page updates etc based on response
|
3026 |
+
updraft_handle_page_updates(resp, response);
|
3027 |
|
3028 |
$('#updraft-wrap .fade').delay(6000).fadeOut(2000);
|
3029 |
|
3034 |
});
|
3035 |
|
3036 |
$.unblockUI();
|
3037 |
+
}, { action: 'updraft_savesettings', error_callback: function(response, status, error_code, resp) {
|
3038 |
+
$.unblockUI();
|
3039 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
3040 |
+
console.error(resp.fatal_error_message);
|
3041 |
+
alert(resp.fatal_error_message);
|
3042 |
+
} else {
|
3043 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
3044 |
+
console.log(error_message);
|
3045 |
+
alert(error_message);
|
3046 |
+
console.log(response);
|
3047 |
+
}
|
3048 |
+
}, nonce: updraftplus_settings_nonce});
|
3049 |
});
|
3050 |
|
3051 |
$('#updraftplus-settings-export').click(function() {
|
3112 |
updraft_send_command('importsettings', {
|
3113 |
settings: stringified,
|
3114 |
updraftplus_version: updraftlion.updraftplus_version,
|
3115 |
+
}, function(decoded_response, status, response) {
|
3116 |
+
var resp = updraft_handle_page_updates(decoded_response);
|
3117 |
if (!resp.hasOwnProperty('saved') || resp.saved) {
|
3118 |
// Prevent the user being told they have unsaved settings
|
3119 |
updraft_settings_form_changed = false;
|
3125 |
alert(resp.error_message);
|
3126 |
}
|
3127 |
}
|
3128 |
+
}, { action: 'updraft_importsettings', nonce: updraftplus_settings_nonce, error_callback: function(response, status, error_code, resp) {
|
3129 |
+
$.unblockUI();
|
3130 |
+
if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
|
3131 |
+
console.error(resp.fatal_error_message);
|
3132 |
+
alert(resp.fatal_error_message);
|
3133 |
+
} else {
|
3134 |
+
var error_message = "updraft_send_command: error: "+status+" ("+error_code+")";
|
3135 |
+
console.log(error_message);
|
3136 |
+
console.log(response);
|
3137 |
+
alert(error_message);
|
3138 |
+
|
3139 |
+
}
|
3140 |
+
}
|
3141 |
+
});
|
3142 |
} else {
|
3143 |
$.unblockUI();
|
3144 |
}
|
3182 |
/**
|
3183 |
* Method to parse the response from the backend and update the page with the returned content or display error messages if failed
|
3184 |
*
|
3185 |
+
* @param {array} resp - the JSON-decoded response containing information to update the settings page with
|
3186 |
* @param {string} response - the JSON-encoded response containing information to update the settings page with
|
3187 |
*
|
3188 |
* @return {object} - the decoded response (empty if decoding was not successful)
|
3189 |
*/
|
3190 |
+
function updraft_handle_page_updates(resp, response) {
|
3191 |
|
3192 |
try {
|
|
|
|
|
3193 |
var messages = resp.messages;
|
3194 |
// var debug = resp.changed.updraft_debug_mode;
|
3195 |
|
@@ -1,3 +1,3 @@
|
|
1 |
-
function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],i="."+s,p=parseInt(n[d]);p++;var l=0==n[d]?"":" ("+p+")";if(!jQuery(i).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var i=(new Date).getTime(),p=jQuery(d).data("lasttimebegan"),l=i-p;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+r(32),a.instance_enabled=1;var n=e(a);jQuery(n).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function r(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function n(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),
|
2 |
-
jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),o()))}function o(){jQuery("#updraftcentral_wizard_stage1_error").text("");var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function u(e,a,r,n){jQuery("#updraft-delete-waitwarning").slideDown();var o=e,d=a,s=r,i=n,p=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)o=o+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),u(o,d,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<p.length;e++){var a=p[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function d(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function s(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function i(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function p(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function l(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var c=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||c.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[];t(".updraft_webdav_settings").each(function(a,r){var n=t(r).attr("id");if(n&&"updraft_webdav_"==n.substring(0,15)){var o=n.substring(15);id_split=o.split("_"),o=id_split[0];var u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][o]=this.value}});var a="",r="@",n="/",o=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(n=""),""!==e[d].user&&""!==e[d].pass||(o=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+o+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+n+e[d].path,t("#updraft_webdav_url_"+d).val(a)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method");a(r)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method"),n=t(this).data("instance_id");1===t("."+r+"_updraft_remote_storage_border").length&&a(r),t("."+r+"-"+n).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),n=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(n)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("change","input[class='updraft_instance_toggle']",function(){updraft_settings_form_changed=!0,jQuery(this).is(":checked")?jQuery(this).siblings("label").html(updraftlion.instance_enabled):jQuery(this).siblings("label").html(updraftlion.instance_disabled)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){n(!1)}),n(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),o()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var f=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>f&&(f=a)}),f>180&&jQuery(".updraft-bigbutton").width(f),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var _={};_[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:_});var g={};g[updraftlion.deletebutton]=function(){u(0,0,0,0)},g[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:g});var h={};h[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},h[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:h}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var y={};y[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},y[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:y}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&d(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&s()}catch(m){console.log(m)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),i(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),i(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");p(e,a,r)}),"initiate_restore"==l("udaction")){var v=l("entities"),b=l("backup_timestamp"),j=l("showdata");p(v,b,j)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),n=".ud_downloadstatus",o=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e).on("keypress","#updraftvault_settings_connect input",function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),
|
3 |
-
void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}if(jQuery("#updraft-hidethis").remove(),Handlebars.registerHelper("ifeq",function(t,e,a){return"string"!=typeof t&&"undefined"!=typeof t&&null!==t&&(t=t.toString()),"string"!=typeof e&&"undefined"!=typeof e&&null!==e&&(e=e.toString()),t===e?a.fn(this):a.inverse(this)}),t("#remote-storage-holder").length){var r="";for(var n in updraftlion.remote_storage_templates)if("undefined"!=typeof updraftlion.remote_storage_options[n]){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]),u=!0;for(var d in updraftlion.remote_storage_options[n])if("default"!==d){var s=updraftlion.remote_storage_options[n][d];s.first_instance=u,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),u=!1}}else r+=updraftlion.remote_storage_templates[n];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup()})}}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download",updraftlion.export_settings_file_name),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})}),jQuery(document).ready(function(t){jQuery("#updraft-restore-modal").on("change","#updraft_restorer_charset",function(e){if(t("#updraft_restorer_charset").length&&t("#updraft_restorer_collate").length&&t("#collate_change_on_charset_selection_data").length){var a=t("#updraft_restorer_charset").val();t("#updraft_restorer_collate option").show(),t("#updraft_restorer_collate option[data-charset!="+a+"]").hide(),updraft_send_command("collate_change_on_charset_selection",{collate_change_on_charset_selection_data:t("#collate_change_on_charset_selection_data").val(),updraft_restorer_charset:a,updraft_restorer_collate:t("#updraft_restorer_collate").val()},function(e){e.hasOwnProperty("is_action_required")&&1==e.is_action_required&&e.hasOwnProperty("similar_type_collate")&&t("#updraft_restorer_collate").val(e.similar_type_collate)})}})});
|
1 |
+
function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var o in default_options)r.hasOwnProperty(o)||(r[o]=default_options[o]);var n={action:r.action,subaction:t};if(n[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)n[u]=e[u];else n.action_data=e;var d={type:r.type,url:ajaxurl,data:n,success:function(t,e){if(r.json_parse){try{var o=ud_parse_json(t)}catch(n){return"function"==typeof r.error_callback?r.error_callback(t,n,502,o):(console.log(n),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t)))}if(o.hasOwnProperty("fatal_error"))return"function"==typeof r.error_callback?r.error_callback(t,e,500,o):(console.error(o.fatal_error_message),r.alert_on_error&&alert(o.fatal_error_message),!1);"function"==typeof a&&a(o,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var o=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+o).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(o)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,o;a?(r=jQuery("#updraft-"+t+"-test-"+a),o=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),o=".updraftplusmethod."+t);var n=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",n));var u={method:t};jQuery("#updraft-navtab-settings-content "+o+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var o=null;"checkbox"==r?o=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?o=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=o}}),jQuery("#updraft-navtab-settings-content "+o+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+o+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",n)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",n)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))},{error_callback:function(t,e,a,o){if(r.html(updraftlion.test_settings.replace("%s",n)),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var u="updraft_send_command: error: "+e+" ("+a+")";console.log(u),alert(u),console.log(t)}}})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(o){t++;var n=jQuery(this).data("nonce");a&&(a+=","),a+=n;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var o=jQuery(r).val(),n=o+"=([0-9,]+)",u=new RegExp(n),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==o&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+o+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?(jQuery("#updraft_restore_db").data("encrypted",1),jQuery(".updraft_restore_crypteddb").show()):(jQuery("#updraft_restore_db").data("encrypted",0),jQuery(".updraft_restore_crypteddb").hide()),jQuery("#updraft_restore_db").trigger("change");var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var o=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",o)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),"function"==typeof updraft_migrate_widget_reset&&updraft_migrate_widget_reset(),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,o,n,u){r="undefined"==typeof r?0:r,o="undefined"==typeof o?0:o,n="undefined"==typeof n?0:n,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,o,n,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(o){console.log(o)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t,o,n){try{t.hasOwnProperty("l")&&(t.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(t.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var u=-1;if(jQuery("#updraft_activejobs").html(t.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),n=r.data("lastactivity");(u==-1||n<u)&&(u=n);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),n>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=u>-1?u<5?e+1750:e+5e3:lastlog_lastdata==n?e+7500:e+1750),lastlog_lastdata=n,null!=t.j&&""!=t.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=t.j,null!=t.ds&&""!=t.ds&&jQuery(t.ds).each(function(t,e){""!=e.base&&updraft_downloader_status_update(e.base,e.timestamp,e.what,e.findex,e,n)}),null!=t.u&&""!=t.u&&jQuery("#updraft-poplog").dialog("isOpen")){var d=t.u;if(d.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=d.pointer,null!=d.log&&""!=d.log)){var s=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(d.log),updraft_poplog_lastscroll!=s&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(i){console.log(updraftlion.unexpectedresponse+" "+n),console.log(i)}},{type:"GET",error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),!0===updraftplus_activejobs_list_fatal_error_alert&&(updraftplus_activejobs_list_fatal_error_alert=!1,alert(this.alert_done+" "+r.fatal_error_message));else{var o=e==a?a:a+" ("+e+")";console.error(o),console.log(t)}return!1}})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-poplog-content").append(r.fatal_error_message);else{var o=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(o),console.log(t)}}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,o="monthly"==e,n=!1;if(r>10&&(n=!0),o||n){if(o&&n)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),o){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var o={};a<450&&(o[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",o).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(o,n){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:o,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):n.call(this,t.nodes)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+o+"</p>"),console.log(o),alert(o),console.log(t)}}})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var o=!1;jQuery("#zip_files_jstree_search").keyup(function(){o&&clearTimeout(o),o=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var o=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:o,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";console.log(o),alert(o),console.log(t)}}})})}function updraft_downloader(t,e,a,r,o,n,u){"string"!=typeof o&&(o=o.toString());for(var o=o.split(","),d=0;d<o.length;d++){var s=t+e+"_"+a+"_"+o[d],i="."+s,l=parseInt(o[d]);l++;var p=0==o[d]?"":" ("+l+")";if(!jQuery(i).length){var c=n?n:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+p+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:o[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+o[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:o[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),o=t.lastIndexOf("}");if(r>-1&&o>-1){var n=t.slice(r,o+1);try{var u=JSON.parse(n);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t,e,a){var r=null;jQuery("#updraft_restorer_restore_options").val("");try{if(null==t)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var o=t.m;if(""!=t.w&&(o=o+"<p><strong>"+updraftlion.warnings+"</strong><br>"+t.w+"</p>"),""!=t.e?o=o+"<p><strong>"+updraftlion.errors+"</strong><br>"+t.e+"</p>":updraft_restore_stage=3,t.hasOwnProperty("i")){try{if(r=ud_parse_json(t.i),r.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=r.addui;o+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete r.addui,t.i=JSON.stringify(r))}}catch(u){console.log(u),console.log(t)}jQuery("#updraft_restorer_backup_info").val(t.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(o),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(u){console.log(a),console.log(u),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+a).html()}},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+o+"</p>"),console.log(o),alert(o),console.log(t)}}}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,o,n){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=o.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+o.e),console.log(o);else if(null!=o.p){if(jQuery(d+"_st .dlfileprogress").width(o.p+"%"),null!=o.a&&o.a>0){var i=(new Date).getTime(),l=jQuery(d).data("lasttimebegan"),p=i-l;if(o.a>90&&p>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+o.a+", sincelastrestart_ms="+p),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=o.m)if(o.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(o.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(o.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(o.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";o.hasOwnProperty("can_show_contents")&&o.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=o.m?jQuery(d+" .raw").html(o.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+n+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,o,n,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:n,extradata:o};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraftplus_activejobs_list_fatal_error_alert=!0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;
|
2 |
+
"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var o=a.url.match(/timestamp=\d+/),n=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,n=n instanceof Array?n[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",o=o instanceof Array?parseInt(o[0].substr(10)):0,""!=d&&""!=n&&o>0){var s=d+o+"_"+n+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(e){t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html("").hide(),updraft_send_command("updraftplus_com_login_submit",{data:e},function(e){e.hasOwnProperty("success")?t("#updraft-navtab-addons-content .wrap .updraftplus_com_login").submit():e.hasOwnProperty("error")&&t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(e.message).show()})}function r(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+o(32),a.instance_enabled=1;var r=e(a);jQuery(r).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function o(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function n(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),u()))}function u(){jQuery("#updraftcentral_wizard_stage1_error").text("");var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function d(e,a,r,o){jQuery("#updraft-delete-waitwarning").slideDown();var n=e,u=a,s=r,i=o,l=jQuery("#updraft_delete_timestamp").val().split(","),p=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(p,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)n=n+t.backup_local+t.backup_remote,u+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(n+" "+updraftlion.remote_files_deleted),d(n,u,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<l.length;e++){var a=l[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),u+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+u+"\n"+t.remote_message+" "+s)}})}function s(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function i(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function l(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function p(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function c(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var f=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||f.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[];t(".updraft_webdav_settings").each(function(a,r){var o=t(r).attr("id");if(o&&"updraft_webdav_"==o.substring(0,15)){var n=o.substring(15);id_split=n.split("_"),n=id_split[0];var u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][n]=this.value}});var a="",r="@",o="/",n=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(o=""),""!==e[d].user&&""!==e[d].pass||(n=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+n+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+o+e[d].path,t("#updraft_webdav_url_"+d).val(a)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),t("#updraft-navtab-addons-content .wrap").on("click",".updraftplus_com_login #ud_connectsubmit",function(e){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),n={email:r,password:o};a(n)}),t("#updraft-navtab-addons-content .wrap").on("keydown",".updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),n={email:r,password:o};a(n)}}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method");r(a)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method"),o=t(this).data("instance_id");1===t("."+a+"_updraft_remote_storage_border").length&&r(a),t("."+a+"-"+o).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),o=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(o)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("change","input[class='updraft_instance_toggle']",function(){updraft_settings_form_changed=!0,jQuery(this).is(":checked")?jQuery(this).siblings("label").html(updraftlion.instance_enabled):jQuery(this).siblings("label").html(updraftlion.instance_disabled)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){n(!1)}),n(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_view_log_container").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";console.log(o),alert(o),console.log(t)}}})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),u()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),o="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(o=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=o.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=o,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(t.hasOwnProperty("error"))return alert(t.error),void console.log(t);alert(t.r),t.hasOwnProperty("bundle")&&t.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(t.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+t.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+t.bundle+"</textarea></div>")):console.log(t),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(t.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+response),console.log(e)}},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";console.log(o),alert(o),console.log(t)}}})}catch(n){jQuery("#updraft_central_key").html(),console.log(n)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var o="updraft_send_command: error: "+e+" ("+a+")";console.log(o),alert(o),console.log(t)}}}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var _=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>_&&(_=a)}),_>180&&jQuery(".updraft-bigbutton").width(_),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")&&1==jQuery(this).data("encrypted")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var g={};g[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:g});var m={};m[updraftlion.deletebutton]=function(){d(0,0,0,0)},m[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:m});var y={};y[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(o,n){if(jQuery(n).is(":checked")&&!jQuery(n).is(":disabled")){t=1;var u=jQuery(n).data("howmany"),d=jQuery(n).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var o=jQuery(".updraft_restore_date").first().text(),n=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),n=t.downloads,console.log(n)),0==n.length)updraft_restorer_checkstage2(0);else for(var e=0;e<n.length;e++)updraft_downloader("udrestoredlstatus_",u,n[e][0],"#ud_downloadstatus2",n[e][1],o,!1)},{alert_on_error:!1,error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red;">'+r.fatal_error_message+"</p>");else{var o="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red; margin: 5px;">'+o+"</p>"),console.log(o),console.log(t)}}})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},y[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:y}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var h={};h[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var o=backupnow_whichfiles_checked("");return""==o&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,o,"",jQuery("#backupnow_label").val(),r))},h[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:h}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&s(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&i()}catch(b){console.log(b)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),l(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),l(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");p(e,a,r)}),"initiate_restore"==c("udaction")){var v=c("entities"),j=c("backup_timestamp"),w=c("showdata");p(v,j,w)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found");
|
3 |
+
}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),o=".ud_downloadstatus",n=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,o,n,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e).on("keypress","#updraftvault_settings_connect input",function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))},{error_callback:function(a,r,o,n){if(t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var u="updraft_send_command: error: "+r+" ("+o+")";console.log(u),alert(u),console.log(a)}}})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())},{error_callback:function(a,r,o,n){if(t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var u="updraft_send_command: error: "+r+" ("+o+")";console.log(u),alert(u),console.log(a)}}})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,o){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+o))},{error_callback:function(a,r,o,n){if(t(e+"#updraftvault_connect_go").html(updraftlion.connect),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var u="updraft_send_command: error: "+r+" ("+o+")";console.log(u),alert(u),console.log(a)}}}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}if(jQuery("#updraft-hidethis").remove(),Handlebars.registerHelper("ifeq",function(t,e,a){return"string"!=typeof t&&"undefined"!=typeof t&&null!==t&&(t=t.toString()),"string"!=typeof e&&"undefined"!=typeof e&&null!==e&&(e=e.toString()),t===e?a.fn(this):a.inverse(this)}),t("#remote-storage-holder").length){var r="";for(var o in updraftlion.remote_storage_templates)if("undefined"!=typeof updraftlion.remote_storage_options[o]){var n=Handlebars.compile(updraftlion.remote_storage_templates[o]),u=!0;for(var d in updraftlion.remote_storage_options[o])if("default"!==d){var s=updraftlion.remote_storage_options[o][d];s.first_instance=u,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=n(s),u=!1}}else r+=updraftlion.remote_storage_templates[o];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup()})}}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download",updraftlion.export_settings_file_name),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(n){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(n),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e,a,r){var n=o(e);!n.hasOwnProperty("saved")||n.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),n.hasOwnProperty("error_message")&&n.error_message&&alert(n.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,error_callback:function(e,a,r,o){if(t.unblockUI(),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var n="updraft_send_command: error: "+a+" ("+r+")";console.log(n),console.log(e),alert(n)}}})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var o="0";a+="&"+t(r).attr("name")+"="+o})),a}function o(e,a){try{var r=(e.messages,e.backup_dir.writable),o=e.backup_dir.message,n=e.backup_dir.button_title}catch(u){return console.log(u),console.log(a),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(e.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(e.changed);for(prop in e.changed)if("object"==typeof e.changed[prop])for(innerprop in e.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(e.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(e.changed[prop])}return t("#updraft_writable_mess").html(o),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",n),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),e.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(e.updraft_include_more_path),e.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(e.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(e.messages),t("#next-backup-table-inner").html(e.scheduled),e}function n(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),o="#backupnow_files_"+a;t(o).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e,a,r){o(e,r),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){n()}),t.unblockUI()},{action:"updraft_savesettings",error_callback:function(e,a,r,o){if(t.unblockUI(),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var n="updraft_send_command: error: "+a+" ("+r+")";console.log(n),alert(n),console.log(e)}},nonce:updraftplus_settings_nonce})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],o=new FileReader;o.onload=function(){a(this.result)},o.readAsText(r)})}),jQuery(document).ready(function(t){jQuery("#updraft-restore-modal").on("change","#updraft_restorer_charset",function(e){if(t("#updraft_restorer_charset").length&&t("#updraft_restorer_collate").length&&t("#collate_change_on_charset_selection_data").length){var a=t("#updraft_restorer_charset").val();t("#updraft_restorer_collate option").show(),t("#updraft_restorer_collate option[data-charset!="+a+"]").hide(),updraft_send_command("collate_change_on_charset_selection",{collate_change_on_charset_selection_data:t("#collate_change_on_charset_selection_data").val(),updraft_restorer_charset:a,updraft_restorer_collate:t("#updraft_restorer_collate").val()},function(e){e.hasOwnProperty("is_action_required")&&1==e.is_action_required&&e.hasOwnProperty("similar_type_collate")&&t("#updraft_restorer_collate").val(e.similar_type_collate)})}})});
|
@@ -248,7 +248,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
|
|
248 |
),
|
249 |
'spring' => array(
|
250 |
'prefix' => '',
|
251 |
-
'title' => __('Spring sale - 20% off UpdraftPlus Premium until April
|
252 |
'text' => __('To benefit, use this discount code:', 'updraftplus').' ',
|
253 |
'image' => 'notices/spring.png',
|
254 |
'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
|
248 |
),
|
249 |
'spring' => array(
|
250 |
'prefix' => '',
|
251 |
+
'title' => __('Spring sale - 20% off UpdraftPlus Premium until April 30th', 'updraftplus'),
|
252 |
'text' => __('To benefit, use this discount code:', 'updraftplus').' ',
|
253 |
'image' => 'notices/spring.png',
|
254 |
'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
|
@@ -11,6 +11,82 @@ msgstr ""
|
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
msgid "Simple and secure login with a wave of your phone."
|
16 |
msgstr ""
|
@@ -35,7 +111,7 @@ msgstr ""
|
|
35 |
msgid "Thank you for installing UpdraftPlus!"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: src/addons/migrator.php:
|
39 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
msgstr ""
|
41 |
|
@@ -63,11 +139,11 @@ msgstr ""
|
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: src/admin.php:
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: src/admin.php:
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
@@ -75,15 +151,15 @@ msgstr ""
|
|
75 |
msgid "(Nothing has been logged yet)"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: src/addons/migrator.php:
|
79 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: src/addons/migrator.php:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: src/addons/migrator.php:
|
87 |
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."
|
88 |
msgstr ""
|
89 |
|
@@ -95,11 +171,11 @@ msgstr ""
|
|
95 |
msgid "Delete these settings"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
99 |
msgid "Currently disabled"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
103 |
msgid "Currently enabled"
|
104 |
msgstr ""
|
105 |
|
@@ -115,11 +191,11 @@ msgstr ""
|
|
115 |
msgid "get it here"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: src/methods/stream-base.php:
|
119 |
msgid "Download chunk size successfully changed to %d"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: src/methods/stream-base.php:
|
123 |
msgid "Download chunk size failed to change to %d"
|
124 |
msgstr ""
|
125 |
|
@@ -135,7 +211,7 @@ msgstr ""
|
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/backblaze.php:
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
@@ -145,25 +221,25 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
|
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: src/class-updraftplus.php:
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: src/class-updraftplus.php:
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/class-updraftplus.php:
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
160 |
msgstr[1] ""
|
161 |
|
162 |
-
#: src/addons/migrator.php:
|
163 |
msgid "Database restoration options:"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: src/addons/migrator.php:
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
@@ -191,27 +267,27 @@ msgstr ""
|
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/central/bootstrap.php:
|
195 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/central/bootstrap.php:
|
199 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: src/central/bootstrap.php:
|
203 |
msgid "A website where you have installed %s"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: src/central/bootstrap.php:
|
207 |
msgid "Self-hosted dashboard"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: src/central/bootstrap.php:
|
211 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: src/addons/migrator.php:
|
215 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
216 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
217 |
msgstr[0] ""
|
@@ -221,149 +297,149 @@ msgstr[1] ""
|
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: src/class-updraftplus.php:
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: src/class-updraftplus.php:
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/class-updraftplus.php:
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
-
#: src/central/bootstrap.php:
|
239 |
msgid "Create another key"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/central/bootstrap.php:
|
243 |
msgid "UpdraftCentral dashboard connection details"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/central/bootstrap.php:
|
247 |
msgid "Next"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/central/bootstrap.php:
|
251 |
msgid "an account"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/central/bootstrap.php:
|
255 |
msgid "i.e. if you have %s there"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/central/bootstrap.php:
|
259 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/central/bootstrap.php:
|
263 |
msgid "Manage existing keys (%d)..."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/central/bootstrap.php:
|
267 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/central/bootstrap.php:
|
271 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/central/bootstrap.php:
|
275 |
msgid "Detailed instructions for this can be found at %s"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/central/bootstrap.php:
|
279 |
msgid "You now need to copy the key below and enter it at your %s."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/admin.php:
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/addons/backblaze.php:
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/addons/backblaze.php:
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/addons/backblaze.php:
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/addons/backblaze.php:
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: src/addons/backblaze.php:
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: src/addons/backblaze.php:
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: src/addons/backblaze.php:
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/addons/backblaze.php:
|
315 |
msgid "Account Key"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: src/addons/backblaze.php:
|
319 |
msgid "Account ID"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: src/class-updraftplus.php:
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: src/class-updraftplus.php:
|
331 |
msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: src/class-updraftplus.php:
|
335 |
msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: src/class-updraftplus.php:
|
339 |
msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: src/methods/googledrive.php:
|
343 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
344 |
msgstr ""
|
345 |
|
346 |
#: src/methods/backup-module.php:595
|
347 |
-
msgid "Follow this link to remove
|
348 |
msgstr ""
|
349 |
|
350 |
#: src/addons/sftp.php:348
|
351 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/admin.php:
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/admin.php:
|
359 |
-
#: src/class-updraftplus.php:
|
360 |
-
#: src/class-updraftplus.php:
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: src/admin.php:
|
365 |
-
#: src/class-updraftplus.php:
|
366 |
-
#: src/class-updraftplus.php:
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
@@ -419,11 +495,11 @@ msgstr ""
|
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: src/admin.php:
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: src/admin.php:
|
427 |
msgid "Did not know how to delete from this cloud service."
|
428 |
msgstr ""
|
429 |
|
@@ -439,68 +515,68 @@ msgstr ""
|
|
439 |
msgid "Stored at: %s"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: src/methods/cloudfiles.php:
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: src/admin.php:
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: src/admin.php:
|
451 |
msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
|
452 |
msgstr ""
|
453 |
|
454 |
#: src/methods/updraftvault.php:71,
|
455 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: src/includes/class-wpadmin-commands.php:
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/includes/class-wpadmin-commands.php:
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/admin.php:
|
468 |
msgid "Press here to download or browse"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: src/admin.php:
|
472 |
msgid "Error: invalid path"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: src/admin.php:
|
476 |
msgid "An error occurred when fetching storage module options: "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: src/admin.php:
|
480 |
msgid "Loading log file"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: src/admin.php:
|
484 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: src/admin.php:
|
488 |
msgid "Search"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: src/admin.php:
|
492 |
msgid "Select a file to view information about it"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: src/admin.php:
|
496 |
msgid "Browsing zip file"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: src/admin.php:
|
500 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: src/admin.php:
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
@@ -508,120 +584,120 @@ msgstr ""
|
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: src/class-updraftplus.php:
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: src/admin.php:
|
516 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: src/admin.php:
|
520 |
msgid "All WordPress tables will be backed up."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: src/admin.php:
|
524 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: src/admin.php:
|
528 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: src/admin.php:
|
532 |
msgid "The available memory on the server."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: src/admin.php:
|
536 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: src/admin.php:
|
540 |
msgid "The file failed to upload. Please check the following:"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: src/admin.php:
|
544 |
msgid "HTTP code:"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: src/admin.php:
|
548 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: src/addons/moredatabase.php:
|
552 |
msgid "tables"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: src/addons/moredatabase.php:
|
556 |
msgid "WordPress database"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: src/addons/moredatabase.php:
|
560 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
564 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
568 |
msgid "UpdraftCentral Cloud or Premium"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
572 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
573 |
msgid "Find out more"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
577 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
578 |
msgstr ""
|
579 |
|
580 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
581 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
582 |
msgid "UpdraftPlus Gold"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
586 |
msgid "UpdraftPlus Free"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
590 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
594 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
598 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
602 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
603 |
msgid "Importer"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
607 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
611 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
612 |
msgid "No ads"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
616 |
msgid "Sophisticated reporting and emailing capabilities."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
620 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
624 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
625 |
msgid "More database options"
|
626 |
msgstr ""
|
627 |
|
@@ -689,13 +765,13 @@ msgstr ""
|
|
689 |
|
690 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
691 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
692 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
693 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
694 |
msgid "Upgrade now"
|
695 |
msgstr ""
|
696 |
|
697 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
698 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
699 |
msgid "Installed"
|
700 |
msgstr ""
|
701 |
|
@@ -728,31 +804,31 @@ msgstr ""
|
|
728 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/addons/morefiles.php:
|
732 |
msgid "Please choose a file or directory"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: src/addons/morefiles.php:
|
736 |
msgid "Confirm"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: src/addons/morefiles.php:
|
740 |
msgid "Go up a directory"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: src/addons/morefiles.php:
|
744 |
msgid "Add directory..."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: src/addons/morefiles.php:
|
748 |
msgid "Edit"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: src/addons/morefiles.php:
|
752 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: src/addons/s3-enhanced.php:
|
756 |
msgid "Europe (Frankfurt)"
|
757 |
msgstr ""
|
758 |
|
@@ -765,7 +841,7 @@ msgid "Europe (Ireland)"
|
|
765 |
msgstr ""
|
766 |
|
767 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
768 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
771 |
|
@@ -817,7 +893,7 @@ msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
|
|
817 |
msgstr ""
|
818 |
|
819 |
#: src/includes/updraftplus-notices.php:251
|
820 |
-
msgid "Spring sale - 20% off UpdraftPlus Premium until April
|
821 |
msgstr ""
|
822 |
|
823 |
#: src/includes/updraftplus-notices.php:238
|
@@ -862,7 +938,7 @@ msgid "Do you use UpdraftPlus on multiple sites?"
|
|
862 |
msgstr ""
|
863 |
|
864 |
#: src/includes/updraftplus-notices.php:92,
|
865 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
866 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
867 |
msgstr ""
|
868 |
|
@@ -907,7 +983,7 @@ msgid "The ultimately secure and convenient place to store your backups."
|
|
907 |
msgstr ""
|
908 |
|
909 |
#: src/includes/updraftplus-notices.php:41,
|
910 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
911 |
msgid "UpdraftVault storage"
|
912 |
msgstr ""
|
913 |
|
@@ -937,8 +1013,8 @@ msgid "Site size"
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
940 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
941 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
942 |
msgid "Lock settings"
|
943 |
msgstr ""
|
944 |
|
@@ -984,19 +1060,19 @@ msgstr ""
|
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: src/methods/googledrive.php:
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: src/methods/dropbox.php:
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: src/methods/dropbox.php:
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: src/central/bootstrap.php:
|
1000 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1001 |
msgstr ""
|
1002 |
|
@@ -1008,11 +1084,11 @@ msgstr ""
|
|
1008 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: src/admin.php:
|
1012 |
msgid "Remote files deleted:"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: src/admin.php:
|
1016 |
msgid "Local files deleted:"
|
1017 |
msgstr ""
|
1018 |
|
@@ -1020,35 +1096,35 @@ msgstr ""
|
|
1020 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: src/admin.php:
|
1024 |
msgid "remote files deleted"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: src/admin.php:
|
1028 |
msgid "Complete"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: src/admin.php:
|
1032 |
msgid "Do you want to carry out the import?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: src/admin.php:
|
1036 |
msgid "Which was exported on:"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: src/admin.php:
|
1040 |
msgid "This will import data from:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: src/admin.php:
|
1044 |
msgid "Importing..."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/admin.php:
|
1048 |
msgid "You have not yet selected a file to import."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1053 |
msgstr ""
|
1054 |
|
@@ -1081,7 +1157,7 @@ msgstr ""
|
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: src/includes/class-commands.php:
|
1085 |
msgid "%s add-on not found"
|
1086 |
msgstr ""
|
1087 |
|
@@ -1093,15 +1169,15 @@ msgstr ""
|
|
1093 |
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"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/admin.php:
|
1097 |
msgid "To fix this problem go here."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/admin.php:
|
1101 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/admin.php:
|
1105 |
msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
|
1106 |
msgstr ""
|
1107 |
|
@@ -1133,11 +1209,11 @@ msgstr ""
|
|
1133 |
msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: src/methods/s3.php:
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: src/methods/s3.php:
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
@@ -1145,7 +1221,7 @@ msgstr ""
|
|
1145 |
msgid "Backup using %s?"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: src/addons/s3-enhanced.php:
|
1149 |
msgid "Asia Pacific (Mumbai)"
|
1150 |
msgstr ""
|
1151 |
|
@@ -1157,19 +1233,19 @@ msgstr ""
|
|
1157 |
msgid "FAQs"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: src/central/bootstrap.php:
|
1161 |
msgid "More information..."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: src/central/bootstrap.php:
|
1165 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: src/central/bootstrap.php:
|
1169 |
msgid "Key size: %d bits"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: src/central/bootstrap.php:
|
1173 |
msgid "Public key was sent to:"
|
1174 |
msgstr ""
|
1175 |
|
@@ -1181,49 +1257,49 @@ msgstr ""
|
|
1181 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: src/addons/migrator.php:
|
1185 |
msgid "Create key"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: src/addons/migrator.php:
|
1189 |
msgid "slower, strongest"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: src/addons/migrator.php:
|
1193 |
msgid "recommended"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: src/addons/migrator.php:
|
1197 |
msgid "%s bytes"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: src/addons/migrator.php:
|
1201 |
msgid "faster (possibility for slow PHP installs)"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: src/addons/migrator.php:
|
1205 |
msgid "easy to break, fastest"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: src/addons/migrator.php:
|
1209 |
-
#: src/addons/migrator.php:
|
1210 |
-
#: src/central/bootstrap.php:
|
1211 |
msgid "%s bits"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: src/addons/migrator.php:
|
1215 |
msgid "Encryption key size:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: src/addons/migrator.php:
|
1219 |
msgid "Enter your chosen name"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: src/addons/migrator.php:
|
1223 |
-
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: src/methods/googledrive.php:
|
1227 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1228 |
msgstr ""
|
1229 |
|
@@ -1235,7 +1311,8 @@ msgstr ""
|
|
1235 |
msgid "login"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: src/
|
|
|
1239 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1240 |
msgstr ""
|
1241 |
|
@@ -1243,7 +1320,7 @@ msgstr ""
|
|
1243 |
msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: src/class-updraftplus.php:
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1255,7 +1332,7 @@ msgstr ""
|
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: src/class-updraftplus.php:
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
@@ -1263,13 +1340,13 @@ msgstr ""
|
|
1263 |
msgid "(tap on an icon to select or unselect)"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: src/methods/updraftvault.php:
|
1267 |
-
#: src/methods/updraftvault.php:
|
1268 |
msgid "%s per year"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: src/methods/updraftvault.php:
|
1272 |
-
#: src/methods/updraftvault.php:
|
1273 |
msgid "or (annual discount)"
|
1274 |
msgstr ""
|
1275 |
|
@@ -1277,51 +1354,51 @@ msgstr ""
|
|
1277 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: src/class-updraftplus.php:
|
1281 |
msgid "The given file was not found, or could not be read."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: src/central/bootstrap.php:
|
1285 |
msgid "UpdraftCentral (Remote Control)"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: src/central/bootstrap.php:
|
1289 |
msgid "View recent UpdraftCentral log events"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: src/central/bootstrap.php:
|
1293 |
msgid "Enter any description"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: src/central/bootstrap.php:
|
1297 |
msgid "Description"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: src/central/bootstrap.php:
|
1301 |
msgid "Delete..."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: src/central/bootstrap.php:
|
1305 |
msgid "Created:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: src/central/bootstrap.php:
|
1309 |
msgid "Access this site as user:"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: src/central/bootstrap.php:
|
1313 |
msgid "Details"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: src/central/bootstrap.php:
|
1317 |
msgid "Key description"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: src/central/bootstrap.php:
|
1321 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: src/central/bootstrap.php:
|
1325 |
msgid "An invalid URL was entered"
|
1326 |
msgstr ""
|
1327 |
|
@@ -1361,23 +1438,23 @@ msgstr ""
|
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: src/admin.php:
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: src/admin.php:
|
1373 |
msgid "Total backup size:"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: src/admin.php:
|
1377 |
msgid "stop"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: src/admin.php:
|
1381 |
msgid "The backup has finished running"
|
1382 |
msgstr ""
|
1383 |
|
@@ -1403,31 +1480,31 @@ msgstr ""
|
|
1403 |
msgid "calculate"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: src/admin.php:
|
1407 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: src/admin.php:
|
1411 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: src/admin.php:
|
1415 |
msgid "Please enter a valid URL"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/admin.php:
|
1419 |
msgid "Saving..."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: src/admin.php:
|
1423 |
msgid "Error: the server sent us a response which we did not understand."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "Fetching..."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/addons/s3-enhanced.php:
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
@@ -1439,77 +1516,77 @@ msgstr ""
|
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/class-updraftplus.php:
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/class-updraftplus.php:
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/class-updraftplus.php:
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: src/admin.php:
|
1455 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1456 |
msgid "Dismiss"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: src/admin.php:
|
1460 |
msgid "Please fill in the required information."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: src/addons/multisite.php:
|
1464 |
msgid "Read more..."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: src/addons/multisite.php:
|
1468 |
msgid "may include some site-wide data"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: src/addons/multisite.php:
|
1472 |
msgid "All sites"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: src/addons/multisite.php:
|
1476 |
msgid "Which site to restore"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: src/addons/migrator.php:
|
1480 |
msgid "Error when creating new site at your chosen address:"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: src/addons/migrator.php:
|
1484 |
msgid "Required information for restoring this backup was not given (%s)"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: src/addons/migrator.php:
|
1488 |
msgid "Attribute imported content to user"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: src/addons/migrator.php:
|
1492 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: src/addons/migrator.php:
|
1496 |
msgid "This feature is not compatible with %s"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: src/addons/migrator.php:
|
1500 |
msgid "Importing a single site into a multisite install"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: src/addons/migrator.php:
|
1504 |
msgid "other content from wp-content"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: src/addons/migrator.php:
|
1508 |
msgid "WordPress core"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/addons/migrator.php:
|
1512 |
-
#: src/addons/migrator.php:
|
1513 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1514 |
msgstr ""
|
1515 |
|
@@ -1517,11 +1594,11 @@ msgstr ""
|
|
1517 |
msgid "Call WordPress action:"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: src/admin.php:
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: src/admin.php:
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
@@ -1553,51 +1630,51 @@ msgstr ""
|
|
1553 |
msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/admin.php:
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: src/admin.php:
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: src/admin.php:
|
1569 |
msgid "settings"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: src/admin.php:
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: src/admin.php:
|
1577 |
msgid "Include any files in the backup"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: src/admin.php:
|
1581 |
msgid "Include the database in the backup"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: src/admin.php:
|
1585 |
msgid "Continue restoration"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: src/admin.php:
|
1589 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: src/admin.php:
|
1593 |
msgid "Unfinished restoration"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: src/admin.php:
|
1597 |
msgid "%s minutes, %s seconds"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: src/admin.php:
|
1601 |
msgid "Backup Contents And Schedule"
|
1602 |
msgstr ""
|
1603 |
|
@@ -1605,16 +1682,16 @@ msgstr ""
|
|
1605 |
msgid "Premium / Extensions"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: src/admin.php:
|
1609 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: src/addons/morefiles.php:77, src/admin.php:
|
1613 |
msgctxt "(verb)"
|
1614 |
msgid "Download"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/admin.php:
|
1618 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1619 |
msgstr ""
|
1620 |
|
@@ -1745,7 +1822,7 @@ msgstr ""
|
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: src/class-updraftplus.php:
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
@@ -1874,35 +1951,35 @@ msgstr ""
|
|
1874 |
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)."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: src/admin.php:
|
1878 |
msgid "Backup sets removed:"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: src/admin.php:
|
1882 |
msgid "Processing..."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: src/admin.php:
|
1886 |
msgid "For backups older than"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: src/admin.php:
|
1890 |
msgid "week(s)"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: src/admin.php:
|
1894 |
msgid "hour(s)"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: src/admin.php:
|
1898 |
msgid "day(s)"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/admin.php:
|
1902 |
msgid "in the month"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/admin.php:
|
1906 |
msgid "day"
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,7 +1987,7 @@ msgstr ""
|
|
1910 |
msgid "(as many as you like)"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/addons/fixtime.php:
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
@@ -1922,31 +1999,31 @@ msgstr ""
|
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: src/methods/updraftvault.php:
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: src/class-updraftplus.php:
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: src/class-updraftplus.php:
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: src/admin.php:
|
1938 |
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."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: src/methods/updraftvault.php:
|
1942 |
msgid "Don't know your email address, or forgotten your password?"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: src/methods/updraftvault.php:
|
1946 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: src/methods/updraftvault.php:
|
1950 |
msgid "Read the FAQs here."
|
1951 |
msgstr ""
|
1952 |
|
@@ -1958,99 +2035,99 @@ msgstr ""
|
|
1958 |
msgid "Server-side encryption"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: src/methods/updraftvault.php:
|
1962 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: src/admin.php:
|
1966 |
msgid "Go to the remote storage settings in order to connect."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: src/admin.php:
|
1970 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: src/methods/updraftvault.php:
|
1974 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: src/admin.php:
|
1978 |
msgid "Update quota count"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Counting..."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "Disconnecting..."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: src/admin.php:
|
1990 |
msgid "Connecting..."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: src/methods/updraftvault.php:
|
1994 |
msgid "Refresh current status"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: src/methods/updraftvault.php:
|
1998 |
-
#: src/methods/updraftvault.php:
|
1999 |
msgid "Get more quota"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: src/methods/updraftvault.php:
|
2003 |
-
#: src/methods/updraftvault.php:
|
2004 |
msgid "Current use:"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: src/methods/updraftvault.php:
|
2008 |
msgid "You can get more quota here"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: src/methods/updraftvault.php:
|
2012 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: src/admin.php:
|
2016 |
-
#: src/methods/updraftvault.php:
|
2017 |
msgid "Disconnect"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: src/methods/updraftvault.php:
|
2021 |
msgid "Quota:"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: src/methods/updraftvault.php:
|
2025 |
msgid "Vault owner"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: src/methods/updraftvault.php:
|
2029 |
msgid "Well done - there's nothing more needed to set up."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: src/methods/updraftvault.php:
|
2033 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: src/methods/updraftvault.php:
|
2037 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: src/methods/updraftvault.php:
|
2041 |
msgid "Go here for help"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: src/methods/updraftvault.php:
|
2045 |
msgid "E-mail"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: src/
|
2049 |
-
#: src/methods/updraftvault.php:
|
2050 |
msgid "Back..."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: src/methods/updraftvault.php:
|
2054 |
msgid "Subscriptions can be cancelled at any time."
|
2055 |
msgstr ""
|
2056 |
|
@@ -2058,37 +2135,37 @@ msgstr ""
|
|
2058 |
msgid "Buy it now"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: src/methods/updraftvault.php:
|
2062 |
-
#: src/methods/updraftvault.php:
|
2063 |
msgid "%s per quarter"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: src/central/bootstrap.php:
|
2067 |
-
#: src/methods/updraftvault.php:
|
2068 |
msgid "Read more about it here."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: src/methods/updraftvault.php:
|
2072 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: src/methods/updraftvault.php:
|
2076 |
msgid "Already purchased space?"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: src/methods/updraftvault.php:
|
2080 |
msgid "Show the options"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: src/methods/updraftvault.php:
|
2084 |
msgid "First time user?"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: src/methods/updraftvault.php:
|
2088 |
msgid "Press a button to get started."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: src/methods/updraftvault.php:
|
2092 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2093 |
msgstr ""
|
2094 |
|
@@ -2108,96 +2185,84 @@ msgstr ""
|
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: src/addons/azure.php:443, src/addons/backblaze.php:
|
2112 |
-
#: src/addons/googlecloud.php:843, src/methods/s3.php:
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: src/backup.php:
|
2117 |
msgid "The zip engine returned the message: %s."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: src/addons/s3-enhanced.php:
|
2121 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: src/addons/s3-enhanced.php:
|
2125 |
msgid "Allow deletion"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: src/addons/s3-enhanced.php:
|
2129 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/s3-enhanced.php:
|
2133 |
msgid "Allow download"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: src/addons/migrator.php:
|
2137 |
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."
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: src/addons/migrator.php:
|
2141 |
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."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: src/addons/migrator.php:
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: src/addons/migrator.php:
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: src/
|
2153 |
-
msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
|
2154 |
-
msgstr ""
|
2155 |
-
|
2156 |
-
#: src/addons/migrator.php:2366
|
2157 |
-
msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
|
2158 |
-
msgstr ""
|
2159 |
-
|
2160 |
-
#: src/addons/migrator.php:2366
|
2161 |
-
msgid "Keys for this site are created in the section below the one you just pressed in."
|
2162 |
-
msgstr ""
|
2163 |
-
|
2164 |
-
#: src/addons/migrator.php:2027, src/central/bootstrap.php:389
|
2165 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: src/addons/migrator.php:
|
2169 |
msgid "Key created successfully."
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: src/addons/migrator.php:
|
2173 |
msgid "A key with this name already exists; you must use a unique name."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: src/addons/migrator.php:
|
2177 |
msgid "Also send this backup to the active remote storage locations"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: src/addons/migrator.php:
|
2181 |
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."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: src/addons/migrator.php:
|
2185 |
msgid "site not found"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: src/addons/migrator.php:
|
2189 |
msgid "Backup data will be sent to:"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: src/addons/migrator.php:
|
2193 |
msgid "Restore an existing backup set onto this site"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: src/addons/migrator.php:
|
2197 |
msgid "This site has no backups to restore from yet."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: src/addons/reporting.php:
|
2201 |
msgid "Backup made by %s"
|
2202 |
msgstr ""
|
2203 |
|
@@ -2205,14 +2270,16 @@ msgstr ""
|
|
2205 |
msgid "This storage method does not allow downloading"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/admin.php:
|
2209 |
msgid "(backup set imported from remote location)"
|
2210 |
msgstr ""
|
2211 |
|
|
|
2212 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2213 |
msgid "Site"
|
2214 |
msgstr ""
|
2215 |
|
|
|
2216 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2217 |
msgid "Backup sent to remote site - not available for download."
|
2218 |
msgstr ""
|
@@ -2225,80 +2292,80 @@ msgstr ""
|
|
2225 |
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."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: src/addons/migrator.php:
|
2229 |
msgid "Testing connection..."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: src/admin.php:
|
2233 |
msgid "Deleting..."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: src/admin.php:
|
2237 |
msgid "key name"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: src/admin.php:
|
2241 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: src/admin.php:
|
2245 |
msgid "Creating..."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: src/addons/migrator.php:
|
2249 |
msgid "Or, receive a backup from a remote site"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: src/addons/migrator.php:
|
2253 |
msgid "Paste key here"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: src/addons/migrator.php:
|
2257 |
msgid "How do I get a site's key?"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: src/addons/migrator.php:
|
2261 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: src/addons/migrator.php:
|
2265 |
msgid "Or, send a backup to another site"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: src/addons/migrator.php:
|
2269 |
msgid "Send"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: src/addons/migrator.php:
|
2273 |
msgid "Send to site:"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: src/addons/migrator.php:
|
2277 |
msgid "No receiving sites have yet been added."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: src/addons/migrator.php:
|
2281 |
msgid "It is for sending backups to the following site: "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: src/addons/migrator.php:
|
2285 |
msgid "The key was successfully added."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: src/addons/migrator.php:
|
2289 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: src/addons/migrator.php:
|
2293 |
-
#: src/addons/migrator.php:
|
2294 |
msgid "The entered key was corrupt - please try again."
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: src/addons/migrator.php:
|
2298 |
msgid "The entered key was the wrong length - please try again."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: src/addons/migrator.php:
|
2302 |
msgid "key"
|
2303 |
msgstr ""
|
2304 |
|
@@ -2334,19 +2401,19 @@ msgstr ""
|
|
2334 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: src/admin.php:
|
2338 |
msgid "Resetting..."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/addons/migrator.php:
|
2342 |
msgid "Add site"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: src/admin.php:
|
2346 |
msgid "Adding..."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: src/udaddons/options.php:
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
@@ -2366,11 +2433,11 @@ msgstr ""
|
|
2366 |
msgid "Go here to re-enter your password."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: src/addons/migrator.php:
|
2370 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/migrator.php:
|
2374 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2378,7 +2445,7 @@ msgstr ""
|
|
2378 |
msgid "To restore using any of the backup sets below, press the button."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/admin.php:
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
@@ -2390,7 +2457,7 @@ msgstr ""
|
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: src/addons/azure.php:599, src/addons/migrator.php:
|
2394 |
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
@@ -2420,43 +2487,43 @@ msgstr ""
|
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: src/methods/email.php:
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: src/addons/s3-enhanced.php:
|
2432 |
msgid "Do remember to save your settings."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: src/addons/s3-enhanced.php:
|
2436 |
msgid "You are now using a IAM user account to access your bucket."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: src/addons/s3-enhanced.php:
|
2440 |
msgid "S3 bucket"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: src/addons/s3-enhanced.php:
|
2444 |
msgid "China (Beijing) (restricted)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: src/addons/s3-enhanced.php:
|
2448 |
msgid "South America (Sao Paulo)"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: src/addons/s3-enhanced.php:
|
2452 |
msgid "Asia Pacific (Tokyo)"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: src/addons/s3-enhanced.php:
|
2456 |
msgid "Asia Pacific (Sydney)"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: src/addons/s3-enhanced.php:
|
2460 |
msgid "Asia Pacific (Singapore)"
|
2461 |
msgstr ""
|
2462 |
|
@@ -2504,7 +2571,7 @@ msgstr ""
|
|
2504 |
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."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: src/addons/s3-enhanced.php:
|
2508 |
msgid "Create new IAM user and S3 bucket"
|
2509 |
msgstr ""
|
2510 |
|
@@ -2569,7 +2636,7 @@ msgstr ""
|
|
2569 |
msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/methods/s3.php:
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
@@ -2582,17 +2649,17 @@ msgid "UpdraftPlus news, high-quality training materials for WordPress developer
|
|
2582 |
msgstr ""
|
2583 |
|
2584 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
-
#: src/methods/updraftvault.php:
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr ""
|
@@ -2619,7 +2686,7 @@ msgstr ""
|
|
2619 |
|
2620 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
@@ -2632,11 +2699,11 @@ msgstr ""
|
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: src/addons/fixtime.php:
|
2636 |
msgid "(at same time as files backup)"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: src/admin.php:
|
2640 |
msgid "No backup has been completed"
|
2641 |
msgstr ""
|
2642 |
|
@@ -2669,8 +2736,8 @@ msgstr ""
|
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: src/methods/s3.php:
|
2673 |
-
#: src/methods/s3.php:
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
@@ -2679,7 +2746,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
|
|
2679 |
msgid "or"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: src/admin.php:
|
2683 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2684 |
msgstr ""
|
2685 |
|
@@ -2710,7 +2777,7 @@ msgstr ""
|
|
2710 |
msgid "Check this box to have a basic report sent to"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: src/admin.php:
|
2714 |
msgctxt "i.e. Non-automatic"
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
@@ -2724,11 +2791,11 @@ msgstr ""
|
|
2724 |
msgid "Change Lock Settings"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: src/addons/morefiles.php:
|
2728 |
msgid "Any other file/directory on your server that you wish to back up"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: src/admin.php:
|
2732 |
msgid "For even more features and personal support, check out "
|
2733 |
msgstr ""
|
2734 |
|
@@ -2737,7 +2804,7 @@ msgid "Database decryption phrase"
|
|
2737 |
msgstr ""
|
2738 |
|
2739 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2740 |
-
#: src/admin.php:
|
2741 |
msgid "Automatic backup before update"
|
2742 |
msgstr ""
|
2743 |
|
@@ -2798,7 +2865,7 @@ msgid "Please make sure that you have made a note of the password!"
|
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: src/addons/lockadmin.php:156,
|
2801 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2802 |
msgid "Lock access to the UpdraftPlus settings page"
|
2803 |
msgstr ""
|
2804 |
|
@@ -2814,15 +2881,15 @@ msgstr ""
|
|
2814 |
msgid "The admin password has now been removed."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: src/addons/morefiles.php:
|
2818 |
msgid "(learn more about this significant option)"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: src/udaddons/options.php:
|
2822 |
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."
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: src/admin.php:
|
2826 |
msgid "View Log"
|
2827 |
msgstr ""
|
2828 |
|
@@ -2839,11 +2906,11 @@ msgstr ""
|
|
2839 |
msgid "and retain this many scheduled backups"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: src/admin.php:
|
2843 |
msgid "incremental backup; base backup: %s"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2847 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2848 |
msgstr ""
|
2849 |
|
@@ -2851,48 +2918,48 @@ msgstr ""
|
|
2851 |
msgid "Upload files into UpdraftPlus."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: src/admin.php:
|
2855 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: src/class-updraftplus.php:
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: src/addons/backblaze.php:
|
2864 |
msgid "Error: unexpected file read fail"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: src/backup.php:
|
2868 |
msgid "check your log for more details."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: src/backup.php:
|
2872 |
msgid "your web hosting account appears to be full; please see: %s"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: src/backup.php:
|
2876 |
msgid "A zip error occurred"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/reporting.php:
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: src/methods/updraftvault.php:
|
2888 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: src/methods/updraftvault.php:
|
2892 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: src/methods/updraftvault.php:
|
2896 |
msgid "You need to supply both an email address and a password"
|
2897 |
msgstr ""
|
2898 |
|
@@ -2900,36 +2967,36 @@ msgstr ""
|
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: src/class-updraftplus.php:
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: src/addons/migrator.php:
|
2912 |
msgid "already done"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: src/addons/migrator.php:
|
2916 |
msgid "skipped (not in list)"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/addons/migrator.php:
|
2920 |
-
#: src/addons/migrator.php:
|
2921 |
msgid "Search and replacing table:"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: src/addons/migrator.php:
|
2925 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: src/addons/migrator.php:
|
2929 |
msgid "These tables only"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: src/addons/migrator.php:
|
2933 |
msgid "Rows per batch"
|
2934 |
msgstr ""
|
2935 |
|
@@ -2941,19 +3008,19 @@ msgstr ""
|
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: src/class-updraftplus.php:
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
@@ -2982,7 +3049,7 @@ msgstr ""
|
|
2982 |
msgid "UpdraftPlus is on social media - check us out!"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: src/admin.php:
|
2986 |
msgid "Why am I seeing this?"
|
2987 |
msgstr ""
|
2988 |
|
@@ -2994,15 +3061,15 @@ msgstr ""
|
|
2994 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/admin.php:
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: src/class-updraftplus.php:
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: src/admin.php:
|
3006 |
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."
|
3007 |
msgstr ""
|
3008 |
|
@@ -3010,11 +3077,11 @@ msgstr ""
|
|
3010 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/admin.php:
|
3014 |
msgid "This file could not be uploaded"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: src/admin.php:
|
3018 |
msgid "You will find more information about this in the Settings section."
|
3019 |
msgstr ""
|
3020 |
|
@@ -3034,7 +3101,7 @@ msgstr ""
|
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: src/class-updraftplus.php:
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
@@ -3058,42 +3125,42 @@ msgstr ""
|
|
3058 |
msgid "Backup succeeded"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: src/admin.php:
|
3062 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3063 |
msgid "Every %s hours"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: src/addons/migrator.php:
|
3067 |
msgid "search and replace"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: src/addons/migrator.php:
|
3071 |
msgid "Go"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: src/addons/migrator.php:
|
3075 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: src/addons/migrator.php:
|
3079 |
msgid "This can easily destroy your site; so, use it with care!"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: src/addons/migrator.php:
|
3083 |
msgid "Replace with"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: src/addons/migrator.php:
|
3087 |
msgid "Search for"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: src/addons/migrator.php:
|
3091 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3092 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3093 |
msgid "Search / replace database"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/addons/migrator.php:
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3109,11 +3176,11 @@ msgstr ""
|
|
3109 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: src/methods/googledrive.php:
|
3113 |
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."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: src/admin.php:
|
3117 |
msgid "You have not yet made any backups."
|
3118 |
msgstr ""
|
3119 |
|
@@ -3133,11 +3200,11 @@ msgstr ""
|
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: src/admin.php:
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: src/admin.php:540, src/admin.php:
|
3141 |
#: src/includes/deprecated-actions.php:29,
|
3142 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3143 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
@@ -3148,19 +3215,19 @@ msgstr ""
|
|
3148 |
msgid "Current Status"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: src/admin.php:
|
3152 |
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."
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: src/admin.php:
|
3156 |
msgid "To make a backup, just press the Backup Now button."
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: src/admin.php:
|
3160 |
msgid "Welcome to UpdraftPlus!"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: src/addons/moredatabase.php:
|
3164 |
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)."
|
3165 |
msgstr ""
|
3166 |
|
@@ -3228,24 +3295,25 @@ msgstr ""
|
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: src/class-updraftplus.php:
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: src/methods/googledrive.php:
|
3236 |
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."
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/methods/googledrive.php:
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
-
#: src/addons/onedrive.php:868, src/methods/googledrive.php:
|
|
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: src/admin.php:
|
3249 |
msgid "External database"
|
3250 |
msgstr ""
|
3251 |
|
@@ -3277,7 +3345,7 @@ msgstr ""
|
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: src/class-updraftplus.php:
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
@@ -3298,7 +3366,7 @@ msgstr ""
|
|
3298 |
msgid "database connection attempt failed."
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: src/addons/migrator.php:
|
3302 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3303 |
msgstr ""
|
3304 |
|
@@ -3360,7 +3428,7 @@ msgstr ""
|
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: src/methods/dropbox.php:
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
@@ -3368,15 +3436,15 @@ msgstr ""
|
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/methods/dropbox.php:
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3408,37 +3476,37 @@ msgid "%s error - failed to access the container"
|
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
-
#: src/methods/dropbox.php:
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: src/methods/googledrive.php:
|
3416 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: src/methods/googledrive.php:
|
3420 |
msgid "It is an ID number internal to Google Drive"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/methods/googledrive.php:
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
-
#: src/methods/googledrive.php:
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
-
#: src/methods/googledrive.php:
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: src/methods/googledrive.php:
|
3442 |
msgid "Google Drive list files: failed to access parent folder"
|
3443 |
msgstr ""
|
3444 |
|
@@ -3463,7 +3531,7 @@ msgstr ""
|
|
3463 |
msgid "Fetch"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: src/addons/migrator.php:
|
3467 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3468 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3469 |
msgid "This feature requires %s version %s or later"
|
@@ -3473,7 +3541,7 @@ msgstr ""
|
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: src/class-updraftplus.php:
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
@@ -3497,8 +3565,8 @@ msgstr ""
|
|
3497 |
msgid "password/key"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: src/addons/migrator.php:
|
3501 |
-
#: src/admin.php:
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
@@ -3514,24 +3582,24 @@ msgstr ""
|
|
3514 |
msgid "SCP/SFTP password/key"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: src/admin.php:
|
3518 |
msgid "Files backup (created by %s)"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: src/admin.php:
|
3522 |
msgid "Files and database WordPress backup (created by %s)"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: src/addons/importer.php:276, src/admin.php:
|
3526 |
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: src/admin.php:
|
3531 |
msgid "Database (created by %s)"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: src/admin.php:
|
3535 |
msgid "unknown source"
|
3536 |
msgstr ""
|
3537 |
|
@@ -3543,32 +3611,32 @@ msgstr ""
|
|
3543 |
msgid "Upload backup files"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: src/admin.php:
|
3547 |
msgid "This backup was created by %s, and can be imported."
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: src/admin.php:
|
3551 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:
|
3555 |
msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: src/admin.php:
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: src/admin.php:
|
3563 |
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."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: src/admin.php:
|
3567 |
#: src/includes/class-backup-history.php:356
|
3568 |
msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: src/admin.php:
|
3572 |
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
@@ -3589,7 +3657,7 @@ msgstr ""
|
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: src/addons/backblaze.php:
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
@@ -3598,7 +3666,7 @@ msgstr ""
|
|
3598 |
msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/admin.php:
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
@@ -3607,20 +3675,20 @@ msgstr ""
|
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: src/addons/reporting.php:
|
3611 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: src/addons/morefiles.php:
|
3615 |
msgid "No backup of location: there was nothing found to back up"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:
|
3619 |
-
#: src/addons/morefiles.php:
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/methods/s3.php:
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
@@ -3628,16 +3696,16 @@ msgstr ""
|
|
3628 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/addons/morefiles.php:
|
3632 |
msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: src/class-updraftplus.php:
|
3636 |
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: src/class-updraftplus.php:
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
@@ -3657,7 +3725,7 @@ msgstr ""
|
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: src/udaddons/options.php:
|
3661 |
msgid "Available to claim on this site"
|
3662 |
msgstr ""
|
3663 |
|
@@ -3707,19 +3775,19 @@ msgstr ""
|
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/class-updraftplus.php:
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: src/includes/class-wpadmin-commands.php:
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
@@ -3735,7 +3803,7 @@ msgstr ""
|
|
3735 |
msgid "please wait for the rescheduled attempt"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: src/addons/reporting.php:
|
3739 |
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."
|
3740 |
msgstr ""
|
3741 |
|
@@ -3748,7 +3816,7 @@ msgstr ""
|
|
3748 |
msgid "Errors occurred:"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: src/admin.php:
|
3752 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3753 |
msgstr ""
|
3754 |
|
@@ -3772,11 +3840,11 @@ msgstr ""
|
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: src/admin.php:
|
3776 |
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)"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: src/addons/migrator.php:
|
3780 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3781 |
msgstr ""
|
3782 |
|
@@ -3785,7 +3853,7 @@ msgstr ""
|
|
3785 |
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."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/addons/moredatabase.php:137, src/admin.php:
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
@@ -3883,11 +3951,11 @@ msgid "Rackspace Cloud Files, enhanced"
|
|
3883 |
msgstr ""
|
3884 |
|
3885 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3886 |
-
#: src/methods/cloudfiles.php:
|
3887 |
msgid "Cloud Files Container"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:
|
3891 |
msgid "Cloud Files API Key"
|
3892 |
msgstr ""
|
3893 |
|
@@ -3946,31 +4014,32 @@ msgstr ""
|
|
3946 |
msgid "Authorisation failed (check your credentials)"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: src/
|
|
|
3950 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: src/admin.php:
|
3954 |
msgid "Create"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: src/admin.php:
|
3958 |
msgid "Trying..."
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: src/admin.php:
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: src/admin.php:
|
3970 |
msgid "Backup does not exist in the backup history"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/admin.php:
|
3974 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
|
3975 |
msgstr ""
|
3976 |
|
@@ -3998,88 +4067,88 @@ msgstr ""
|
|
3998 |
msgid "Moving old data out of the way..."
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/addons/reporting.php:
|
4002 |
msgid "Add another address..."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: src/addons/reporting.php:
|
4006 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/addons/reporting.php:
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: src/class-updraftplus.php:
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: src/addons/reporting.php:
|
4022 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: src/addons/reporting.php:
|
4026 |
msgid "Debugging information"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: src/addons/reporting.php:
|
4030 |
msgid "Uploaded to:"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: src/addons/reporting.php:
|
4034 |
msgid "Time taken:"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: src/addons/reporting.php:
|
4038 |
msgid "Warnings"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: src/addons/reporting.php:
|
4042 |
msgid "Errors"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: src/addons/reporting.php:
|
4046 |
msgid "Errors / warnings:"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: src/addons/morefiles.php:
|
4050 |
-
#: src/addons/reporting.php:
|
4051 |
msgid "Contains:"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: src/addons/reporting.php:
|
4055 |
msgid "Backup began:"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: src/addons/reporting.php:
|
4059 |
msgid "Backup Report"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: src/addons/reporting.php:
|
4063 |
msgid "%d hours, %d minutes, %d seconds"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/reporting.php:
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: src/addons/onedrive.php:814, src/methods/dropbox.php:
|
4071 |
-
#: src/methods/dropbox.php:
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: src/addons/onedrive.php:814, src/class-updraftplus.php:
|
4076 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4077 |
-
#: src/methods/dropbox.php:
|
4078 |
-
#: src/methods/dropbox.php:
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
@@ -4087,20 +4156,20 @@ msgstr ""
|
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/methods/s3.php:
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/methods/email.php:
|
4095 |
msgid "For more options, use the \"%s\" add-on."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/methods/email.php:
|
4099 |
msgid "Your site's admin email address (%s) will be used."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/admin.php:
|
4103 |
-
#: src/methods/updraftvault.php:
|
4104 |
msgid "Connect"
|
4105 |
msgstr ""
|
4106 |
|
@@ -4108,20 +4177,19 @@ msgstr ""
|
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: src/class-updraftplus.php:
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: src/addons/reporting.php:465, src/addons/reporting.php:465,
|
4116 |
#: src/admin.php:658
|
4117 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: src/addons/reporting.php:
|
4121 |
-
msgid "When the Email storage method is enabled, also send the
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: src/addons/reporting.php:
|
4125 |
msgid "Latest status:"
|
4126 |
msgstr ""
|
4127 |
|
@@ -4133,7 +4201,7 @@ msgstr ""
|
|
4133 |
msgid "Backed up: %s"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: src/addons/reporting.php:
|
4137 |
msgid "The log file has been attached to this email."
|
4138 |
msgstr ""
|
4139 |
|
@@ -4161,59 +4229,59 @@ msgstr ""
|
|
4161 |
msgid "Files and database"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: src/options.php:
|
4165 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: src/options.php:
|
4169 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: src/options.php:
|
4173 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: src/options.php:
|
4177 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: src/options.php:
|
4181 |
msgid "UpdraftPlus warning:"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: src/udaddons/options.php:
|
4185 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/udaddons/options.php:
|
4189 |
msgid "please follow this link to update the plugin in order to activate it"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: src/udaddons/options.php:
|
4193 |
msgid "please follow this link to update the plugin in order to get it"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: src/udaddons/options.php:
|
4197 |
msgid "latest"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: src/udaddons/options.php:
|
4201 |
msgid "Your version: %s"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: src/udaddons/options.php:
|
4205 |
msgid "You've got it"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: src/udaddons/options.php:
|
4209 |
msgid "UpdraftPlus Support"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: src/udaddons/options.php:
|
4213 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: src/udaddons/options.php:
|
4217 |
msgid "UpdraftPlus Addons"
|
4218 |
msgstr ""
|
4219 |
|
@@ -4221,16 +4289,16 @@ msgstr ""
|
|
4221 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: src/methods/updraftvault.php:
|
4225 |
#: src/udaddons/updraftplus-addons.php:933
|
4226 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: src/methods/updraftvault.php:
|
4230 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: src/methods/updraftvault.php:
|
4234 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4235 |
msgstr ""
|
4236 |
|
@@ -4242,18 +4310,18 @@ msgstr ""
|
|
4242 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: src/methods/email.php:
|
4246 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4247 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4248 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: src/admin.php:
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/addons/reporting.php:
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4269,87 +4337,87 @@ msgstr ""
|
|
4269 |
msgid "See also the \"More Files\" add-on from our shop."
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: src/backup.php:
|
4273 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: src/class-updraftplus.php:
|
4277 |
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)"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: src/udaddons/options.php:
|
4281 |
msgid "Manage Addons"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: src/udaddons/options.php:
|
4285 |
msgid "Buy It"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: src/udaddons/options.php:
|
4289 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: src/udaddons/options.php:
|
4293 |
msgid "activate it on this site"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: src/udaddons/options.php:
|
4297 |
msgid "You have an inactive purchase"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: src/udaddons/options.php:
|
4301 |
msgid "Assigned to this site"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: src/udaddons/options.php:
|
4305 |
msgid "Available for this site (via your all-addons purchase)"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: src/udaddons/options.php:
|
4309 |
msgid "(apparently a pre-release or withdrawn release)"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: src/udaddons/options.php:
|
4313 |
msgid "Go here"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: src/udaddons/options.php:
|
4317 |
msgid "Need to get support?"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: src/udaddons/options.php:
|
4321 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: src/udaddons/options.php:
|
4325 |
msgid "An unknown response was received. Response was:"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: src/udaddons/options.php:
|
4329 |
msgid "Claim not granted - your account login details were wrong"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#: src/udaddons/options.php:
|
4333 |
msgid "Please wait whilst we make the claim..."
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: src/udaddons/options.php:
|
4337 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: src/udaddons/options.php:
|
4341 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: src/udaddons/options.php:
|
4345 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: src/udaddons/options.php:
|
4349 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: src/
|
4353 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4354 |
msgstr ""
|
4355 |
|
@@ -4393,15 +4461,15 @@ msgstr ""
|
|
4393 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: src/addons/moredatabase.php:
|
4397 |
msgid "Without it, encryption will be a lot slower."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/moredatabase.php:
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
@@ -4409,15 +4477,15 @@ msgstr ""
|
|
4409 |
msgid "Drop backup files here"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: src/admin.php:
|
4413 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: src/admin.php:
|
4417 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/admin.php:
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4437,8 +4505,8 @@ msgstr ""
|
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: src/addons/azure.php:420, src/methods/stream-base.php:
|
4441 |
-
#: src/methods/stream-base.php:
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4444 |
|
@@ -4446,11 +4514,11 @@ msgstr ""
|
|
4446 |
msgid "You can send a backup to more than one destination with an add-on."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: src/admin.php:
|
4450 |
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."
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: src/admin.php:
|
4454 |
msgid "(%s%%, file %s of %s)"
|
4455 |
msgstr ""
|
4456 |
|
@@ -4479,7 +4547,7 @@ msgstr ""
|
|
4479 |
msgid "SCP/SFTP host setting"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: src/methods/email.php:
|
4483 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4484 |
msgstr ""
|
4485 |
|
@@ -4487,15 +4555,15 @@ msgstr ""
|
|
4487 |
msgid "Backup is of: %s."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: src/admin.php:
|
4491 |
msgid "%s settings test result:"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: src/admin.php:
|
4495 |
msgid "(Not finished)"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: src/admin.php:
|
4499 |
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."
|
4500 |
msgstr ""
|
4501 |
|
@@ -4507,77 +4575,77 @@ msgstr ""
|
|
4507 |
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)."
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: src/admin.php:
|
4511 |
msgid "Job ID: %s"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: src/admin.php:
|
4515 |
msgid "last activity: %ss ago"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: src/admin.php:
|
4519 |
msgid "next resumption: %d (after %ss)"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: src/admin.php:
|
4523 |
-
#: src/central/bootstrap.php:
|
4524 |
-
#: src/methods/updraftvault.php:
|
4525 |
msgid "Unknown"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: src/admin.php:
|
4529 |
msgid "Backup finished"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: src/admin.php:
|
4533 |
msgid "Waiting until scheduled time to retry because of errors"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: src/admin.php:
|
4537 |
msgid "Pruning old backup sets"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: src/admin.php:
|
4541 |
msgid "Uploading files to remote storage"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: src/admin.php:
|
4545 |
msgid "Encrypted database"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: src/admin.php:
|
4549 |
msgid "Encrypting database"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: src/admin.php:
|
4553 |
msgid "Created database backup"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: src/admin.php:
|
4557 |
msgid "table: %s"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: src/admin.php:
|
4561 |
msgid "Creating database backup"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: src/admin.php:
|
4565 |
msgid "Created file backup zips"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: src/admin.php:
|
4569 |
msgid "Creating file backup zips"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: src/admin.php:
|
4573 |
msgid "Backup begun"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: src/admin.php:
|
4577 |
msgid "Backups in progress:"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/admin.php:
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
@@ -4593,11 +4661,11 @@ msgstr ""
|
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/class-updraftplus.php:
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
@@ -4606,11 +4674,11 @@ msgstr ""
|
|
4606 |
msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: src/admin.php:
|
4610 |
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)."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: src/addons/autobackup.php:1085, src/admin.php:
|
4614 |
msgid "Proceed with update"
|
4615 |
msgstr ""
|
4616 |
|
@@ -4659,19 +4727,19 @@ msgstr ""
|
|
4659 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: src/addons/morefiles.php:
|
4663 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: src/addons/morefiles.php:
|
4667 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: src/addons/morefiles.php:
|
4671 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: src/addons/morefiles.php:
|
4675 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4676 |
msgstr ""
|
4677 |
|
@@ -4686,84 +4754,84 @@ msgstr ""
|
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: src/class-updraftplus.php:
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: src/addons/autobackup.php:1053, src/admin.php:
|
4710 |
#: src/includes/updraftplus-notices.php:171
|
4711 |
msgid "Be safe with an automatic backup"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: src/admin.php:
|
4715 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: src/admin.php:
|
4719 |
msgid "The file was uploaded."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: src/admin.php:
|
4723 |
msgid "Unknown server response status:"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: src/admin.php:
|
4727 |
msgid "Unknown server response:"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: src/admin.php:
|
4731 |
msgid "This decryption key will be attempted:"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: src/admin.php:
|
4735 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: src/admin.php:
|
4739 |
msgid "Upload error"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: src/admin.php:
|
4743 |
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)."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: src/admin.php:
|
4747 |
msgid "Upload error:"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: src/admin.php:
|
4751 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: src/admin.php:
|
4755 |
msgid "Download to your computer"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: src/admin.php:
|
4759 |
msgid "Delete from your web server"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: src/admin.php:
|
4763 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: src/admin.php:
|
4767 |
msgid "(%d archive(s) in set)."
|
4768 |
msgstr ""
|
4769 |
|
@@ -4771,31 +4839,31 @@ msgstr ""
|
|
4771 |
msgid "Split archives every:"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: src/addons/moredatabase.php:
|
4775 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: src/admin.php:
|
4779 |
msgid "Warnings:"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: src/admin.php:
|
4783 |
msgid "Error: the server sent an empty response."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/admin.php:
|
4787 |
msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: src/includes/class-wpadmin-commands.php:
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
@@ -4819,7 +4887,7 @@ msgstr ""
|
|
4819 |
msgid "No such backup set exists"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: src/admin.php:
|
4823 |
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"
|
4824 |
msgstr ""
|
4825 |
|
@@ -4827,11 +4895,11 @@ msgstr ""
|
|
4827 |
msgid "Moving unpacked backup into place..."
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: src/backup.php:
|
4831 |
msgid "Failed to open the zip file (%s) - %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/addons/morefiles.php:
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
@@ -4839,7 +4907,7 @@ msgstr ""
|
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3.php:
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
@@ -4848,15 +4916,15 @@ msgstr ""
|
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: src/admin.php:
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
@@ -4868,11 +4936,11 @@ msgstr ""
|
|
4868 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: src/admin.php:
|
4872 |
msgid "Your wp-content directory server path: %s"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#: src/admin.php:
|
4876 |
msgid "Raw backup history"
|
4877 |
msgstr ""
|
4878 |
|
@@ -4880,11 +4948,11 @@ msgstr ""
|
|
4880 |
msgid "Show raw backup and file list"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: src/admin.php:
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
@@ -4893,11 +4961,11 @@ msgstr ""
|
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/class-updraftplus.php:
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/admin.php:
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
@@ -4909,30 +4977,30 @@ msgstr ""
|
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/admin.php:
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:
|
4917 |
-
#: src/addons/migrator.php:
|
4918 |
-
#: src/admin.php:
|
4919 |
-
#: src/class-updraftplus.php:
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/admin.php:
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: src/class-updraftplus.php:
|
4928 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: src/addons/fixtime.php:
|
4932 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: src/addons/fixtime.php:
|
4936 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
4937 |
msgstr ""
|
4938 |
|
@@ -4970,9 +5038,9 @@ msgstr ""
|
|
4970 |
|
4971 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
-
#: src/methods/googledrive.php:
|
4974 |
-
#: src/methods/stream-base.php:
|
4975 |
-
#: src/methods/stream-base.php:
|
4976 |
msgid "%s Error"
|
4977 |
msgstr ""
|
4978 |
|
@@ -4980,7 +5048,7 @@ msgstr ""
|
|
4980 |
msgid "%s error - failed to upload file"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: src/class-updraftplus.php:
|
4984 |
msgid "%s error - failed to re-assemble chunks"
|
4985 |
msgstr ""
|
4986 |
|
@@ -4994,25 +5062,25 @@ msgstr ""
|
|
4994 |
msgid "%s authentication failed"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: src/addons/googlecloud.php:438, src/addons/migrator.php:
|
4998 |
-
#: src/admin.php:
|
4999 |
-
#: src/class-updraftplus.php:
|
5000 |
-
#: src/class-updraftplus.php:
|
5001 |
-
#: src/class-updraftplus.php:
|
5002 |
-
#: src/class-updraftplus.php:
|
5003 |
-
#: src/methods/s3.php:
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: src/admin.php:
|
5008 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: src/admin.php:
|
5012 |
msgid "Backup directory specified does <b>not</b> exist."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: src/admin.php:
|
5016 |
msgid "Warning: %s"
|
5017 |
msgstr ""
|
5018 |
|
@@ -5020,7 +5088,7 @@ msgstr ""
|
|
5020 |
msgid "Last backup job run:"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: src/backup.php:
|
5024 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5025 |
msgstr ""
|
5026 |
|
@@ -5040,35 +5108,35 @@ msgstr ""
|
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: src/class-updraftplus.php:
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: src/class-updraftplus.php:
|
5048 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: src/addons/migrator.php:
|
5052 |
msgid "New site:"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: src/addons/migrator.php:
|
5056 |
msgid "Migrated site (from UpdraftPlus)"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: src/addons/migrator.php:
|
5060 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: src/addons/migrator.php:
|
5064 |
msgid "Information needed to continue:"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: src/addons/migrator.php:
|
5068 |
msgid "Network activating theme:"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: src/addons/migrator.php:
|
5072 |
msgid "Processed plugin:"
|
5073 |
msgstr ""
|
5074 |
|
@@ -5080,15 +5148,15 @@ msgstr ""
|
|
5080 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/methods/s3.php:
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
@@ -5096,7 +5164,7 @@ msgstr ""
|
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/class-updraftplus.php:
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
@@ -5104,39 +5172,39 @@ msgstr ""
|
|
5104 |
msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/admin.php:
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: src/class-updraftplus.php:
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: src/admin.php:
|
5117 |
msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
-
#: src/admin.php:
|
5121 |
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."
|
5122 |
msgstr ""
|
5123 |
|
5124 |
-
#: src/admin.php:
|
5125 |
msgid "Close"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5129 |
-
#: src/admin.php:
|
5130 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5131 |
#: src/methods/remotesend.php:242
|
5132 |
msgid "Unexpected response:"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: src/addons/reporting.php:
|
5136 |
msgid "To send to more than one address, separate each address with a comma."
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: src/admin.php:
|
5140 |
msgid "PHP information"
|
5141 |
msgstr ""
|
5142 |
|
@@ -5172,7 +5240,7 @@ msgstr ""
|
|
5172 |
msgid "Also delete from remote storage"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: src/admin.php:
|
5176 |
msgid "Latest UpdraftPlus.com news:"
|
5177 |
msgstr ""
|
5178 |
|
@@ -5189,7 +5257,7 @@ msgstr ""
|
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/admin.php:
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5211,7 +5279,7 @@ msgstr ""
|
|
5211 |
msgid "Blog link"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: src/admin.php:
|
5215 |
msgid "Testing %s Settings..."
|
5216 |
msgstr ""
|
5217 |
|
@@ -5219,11 +5287,11 @@ msgstr ""
|
|
5219 |
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."
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: src/admin.php:
|
5223 |
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."
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: src/admin.php:
|
5227 |
msgid "Notice"
|
5228 |
msgstr ""
|
5229 |
|
@@ -5235,97 +5303,101 @@ msgstr ""
|
|
5235 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: src/admin.php:
|
5239 |
msgid "Begun looking for this entity"
|
5240 |
msgstr ""
|
5241 |
|
|
|
|
|
|
|
|
|
5242 |
#: src/addons/dropbox-folders.php:32
|
5243 |
msgid "Store at"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: src/addons/migrator.php:
|
5247 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: src/addons/migrator.php:
|
5251 |
msgid "rows: %d"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: src/addons/migrator.php:
|
5255 |
msgid "Time taken (seconds):"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: src/addons/migrator.php:
|
5259 |
msgid "Errors:"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: src/addons/migrator.php:
|
5263 |
msgid "SQL update commands run:"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: src/addons/migrator.php:
|
5267 |
msgid "Changes made:"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: src/addons/migrator.php:
|
5271 |
msgid "Rows examined:"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: src/addons/migrator.php:
|
5275 |
msgid "Tables examined:"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: src/addons/migrator.php:
|
5279 |
msgid "Could not get list of tables"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: src/addons/migrator.php:
|
5283 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: src/addons/migrator.php:
|
5287 |
msgid "Nothing to do: the site URL is already: %s"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: src/addons/migrator.php:
|
5291 |
-
#: src/addons/migrator.php:
|
5292 |
-
#: src/addons/migrator.php:
|
5293 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: src/addons/migrator.php:
|
5297 |
msgid "Database: search and replace site URL"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: src/addons/migrator.php:
|
5301 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: src/addons/migrator.php:
|
5305 |
msgid "Failed: the %s operation was not able to start."
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: src/addons/migrator.php:
|
5309 |
msgid "Search and replace site location in the database (migrate)"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: src/addons/migrator.php:
|
5313 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: src/addons/multisite.php:
|
5317 |
msgid "Blog uploads"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: src/addons/migrator.php:
|
5321 |
msgid "Must-use plugins"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: src/addons/multisite.php:
|
5325 |
msgid "Multisite Install"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: src/addons/fixtime.php:
|
5329 |
msgid "starting from next time it is"
|
5330 |
msgstr ""
|
5331 |
|
@@ -5355,7 +5427,7 @@ msgstr ""
|
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
-
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
@@ -5385,46 +5457,46 @@ msgstr ""
|
|
5385 |
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."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: src/addons/morefiles.php:
|
5389 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: src/addons/morefiles.php:
|
5393 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: src/addons/morefiles.php:
|
5397 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: src/addons/morefiles.php:
|
5401 |
msgid "More Files"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: src/addons/morefiles.php:
|
5405 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: src/addons/morefiles.php:
|
5409 |
msgid "The above files comprise everything in a WordPress installation."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: src/addons/morefiles.php:
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:
|
5426 |
-
#: src/admin.php:
|
5427 |
-
#: src/methods/stream-base.php:
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5432,15 +5504,15 @@ msgstr ""
|
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#: src/methods/stream-base.php:
|
5436 |
msgid "Local write failed: Failed to download"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: src/methods/stream-base.php:
|
5440 |
msgid "Error opening remote file: Failed to download"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: src/methods/stream-base.php:
|
5444 |
msgid "Chunk %s: A %s error occurred"
|
5445 |
msgstr ""
|
5446 |
|
@@ -5448,10 +5520,10 @@ msgstr ""
|
|
5448 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5449 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5450 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5451 |
-
#: src/methods/googledrive.php:
|
5452 |
-
#: src/methods/stream-base.php:27, src/methods/stream-base.php:
|
5453 |
-
#: src/methods/stream-base.php:
|
5454 |
-
#: src/methods/stream-base.php:
|
5455 |
msgid "No %s settings were found"
|
5456 |
msgstr ""
|
5457 |
|
@@ -5479,31 +5551,31 @@ msgstr ""
|
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/addons/onedrive.php:851, src/methods/dropbox.php:
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/methods/dropbox.php:
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
@@ -5516,100 +5588,99 @@ msgstr ""
|
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/methods/s3.php:
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:839, src/methods/s3.php:
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
-
#: src/methods/s3.php:
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
-
#: src/methods/s3.php:
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: src/addons/backblaze.php:
|
5542 |
msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
-
#: src/methods/s3.php:
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: src/methods/s3.php:
|
5584 |
-
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: src/methods/s3.php:
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/methods/email.php:
|
5613 |
msgid "Note:"
|
5614 |
msgstr ""
|
5615 |
|
@@ -5617,49 +5688,49 @@ msgstr ""
|
|
5617 |
msgid "WordPress Backup"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: src/methods/cloudfiles.php:
|
5621 |
msgid "We accessed the container, and were able to create files within it."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: src/methods/cloudfiles.php:
|
5625 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: src/methods/cloudfiles.php:
|
5629 |
msgid "Failure: No container details were given."
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
-
#: src/methods/cloudfiles.php:
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:
|
5639 |
-
#: src/methods/s3.php:
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: src/addons/migrator.php:
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
-
#: src/admin.php:
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
-
#: src/methods/cloudfiles.php:
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
-
#: src/methods/s3.php:
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: src/methods/cloudfiles.php:
|
5663 |
msgid "Cloud Files username"
|
5664 |
msgstr ""
|
5665 |
|
@@ -5686,12 +5757,12 @@ msgstr ""
|
|
5686 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/admin.php:
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: src/class-updraftplus.php:
|
5694 |
-
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5697 |
|
@@ -5702,13 +5773,13 @@ msgstr ""
|
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
-
#: src/methods/s3.php:
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5710 |
-
#: src/class-updraftplus.php:
|
5711 |
-
#: src/methods/googledrive.php:
|
5712 |
msgid "%s Error: Failed to open local file"
|
5713 |
msgstr ""
|
5714 |
|
@@ -5719,85 +5790,85 @@ msgstr ""
|
|
5719 |
|
5720 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5721 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5722 |
-
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:
|
5723 |
-
#: src/methods/cloudfiles.php:
|
5724 |
msgid "Cloud Files authentication failed"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/methods/googledrive.php:
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
-
#: src/methods/googledrive.php:
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
-
#: src/methods/googledrive.php:
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
-
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:
|
5759 |
-
#: src/methods/googledrive.php:
|
5760 |
-
#: src/methods/googledrive.php:
|
5761 |
msgid "Account is not authorized."
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: src/methods/googledrive.php:
|
5765 |
-
#: src/methods/googledrive.php:
|
5766 |
-
#: src/methods/stream-base.php:
|
5767 |
msgid "Failed to upload to %s"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: src/methods/googledrive.php:
|
5771 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/methods/googledrive.php:
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
-
#: src/methods/googledrive.php:
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
-
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:
|
5786 |
-
#: src/methods/googledrive.php:
|
5787 |
-
#: src/methods/s3.php:
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: src/addons/onedrive.php:843, src/methods/dropbox.php:
|
5792 |
-
#: src/methods/dropbox.php:
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
-
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:
|
5797 |
msgid "Authorization failed"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:
|
5801 |
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."
|
5802 |
msgstr ""
|
5803 |
|
@@ -5820,8 +5891,8 @@ msgstr ""
|
|
5820 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: src/addons/migrator.php:
|
5824 |
-
#: src/admin.php:
|
5825 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
@@ -5830,7 +5901,7 @@ msgstr ""
|
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/addons/migrator.php:
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
@@ -5838,13 +5909,13 @@ msgstr ""
|
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: src/class-updraftplus.php:
|
5842 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: src/addons/reporting.php:
|
5847 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
@@ -5916,60 +5987,60 @@ msgstr ""
|
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: src/admin.php:
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#: src/admin.php:
|
5936 |
msgid "If making a request for support, please include this information:"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: src/admin.php:
|
5940 |
msgid "ABORT: Could not find the information on which entities to restore."
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
msgid "UpdraftPlus Restoration: Progress"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: src/admin.php:
|
5948 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "Delete this backup set"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
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."
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/admin.php:
|
5964 |
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."
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/admin.php:
|
5968 |
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)."
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
@@ -6005,23 +6076,23 @@ msgstr ""
|
|
6005 |
msgid "Use the server's SSL certificates"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: src/admin.php:
|
6009 |
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."
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: src/admin.php:
|
6013 |
msgid "click here"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: src/admin.php:
|
6017 |
msgid "or, to reset this option"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: src/admin.php:
|
6021 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: src/admin.php:
|
6025 |
msgid "Backup directory specified is writable, which is good."
|
6026 |
msgstr ""
|
6027 |
|
@@ -6053,15 +6124,15 @@ msgstr ""
|
|
6053 |
msgid "Advanced / Debugging Settings"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: src/admin.php:
|
6057 |
msgid "Requesting start of backup..."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/addons/morefiles.php:
|
6061 |
msgid "Cancel"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: src/addons/reporting.php:
|
6065 |
msgid "None"
|
6066 |
msgstr ""
|
6067 |
|
@@ -6086,11 +6157,11 @@ msgstr ""
|
|
6086 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: src/addons/morefiles.php:
|
6090 |
msgid "Exclude these:"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: src/admin.php:
|
6094 |
msgid "Any other directories found inside wp-content"
|
6095 |
msgstr ""
|
6096 |
|
@@ -6106,45 +6177,45 @@ msgstr ""
|
|
6106 |
msgid "To fix the time at which a backup should take place,"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: src/admin.php:
|
6110 |
msgid "Monthly"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: src/admin.php:
|
6114 |
msgid "Fortnightly"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: src/admin.php:
|
6118 |
msgid "Weekly"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#: src/admin.php:
|
6122 |
msgid "Daily"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: src/admin.php:
|
6126 |
msgid "Download log file"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: src/admin.php:
|
6130 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: src/admin.php:
|
6134 |
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"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: src/admin.php:
|
6138 |
msgid "The request to the filesystem to create the directory failed."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: src/addons/migrator.php:
|
6142 |
-
#: src/admin.php:
|
6143 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6144 |
msgid "Delete"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: src/admin.php:
|
6148 |
msgid "show log"
|
6149 |
msgstr ""
|
6150 |
|
@@ -6177,9 +6248,10 @@ msgstr ""
|
|
6177 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6178 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6179 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6180 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6181 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6182 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
6183 |
msgid "No"
|
6184 |
msgstr ""
|
6185 |
|
@@ -6212,9 +6284,11 @@ msgstr ""
|
|
6212 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6213 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6214 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6215 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6216 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6217 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
|
|
6218 |
msgid "Yes"
|
6219 |
msgstr ""
|
6220 |
|
@@ -6253,15 +6327,16 @@ msgstr ""
|
|
6253 |
msgid "Perform a one-time backup"
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
-
#: src/class-updraftplus.php:
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: src/addons/morefiles.php:
|
|
|
6265 |
msgid "%s restoration options:"
|
6266 |
msgstr ""
|
6267 |
|
@@ -6297,27 +6372,27 @@ msgstr ""
|
|
6297 |
msgid "Delete backup set"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: src/admin.php:
|
6301 |
msgid "Download error: the server sent us a response which we did not understand."
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: src/addons/backblaze.php:
|
6305 |
-
#: src/addons/migrator.php:
|
6306 |
-
#: src/addons/migrator.php:
|
6307 |
-
#: src/addons/migrator.php:
|
6308 |
-
#: src/addons/migrator.php:
|
6309 |
-
#: src/addons/migrator.php:
|
6310 |
-
#: src/addons/migrator.php:
|
6311 |
-
#: src/addons/migrator.php:
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
-
#: src/admin.php:
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
-
#: src/methods/updraftvault.php:
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: src/admin.php:
|
6321 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6322 |
msgid "calculating..."
|
6323 |
msgstr ""
|
@@ -6338,15 +6413,15 @@ msgstr ""
|
|
6338 |
msgid "This is a count of the contents of your Updraft directory"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:
|
6342 |
-
#: src/methods/googledrive.php:
|
6343 |
-
#: src/methods/googledrive.php:
|
6344 |
-
#: src/methods/googledrive.php:
|
6345 |
-
#: src/methods/googledrive.php:
|
6346 |
-
#: src/methods/googledrive.php:
|
6347 |
-
#: src/methods/googledrive.php:
|
6348 |
-
#: src/methods/googledrive.php:
|
6349 |
-
#: src/methods/googledrive.php:
|
6350 |
msgid "Google Drive"
|
6351 |
msgstr ""
|
6352 |
|
@@ -6362,39 +6437,40 @@ msgstr ""
|
|
6362 |
msgid "More tasks:"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: src/admin.php:
|
6366 |
msgid "Download most recently modified log file"
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: src/central/bootstrap.php:
|
6370 |
msgid "(Nothing yet logged)"
|
6371 |
msgstr ""
|
6372 |
|
6373 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6374 |
-
#: src/admin.php:
|
6375 |
msgid "Last log message"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
-
#: src/addons/migrator.php:
|
6379 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6380 |
msgid "Restore"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#: src/admin.php:532, src/admin.php:
|
6384 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6385 |
msgid "Backup Now"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: src/addons/migrator.php:
|
6389 |
-
#: src/addons/reporting.php:
|
6390 |
-
#: src/admin.php:
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
-
#: src/includes/class-wpadmin-commands.php:
|
6393 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
|
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: src/admin.php:311, src/admin.php:
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
@@ -6422,15 +6498,15 @@ msgstr ""
|
|
6422 |
msgid "JavaScript warning"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: src/admin.php:
|
6426 |
msgid "Delete Old Directories"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: src/admin.php:
|
6430 |
msgid "Current limit is:"
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: src/admin.php:
|
6434 |
msgid "Your backup has been restored."
|
6435 |
msgstr ""
|
6436 |
|
@@ -6442,128 +6518,128 @@ msgstr ""
|
|
6442 |
msgid "Lead developer's homepage"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/central/bootstrap.php:
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: src/admin.php:
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: src/admin.php:
|
6454 |
msgid "Backup directory successfully created."
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: src/admin.php:
|
6458 |
msgid "Backup directory could not be created"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: src/admin.php:
|
6462 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: src/admin.php:
|
6466 |
msgid "Old directories successfully removed."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: src/admin.php:
|
6470 |
msgid "Remove old directories"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#: src/addons/migrator.php:
|
6474 |
-
#: src/admin.php:
|
6475 |
-
#: src/admin.php:
|
6476 |
msgid "Return to UpdraftPlus Configuration"
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#: src/admin.php:
|
6480 |
-
#: src/admin.php:
|
6481 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6482 |
msgid "Actions"
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#: src/admin.php:
|
6486 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
-
#: src/admin.php:
|
6490 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6491 |
msgstr ""
|
6492 |
|
6493 |
-
#: src/admin.php:
|
6494 |
msgid "No local copy present."
|
6495 |
msgstr ""
|
6496 |
|
6497 |
-
#: src/admin.php:
|
6498 |
msgid "Download in progress"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#: src/admin.php:
|
6502 |
msgid "File ready."
|
6503 |
msgstr ""
|
6504 |
|
6505 |
-
#: src/admin.php:
|
6506 |
msgid "Download failed"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
-
#: src/admin.php:
|
6510 |
-
#: src/class-updraftplus.php:
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
-
#: src/methods/stream-base.php:
|
6514 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
-
#: src/admin.php:
|
6519 |
msgid "Could not find that job - perhaps it has already finished?"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: src/admin.php:
|
6523 |
msgid "Job deleted"
|
6524 |
msgstr ""
|
6525 |
|
6526 |
-
#: src/admin.php:
|
6527 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6528 |
msgstr ""
|
6529 |
|
6530 |
-
#: src/admin.php:
|
6531 |
msgid "Nothing yet logged"
|
6532 |
msgstr ""
|
6533 |
|
6534 |
-
#: src/admin.php:
|
6535 |
msgid "Please consult this FAQ if you have problems backing up."
|
6536 |
msgstr ""
|
6537 |
|
6538 |
-
#: src/admin.php:
|
6539 |
msgid "Your website is hosted using the %s web server."
|
6540 |
msgstr ""
|
6541 |
|
6542 |
-
#: src/admin.php:
|
6543 |
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."
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: src/admin.php:
|
6547 |
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."
|
6548 |
msgstr ""
|
6549 |
|
6550 |
-
#: src/addons/migrator.php:
|
6551 |
-
#: src/admin.php:
|
6552 |
-
#: src/admin.php:
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
-
#: src/methods/s3.php:
|
6556 |
-
#: src/methods/updraftvault.php:
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6559 |
msgid "Warning"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
-
#: src/admin.php:
|
6563 |
msgid "Add-Ons / Pro Support"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
-
#: src/admin.php:548, src/admin.php:
|
6567 |
#: src/templates/wp-admin/settings/tab-bar.php:7
|
6568 |
msgid "Settings"
|
6569 |
msgstr ""
|
@@ -6584,21 +6660,21 @@ msgstr ""
|
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
6588 |
-
#: src/methods/googledrive.php:
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: src/class-updraftplus.php:
|
6597 |
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
-
#: src/class-updraftplus.php:
|
6602 |
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
@@ -6607,15 +6683,15 @@ msgstr ""
|
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: src/class-updraftplus.php:
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: src/admin.php:
|
6619 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
6620 |
msgstr ""
|
6621 |
|
@@ -6623,53 +6699,53 @@ msgstr ""
|
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: src/class-updraftplus.php:
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/addons/moredatabase.php:
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/addons/multisite.php:
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: src/class-updraftplus.php:
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: src/class-updraftplus.php:
|
6659 |
msgid "No log files were found."
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: src/admin.php:
|
6663 |
msgid "The log file could not be read."
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: src/admin.php:
|
6667 |
-
#: src/class-updraftplus.php:
|
6668 |
-
#: src/class-updraftplus.php:
|
6669 |
msgid "UpdraftPlus notice:"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: src/addons/multisite.php:74, src/addons/multisite.php:
|
6673 |
#: src/options.php:59
|
6674 |
msgid "UpdraftPlus Backups"
|
6675 |
msgstr ""
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/addons/reporting.php:523, src/admin.php:660
|
15 |
+
msgid "Only email the database backup"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/addons/reporting.php:523
|
19 |
+
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."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/addons/reporting.php:523
|
23 |
+
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/addons/migrator.php:259
|
27 |
+
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/addons/incremental.php:62
|
31 |
+
msgid "Increments exist at: %s"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/addons/incremental.php:60, src/addons/incremental.php:62
|
35 |
+
msgid "(latest increment: %s)"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/s3-enhanced.php:370
|
39 |
+
msgid "Europe (Paris)"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/templates/wp-admin/settings/tab-addons.php:189
|
43 |
+
msgid "WP-CLI commands to take, list and delete backups."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/templates/wp-admin/settings/tab-addons.php:188
|
47 |
+
msgid "WP-CLI support"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/templates/wp-admin/settings/tab-addons.php:187
|
51 |
+
msgid "WP CLI"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/addons/wp-cli.php:239
|
55 |
+
msgid "Invalid Job Id"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: src/addons/wp-cli.php:181
|
59 |
+
msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: src/addons/wp-cli.php:171
|
63 |
+
msgid "Recently started backup job id: %s"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: src/addons/wp-cli.php:78
|
67 |
+
msgid "The given value for the '%s' option is not valid"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: src/addons/migrator.php:2447
|
71 |
+
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)."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: src/addons/migrator.php:2427
|
75 |
+
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: src/addons/migrator.php:2427
|
79 |
+
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: src/addons/migrator.php:2046
|
83 |
+
msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:14
|
87 |
+
msgid "This functionality has been disabled by the site administrator."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
91 |
msgid "Simple and secure login with a wave of your phone."
|
92 |
msgstr ""
|
111 |
msgid "Thank you for installing UpdraftPlus!"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: src/addons/migrator.php:2483
|
115 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
116 |
msgstr ""
|
117 |
|
139 |
msgid "Ensure you are logged into the correct account before continuing."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/admin.php:4789
|
143 |
msgid "Remote storage method and instance id are required for authentication."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: src/admin.php:4785
|
147 |
msgid "authentication error"
|
148 |
msgstr ""
|
149 |
|
151 |
msgid "(Nothing has been logged yet)"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: src/addons/migrator.php:425
|
155 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: src/addons/migrator.php:414
|
159 |
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."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: src/addons/migrator.php:403
|
163 |
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."
|
164 |
msgstr ""
|
165 |
|
171 |
msgid "Delete these settings"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/morestorage.php:81, src/admin.php:784
|
175 |
msgid "Currently disabled"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/morestorage.php:81, src/admin.php:783
|
179 |
msgid "Currently enabled"
|
180 |
msgstr ""
|
181 |
|
191 |
msgid "get it here"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: src/methods/stream-base.php:323
|
195 |
msgid "Download chunk size successfully changed to %d"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: src/methods/stream-base.php:320
|
199 |
msgid "Download chunk size failed to change to %d"
|
200 |
msgstr ""
|
201 |
|
211 |
msgid "remote site"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: src/addons/backblaze.php:497
|
215 |
msgid "Invalid bucket name"
|
216 |
msgstr ""
|
217 |
|
221 |
msgstr[0] ""
|
222 |
msgstr[1] ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4436
|
225 |
msgid "Your chosen replacement collation"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4413
|
229 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4413
|
233 |
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."
|
234 |
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."
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
+
#: src/addons/migrator.php:548
|
239 |
msgid "Database restoration options:"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: src/addons/migrator.php:392
|
243 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
244 |
msgstr ""
|
245 |
|
267 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: src/central/bootstrap.php:519
|
271 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: src/central/bootstrap.php:517
|
275 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: src/central/bootstrap.php:514
|
279 |
msgid "A website where you have installed %s"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: src/central/bootstrap.php:512
|
283 |
msgid "Self-hosted dashboard"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/central/bootstrap.php:254
|
287 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/migrator.php:932
|
291 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
292 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
293 |
msgstr[0] ""
|
297 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/class-updraftplus.php:4389
|
301 |
msgid "Your chosen character set to use instead:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/class-updraftplus.php:4379
|
305 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: src/class-updraftplus.php:4379
|
309 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
310 |
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."
|
311 |
msgstr[0] ""
|
312 |
msgstr[1] ""
|
313 |
|
314 |
+
#: src/central/bootstrap.php:597
|
315 |
msgid "Create another key"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/central/bootstrap.php:526
|
319 |
msgid "UpdraftCentral dashboard connection details"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/central/bootstrap.php:520
|
323 |
msgid "Next"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/central/bootstrap.php:506
|
327 |
msgid "an account"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/central/bootstrap.php:506
|
331 |
msgid "i.e. if you have %s there"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/central/bootstrap.php:495
|
335 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/central/bootstrap.php:469
|
339 |
msgid "Manage existing keys (%d)..."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: src/central/bootstrap.php:419
|
343 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: src/central/bootstrap.php:256
|
347 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: src/central/bootstrap.php:254
|
351 |
msgid "Detailed instructions for this can be found at %s"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: src/central/bootstrap.php:254
|
355 |
msgid "You now need to copy the key below and enter it at your %s."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:778
|
359 |
msgid "Please enter a valid URL e.g http://example.com"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: src/addons/backblaze.php:655
|
363 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: src/addons/backblaze.php:654
|
367 |
msgid "some/path"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: src/addons/backblaze.php:654
|
371 |
msgid "Bucket name"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: src/addons/backblaze.php:653
|
375 |
msgid "Backup path"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: src/addons/backblaze.php:648
|
379 |
msgid "Application key"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/addons/backblaze.php:643, src/addons/backblaze.php:643
|
383 |
msgid "here"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: src/addons/backblaze.php:643
|
387 |
msgid "Get these settings from %s, or sign up %s."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: src/addons/backblaze.php:453
|
391 |
msgid "Account Key"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: src/addons/backblaze.php:452, src/addons/backblaze.php:641
|
395 |
msgid "Account ID"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: src/class-updraftplus.php:4221
|
399 |
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."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: src/class-updraftplus.php:4219, src/class-updraftplus.php:4221
|
403 |
msgid "the migrator add-on"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: src/class-updraftplus.php:4219
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: src/class-updraftplus.php:4217
|
411 |
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."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: src/class-updraftplus.php:4212
|
415 |
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."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: src/methods/googledrive.php:1272
|
419 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
420 |
msgstr ""
|
421 |
|
422 |
#: src/methods/backup-module.php:595
|
423 |
+
msgid "Follow this link to remove these settings for %s."
|
424 |
msgstr ""
|
425 |
|
426 |
#: src/addons/sftp.php:348
|
427 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: src/admin.php:759
|
431 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/admin.php:1384, src/admin.php:4367, src/backup.php:2106,
|
435 |
+
#: src/class-updraftplus.php:2253, src/class-updraftplus.php:2318,
|
436 |
+
#: src/class-updraftplus.php:2452
|
437 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: src/admin.php:1375, src/admin.php:4353, src/backup.php:2097,
|
441 |
+
#: src/class-updraftplus.php:2244, src/class-updraftplus.php:2311,
|
442 |
+
#: src/class-updraftplus.php:2445
|
443 |
msgid "A PHP exception (%s) has occurred: %s"
|
444 |
msgstr ""
|
445 |
|
495 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: src/admin.php:4995
|
499 |
msgid "Value"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: src/admin.php:1721
|
503 |
msgid "Did not know how to delete from this cloud service."
|
504 |
msgstr ""
|
505 |
|
515 |
msgid "Stored at: %s"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: src/methods/cloudfiles.php:495
|
519 |
msgid "Cloud Files"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: src/admin.php:4740
|
523 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: src/admin.php:4699
|
527 |
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."
|
528 |
msgstr ""
|
529 |
|
530 |
#: src/methods/updraftvault.php:71,
|
531 |
+
#: src/templates/wp-admin/settings/tab-addons.php:297
|
532 |
msgid "UpdraftVault"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: src/includes/class-wpadmin-commands.php:515
|
536 |
msgid "archive"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: src/includes/class-wpadmin-commands.php:506
|
540 |
msgid "Extra database"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: src/admin.php:3909
|
544 |
msgid "Press here to download or browse"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: src/admin.php:1158, src/admin.php:1168
|
548 |
msgid "Error: invalid path"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: src/admin.php:955
|
552 |
msgid "An error occurred when fetching storage module options: "
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: src/admin.php:775
|
556 |
msgid "Loading log file"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: src/admin.php:774
|
560 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: src/admin.php:773
|
564 |
msgid "Search"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: src/admin.php:772
|
568 |
msgid "Select a file to view information about it"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: src/admin.php:771
|
572 |
msgid "Browsing zip file"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: src/admin.php:740
|
576 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: src/admin.php:688
|
580 |
msgid "Browse contents"
|
581 |
msgstr ""
|
582 |
|
584 |
msgid "Skipped tables:"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: src/class-updraftplus.php:4501
|
588 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: src/admin.php:2804
|
592 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: src/admin.php:2804
|
596 |
msgid "All WordPress tables will be backed up."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: src/admin.php:770
|
600 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: src/admin.php:770
|
604 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: src/admin.php:770
|
608 |
msgid "The available memory on the server."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: src/admin.php:770
|
612 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: src/admin.php:770
|
616 |
msgid "The file failed to upload. Please check the following:"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: src/admin.php:769
|
620 |
msgid "HTTP code:"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: src/addons/wp-cli.php:87, src/admin.php:665
|
624 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: src/addons/moredatabase.php:603
|
628 |
msgid "tables"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: src/addons/moredatabase.php:602
|
632 |
msgid "WordPress database"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: src/addons/moredatabase.php:595
|
636 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
640 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: src/templates/wp-admin/settings/tab-addons.php:318
|
644 |
msgid "UpdraftCentral Cloud or Premium"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: src/templates/wp-admin/settings/tab-addons.php:301,
|
648 |
+
#: src/templates/wp-admin/settings/tab-addons.php:321
|
649 |
msgid "Find out more"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: src/templates/wp-admin/settings/tab-addons.php:300
|
653 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
654 |
msgstr ""
|
655 |
|
656 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
657 |
+
#: src/templates/wp-admin/settings/tab-addons.php:292
|
658 |
msgid "UpdraftPlus Gold"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: src/templates/wp-admin/settings/tab-addons.php:286
|
662 |
msgid "UpdraftPlus Free"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: src/templates/wp-admin/settings/tab-addons.php:283
|
666 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: src/templates/wp-admin/settings/tab-addons.php:269
|
670 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: src/templates/wp-admin/settings/tab-addons.php:253
|
674 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251,
|
678 |
+
#: src/templates/wp-admin/settings/tab-addons.php:252
|
679 |
msgid "Importer"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237
|
683 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: src/templates/wp-admin/settings/tab-addons.php:235,
|
687 |
+
#: src/templates/wp-admin/settings/tab-addons.php:236
|
688 |
msgid "No ads"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221
|
692 |
msgid "Sophisticated reporting and emailing capabilities."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: src/templates/wp-admin/settings/tab-addons.php:205
|
696 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: src/templates/wp-admin/settings/tab-addons.php:203,
|
700 |
+
#: src/templates/wp-admin/settings/tab-addons.php:204
|
701 |
msgid "More database options"
|
702 |
msgstr ""
|
703 |
|
765 |
|
766 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
767 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
768 |
+
#: src/templates/wp-admin/settings/tab-addons.php:340,
|
769 |
+
#: src/templates/wp-admin/settings/tab-addons.php:343
|
770 |
msgid "Upgrade now"
|
771 |
msgstr ""
|
772 |
|
773 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
774 |
+
#: src/templates/wp-admin/settings/tab-addons.php:337
|
775 |
msgid "Installed"
|
776 |
msgstr ""
|
777 |
|
804 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: src/addons/morefiles.php:332
|
808 |
msgid "Please choose a file or directory"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: src/addons/morefiles.php:321
|
812 |
msgid "Confirm"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: src/addons/morefiles.php:324
|
816 |
msgid "Go up a directory"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: src/addons/morefiles.php:317
|
820 |
msgid "Add directory..."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/addons/morefiles.php:310, src/addons/morefiles.php:330
|
824 |
msgid "Edit"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: src/addons/morefiles.php:293
|
828 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: src/addons/s3-enhanced.php:371
|
832 |
msgid "Europe (Frankfurt)"
|
833 |
msgstr ""
|
834 |
|
841 |
msgstr ""
|
842 |
|
843 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
844 |
+
#: src/templates/wp-admin/settings/tab-addons.php:317
|
845 |
msgid "UpdraftCentral"
|
846 |
msgstr ""
|
847 |
|
893 |
msgstr ""
|
894 |
|
895 |
#: src/includes/updraftplus-notices.php:251
|
896 |
+
msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
897 |
msgstr ""
|
898 |
|
899 |
#: src/includes/updraftplus-notices.php:238
|
938 |
msgstr ""
|
939 |
|
940 |
#: src/includes/updraftplus-notices.php:92,
|
941 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
942 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
943 |
msgstr ""
|
944 |
|
983 |
msgstr ""
|
984 |
|
985 |
#: src/includes/updraftplus-notices.php:41,
|
986 |
+
#: src/templates/wp-admin/settings/tab-addons.php:298
|
987 |
msgid "UpdraftVault storage"
|
988 |
msgstr ""
|
989 |
|
1013 |
msgstr ""
|
1014 |
|
1015 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
1016 |
+
#: src/templates/wp-admin/settings/tab-addons.php:267,
|
1017 |
+
#: src/templates/wp-admin/settings/tab-addons.php:268
|
1018 |
msgid "Lock settings"
|
1019 |
msgstr ""
|
1020 |
|
1060 |
msgid "Backup of: %s"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/methods/googledrive.php:270
|
1064 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/methods/dropbox.php:787
|
1068 |
msgid "%s de-authentication"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/methods/dropbox.php:633
|
1072 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/central/bootstrap.php:592
|
1076 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1077 |
msgstr ""
|
1078 |
|
1084 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: src/admin.php:1797
|
1088 |
msgid "Remote files deleted:"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: src/admin.php:1796
|
1092 |
msgid "Local files deleted:"
|
1093 |
msgstr ""
|
1094 |
|
1096 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: src/admin.php:768
|
1100 |
msgid "remote files deleted"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: src/admin.php:766
|
1104 |
msgid "Complete"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: src/admin.php:765
|
1108 |
msgid "Do you want to carry out the import?"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: src/admin.php:764
|
1112 |
msgid "Which was exported on:"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: src/admin.php:763
|
1116 |
msgid "This will import data from:"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/admin.php:762
|
1120 |
msgid "Importing..."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/admin.php:758
|
1124 |
msgid "You have not yet selected a file to import."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/admin.php:742
|
1128 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1129 |
msgstr ""
|
1130 |
|
1157 |
msgid "An error response was received; HTTP code:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: src/includes/class-commands.php:337
|
1161 |
msgid "%s add-on not found"
|
1162 |
msgstr ""
|
1163 |
|
1169 |
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"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: src/admin.php:2543
|
1173 |
msgid "To fix this problem go here."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: src/admin.php:2543
|
1177 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: src/admin.php:726
|
1181 |
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."
|
1182 |
msgstr ""
|
1183 |
|
1209 |
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."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: src/methods/s3.php:1143
|
1213 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: src/methods/s3.php:128
|
1217 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1218 |
msgstr ""
|
1219 |
|
1221 |
msgid "Backup using %s?"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: src/addons/s3-enhanced.php:375
|
1225 |
msgid "Asia Pacific (Mumbai)"
|
1226 |
msgstr ""
|
1227 |
|
1233 |
msgid "FAQs"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: src/central/bootstrap.php:548
|
1237 |
msgid "More information..."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: src/central/bootstrap.php:546
|
1241 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: src/central/bootstrap.php:456
|
1245 |
msgid "Key size: %d bits"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: src/central/bootstrap.php:451
|
1249 |
msgid "Public key was sent to:"
|
1250 |
msgstr ""
|
1251 |
|
1257 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: src/addons/migrator.php:2460
|
1261 |
msgid "Create key"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:540
|
1265 |
msgid "slower, strongest"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1269 |
msgid "recommended"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1273 |
msgid "%s bytes"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: src/addons/migrator.php:2455, src/central/bootstrap.php:538
|
1277 |
msgid "faster (possibility for slow PHP installs)"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: src/addons/migrator.php:2454, src/central/bootstrap.php:537
|
1281 |
msgid "easy to break, fastest"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: src/addons/migrator.php:2454, src/addons/migrator.php:2455,
|
1285 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:537,
|
1286 |
+
#: src/central/bootstrap.php:538, src/central/bootstrap.php:540
|
1287 |
msgid "%s bits"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: src/addons/migrator.php:2452, src/central/bootstrap.php:535
|
1291 |
msgid "Encryption key size:"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: src/addons/migrator.php:2450
|
1295 |
msgid "Enter your chosen name"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: src/addons/migrator.php:2449
|
1299 |
+
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: src/methods/googledrive.php:530
|
1303 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1304 |
msgstr ""
|
1305 |
|
1311 |
msgid "login"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: src/addons/reporting.php:521, src/addons/reporting.php:521,
|
1315 |
+
#: src/addons/reporting.php:523, src/methods/email.php:100
|
1316 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1317 |
msgstr ""
|
1318 |
|
1320 |
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."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: src/class-updraftplus.php:1859
|
1324 |
msgid "Size: %s MB"
|
1325 |
msgstr ""
|
1326 |
|
1332 |
msgid "Now"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
1336 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1337 |
msgstr ""
|
1338 |
|
1340 |
msgid "(tap on an icon to select or unselect)"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: src/methods/updraftvault.php:333, src/methods/updraftvault.php:339,
|
1344 |
+
#: src/methods/updraftvault.php:345
|
1345 |
msgid "%s per year"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: src/methods/updraftvault.php:332, src/methods/updraftvault.php:338,
|
1349 |
+
#: src/methods/updraftvault.php:344
|
1350 |
msgid "or (annual discount)"
|
1351 |
msgstr ""
|
1352 |
|
1354 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: src/class-updraftplus.php:586, src/class-updraftplus.php:631
|
1358 |
msgid "The given file was not found, or could not be read."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: src/central/bootstrap.php:590
|
1362 |
msgid "UpdraftCentral (Remote Control)"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: src/central/bootstrap.php:579
|
1366 |
msgid "View recent UpdraftCentral log events"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: src/central/bootstrap.php:529
|
1370 |
msgid "Enter any description"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: src/central/bootstrap.php:528
|
1374 |
msgid "Description"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: src/central/bootstrap.php:461
|
1378 |
msgid "Delete..."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/central/bootstrap.php:454
|
1382 |
msgid "Created:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/central/bootstrap.php:451
|
1386 |
msgid "Access this site as user:"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/central/bootstrap.php:475
|
1390 |
msgid "Details"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: src/central/bootstrap.php:474
|
1394 |
msgid "Key description"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: src/central/bootstrap.php:347, src/central/bootstrap.php:358
|
1398 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: src/central/bootstrap.php:217
|
1402 |
msgid "An invalid URL was entered"
|
1403 |
msgstr ""
|
1404 |
|
1438 |
msgid "UpdraftCentral Connection"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2934
|
1442 |
msgid "The backup was aborted by the user"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: src/admin.php:4735
|
1446 |
msgid "Your settings have been saved."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: src/admin.php:3787
|
1450 |
msgid "Total backup size:"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: src/admin.php:3144
|
1454 |
msgid "stop"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: src/admin.php:2986
|
1458 |
msgid "The backup has finished running"
|
1459 |
msgstr ""
|
1460 |
|
1480 |
msgid "calculate"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: src/admin.php:741
|
1484 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: src/admin.php:734
|
1488 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: src/admin.php:733
|
1492 |
msgid "Please enter a valid URL"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: src/admin.php:716
|
1496 |
msgid "Saving..."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: src/admin.php:679
|
1500 |
msgid "Error: the server sent us a response which we did not understand."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/admin.php:671
|
1504 |
msgid "Fetching..."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/addons/s3-enhanced.php:372
|
1508 |
msgid "Asia Pacific (Seoul)"
|
1509 |
msgstr ""
|
1510 |
|
1516 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/class-updraftplus.php:4289, src/restorer.php:1819
|
1520 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: src/class-updraftplus.php:4285
|
1524 |
msgid "Please read this link for important information on this process."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: src/class-updraftplus.php:4285
|
1528 |
msgid "It will be imported as a new site."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: src/admin.php:2702, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
1532 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1533 |
msgid "Dismiss"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: src/admin.php:753
|
1537 |
msgid "Please fill in the required information."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: src/addons/multisite.php:581
|
1541 |
msgid "Read more..."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: src/addons/multisite.php:572
|
1545 |
msgid "may include some site-wide data"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: src/addons/multisite.php:567
|
1549 |
msgid "All sites"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: src/addons/multisite.php:563
|
1553 |
msgid "Which site to restore"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/addons/migrator.php:618, src/addons/migrator.php:619
|
1557 |
msgid "Error when creating new site at your chosen address:"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/addons/migrator.php:560
|
1561 |
msgid "Required information for restoring this backup was not given (%s)"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/addons/migrator.php:512
|
1565 |
msgid "Attribute imported content to user"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/addons/migrator.php:502, src/addons/migrator.php:504
|
1569 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/addons/migrator.php:490
|
1573 |
msgid "This feature is not compatible with %s"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/addons/migrator.php:488, src/addons/migrator.php:490
|
1577 |
msgid "Importing a single site into a multisite install"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: src/addons/migrator.php:479
|
1581 |
msgid "other content from wp-content"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: src/addons/migrator.php:476
|
1585 |
msgid "WordPress core"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: src/addons/migrator.php:476, src/addons/migrator.php:479,
|
1589 |
+
#: src/addons/migrator.php:482
|
1590 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1591 |
msgstr ""
|
1592 |
|
1594 |
msgid "Call WordPress action:"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: src/admin.php:2812
|
1598 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: src/admin.php:4241
|
1602 |
msgid "Skipping: this archive was already restored."
|
1603 |
msgstr ""
|
1604 |
|
1630 |
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)."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/admin.php:4609
|
1634 |
msgid "Send this backup to remote storage"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/admin.php:4607
|
1638 |
msgid "Check out UpdraftPlus Vault."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/admin.php:4607
|
1642 |
msgid "Not got any remote storage?"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/admin.php:4607
|
1646 |
msgid "settings"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: src/admin.php:4607
|
1650 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: src/admin.php:2810
|
1654 |
msgid "Include any files in the backup"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: src/admin.php:2796
|
1658 |
msgid "Include the database in the backup"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: src/admin.php:2701
|
1662 |
msgid "Continue restoration"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: src/admin.php:2696
|
1666 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: src/admin.php:2695
|
1670 |
msgid "Unfinished restoration"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: src/admin.php:2693
|
1674 |
msgid "%s minutes, %s seconds"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: src/admin.php:2640
|
1678 |
msgid "Backup Contents And Schedule"
|
1679 |
msgstr ""
|
1680 |
|
1682 |
msgid "Premium / Extensions"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: src/admin.php:2409, src/admin.php:2418
|
1686 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: src/addons/morefiles.php:77, src/admin.php:739
|
1690 |
msgctxt "(verb)"
|
1691 |
msgid "Download"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: src/admin.php:664
|
1695 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1696 |
msgstr ""
|
1697 |
|
1822 |
msgid "Could not access container"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: src/class-updraftplus.php:2951
|
1826 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1827 |
msgstr ""
|
1828 |
|
1951 |
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)."
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: src/admin.php:1795
|
1955 |
msgid "Backup sets removed:"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: src/admin.php:752
|
1959 |
msgid "Processing..."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: src/admin.php:750
|
1963 |
msgid "For backups older than"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: src/admin.php:749
|
1967 |
msgid "week(s)"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: src/admin.php:748
|
1971 |
msgid "hour(s)"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: src/admin.php:747
|
1975 |
msgid "day(s)"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: src/admin.php:746
|
1979 |
msgid "in the month"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: src/admin.php:745
|
1983 |
msgid "day"
|
1984 |
msgstr ""
|
1985 |
|
1987 |
msgid "(as many as you like)"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: src/addons/fixtime.php:306, src/addons/fixtime.php:311
|
1991 |
msgid "Add an additional retention rule..."
|
1992 |
msgstr ""
|
1993 |
|
1999 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: src/methods/updraftvault.php:707
|
2003 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: src/class-updraftplus.php:4358
|
2007 |
msgid "You must upgrade MySQL to be able to use this database."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: src/class-updraftplus.php:4358
|
2011 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: src/admin.php:2528
|
2015 |
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."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: src/methods/updraftvault.php:365
|
2019 |
msgid "Don't know your email address, or forgotten your password?"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: src/methods/updraftvault.php:358
|
2023 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2027 |
msgid "Read the FAQs here."
|
2028 |
msgstr ""
|
2029 |
|
2035 |
msgid "Server-side encryption"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: src/methods/updraftvault.php:715
|
2039 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: src/admin.php:1013
|
2043 |
msgid "Go to the remote storage settings in order to connect."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: src/admin.php:1013
|
2047 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: src/methods/updraftvault.php:348
|
2051 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: src/admin.php:722
|
2055 |
msgid "Update quota count"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: src/admin.php:721
|
2059 |
msgid "Counting..."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: src/admin.php:720
|
2063 |
msgid "Disconnecting..."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: src/admin.php:718
|
2067 |
msgid "Connecting..."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: src/methods/updraftvault.php:468, src/methods/updraftvault.php:542
|
2071 |
msgid "Refresh current status"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: src/methods/updraftvault.php:466, src/methods/updraftvault.php:482,
|
2075 |
+
#: src/methods/updraftvault.php:484, src/methods/updraftvault.php:542
|
2076 |
msgid "Get more quota"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: src/methods/updraftvault.php:463, src/methods/updraftvault.php:479,
|
2080 |
+
#: src/methods/updraftvault.php:523
|
2081 |
msgid "Current use:"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: src/methods/updraftvault.php:458
|
2085 |
msgid "You can get more quota here"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: src/methods/updraftvault.php:458
|
2089 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: src/admin.php:719, src/methods/updraftvault.php:392,
|
2093 |
+
#: src/methods/updraftvault.php:450
|
2094 |
msgid "Disconnect"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: src/methods/updraftvault.php:389, src/methods/updraftvault.php:442
|
2098 |
msgid "Quota:"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2102 |
msgid "Vault owner"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2106 |
msgid "Well done - there's nothing more needed to set up."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2110 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: src/methods/updraftvault.php:394, src/methods/updraftvault.php:436
|
2114 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: src/methods/updraftvault.php:365
|
2118 |
msgid "Go here for help"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: src/methods/updraftvault.php:360
|
2122 |
msgid "E-mail"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: src/addons/migrator.php:183, src/central/bootstrap.php:565,
|
2126 |
+
#: src/methods/updraftvault.php:354, src/methods/updraftvault.php:368
|
2127 |
msgid "Back..."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: src/methods/updraftvault.php:348
|
2131 |
msgid "Subscriptions can be cancelled at any time."
|
2132 |
msgstr ""
|
2133 |
|
2135 |
msgid "Buy it now"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: src/methods/updraftvault.php:331, src/methods/updraftvault.php:337,
|
2139 |
+
#: src/methods/updraftvault.php:343
|
2140 |
msgid "%s per quarter"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: src/central/bootstrap.php:592, src/methods/updraftvault.php:322,
|
2144 |
+
#: src/methods/updraftvault.php:351
|
2145 |
msgid "Read more about it here."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2149 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: src/methods/updraftvault.php:318
|
2153 |
msgid "Already purchased space?"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: src/methods/updraftvault.php:315
|
2157 |
msgid "Show the options"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: src/methods/updraftvault.php:314
|
2161 |
msgid "First time user?"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2165 |
msgid "Press a button to get started."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2169 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2170 |
msgstr ""
|
2171 |
|
2185 |
msgid "Updraft Vault"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:527,
|
2189 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1171
|
2190 |
msgid "Delete failed:"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: src/backup.php:3366
|
2194 |
msgid "The zip engine returned the message: %s."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: src/addons/s3-enhanced.php:396
|
2198 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: src/addons/s3-enhanced.php:394
|
2202 |
msgid "Allow deletion"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/addons/s3-enhanced.php:392
|
2206 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/addons/s3-enhanced.php:390
|
2210 |
msgid "Allow download"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: src/addons/migrator.php:1941
|
2214 |
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."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: src/addons/migrator.php:1926, src/admin.php:728
|
2218 |
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."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: src/addons/migrator.php:2492
|
2222 |
msgid "Existing keys"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: src/addons/migrator.php:2465
|
2226 |
msgid "Your new key:"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: src/central/bootstrap.php:401
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2230 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: src/addons/migrator.php:2046, src/central/bootstrap.php:401
|
2234 |
msgid "Key created successfully."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: src/addons/migrator.php:2031
|
2238 |
msgid "A key with this name already exists; you must use a unique name."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: src/addons/migrator.php:1972
|
2242 |
msgid "Also send this backup to the active remote storage locations"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: src/addons/migrator.php:1937
|
2246 |
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."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: src/addons/migrator.php:1893
|
2250 |
msgid "site not found"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: src/addons/migrator.php:1878
|
2254 |
msgid "Backup data will be sent to:"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: src/addons/migrator.php:215
|
2258 |
msgid "Restore an existing backup set onto this site"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: src/addons/migrator.php:222
|
2262 |
msgid "This site has no backups to restore from yet."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: src/addons/reporting.php:171
|
2266 |
msgid "Backup made by %s"
|
2267 |
msgstr ""
|
2268 |
|
2270 |
msgid "This storage method does not allow downloading"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: src/admin.php:3972
|
2274 |
msgid "(backup set imported from remote location)"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: src/addons/wp-cli.php:344,
|
2278 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2279 |
msgid "Site"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: src/addons/wp-cli.php:342,
|
2283 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2284 |
msgid "Backup sent to remote site - not available for download."
|
2285 |
msgstr ""
|
2292 |
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."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: src/addons/migrator.php:1954, src/admin.php:735
|
2296 |
msgid "Testing connection..."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: src/admin.php:732
|
2300 |
msgid "Deleting..."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: src/admin.php:731
|
2304 |
msgid "key name"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: src/admin.php:729
|
2308 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: src/admin.php:726
|
2312 |
msgid "Creating..."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: src/addons/migrator.php:2443
|
2316 |
msgid "Or, receive a backup from a remote site"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: src/addons/migrator.php:2431
|
2320 |
msgid "Paste key here"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: src/addons/migrator.php:2427
|
2324 |
msgid "How do I get a site's key?"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: src/addons/migrator.php:2427
|
2328 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: src/addons/migrator.php:2421
|
2332 |
msgid "Or, send a backup to another site"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: src/addons/migrator.php:2128, src/admin.php:736
|
2336 |
msgid "Send"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: src/addons/migrator.php:2122, src/admin.php:727
|
2340 |
msgid "Send to site:"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: src/addons/migrator.php:2120
|
2344 |
msgid "No receiving sites have yet been added."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: src/addons/migrator.php:2101
|
2348 |
msgid "It is for sending backups to the following site: "
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: src/addons/migrator.php:2101
|
2352 |
msgid "The key was successfully added."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: src/addons/migrator.php:2085
|
2356 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: src/addons/migrator.php:2074, src/addons/migrator.php:2076,
|
2360 |
+
#: src/addons/migrator.php:2080
|
2361 |
msgid "The entered key was corrupt - please try again."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: src/addons/migrator.php:2072
|
2365 |
msgid "The entered key was the wrong length - please try again."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: src/addons/migrator.php:2062
|
2369 |
msgid "key"
|
2370 |
msgstr ""
|
2371 |
|
2401 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: src/admin.php:725
|
2405 |
msgid "Resetting..."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: src/addons/migrator.php:2431, src/admin.php:724
|
2409 |
msgid "Add site"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: src/admin.php:723
|
2413 |
msgid "Adding..."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: src/udaddons/options.php:322
|
2417 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2418 |
msgstr ""
|
2419 |
|
2433 |
msgid "Go here to re-enter your password."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: src/addons/migrator.php:257
|
2437 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: src/addons/migrator.php:215
|
2441 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2442 |
msgstr ""
|
2443 |
|
2445 |
msgid "To restore using any of the backup sets below, press the button."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: src/admin.php:715, src/admin.php:741, src/admin.php:742
|
2449 |
msgid "You have made changes to your settings, and not saved."
|
2450 |
msgstr ""
|
2451 |
|
2457 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1941,
|
2461 |
#: src/addons/onedrive.php:1074
|
2462 |
msgid "For longer help, including screenshots, follow this link."
|
2463 |
msgstr ""
|
2487 |
msgid "Please re-authorize the connection to your %s account."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: src/methods/email.php:96
|
2491 |
msgid "configure it here"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680
|
2495 |
msgid "To remove the block, please go here."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: src/addons/s3-enhanced.php:473
|
2499 |
msgid "Do remember to save your settings."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: src/addons/s3-enhanced.php:473
|
2503 |
msgid "You are now using a IAM user account to access your bucket."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: src/addons/s3-enhanced.php:388
|
2507 |
msgid "S3 bucket"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/addons/s3-enhanced.php:378
|
2511 |
msgid "China (Beijing) (restricted)"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/addons/s3-enhanced.php:377
|
2515 |
msgid "South America (Sao Paulo)"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: src/addons/s3-enhanced.php:376
|
2519 |
msgid "Asia Pacific (Tokyo)"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: src/addons/s3-enhanced.php:374
|
2523 |
msgid "Asia Pacific (Sydney)"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: src/addons/s3-enhanced.php:373
|
2527 |
msgid "Asia Pacific (Singapore)"
|
2528 |
msgstr ""
|
2529 |
|
2571 |
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."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: src/addons/s3-enhanced.php:425
|
2575 |
msgid "Create new IAM user and S3 bucket"
|
2576 |
msgstr ""
|
2577 |
|
2636 |
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)"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: src/methods/s3.php:922
|
2640 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2641 |
msgstr ""
|
2642 |
|
2649 |
msgstr ""
|
2650 |
|
2651 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2652 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:873,
|
2653 |
#: src/udaddons/updraftplus-addons.php:887
|
2654 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2658 |
#: src/udaddons/updraftplus-addons.php:887
|
2659 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2663 |
#: src/udaddons/updraftplus-addons.php:887
|
2664 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2665 |
msgstr ""
|
2686 |
|
2687 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2688 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2689 |
+
#: src/templates/wp-admin/settings/tab-addons.php:289
|
2690 |
msgid "UpdraftPlus Premium"
|
2691 |
msgstr ""
|
2692 |
|
2699 |
msgid "Dismiss (for %s months)"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: src/addons/fixtime.php:447
|
2703 |
msgid "(at same time as files backup)"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: src/admin.php:3443
|
2707 |
msgid "No backup has been completed"
|
2708 |
msgstr ""
|
2709 |
|
2736 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: src/methods/s3.php:179, src/methods/s3.php:180, src/methods/s3.php:181,
|
2740 |
+
#: src/methods/s3.php:189, src/methods/s3.php:190, src/methods/s3.php:191
|
2741 |
msgid "%s Error: Failed to initialise"
|
2742 |
msgstr ""
|
2743 |
|
2746 |
msgid "or"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: src/admin.php:709
|
2750 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2751 |
msgstr ""
|
2752 |
|
2777 |
msgid "Check this box to have a basic report sent to"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: src/admin.php:3457
|
2781 |
msgctxt "i.e. Non-automatic"
|
2782 |
msgid "Manual"
|
2783 |
msgstr ""
|
2791 |
msgid "Change Lock Settings"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: src/addons/morefiles.php:271
|
2795 |
msgid "Any other file/directory on your server that you wish to back up"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: src/admin.php:2545
|
2799 |
msgid "For even more features and personal support, check out "
|
2800 |
msgstr ""
|
2801 |
|
2804 |
msgstr ""
|
2805 |
|
2806 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2807 |
+
#: src/admin.php:714
|
2808 |
msgid "Automatic backup before update"
|
2809 |
msgstr ""
|
2810 |
|
2865 |
msgstr ""
|
2866 |
|
2867 |
#: src/addons/lockadmin.php:156,
|
2868 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:8
|
2869 |
msgid "Lock access to the UpdraftPlus settings page"
|
2870 |
msgstr ""
|
2871 |
|
2881 |
msgid "The admin password has now been removed."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: src/addons/morefiles.php:154
|
2885 |
msgid "(learn more about this significant option)"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: src/udaddons/options.php:265
|
2889 |
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."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: src/admin.php:2986, src/admin.php:4003
|
2893 |
msgid "View Log"
|
2894 |
msgstr ""
|
2895 |
|
2906 |
msgid "and retain this many scheduled backups"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: src/admin.php:3413
|
2910 |
msgid "incremental backup; base backup: %s"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:19
|
2914 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2915 |
msgstr ""
|
2916 |
|
2918 |
msgid "Upload files into UpdraftPlus."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: src/admin.php:959, src/includes/class-commands.php:391,
|
2922 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2923 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: src/class-updraftplus.php:4274
|
2927 |
msgid "Backup label:"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: src/addons/backblaze.php:205, src/admin.php:2056
|
2931 |
msgid "Error: unexpected file read fail"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: src/backup.php:3372
|
2935 |
msgid "check your log for more details."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: src/backup.php:3370
|
2939 |
msgid "your web hosting account appears to be full; please see: %s"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: src/backup.php:3368
|
2943 |
msgid "A zip error occurred"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: src/addons/reporting.php:66
|
2947 |
msgid "Your label for this backup (optional)"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1192
|
2951 |
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."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:926
|
2955 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:922
|
2959 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:790
|
2963 |
msgid "You need to supply both an email address and a password"
|
2964 |
msgstr ""
|
2965 |
|
2967 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: src/class-updraftplus.php:4293
|
2971 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: src/class-updraftplus.php:4293
|
2975 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: src/addons/migrator.php:1239
|
2979 |
msgid "already done"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: src/addons/migrator.php:1196
|
2983 |
msgid "skipped (not in list)"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: src/addons/migrator.php:1196, src/addons/migrator.php:1239,
|
2987 |
+
#: src/addons/migrator.php:1373
|
2988 |
msgid "Search and replacing table:"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: src/addons/migrator.php:373
|
2992 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: src/addons/migrator.php:373
|
2996 |
msgid "These tables only"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: src/addons/migrator.php:372
|
3000 |
msgid "Rows per batch"
|
3001 |
msgstr ""
|
3002 |
|
3008 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: src/class-updraftplus.php:4266
|
3012 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: src/class-updraftplus.php:4266
|
3016 |
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."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: src/class-updraftplus.php:4266
|
3020 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: src/class-updraftplus.php:4266
|
3024 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3025 |
msgstr ""
|
3026 |
|
3049 |
msgid "UpdraftPlus is on social media - check us out!"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: src/admin.php:4070
|
3053 |
msgid "Why am I seeing this?"
|
3054 |
msgstr ""
|
3055 |
|
3061 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: src/admin.php:1995, src/admin.php:2007
|
3065 |
msgid "Start backup"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
3069 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: src/admin.php:3311
|
3073 |
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."
|
3074 |
msgstr ""
|
3075 |
|
3077 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: src/admin.php:2231
|
3081 |
msgid "This file could not be uploaded"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: src/admin.php:2194
|
3085 |
msgid "You will find more information about this in the Settings section."
|
3086 |
msgstr ""
|
3087 |
|
3101 |
msgid "Memory limit"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: src/class-updraftplus.php:4707, src/restorer.php:1608
|
3105 |
msgid "restoration"
|
3106 |
msgstr ""
|
3107 |
|
3125 |
msgid "Backup succeeded"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: src/admin.php:3458, src/admin.php:3459, src/admin.php:3460,
|
3129 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3130 |
msgid "Every %s hours"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:892
|
3134 |
msgid "search and replace"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: src/addons/migrator.php:375
|
3138 |
msgid "Go"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: src/addons/migrator.php:364
|
3142 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: src/addons/migrator.php:363
|
3146 |
msgid "This can easily destroy your site; so, use it with care!"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: src/addons/migrator.php:319, src/addons/migrator.php:371
|
3150 |
msgid "Replace with"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: src/addons/migrator.php:318, src/addons/migrator.php:370
|
3154 |
msgid "Search for"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: src/addons/migrator.php:317, src/addons/migrator.php:362,
|
3158 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3159 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3160 |
msgid "Search / replace database"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: src/addons/migrator.php:323
|
3164 |
msgid "search term"
|
3165 |
msgstr ""
|
3166 |
|
3176 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: src/methods/googledrive.php:1199
|
3180 |
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."
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: src/admin.php:3814
|
3184 |
msgid "You have not yet made any backups."
|
3185 |
msgstr ""
|
3186 |
|
3200 |
msgid "Free disk space in account:"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: src/admin.php:4706, src/templates/wp-admin/settings/tab-status.php:27
|
3204 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: src/admin.php:540, src/admin.php:683, src/admin.php:1843,
|
3208 |
#: src/includes/deprecated-actions.php:29,
|
3209 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3210 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
3215 |
msgid "Current Status"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: src/admin.php:964
|
3219 |
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."
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: src/admin.php:964
|
3223 |
msgid "To make a backup, just press the Backup Now button."
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: src/admin.php:964
|
3227 |
msgid "Welcome to UpdraftPlus!"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: src/addons/moredatabase.php:323
|
3231 |
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)."
|
3232 |
msgstr ""
|
3233 |
|
3295 |
msgid "user"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: src/class-updraftplus.php:1856
|
3299 |
msgid "External database (%s)"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: src/methods/googledrive.php:1199
|
3303 |
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."
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: src/methods/googledrive.php:494
|
3307 |
msgid "failed to access parent folder"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3311 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:434,
|
3312 |
+
#: src/methods/googledrive.php:447
|
3313 |
msgid "However, subsequent access attempts failed:"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: src/addons/wp-cli.php:388, src/admin.php:3839
|
3317 |
msgid "External database"
|
3318 |
msgstr ""
|
3319 |
|
3345 |
msgid "use UpdraftPlus Premium"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: src/class-updraftplus.php:4120
|
3349 |
msgid "Decryption failed. The database file is encrypted."
|
3350 |
msgstr ""
|
3351 |
|
3366 |
msgid "database connection attempt failed."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: src/addons/migrator.php:1127
|
3370 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3371 |
msgstr ""
|
3372 |
|
3428 |
msgid "Failed to upload %s"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
3432 |
msgid "Success:"
|
3433 |
msgstr ""
|
3434 |
|
3436 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:612
|
3440 |
msgid "(You appear to be already authenticated)."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: src/methods/dropbox.php:608
|
3444 |
msgid "Dropbox"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:608
|
3448 |
msgid "Authenticate with %s"
|
3449 |
msgstr ""
|
3450 |
|
3476 |
msgstr ""
|
3477 |
|
3478 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3479 |
+
#: src/methods/dropbox.php:665, src/methods/googledrive.php:1278
|
3480 |
msgid "Account holder's name: %s."
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: src/methods/googledrive.php:1255
|
3484 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: src/methods/googledrive.php:1242
|
3488 |
msgid "It is an ID number internal to Google Drive"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: src/methods/googledrive.php:1242
|
3492 |
msgid "<strong>This is NOT a folder name</strong>."
|
3493 |
msgstr ""
|
3494 |
|
3495 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3496 |
+
#: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248
|
3497 |
msgid "Folder"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3501 |
+
#: src/methods/googledrive.php:1152
|
3502 |
msgid "%s download: failed: file not found"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
|
3506 |
msgid "Name: %s."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: src/methods/googledrive.php:208
|
3510 |
msgid "Google Drive list files: failed to access parent folder"
|
3511 |
msgstr ""
|
3512 |
|
3531 |
msgid "Fetch"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: src/addons/migrator.php:488,
|
3535 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3536 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3537 |
msgid "This feature requires %s version %s or later"
|
3541 |
msgid "Failed to unpack the archive"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: src/class-updraftplus.php:1380
|
3545 |
msgid "Error - failed to download the file"
|
3546 |
msgstr ""
|
3547 |
|
3565 |
msgid "password/key"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: src/addons/migrator.php:2450, src/addons/sftp.php:451, src/admin.php:730,
|
3569 |
+
#: src/admin.php:4995
|
3570 |
msgid "Key"
|
3571 |
msgstr ""
|
3572 |
|
3582 |
msgid "SCP/SFTP password/key"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3586 |
msgid "Files backup (created by %s)"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3590 |
msgid "Files and database WordPress backup (created by %s)"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: src/addons/importer.php:276, src/admin.php:3877,
|
3594 |
#: src/includes/class-backup-history.php:349
|
3595 |
msgid "Backup created by: %s."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: src/addons/wp-cli.php:382, src/admin.php:3837
|
3599 |
msgid "Database (created by %s)"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: src/addons/wp-cli.php:380, src/admin.php:3831, src/admin.php:3879
|
3603 |
msgid "unknown source"
|
3604 |
msgstr ""
|
3605 |
|
3611 |
msgid "Upload backup files"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: src/admin.php:2246
|
3615 |
msgid "This backup was created by %s, and can be imported."
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: src/admin.php:993
|
3619 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: src/admin.php:993
|
3623 |
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."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: src/admin.php:695, src/includes/class-backup-history.php:356
|
3627 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: src/admin.php:694
|
3631 |
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."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: src/admin.php:694, src/admin.php:695,
|
3635 |
#: src/includes/class-backup-history.php:356
|
3636 |
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))."
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: src/admin.php:3880, src/includes/class-wpadmin-commands.php:152,
|
3640 |
#: src/restorer.php:1577
|
3641 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3642 |
msgstr ""
|
3657 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: src/addons/backblaze.php:579, src/methods/cloudfiles.php:234,
|
3661 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3662 |
msgid "No settings were found"
|
3663 |
msgstr ""
|
3666 |
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."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: src/admin.php:661
|
3670 |
msgid "Rescanning remote and local storage for backup sets..."
|
3671 |
msgstr ""
|
3672 |
|
3675 |
msgid "(Read more)"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: src/addons/reporting.php:487
|
3679 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: src/addons/morefiles.php:521
|
3683 |
msgid "No backup of location: there was nothing found to back up"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:310,
|
3687 |
+
#: src/addons/morefiles.php:331
|
3688 |
msgid "Remove"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: src/methods/s3.php:873
|
3692 |
msgid "Other %s FAQs."
|
3693 |
msgstr ""
|
3694 |
|
3696 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: src/addons/morefiles.php:468, src/admin.php:3562
|
3700 |
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."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330,
|
3704 |
#: src/restorer.php:1608
|
3705 |
msgid "Your hosting company must enable these functions before %s can work."
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330
|
3709 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3710 |
msgstr ""
|
3711 |
|
3725 |
msgid "Backup created by:"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: src/udaddons/options.php:490
|
3729 |
msgid "Available to claim on this site"
|
3730 |
msgstr ""
|
3731 |
|
3775 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: src/class-updraftplus.php:4757
|
3779 |
msgid "The attempt to undo the double-compression succeeded."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: src/class-updraftplus.php:4734, src/class-updraftplus.php:4755
|
3783 |
msgid "The attempt to undo the double-compression failed."
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: src/class-updraftplus.php:4727
|
3787 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: src/includes/class-wpadmin-commands.php:315
|
3791 |
msgid "Constants"
|
3792 |
msgstr ""
|
3793 |
|
3803 |
msgid "please wait for the rescheduled attempt"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: src/addons/reporting.php:217
|
3807 |
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."
|
3808 |
msgstr ""
|
3809 |
|
3816 |
msgid "Errors occurred:"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/admin.php:4089
|
3820 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3821 |
msgstr ""
|
3822 |
|
3840 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: src/admin.php:968, src/class-updraftplus.php:865
|
3844 |
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)"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: src/addons/migrator.php:290
|
3848 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3849 |
msgstr ""
|
3850 |
|
3853 |
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."
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: src/addons/moredatabase.php:137, src/admin.php:1587
|
3857 |
msgid "Messages:"
|
3858 |
msgstr ""
|
3859 |
|
3951 |
msgstr ""
|
3952 |
|
3953 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3954 |
+
#: src/methods/cloudfiles.php:492
|
3955 |
msgid "Cloud Files Container"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:487
|
3959 |
msgid "Cloud Files API Key"
|
3960 |
msgstr ""
|
3961 |
|
4014 |
msgid "Authorisation failed (check your credentials)"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/includes/class-commands.php:718, src/methods/updraftvault.php:630,
|
4018 |
+
#: src/udaddons/options.php:257
|
4019 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: src/admin.php:708, src/central/bootstrap.php:560
|
4023 |
msgid "Create"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: src/admin.php:670
|
4027 |
msgid "Trying..."
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: src/admin.php:669
|
4031 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: src/admin.php:680, src/admin.php:4387
|
4035 |
msgid "Error data:"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: src/admin.php:4041
|
4039 |
msgid "Backup does not exist in the backup history"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: src/admin.php:2921
|
4043 |
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."
|
4044 |
msgstr ""
|
4045 |
|
4067 |
msgid "Moving old data out of the way..."
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/reporting.php:478
|
4071 |
msgid "Add another address..."
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: src/addons/reporting.php:463
|
4075 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: src/addons/reporting.php:437
|
4079 |
msgid "Email reports"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/class-updraftplus.php:1864, src/class-updraftplus.php:1869
|
4083 |
msgid "%s checksum: %s"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: src/class-updraftplus.php:1837, src/class-updraftplus.php:1839
|
4087 |
msgid "files: %s"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/addons/reporting.php:391
|
4091 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: src/addons/reporting.php:267
|
4095 |
msgid "Debugging information"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: src/addons/reporting.php:222, src/admin.php:3770
|
4099 |
msgid "Uploaded to:"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: src/addons/reporting.php:221
|
4103 |
msgid "Time taken:"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: src/addons/reporting.php:212
|
4107 |
msgid "Warnings"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: src/addons/reporting.php:197
|
4111 |
msgid "Errors"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: src/addons/reporting.php:194
|
4115 |
msgid "Errors / warnings:"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: src/addons/morefiles.php:142, src/addons/morefiles.php:143,
|
4119 |
+
#: src/addons/reporting.php:183
|
4120 |
msgid "Contains:"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: src/addons/reporting.php:182
|
4124 |
msgid "Backup began:"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: src/addons/reporting.php:170
|
4128 |
msgid "Backup Report"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: src/addons/reporting.php:165
|
4132 |
msgid "%d hours, %d minutes, %d seconds"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: src/addons/reporting.php:151
|
4136 |
msgid "%d errors, %d warnings"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:750,
|
4140 |
+
#: src/methods/dropbox.php:772
|
4141 |
msgid "%s authentication"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:534,
|
4145 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:750,
|
4146 |
+
#: src/methods/dropbox.php:772, src/methods/dropbox.php:787,
|
4147 |
+
#: src/methods/dropbox.php:800, src/methods/dropbox.php:943
|
4148 |
msgid "%s error: %s"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:577
|
4152 |
msgid "%s logo"
|
4153 |
msgstr ""
|
4154 |
|
4156 |
msgid "%s did not return the expected response - check your log file for more details"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: src/methods/s3.php:312
|
4160 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: src/methods/email.php:97
|
4164 |
msgid "For more options, use the \"%s\" add-on."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: src/methods/email.php:96
|
4168 |
msgid "Your site's admin email address (%s) will be used."
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: src/admin.php:717, src/admin.php:2723, src/methods/updraftvault.php:319,
|
4172 |
+
#: src/methods/updraftvault.php:362
|
4173 |
msgid "Connect"
|
4174 |
msgstr ""
|
4175 |
|
4177 |
msgid "For more reporting features, use the Reporting add-on."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: src/class-updraftplus.php:4201
|
4181 |
msgid "(version: %s)"
|
4182 |
msgstr ""
|
4183 |
|
|
|
4184 |
#: src/admin.php:658
|
4185 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: src/addons/reporting.php:521, src/admin.php:657
|
4189 |
+
msgid "When the Email storage method is enabled, also send the backup"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: src/addons/reporting.php:181, src/backup.php:1102
|
4193 |
msgid "Latest status:"
|
4194 |
msgstr ""
|
4195 |
|
4201 |
msgid "Backed up: %s"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: src/addons/reporting.php:264, src/backup.php:1052
|
4205 |
msgid "The log file has been attached to this email."
|
4206 |
msgstr ""
|
4207 |
|
4229 |
msgid "Files and database"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: src/options.php:197
|
4233 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: src/options.php:197
|
4237 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: src/options.php:197
|
4241 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: src/options.php:197
|
4245 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: src/options.php:197
|
4249 |
msgid "UpdraftPlus warning:"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/udaddons/options.php:496
|
4253 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: src/udaddons/options.php:482
|
4257 |
msgid "please follow this link to update the plugin in order to activate it"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/udaddons/options.php:479
|
4261 |
msgid "please follow this link to update the plugin in order to get it"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: src/udaddons/options.php:469, src/udaddons/options.php:471
|
4265 |
msgid "latest"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: src/udaddons/options.php:467
|
4269 |
msgid "Your version: %s"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: src/udaddons/options.php:465, src/udaddons/options.php:465
|
4273 |
msgid "You've got it"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: src/udaddons/options.php:426
|
4277 |
msgid "UpdraftPlus Support"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: src/udaddons/options.php:384
|
4281 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: src/udaddons/options.php:373, src/udaddons/updraftplus-addons.php:301
|
4285 |
msgid "UpdraftPlus Addons"
|
4286 |
msgstr ""
|
4287 |
|
4289 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
4293 |
#: src/udaddons/updraftplus-addons.php:933
|
4294 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:929
|
4298 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: src/methods/updraftvault.php:682, src/udaddons/updraftplus-addons.php:892
|
4302 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4303 |
msgstr ""
|
4304 |
|
4310 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: src/methods/email.php:97,
|
4314 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4315 |
+
#: src/templates/wp-admin/settings/tab-addons.php:219,
|
4316 |
+
#: src/templates/wp-admin/settings/tab-addons.php:220
|
4317 |
msgid "Reporting"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: src/admin.php:4992
|
4321 |
msgid "Options (raw)"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: src/addons/reporting.php:519, src/admin.php:656
|
4325 |
msgid "Send a report only when there are warnings/errors"
|
4326 |
msgstr ""
|
4327 |
|
4337 |
msgid "See also the \"More Files\" add-on from our shop."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: src/backup.php:3359, src/class-updraftplus.php:878
|
4341 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: src/class-updraftplus.php:862
|
4345 |
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)"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: src/udaddons/options.php:519
|
4349 |
msgid "Manage Addons"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: src/udaddons/options.php:497, src/udaddons/options.php:497
|
4353 |
msgid "Buy It"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: src/udaddons/options.php:496
|
4357 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: src/udaddons/options.php:490, src/udaddons/options.php:492
|
4361 |
msgid "activate it on this site"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: src/udaddons/options.php:492
|
4365 |
msgid "You have an inactive purchase"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: src/udaddons/options.php:482
|
4369 |
msgid "Assigned to this site"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: src/udaddons/options.php:479
|
4373 |
msgid "Available for this site (via your all-addons purchase)"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: src/udaddons/options.php:473
|
4377 |
msgid "(apparently a pre-release or withdrawn release)"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: src/udaddons/options.php:428
|
4381 |
msgid "Go here"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: src/udaddons/options.php:428
|
4385 |
msgid "Need to get support?"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: src/udaddons/options.php:410
|
4389 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: src/udaddons/options.php:324
|
4393 |
msgid "An unknown response was received. Response was:"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: src/udaddons/options.php:323
|
4397 |
msgid "Claim not granted - your account login details were wrong"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: src/udaddons/options.php:321
|
4401 |
msgid "Please wait whilst we make the claim..."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/udaddons/options.php:275
|
4405 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: src/udaddons/options.php:268
|
4409 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: src/udaddons/options.php:264
|
4413 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: src/udaddons/options.php:263
|
4417 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: src/admin.php:2721
|
4421 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4422 |
msgstr ""
|
4423 |
|
4461 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4465 |
msgid "Without it, encryption will be a lot slower."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4469 |
msgid "Your web-server does not have the %s module installed."
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1267
|
4473 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4474 |
msgstr ""
|
4475 |
|
4477 |
msgid "Drop backup files here"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: src/admin.php:668
|
4481 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: src/admin.php:666
|
4485 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: src/addons/wp-cli.php:93, src/admin.php:663
|
4489 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4490 |
msgstr ""
|
4491 |
|
4505 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:143,
|
4509 |
+
#: src/methods/stream-base.php:148
|
4510 |
msgid "Upload failed"
|
4511 |
msgstr ""
|
4512 |
|
4514 |
msgid "You can send a backup to more than one destination with an add-on."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: src/admin.php:3144
|
4518 |
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."
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: src/admin.php:3043
|
4522 |
msgid "(%s%%, file %s of %s)"
|
4523 |
msgstr ""
|
4524 |
|
4547 |
msgid "SCP/SFTP host setting"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: src/methods/email.php:67
|
4551 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4552 |
msgstr ""
|
4553 |
|
4555 |
msgid "Backup is of: %s."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/admin.php:756
|
4559 |
msgid "%s settings test result:"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: src/admin.php:3945, src/admin.php:3947
|
4563 |
msgid "(Not finished)"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: src/admin.php:3947
|
4567 |
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."
|
4568 |
msgstr ""
|
4569 |
|
4575 |
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)."
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: src/admin.php:3139
|
4579 |
msgid "Job ID: %s"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: src/admin.php:3124
|
4583 |
msgid "last activity: %ss ago"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: src/admin.php:3123
|
4587 |
msgid "next resumption: %d (after %ss)"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: src/admin.php:3106, src/central/bootstrap.php:442,
|
4591 |
+
#: src/central/bootstrap.php:449, src/methods/updraftvault.php:410,
|
4592 |
+
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
4593 |
msgid "Unknown"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/admin.php:3057
|
4597 |
msgid "Backup finished"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/admin.php:3052
|
4601 |
msgid "Waiting until scheduled time to retry because of errors"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/admin.php:3048
|
4605 |
msgid "Pruning old backup sets"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: src/admin.php:3036
|
4609 |
msgid "Uploading files to remote storage"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: src/admin.php:3104
|
4613 |
msgid "Encrypted database"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: src/admin.php:3096
|
4617 |
msgid "Encrypting database"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: src/admin.php:3070
|
4621 |
msgid "Created database backup"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: src/admin.php:3083
|
4625 |
msgid "table: %s"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: src/admin.php:3081
|
4629 |
msgid "Creating database backup"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: src/admin.php:3031
|
4633 |
msgid "Created file backup zips"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: src/admin.php:3018
|
4637 |
msgid "Creating file backup zips"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: src/admin.php:3013
|
4641 |
msgid "Backup begun"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: src/admin.php:2846
|
4645 |
msgid "Backups in progress:"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: src/admin.php:972
|
4649 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4650 |
msgstr ""
|
4651 |
|
4661 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: src/class-updraftplus.php:2958
|
4665 |
msgid "The backup has not finished; a resumption is scheduled"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: src/class-updraftplus.php:2142
|
4669 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4670 |
msgstr ""
|
4671 |
|
4674 |
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)."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: src/admin.php:2572
|
4678 |
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)."
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: src/addons/autobackup.php:1085, src/admin.php:710
|
4682 |
msgid "Proceed with update"
|
4683 |
msgstr ""
|
4684 |
|
4727 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4731 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4735 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: src/addons/morefiles.php:203
|
4739 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: src/addons/morefiles.php:193
|
4743 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4744 |
msgstr ""
|
4745 |
|
4754 |
msgid "Support"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: src/class-updraftplus.php:4506
|
4758 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: src/class-updraftplus.php:4498
|
4762 |
msgid "This database backup is missing core WordPress tables: %s"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: src/class-updraftplus.php:4259
|
4766 |
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."
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: src/class-updraftplus.php:4258, src/class-updraftplus.php:4265
|
4770 |
msgid "%s version: %s"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: src/class-updraftplus.php:4137
|
4774 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: src/addons/autobackup.php:1053, src/admin.php:807,
|
4778 |
#: src/includes/updraftplus-notices.php:171
|
4779 |
msgid "Be safe with an automatic backup"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: src/admin.php:2525
|
4783 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: src/admin.php:704
|
4787 |
msgid "The file was uploaded."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/admin.php:703
|
4791 |
msgid "Unknown server response status:"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/admin.php:702
|
4795 |
msgid "Unknown server response:"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/admin.php:701
|
4799 |
msgid "This decryption key will be attempted:"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: src/admin.php:700
|
4803 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: src/admin.php:699
|
4807 |
msgid "Upload error"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: src/admin.php:698
|
4811 |
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)."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: src/admin.php:697
|
4815 |
msgid "Upload error:"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: src/admin.php:696
|
4819 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: src/admin.php:687
|
4823 |
msgid "Download to your computer"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: src/admin.php:686
|
4827 |
msgid "Delete from your web server"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: src/admin.php:3917
|
4831 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: src/admin.php:3914
|
4835 |
msgid "(%d archive(s) in set)."
|
4836 |
msgstr ""
|
4837 |
|
4839 |
msgid "Split archives every:"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/addons/moredatabase.php:278
|
4843 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/admin.php:677
|
4847 |
msgid "Warnings:"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: src/admin.php:676
|
4851 |
msgid "Error: the server sent an empty response."
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: src/admin.php:2260
|
4855 |
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?"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: src/includes/class-wpadmin-commands.php:227
|
4859 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4863 |
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."
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4867 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4868 |
msgstr ""
|
4869 |
|
4887 |
msgid "No such backup set exists"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: src/admin.php:1389
|
4891 |
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"
|
4892 |
msgstr ""
|
4893 |
|
4895 |
msgid "Moving unpacked backup into place..."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: src/backup.php:3060, src/backup.php:3315
|
4899 |
msgid "Failed to open the zip file (%s) - %s"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: src/addons/morefiles.php:181
|
4903 |
msgid "WordPress root directory server path: %s"
|
4904 |
msgstr ""
|
4905 |
|
4907 |
msgid "%s end-point"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: src/methods/s3.php:850
|
4911 |
msgid "... and many more!"
|
4912 |
msgstr ""
|
4913 |
|
4916 |
msgid "S3 (Compatible)"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: src/admin.php:1299
|
4920 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: src/admin.php:4238
|
4924 |
msgid "Looking for %s archive: file name: %s"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/admin.php:4199
|
4928 |
msgid "Final checks"
|
4929 |
msgstr ""
|
4930 |
|
4936 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: src/admin.php:3551
|
4940 |
msgid "Your wp-content directory server path: %s"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: src/admin.php:693
|
4944 |
msgid "Raw backup history"
|
4945 |
msgstr ""
|
4946 |
|
4948 |
msgid "Show raw backup and file list"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: src/admin.php:675
|
4952 |
msgid "Processing files - please wait..."
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: src/admin.php:4389,
|
4956 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4957 |
msgid "Please consult this FAQ for help on what to do about it."
|
4958 |
msgstr ""
|
4961 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: src/class-updraftplus.php:4145
|
4965 |
msgid "Failed to open database file."
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: src/admin.php:4957
|
4969 |
msgid "Known backups (raw)"
|
4970 |
msgstr ""
|
4971 |
|
4977 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: src/admin.php:4258
|
4981 |
msgid "file is size:"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:476,
|
4985 |
+
#: src/addons/migrator.php:479, src/addons/migrator.php:482, src/admin.php:972,
|
4986 |
+
#: src/admin.php:2530, src/backup.php:3366, src/class-updraftplus.php:4379,
|
4987 |
+
#: src/class-updraftplus.php:4379, src/updraftplus.php:156
|
4988 |
msgid "Go here for more information."
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: src/admin.php:674
|
4992 |
msgid "Some files are still downloading or being processed - please wait."
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: src/class-updraftplus.php:4228, src/class-updraftplus.php:4249
|
4996 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: src/addons/fixtime.php:570
|
5000 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: src/addons/fixtime.php:570
|
5004 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5005 |
msgstr ""
|
5006 |
|
5038 |
|
5039 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
5040 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
5041 |
+
#: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
|
5042 |
+
#: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
|
5043 |
+
#: src/methods/stream-base.php:335
|
5044 |
msgid "%s Error"
|
5045 |
msgstr ""
|
5046 |
|
5048 |
msgid "%s error - failed to upload file"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: src/class-updraftplus.php:1269, src/methods/cloudfiles.php:211
|
5052 |
msgid "%s error - failed to re-assemble chunks"
|
5053 |
msgstr ""
|
5054 |
|
5062 |
msgid "%s authentication failed"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
+
#: src/addons/googlecloud.php:438, src/addons/migrator.php:574,
|
5066 |
+
#: src/admin.php:2231, src/admin.php:2252, src/admin.php:2260,
|
5067 |
+
#: src/class-updraftplus.php:1014, src/class-updraftplus.php:1020,
|
5068 |
+
#: src/class-updraftplus.php:4118, src/class-updraftplus.php:4120,
|
5069 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4289,
|
5070 |
+
#: src/class-updraftplus.php:4358, src/methods/googledrive.php:395,
|
5071 |
+
#: src/methods/s3.php:341
|
5072 |
msgid "Error: %s"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
+
#: src/admin.php:3476
|
5076 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: src/admin.php:3474
|
5080 |
msgid "Backup directory specified does <b>not</b> exist."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/admin.php:3151, src/admin.php:3425
|
5084 |
msgid "Warning: %s"
|
5085 |
msgstr ""
|
5086 |
|
5088 |
msgid "Last backup job run:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/backup.php:3086
|
5092 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5093 |
msgstr ""
|
5094 |
|
5108 |
msgid "Warnings encountered:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:2946
|
5112 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: src/class-updraftplus.php:891
|
5116 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: src/addons/migrator.php:582
|
5120 |
msgid "New site:"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: src/addons/migrator.php:557
|
5124 |
msgid "Migrated site (from UpdraftPlus)"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: src/addons/migrator.php:497
|
5128 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: src/addons/migrator.php:496
|
5132 |
msgid "Information needed to continue:"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: src/addons/migrator.php:440
|
5136 |
msgid "Network activating theme:"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: src/addons/migrator.php:430
|
5140 |
msgid "Processed plugin:"
|
5141 |
msgstr ""
|
5142 |
|
5148 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: src/methods/s3.php:859
|
5152 |
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."
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: src/methods/s3.php:1164
|
5156 |
msgid "Please check your access credentials."
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1142
|
5160 |
msgid "The error reported by %s was:"
|
5161 |
msgstr ""
|
5162 |
|
5164 |
msgid "Please supply the requested information, and then continue."
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: src/class-updraftplus.php:4300, src/restorer.php:1825
|
5168 |
msgid "Site information:"
|
5169 |
msgstr ""
|
5170 |
|
5172 |
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."
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: src/admin.php:2525, src/class-updraftplus.php:4293, src/restorer.php:2196
|
5176 |
msgid "Warning:"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4285,
|
5180 |
#: src/restorer.php:184
|
5181 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: src/admin.php:4226
|
5185 |
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."
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: src/admin.php:3623, src/methods/updraftvault.php:306
|
5189 |
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."
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:711
|
5193 |
msgid "Close"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5197 |
+
#: src/admin.php:667, src/methods/remotesend.php:66,
|
5198 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5199 |
#: src/methods/remotesend.php:242
|
5200 |
msgid "Unexpected response:"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: src/addons/reporting.php:517, src/admin.php:662
|
5204 |
msgid "To send to more than one address, separate each address with a comma."
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: src/admin.php:691
|
5208 |
msgid "PHP information"
|
5209 |
msgstr ""
|
5210 |
|
5240 |
msgid "Also delete from remote storage"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: src/admin.php:2873
|
5244 |
msgid "Latest UpdraftPlus.com news:"
|
5245 |
msgstr ""
|
5246 |
|
5257 |
msgid "News"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: src/admin.php:1639, src/includes/class-wpadmin-commands.php:492
|
5261 |
msgid "Backup set not found"
|
5262 |
msgstr ""
|
5263 |
|
5279 |
msgid "Blog link"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: src/admin.php:755
|
5283 |
msgid "Testing %s Settings..."
|
5284 |
msgstr ""
|
5285 |
|
5287 |
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."
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/admin.php:988
|
5291 |
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."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/admin.php:988
|
5295 |
msgid "Notice"
|
5296 |
msgstr ""
|
5297 |
|
5303 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/admin.php:673
|
5307 |
msgid "Begun looking for this entity"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: src/methods/s3.php:482
|
5311 |
+
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials.1"
|
5312 |
+
msgstr ""
|
5313 |
+
|
5314 |
#: src/addons/dropbox-folders.php:32
|
5315 |
msgid "Store at"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: src/addons/migrator.php:1542
|
5319 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: src/addons/migrator.php:1416
|
5323 |
msgid "rows: %d"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: src/addons/migrator.php:1290
|
5327 |
msgid "Time taken (seconds):"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: src/addons/migrator.php:1289, src/admin.php:678
|
5331 |
msgid "Errors:"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/addons/migrator.php:1288
|
5335 |
msgid "SQL update commands run:"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: src/addons/migrator.php:1287
|
5339 |
msgid "Changes made:"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: src/addons/migrator.php:1286
|
5343 |
msgid "Rows examined:"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: src/addons/migrator.php:1285
|
5347 |
msgid "Tables examined:"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: src/addons/migrator.php:1174
|
5351 |
msgid "Could not get list of tables"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: src/addons/migrator.php:1119
|
5355 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: src/addons/migrator.php:1108
|
5359 |
msgid "Nothing to do: the site URL is already: %s"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: src/addons/migrator.php:1072, src/addons/migrator.php:1076,
|
5363 |
+
#: src/addons/migrator.php:1080, src/addons/migrator.php:1085,
|
5364 |
+
#: src/addons/migrator.php:1089, src/addons/migrator.php:1094
|
5365 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: src/addons/migrator.php:1032
|
5369 |
msgid "Database: search and replace site URL"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: src/addons/migrator.php:892, src/addons/migrator.php:1271
|
5373 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5374 |
msgstr ""
|
5375 |
|
5376 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:1269
|
5377 |
msgid "Failed: the %s operation was not able to start."
|
5378 |
msgstr ""
|
5379 |
|
5380 |
+
#: src/addons/migrator.php:549
|
5381 |
msgid "Search and replace site location in the database (migrate)"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: src/addons/migrator.php:549
|
5385 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: src/addons/multisite.php:661
|
5389 |
msgid "Blog uploads"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: src/addons/migrator.php:482, src/addons/multisite.php:654
|
5393 |
msgid "Must-use plugins"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: src/addons/multisite.php:184
|
5397 |
msgid "Multisite Install"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: src/addons/fixtime.php:570
|
5401 |
msgid "starting from next time it is"
|
5402 |
msgstr ""
|
5403 |
|
5427 |
|
5428 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5429 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5430 |
+
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
5431 |
#: src/udaddons/options.php:135
|
5432 |
msgid "Password"
|
5433 |
msgstr ""
|
5457 |
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."
|
5458 |
msgstr ""
|
5459 |
|
5460 |
+
#: src/addons/morefiles.php:661
|
5461 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: src/addons/morefiles.php:295
|
5465 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: src/addons/morefiles.php:293
|
5469 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: src/addons/morefiles.php:272
|
5473 |
msgid "More Files"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: src/addons/morefiles.php:180
|
5477 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: src/addons/morefiles.php:173
|
5481 |
msgid "The above files comprise everything in a WordPress installation."
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: src/addons/morefiles.php:154
|
5485 |
msgid "Over-write wp-config.php"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
+
#: src/addons/morefiles.php:150, src/includes/class-wpadmin-commands.php:509
|
5489 |
msgid "WordPress Core"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:365
|
5493 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5494 |
msgstr ""
|
5495 |
|
5496 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5497 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3207,
|
5498 |
+
#: src/admin.php:3242, src/admin.php:3251, src/methods/addon-base-v2.php:299,
|
5499 |
+
#: src/methods/stream-base.php:351
|
5500 |
msgid "Failed"
|
5501 |
msgstr ""
|
5502 |
|
5504 |
msgid "WebDAV URL"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/methods/stream-base.php:335
|
5508 |
msgid "Local write failed: Failed to download"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/methods/stream-base.php:304
|
5512 |
msgid "Error opening remote file: Failed to download"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: src/methods/stream-base.php:125, src/methods/stream-base.php:129
|
5516 |
msgid "Chunk %s: A %s error occurred"
|
5517 |
msgstr ""
|
5518 |
|
5520 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5521 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5522 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5523 |
+
#: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
|
5524 |
+
#: src/methods/stream-base.php:27, src/methods/stream-base.php:163,
|
5525 |
+
#: src/methods/stream-base.php:169, src/methods/stream-base.php:203,
|
5526 |
+
#: src/methods/stream-base.php:278
|
5527 |
msgid "No %s settings were found"
|
5528 |
msgstr ""
|
5529 |
|
5551 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:818
|
5555 |
msgid "Your %s account name: %s"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: src/methods/dropbox.php:808, src/methods/dropbox.php:830
|
5559 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
5563 |
msgid "you have authenticated your %s account"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5567 |
msgid "there's an add-on for that."
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5571 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5575 |
msgid "Backups are saved in"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5579 |
msgid "Need to use sub-folders?"
|
5580 |
msgstr ""
|
5581 |
|
5588 |
msgid "You do not appear to be authenticated with Dropbox"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: src/methods/s3.php:1159
|
5592 |
msgid "The communication with %s was not encrypted."
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: src/methods/s3.php:1157
|
5596 |
msgid "The communication with %s was encrypted."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1154
|
5600 |
msgid "We accessed the bucket, and were able to create files within it."
|
5601 |
msgstr ""
|
5602 |
|
5603 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5604 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5605 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5606 |
msgstr ""
|
5607 |
|
5608 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5609 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5610 |
msgid "Failure"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: src/addons/backblaze.php:494, src/methods/s3.php:1140
|
5614 |
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)."
|
5615 |
msgstr ""
|
5616 |
|
5617 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5618 |
+
#: src/methods/s3.php:1134
|
5619 |
msgid "Region"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5623 |
+
#: src/methods/s3.php:1114
|
5624 |
msgid "Failure: No bucket details were given."
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: src/methods/s3.php:1092
|
5628 |
msgid "API secret"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: src/methods/s3.php:940
|
5632 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: src/methods/s3.php:939
|
5636 |
msgid "%s location"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: src/methods/s3.php:935
|
5640 |
msgid "%s secret key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: src/methods/s3.php:931
|
5644 |
msgid "%s access key"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: src/methods/s3.php:871
|
5648 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: src/methods/s3.php:869
|
5652 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: src/methods/s3.php:598, src/methods/s3.php:671, src/methods/s3.php:776
|
|
|
5656 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: src/methods/s3.php:759, src/methods/s3.php:769, src/methods/s3.php:805
|
5660 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: src/methods/s3.php:460
|
5664 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: src/methods/s3.php:456
|
5668 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/methods/s3.php:440
|
5672 |
msgid "%s chunk %s: upload failed"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/methods/s3.php:430
|
5676 |
msgid "%s error: file %s was shortened unexpectedly"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/methods/s3.php:408
|
5680 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/methods/email.php:92
|
5684 |
msgid "Note:"
|
5685 |
msgstr ""
|
5686 |
|
5688 |
msgid "WordPress Backup"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: src/methods/cloudfiles.php:575, src/methods/openstack-base.php:530
|
5692 |
msgid "We accessed the container, and were able to create files within it."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: src/methods/cloudfiles.php:571
|
5696 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: src/methods/cloudfiles.php:544, src/methods/openstack-base.php:472
|
5700 |
msgid "Failure: No container details were given."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5704 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5705 |
+
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
5706 |
msgid "Username"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
+
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:519,
|
5710 |
+
#: src/methods/s3.php:1088
|
5711 |
msgid "API key"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: src/addons/migrator.php:323, src/addons/migrator.php:2062,
|
5715 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5716 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5717 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5718 |
+
#: src/admin.php:731, src/methods/addon-base-v2.php:291,
|
5719 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5720 |
+
#: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
|
5721 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5722 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5723 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5724 |
+
#: src/methods/s3.php:1088, src/methods/s3.php:1092
|
5725 |
msgid "Failure: No %s was given."
|
5726 |
msgstr ""
|
5727 |
|
5728 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5729 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
5730 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: src/methods/cloudfiles.php:483
|
5734 |
msgid "Cloud Files username"
|
5735 |
msgstr ""
|
5736 |
|
5757 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: src/admin.php:754, src/methods/backup-module.php:315
|
5761 |
msgid "Test %s Settings"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
5765 |
+
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
5766 |
msgid "Error opening local file: Failed to download"
|
5767 |
msgstr ""
|
5768 |
|
5773 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5774 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5775 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5776 |
+
#: src/methods/s3.php:376, src/methods/s3.php:388, src/methods/s3.php:389
|
5777 |
msgid "%s Error: Failed to upload"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5781 |
+
#: src/class-updraftplus.php:1154, src/methods/cloudfiles.php:130,
|
5782 |
+
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
5783 |
msgid "%s Error: Failed to open local file"
|
5784 |
msgstr ""
|
5785 |
|
5790 |
|
5791 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5792 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5793 |
+
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:554,
|
5794 |
+
#: src/methods/cloudfiles.php:557, src/methods/cloudfiles.php:560
|
5795 |
msgid "Cloud Files authentication failed"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: src/methods/googledrive.php:1262
|
5799 |
msgid "Authenticate with Google"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5803 |
+
#: src/methods/googledrive.php:1226
|
5804 |
msgid "Client Secret"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1223
|
5808 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5809 |
msgstr ""
|
5810 |
|
5811 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5812 |
+
#: src/methods/googledrive.php:1222
|
5813 |
msgid "Client ID"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5817 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5821 |
msgid "Select 'Web Application' as the application type."
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1197
|
5825 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5826 |
msgstr ""
|
5827 |
|
5828 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5829 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
|
5830 |
+
#: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
|
5831 |
+
#: src/methods/googledrive.php:584
|
5832 |
msgid "Account is not authorized."
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
|
5836 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
5837 |
+
#: src/methods/stream-base.php:219
|
5838 |
msgid "Failed to upload to %s"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/methods/googledrive.php:523
|
5842 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: src/methods/googledrive.php:616, src/methods/googledrive.php:652
|
5846 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5847 |
msgstr ""
|
5848 |
|
5849 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5850 |
+
#: src/methods/googledrive.php:467
|
5851 |
msgid "you have authenticated your %s account."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5855 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5856 |
+
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:575,
|
5857 |
+
#: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
|
5858 |
+
#: src/methods/s3.php:1154, src/methods/stream-base.php:362
|
5859 |
msgid "Success"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:841,
|
5863 |
+
#: src/methods/dropbox.php:850, src/methods/googledrive.php:431
|
5864 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
|
5868 |
msgid "Authorization failed"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
|
5872 |
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."
|
5873 |
msgstr ""
|
5874 |
|
5891 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: src/addons/migrator.php:1954, src/admin.php:1327, src/admin.php:3210,
|
5895 |
+
#: src/admin.php:3244, src/admin.php:3248, src/admin.php:4256,
|
5896 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5897 |
msgid "OK"
|
5898 |
msgstr ""
|
5901 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: src/addons/migrator.php:1304, src/restorer.php:2333
|
5905 |
msgid "the database query being run was:"
|
5906 |
msgstr ""
|
5907 |
|
5909 |
msgid "will restore as:"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: src/class-updraftplus.php:4271, src/restorer.php:1807,
|
5913 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5914 |
msgid "Old table prefix:"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: src/addons/reporting.php:71, src/addons/reporting.php:180,
|
5918 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4201
|
5919 |
msgid "Backup of:"
|
5920 |
msgstr ""
|
5921 |
|
5987 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5988 |
msgstr ""
|
5989 |
|
5990 |
+
#: src/admin.php:4264, src/admin.php:4265
|
5991 |
msgid "Could not find one of the files for restoration"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
+
#: src/admin.php:4379
|
5995 |
msgid "Error message"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
+
#: src/admin.php:4261
|
5999 |
msgid "The backup records do not contain information about the proper size of this file."
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: src/admin.php:4253
|
6003 |
msgid "Archive is expected to be size:"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: src/admin.php:4133
|
6007 |
msgid "If making a request for support, please include this information:"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/admin.php:4132
|
6011 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: src/admin.php:4087
|
6015 |
msgid "UpdraftPlus Restoration: Progress"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: src/admin.php:4040
|
6019 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: src/admin.php:3975
|
6023 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: src/admin.php:3993
|
6027 |
msgid "Delete this backup set"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: src/admin.php:3635
|
6031 |
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."
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: src/admin.php:3632
|
6035 |
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."
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: src/admin.php:3630
|
6039 |
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)."
|
6040 |
msgstr ""
|
6041 |
|
6042 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6043 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
6044 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
6045 |
msgstr ""
|
6046 |
|
6076 |
msgid "Use the server's SSL certificates"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: src/admin.php:3478
|
6080 |
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."
|
6081 |
msgstr ""
|
6082 |
|
6083 |
+
#: src/admin.php:3478
|
6084 |
msgid "click here"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: src/admin.php:3478
|
6088 |
msgid "or, to reset this option"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: src/admin.php:3478
|
6092 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: src/admin.php:3470
|
6096 |
msgid "Backup directory specified is writable, which is good."
|
6097 |
msgstr ""
|
6098 |
|
6124 |
msgid "Advanced / Debugging Settings"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: src/admin.php:690
|
6128 |
msgid "Requesting start of backup..."
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: src/addons/morefiles.php:320, src/admin.php:706
|
6132 |
msgid "Cancel"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: src/addons/reporting.php:244, src/admin.php:3782
|
6136 |
msgid "None"
|
6137 |
msgstr ""
|
6138 |
|
6157 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: src/addons/morefiles.php:466, src/admin.php:3560
|
6161 |
msgid "Exclude these:"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: src/admin.php:3551
|
6165 |
msgid "Any other directories found inside wp-content"
|
6166 |
msgstr ""
|
6167 |
|
6177 |
msgid "To fix the time at which a backup should take place,"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: src/admin.php:3464
|
6181 |
msgid "Monthly"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: src/admin.php:3463
|
6185 |
msgid "Fortnightly"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: src/admin.php:3462
|
6189 |
msgid "Weekly"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: src/admin.php:3461
|
6193 |
msgid "Daily"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: src/admin.php:713, src/admin.php:3439
|
6197 |
msgid "Download log file"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: src/admin.php:3311
|
6201 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: src/admin.php:3306
|
6205 |
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"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: src/admin.php:3292
|
6209 |
msgid "The request to the filesystem to create the directory failed."
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: src/addons/migrator.php:2495, src/admin.php:707, src/admin.php:3204,
|
6213 |
+
#: src/admin.php:3237, src/admin.php:3993,
|
6214 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6215 |
msgid "Delete"
|
6216 |
msgstr ""
|
6217 |
|
6218 |
+
#: src/admin.php:3142
|
6219 |
msgid "show log"
|
6220 |
msgstr ""
|
6221 |
|
6248 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6249 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6250 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6251 |
+
#: src/templates/wp-admin/settings/tab-addons.php:272,
|
6252 |
+
#: src/templates/wp-admin/settings/tab-addons.php:306,
|
6253 |
+
#: src/templates/wp-admin/settings/tab-addons.php:325,
|
6254 |
+
#: src/templates/wp-admin/settings/tab-addons.php:328
|
6255 |
msgid "No"
|
6256 |
msgstr ""
|
6257 |
|
6284 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6285 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6286 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6287 |
+
#: src/templates/wp-admin/settings/tab-addons.php:275,
|
6288 |
+
#: src/templates/wp-admin/settings/tab-addons.php:278,
|
6289 |
+
#: src/templates/wp-admin/settings/tab-addons.php:309,
|
6290 |
+
#: src/templates/wp-admin/settings/tab-addons.php:312,
|
6291 |
+
#: src/templates/wp-admin/settings/tab-addons.php:331
|
6292 |
msgid "Yes"
|
6293 |
msgstr ""
|
6294 |
|
6327 |
msgid "Perform a one-time backup"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:91
|
6331 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: src/class-updraftplus.php:4231
|
6335 |
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"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: src/addons/morefiles.php:150,
|
6339 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6340 |
msgid "%s restoration options:"
|
6341 |
msgstr ""
|
6342 |
|
6372 |
msgid "Delete backup set"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: src/admin.php:689
|
6376 |
msgid "Download error: the server sent us a response which we did not understand."
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:110,
|
6380 |
+
#: src/addons/migrator.php:877, src/addons/migrator.php:1174,
|
6381 |
+
#: src/addons/migrator.php:1255, src/addons/migrator.php:1304,
|
6382 |
+
#: src/addons/migrator.php:1542, src/addons/migrator.php:1893,
|
6383 |
+
#: src/addons/migrator.php:1920, src/addons/migrator.php:1926,
|
6384 |
+
#: src/addons/migrator.php:1988, src/addons/migrator.php:2031,
|
6385 |
+
#: src/addons/migrator.php:2070, src/addons/migrator.php:2080,
|
6386 |
+
#: src/addons/migrator.php:2085, src/addons/s3-enhanced.php:160,
|
6387 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6388 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6389 |
+
#: src/admin.php:681, src/admin.php:4258, src/admin.php:4288,
|
6390 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6391 |
+
#: src/methods/updraftvault.php:527, src/restorer.php:1523
|
6392 |
msgid "Error:"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: src/admin.php:672,
|
6396 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6397 |
msgid "calculating..."
|
6398 |
msgstr ""
|
6413 |
msgid "This is a count of the contents of your Updraft directory"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
|
6417 |
+
#: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
|
6418 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
|
6419 |
+
#: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
|
6420 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
6421 |
+
#: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
|
6422 |
+
#: src/methods/googledrive.php:1192, src/methods/googledrive.php:1222,
|
6423 |
+
#: src/methods/googledrive.php:1226, src/methods/googledrive.php:1237,
|
6424 |
+
#: src/methods/googledrive.php:1248
|
6425 |
msgid "Google Drive"
|
6426 |
msgstr ""
|
6427 |
|
6437 |
msgid "More tasks:"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: src/admin.php:2900
|
6441 |
msgid "Download most recently modified log file"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: src/central/bootstrap.php:185
|
6445 |
msgid "(Nothing yet logged)"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6449 |
+
#: src/admin.php:2855, src/admin.php:2860
|
6450 |
msgid "Last log message"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: src/addons/migrator.php:257, src/admin.php:712, src/admin.php:3975,
|
6454 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6455 |
msgid "Restore"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
+
#: src/admin.php:532, src/admin.php:705,
|
6459 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6460 |
msgid "Backup Now"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: src/addons/migrator.php:1958, src/addons/moredatabase.php:247,
|
6464 |
+
#: src/addons/reporting.php:259, src/addons/wp-cli.php:382, src/admin.php:315,
|
6465 |
+
#: src/admin.php:3757, src/admin.php:3837, src/admin.php:4342,
|
6466 |
#: src/includes/class-wpadmin-commands.php:147,
|
6467 |
+
#: src/includes/class-wpadmin-commands.php:507,
|
6468 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
6469 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6470 |
msgid "Database"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
+
#: src/admin.php:311, src/admin.php:4964
|
6474 |
msgid "Files"
|
6475 |
msgstr ""
|
6476 |
|
6498 |
msgid "JavaScript warning"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
+
#: src/admin.php:692, src/admin.php:2927
|
6502 |
msgid "Delete Old Directories"
|
6503 |
msgstr ""
|
6504 |
|
6505 |
+
#: src/admin.php:2572
|
6506 |
msgid "Current limit is:"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
+
#: src/admin.php:2547
|
6510 |
msgid "Your backup has been restored."
|
6511 |
msgstr ""
|
6512 |
|
6518 |
msgid "Lead developer's homepage"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
+
#: src/central/bootstrap.php:504
|
6522 |
msgid "UpdraftPlus.Com"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
+
#: src/admin.php:4856
|
6526 |
msgid "Your settings have been wiped."
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: src/admin.php:2507
|
6530 |
msgid "Backup directory successfully created."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: src/admin.php:2500
|
6534 |
msgid "Backup directory could not be created"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: src/admin.php:3174
|
6538 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: src/admin.php:3172
|
6542 |
msgid "Old directories successfully removed."
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: src/admin.php:3169, src/admin.php:3169
|
6546 |
msgid "Remove old directories"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: src/addons/migrator.php:326, src/addons/migrator.php:341,
|
6550 |
+
#: src/admin.php:2449, src/admin.php:2458, src/admin.php:2467,
|
6551 |
+
#: src/admin.php:2509, src/admin.php:3176
|
6552 |
msgid "Return to UpdraftPlus Configuration"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
+
#: src/admin.php:685, src/admin.php:2449, src/admin.php:2458,
|
6556 |
+
#: src/admin.php:2467, src/admin.php:2509, src/admin.php:3176,
|
6557 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6558 |
msgid "Actions"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
+
#: src/admin.php:2352
|
6562 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
+
#: src/admin.php:2252
|
6566 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6567 |
msgstr ""
|
6568 |
|
6569 |
+
#: src/admin.php:2148
|
6570 |
msgid "No local copy present."
|
6571 |
msgstr ""
|
6572 |
|
6573 |
+
#: src/admin.php:2145
|
6574 |
msgid "Download in progress"
|
6575 |
msgstr ""
|
6576 |
|
6577 |
+
#: src/admin.php:684, src/admin.php:2134
|
6578 |
msgid "File ready."
|
6579 |
msgstr ""
|
6580 |
|
6581 |
+
#: src/admin.php:2115
|
6582 |
msgid "Download failed"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
+
#: src/admin.php:682, src/admin.php:1336, src/admin.php:1882,
|
6586 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
6587 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6588 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6589 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2433,
|
6590 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6591 |
msgid "Error"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: src/admin.php:1917
|
6595 |
msgid "Could not find that job - perhaps it has already finished?"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: src/admin.php:1909
|
6599 |
msgid "Job deleted"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: src/admin.php:1995
|
6603 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: src/admin.php:757
|
6607 |
msgid "Nothing yet logged"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/admin.php:984
|
6611 |
msgid "Please consult this FAQ if you have problems backing up."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/admin.php:984
|
6615 |
msgid "Your website is hosted using the %s web server."
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: src/admin.php:980
|
6619 |
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."
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: src/admin.php:976
|
6623 |
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."
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/addons/migrator.php:932, src/admin.php:968, src/admin.php:972,
|
6627 |
+
#: src/admin.php:976, src/admin.php:980, src/admin.php:984, src/admin.php:993,
|
6628 |
+
#: src/admin.php:3623, src/admin.php:3630, src/admin.php:3632,
|
6629 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6630 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6631 |
+
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
6632 |
+
#: src/methods/updraftvault.php:306,
|
6633 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6634 |
#: src/udaddons/updraftplus-addons.php:253
|
6635 |
msgid "Warning"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/admin.php:914
|
6639 |
msgid "Add-Ons / Pro Support"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/admin.php:548, src/admin.php:912,
|
6643 |
#: src/templates/wp-admin/settings/tab-bar.php:7
|
6644 |
msgid "Settings"
|
6645 |
msgstr ""
|
6660 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6661 |
msgstr ""
|
6662 |
|
6663 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3991,
|
6664 |
+
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
6665 |
msgid "File not found"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: src/class-updraftplus.php:3898
|
6669 |
msgid "The decryption key used:"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: src/class-updraftplus.php:3898, src/class-updraftplus.php:4130,
|
6673 |
#: src/restorer.php:422
|
6674 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: src/class-updraftplus.php:3879, src/class-updraftplus.php:4118,
|
6678 |
#: src/restorer.php:409
|
6679 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6680 |
msgstr ""
|
6683 |
msgid "Could not open the backup file for writing"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: src/class-updraftplus.php:3484
|
6687 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: src/class-updraftplus.php:3445
|
6691 |
msgid "Could not read the directory"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: src/admin.php:2194, src/backup.php:1323
|
6695 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
6696 |
msgstr ""
|
6697 |
|
6699 |
msgid "WordPress backup is complete"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: src/class-updraftplus.php:2955
|
6703 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: src/class-updraftplus.php:2940
|
6707 |
msgid "The backup apparently succeeded and is now complete"
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: src/addons/moredatabase.php:393
|
6711 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: src/class-updraftplus.php:2643
|
6715 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: src/class-updraftplus.php:1921
|
6719 |
msgid "Others"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: src/addons/multisite.php:469, src/class-updraftplus.php:1906
|
6723 |
msgid "Uploads"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: src/class-updraftplus.php:1905
|
6727 |
msgid "Themes"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: src/class-updraftplus.php:1904
|
6731 |
msgid "Plugins"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: src/class-updraftplus.php:626
|
6735 |
msgid "No log files were found."
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: src/admin.php:2064, src/admin.php:2068, src/class-updraftplus.php:621
|
6739 |
msgid "The log file could not be read."
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: src/admin.php:1013, src/admin.php:1046, src/class-updraftplus.php:586,
|
6743 |
+
#: src/class-updraftplus.php:621, src/class-updraftplus.php:626,
|
6744 |
+
#: src/class-updraftplus.php:631
|
6745 |
msgid "UpdraftPlus notice:"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: src/addons/multisite.php:74, src/addons/multisite.php:691,
|
6749 |
#: src/options.php:59
|
6750 |
msgid "UpdraftPlus Backups"
|
6751 |
msgstr ""
|
Binary file
|
@@ -11,6 +11,82 @@ msgstr ""
|
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
msgid "Simple and secure login with a wave of your phone."
|
16 |
msgstr ""
|
@@ -35,7 +111,7 @@ msgstr ""
|
|
35 |
msgid "Thank you for installing UpdraftPlus!"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: src/addons/migrator.php:
|
39 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
msgstr ""
|
41 |
|
@@ -63,11 +139,11 @@ msgstr ""
|
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: src/admin.php:
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: src/admin.php:
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
@@ -75,15 +151,15 @@ msgstr ""
|
|
75 |
msgid "(Nothing has been logged yet)"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: src/addons/migrator.php:
|
79 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: src/addons/migrator.php:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: src/addons/migrator.php:
|
87 |
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."
|
88 |
msgstr ""
|
89 |
|
@@ -95,11 +171,11 @@ msgstr ""
|
|
95 |
msgid "Delete these settings"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
99 |
msgid "Currently disabled"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
103 |
msgid "Currently enabled"
|
104 |
msgstr ""
|
105 |
|
@@ -115,11 +191,11 @@ msgstr ""
|
|
115 |
msgid "get it here"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: src/methods/stream-base.php:
|
119 |
msgid "Download chunk size successfully changed to %d"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: src/methods/stream-base.php:
|
123 |
msgid "Download chunk size failed to change to %d"
|
124 |
msgstr ""
|
125 |
|
@@ -135,7 +211,7 @@ msgstr ""
|
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/backblaze.php:
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
@@ -149,15 +225,15 @@ msgstr[3] ""
|
|
149 |
msgstr[4] ""
|
150 |
msgstr[5] ""
|
151 |
|
152 |
-
#: src/class-updraftplus.php:
|
153 |
msgid "Your chosen replacement collation"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/class-updraftplus.php:
|
157 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: src/class-updraftplus.php:
|
161 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
162 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
163 |
msgstr[0] ""
|
@@ -167,11 +243,11 @@ msgstr[3] ""
|
|
167 |
msgstr[4] ""
|
168 |
msgstr[5] ""
|
169 |
|
170 |
-
#: src/addons/migrator.php:
|
171 |
msgid "Database restoration options:"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: src/addons/migrator.php:
|
175 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
176 |
msgstr ""
|
177 |
|
@@ -199,27 +275,27 @@ msgstr ""
|
|
199 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: src/central/bootstrap.php:
|
203 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: src/central/bootstrap.php:
|
207 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: src/central/bootstrap.php:
|
211 |
msgid "A website where you have installed %s"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: src/central/bootstrap.php:
|
215 |
msgid "Self-hosted dashboard"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: src/central/bootstrap.php:
|
219 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: src/addons/migrator.php:
|
223 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
224 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
225 |
msgstr[0] ""
|
@@ -233,15 +309,15 @@ msgstr[5] ""
|
|
233 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: src/class-updraftplus.php:
|
237 |
msgid "Your chosen character set to use instead:"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/class-updraftplus.php:
|
241 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/class-updraftplus.php:
|
245 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
246 |
msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
|
247 |
msgstr[0] ""
|
@@ -251,135 +327,135 @@ msgstr[3] ""
|
|
251 |
msgstr[4] ""
|
252 |
msgstr[5] ""
|
253 |
|
254 |
-
#: src/central/bootstrap.php:
|
255 |
msgid "Create another key"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/central/bootstrap.php:
|
259 |
msgid "UpdraftCentral dashboard connection details"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/central/bootstrap.php:
|
263 |
msgid "Next"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/central/bootstrap.php:
|
267 |
msgid "an account"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/central/bootstrap.php:
|
271 |
msgid "i.e. if you have %s there"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/central/bootstrap.php:
|
275 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/central/bootstrap.php:
|
279 |
msgid "Manage existing keys (%d)..."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/central/bootstrap.php:
|
283 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/central/bootstrap.php:
|
287 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/central/bootstrap.php:
|
291 |
msgid "Detailed instructions for this can be found at %s"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/central/bootstrap.php:
|
295 |
msgid "You now need to copy the key below and enter it at your %s."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/admin.php:
|
299 |
msgid "Please enter a valid URL e.g http://example.com"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: src/addons/backblaze.php:
|
303 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: src/addons/backblaze.php:
|
307 |
msgid "some/path"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: src/addons/backblaze.php:
|
311 |
msgid "Bucket name"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/addons/backblaze.php:
|
315 |
msgid "Backup path"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: src/addons/backblaze.php:
|
319 |
msgid "Application key"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: src/addons/backblaze.php:
|
323 |
msgid "here"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: src/addons/backblaze.php:
|
327 |
msgid "Get these settings from %s, or sign up %s."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: src/addons/backblaze.php:
|
331 |
msgid "Account Key"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: src/addons/backblaze.php:
|
335 |
msgid "Account ID"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: src/class-updraftplus.php:
|
339 |
msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: src/class-updraftplus.php:
|
343 |
msgid "the migrator add-on"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: src/class-updraftplus.php:
|
347 |
msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: src/class-updraftplus.php:
|
351 |
msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/class-updraftplus.php:
|
355 |
msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/methods/googledrive.php:
|
359 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
360 |
msgstr ""
|
361 |
|
362 |
#: src/methods/backup-module.php:595
|
363 |
-
msgid "Follow this link to remove
|
364 |
msgstr ""
|
365 |
|
366 |
#: src/addons/sftp.php:348
|
367 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/admin.php:
|
371 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/admin.php:
|
375 |
-
#: src/class-updraftplus.php:
|
376 |
-
#: src/class-updraftplus.php:
|
377 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: src/admin.php:
|
381 |
-
#: src/class-updraftplus.php:
|
382 |
-
#: src/class-updraftplus.php:
|
383 |
msgid "A PHP exception (%s) has occurred: %s"
|
384 |
msgstr ""
|
385 |
|
@@ -435,11 +511,11 @@ msgstr ""
|
|
435 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: src/admin.php:
|
439 |
msgid "Value"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: src/admin.php:
|
443 |
msgid "Did not know how to delete from this cloud service."
|
444 |
msgstr ""
|
445 |
|
@@ -455,68 +531,68 @@ msgstr ""
|
|
455 |
msgid "Stored at: %s"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: src/methods/cloudfiles.php:
|
459 |
msgid "Cloud Files"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: src/admin.php:
|
463 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: src/admin.php:
|
467 |
msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
|
468 |
msgstr ""
|
469 |
|
470 |
#: src/methods/updraftvault.php:71,
|
471 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
472 |
msgid "UpdraftVault"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: src/includes/class-wpadmin-commands.php:
|
476 |
msgid "archive"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: src/includes/class-wpadmin-commands.php:
|
480 |
msgid "Extra database"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: src/admin.php:
|
484 |
msgid "Press here to download or browse"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: src/admin.php:
|
488 |
msgid "Error: invalid path"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: src/admin.php:
|
492 |
msgid "An error occurred when fetching storage module options: "
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: src/admin.php:
|
496 |
msgid "Loading log file"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: src/admin.php:
|
500 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: src/admin.php:
|
504 |
msgid "Search"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: src/admin.php:
|
508 |
msgid "Select a file to view information about it"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: src/admin.php:
|
512 |
msgid "Browsing zip file"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: src/admin.php:
|
516 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: src/admin.php:
|
520 |
msgid "Browse contents"
|
521 |
msgstr ""
|
522 |
|
@@ -524,120 +600,120 @@ msgstr ""
|
|
524 |
msgid "Skipped tables:"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: src/class-updraftplus.php:
|
528 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: src/admin.php:
|
532 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: src/admin.php:
|
536 |
msgid "All WordPress tables will be backed up."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: src/admin.php:
|
540 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: src/admin.php:
|
544 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: src/admin.php:
|
548 |
msgid "The available memory on the server."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: src/admin.php:
|
552 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: src/admin.php:
|
556 |
msgid "The file failed to upload. Please check the following:"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: src/admin.php:
|
560 |
msgid "HTTP code:"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: src/admin.php:
|
564 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: src/addons/moredatabase.php:
|
568 |
msgid "tables"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: src/addons/moredatabase.php:
|
572 |
msgid "WordPress database"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: src/addons/moredatabase.php:
|
576 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
580 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
584 |
msgid "UpdraftCentral Cloud or Premium"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
588 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
589 |
msgid "Find out more"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
593 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
594 |
msgstr ""
|
595 |
|
596 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
597 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
598 |
msgid "UpdraftPlus Gold"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
602 |
msgid "UpdraftPlus Free"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
606 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
610 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
614 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
618 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
619 |
msgid "Importer"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
623 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
627 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
628 |
msgid "No ads"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
632 |
msgid "Sophisticated reporting and emailing capabilities."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
636 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
640 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
641 |
msgid "More database options"
|
642 |
msgstr ""
|
643 |
|
@@ -705,13 +781,13 @@ msgstr ""
|
|
705 |
|
706 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
707 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
708 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
709 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
710 |
msgid "Upgrade now"
|
711 |
msgstr ""
|
712 |
|
713 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
714 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
715 |
msgid "Installed"
|
716 |
msgstr ""
|
717 |
|
@@ -744,31 +820,31 @@ msgstr ""
|
|
744 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: src/addons/morefiles.php:
|
748 |
msgid "Please choose a file or directory"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: src/addons/morefiles.php:
|
752 |
msgid "Confirm"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: src/addons/morefiles.php:
|
756 |
msgid "Go up a directory"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: src/addons/morefiles.php:
|
760 |
msgid "Add directory..."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: src/addons/morefiles.php:
|
764 |
msgid "Edit"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: src/addons/morefiles.php:
|
768 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: src/addons/s3-enhanced.php:
|
772 |
msgid "Europe (Frankfurt)"
|
773 |
msgstr ""
|
774 |
|
@@ -781,7 +857,7 @@ msgid "Europe (Ireland)"
|
|
781 |
msgstr ""
|
782 |
|
783 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
784 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
785 |
msgid "UpdraftCentral"
|
786 |
msgstr ""
|
787 |
|
@@ -833,7 +909,7 @@ msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
|
|
833 |
msgstr ""
|
834 |
|
835 |
#: src/includes/updraftplus-notices.php:251
|
836 |
-
msgid "Spring sale - 20% off UpdraftPlus Premium until April
|
837 |
msgstr ""
|
838 |
|
839 |
#: src/includes/updraftplus-notices.php:238
|
@@ -878,7 +954,7 @@ msgid "Do you use UpdraftPlus on multiple sites?"
|
|
878 |
msgstr ""
|
879 |
|
880 |
#: src/includes/updraftplus-notices.php:92,
|
881 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
882 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
883 |
msgstr ""
|
884 |
|
@@ -923,7 +999,7 @@ msgid "The ultimately secure and convenient place to store your backups."
|
|
923 |
msgstr ""
|
924 |
|
925 |
#: src/includes/updraftplus-notices.php:41,
|
926 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
927 |
msgid "UpdraftVault storage"
|
928 |
msgstr ""
|
929 |
|
@@ -953,8 +1029,8 @@ msgid "Site size"
|
|
953 |
msgstr ""
|
954 |
|
955 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
956 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
957 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
958 |
msgid "Lock settings"
|
959 |
msgstr ""
|
960 |
|
@@ -1000,19 +1076,19 @@ msgstr ""
|
|
1000 |
msgid "Backup of: %s"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: src/methods/googledrive.php:
|
1004 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: src/methods/dropbox.php:
|
1008 |
msgid "%s de-authentication"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: src/methods/dropbox.php:
|
1012 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: src/central/bootstrap.php:
|
1016 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1017 |
msgstr ""
|
1018 |
|
@@ -1024,11 +1100,11 @@ msgstr ""
|
|
1024 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: src/admin.php:
|
1028 |
msgid "Remote files deleted:"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: src/admin.php:
|
1032 |
msgid "Local files deleted:"
|
1033 |
msgstr ""
|
1034 |
|
@@ -1036,35 +1112,35 @@ msgstr ""
|
|
1036 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: src/admin.php:
|
1040 |
msgid "remote files deleted"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: src/admin.php:
|
1044 |
msgid "Complete"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/admin.php:
|
1048 |
msgid "Do you want to carry out the import?"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "Which was exported on:"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/admin.php:
|
1056 |
msgid "This will import data from:"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/admin.php:
|
1060 |
msgid "Importing..."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: src/admin.php:
|
1064 |
msgid "You have not yet selected a file to import."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: src/admin.php:
|
1068 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1069 |
msgstr ""
|
1070 |
|
@@ -1097,7 +1173,7 @@ msgstr ""
|
|
1097 |
msgid "An error response was received; HTTP code:"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/includes/class-commands.php:
|
1101 |
msgid "%s add-on not found"
|
1102 |
msgstr ""
|
1103 |
|
@@ -1109,15 +1185,15 @@ msgstr ""
|
|
1109 |
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"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/admin.php:
|
1113 |
msgid "To fix this problem go here."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: src/admin.php:
|
1117 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/admin.php:
|
1121 |
msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
|
1122 |
msgstr ""
|
1123 |
|
@@ -1149,11 +1225,11 @@ msgstr ""
|
|
1149 |
msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: src/methods/s3.php:
|
1153 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: src/methods/s3.php:
|
1157 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1158 |
msgstr ""
|
1159 |
|
@@ -1161,7 +1237,7 @@ msgstr ""
|
|
1161 |
msgid "Backup using %s?"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: src/addons/s3-enhanced.php:
|
1165 |
msgid "Asia Pacific (Mumbai)"
|
1166 |
msgstr ""
|
1167 |
|
@@ -1173,19 +1249,19 @@ msgstr ""
|
|
1173 |
msgid "FAQs"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: src/central/bootstrap.php:
|
1177 |
msgid "More information..."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: src/central/bootstrap.php:
|
1181 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: src/central/bootstrap.php:
|
1185 |
msgid "Key size: %d bits"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: src/central/bootstrap.php:
|
1189 |
msgid "Public key was sent to:"
|
1190 |
msgstr ""
|
1191 |
|
@@ -1197,49 +1273,49 @@ msgstr ""
|
|
1197 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: src/addons/migrator.php:
|
1201 |
msgid "Create key"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: src/addons/migrator.php:
|
1205 |
msgid "slower, strongest"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: src/addons/migrator.php:
|
1209 |
msgid "recommended"
|
1210 |
msgstr "موصى به"
|
1211 |
|
1212 |
-
#: src/addons/migrator.php:
|
1213 |
msgid "%s bytes"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: src/addons/migrator.php:
|
1217 |
msgid "faster (possibility for slow PHP installs)"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: src/addons/migrator.php:
|
1221 |
msgid "easy to break, fastest"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: src/addons/migrator.php:
|
1225 |
-
#: src/addons/migrator.php:
|
1226 |
-
#: src/central/bootstrap.php:
|
1227 |
msgid "%s bits"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/addons/migrator.php:
|
1231 |
msgid "Encryption key size:"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: src/addons/migrator.php:
|
1235 |
msgid "Enter your chosen name"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: src/addons/migrator.php:
|
1239 |
-
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: src/methods/googledrive.php:
|
1243 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1251,7 +1327,8 @@ msgstr ""
|
|
1251 |
msgid "login"
|
1252 |
msgstr "تسجيل الدخول"
|
1253 |
|
1254 |
-
#: src/
|
|
|
1255 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1256 |
msgstr ""
|
1257 |
|
@@ -1259,7 +1336,7 @@ msgstr ""
|
|
1259 |
msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: src/class-updraftplus.php:
|
1263 |
msgid "Size: %s MB"
|
1264 |
msgstr ""
|
1265 |
|
@@ -1271,7 +1348,7 @@ msgstr ""
|
|
1271 |
msgid "Now"
|
1272 |
msgstr "الآن"
|
1273 |
|
1274 |
-
#: src/class-updraftplus.php:
|
1275 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1276 |
msgstr ""
|
1277 |
|
@@ -1279,13 +1356,13 @@ msgstr ""
|
|
1279 |
msgid "(tap on an icon to select or unselect)"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: src/methods/updraftvault.php:
|
1283 |
-
#: src/methods/updraftvault.php:
|
1284 |
msgid "%s per year"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: src/methods/updraftvault.php:
|
1288 |
-
#: src/methods/updraftvault.php:
|
1289 |
msgid "or (annual discount)"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1293,51 +1370,51 @@ msgstr ""
|
|
1293 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: src/class-updraftplus.php:
|
1297 |
msgid "The given file was not found, or could not be read."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: src/central/bootstrap.php:
|
1301 |
msgid "UpdraftCentral (Remote Control)"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: src/central/bootstrap.php:
|
1305 |
msgid "View recent UpdraftCentral log events"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: src/central/bootstrap.php:
|
1309 |
msgid "Enter any description"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: src/central/bootstrap.php:
|
1313 |
msgid "Description"
|
1314 |
msgstr " الوصف"
|
1315 |
|
1316 |
-
#: src/central/bootstrap.php:
|
1317 |
msgid "Delete..."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: src/central/bootstrap.php:
|
1321 |
msgid "Created:"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: src/central/bootstrap.php:
|
1325 |
msgid "Access this site as user:"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: src/central/bootstrap.php:
|
1329 |
msgid "Details"
|
1330 |
msgstr "تفاصيل عن المناسبة"
|
1331 |
|
1332 |
-
#: src/central/bootstrap.php:
|
1333 |
msgid "Key description"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: src/central/bootstrap.php:
|
1337 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: src/central/bootstrap.php:
|
1341 |
msgid "An invalid URL was entered"
|
1342 |
msgstr ""
|
1343 |
|
@@ -1377,23 +1454,23 @@ msgstr ""
|
|
1377 |
msgid "UpdraftCentral Connection"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1381 |
msgid "The backup was aborted by the user"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: src/admin.php:
|
1385 |
msgid "Your settings have been saved."
|
1386 |
msgstr "تم حفظ إعداداتك."
|
1387 |
|
1388 |
-
#: src/admin.php:
|
1389 |
msgid "Total backup size:"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: src/admin.php:
|
1393 |
msgid "stop"
|
1394 |
msgstr "توقف"
|
1395 |
|
1396 |
-
#: src/admin.php:
|
1397 |
msgid "The backup has finished running"
|
1398 |
msgstr ""
|
1399 |
|
@@ -1419,31 +1496,31 @@ msgstr ""
|
|
1419 |
msgid "calculate"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: src/admin.php:
|
1423 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/admin.php:
|
1431 |
msgid "Please enter a valid URL"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/admin.php:
|
1435 |
msgid "Saving..."
|
1436 |
msgstr "جاري الحفظ..."
|
1437 |
|
1438 |
-
#: src/admin.php:
|
1439 |
msgid "Error: the server sent us a response which we did not understand."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/admin.php:
|
1443 |
msgid "Fetching..."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/addons/s3-enhanced.php:
|
1447 |
msgid "Asia Pacific (Seoul)"
|
1448 |
msgstr ""
|
1449 |
|
@@ -1455,77 +1532,77 @@ msgstr ""
|
|
1455 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: src/class-updraftplus.php:
|
1459 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: src/class-updraftplus.php:
|
1463 |
msgid "Please read this link for important information on this process."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: src/class-updraftplus.php:
|
1467 |
msgid "It will be imported as a new site."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: src/admin.php:
|
1471 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1472 |
msgid "Dismiss"
|
1473 |
msgstr "رفض"
|
1474 |
|
1475 |
-
#: src/admin.php:
|
1476 |
msgid "Please fill in the required information."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: src/addons/multisite.php:
|
1480 |
msgid "Read more..."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: src/addons/multisite.php:
|
1484 |
msgid "may include some site-wide data"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: src/addons/multisite.php:
|
1488 |
msgid "All sites"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: src/addons/multisite.php:
|
1492 |
msgid "Which site to restore"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: src/addons/migrator.php:
|
1496 |
msgid "Error when creating new site at your chosen address:"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: src/addons/migrator.php:
|
1500 |
msgid "Required information for restoring this backup was not given (%s)"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: src/addons/migrator.php:
|
1504 |
msgid "Attribute imported content to user"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: src/addons/migrator.php:
|
1508 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/addons/migrator.php:
|
1512 |
msgid "This feature is not compatible with %s"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: src/addons/migrator.php:
|
1516 |
msgid "Importing a single site into a multisite install"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: src/addons/migrator.php:
|
1520 |
msgid "other content from wp-content"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: src/addons/migrator.php:
|
1524 |
msgid "WordPress core"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: src/addons/migrator.php:
|
1528 |
-
#: src/addons/migrator.php:
|
1529 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1530 |
msgstr ""
|
1531 |
|
@@ -1533,11 +1610,11 @@ msgstr ""
|
|
1533 |
msgid "Call WordPress action:"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: src/admin.php:
|
1537 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Skipping: this archive was already restored."
|
1542 |
msgstr ""
|
1543 |
|
@@ -1569,51 +1646,51 @@ msgstr ""
|
|
1569 |
msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: src/admin.php:
|
1573 |
msgid "Send this backup to remote storage"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: src/admin.php:
|
1577 |
msgid "Check out UpdraftPlus Vault."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: src/admin.php:
|
1581 |
msgid "Not got any remote storage?"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: src/admin.php:
|
1585 |
msgid "settings"
|
1586 |
msgstr "إعدادات"
|
1587 |
|
1588 |
-
#: src/admin.php:
|
1589 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: src/admin.php:
|
1593 |
msgid "Include any files in the backup"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: src/admin.php:
|
1597 |
msgid "Include the database in the backup"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: src/admin.php:
|
1601 |
msgid "Continue restoration"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: src/admin.php:
|
1605 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: src/admin.php:
|
1609 |
msgid "Unfinished restoration"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: src/admin.php:
|
1613 |
msgid "%s minutes, %s seconds"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: src/admin.php:
|
1617 |
msgid "Backup Contents And Schedule"
|
1618 |
msgstr ""
|
1619 |
|
@@ -1621,16 +1698,16 @@ msgstr ""
|
|
1621 |
msgid "Premium / Extensions"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: src/admin.php:
|
1625 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: src/addons/morefiles.php:77, src/admin.php:
|
1629 |
msgctxt "(verb)"
|
1630 |
msgid "Download"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: src/admin.php:
|
1634 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1635 |
msgstr ""
|
1636 |
|
@@ -1761,7 +1838,7 @@ msgstr ""
|
|
1761 |
msgid "Could not access container"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/class-updraftplus.php:
|
1765 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1766 |
msgstr ""
|
1767 |
|
@@ -1890,35 +1967,35 @@ msgstr ""
|
|
1890 |
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)."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: src/admin.php:
|
1894 |
msgid "Backup sets removed:"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: src/admin.php:
|
1898 |
msgid "Processing..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/admin.php:
|
1902 |
msgid "For backups older than"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/admin.php:
|
1906 |
msgid "week(s)"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: src/admin.php:
|
1910 |
msgid "hour(s)"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/admin.php:
|
1914 |
msgid "day(s)"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/admin.php:
|
1918 |
msgid "in the month"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: src/admin.php:
|
1922 |
msgid "day"
|
1923 |
msgstr ""
|
1924 |
|
@@ -1926,7 +2003,7 @@ msgstr ""
|
|
1926 |
msgid "(as many as you like)"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: src/addons/fixtime.php:
|
1930 |
msgid "Add an additional retention rule..."
|
1931 |
msgstr ""
|
1932 |
|
@@ -1938,31 +2015,31 @@ msgstr ""
|
|
1938 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: src/methods/updraftvault.php:
|
1942 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: src/class-updraftplus.php:
|
1946 |
msgid "You must upgrade MySQL to be able to use this database."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: src/class-updraftplus.php:
|
1950 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: src/admin.php:
|
1954 |
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."
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: src/methods/updraftvault.php:
|
1958 |
msgid "Don't know your email address, or forgotten your password?"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: src/methods/updraftvault.php:
|
1962 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: src/methods/updraftvault.php:
|
1966 |
msgid "Read the FAQs here."
|
1967 |
msgstr ""
|
1968 |
|
@@ -1974,99 +2051,99 @@ msgstr ""
|
|
1974 |
msgid "Server-side encryption"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: src/methods/updraftvault.php:
|
1978 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Go to the remote storage settings in order to connect."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: src/methods/updraftvault.php:
|
1990 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: src/admin.php:
|
1994 |
msgid "Update quota count"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: src/admin.php:
|
1998 |
msgid "Counting..."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: src/admin.php:
|
2002 |
msgid "Disconnecting..."
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: src/admin.php:
|
2006 |
msgid "Connecting..."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: src/methods/updraftvault.php:
|
2010 |
msgid "Refresh current status"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: src/methods/updraftvault.php:
|
2014 |
-
#: src/methods/updraftvault.php:
|
2015 |
msgid "Get more quota"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: src/methods/updraftvault.php:
|
2019 |
-
#: src/methods/updraftvault.php:
|
2020 |
msgid "Current use:"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: src/methods/updraftvault.php:
|
2024 |
msgid "You can get more quota here"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: src/methods/updraftvault.php:
|
2028 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: src/admin.php:
|
2032 |
-
#: src/methods/updraftvault.php:
|
2033 |
msgid "Disconnect"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: src/methods/updraftvault.php:
|
2037 |
msgid "Quota:"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: src/methods/updraftvault.php:
|
2041 |
msgid "Vault owner"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: src/methods/updraftvault.php:
|
2045 |
msgid "Well done - there's nothing more needed to set up."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: src/methods/updraftvault.php:
|
2049 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: src/methods/updraftvault.php:
|
2053 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: src/methods/updraftvault.php:
|
2057 |
msgid "Go here for help"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: src/methods/updraftvault.php:
|
2061 |
msgid "E-mail"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: src/
|
2065 |
-
#: src/methods/updraftvault.php:
|
2066 |
msgid "Back..."
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: src/methods/updraftvault.php:
|
2070 |
msgid "Subscriptions can be cancelled at any time."
|
2071 |
msgstr ""
|
2072 |
|
@@ -2074,37 +2151,37 @@ msgstr ""
|
|
2074 |
msgid "Buy it now"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: src/methods/updraftvault.php:
|
2078 |
-
#: src/methods/updraftvault.php:
|
2079 |
msgid "%s per quarter"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: src/central/bootstrap.php:
|
2083 |
-
#: src/methods/updraftvault.php:
|
2084 |
msgid "Read more about it here."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: src/methods/updraftvault.php:
|
2088 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: src/methods/updraftvault.php:
|
2092 |
msgid "Already purchased space?"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/methods/updraftvault.php:
|
2096 |
msgid "Show the options"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: src/methods/updraftvault.php:
|
2100 |
msgid "First time user?"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: src/methods/updraftvault.php:
|
2104 |
msgid "Press a button to get started."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: src/methods/updraftvault.php:
|
2108 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2109 |
msgstr ""
|
2110 |
|
@@ -2124,96 +2201,84 @@ msgstr ""
|
|
2124 |
msgid "Updraft Vault"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: src/addons/azure.php:443, src/addons/backblaze.php:
|
2128 |
-
#: src/addons/googlecloud.php:843, src/methods/s3.php:
|
2129 |
msgid "Delete failed:"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/backup.php:
|
2133 |
msgid "The zip engine returned the message: %s."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: src/addons/s3-enhanced.php:
|
2137 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: src/addons/s3-enhanced.php:
|
2141 |
msgid "Allow deletion"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: src/addons/s3-enhanced.php:
|
2145 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: src/addons/s3-enhanced.php:
|
2149 |
msgid "Allow download"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: src/addons/migrator.php:
|
2153 |
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."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: src/addons/migrator.php:
|
2157 |
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."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: src/addons/migrator.php:
|
2161 |
msgid "Existing keys"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: src/addons/migrator.php:
|
2165 |
msgid "Your new key:"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: src/
|
2169 |
-
msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
|
2170 |
-
msgstr ""
|
2171 |
-
|
2172 |
-
#: src/addons/migrator.php:2366
|
2173 |
-
msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
|
2174 |
-
msgstr ""
|
2175 |
-
|
2176 |
-
#: src/addons/migrator.php:2366
|
2177 |
-
msgid "Keys for this site are created in the section below the one you just pressed in."
|
2178 |
-
msgstr ""
|
2179 |
-
|
2180 |
-
#: src/addons/migrator.php:2027, src/central/bootstrap.php:389
|
2181 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: src/addons/migrator.php:
|
2185 |
msgid "Key created successfully."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: src/addons/migrator.php:
|
2189 |
msgid "A key with this name already exists; you must use a unique name."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: src/addons/migrator.php:
|
2193 |
msgid "Also send this backup to the active remote storage locations"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: src/addons/migrator.php:
|
2197 |
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."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: src/addons/migrator.php:
|
2201 |
msgid "site not found"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: src/addons/migrator.php:
|
2205 |
msgid "Backup data will be sent to:"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/addons/migrator.php:
|
2209 |
msgid "Restore an existing backup set onto this site"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: src/addons/migrator.php:
|
2213 |
msgid "This site has no backups to restore from yet."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: src/addons/reporting.php:
|
2217 |
msgid "Backup made by %s"
|
2218 |
msgstr ""
|
2219 |
|
@@ -2221,14 +2286,16 @@ msgstr ""
|
|
2221 |
msgid "This storage method does not allow downloading"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: src/admin.php:
|
2225 |
msgid "(backup set imported from remote location)"
|
2226 |
msgstr ""
|
2227 |
|
|
|
2228 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2229 |
msgid "Site"
|
2230 |
msgstr ""
|
2231 |
|
|
|
2232 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2233 |
msgid "Backup sent to remote site - not available for download."
|
2234 |
msgstr ""
|
@@ -2241,80 +2308,80 @@ msgstr ""
|
|
2241 |
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."
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: src/addons/migrator.php:
|
2245 |
msgid "Testing connection..."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: src/admin.php:
|
2249 |
msgid "Deleting..."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: src/admin.php:
|
2253 |
msgid "key name"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: src/admin.php:
|
2257 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: src/admin.php:
|
2261 |
msgid "Creating..."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: src/addons/migrator.php:
|
2265 |
msgid "Or, receive a backup from a remote site"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: src/addons/migrator.php:
|
2269 |
msgid "Paste key here"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: src/addons/migrator.php:
|
2273 |
msgid "How do I get a site's key?"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: src/addons/migrator.php:
|
2277 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: src/addons/migrator.php:
|
2281 |
msgid "Or, send a backup to another site"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: src/addons/migrator.php:
|
2285 |
msgid "Send"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: src/addons/migrator.php:
|
2289 |
msgid "Send to site:"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: src/addons/migrator.php:
|
2293 |
msgid "No receiving sites have yet been added."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: src/addons/migrator.php:
|
2297 |
msgid "It is for sending backups to the following site: "
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: src/addons/migrator.php:
|
2301 |
msgid "The key was successfully added."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: src/addons/migrator.php:
|
2305 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: src/addons/migrator.php:
|
2309 |
-
#: src/addons/migrator.php:
|
2310 |
msgid "The entered key was corrupt - please try again."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: src/addons/migrator.php:
|
2314 |
msgid "The entered key was the wrong length - please try again."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: src/addons/migrator.php:
|
2318 |
msgid "key"
|
2319 |
msgstr ""
|
2320 |
|
@@ -2350,19 +2417,19 @@ msgstr ""
|
|
2350 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: src/admin.php:
|
2354 |
msgid "Resetting..."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: src/addons/migrator.php:
|
2358 |
msgid "Add site"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: src/admin.php:
|
2362 |
msgid "Adding..."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: src/udaddons/options.php:
|
2366 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2367 |
msgstr ""
|
2368 |
|
@@ -2382,11 +2449,11 @@ msgstr ""
|
|
2382 |
msgid "Go here to re-enter your password."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: src/addons/migrator.php:
|
2386 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: src/addons/migrator.php:
|
2390 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2391 |
msgstr ""
|
2392 |
|
@@ -2394,7 +2461,7 @@ msgstr ""
|
|
2394 |
msgid "To restore using any of the backup sets below, press the button."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: src/admin.php:
|
2398 |
msgid "You have made changes to your settings, and not saved."
|
2399 |
msgstr ""
|
2400 |
|
@@ -2406,7 +2473,7 @@ msgstr ""
|
|
2406 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: src/addons/azure.php:599, src/addons/migrator.php:
|
2410 |
#: src/addons/onedrive.php:1074
|
2411 |
msgid "For longer help, including screenshots, follow this link."
|
2412 |
msgstr ""
|
@@ -2436,43 +2503,43 @@ msgstr ""
|
|
2436 |
msgid "Please re-authorize the connection to your %s account."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: src/methods/email.php:
|
2440 |
msgid "configure it here"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2444 |
msgid "To remove the block, please go here."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: src/addons/s3-enhanced.php:
|
2448 |
msgid "Do remember to save your settings."
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: src/addons/s3-enhanced.php:
|
2452 |
msgid "You are now using a IAM user account to access your bucket."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: src/addons/s3-enhanced.php:
|
2456 |
msgid "S3 bucket"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: src/addons/s3-enhanced.php:
|
2460 |
msgid "China (Beijing) (restricted)"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: src/addons/s3-enhanced.php:
|
2464 |
msgid "South America (Sao Paulo)"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: src/addons/s3-enhanced.php:
|
2468 |
msgid "Asia Pacific (Tokyo)"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: src/addons/s3-enhanced.php:
|
2472 |
msgid "Asia Pacific (Sydney)"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: src/addons/s3-enhanced.php:
|
2476 |
msgid "Asia Pacific (Singapore)"
|
2477 |
msgstr ""
|
2478 |
|
@@ -2520,7 +2587,7 @@ msgstr ""
|
|
2520 |
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."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: src/addons/s3-enhanced.php:
|
2524 |
msgid "Create new IAM user and S3 bucket"
|
2525 |
msgstr ""
|
2526 |
|
@@ -2585,7 +2652,7 @@ msgstr ""
|
|
2585 |
msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/methods/s3.php:
|
2589 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2590 |
msgstr ""
|
2591 |
|
@@ -2598,17 +2665,17 @@ msgid "UpdraftPlus news, high-quality training materials for WordPress developer
|
|
2598 |
msgstr ""
|
2599 |
|
2600 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2601 |
-
#: src/methods/updraftvault.php:
|
2602 |
#: src/udaddons/updraftplus-addons.php:887
|
2603 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2607 |
#: src/udaddons/updraftplus-addons.php:887
|
2608 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2612 |
#: src/udaddons/updraftplus-addons.php:887
|
2613 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2614 |
msgstr ""
|
@@ -2635,7 +2702,7 @@ msgstr ""
|
|
2635 |
|
2636 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2637 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2638 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
2639 |
msgid "UpdraftPlus Premium"
|
2640 |
msgstr ""
|
2641 |
|
@@ -2648,11 +2715,11 @@ msgstr ""
|
|
2648 |
msgid "Dismiss (for %s months)"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: src/addons/fixtime.php:
|
2652 |
msgid "(at same time as files backup)"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: src/admin.php:
|
2656 |
msgid "No backup has been completed"
|
2657 |
msgstr ""
|
2658 |
|
@@ -2685,8 +2752,8 @@ msgstr ""
|
|
2685 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: src/methods/s3.php:
|
2689 |
-
#: src/methods/s3.php:
|
2690 |
msgid "%s Error: Failed to initialise"
|
2691 |
msgstr ""
|
2692 |
|
@@ -2695,7 +2762,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
|
|
2695 |
msgid "or"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: src/admin.php:
|
2699 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2700 |
msgstr ""
|
2701 |
|
@@ -2726,7 +2793,7 @@ msgstr ""
|
|
2726 |
msgid "Check this box to have a basic report sent to"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: src/admin.php:
|
2730 |
msgctxt "i.e. Non-automatic"
|
2731 |
msgid "Manual"
|
2732 |
msgstr ""
|
@@ -2740,11 +2807,11 @@ msgstr ""
|
|
2740 |
msgid "Change Lock Settings"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: src/addons/morefiles.php:
|
2744 |
msgid "Any other file/directory on your server that you wish to back up"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: src/admin.php:
|
2748 |
msgid "For even more features and personal support, check out "
|
2749 |
msgstr ""
|
2750 |
|
@@ -2753,7 +2820,7 @@ msgid "Database decryption phrase"
|
|
2753 |
msgstr ""
|
2754 |
|
2755 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2756 |
-
#: src/admin.php:
|
2757 |
msgid "Automatic backup before update"
|
2758 |
msgstr ""
|
2759 |
|
@@ -2814,7 +2881,7 @@ msgid "Please make sure that you have made a note of the password!"
|
|
2814 |
msgstr ""
|
2815 |
|
2816 |
#: src/addons/lockadmin.php:156,
|
2817 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2818 |
msgid "Lock access to the UpdraftPlus settings page"
|
2819 |
msgstr ""
|
2820 |
|
@@ -2830,15 +2897,15 @@ msgstr ""
|
|
2830 |
msgid "The admin password has now been removed."
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: src/addons/morefiles.php:
|
2834 |
msgid "(learn more about this significant option)"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: src/udaddons/options.php:
|
2838 |
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."
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: src/admin.php:
|
2842 |
msgid "View Log"
|
2843 |
msgstr ""
|
2844 |
|
@@ -2855,11 +2922,11 @@ msgstr ""
|
|
2855 |
msgid "and retain this many scheduled backups"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: src/admin.php:
|
2859 |
msgid "incremental backup; base backup: %s"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2863 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2864 |
msgstr ""
|
2865 |
|
@@ -2867,48 +2934,48 @@ msgstr ""
|
|
2867 |
msgid "Upload files into UpdraftPlus."
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: src/admin.php:
|
2871 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2872 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: src/class-updraftplus.php:
|
2876 |
msgid "Backup label:"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/backblaze.php:
|
2880 |
msgid "Error: unexpected file read fail"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: src/backup.php:
|
2884 |
msgid "check your log for more details."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: src/backup.php:
|
2888 |
msgid "your web hosting account appears to be full; please see: %s"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: src/backup.php:
|
2892 |
msgid "A zip error occurred"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: src/addons/reporting.php:
|
2896 |
msgid "Your label for this backup (optional)"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:
|
2900 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/methods/updraftvault.php:
|
2904 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: src/methods/updraftvault.php:
|
2908 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: src/methods/updraftvault.php:
|
2912 |
msgid "You need to supply both an email address and a password"
|
2913 |
msgstr ""
|
2914 |
|
@@ -2916,36 +2983,36 @@ msgstr ""
|
|
2916 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/class-updraftplus.php:
|
2920 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: src/class-updraftplus.php:
|
2924 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: src/addons/migrator.php:
|
2928 |
msgid "already done"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: src/addons/migrator.php:
|
2932 |
msgid "skipped (not in list)"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: src/addons/migrator.php:
|
2936 |
-
#: src/addons/migrator.php:
|
2937 |
msgid "Search and replacing table:"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/addons/migrator.php:
|
2941 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/addons/migrator.php:
|
2945 |
msgid "These tables only"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/addons/migrator.php:
|
2949 |
msgid "Rows per batch"
|
2950 |
msgstr ""
|
2951 |
|
@@ -2957,19 +3024,19 @@ msgstr ""
|
|
2957 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: src/class-updraftplus.php:
|
2961 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: src/class-updraftplus.php:
|
2965 |
msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: src/class-updraftplus.php:
|
2969 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: src/class-updraftplus.php:
|
2973 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2974 |
msgstr ""
|
2975 |
|
@@ -2998,7 +3065,7 @@ msgstr ""
|
|
2998 |
msgid "UpdraftPlus is on social media - check us out!"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: src/admin.php:
|
3002 |
msgid "Why am I seeing this?"
|
3003 |
msgstr ""
|
3004 |
|
@@ -3010,15 +3077,15 @@ msgstr ""
|
|
3010 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/admin.php:
|
3014 |
msgid "Start backup"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: src/class-updraftplus.php:
|
3018 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: src/admin.php:
|
3022 |
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."
|
3023 |
msgstr ""
|
3024 |
|
@@ -3026,11 +3093,11 @@ msgstr ""
|
|
3026 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: src/admin.php:
|
3030 |
msgid "This file could not be uploaded"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/admin.php:
|
3034 |
msgid "You will find more information about this in the Settings section."
|
3035 |
msgstr ""
|
3036 |
|
@@ -3050,7 +3117,7 @@ msgstr ""
|
|
3050 |
msgid "Memory limit"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: src/class-updraftplus.php:
|
3054 |
msgid "restoration"
|
3055 |
msgstr ""
|
3056 |
|
@@ -3074,42 +3141,42 @@ msgstr ""
|
|
3074 |
msgid "Backup succeeded"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: src/admin.php:
|
3078 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3079 |
msgid "Every %s hours"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: src/addons/migrator.php:
|
3083 |
msgid "search and replace"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: src/addons/migrator.php:
|
3087 |
msgid "Go"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: src/addons/migrator.php:
|
3091 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: src/addons/migrator.php:
|
3095 |
msgid "This can easily destroy your site; so, use it with care!"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: src/addons/migrator.php:
|
3099 |
msgid "Replace with"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: src/addons/migrator.php:
|
3103 |
msgid "Search for"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: src/addons/migrator.php:
|
3107 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3108 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3109 |
msgid "Search / replace database"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: src/addons/migrator.php:
|
3113 |
msgid "search term"
|
3114 |
msgstr ""
|
3115 |
|
@@ -3125,11 +3192,11 @@ msgstr ""
|
|
3125 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: src/methods/googledrive.php:
|
3129 |
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."
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "You have not yet made any backups."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3149,11 +3216,11 @@ msgstr ""
|
|
3149 |
msgid "Free disk space in account:"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: src/admin.php:
|
3153 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: src/admin.php:540, src/admin.php:
|
3157 |
#: src/includes/deprecated-actions.php:29,
|
3158 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3159 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
@@ -3164,19 +3231,19 @@ msgstr ""
|
|
3164 |
msgid "Current Status"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: src/admin.php:
|
3168 |
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."
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: src/admin.php:
|
3172 |
msgid "To make a backup, just press the Backup Now button."
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: src/admin.php:
|
3176 |
msgid "Welcome to UpdraftPlus!"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: src/addons/moredatabase.php:
|
3180 |
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)."
|
3181 |
msgstr ""
|
3182 |
|
@@ -3244,24 +3311,25 @@ msgstr ""
|
|
3244 |
msgid "user"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: src/class-updraftplus.php:
|
3248 |
msgid "External database (%s)"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
-
#: src/methods/googledrive.php:
|
3252 |
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."
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: src/methods/googledrive.php:
|
3256 |
msgid "failed to access parent folder"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3260 |
-
#: src/addons/onedrive.php:868, src/methods/googledrive.php:
|
|
|
3261 |
msgid "However, subsequent access attempts failed:"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: src/admin.php:
|
3265 |
msgid "External database"
|
3266 |
msgstr ""
|
3267 |
|
@@ -3293,7 +3361,7 @@ msgstr ""
|
|
3293 |
msgid "use UpdraftPlus Premium"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: src/class-updraftplus.php:
|
3297 |
msgid "Decryption failed. The database file is encrypted."
|
3298 |
msgstr ""
|
3299 |
|
@@ -3314,7 +3382,7 @@ msgstr ""
|
|
3314 |
msgid "database connection attempt failed."
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: src/addons/migrator.php:
|
3318 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3319 |
msgstr ""
|
3320 |
|
@@ -3376,7 +3444,7 @@ msgstr ""
|
|
3376 |
msgid "Failed to upload %s"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: src/methods/dropbox.php:
|
3380 |
msgid "Success:"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3384,15 +3452,15 @@ msgstr ""
|
|
3384 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:
|
3388 |
msgid "(You appear to be already authenticated)."
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: src/methods/dropbox.php:
|
3392 |
msgid "Dropbox"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:
|
3396 |
msgid "Authenticate with %s"
|
3397 |
msgstr ""
|
3398 |
|
@@ -3424,37 +3492,37 @@ msgid "%s error - failed to access the container"
|
|
3424 |
msgstr ""
|
3425 |
|
3426 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3427 |
-
#: src/methods/dropbox.php:
|
3428 |
msgid "Account holder's name: %s."
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: src/methods/googledrive.php:
|
3432 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: src/methods/googledrive.php:
|
3436 |
msgid "It is an ID number internal to Google Drive"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: src/methods/googledrive.php:
|
3440 |
msgid "<strong>This is NOT a folder name</strong>."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3444 |
-
#: src/methods/googledrive.php:
|
3445 |
msgid "Folder"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3449 |
-
#: src/methods/googledrive.php:
|
3450 |
msgid "%s download: failed: file not found"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:
|
3454 |
msgid "Name: %s."
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: src/methods/googledrive.php:
|
3458 |
msgid "Google Drive list files: failed to access parent folder"
|
3459 |
msgstr ""
|
3460 |
|
@@ -3479,7 +3547,7 @@ msgstr ""
|
|
3479 |
msgid "Fetch"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: src/addons/migrator.php:
|
3483 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3484 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3485 |
msgid "This feature requires %s version %s or later"
|
@@ -3489,7 +3557,7 @@ msgstr ""
|
|
3489 |
msgid "Failed to unpack the archive"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: src/class-updraftplus.php:
|
3493 |
msgid "Error - failed to download the file"
|
3494 |
msgstr ""
|
3495 |
|
@@ -3513,8 +3581,8 @@ msgstr ""
|
|
3513 |
msgid "password/key"
|
3514 |
msgstr " الرقم السري/المفتاح"
|
3515 |
|
3516 |
-
#: src/addons/migrator.php:
|
3517 |
-
#: src/admin.php:
|
3518 |
msgid "Key"
|
3519 |
msgstr "مفتاح"
|
3520 |
|
@@ -3530,24 +3598,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
|
|
3530 |
msgid "SCP/SFTP password/key"
|
3531 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
3532 |
|
3533 |
-
#: src/admin.php:
|
3534 |
msgid "Files backup (created by %s)"
|
3535 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
3536 |
|
3537 |
-
#: src/admin.php:
|
3538 |
msgid "Files and database WordPress backup (created by %s)"
|
3539 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
3540 |
|
3541 |
-
#: src/addons/importer.php:276, src/admin.php:
|
3542 |
#: src/includes/class-backup-history.php:349
|
3543 |
msgid "Backup created by: %s."
|
3544 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
3545 |
|
3546 |
-
#: src/admin.php:
|
3547 |
msgid "Database (created by %s)"
|
3548 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
3549 |
|
3550 |
-
#: src/admin.php:
|
3551 |
msgid "unknown source"
|
3552 |
msgstr "مصدر غير معروف"
|
3553 |
|
@@ -3559,32 +3627,32 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
|
|
3559 |
msgid "Upload backup files"
|
3560 |
msgstr "رفع ملفات النسخة الإحتياطية"
|
3561 |
|
3562 |
-
#: src/admin.php:
|
3563 |
msgid "This backup was created by %s, and can be imported."
|
3564 |
msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
|
3565 |
|
3566 |
-
#: src/admin.php:
|
3567 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3568 |
msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
|
3569 |
|
3570 |
-
#: src/admin.php:
|
3571 |
msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
|
3572 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
3573 |
|
3574 |
-
#: src/admin.php:
|
3575 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3576 |
msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
|
3577 |
|
3578 |
-
#: src/admin.php:
|
3579 |
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."
|
3580 |
msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
|
3581 |
|
3582 |
-
#: src/admin.php:
|
3583 |
#: src/includes/class-backup-history.php:356
|
3584 |
msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3585 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3586 |
|
3587 |
-
#: src/admin.php:
|
3588 |
#: src/restorer.php:1577
|
3589 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3590 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
@@ -3605,7 +3673,7 @@ msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
|
|
3605 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3606 |
msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
|
3607 |
|
3608 |
-
#: src/addons/backblaze.php:
|
3609 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3610 |
msgid "No settings were found"
|
3611 |
msgstr "لم يتم العثور على الإعدادات"
|
@@ -3614,7 +3682,7 @@ msgstr "لم يتم العثور على الإعدادات"
|
|
3614 |
msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
|
3615 |
msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
|
3616 |
|
3617 |
-
#: src/admin.php:
|
3618 |
msgid "Rescanning remote and local storage for backup sets..."
|
3619 |
msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
|
3620 |
|
@@ -3623,20 +3691,20 @@ msgstr "جاري فحص الإستضافة السحابية والمساحة ا
|
|
3623 |
msgid "(Read more)"
|
3624 |
msgstr "(قراءة المزيد)"
|
3625 |
|
3626 |
-
#: src/addons/reporting.php:
|
3627 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3628 |
msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
|
3629 |
|
3630 |
-
#: src/addons/morefiles.php:
|
3631 |
msgid "No backup of location: there was nothing found to back up"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:
|
3635 |
-
#: src/addons/morefiles.php:
|
3636 |
msgid "Remove"
|
3637 |
msgstr "حذف"
|
3638 |
|
3639 |
-
#: src/methods/s3.php:
|
3640 |
msgid "Other %s FAQs."
|
3641 |
msgstr "الأسئلة الشائعة %s الأخرى."
|
3642 |
|
@@ -3644,16 +3712,16 @@ msgstr "الأسئلة الشائعة %s الأخرى."
|
|
3644 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3645 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
3646 |
|
3647 |
-
#: src/addons/morefiles.php:
|
3648 |
msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
|
3649 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
3650 |
|
3651 |
-
#: src/class-updraftplus.php:
|
3652 |
#: src/restorer.php:1608
|
3653 |
msgid "Your hosting company must enable these functions before %s can work."
|
3654 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
3655 |
|
3656 |
-
#: src/class-updraftplus.php:
|
3657 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3658 |
msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
|
3659 |
|
@@ -3673,7 +3741,7 @@ msgstr "خادم FTP غير مشفر اعتيادي"
|
|
3673 |
msgid "Backup created by:"
|
3674 |
msgstr "نسخة احتياطية أنشأها:"
|
3675 |
|
3676 |
-
#: src/udaddons/options.php:
|
3677 |
msgid "Available to claim on this site"
|
3678 |
msgstr "متوفر للطلب من هذا الموقع"
|
3679 |
|
@@ -3723,19 +3791,19 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
|
|
3723 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3724 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
3725 |
|
3726 |
-
#: src/class-updraftplus.php:
|
3727 |
msgid "The attempt to undo the double-compression succeeded."
|
3728 |
msgstr "نجاح محاولة التراجع من الضغط المزدوج"
|
3729 |
|
3730 |
-
#: src/class-updraftplus.php:
|
3731 |
msgid "The attempt to undo the double-compression failed."
|
3732 |
msgstr "فشل محاولة التراجع من الضغط المزدوج"
|
3733 |
|
3734 |
-
#: src/class-updraftplus.php:
|
3735 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3736 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
3737 |
|
3738 |
-
#: src/includes/class-wpadmin-commands.php:
|
3739 |
msgid "Constants"
|
3740 |
msgstr "ثوابت"
|
3741 |
|
@@ -3751,7 +3819,7 @@ msgstr "لم نجد أي جداول لقاعدة البيانات"
|
|
3751 |
msgid "please wait for the rescheduled attempt"
|
3752 |
msgstr "فضلا انتظر محاولة إعادة الجدولة"
|
3753 |
|
3754 |
-
#: src/addons/reporting.php:
|
3755 |
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."
|
3756 |
msgstr "لاحظ أن رسائل التحذير استشارية - عملية النسخ الاحتياطي لا تتوقف بالنسبة لهم. بدلا من ذلك، ستوفر لك معلومات قد تجدها مفيدة، أو قد تشير إلى مصدر المشكلة إذا لم تنجح عملية النسخ الاحتياطي."
|
3757 |
|
@@ -3764,7 +3832,7 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
|
|
3764 |
msgid "Errors occurred:"
|
3765 |
msgstr "أخطاء حدثت:"
|
3766 |
|
3767 |
-
#: src/admin.php:
|
3768 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3769 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
3770 |
|
@@ -3788,11 +3856,11 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
|
|
3788 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3789 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
3790 |
|
3791 |
-
#: src/admin.php:
|
3792 |
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)"
|
3793 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
3794 |
|
3795 |
-
#: src/addons/migrator.php:
|
3796 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3797 |
msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
|
3798 |
|
@@ -3801,7 +3869,7 @@ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعي
|
|
3801 |
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."
|
3802 |
msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
|
3803 |
|
3804 |
-
#: src/addons/moredatabase.php:137, src/admin.php:
|
3805 |
msgid "Messages:"
|
3806 |
msgstr "رسائل:"
|
3807 |
|
@@ -3899,11 +3967,11 @@ msgid "Rackspace Cloud Files, enhanced"
|
|
3899 |
msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
|
3900 |
|
3901 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3902 |
-
#: src/methods/cloudfiles.php:
|
3903 |
msgid "Cloud Files Container"
|
3904 |
msgstr "حاوية الملفات السحابية"
|
3905 |
|
3906 |
-
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:
|
3907 |
msgid "Cloud Files API Key"
|
3908 |
msgstr "مفتاح API للملفات السحابية"
|
3909 |
|
@@ -3962,31 +4030,32 @@ msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حس
|
|
3962 |
msgid "Authorisation failed (check your credentials)"
|
3963 |
msgstr "فشل التفويض (راجع معلوماتك)"
|
3964 |
|
3965 |
-
#: src/
|
|
|
3966 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
3967 |
msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
|
3968 |
|
3969 |
-
#: src/admin.php:
|
3970 |
msgid "Create"
|
3971 |
msgstr "خلق"
|
3972 |
|
3973 |
-
#: src/admin.php:
|
3974 |
msgid "Trying..."
|
3975 |
msgstr "اعادة المحاولة..."
|
3976 |
|
3977 |
-
#: src/admin.php:
|
3978 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3979 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
3980 |
|
3981 |
-
#: src/admin.php:
|
3982 |
msgid "Error data:"
|
3983 |
msgstr "خطأ بالبيانات:"
|
3984 |
|
3985 |
-
#: src/admin.php:
|
3986 |
msgid "Backup does not exist in the backup history"
|
3987 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
3988 |
|
3989 |
-
#: src/admin.php:
|
3990 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
|
3991 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
3992 |
|
@@ -4014,88 +4083,88 @@ msgstr "لا يمكن نقل البيانات بعيدا."
|
|
4014 |
msgid "Moving old data out of the way..."
|
4015 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
4016 |
|
4017 |
-
#: src/addons/reporting.php:
|
4018 |
msgid "Add another address..."
|
4019 |
msgstr "إضافة عنوان آخر ..."
|
4020 |
|
4021 |
-
#: src/addons/reporting.php:
|
4022 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4023 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
4024 |
|
4025 |
-
#: src/addons/reporting.php:
|
4026 |
msgid "Email reports"
|
4027 |
msgstr "تقارير البريد الإلكتروني"
|
4028 |
|
4029 |
-
#: src/class-updraftplus.php:
|
4030 |
msgid "%s checksum: %s"
|
4031 |
msgstr "%s الاختباري:%s"
|
4032 |
|
4033 |
-
#: src/class-updraftplus.php:
|
4034 |
msgid "files: %s"
|
4035 |
msgstr "ملفات:%s"
|
4036 |
|
4037 |
-
#: src/addons/reporting.php:
|
4038 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4039 |
msgstr "استخدام قسم \"التقارير\" لتكوين عناوين البريد الإلكتروني ليتم استخدامها."
|
4040 |
|
4041 |
-
#: src/addons/reporting.php:
|
4042 |
msgid "Debugging information"
|
4043 |
msgstr "معلومات التصحيح"
|
4044 |
|
4045 |
-
#: src/addons/reporting.php:
|
4046 |
msgid "Uploaded to:"
|
4047 |
msgstr "تحميلها على:"
|
4048 |
|
4049 |
-
#: src/addons/reporting.php:
|
4050 |
msgid "Time taken:"
|
4051 |
msgstr "الوقت المستغرق:"
|
4052 |
|
4053 |
-
#: src/addons/reporting.php:
|
4054 |
msgid "Warnings"
|
4055 |
msgstr "تحذيرات"
|
4056 |
|
4057 |
-
#: src/addons/reporting.php:
|
4058 |
msgid "Errors"
|
4059 |
msgstr "أخطاء"
|
4060 |
|
4061 |
-
#: src/addons/reporting.php:
|
4062 |
msgid "Errors / warnings:"
|
4063 |
msgstr "أخطاء / تحذيرات:"
|
4064 |
|
4065 |
-
#: src/addons/morefiles.php:
|
4066 |
-
#: src/addons/reporting.php:
|
4067 |
msgid "Contains:"
|
4068 |
msgstr "يحتوي على:"
|
4069 |
|
4070 |
-
#: src/addons/reporting.php:
|
4071 |
msgid "Backup began:"
|
4072 |
msgstr "بدأ النسخ الاحتياطي:"
|
4073 |
|
4074 |
-
#: src/addons/reporting.php:
|
4075 |
msgid "Backup Report"
|
4076 |
msgstr "تقرير النسخ الاحتياطي"
|
4077 |
|
4078 |
-
#: src/addons/reporting.php:
|
4079 |
msgid "%d hours, %d minutes, %d seconds"
|
4080 |
msgstr "%d ساعة،%d دقيقة، %d ثانية"
|
4081 |
|
4082 |
-
#: src/addons/reporting.php:
|
4083 |
msgid "%d errors, %d warnings"
|
4084 |
msgstr "%d الأخطاء، %d تحذيرات"
|
4085 |
|
4086 |
-
#: src/addons/onedrive.php:814, src/methods/dropbox.php:
|
4087 |
-
#: src/methods/dropbox.php:
|
4088 |
msgid "%s authentication"
|
4089 |
msgstr "%s مصادقة"
|
4090 |
|
4091 |
-
#: src/addons/onedrive.php:814, src/class-updraftplus.php:
|
4092 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4093 |
-
#: src/methods/dropbox.php:
|
4094 |
-
#: src/methods/dropbox.php:
|
4095 |
msgid "%s error: %s"
|
4096 |
msgstr "%s خطأ: %s"
|
4097 |
|
4098 |
-
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:
|
4099 |
msgid "%s logo"
|
4100 |
msgstr "%s الشعار"
|
4101 |
|
@@ -4103,20 +4172,20 @@ msgstr "%s الشعار"
|
|
4103 |
msgid "%s did not return the expected response - check your log file for more details"
|
4104 |
msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
|
4105 |
|
4106 |
-
#: src/methods/s3.php:
|
4107 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4108 |
msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
|
4109 |
|
4110 |
-
#: src/methods/email.php:
|
4111 |
msgid "For more options, use the \"%s\" add-on."
|
4112 |
msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
|
4113 |
|
4114 |
-
#: src/methods/email.php:
|
4115 |
msgid "Your site's admin email address (%s) will be used."
|
4116 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
4117 |
|
4118 |
-
#: src/admin.php:
|
4119 |
-
#: src/methods/updraftvault.php:
|
4120 |
msgid "Connect"
|
4121 |
msgstr "الإتصال"
|
4122 |
|
@@ -4124,20 +4193,19 @@ msgstr "الإتصال"
|
|
4124 |
msgid "For more reporting features, use the Reporting add-on."
|
4125 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
4126 |
|
4127 |
-
#: src/class-updraftplus.php:
|
4128 |
msgid "(version: %s)"
|
4129 |
msgstr "(الإصدار: %s)"
|
4130 |
|
4131 |
-
#: src/addons/reporting.php:465, src/addons/reporting.php:465,
|
4132 |
#: src/admin.php:658
|
4133 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4134 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
4135 |
|
4136 |
-
#: src/addons/reporting.php:
|
4137 |
-
msgid "When the Email storage method is enabled, also send the
|
4138 |
-
msgstr "
|
4139 |
|
4140 |
-
#: src/addons/reporting.php:
|
4141 |
msgid "Latest status:"
|
4142 |
msgstr "آخر التحديثات:"
|
4143 |
|
@@ -4149,7 +4217,7 @@ msgstr "تحتوي النسخة الإحتياطية على:"
|
|
4149 |
msgid "Backed up: %s"
|
4150 |
msgstr "نسخ احتياطي: %s"
|
4151 |
|
4152 |
-
#: src/addons/reporting.php:
|
4153 |
msgid "The log file has been attached to this email."
|
4154 |
msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
|
4155 |
|
@@ -4177,59 +4245,59 @@ msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احت
|
|
4177 |
msgid "Files and database"
|
4178 |
msgstr "ملفات وقواعد البيانات"
|
4179 |
|
4180 |
-
#: src/options.php:
|
4181 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4182 |
msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
|
4183 |
|
4184 |
-
#: src/options.php:
|
4185 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4186 |
msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
|
4187 |
|
4188 |
-
#: src/options.php:
|
4189 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4190 |
msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
|
4191 |
|
4192 |
-
#: src/options.php:
|
4193 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4194 |
msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
|
4195 |
|
4196 |
-
#: src/options.php:
|
4197 |
msgid "UpdraftPlus warning:"
|
4198 |
msgstr "تحذير UpdraftPlus :"
|
4199 |
|
4200 |
-
#: src/udaddons/options.php:
|
4201 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4202 |
msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
|
4203 |
|
4204 |
-
#: src/udaddons/options.php:
|
4205 |
msgid "please follow this link to update the plugin in order to activate it"
|
4206 |
msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
|
4207 |
|
4208 |
-
#: src/udaddons/options.php:
|
4209 |
msgid "please follow this link to update the plugin in order to get it"
|
4210 |
msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
|
4211 |
|
4212 |
-
#: src/udaddons/options.php:
|
4213 |
msgid "latest"
|
4214 |
msgstr "آخر"
|
4215 |
|
4216 |
-
#: src/udaddons/options.php:
|
4217 |
msgid "Your version: %s"
|
4218 |
msgstr "الإصدار: %s"
|
4219 |
|
4220 |
-
#: src/udaddons/options.php:
|
4221 |
msgid "You've got it"
|
4222 |
msgstr "كنت قد حصلت عليه"
|
4223 |
|
4224 |
-
#: src/udaddons/options.php:
|
4225 |
msgid "UpdraftPlus Support"
|
4226 |
msgstr "دعم UpdraftPlus"
|
4227 |
|
4228 |
-
#: src/udaddons/options.php:
|
4229 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4230 |
msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
4231 |
|
4232 |
-
#: src/udaddons/options.php:
|
4233 |
msgid "UpdraftPlus Addons"
|
4234 |
msgstr "اضافات UpdraftPlus"
|
4235 |
|
@@ -4237,16 +4305,16 @@ msgstr "اضافات UpdraftPlus"
|
|
4237 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4238 |
msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
4239 |
|
4240 |
-
#: src/methods/updraftvault.php:
|
4241 |
#: src/udaddons/updraftplus-addons.php:933
|
4242 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4243 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
|
4244 |
|
4245 |
-
#: src/methods/updraftvault.php:
|
4246 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4247 |
msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
|
4248 |
|
4249 |
-
#: src/methods/updraftvault.php:
|
4250 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4251 |
msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
|
4252 |
|
@@ -4258,18 +4326,18 @@ msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
|
|
4258 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4259 |
msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
4260 |
|
4261 |
-
#: src/methods/email.php:
|
4262 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4263 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4264 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4265 |
msgid "Reporting"
|
4266 |
msgstr "التقارير"
|
4267 |
|
4268 |
-
#: src/admin.php:
|
4269 |
msgid "Options (raw)"
|
4270 |
msgstr "خيارات (الخام)"
|
4271 |
|
4272 |
-
#: src/addons/reporting.php:
|
4273 |
msgid "Send a report only when there are warnings/errors"
|
4274 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
4275 |
|
@@ -4285,87 +4353,87 @@ msgstr ""
|
|
4285 |
msgid "See also the \"More Files\" add-on from our shop."
|
4286 |
msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
|
4287 |
|
4288 |
-
#: src/backup.php:
|
4289 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4290 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
4291 |
|
4292 |
-
#: src/class-updraftplus.php:
|
4293 |
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)"
|
4294 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
4295 |
|
4296 |
-
#: src/udaddons/options.php:
|
4297 |
msgid "Manage Addons"
|
4298 |
msgstr "ادارة الأضافات"
|
4299 |
|
4300 |
-
#: src/udaddons/options.php:
|
4301 |
msgid "Buy It"
|
4302 |
msgstr "شراء"
|
4303 |
|
4304 |
-
#: src/udaddons/options.php:
|
4305 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4306 |
msgstr "الحصول علية من متجر UpdraftPlus.Com"
|
4307 |
|
4308 |
-
#: src/udaddons/options.php:
|
4309 |
msgid "activate it on this site"
|
4310 |
msgstr "تنشيطة على هذا الموقع"
|
4311 |
|
4312 |
-
#: src/udaddons/options.php:
|
4313 |
msgid "You have an inactive purchase"
|
4314 |
msgstr "لديك شراء غير فعال"
|
4315 |
|
4316 |
-
#: src/udaddons/options.php:
|
4317 |
msgid "Assigned to this site"
|
4318 |
msgstr "تعيين إلى هذا الموقع"
|
4319 |
|
4320 |
-
#: src/udaddons/options.php:
|
4321 |
msgid "Available for this site (via your all-addons purchase)"
|
4322 |
msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
|
4323 |
|
4324 |
-
#: src/udaddons/options.php:
|
4325 |
msgid "(apparently a pre-release or withdrawn release)"
|
4326 |
msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
|
4327 |
|
4328 |
-
#: src/udaddons/options.php:
|
4329 |
msgid "Go here"
|
4330 |
msgstr "اذهب هنا"
|
4331 |
|
4332 |
-
#: src/udaddons/options.php:
|
4333 |
msgid "Need to get support?"
|
4334 |
msgstr "هل انت بحاجة للحصول على الدعم؟"
|
4335 |
|
4336 |
-
#: src/udaddons/options.php:
|
4337 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4338 |
msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
|
4339 |
|
4340 |
-
#: src/udaddons/options.php:
|
4341 |
msgid "An unknown response was received. Response was:"
|
4342 |
msgstr "تم تلقى رد غير معروف. الرد هو:"
|
4343 |
|
4344 |
-
#: src/udaddons/options.php:
|
4345 |
msgid "Claim not granted - your account login details were wrong"
|
4346 |
msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
|
4347 |
|
4348 |
-
#: src/udaddons/options.php:
|
4349 |
msgid "Please wait whilst we make the claim..."
|
4350 |
msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
|
4351 |
|
4352 |
-
#: src/udaddons/options.php:
|
4353 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4354 |
msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
|
4355 |
|
4356 |
-
#: src/udaddons/options.php:
|
4357 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4358 |
msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
|
4359 |
|
4360 |
-
#: src/udaddons/options.php:
|
4361 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4362 |
msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
|
4363 |
|
4364 |
-
#: src/udaddons/options.php:
|
4365 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4366 |
msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
|
4367 |
|
4368 |
-
#: src/
|
4369 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4370 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
4371 |
|
@@ -4409,15 +4477,15 @@ msgstr "اذهب هنا للاتصال."
|
|
4409 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4410 |
msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
|
4411 |
|
4412 |
-
#: src/addons/moredatabase.php:
|
4413 |
msgid "Without it, encryption will be a lot slower."
|
4414 |
msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
|
4415 |
|
4416 |
-
#: src/addons/moredatabase.php:
|
4417 |
msgid "Your web-server does not have the %s module installed."
|
4418 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
4419 |
|
4420 |
-
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:
|
4421 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4422 |
msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
|
4423 |
|
@@ -4425,15 +4493,15 @@ msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong>
|
|
4425 |
msgid "Drop backup files here"
|
4426 |
msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
|
4427 |
|
4428 |
-
#: src/admin.php:
|
4429 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4430 |
msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
|
4431 |
|
4432 |
-
#: src/admin.php:
|
4433 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4434 |
msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
|
4435 |
|
4436 |
-
#: src/admin.php:
|
4437 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4438 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
4439 |
|
@@ -4453,8 +4521,8 @@ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدا
|
|
4453 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4454 |
msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
|
4455 |
|
4456 |
-
#: src/addons/azure.php:420, src/methods/stream-base.php:
|
4457 |
-
#: src/methods/stream-base.php:
|
4458 |
msgid "Upload failed"
|
4459 |
msgstr "فشل التحميل"
|
4460 |
|
@@ -4462,11 +4530,11 @@ msgstr "فشل التحميل"
|
|
4462 |
msgid "You can send a backup to more than one destination with an add-on."
|
4463 |
msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
|
4464 |
|
4465 |
-
#: src/admin.php:
|
4466 |
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."
|
4467 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
4468 |
|
4469 |
-
#: src/admin.php:
|
4470 |
msgid "(%s%%, file %s of %s)"
|
4471 |
msgstr "(%s%%, ملف %s من%s)"
|
4472 |
|
@@ -4495,7 +4563,7 @@ msgstr "اعداد مستخدم SCP/SFTP"
|
|
4495 |
msgid "SCP/SFTP host setting"
|
4496 |
msgstr "اعداد استضافة SCP/SFTP"
|
4497 |
|
4498 |
-
#: src/methods/email.php:
|
4499 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4500 |
msgstr "محاولة ارسال النسخ الأحتياطى عن طريق البريد الألكترونى فشلت (من المحتمل ان يكون ملف النسخ الاحتياطى اكبر من المساحة المسموح بها فى البريد)"
|
4501 |
|
@@ -4503,15 +4571,15 @@ msgstr "محاولة ارسال النسخ الأحتياطى عن طريق ال
|
|
4503 |
msgid "Backup is of: %s."
|
4504 |
msgstr "النسخ الأحتياطى من: %s"
|
4505 |
|
4506 |
-
#: src/admin.php:
|
4507 |
msgid "%s settings test result:"
|
4508 |
msgstr "اعدادات نتيجة اختبار %s"
|
4509 |
|
4510 |
-
#: src/admin.php:
|
4511 |
msgid "(Not finished)"
|
4512 |
msgstr "(غير منتهي)"
|
4513 |
|
4514 |
-
#: src/admin.php:
|
4515 |
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."
|
4516 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
4517 |
|
@@ -4523,77 +4591,77 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
|
|
4523 |
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)."
|
4524 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
4525 |
|
4526 |
-
#: src/admin.php:
|
4527 |
msgid "Job ID: %s"
|
4528 |
msgstr "رقم الوظيفة: %s"
|
4529 |
|
4530 |
-
#: src/admin.php:
|
4531 |
msgid "last activity: %ss ago"
|
4532 |
msgstr "آخر نشاط: منذ %ss"
|
4533 |
|
4534 |
-
#: src/admin.php:
|
4535 |
msgid "next resumption: %d (after %ss)"
|
4536 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
4537 |
|
4538 |
-
#: src/admin.php:
|
4539 |
-
#: src/central/bootstrap.php:
|
4540 |
-
#: src/methods/updraftvault.php:
|
4541 |
msgid "Unknown"
|
4542 |
msgstr "غير معروف"
|
4543 |
|
4544 |
-
#: src/admin.php:
|
4545 |
msgid "Backup finished"
|
4546 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
4547 |
|
4548 |
-
#: src/admin.php:
|
4549 |
msgid "Waiting until scheduled time to retry because of errors"
|
4550 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
4551 |
|
4552 |
-
#: src/admin.php:
|
4553 |
msgid "Pruning old backup sets"
|
4554 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
4555 |
|
4556 |
-
#: src/admin.php:
|
4557 |
msgid "Uploading files to remote storage"
|
4558 |
msgstr "تحميل الملفات للمخزن البعيد"
|
4559 |
|
4560 |
-
#: src/admin.php:
|
4561 |
msgid "Encrypted database"
|
4562 |
msgstr "قاعدة بيانات مشفرة"
|
4563 |
|
4564 |
-
#: src/admin.php:
|
4565 |
msgid "Encrypting database"
|
4566 |
msgstr "تشفير قاعدة البيانات"
|
4567 |
|
4568 |
-
#: src/admin.php:
|
4569 |
msgid "Created database backup"
|
4570 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
4571 |
|
4572 |
-
#: src/admin.php:
|
4573 |
msgid "table: %s"
|
4574 |
msgstr "الجدول: %s"
|
4575 |
|
4576 |
-
#: src/admin.php:
|
4577 |
msgid "Creating database backup"
|
4578 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
4579 |
|
4580 |
-
#: src/admin.php:
|
4581 |
msgid "Created file backup zips"
|
4582 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
4583 |
|
4584 |
-
#: src/admin.php:
|
4585 |
msgid "Creating file backup zips"
|
4586 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
4587 |
|
4588 |
-
#: src/admin.php:
|
4589 |
msgid "Backup begun"
|
4590 |
msgstr "بدأ النسخ الاحتياطى"
|
4591 |
|
4592 |
-
#: src/admin.php:
|
4593 |
msgid "Backups in progress:"
|
4594 |
msgstr "تقدم النسخ الأحتياطى:"
|
4595 |
|
4596 |
-
#: src/admin.php:
|
4597 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4598 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
4599 |
|
@@ -4609,11 +4677,11 @@ msgstr "مجلد"
|
|
4609 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4610 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
4611 |
|
4612 |
-
#: src/class-updraftplus.php:
|
4613 |
msgid "The backup has not finished; a resumption is scheduled"
|
4614 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
4615 |
|
4616 |
-
#: src/class-updraftplus.php:
|
4617 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4618 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
4619 |
|
@@ -4622,11 +4690,11 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
|
|
4622 |
msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
|
4623 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
4624 |
|
4625 |
-
#: src/admin.php:
|
4626 |
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)."
|
4627 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
4628 |
|
4629 |
-
#: src/addons/autobackup.php:1085, src/admin.php:
|
4630 |
msgid "Proceed with update"
|
4631 |
msgstr "المضي قدما مع التحديث"
|
4632 |
|
@@ -4675,19 +4743,19 @@ msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن
|
|
4675 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4676 |
msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
|
4677 |
|
4678 |
-
#: src/addons/morefiles.php:
|
4679 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4680 |
msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
|
4681 |
|
4682 |
-
#: src/addons/morefiles.php:
|
4683 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4684 |
msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
|
4685 |
|
4686 |
-
#: src/addons/morefiles.php:
|
4687 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4688 |
msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
|
4689 |
|
4690 |
-
#: src/addons/morefiles.php:
|
4691 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4692 |
msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
|
4693 |
|
@@ -4702,84 +4770,84 @@ msgstr "مزيد من الملحقات"
|
|
4702 |
msgid "Support"
|
4703 |
msgstr "الدعم"
|
4704 |
|
4705 |
-
#: src/class-updraftplus.php:
|
4706 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4707 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
4708 |
|
4709 |
-
#: src/class-updraftplus.php:
|
4710 |
msgid "This database backup is missing core WordPress tables: %s"
|
4711 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
4712 |
|
4713 |
-
#: src/class-updraftplus.php:
|
4714 |
msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
|
4715 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
4716 |
|
4717 |
-
#: src/class-updraftplus.php:
|
4718 |
msgid "%s version: %s"
|
4719 |
msgstr "%s النسخة: %s"
|
4720 |
|
4721 |
-
#: src/class-updraftplus.php:
|
4722 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4723 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
4724 |
|
4725 |
-
#: src/addons/autobackup.php:1053, src/admin.php:
|
4726 |
#: src/includes/updraftplus-notices.php:171
|
4727 |
msgid "Be safe with an automatic backup"
|
4728 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
4729 |
|
4730 |
-
#: src/admin.php:
|
4731 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4732 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
4733 |
|
4734 |
-
#: src/admin.php:
|
4735 |
msgid "The file was uploaded."
|
4736 |
msgstr "تم رفع الملف."
|
4737 |
|
4738 |
-
#: src/admin.php:
|
4739 |
msgid "Unknown server response status:"
|
4740 |
msgstr "استجابة الخادم غير معروفة:"
|
4741 |
|
4742 |
-
#: src/admin.php:
|
4743 |
msgid "Unknown server response:"
|
4744 |
msgstr "استجابة الملقم غير معروف:"
|
4745 |
|
4746 |
-
#: src/admin.php:
|
4747 |
msgid "This decryption key will be attempted:"
|
4748 |
msgstr "سيتم محاولة فتح مفتاح التشفير:"
|
4749 |
|
4750 |
-
#: src/admin.php:
|
4751 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4752 |
msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
|
4753 |
|
4754 |
-
#: src/admin.php:
|
4755 |
msgid "Upload error"
|
4756 |
msgstr "خطأ فى الرفع"
|
4757 |
|
4758 |
-
#: src/admin.php:
|
4759 |
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)."
|
4760 |
msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
|
4761 |
|
4762 |
-
#: src/admin.php:
|
4763 |
msgid "Upload error:"
|
4764 |
msgstr "خطأ التحميل:"
|
4765 |
|
4766 |
-
#: src/admin.php:
|
4767 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4768 |
msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
|
4769 |
|
4770 |
-
#: src/admin.php:
|
4771 |
msgid "Download to your computer"
|
4772 |
msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
|
4773 |
|
4774 |
-
#: src/admin.php:
|
4775 |
msgid "Delete from your web server"
|
4776 |
msgstr "حذف من خادم الويب الخاص بك"
|
4777 |
|
4778 |
-
#: src/admin.php:
|
4779 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4780 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
4781 |
|
4782 |
-
#: src/admin.php:
|
4783 |
msgid "(%d archive(s) in set)."
|
4784 |
msgstr "(%d الأرشيف(s) in set)."
|
4785 |
|
@@ -4787,31 +4855,31 @@ msgstr "(%d الأرشيف(s) in set)."
|
|
4787 |
msgid "Split archives every:"
|
4788 |
msgstr "تقسيم كل ارشيف:"
|
4789 |
|
4790 |
-
#: src/addons/moredatabase.php:
|
4791 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4792 |
msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
|
4793 |
|
4794 |
-
#: src/admin.php:
|
4795 |
msgid "Warnings:"
|
4796 |
msgstr "تحذيرات:"
|
4797 |
|
4798 |
-
#: src/admin.php:
|
4799 |
msgid "Error: the server sent an empty response."
|
4800 |
msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
|
4801 |
|
4802 |
-
#: src/admin.php:
|
4803 |
msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
|
4804 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
4805 |
|
4806 |
-
#: src/includes/class-wpadmin-commands.php:
|
4807 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4808 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
4809 |
|
4810 |
-
#: src/includes/class-wpadmin-commands.php:
|
4811 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4812 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
4813 |
|
4814 |
-
#: src/includes/class-wpadmin-commands.php:
|
4815 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4816 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
4817 |
|
@@ -4835,7 +4903,7 @@ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
|
|
4835 |
msgid "No such backup set exists"
|
4836 |
msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
|
4837 |
|
4838 |
-
#: src/admin.php:
|
4839 |
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"
|
4840 |
msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
|
4841 |
|
@@ -4843,11 +4911,11 @@ msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى
|
|
4843 |
msgid "Moving unpacked backup into place..."
|
4844 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
4845 |
|
4846 |
-
#: src/backup.php:
|
4847 |
msgid "Failed to open the zip file (%s) - %s"
|
4848 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
4849 |
|
4850 |
-
#: src/addons/morefiles.php:
|
4851 |
msgid "WordPress root directory server path: %s"
|
4852 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
4853 |
|
@@ -4855,7 +4923,7 @@ msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
|
4855 |
msgid "%s end-point"
|
4856 |
msgstr "نقطة النهاية %s "
|
4857 |
|
4858 |
-
#: src/methods/s3.php:
|
4859 |
msgid "... and many more!"
|
4860 |
msgstr "... وغيرها الكثير!"
|
4861 |
|
@@ -4864,15 +4932,15 @@ msgstr "... وغيرها الكثير!"
|
|
4864 |
msgid "S3 (Compatible)"
|
4865 |
msgstr "S3 (متوافق)"
|
4866 |
|
4867 |
-
#: src/admin.php:
|
4868 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4869 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
4870 |
|
4871 |
-
#: src/admin.php:
|
4872 |
msgid "Looking for %s archive: file name: %s"
|
4873 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
4874 |
|
4875 |
-
#: src/admin.php:
|
4876 |
msgid "Final checks"
|
4877 |
msgstr "الفحوصات النهائية"
|
4878 |
|
@@ -4884,11 +4952,11 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
|
|
4884 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4885 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
4886 |
|
4887 |
-
#: src/admin.php:
|
4888 |
msgid "Your wp-content directory server path: %s"
|
4889 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
4890 |
|
4891 |
-
#: src/admin.php:
|
4892 |
msgid "Raw backup history"
|
4893 |
msgstr "تاريخ النسخ الاحتياطي الخام"
|
4894 |
|
@@ -4896,11 +4964,11 @@ msgstr "تاريخ النسخ الاحتياطي الخام"
|
|
4896 |
msgid "Show raw backup and file list"
|
4897 |
msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
|
4898 |
|
4899 |
-
#: src/admin.php:
|
4900 |
msgid "Processing files - please wait..."
|
4901 |
msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
4902 |
|
4903 |
-
#: src/admin.php:
|
4904 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4905 |
msgid "Please consult this FAQ for help on what to do about it."
|
4906 |
msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
|
@@ -4909,11 +4977,11 @@ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول
|
|
4909 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4910 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
4911 |
|
4912 |
-
#: src/class-updraftplus.php:
|
4913 |
msgid "Failed to open database file."
|
4914 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
4915 |
|
4916 |
-
#: src/admin.php:
|
4917 |
msgid "Known backups (raw)"
|
4918 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
4919 |
|
@@ -4925,30 +4993,30 @@ msgstr "العثور على ملفات:"
|
|
4925 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4926 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
4927 |
|
4928 |
-
#: src/admin.php:
|
4929 |
msgid "file is size:"
|
4930 |
msgstr "حجم الملف:"
|
4931 |
|
4932 |
-
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:
|
4933 |
-
#: src/addons/migrator.php:
|
4934 |
-
#: src/admin.php:
|
4935 |
-
#: src/class-updraftplus.php:
|
4936 |
msgid "Go here for more information."
|
4937 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
4938 |
|
4939 |
-
#: src/admin.php:
|
4940 |
msgid "Some files are still downloading or being processed - please wait."
|
4941 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
4942 |
|
4943 |
-
#: src/class-updraftplus.php:
|
4944 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
4945 |
msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
|
4946 |
|
4947 |
-
#: src/addons/fixtime.php:
|
4948 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
4949 |
msgstr "المنطقة الزمنية المستخدمة هى من اعدادات الورد بريس الخاصة بك, في إعدادات -> عام."
|
4950 |
|
4951 |
-
#: src/addons/fixtime.php:
|
4952 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
4953 |
msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
|
4954 |
|
@@ -4986,9 +5054,9 @@ msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
|
|
4986 |
|
4987 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4988 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4989 |
-
#: src/methods/googledrive.php:
|
4990 |
-
#: src/methods/stream-base.php:
|
4991 |
-
#: src/methods/stream-base.php:
|
4992 |
msgid "%s Error"
|
4993 |
msgstr "خطأ %s"
|
4994 |
|
@@ -4996,7 +5064,7 @@ msgstr "خطأ %s"
|
|
4996 |
msgid "%s error - failed to upload file"
|
4997 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
4998 |
|
4999 |
-
#: src/class-updraftplus.php:
|
5000 |
msgid "%s error - failed to re-assemble chunks"
|
5001 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
5002 |
|
@@ -5010,25 +5078,25 @@ msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
|
5010 |
msgid "%s authentication failed"
|
5011 |
msgstr "المصادقة فشلت %s"
|
5012 |
|
5013 |
-
#: src/addons/googlecloud.php:438, src/addons/migrator.php:
|
5014 |
-
#: src/admin.php:
|
5015 |
-
#: src/class-updraftplus.php:
|
5016 |
-
#: src/class-updraftplus.php:
|
5017 |
-
#: src/class-updraftplus.php:
|
5018 |
-
#: src/class-updraftplus.php:
|
5019 |
-
#: src/methods/s3.php:
|
5020 |
msgid "Error: %s"
|
5021 |
msgstr "خطأ: %s"
|
5022 |
|
5023 |
-
#: src/admin.php:
|
5024 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5025 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
5026 |
|
5027 |
-
#: src/admin.php:
|
5028 |
msgid "Backup directory specified does <b>not</b> exist."
|
5029 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
5030 |
|
5031 |
-
#: src/admin.php:
|
5032 |
msgid "Warning: %s"
|
5033 |
msgstr "تحذير: %s"
|
5034 |
|
@@ -5036,7 +5104,7 @@ msgstr "تحذير: %s"
|
|
5036 |
msgid "Last backup job run:"
|
5037 |
msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
|
5038 |
|
5039 |
-
#: src/backup.php:
|
5040 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5041 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
5042 |
|
@@ -5056,35 +5124,35 @@ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات
|
|
5056 |
msgid "Warnings encountered:"
|
5057 |
msgstr "مصادفة تحذيرات:"
|
5058 |
|
5059 |
-
#: src/class-updraftplus.php:
|
5060 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5061 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
5062 |
|
5063 |
-
#: src/class-updraftplus.php:
|
5064 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5065 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
5066 |
|
5067 |
-
#: src/addons/migrator.php:
|
5068 |
msgid "New site:"
|
5069 |
msgstr "الموقع الجديد:"
|
5070 |
|
5071 |
-
#: src/addons/migrator.php:
|
5072 |
msgid "Migrated site (from UpdraftPlus)"
|
5073 |
msgstr "المواقع المدمجة (من UpdraftPlus)"
|
5074 |
|
5075 |
-
#: src/addons/migrator.php:
|
5076 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5077 |
msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
|
5078 |
|
5079 |
-
#: src/addons/migrator.php:
|
5080 |
msgid "Information needed to continue:"
|
5081 |
msgstr "المعلومات اللازمة للأستمرار:"
|
5082 |
|
5083 |
-
#: src/addons/migrator.php:
|
5084 |
msgid "Network activating theme:"
|
5085 |
msgstr "تفعيل ثيم الشبكة:"
|
5086 |
|
5087 |
-
#: src/addons/migrator.php:
|
5088 |
msgid "Processed plugin:"
|
5089 |
msgstr "المكون الأضافى:"
|
5090 |
|
@@ -5096,15 +5164,15 @@ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر ا
|
|
5096 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5097 |
msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
|
5098 |
|
5099 |
-
#: src/methods/s3.php:
|
5100 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
5101 |
msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
|
5102 |
|
5103 |
-
#: src/methods/s3.php:
|
5104 |
msgid "Please check your access credentials."
|
5105 |
msgstr "يرجى التحقق من وصول بيانات الأعتماد."
|
5106 |
|
5107 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5108 |
msgid "The error reported by %s was:"
|
5109 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
5110 |
|
@@ -5112,7 +5180,7 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
|
5112 |
msgid "Please supply the requested information, and then continue."
|
5113 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
5114 |
|
5115 |
-
#: src/class-updraftplus.php:
|
5116 |
msgid "Site information:"
|
5117 |
msgstr "معلومات عن الموقع:"
|
5118 |
|
@@ -5120,39 +5188,39 @@ msgstr "معلومات عن الموقع:"
|
|
5120 |
msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
|
5121 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
5122 |
|
5123 |
-
#: src/admin.php:
|
5124 |
msgid "Warning:"
|
5125 |
msgstr "تحذير:"
|
5126 |
|
5127 |
-
#: src/class-updraftplus.php:
|
5128 |
#: src/restorer.php:184
|
5129 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5130 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
5131 |
|
5132 |
-
#: src/admin.php:
|
5133 |
msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
|
5134 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
5135 |
|
5136 |
-
#: src/admin.php:
|
5137 |
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."
|
5138 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
5139 |
|
5140 |
-
#: src/admin.php:
|
5141 |
msgid "Close"
|
5142 |
msgstr "اغلق"
|
5143 |
|
5144 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5145 |
-
#: src/admin.php:
|
5146 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5147 |
#: src/methods/remotesend.php:242
|
5148 |
msgid "Unexpected response:"
|
5149 |
msgstr "استجابة غير متوقعة:"
|
5150 |
|
5151 |
-
#: src/addons/reporting.php:
|
5152 |
msgid "To send to more than one address, separate each address with a comma."
|
5153 |
msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
|
5154 |
|
5155 |
-
#: src/admin.php:
|
5156 |
msgid "PHP information"
|
5157 |
msgstr "معلومات PHP"
|
5158 |
|
@@ -5188,7 +5256,7 @@ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأ
|
|
5188 |
msgid "Also delete from remote storage"
|
5189 |
msgstr "حذف ايضاً من التخزين البعيد"
|
5190 |
|
5191 |
-
#: src/admin.php:
|
5192 |
msgid "Latest UpdraftPlus.com news:"
|
5193 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
5194 |
|
@@ -5205,7 +5273,7 @@ msgstr "مميز"
|
|
5205 |
msgid "News"
|
5206 |
msgstr "اخبار"
|
5207 |
|
5208 |
-
#: src/admin.php:
|
5209 |
msgid "Backup set not found"
|
5210 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
5211 |
|
@@ -5227,7 +5295,7 @@ msgstr "رابط RSS"
|
|
5227 |
msgid "Blog link"
|
5228 |
msgstr "رابط المدونة"
|
5229 |
|
5230 |
-
#: src/admin.php:
|
5231 |
msgid "Testing %s Settings..."
|
5232 |
msgstr "اختبار اعدادات %s ..."
|
5233 |
|
@@ -5235,11 +5303,11 @@ msgstr "اختبار اعدادات %s ..."
|
|
5235 |
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."
|
5236 |
msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
|
5237 |
|
5238 |
-
#: src/admin.php:
|
5239 |
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."
|
5240 |
msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
|
5241 |
|
5242 |
-
#: src/admin.php:
|
5243 |
msgid "Notice"
|
5244 |
msgstr "لاحظ"
|
5245 |
|
@@ -5251,97 +5319,101 @@ msgstr "مصادفة اخطاء:"
|
|
5251 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5252 |
msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
|
5253 |
|
5254 |
-
#: src/admin.php:
|
5255 |
msgid "Begun looking for this entity"
|
5256 |
msgstr "بدأ البحث عن هذا الكيان"
|
5257 |
|
|
|
|
|
|
|
|
|
5258 |
#: src/addons/dropbox-folders.php:32
|
5259 |
msgid "Store at"
|
5260 |
msgstr "المتجر فى"
|
5261 |
|
5262 |
-
#: src/addons/migrator.php:
|
5263 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5264 |
msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
|
5265 |
|
5266 |
-
#: src/addons/migrator.php:
|
5267 |
msgid "rows: %d"
|
5268 |
msgstr "الصفوف: %d"
|
5269 |
|
5270 |
-
#: src/addons/migrator.php:
|
5271 |
msgid "Time taken (seconds):"
|
5272 |
msgstr "الوقت المستغرق (ثانية):"
|
5273 |
|
5274 |
-
#: src/addons/migrator.php:
|
5275 |
msgid "Errors:"
|
5276 |
msgstr "الأخطاء:"
|
5277 |
|
5278 |
-
#: src/addons/migrator.php:
|
5279 |
msgid "SQL update commands run:"
|
5280 |
msgstr "تشغيل اوامر تحديث SQL:"
|
5281 |
|
5282 |
-
#: src/addons/migrator.php:
|
5283 |
msgid "Changes made:"
|
5284 |
msgstr "التغييرات التي تم إجراؤها:"
|
5285 |
|
5286 |
-
#: src/addons/migrator.php:
|
5287 |
msgid "Rows examined:"
|
5288 |
msgstr "فحص الصفوف:"
|
5289 |
|
5290 |
-
#: src/addons/migrator.php:
|
5291 |
msgid "Tables examined:"
|
5292 |
msgstr "فحص الجداول:"
|
5293 |
|
5294 |
-
#: src/addons/migrator.php:
|
5295 |
msgid "Could not get list of tables"
|
5296 |
msgstr "لا يمكن الحصول على قائمة الجداول"
|
5297 |
|
5298 |
-
#: src/addons/migrator.php:
|
5299 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5300 |
msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
|
5301 |
|
5302 |
-
#: src/addons/migrator.php:
|
5303 |
msgid "Nothing to do: the site URL is already: %s"
|
5304 |
msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
|
5305 |
|
5306 |
-
#: src/addons/migrator.php:
|
5307 |
-
#: src/addons/migrator.php:
|
5308 |
-
#: src/addons/migrator.php:
|
5309 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5310 |
msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
|
5311 |
|
5312 |
-
#: src/addons/migrator.php:
|
5313 |
msgid "Database: search and replace site URL"
|
5314 |
msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
|
5315 |
|
5316 |
-
#: src/addons/migrator.php:
|
5317 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5318 |
msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
|
5319 |
|
5320 |
-
#: src/addons/migrator.php:
|
5321 |
msgid "Failed: the %s operation was not able to start."
|
5322 |
msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
|
5323 |
|
5324 |
-
#: src/addons/migrator.php:
|
5325 |
msgid "Search and replace site location in the database (migrate)"
|
5326 |
msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
|
5327 |
|
5328 |
-
#: src/addons/migrator.php:
|
5329 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5330 |
msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
|
5331 |
|
5332 |
-
#: src/addons/multisite.php:
|
5333 |
msgid "Blog uploads"
|
5334 |
msgstr "مدونة الملفات المرفوعة"
|
5335 |
|
5336 |
-
#: src/addons/migrator.php:
|
5337 |
msgid "Must-use plugins"
|
5338 |
msgstr "لابد من استخدام الأضافات"
|
5339 |
|
5340 |
-
#: src/addons/multisite.php:
|
5341 |
msgid "Multisite Install"
|
5342 |
msgstr "تثبيت الموقع المتعدد"
|
5343 |
|
5344 |
-
#: src/addons/fixtime.php:
|
5345 |
msgid "starting from next time it is"
|
5346 |
msgstr "ابتداء من المرة القادمة انها"
|
5347 |
|
@@ -5371,7 +5443,7 @@ msgstr "مسار الدليل"
|
|
5371 |
|
5372 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5373 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5374 |
-
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:
|
5375 |
#: src/udaddons/options.php:135
|
5376 |
msgid "Password"
|
5377 |
msgstr "كلمة السر"
|
@@ -5401,46 +5473,46 @@ msgstr "لم يتم العثور على %s "
|
|
5401 |
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."
|
5402 |
msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
|
5403 |
|
5404 |
-
#: src/addons/morefiles.php:
|
5405 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5406 |
msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
|
5407 |
|
5408 |
-
#: src/addons/morefiles.php:
|
5409 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:
|
5413 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5414 |
msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
|
5415 |
|
5416 |
-
#: src/addons/morefiles.php:
|
5417 |
msgid "More Files"
|
5418 |
msgstr "ملفات أخرى"
|
5419 |
|
5420 |
-
#: src/addons/morefiles.php:
|
5421 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5422 |
msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
|
5423 |
|
5424 |
-
#: src/addons/morefiles.php:
|
5425 |
msgid "The above files comprise everything in a WordPress installation."
|
5426 |
msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
|
5427 |
|
5428 |
-
#: src/addons/morefiles.php:
|
5429 |
msgid "Over-write wp-config.php"
|
5430 |
msgstr "إعادة كتابة wp-config.php"
|
5431 |
|
5432 |
-
#: src/addons/morefiles.php:
|
5433 |
msgid "WordPress Core"
|
5434 |
msgstr "لب الووردبريس"
|
5435 |
|
5436 |
-
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:
|
5437 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5438 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
5439 |
|
5440 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5441 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:
|
5442 |
-
#: src/admin.php:
|
5443 |
-
#: src/methods/stream-base.php:
|
5444 |
msgid "Failed"
|
5445 |
msgstr "فشل"
|
5446 |
|
@@ -5448,15 +5520,15 @@ msgstr "فشل"
|
|
5448 |
msgid "WebDAV URL"
|
5449 |
msgstr "رابط WEBDAV"
|
5450 |
|
5451 |
-
#: src/methods/stream-base.php:
|
5452 |
msgid "Local write failed: Failed to download"
|
5453 |
msgstr "فشلت الكتابة المحلية: فشل تحميل"
|
5454 |
|
5455 |
-
#: src/methods/stream-base.php:
|
5456 |
msgid "Error opening remote file: Failed to download"
|
5457 |
msgstr "خطأ في فتح الملف : فشل في التحميل"
|
5458 |
|
5459 |
-
#: src/methods/stream-base.php:
|
5460 |
msgid "Chunk %s: A %s error occurred"
|
5461 |
msgstr "قطعة %s: حدث خطأ %s"
|
5462 |
|
@@ -5464,10 +5536,10 @@ msgstr "قطعة %s: حدث خطأ %s"
|
|
5464 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5465 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5466 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5467 |
-
#: src/methods/googledrive.php:
|
5468 |
-
#: src/methods/stream-base.php:27, src/methods/stream-base.php:
|
5469 |
-
#: src/methods/stream-base.php:
|
5470 |
-
#: src/methods/stream-base.php:
|
5471 |
msgid "No %s settings were found"
|
5472 |
msgstr "تم العثور على أية إعدادات %s"
|
5473 |
|
@@ -5495,31 +5567,31 @@ msgstr "يحتاج إلى وجود بالفعل"
|
|
5495 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5496 |
msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
|
5497 |
|
5498 |
-
#: src/addons/onedrive.php:851, src/methods/dropbox.php:
|
5499 |
msgid "Your %s account name: %s"
|
5500 |
msgstr "اسم الحساب %s الخاص بك: %s"
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5504 |
msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
|
5505 |
|
5506 |
-
#: src/methods/dropbox.php:
|
5507 |
msgid "you have authenticated your %s account"
|
5508 |
msgstr "تم المصادقة على %s حسابك"
|
5509 |
|
5510 |
-
#: src/methods/dropbox.php:
|
5511 |
msgid "there's an add-on for that."
|
5512 |
msgstr "هناك اضافة لذلك."
|
5513 |
|
5514 |
-
#: src/methods/dropbox.php:
|
5515 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5516 |
msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
|
5517 |
|
5518 |
-
#: src/methods/dropbox.php:
|
5519 |
msgid "Backups are saved in"
|
5520 |
msgstr "يتم حفظ النسخ الأحتياطية فى"
|
5521 |
|
5522 |
-
#: src/methods/dropbox.php:
|
5523 |
msgid "Need to use sub-folders?"
|
5524 |
msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
|
5525 |
|
@@ -5532,100 +5604,99 @@ msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل ل
|
|
5532 |
msgid "You do not appear to be authenticated with Dropbox"
|
5533 |
msgstr "لا يبدو ان المصادقة مع Dropbox"
|
5534 |
|
5535 |
-
#: src/methods/s3.php:
|
5536 |
msgid "The communication with %s was not encrypted."
|
5537 |
msgstr "التواصل مع %s كان غير مشفر."
|
5538 |
|
5539 |
-
#: src/methods/s3.php:
|
5540 |
msgid "The communication with %s was encrypted."
|
5541 |
msgstr "التواصل مع %s كان مشفر."
|
5542 |
|
5543 |
-
#: src/addons/googlecloud.php:839, src/methods/s3.php:
|
5544 |
msgid "We accessed the bucket, and were able to create files within it."
|
5545 |
msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
|
5546 |
|
5547 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5548 |
-
#: src/methods/s3.php:
|
5549 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5550 |
msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
|
5551 |
|
5552 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5553 |
-
#: src/methods/s3.php:
|
5554 |
msgid "Failure"
|
5555 |
msgstr "فشل"
|
5556 |
|
5557 |
-
#: src/addons/backblaze.php:
|
5558 |
msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
|
5559 |
msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
|
5560 |
|
5561 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5562 |
-
#: src/methods/s3.php:
|
5563 |
msgid "Region"
|
5564 |
msgstr "المنطقة"
|
5565 |
|
5566 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "Failure: No bucket details were given."
|
5569 |
msgstr "فشل: لم ترد تفاصيل الباكت."
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "API secret"
|
5573 |
msgstr "API السرية"
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5577 |
msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
msgid "%s location"
|
5581 |
msgstr "المكان %s"
|
5582 |
|
5583 |
-
#: src/methods/s3.php:
|
5584 |
msgid "%s secret key"
|
5585 |
msgstr "المفتاح السرى %s"
|
5586 |
|
5587 |
-
#: src/methods/s3.php:
|
5588 |
msgid "%s access key"
|
5589 |
msgstr "مفتاح الوصول %s"
|
5590 |
|
5591 |
-
#: src/methods/s3.php:
|
5592 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5593 |
msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
|
5594 |
|
5595 |
-
#: src/methods/s3.php:
|
5596 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5597 |
msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
|
5598 |
|
5599 |
-
#: src/methods/s3.php:
|
5600 |
-
#: src/methods/s3.php:764
|
5601 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5602 |
msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5606 |
msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
|
5607 |
|
5608 |
-
#: src/methods/s3.php:
|
5609 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5610 |
msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
|
5611 |
|
5612 |
-
#: src/methods/s3.php:
|
5613 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5614 |
msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
|
5615 |
|
5616 |
-
#: src/methods/s3.php:
|
5617 |
msgid "%s chunk %s: upload failed"
|
5618 |
msgstr "%s قطعة %s : فشل الرفع"
|
5619 |
|
5620 |
-
#: src/methods/s3.php:
|
5621 |
msgid "%s error: file %s was shortened unexpectedly"
|
5622 |
msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
|
5623 |
|
5624 |
-
#: src/methods/s3.php:
|
5625 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5626 |
msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
|
5627 |
|
5628 |
-
#: src/methods/email.php:
|
5629 |
msgid "Note:"
|
5630 |
msgstr "ملاحظة:"
|
5631 |
|
@@ -5633,49 +5704,49 @@ msgstr "ملاحظة:"
|
|
5633 |
msgid "WordPress Backup"
|
5634 |
msgstr "نسخ ووردريس احتياطيا"
|
5635 |
|
5636 |
-
#: src/methods/cloudfiles.php:
|
5637 |
msgid "We accessed the container, and were able to create files within it."
|
5638 |
msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
|
5639 |
|
5640 |
-
#: src/methods/cloudfiles.php:
|
5641 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5642 |
msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
|
5643 |
|
5644 |
-
#: src/methods/cloudfiles.php:
|
5645 |
msgid "Failure: No container details were given."
|
5646 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
5647 |
|
5648 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5649 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5650 |
-
#: src/methods/cloudfiles.php:
|
5651 |
msgid "Username"
|
5652 |
msgstr "اسم المستخدم"
|
5653 |
|
5654 |
-
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:
|
5655 |
-
#: src/methods/s3.php:
|
5656 |
msgid "API key"
|
5657 |
msgstr "مفتاح API"
|
5658 |
|
5659 |
-
#: src/addons/migrator.php:
|
5660 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5661 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5662 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5663 |
-
#: src/admin.php:
|
5664 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5665 |
-
#: src/methods/cloudfiles.php:
|
5666 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5667 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5668 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5669 |
-
#: src/methods/s3.php:
|
5670 |
msgid "Failure: No %s was given."
|
5671 |
msgstr "فضل: لم تعطى أية %s."
|
5672 |
|
5673 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5674 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5675 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5676 |
msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
|
5677 |
|
5678 |
-
#: src/methods/cloudfiles.php:
|
5679 |
msgid "Cloud Files username"
|
5680 |
msgstr "سحابة ملفات المستخدم"
|
5681 |
|
@@ -5702,12 +5773,12 @@ msgstr "أيضا، يجب عليك قراءة هذا التعليمات الها
|
|
5702 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5703 |
msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
|
5704 |
|
5705 |
-
#: src/admin.php:
|
5706 |
msgid "Test %s Settings"
|
5707 |
msgstr "اختبار %s الإعدادات"
|
5708 |
|
5709 |
-
#: src/class-updraftplus.php:
|
5710 |
-
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:
|
5711 |
msgid "Error opening local file: Failed to download"
|
5712 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
5713 |
|
@@ -5718,13 +5789,13 @@ msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
|
|
5718 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5719 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5720 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5721 |
-
#: src/methods/s3.php:
|
5722 |
msgid "%s Error: Failed to upload"
|
5723 |
msgstr "%s خطأ: فشل في تحميل"
|
5724 |
|
5725 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5726 |
-
#: src/class-updraftplus.php:
|
5727 |
-
#: src/methods/googledrive.php:
|
5728 |
msgid "%s Error: Failed to open local file"
|
5729 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
5730 |
|
@@ -5735,85 +5806,85 @@ msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول
|
|
5735 |
|
5736 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5737 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5738 |
-
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:
|
5739 |
-
#: src/methods/cloudfiles.php:
|
5740 |
msgid "Cloud Files authentication failed"
|
5741 |
msgstr "فشل المصادقة بملفات سحابة"
|
5742 |
|
5743 |
-
#: src/methods/googledrive.php:
|
5744 |
msgid "Authenticate with Google"
|
5745 |
msgstr "المصادقة مع جوجل"
|
5746 |
|
5747 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5748 |
-
#: src/methods/googledrive.php:
|
5749 |
msgid "Client Secret"
|
5750 |
msgstr "سر العميل"
|
5751 |
|
5752 |
-
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:
|
5753 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5754 |
msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
|
5755 |
|
5756 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5757 |
-
#: src/methods/googledrive.php:
|
5758 |
msgid "Client ID"
|
5759 |
msgstr "معرف العميل"
|
5760 |
|
5761 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5762 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5763 |
msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
|
5764 |
|
5765 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5766 |
msgid "Select 'Web Application' as the application type."
|
5767 |
msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
|
5768 |
|
5769 |
-
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:
|
5770 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5771 |
msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
|
5772 |
|
5773 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5774 |
-
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:
|
5775 |
-
#: src/methods/googledrive.php:
|
5776 |
-
#: src/methods/googledrive.php:
|
5777 |
msgid "Account is not authorized."
|
5778 |
msgstr "حساب غير مخول."
|
5779 |
|
5780 |
-
#: src/methods/googledrive.php:
|
5781 |
-
#: src/methods/googledrive.php:
|
5782 |
-
#: src/methods/stream-base.php:
|
5783 |
msgid "Failed to upload to %s"
|
5784 |
msgstr "فشل في تحميل إلى %s"
|
5785 |
|
5786 |
-
#: src/methods/googledrive.php:
|
5787 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5788 |
msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
|
5789 |
|
5790 |
-
#: src/methods/googledrive.php:
|
5791 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5792 |
msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
|
5793 |
|
5794 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5795 |
-
#: src/methods/googledrive.php:
|
5796 |
msgid "you have authenticated your %s account."
|
5797 |
msgstr "لديك حساب %s مصادق عليه."
|
5798 |
|
5799 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5800 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5801 |
-
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:
|
5802 |
-
#: src/methods/googledrive.php:
|
5803 |
-
#: src/methods/s3.php:
|
5804 |
msgid "Success"
|
5805 |
msgstr "نجاح"
|
5806 |
|
5807 |
-
#: src/addons/onedrive.php:843, src/methods/dropbox.php:
|
5808 |
-
#: src/methods/dropbox.php:
|
5809 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5810 |
msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
|
5811 |
|
5812 |
-
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:
|
5813 |
msgid "Authorization failed"
|
5814 |
msgstr "فشل التخويل"
|
5815 |
|
5816 |
-
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:
|
5817 |
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."
|
5818 |
msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
|
5819 |
|
@@ -5836,8 +5907,8 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
|
|
5836 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5837 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
5838 |
|
5839 |
-
#: src/addons/migrator.php:
|
5840 |
-
#: src/admin.php:
|
5841 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5842 |
msgid "OK"
|
5843 |
msgstr "حسنا"
|
@@ -5846,7 +5917,7 @@ msgstr "حسنا"
|
|
5846 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5847 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
5848 |
|
5849 |
-
#: src/addons/migrator.php:
|
5850 |
msgid "the database query being run was:"
|
5851 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
5852 |
|
@@ -5854,13 +5925,13 @@ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
|
5854 |
msgid "will restore as:"
|
5855 |
msgstr "إستعادة على النحو التالي:"
|
5856 |
|
5857 |
-
#: src/class-updraftplus.php:
|
5858 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5859 |
msgid "Old table prefix:"
|
5860 |
msgstr "بادئة الجدول القديمة:"
|
5861 |
|
5862 |
-
#: src/addons/reporting.php:
|
5863 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5864 |
msgid "Backup of:"
|
5865 |
msgstr "نسخة احتياطية لـ:"
|
5866 |
|
@@ -5932,60 +6003,60 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
|
|
5932 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5933 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
5934 |
|
5935 |
-
#: src/admin.php:
|
5936 |
msgid "Could not find one of the files for restoration"
|
5937 |
msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
|
5938 |
|
5939 |
-
#: src/admin.php:
|
5940 |
msgid "Error message"
|
5941 |
msgstr "رسالة الخطأ"
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
msgid "The backup records do not contain information about the proper size of this file."
|
5945 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
5946 |
|
5947 |
-
#: src/admin.php:
|
5948 |
msgid "Archive is expected to be size:"
|
5949 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "If making a request for support, please include this information:"
|
5953 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "ABORT: Could not find the information on which entities to restore."
|
5957 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
msgid "UpdraftPlus Restoration: Progress"
|
5961 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
5962 |
|
5963 |
-
#: src/admin.php:
|
5964 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
5965 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
5966 |
|
5967 |
-
#: src/admin.php:
|
5968 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
5969 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
5970 |
|
5971 |
-
#: src/admin.php:
|
5972 |
msgid "Delete this backup set"
|
5973 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
5974 |
|
5975 |
-
#: src/admin.php:
|
5976 |
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."
|
5977 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
5978 |
|
5979 |
-
#: src/admin.php:
|
5980 |
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."
|
5981 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
5982 |
|
5983 |
-
#: src/admin.php:
|
5984 |
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)."
|
5985 |
msgstr ""
|
5986 |
|
5987 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5988 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5989 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5990 |
msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
|
5991 |
|
@@ -6021,23 +6092,23 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
|
|
6021 |
msgid "Use the server's SSL certificates"
|
6022 |
msgstr "استخدام شهادات SSL للملقم"
|
6023 |
|
6024 |
-
#: src/admin.php:
|
6025 |
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."
|
6026 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
6027 |
|
6028 |
-
#: src/admin.php:
|
6029 |
msgid "click here"
|
6030 |
msgstr "انقر هنا"
|
6031 |
|
6032 |
-
#: src/admin.php:
|
6033 |
msgid "or, to reset this option"
|
6034 |
msgstr "أو، لإعادة هذا الخيار"
|
6035 |
|
6036 |
-
#: src/admin.php:
|
6037 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: src/admin.php:
|
6041 |
msgid "Backup directory specified is writable, which is good."
|
6042 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
6043 |
|
@@ -6069,15 +6140,15 @@ msgstr "وضع التصحيح"
|
|
6069 |
msgid "Advanced / Debugging Settings"
|
6070 |
msgstr "متقدمة / تصحيح الإعدادات "
|
6071 |
|
6072 |
-
#: src/admin.php:
|
6073 |
msgid "Requesting start of backup..."
|
6074 |
msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
|
6075 |
|
6076 |
-
#: src/addons/morefiles.php:
|
6077 |
msgid "Cancel"
|
6078 |
msgstr "إلغاء"
|
6079 |
|
6080 |
-
#: src/addons/reporting.php:
|
6081 |
msgid "None"
|
6082 |
msgstr "لا شيء"
|
6083 |
|
@@ -6102,11 +6173,11 @@ msgstr "البريد الإلكتروني"
|
|
6102 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6103 |
msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
|
6104 |
|
6105 |
-
#: src/addons/morefiles.php:
|
6106 |
msgid "Exclude these:"
|
6107 |
msgstr "استبعاد هذه:"
|
6108 |
|
6109 |
-
#: src/admin.php:
|
6110 |
msgid "Any other directories found inside wp-content"
|
6111 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
6112 |
|
@@ -6122,45 +6193,45 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
|
|
6122 |
msgid "To fix the time at which a backup should take place,"
|
6123 |
msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
|
6124 |
|
6125 |
-
#: src/admin.php:
|
6126 |
msgid "Monthly"
|
6127 |
msgstr "شهريا"
|
6128 |
|
6129 |
-
#: src/admin.php:
|
6130 |
msgid "Fortnightly"
|
6131 |
msgstr "نصف شهري"
|
6132 |
|
6133 |
-
#: src/admin.php:
|
6134 |
msgid "Weekly"
|
6135 |
msgstr "أسبوعيا"
|
6136 |
|
6137 |
-
#: src/admin.php:
|
6138 |
msgid "Daily"
|
6139 |
msgstr "يوميا"
|
6140 |
|
6141 |
-
#: src/admin.php:
|
6142 |
msgid "Download log file"
|
6143 |
msgstr "تحميل ملف السجل"
|
6144 |
|
6145 |
-
#: src/admin.php:
|
6146 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6147 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
6148 |
|
6149 |
-
#: src/admin.php:
|
6150 |
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"
|
6151 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
6152 |
|
6153 |
-
#: src/admin.php:
|
6154 |
msgid "The request to the filesystem to create the directory failed."
|
6155 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
6156 |
|
6157 |
-
#: src/addons/migrator.php:
|
6158 |
-
#: src/admin.php:
|
6159 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6160 |
msgid "Delete"
|
6161 |
msgstr "حذف"
|
6162 |
|
6163 |
-
#: src/admin.php:
|
6164 |
msgid "show log"
|
6165 |
msgstr "عرض السجل"
|
6166 |
|
@@ -6193,9 +6264,10 @@ msgstr "الإجمالي (غير مضغوط) على قرص البيانات:"
|
|
6193 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6194 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6195 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6196 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6197 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6198 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
6199 |
msgid "No"
|
6200 |
msgstr "لا"
|
6201 |
|
@@ -6228,9 +6300,11 @@ msgstr "لا"
|
|
6228 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6229 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6230 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6231 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6232 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6233 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
|
|
6234 |
msgid "Yes"
|
6235 |
msgstr "نعم"
|
6236 |
|
@@ -6269,15 +6343,16 @@ msgstr "مواقع متعددة"
|
|
6269 |
msgid "Perform a one-time backup"
|
6270 |
msgstr "إجراء نسخة احتياطية لمرة واحدة"
|
6271 |
|
6272 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:
|
6273 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6274 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
6275 |
|
6276 |
-
#: src/class-updraftplus.php:
|
6277 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6278 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
6279 |
|
6280 |
-
#: src/addons/morefiles.php:
|
|
|
6281 |
msgid "%s restoration options:"
|
6282 |
msgstr "%s خيارات الإستعادة:"
|
6283 |
|
@@ -6313,27 +6388,27 @@ msgstr "استعادة النسخة الاحتياطية"
|
|
6313 |
msgid "Delete backup set"
|
6314 |
msgstr "حذف مجموعة النسخ الاحتياطية"
|
6315 |
|
6316 |
-
#: src/admin.php:
|
6317 |
msgid "Download error: the server sent us a response which we did not understand."
|
6318 |
msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
|
6319 |
|
6320 |
-
#: src/addons/backblaze.php:
|
6321 |
-
#: src/addons/migrator.php:
|
6322 |
-
#: src/addons/migrator.php:
|
6323 |
-
#: src/addons/migrator.php:
|
6324 |
-
#: src/addons/migrator.php:
|
6325 |
-
#: src/addons/migrator.php:
|
6326 |
-
#: src/addons/migrator.php:
|
6327 |
-
#: src/addons/migrator.php:
|
6328 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6329 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6330 |
-
#: src/admin.php:
|
6331 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6332 |
-
#: src/methods/updraftvault.php:
|
6333 |
msgid "Error:"
|
6334 |
msgstr "خطأ:"
|
6335 |
|
6336 |
-
#: src/admin.php:
|
6337 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6338 |
msgid "calculating..."
|
6339 |
msgstr "حساب ..."
|
@@ -6354,15 +6429,15 @@ msgstr "مساحة القرص لخادم الويب قيد الاستخدام م
|
|
6354 |
msgid "This is a count of the contents of your Updraft directory"
|
6355 |
msgstr "هذا عدد من محتويات مجلدات Updraft "
|
6356 |
|
6357 |
-
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:
|
6358 |
-
#: src/methods/googledrive.php:
|
6359 |
-
#: src/methods/googledrive.php:
|
6360 |
-
#: src/methods/googledrive.php:
|
6361 |
-
#: src/methods/googledrive.php:
|
6362 |
-
#: src/methods/googledrive.php:
|
6363 |
-
#: src/methods/googledrive.php:
|
6364 |
-
#: src/methods/googledrive.php:
|
6365 |
-
#: src/methods/googledrive.php:
|
6366 |
msgid "Google Drive"
|
6367 |
msgstr "جوجل درايف"
|
6368 |
|
@@ -6378,39 +6453,40 @@ msgstr "متصفح الويب أوبرا "
|
|
6378 |
msgid "More tasks:"
|
6379 |
msgstr "المزيد من المهام:"
|
6380 |
|
6381 |
-
#: src/admin.php:
|
6382 |
msgid "Download most recently modified log file"
|
6383 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
6384 |
|
6385 |
-
#: src/central/bootstrap.php:
|
6386 |
msgid "(Nothing yet logged)"
|
6387 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
6388 |
|
6389 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6390 |
-
#: src/admin.php:
|
6391 |
msgid "Last log message"
|
6392 |
msgstr "رسالة السجل الأخيرة"
|
6393 |
|
6394 |
-
#: src/addons/migrator.php:
|
6395 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6396 |
msgid "Restore"
|
6397 |
msgstr "الإستعادة"
|
6398 |
|
6399 |
-
#: src/admin.php:532, src/admin.php:
|
6400 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6401 |
msgid "Backup Now"
|
6402 |
msgstr "النسخ الاحتياطي الآن"
|
6403 |
|
6404 |
-
#: src/addons/migrator.php:
|
6405 |
-
#: src/addons/reporting.php:
|
6406 |
-
#: src/admin.php:
|
6407 |
#: src/includes/class-wpadmin-commands.php:147,
|
6408 |
-
#: src/includes/class-wpadmin-commands.php:
|
6409 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
|
|
6410 |
msgid "Database"
|
6411 |
msgstr "قاعدة بيانات"
|
6412 |
|
6413 |
-
#: src/admin.php:311, src/admin.php:
|
6414 |
msgid "Files"
|
6415 |
msgstr "ملفات"
|
6416 |
|
@@ -6438,15 +6514,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
|
|
6438 |
msgid "JavaScript warning"
|
6439 |
msgstr "تحذير جافا سكريبت"
|
6440 |
|
6441 |
-
#: src/admin.php:
|
6442 |
msgid "Delete Old Directories"
|
6443 |
msgstr "حذف الدلائل القديمة"
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Current limit is:"
|
6447 |
msgstr "الحد الحالي هو:"
|
6448 |
|
6449 |
-
#: src/admin.php:
|
6450 |
msgid "Your backup has been restored."
|
6451 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
6452 |
|
@@ -6458,128 +6534,128 @@ msgstr "الإصدار"
|
|
6458 |
msgid "Lead developer's homepage"
|
6459 |
msgstr "الولوج لموقع المطور"
|
6460 |
|
6461 |
-
#: src/central/bootstrap.php:
|
6462 |
msgid "UpdraftPlus.Com"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: src/admin.php:
|
6466 |
msgid "Your settings have been wiped."
|
6467 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
6468 |
|
6469 |
-
#: src/admin.php:
|
6470 |
msgid "Backup directory successfully created."
|
6471 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
6472 |
|
6473 |
-
#: src/admin.php:
|
6474 |
msgid "Backup directory could not be created"
|
6475 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
6476 |
|
6477 |
-
#: src/admin.php:
|
6478 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6479 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
6480 |
|
6481 |
-
#: src/admin.php:
|
6482 |
msgid "Old directories successfully removed."
|
6483 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
6484 |
|
6485 |
-
#: src/admin.php:
|
6486 |
msgid "Remove old directories"
|
6487 |
msgstr "إزالة الدلائل القديمة"
|
6488 |
|
6489 |
-
#: src/addons/migrator.php:
|
6490 |
-
#: src/admin.php:
|
6491 |
-
#: src/admin.php:
|
6492 |
msgid "Return to UpdraftPlus Configuration"
|
6493 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
6494 |
|
6495 |
-
#: src/admin.php:
|
6496 |
-
#: src/admin.php:
|
6497 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6498 |
msgid "Actions"
|
6499 |
msgstr "الإجراءات"
|
6500 |
|
6501 |
-
#: src/admin.php:
|
6502 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6503 |
msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
|
6504 |
|
6505 |
-
#: src/admin.php:
|
6506 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6507 |
msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
|
6508 |
|
6509 |
-
#: src/admin.php:
|
6510 |
msgid "No local copy present."
|
6511 |
msgstr "لا نسخة محلية متوفرة."
|
6512 |
|
6513 |
-
#: src/admin.php:
|
6514 |
msgid "Download in progress"
|
6515 |
msgstr "التحميل في تقدم"
|
6516 |
|
6517 |
-
#: src/admin.php:
|
6518 |
msgid "File ready."
|
6519 |
msgstr "ملف جاهز."
|
6520 |
|
6521 |
-
#: src/admin.php:
|
6522 |
msgid "Download failed"
|
6523 |
msgstr "فشل تحميل"
|
6524 |
|
6525 |
-
#: src/admin.php:
|
6526 |
-
#: src/class-updraftplus.php:
|
6527 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6528 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6529 |
-
#: src/methods/stream-base.php:
|
6530 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6531 |
msgid "Error"
|
6532 |
msgstr "خطأ"
|
6533 |
|
6534 |
-
#: src/admin.php:
|
6535 |
msgid "Could not find that job - perhaps it has already finished?"
|
6536 |
msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
|
6537 |
|
6538 |
-
#: src/admin.php:
|
6539 |
msgid "Job deleted"
|
6540 |
msgstr "وظيفة حذفت"
|
6541 |
|
6542 |
-
#: src/admin.php:
|
6543 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6544 |
msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
|
6545 |
|
6546 |
-
#: src/admin.php:
|
6547 |
msgid "Nothing yet logged"
|
6548 |
msgstr "لا شيء حتى الآن تم تسجيله"
|
6549 |
|
6550 |
-
#: src/admin.php:
|
6551 |
msgid "Please consult this FAQ if you have problems backing up."
|
6552 |
msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
|
6553 |
|
6554 |
-
#: src/admin.php:
|
6555 |
msgid "Your website is hosted using the %s web server."
|
6556 |
msgstr "موقعك يستخدم %s من خادم الويب."
|
6557 |
|
6558 |
-
#: src/admin.php:
|
6559 |
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."
|
6560 |
msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
|
6561 |
|
6562 |
-
#: src/admin.php:
|
6563 |
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."
|
6564 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
6565 |
|
6566 |
-
#: src/addons/migrator.php:
|
6567 |
-
#: src/admin.php:
|
6568 |
-
#: src/admin.php:
|
6569 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6570 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6571 |
-
#: src/methods/s3.php:
|
6572 |
-
#: src/methods/updraftvault.php:
|
6573 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6574 |
#: src/udaddons/updraftplus-addons.php:253
|
6575 |
msgid "Warning"
|
6576 |
msgstr "تحذير"
|
6577 |
|
6578 |
-
#: src/admin.php:
|
6579 |
msgid "Add-Ons / Pro Support"
|
6580 |
msgstr "إضافات / الدعم المدفوع"
|
6581 |
|
6582 |
-
#: src/admin.php:548, src/admin.php:
|
6583 |
#: src/templates/wp-admin/settings/tab-bar.php:7
|
6584 |
msgid "Settings"
|
6585 |
msgstr "إعدادات"
|
@@ -6600,21 +6676,21 @@ msgstr ""
|
|
6600 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6601 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
6602 |
|
6603 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
6604 |
-
#: src/methods/googledrive.php:
|
6605 |
msgid "File not found"
|
6606 |
msgstr "لم يتم العثور على ملف"
|
6607 |
|
6608 |
-
#: src/class-updraftplus.php:
|
6609 |
msgid "The decryption key used:"
|
6610 |
msgstr "مفتاح فك التشفير المستخدم:"
|
6611 |
|
6612 |
-
#: src/class-updraftplus.php:
|
6613 |
#: src/restorer.php:422
|
6614 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6615 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
6616 |
|
6617 |
-
#: src/class-updraftplus.php:
|
6618 |
#: src/restorer.php:409
|
6619 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6620 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
@@ -6623,15 +6699,15 @@ msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ول
|
|
6623 |
msgid "Could not open the backup file for writing"
|
6624 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6628 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
6629 |
|
6630 |
-
#: src/class-updraftplus.php:
|
6631 |
msgid "Could not read the directory"
|
6632 |
msgstr "لا يمكن قراءة الدليل"
|
6633 |
|
6634 |
-
#: src/admin.php:
|
6635 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
6636 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
6637 |
|
@@ -6639,53 +6715,53 @@ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتاب
|
|
6639 |
msgid "WordPress backup is complete"
|
6640 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
6641 |
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6644 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "The backup apparently succeeded and is now complete"
|
6648 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
6649 |
|
6650 |
-
#: src/addons/moredatabase.php:
|
6651 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6652 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
6653 |
|
6654 |
-
#: src/class-updraftplus.php:
|
6655 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6656 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
6657 |
|
6658 |
-
#: src/class-updraftplus.php:
|
6659 |
msgid "Others"
|
6660 |
msgstr "أخرى"
|
6661 |
|
6662 |
-
#: src/addons/multisite.php:
|
6663 |
msgid "Uploads"
|
6664 |
msgstr "الملفات المرفوعة"
|
6665 |
|
6666 |
-
#: src/class-updraftplus.php:
|
6667 |
msgid "Themes"
|
6668 |
msgstr "تصاميم"
|
6669 |
|
6670 |
-
#: src/class-updraftplus.php:
|
6671 |
msgid "Plugins"
|
6672 |
msgstr "الإضافات"
|
6673 |
|
6674 |
-
#: src/class-updraftplus.php:
|
6675 |
msgid "No log files were found."
|
6676 |
msgstr "لا توجد ملفات السجل."
|
6677 |
|
6678 |
-
#: src/admin.php:
|
6679 |
msgid "The log file could not be read."
|
6680 |
msgstr "لا يمكن قراءة ملف السجل."
|
6681 |
|
6682 |
-
#: src/admin.php:
|
6683 |
-
#: src/class-updraftplus.php:
|
6684 |
-
#: src/class-updraftplus.php:
|
6685 |
msgid "UpdraftPlus notice:"
|
6686 |
msgstr "إشعار UpdraftPlus :"
|
6687 |
|
6688 |
-
#: src/addons/multisite.php:74, src/addons/multisite.php:
|
6689 |
#: src/options.php:59
|
6690 |
msgid "UpdraftPlus Backups"
|
6691 |
msgstr "نسخ الإحتياطية UpdraftPlus"
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/addons/reporting.php:523, src/admin.php:660
|
15 |
+
msgid "Only email the database backup"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/addons/reporting.php:523
|
19 |
+
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."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/addons/reporting.php:523
|
23 |
+
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/addons/migrator.php:259
|
27 |
+
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/addons/incremental.php:62
|
31 |
+
msgid "Increments exist at: %s"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/addons/incremental.php:60, src/addons/incremental.php:62
|
35 |
+
msgid "(latest increment: %s)"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/s3-enhanced.php:370
|
39 |
+
msgid "Europe (Paris)"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/templates/wp-admin/settings/tab-addons.php:189
|
43 |
+
msgid "WP-CLI commands to take, list and delete backups."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/templates/wp-admin/settings/tab-addons.php:188
|
47 |
+
msgid "WP-CLI support"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/templates/wp-admin/settings/tab-addons.php:187
|
51 |
+
msgid "WP CLI"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/addons/wp-cli.php:239
|
55 |
+
msgid "Invalid Job Id"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: src/addons/wp-cli.php:181
|
59 |
+
msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: src/addons/wp-cli.php:171
|
63 |
+
msgid "Recently started backup job id: %s"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: src/addons/wp-cli.php:78
|
67 |
+
msgid "The given value for the '%s' option is not valid"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: src/addons/migrator.php:2447
|
71 |
+
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)."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: src/addons/migrator.php:2427
|
75 |
+
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: src/addons/migrator.php:2427
|
79 |
+
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: src/addons/migrator.php:2046
|
83 |
+
msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:14
|
87 |
+
msgid "This functionality has been disabled by the site administrator."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
91 |
msgid "Simple and secure login with a wave of your phone."
|
92 |
msgstr ""
|
111 |
msgid "Thank you for installing UpdraftPlus!"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: src/addons/migrator.php:2483
|
115 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
116 |
msgstr ""
|
117 |
|
139 |
msgid "Ensure you are logged into the correct account before continuing."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/admin.php:4789
|
143 |
msgid "Remote storage method and instance id are required for authentication."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: src/admin.php:4785
|
147 |
msgid "authentication error"
|
148 |
msgstr ""
|
149 |
|
151 |
msgid "(Nothing has been logged yet)"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: src/addons/migrator.php:425
|
155 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: src/addons/migrator.php:414
|
159 |
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."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: src/addons/migrator.php:403
|
163 |
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."
|
164 |
msgstr ""
|
165 |
|
171 |
msgid "Delete these settings"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/morestorage.php:81, src/admin.php:784
|
175 |
msgid "Currently disabled"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/morestorage.php:81, src/admin.php:783
|
179 |
msgid "Currently enabled"
|
180 |
msgstr ""
|
181 |
|
191 |
msgid "get it here"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: src/methods/stream-base.php:323
|
195 |
msgid "Download chunk size successfully changed to %d"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: src/methods/stream-base.php:320
|
199 |
msgid "Download chunk size failed to change to %d"
|
200 |
msgstr ""
|
201 |
|
211 |
msgid "remote site"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: src/addons/backblaze.php:497
|
215 |
msgid "Invalid bucket name"
|
216 |
msgstr ""
|
217 |
|
225 |
msgstr[4] ""
|
226 |
msgstr[5] ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4436
|
229 |
msgid "Your chosen replacement collation"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4413
|
233 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: src/class-updraftplus.php:4413
|
237 |
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."
|
238 |
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."
|
239 |
msgstr[0] ""
|
243 |
msgstr[4] ""
|
244 |
msgstr[5] ""
|
245 |
|
246 |
+
#: src/addons/migrator.php:548
|
247 |
msgid "Database restoration options:"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: src/addons/migrator.php:392
|
251 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
252 |
msgstr ""
|
253 |
|
275 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: src/central/bootstrap.php:519
|
279 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: src/central/bootstrap.php:517
|
283 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/central/bootstrap.php:514
|
287 |
msgid "A website where you have installed %s"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/central/bootstrap.php:512
|
291 |
msgid "Self-hosted dashboard"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/central/bootstrap.php:254
|
295 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/migrator.php:932
|
299 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
300 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
301 |
msgstr[0] ""
|
309 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: src/class-updraftplus.php:4389
|
313 |
msgid "Your chosen character set to use instead:"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:4379
|
317 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: src/class-updraftplus.php:4379
|
321 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
322 |
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."
|
323 |
msgstr[0] ""
|
327 |
msgstr[4] ""
|
328 |
msgstr[5] ""
|
329 |
|
330 |
+
#: src/central/bootstrap.php:597
|
331 |
msgid "Create another key"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/central/bootstrap.php:526
|
335 |
msgid "UpdraftCentral dashboard connection details"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/central/bootstrap.php:520
|
339 |
msgid "Next"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: src/central/bootstrap.php:506
|
343 |
msgid "an account"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: src/central/bootstrap.php:506
|
347 |
msgid "i.e. if you have %s there"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: src/central/bootstrap.php:495
|
351 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: src/central/bootstrap.php:469
|
355 |
msgid "Manage existing keys (%d)..."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/central/bootstrap.php:419
|
359 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: src/central/bootstrap.php:256
|
363 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: src/central/bootstrap.php:254
|
367 |
msgid "Detailed instructions for this can be found at %s"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: src/central/bootstrap.php:254
|
371 |
msgid "You now need to copy the key below and enter it at your %s."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: src/admin.php:778
|
375 |
msgid "Please enter a valid URL e.g http://example.com"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: src/addons/backblaze.php:655
|
379 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/addons/backblaze.php:654
|
383 |
msgid "some/path"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: src/addons/backblaze.php:654
|
387 |
msgid "Bucket name"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: src/addons/backblaze.php:653
|
391 |
msgid "Backup path"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: src/addons/backblaze.php:648
|
395 |
msgid "Application key"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: src/addons/backblaze.php:643, src/addons/backblaze.php:643
|
399 |
msgid "here"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: src/addons/backblaze.php:643
|
403 |
msgid "Get these settings from %s, or sign up %s."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: src/addons/backblaze.php:453
|
407 |
msgid "Account Key"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: src/addons/backblaze.php:452, src/addons/backblaze.php:641
|
411 |
msgid "Account ID"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: src/class-updraftplus.php:4221
|
415 |
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."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: src/class-updraftplus.php:4219, src/class-updraftplus.php:4221
|
419 |
msgid "the migrator add-on"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/class-updraftplus.php:4219
|
423 |
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."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: src/class-updraftplus.php:4217
|
427 |
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."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: src/class-updraftplus.php:4212
|
431 |
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."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/methods/googledrive.php:1272
|
435 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
436 |
msgstr ""
|
437 |
|
438 |
#: src/methods/backup-module.php:595
|
439 |
+
msgid "Follow this link to remove these settings for %s."
|
440 |
msgstr ""
|
441 |
|
442 |
#: src/addons/sftp.php:348
|
443 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:759
|
447 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:1384, src/admin.php:4367, src/backup.php:2106,
|
451 |
+
#: src/class-updraftplus.php:2253, src/class-updraftplus.php:2318,
|
452 |
+
#: src/class-updraftplus.php:2452
|
453 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: src/admin.php:1375, src/admin.php:4353, src/backup.php:2097,
|
457 |
+
#: src/class-updraftplus.php:2244, src/class-updraftplus.php:2311,
|
458 |
+
#: src/class-updraftplus.php:2445
|
459 |
msgid "A PHP exception (%s) has occurred: %s"
|
460 |
msgstr ""
|
461 |
|
511 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: src/admin.php:4995
|
515 |
msgid "Value"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: src/admin.php:1721
|
519 |
msgid "Did not know how to delete from this cloud service."
|
520 |
msgstr ""
|
521 |
|
531 |
msgid "Stored at: %s"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: src/methods/cloudfiles.php:495
|
535 |
msgid "Cloud Files"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: src/admin.php:4740
|
539 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: src/admin.php:4699
|
543 |
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."
|
544 |
msgstr ""
|
545 |
|
546 |
#: src/methods/updraftvault.php:71,
|
547 |
+
#: src/templates/wp-admin/settings/tab-addons.php:297
|
548 |
msgid "UpdraftVault"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: src/includes/class-wpadmin-commands.php:515
|
552 |
msgid "archive"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: src/includes/class-wpadmin-commands.php:506
|
556 |
msgid "Extra database"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: src/admin.php:3909
|
560 |
msgid "Press here to download or browse"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: src/admin.php:1158, src/admin.php:1168
|
564 |
msgid "Error: invalid path"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: src/admin.php:955
|
568 |
msgid "An error occurred when fetching storage module options: "
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: src/admin.php:775
|
572 |
msgid "Loading log file"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: src/admin.php:774
|
576 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: src/admin.php:773
|
580 |
msgid "Search"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: src/admin.php:772
|
584 |
msgid "Select a file to view information about it"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: src/admin.php:771
|
588 |
msgid "Browsing zip file"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: src/admin.php:740
|
592 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: src/admin.php:688
|
596 |
msgid "Browse contents"
|
597 |
msgstr ""
|
598 |
|
600 |
msgid "Skipped tables:"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: src/class-updraftplus.php:4501
|
604 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: src/admin.php:2804
|
608 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: src/admin.php:2804
|
612 |
msgid "All WordPress tables will be backed up."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: src/admin.php:770
|
616 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: src/admin.php:770
|
620 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: src/admin.php:770
|
624 |
msgid "The available memory on the server."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: src/admin.php:770
|
628 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: src/admin.php:770
|
632 |
msgid "The file failed to upload. Please check the following:"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: src/admin.php:769
|
636 |
msgid "HTTP code:"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: src/addons/wp-cli.php:87, src/admin.php:665
|
640 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: src/addons/moredatabase.php:603
|
644 |
msgid "tables"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: src/addons/moredatabase.php:602
|
648 |
msgid "WordPress database"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: src/addons/moredatabase.php:595
|
652 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
656 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: src/templates/wp-admin/settings/tab-addons.php:318
|
660 |
msgid "UpdraftCentral Cloud or Premium"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: src/templates/wp-admin/settings/tab-addons.php:301,
|
664 |
+
#: src/templates/wp-admin/settings/tab-addons.php:321
|
665 |
msgid "Find out more"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: src/templates/wp-admin/settings/tab-addons.php:300
|
669 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
670 |
msgstr ""
|
671 |
|
672 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
673 |
+
#: src/templates/wp-admin/settings/tab-addons.php:292
|
674 |
msgid "UpdraftPlus Gold"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: src/templates/wp-admin/settings/tab-addons.php:286
|
678 |
msgid "UpdraftPlus Free"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: src/templates/wp-admin/settings/tab-addons.php:283
|
682 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: src/templates/wp-admin/settings/tab-addons.php:269
|
686 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: src/templates/wp-admin/settings/tab-addons.php:253
|
690 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251,
|
694 |
+
#: src/templates/wp-admin/settings/tab-addons.php:252
|
695 |
msgid "Importer"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237
|
699 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: src/templates/wp-admin/settings/tab-addons.php:235,
|
703 |
+
#: src/templates/wp-admin/settings/tab-addons.php:236
|
704 |
msgid "No ads"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221
|
708 |
msgid "Sophisticated reporting and emailing capabilities."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: src/templates/wp-admin/settings/tab-addons.php:205
|
712 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: src/templates/wp-admin/settings/tab-addons.php:203,
|
716 |
+
#: src/templates/wp-admin/settings/tab-addons.php:204
|
717 |
msgid "More database options"
|
718 |
msgstr ""
|
719 |
|
781 |
|
782 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
783 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
784 |
+
#: src/templates/wp-admin/settings/tab-addons.php:340,
|
785 |
+
#: src/templates/wp-admin/settings/tab-addons.php:343
|
786 |
msgid "Upgrade now"
|
787 |
msgstr ""
|
788 |
|
789 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
790 |
+
#: src/templates/wp-admin/settings/tab-addons.php:337
|
791 |
msgid "Installed"
|
792 |
msgstr ""
|
793 |
|
820 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/addons/morefiles.php:332
|
824 |
msgid "Please choose a file or directory"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: src/addons/morefiles.php:321
|
828 |
msgid "Confirm"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: src/addons/morefiles.php:324
|
832 |
msgid "Go up a directory"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: src/addons/morefiles.php:317
|
836 |
msgid "Add directory..."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: src/addons/morefiles.php:310, src/addons/morefiles.php:330
|
840 |
msgid "Edit"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: src/addons/morefiles.php:293
|
844 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: src/addons/s3-enhanced.php:371
|
848 |
msgid "Europe (Frankfurt)"
|
849 |
msgstr ""
|
850 |
|
857 |
msgstr ""
|
858 |
|
859 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
860 |
+
#: src/templates/wp-admin/settings/tab-addons.php:317
|
861 |
msgid "UpdraftCentral"
|
862 |
msgstr ""
|
863 |
|
909 |
msgstr ""
|
910 |
|
911 |
#: src/includes/updraftplus-notices.php:251
|
912 |
+
msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
913 |
msgstr ""
|
914 |
|
915 |
#: src/includes/updraftplus-notices.php:238
|
954 |
msgstr ""
|
955 |
|
956 |
#: src/includes/updraftplus-notices.php:92,
|
957 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
958 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
959 |
msgstr ""
|
960 |
|
999 |
msgstr ""
|
1000 |
|
1001 |
#: src/includes/updraftplus-notices.php:41,
|
1002 |
+
#: src/templates/wp-admin/settings/tab-addons.php:298
|
1003 |
msgid "UpdraftVault storage"
|
1004 |
msgstr ""
|
1005 |
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
1032 |
+
#: src/templates/wp-admin/settings/tab-addons.php:267,
|
1033 |
+
#: src/templates/wp-admin/settings/tab-addons.php:268
|
1034 |
msgid "Lock settings"
|
1035 |
msgstr ""
|
1036 |
|
1076 |
msgid "Backup of: %s"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: src/methods/googledrive.php:270
|
1080 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: src/methods/dropbox.php:787
|
1084 |
msgid "%s de-authentication"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: src/methods/dropbox.php:633
|
1088 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: src/central/bootstrap.php:592
|
1092 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1093 |
msgstr ""
|
1094 |
|
1100 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: src/admin.php:1797
|
1104 |
msgid "Remote files deleted:"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: src/admin.php:1796
|
1108 |
msgid "Local files deleted:"
|
1109 |
msgstr ""
|
1110 |
|
1112 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: src/admin.php:768
|
1116 |
msgid "remote files deleted"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/admin.php:766
|
1120 |
msgid "Complete"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/admin.php:765
|
1124 |
msgid "Do you want to carry out the import?"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/admin.php:764
|
1128 |
msgid "Which was exported on:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: src/admin.php:763
|
1132 |
msgid "This will import data from:"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: src/admin.php:762
|
1136 |
msgid "Importing..."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: src/admin.php:758
|
1140 |
msgid "You have not yet selected a file to import."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: src/admin.php:742
|
1144 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1145 |
msgstr ""
|
1146 |
|
1173 |
msgid "An error response was received; HTTP code:"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: src/includes/class-commands.php:337
|
1177 |
msgid "%s add-on not found"
|
1178 |
msgstr ""
|
1179 |
|
1185 |
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"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: src/admin.php:2543
|
1189 |
msgid "To fix this problem go here."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: src/admin.php:2543
|
1193 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: src/admin.php:726
|
1197 |
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."
|
1198 |
msgstr ""
|
1199 |
|
1225 |
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."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: src/methods/s3.php:1143
|
1229 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: src/methods/s3.php:128
|
1233 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1234 |
msgstr ""
|
1235 |
|
1237 |
msgid "Backup using %s?"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: src/addons/s3-enhanced.php:375
|
1241 |
msgid "Asia Pacific (Mumbai)"
|
1242 |
msgstr ""
|
1243 |
|
1249 |
msgid "FAQs"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: src/central/bootstrap.php:548
|
1253 |
msgid "More information..."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: src/central/bootstrap.php:546
|
1257 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: src/central/bootstrap.php:456
|
1261 |
msgid "Key size: %d bits"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: src/central/bootstrap.php:451
|
1265 |
msgid "Public key was sent to:"
|
1266 |
msgstr ""
|
1267 |
|
1273 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: src/addons/migrator.php:2460
|
1277 |
msgid "Create key"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:540
|
1281 |
msgid "slower, strongest"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1285 |
msgid "recommended"
|
1286 |
msgstr "موصى به"
|
1287 |
|
1288 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1289 |
msgid "%s bytes"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: src/addons/migrator.php:2455, src/central/bootstrap.php:538
|
1293 |
msgid "faster (possibility for slow PHP installs)"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: src/addons/migrator.php:2454, src/central/bootstrap.php:537
|
1297 |
msgid "easy to break, fastest"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: src/addons/migrator.php:2454, src/addons/migrator.php:2455,
|
1301 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:537,
|
1302 |
+
#: src/central/bootstrap.php:538, src/central/bootstrap.php:540
|
1303 |
msgid "%s bits"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: src/addons/migrator.php:2452, src/central/bootstrap.php:535
|
1307 |
msgid "Encryption key size:"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: src/addons/migrator.php:2450
|
1311 |
msgid "Enter your chosen name"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: src/addons/migrator.php:2449
|
1315 |
+
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: src/methods/googledrive.php:530
|
1319 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1320 |
msgstr ""
|
1321 |
|
1327 |
msgid "login"
|
1328 |
msgstr "تسجيل الدخول"
|
1329 |
|
1330 |
+
#: src/addons/reporting.php:521, src/addons/reporting.php:521,
|
1331 |
+
#: src/addons/reporting.php:523, src/methods/email.php:100
|
1332 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1333 |
msgstr ""
|
1334 |
|
1336 |
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."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: src/class-updraftplus.php:1859
|
1340 |
msgid "Size: %s MB"
|
1341 |
msgstr ""
|
1342 |
|
1348 |
msgid "Now"
|
1349 |
msgstr "الآن"
|
1350 |
|
1351 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
1352 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1353 |
msgstr ""
|
1354 |
|
1356 |
msgid "(tap on an icon to select or unselect)"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: src/methods/updraftvault.php:333, src/methods/updraftvault.php:339,
|
1360 |
+
#: src/methods/updraftvault.php:345
|
1361 |
msgid "%s per year"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/methods/updraftvault.php:332, src/methods/updraftvault.php:338,
|
1365 |
+
#: src/methods/updraftvault.php:344
|
1366 |
msgid "or (annual discount)"
|
1367 |
msgstr ""
|
1368 |
|
1370 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: src/class-updraftplus.php:586, src/class-updraftplus.php:631
|
1374 |
msgid "The given file was not found, or could not be read."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: src/central/bootstrap.php:590
|
1378 |
msgid "UpdraftCentral (Remote Control)"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/central/bootstrap.php:579
|
1382 |
msgid "View recent UpdraftCentral log events"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/central/bootstrap.php:529
|
1386 |
msgid "Enter any description"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/central/bootstrap.php:528
|
1390 |
msgid "Description"
|
1391 |
msgstr " الوصف"
|
1392 |
|
1393 |
+
#: src/central/bootstrap.php:461
|
1394 |
msgid "Delete..."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: src/central/bootstrap.php:454
|
1398 |
msgid "Created:"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: src/central/bootstrap.php:451
|
1402 |
msgid "Access this site as user:"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: src/central/bootstrap.php:475
|
1406 |
msgid "Details"
|
1407 |
msgstr "تفاصيل عن المناسبة"
|
1408 |
|
1409 |
+
#: src/central/bootstrap.php:474
|
1410 |
msgid "Key description"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: src/central/bootstrap.php:347, src/central/bootstrap.php:358
|
1414 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: src/central/bootstrap.php:217
|
1418 |
msgid "An invalid URL was entered"
|
1419 |
msgstr ""
|
1420 |
|
1454 |
msgid "UpdraftCentral Connection"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2934
|
1458 |
msgid "The backup was aborted by the user"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: src/admin.php:4735
|
1462 |
msgid "Your settings have been saved."
|
1463 |
msgstr "تم حفظ إعداداتك."
|
1464 |
|
1465 |
+
#: src/admin.php:3787
|
1466 |
msgid "Total backup size:"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: src/admin.php:3144
|
1470 |
msgid "stop"
|
1471 |
msgstr "توقف"
|
1472 |
|
1473 |
+
#: src/admin.php:2986
|
1474 |
msgid "The backup has finished running"
|
1475 |
msgstr ""
|
1476 |
|
1496 |
msgid "calculate"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: src/admin.php:741
|
1500 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/admin.php:734
|
1504 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/admin.php:733
|
1508 |
msgid "Please enter a valid URL"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: src/admin.php:716
|
1512 |
msgid "Saving..."
|
1513 |
msgstr "جاري الحفظ..."
|
1514 |
|
1515 |
+
#: src/admin.php:679
|
1516 |
msgid "Error: the server sent us a response which we did not understand."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/admin.php:671
|
1520 |
msgid "Fetching..."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: src/addons/s3-enhanced.php:372
|
1524 |
msgid "Asia Pacific (Seoul)"
|
1525 |
msgstr ""
|
1526 |
|
1532 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: src/class-updraftplus.php:4289, src/restorer.php:1819
|
1536 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: src/class-updraftplus.php:4285
|
1540 |
msgid "Please read this link for important information on this process."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: src/class-updraftplus.php:4285
|
1544 |
msgid "It will be imported as a new site."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: src/admin.php:2702, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
1548 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1549 |
msgid "Dismiss"
|
1550 |
msgstr "رفض"
|
1551 |
|
1552 |
+
#: src/admin.php:753
|
1553 |
msgid "Please fill in the required information."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/addons/multisite.php:581
|
1557 |
msgid "Read more..."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/addons/multisite.php:572
|
1561 |
msgid "may include some site-wide data"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/addons/multisite.php:567
|
1565 |
msgid "All sites"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/addons/multisite.php:563
|
1569 |
msgid "Which site to restore"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/addons/migrator.php:618, src/addons/migrator.php:619
|
1573 |
msgid "Error when creating new site at your chosen address:"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/addons/migrator.php:560
|
1577 |
msgid "Required information for restoring this backup was not given (%s)"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: src/addons/migrator.php:512
|
1581 |
msgid "Attribute imported content to user"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: src/addons/migrator.php:502, src/addons/migrator.php:504
|
1585 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: src/addons/migrator.php:490
|
1589 |
msgid "This feature is not compatible with %s"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: src/addons/migrator.php:488, src/addons/migrator.php:490
|
1593 |
msgid "Importing a single site into a multisite install"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: src/addons/migrator.php:479
|
1597 |
msgid "other content from wp-content"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: src/addons/migrator.php:476
|
1601 |
msgid "WordPress core"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: src/addons/migrator.php:476, src/addons/migrator.php:479,
|
1605 |
+
#: src/addons/migrator.php:482
|
1606 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1607 |
msgstr ""
|
1608 |
|
1610 |
msgid "Call WordPress action:"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: src/admin.php:2812
|
1614 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: src/admin.php:4241
|
1618 |
msgid "Skipping: this archive was already restored."
|
1619 |
msgstr ""
|
1620 |
|
1646 |
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)."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: src/admin.php:4609
|
1650 |
msgid "Send this backup to remote storage"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: src/admin.php:4607
|
1654 |
msgid "Check out UpdraftPlus Vault."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: src/admin.php:4607
|
1658 |
msgid "Not got any remote storage?"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: src/admin.php:4607
|
1662 |
msgid "settings"
|
1663 |
msgstr "إعدادات"
|
1664 |
|
1665 |
+
#: src/admin.php:4607
|
1666 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: src/admin.php:2810
|
1670 |
msgid "Include any files in the backup"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: src/admin.php:2796
|
1674 |
msgid "Include the database in the backup"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: src/admin.php:2701
|
1678 |
msgid "Continue restoration"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: src/admin.php:2696
|
1682 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: src/admin.php:2695
|
1686 |
msgid "Unfinished restoration"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: src/admin.php:2693
|
1690 |
msgid "%s minutes, %s seconds"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: src/admin.php:2640
|
1694 |
msgid "Backup Contents And Schedule"
|
1695 |
msgstr ""
|
1696 |
|
1698 |
msgid "Premium / Extensions"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: src/admin.php:2409, src/admin.php:2418
|
1702 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: src/addons/morefiles.php:77, src/admin.php:739
|
1706 |
msgctxt "(verb)"
|
1707 |
msgid "Download"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: src/admin.php:664
|
1711 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1712 |
msgstr ""
|
1713 |
|
1838 |
msgid "Could not access container"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: src/class-updraftplus.php:2951
|
1842 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1843 |
msgstr ""
|
1844 |
|
1967 |
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)."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: src/admin.php:1795
|
1971 |
msgid "Backup sets removed:"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: src/admin.php:752
|
1975 |
msgid "Processing..."
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: src/admin.php:750
|
1979 |
msgid "For backups older than"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: src/admin.php:749
|
1983 |
msgid "week(s)"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: src/admin.php:748
|
1987 |
msgid "hour(s)"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: src/admin.php:747
|
1991 |
msgid "day(s)"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: src/admin.php:746
|
1995 |
msgid "in the month"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: src/admin.php:745
|
1999 |
msgid "day"
|
2000 |
msgstr ""
|
2001 |
|
2003 |
msgid "(as many as you like)"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: src/addons/fixtime.php:306, src/addons/fixtime.php:311
|
2007 |
msgid "Add an additional retention rule..."
|
2008 |
msgstr ""
|
2009 |
|
2015 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: src/methods/updraftvault.php:707
|
2019 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: src/class-updraftplus.php:4358
|
2023 |
msgid "You must upgrade MySQL to be able to use this database."
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: src/class-updraftplus.php:4358
|
2027 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: src/admin.php:2528
|
2031 |
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."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: src/methods/updraftvault.php:365
|
2035 |
msgid "Don't know your email address, or forgotten your password?"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: src/methods/updraftvault.php:358
|
2039 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2043 |
msgid "Read the FAQs here."
|
2044 |
msgstr ""
|
2045 |
|
2051 |
msgid "Server-side encryption"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: src/methods/updraftvault.php:715
|
2055 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: src/admin.php:1013
|
2059 |
msgid "Go to the remote storage settings in order to connect."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: src/admin.php:1013
|
2063 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: src/methods/updraftvault.php:348
|
2067 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: src/admin.php:722
|
2071 |
msgid "Update quota count"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: src/admin.php:721
|
2075 |
msgid "Counting..."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: src/admin.php:720
|
2079 |
msgid "Disconnecting..."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: src/admin.php:718
|
2083 |
msgid "Connecting..."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: src/methods/updraftvault.php:468, src/methods/updraftvault.php:542
|
2087 |
msgid "Refresh current status"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: src/methods/updraftvault.php:466, src/methods/updraftvault.php:482,
|
2091 |
+
#: src/methods/updraftvault.php:484, src/methods/updraftvault.php:542
|
2092 |
msgid "Get more quota"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: src/methods/updraftvault.php:463, src/methods/updraftvault.php:479,
|
2096 |
+
#: src/methods/updraftvault.php:523
|
2097 |
msgid "Current use:"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: src/methods/updraftvault.php:458
|
2101 |
msgid "You can get more quota here"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: src/methods/updraftvault.php:458
|
2105 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: src/admin.php:719, src/methods/updraftvault.php:392,
|
2109 |
+
#: src/methods/updraftvault.php:450
|
2110 |
msgid "Disconnect"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: src/methods/updraftvault.php:389, src/methods/updraftvault.php:442
|
2114 |
msgid "Quota:"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2118 |
msgid "Vault owner"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2122 |
msgid "Well done - there's nothing more needed to set up."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2126 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: src/methods/updraftvault.php:394, src/methods/updraftvault.php:436
|
2130 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: src/methods/updraftvault.php:365
|
2134 |
msgid "Go here for help"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: src/methods/updraftvault.php:360
|
2138 |
msgid "E-mail"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: src/addons/migrator.php:183, src/central/bootstrap.php:565,
|
2142 |
+
#: src/methods/updraftvault.php:354, src/methods/updraftvault.php:368
|
2143 |
msgid "Back..."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: src/methods/updraftvault.php:348
|
2147 |
msgid "Subscriptions can be cancelled at any time."
|
2148 |
msgstr ""
|
2149 |
|
2151 |
msgid "Buy it now"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: src/methods/updraftvault.php:331, src/methods/updraftvault.php:337,
|
2155 |
+
#: src/methods/updraftvault.php:343
|
2156 |
msgid "%s per quarter"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: src/central/bootstrap.php:592, src/methods/updraftvault.php:322,
|
2160 |
+
#: src/methods/updraftvault.php:351
|
2161 |
msgid "Read more about it here."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2165 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: src/methods/updraftvault.php:318
|
2169 |
msgid "Already purchased space?"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: src/methods/updraftvault.php:315
|
2173 |
msgid "Show the options"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: src/methods/updraftvault.php:314
|
2177 |
msgid "First time user?"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2181 |
msgid "Press a button to get started."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2185 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2186 |
msgstr ""
|
2187 |
|
2201 |
msgid "Updraft Vault"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:527,
|
2205 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1171
|
2206 |
msgid "Delete failed:"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/backup.php:3366
|
2210 |
msgid "The zip engine returned the message: %s."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: src/addons/s3-enhanced.php:396
|
2214 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: src/addons/s3-enhanced.php:394
|
2218 |
msgid "Allow deletion"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: src/addons/s3-enhanced.php:392
|
2222 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: src/addons/s3-enhanced.php:390
|
2226 |
msgid "Allow download"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: src/addons/migrator.php:1941
|
2230 |
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."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: src/addons/migrator.php:1926, src/admin.php:728
|
2234 |
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."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: src/addons/migrator.php:2492
|
2238 |
msgid "Existing keys"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: src/addons/migrator.php:2465
|
2242 |
msgid "Your new key:"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: src/central/bootstrap.php:401
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2246 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: src/addons/migrator.php:2046, src/central/bootstrap.php:401
|
2250 |
msgid "Key created successfully."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: src/addons/migrator.php:2031
|
2254 |
msgid "A key with this name already exists; you must use a unique name."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: src/addons/migrator.php:1972
|
2258 |
msgid "Also send this backup to the active remote storage locations"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: src/addons/migrator.php:1937
|
2262 |
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."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: src/addons/migrator.php:1893
|
2266 |
msgid "site not found"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: src/addons/migrator.php:1878
|
2270 |
msgid "Backup data will be sent to:"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: src/addons/migrator.php:215
|
2274 |
msgid "Restore an existing backup set onto this site"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: src/addons/migrator.php:222
|
2278 |
msgid "This site has no backups to restore from yet."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: src/addons/reporting.php:171
|
2282 |
msgid "Backup made by %s"
|
2283 |
msgstr ""
|
2284 |
|
2286 |
msgid "This storage method does not allow downloading"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: src/admin.php:3972
|
2290 |
msgid "(backup set imported from remote location)"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: src/addons/wp-cli.php:344,
|
2294 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2295 |
msgid "Site"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: src/addons/wp-cli.php:342,
|
2299 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2300 |
msgid "Backup sent to remote site - not available for download."
|
2301 |
msgstr ""
|
2308 |
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."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: src/addons/migrator.php:1954, src/admin.php:735
|
2312 |
msgid "Testing connection..."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: src/admin.php:732
|
2316 |
msgid "Deleting..."
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: src/admin.php:731
|
2320 |
msgid "key name"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: src/admin.php:729
|
2324 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: src/admin.php:726
|
2328 |
msgid "Creating..."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: src/addons/migrator.php:2443
|
2332 |
msgid "Or, receive a backup from a remote site"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: src/addons/migrator.php:2431
|
2336 |
msgid "Paste key here"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: src/addons/migrator.php:2427
|
2340 |
msgid "How do I get a site's key?"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: src/addons/migrator.php:2427
|
2344 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: src/addons/migrator.php:2421
|
2348 |
msgid "Or, send a backup to another site"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: src/addons/migrator.php:2128, src/admin.php:736
|
2352 |
msgid "Send"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: src/addons/migrator.php:2122, src/admin.php:727
|
2356 |
msgid "Send to site:"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: src/addons/migrator.php:2120
|
2360 |
msgid "No receiving sites have yet been added."
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: src/addons/migrator.php:2101
|
2364 |
msgid "It is for sending backups to the following site: "
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: src/addons/migrator.php:2101
|
2368 |
msgid "The key was successfully added."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: src/addons/migrator.php:2085
|
2372 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: src/addons/migrator.php:2074, src/addons/migrator.php:2076,
|
2376 |
+
#: src/addons/migrator.php:2080
|
2377 |
msgid "The entered key was corrupt - please try again."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: src/addons/migrator.php:2072
|
2381 |
msgid "The entered key was the wrong length - please try again."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: src/addons/migrator.php:2062
|
2385 |
msgid "key"
|
2386 |
msgstr ""
|
2387 |
|
2417 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: src/admin.php:725
|
2421 |
msgid "Resetting..."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: src/addons/migrator.php:2431, src/admin.php:724
|
2425 |
msgid "Add site"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: src/admin.php:723
|
2429 |
msgid "Adding..."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: src/udaddons/options.php:322
|
2433 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2434 |
msgstr ""
|
2435 |
|
2449 |
msgid "Go here to re-enter your password."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: src/addons/migrator.php:257
|
2453 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: src/addons/migrator.php:215
|
2457 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2458 |
msgstr ""
|
2459 |
|
2461 |
msgid "To restore using any of the backup sets below, press the button."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: src/admin.php:715, src/admin.php:741, src/admin.php:742
|
2465 |
msgid "You have made changes to your settings, and not saved."
|
2466 |
msgstr ""
|
2467 |
|
2473 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1941,
|
2477 |
#: src/addons/onedrive.php:1074
|
2478 |
msgid "For longer help, including screenshots, follow this link."
|
2479 |
msgstr ""
|
2503 |
msgid "Please re-authorize the connection to your %s account."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: src/methods/email.php:96
|
2507 |
msgid "configure it here"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680
|
2511 |
msgid "To remove the block, please go here."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/addons/s3-enhanced.php:473
|
2515 |
msgid "Do remember to save your settings."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: src/addons/s3-enhanced.php:473
|
2519 |
msgid "You are now using a IAM user account to access your bucket."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: src/addons/s3-enhanced.php:388
|
2523 |
msgid "S3 bucket"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: src/addons/s3-enhanced.php:378
|
2527 |
msgid "China (Beijing) (restricted)"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: src/addons/s3-enhanced.php:377
|
2531 |
msgid "South America (Sao Paulo)"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: src/addons/s3-enhanced.php:376
|
2535 |
msgid "Asia Pacific (Tokyo)"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: src/addons/s3-enhanced.php:374
|
2539 |
msgid "Asia Pacific (Sydney)"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: src/addons/s3-enhanced.php:373
|
2543 |
msgid "Asia Pacific (Singapore)"
|
2544 |
msgstr ""
|
2545 |
|
2587 |
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."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/addons/s3-enhanced.php:425
|
2591 |
msgid "Create new IAM user and S3 bucket"
|
2592 |
msgstr ""
|
2593 |
|
2652 |
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)"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: src/methods/s3.php:922
|
2656 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2657 |
msgstr ""
|
2658 |
|
2665 |
msgstr ""
|
2666 |
|
2667 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2668 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:873,
|
2669 |
#: src/udaddons/updraftplus-addons.php:887
|
2670 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2674 |
#: src/udaddons/updraftplus-addons.php:887
|
2675 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2679 |
#: src/udaddons/updraftplus-addons.php:887
|
2680 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2681 |
msgstr ""
|
2702 |
|
2703 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2704 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2705 |
+
#: src/templates/wp-admin/settings/tab-addons.php:289
|
2706 |
msgid "UpdraftPlus Premium"
|
2707 |
msgstr ""
|
2708 |
|
2715 |
msgid "Dismiss (for %s months)"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/addons/fixtime.php:447
|
2719 |
msgid "(at same time as files backup)"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: src/admin.php:3443
|
2723 |
msgid "No backup has been completed"
|
2724 |
msgstr ""
|
2725 |
|
2752 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: src/methods/s3.php:179, src/methods/s3.php:180, src/methods/s3.php:181,
|
2756 |
+
#: src/methods/s3.php:189, src/methods/s3.php:190, src/methods/s3.php:191
|
2757 |
msgid "%s Error: Failed to initialise"
|
2758 |
msgstr ""
|
2759 |
|
2762 |
msgid "or"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: src/admin.php:709
|
2766 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2767 |
msgstr ""
|
2768 |
|
2793 |
msgid "Check this box to have a basic report sent to"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: src/admin.php:3457
|
2797 |
msgctxt "i.e. Non-automatic"
|
2798 |
msgid "Manual"
|
2799 |
msgstr ""
|
2807 |
msgid "Change Lock Settings"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: src/addons/morefiles.php:271
|
2811 |
msgid "Any other file/directory on your server that you wish to back up"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: src/admin.php:2545
|
2815 |
msgid "For even more features and personal support, check out "
|
2816 |
msgstr ""
|
2817 |
|
2820 |
msgstr ""
|
2821 |
|
2822 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2823 |
+
#: src/admin.php:714
|
2824 |
msgid "Automatic backup before update"
|
2825 |
msgstr ""
|
2826 |
|
2881 |
msgstr ""
|
2882 |
|
2883 |
#: src/addons/lockadmin.php:156,
|
2884 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:8
|
2885 |
msgid "Lock access to the UpdraftPlus settings page"
|
2886 |
msgstr ""
|
2887 |
|
2897 |
msgid "The admin password has now been removed."
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: src/addons/morefiles.php:154
|
2901 |
msgid "(learn more about this significant option)"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: src/udaddons/options.php:265
|
2905 |
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."
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: src/admin.php:2986, src/admin.php:4003
|
2909 |
msgid "View Log"
|
2910 |
msgstr ""
|
2911 |
|
2922 |
msgid "and retain this many scheduled backups"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: src/admin.php:3413
|
2926 |
msgid "incremental backup; base backup: %s"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:19
|
2930 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2931 |
msgstr ""
|
2932 |
|
2934 |
msgid "Upload files into UpdraftPlus."
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: src/admin.php:959, src/includes/class-commands.php:391,
|
2938 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2939 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: src/class-updraftplus.php:4274
|
2943 |
msgid "Backup label:"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: src/addons/backblaze.php:205, src/admin.php:2056
|
2947 |
msgid "Error: unexpected file read fail"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: src/backup.php:3372
|
2951 |
msgid "check your log for more details."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: src/backup.php:3370
|
2955 |
msgid "your web hosting account appears to be full; please see: %s"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: src/backup.php:3368
|
2959 |
msgid "A zip error occurred"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: src/addons/reporting.php:66
|
2963 |
msgid "Your label for this backup (optional)"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1192
|
2967 |
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."
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:926
|
2971 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:922
|
2975 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:790
|
2979 |
msgid "You need to supply both an email address and a password"
|
2980 |
msgstr ""
|
2981 |
|
2983 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: src/class-updraftplus.php:4293
|
2987 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: src/class-updraftplus.php:4293
|
2991 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: src/addons/migrator.php:1239
|
2995 |
msgid "already done"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: src/addons/migrator.php:1196
|
2999 |
msgid "skipped (not in list)"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: src/addons/migrator.php:1196, src/addons/migrator.php:1239,
|
3003 |
+
#: src/addons/migrator.php:1373
|
3004 |
msgid "Search and replacing table:"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: src/addons/migrator.php:373
|
3008 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: src/addons/migrator.php:373
|
3012 |
msgid "These tables only"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: src/addons/migrator.php:372
|
3016 |
msgid "Rows per batch"
|
3017 |
msgstr ""
|
3018 |
|
3024 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: src/class-updraftplus.php:4266
|
3028 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: src/class-updraftplus.php:4266
|
3032 |
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."
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: src/class-updraftplus.php:4266
|
3036 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: src/class-updraftplus.php:4266
|
3040 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3041 |
msgstr ""
|
3042 |
|
3065 |
msgid "UpdraftPlus is on social media - check us out!"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: src/admin.php:4070
|
3069 |
msgid "Why am I seeing this?"
|
3070 |
msgstr ""
|
3071 |
|
3077 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: src/admin.php:1995, src/admin.php:2007
|
3081 |
msgid "Start backup"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
3085 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: src/admin.php:3311
|
3089 |
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."
|
3090 |
msgstr ""
|
3091 |
|
3093 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: src/admin.php:2231
|
3097 |
msgid "This file could not be uploaded"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: src/admin.php:2194
|
3101 |
msgid "You will find more information about this in the Settings section."
|
3102 |
msgstr ""
|
3103 |
|
3117 |
msgid "Memory limit"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: src/class-updraftplus.php:4707, src/restorer.php:1608
|
3121 |
msgid "restoration"
|
3122 |
msgstr ""
|
3123 |
|
3141 |
msgid "Backup succeeded"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: src/admin.php:3458, src/admin.php:3459, src/admin.php:3460,
|
3145 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3146 |
msgid "Every %s hours"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:892
|
3150 |
msgid "search and replace"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: src/addons/migrator.php:375
|
3154 |
msgid "Go"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: src/addons/migrator.php:364
|
3158 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: src/addons/migrator.php:363
|
3162 |
msgid "This can easily destroy your site; so, use it with care!"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: src/addons/migrator.php:319, src/addons/migrator.php:371
|
3166 |
msgid "Replace with"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: src/addons/migrator.php:318, src/addons/migrator.php:370
|
3170 |
msgid "Search for"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: src/addons/migrator.php:317, src/addons/migrator.php:362,
|
3174 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3175 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3176 |
msgid "Search / replace database"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: src/addons/migrator.php:323
|
3180 |
msgid "search term"
|
3181 |
msgstr ""
|
3182 |
|
3192 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: src/methods/googledrive.php:1199
|
3196 |
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."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: src/admin.php:3814
|
3200 |
msgid "You have not yet made any backups."
|
3201 |
msgstr ""
|
3202 |
|
3216 |
msgid "Free disk space in account:"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: src/admin.php:4706, src/templates/wp-admin/settings/tab-status.php:27
|
3220 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: src/admin.php:540, src/admin.php:683, src/admin.php:1843,
|
3224 |
#: src/includes/deprecated-actions.php:29,
|
3225 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3226 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
3231 |
msgid "Current Status"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: src/admin.php:964
|
3235 |
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."
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: src/admin.php:964
|
3239 |
msgid "To make a backup, just press the Backup Now button."
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: src/admin.php:964
|
3243 |
msgid "Welcome to UpdraftPlus!"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: src/addons/moredatabase.php:323
|
3247 |
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)."
|
3248 |
msgstr ""
|
3249 |
|
3311 |
msgid "user"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/class-updraftplus.php:1856
|
3315 |
msgid "External database (%s)"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: src/methods/googledrive.php:1199
|
3319 |
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."
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: src/methods/googledrive.php:494
|
3323 |
msgid "failed to access parent folder"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3327 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:434,
|
3328 |
+
#: src/methods/googledrive.php:447
|
3329 |
msgid "However, subsequent access attempts failed:"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: src/addons/wp-cli.php:388, src/admin.php:3839
|
3333 |
msgid "External database"
|
3334 |
msgstr ""
|
3335 |
|
3361 |
msgid "use UpdraftPlus Premium"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: src/class-updraftplus.php:4120
|
3365 |
msgid "Decryption failed. The database file is encrypted."
|
3366 |
msgstr ""
|
3367 |
|
3382 |
msgid "database connection attempt failed."
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: src/addons/migrator.php:1127
|
3386 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3387 |
msgstr ""
|
3388 |
|
3444 |
msgid "Failed to upload %s"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
3448 |
msgid "Success:"
|
3449 |
msgstr ""
|
3450 |
|
3452 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:612
|
3456 |
msgid "(You appear to be already authenticated)."
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: src/methods/dropbox.php:608
|
3460 |
msgid "Dropbox"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:608
|
3464 |
msgid "Authenticate with %s"
|
3465 |
msgstr ""
|
3466 |
|
3492 |
msgstr ""
|
3493 |
|
3494 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3495 |
+
#: src/methods/dropbox.php:665, src/methods/googledrive.php:1278
|
3496 |
msgid "Account holder's name: %s."
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: src/methods/googledrive.php:1255
|
3500 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: src/methods/googledrive.php:1242
|
3504 |
msgid "It is an ID number internal to Google Drive"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: src/methods/googledrive.php:1242
|
3508 |
msgid "<strong>This is NOT a folder name</strong>."
|
3509 |
msgstr ""
|
3510 |
|
3511 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3512 |
+
#: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248
|
3513 |
msgid "Folder"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3517 |
+
#: src/methods/googledrive.php:1152
|
3518 |
msgid "%s download: failed: file not found"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
|
3522 |
msgid "Name: %s."
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: src/methods/googledrive.php:208
|
3526 |
msgid "Google Drive list files: failed to access parent folder"
|
3527 |
msgstr ""
|
3528 |
|
3547 |
msgid "Fetch"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: src/addons/migrator.php:488,
|
3551 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3552 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3553 |
msgid "This feature requires %s version %s or later"
|
3557 |
msgid "Failed to unpack the archive"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: src/class-updraftplus.php:1380
|
3561 |
msgid "Error - failed to download the file"
|
3562 |
msgstr ""
|
3563 |
|
3581 |
msgid "password/key"
|
3582 |
msgstr " الرقم السري/المفتاح"
|
3583 |
|
3584 |
+
#: src/addons/migrator.php:2450, src/addons/sftp.php:451, src/admin.php:730,
|
3585 |
+
#: src/admin.php:4995
|
3586 |
msgid "Key"
|
3587 |
msgstr "مفتاح"
|
3588 |
|
3598 |
msgid "SCP/SFTP password/key"
|
3599 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
3600 |
|
3601 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3602 |
msgid "Files backup (created by %s)"
|
3603 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
3604 |
|
3605 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3606 |
msgid "Files and database WordPress backup (created by %s)"
|
3607 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
3608 |
|
3609 |
+
#: src/addons/importer.php:276, src/admin.php:3877,
|
3610 |
#: src/includes/class-backup-history.php:349
|
3611 |
msgid "Backup created by: %s."
|
3612 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
3613 |
|
3614 |
+
#: src/addons/wp-cli.php:382, src/admin.php:3837
|
3615 |
msgid "Database (created by %s)"
|
3616 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
3617 |
|
3618 |
+
#: src/addons/wp-cli.php:380, src/admin.php:3831, src/admin.php:3879
|
3619 |
msgid "unknown source"
|
3620 |
msgstr "مصدر غير معروف"
|
3621 |
|
3627 |
msgid "Upload backup files"
|
3628 |
msgstr "رفع ملفات النسخة الإحتياطية"
|
3629 |
|
3630 |
+
#: src/admin.php:2246
|
3631 |
msgid "This backup was created by %s, and can be imported."
|
3632 |
msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
|
3633 |
|
3634 |
+
#: src/admin.php:993
|
3635 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3636 |
msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
|
3637 |
|
3638 |
+
#: src/admin.php:993
|
3639 |
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."
|
3640 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
3641 |
|
3642 |
+
#: src/admin.php:695, src/includes/class-backup-history.php:356
|
3643 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3644 |
msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
|
3645 |
|
3646 |
+
#: src/admin.php:694
|
3647 |
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."
|
3648 |
msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
|
3649 |
|
3650 |
+
#: src/admin.php:694, src/admin.php:695,
|
3651 |
#: src/includes/class-backup-history.php:356
|
3652 |
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))."
|
3653 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3654 |
|
3655 |
+
#: src/admin.php:3880, src/includes/class-wpadmin-commands.php:152,
|
3656 |
#: src/restorer.php:1577
|
3657 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3658 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
3673 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3674 |
msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
|
3675 |
|
3676 |
+
#: src/addons/backblaze.php:579, src/methods/cloudfiles.php:234,
|
3677 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3678 |
msgid "No settings were found"
|
3679 |
msgstr "لم يتم العثور على الإعدادات"
|
3682 |
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."
|
3683 |
msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
|
3684 |
|
3685 |
+
#: src/admin.php:661
|
3686 |
msgid "Rescanning remote and local storage for backup sets..."
|
3687 |
msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
|
3688 |
|
3691 |
msgid "(Read more)"
|
3692 |
msgstr "(قراءة المزيد)"
|
3693 |
|
3694 |
+
#: src/addons/reporting.php:487
|
3695 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3696 |
msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
|
3697 |
|
3698 |
+
#: src/addons/morefiles.php:521
|
3699 |
msgid "No backup of location: there was nothing found to back up"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:310,
|
3703 |
+
#: src/addons/morefiles.php:331
|
3704 |
msgid "Remove"
|
3705 |
msgstr "حذف"
|
3706 |
|
3707 |
+
#: src/methods/s3.php:873
|
3708 |
msgid "Other %s FAQs."
|
3709 |
msgstr "الأسئلة الشائعة %s الأخرى."
|
3710 |
|
3712 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3713 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
3714 |
|
3715 |
+
#: src/addons/morefiles.php:468, src/admin.php:3562
|
3716 |
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."
|
3717 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
3718 |
|
3719 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330,
|
3720 |
#: src/restorer.php:1608
|
3721 |
msgid "Your hosting company must enable these functions before %s can work."
|
3722 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
3723 |
|
3724 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330
|
3725 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3726 |
msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
|
3727 |
|
3741 |
msgid "Backup created by:"
|
3742 |
msgstr "نسخة احتياطية أنشأها:"
|
3743 |
|
3744 |
+
#: src/udaddons/options.php:490
|
3745 |
msgid "Available to claim on this site"
|
3746 |
msgstr "متوفر للطلب من هذا الموقع"
|
3747 |
|
3791 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3792 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
3793 |
|
3794 |
+
#: src/class-updraftplus.php:4757
|
3795 |
msgid "The attempt to undo the double-compression succeeded."
|
3796 |
msgstr "نجاح محاولة التراجع من الضغط المزدوج"
|
3797 |
|
3798 |
+
#: src/class-updraftplus.php:4734, src/class-updraftplus.php:4755
|
3799 |
msgid "The attempt to undo the double-compression failed."
|
3800 |
msgstr "فشل محاولة التراجع من الضغط المزدوج"
|
3801 |
|
3802 |
+
#: src/class-updraftplus.php:4727
|
3803 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3804 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
3805 |
|
3806 |
+
#: src/includes/class-wpadmin-commands.php:315
|
3807 |
msgid "Constants"
|
3808 |
msgstr "ثوابت"
|
3809 |
|
3819 |
msgid "please wait for the rescheduled attempt"
|
3820 |
msgstr "فضلا انتظر محاولة إعادة الجدولة"
|
3821 |
|
3822 |
+
#: src/addons/reporting.php:217
|
3823 |
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."
|
3824 |
msgstr "لاحظ أن رسائل التحذير استشارية - عملية النسخ الاحتياطي لا تتوقف بالنسبة لهم. بدلا من ذلك، ستوفر لك معلومات قد تجدها مفيدة، أو قد تشير إلى مصدر المشكلة إذا لم تنجح عملية النسخ الاحتياطي."
|
3825 |
|
3832 |
msgid "Errors occurred:"
|
3833 |
msgstr "أخطاء حدثت:"
|
3834 |
|
3835 |
+
#: src/admin.php:4089
|
3836 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3837 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
3838 |
|
3856 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3857 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
3858 |
|
3859 |
+
#: src/admin.php:968, src/class-updraftplus.php:865
|
3860 |
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)"
|
3861 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
3862 |
|
3863 |
+
#: src/addons/migrator.php:290
|
3864 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3865 |
msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
|
3866 |
|
3869 |
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."
|
3870 |
msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
|
3871 |
|
3872 |
+
#: src/addons/moredatabase.php:137, src/admin.php:1587
|
3873 |
msgid "Messages:"
|
3874 |
msgstr "رسائل:"
|
3875 |
|
3967 |
msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
|
3968 |
|
3969 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3970 |
+
#: src/methods/cloudfiles.php:492
|
3971 |
msgid "Cloud Files Container"
|
3972 |
msgstr "حاوية الملفات السحابية"
|
3973 |
|
3974 |
+
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:487
|
3975 |
msgid "Cloud Files API Key"
|
3976 |
msgstr "مفتاح API للملفات السحابية"
|
3977 |
|
4030 |
msgid "Authorisation failed (check your credentials)"
|
4031 |
msgstr "فشل التفويض (راجع معلوماتك)"
|
4032 |
|
4033 |
+
#: src/includes/class-commands.php:718, src/methods/updraftvault.php:630,
|
4034 |
+
#: src/udaddons/options.php:257
|
4035 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4036 |
msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
|
4037 |
|
4038 |
+
#: src/admin.php:708, src/central/bootstrap.php:560
|
4039 |
msgid "Create"
|
4040 |
msgstr "خلق"
|
4041 |
|
4042 |
+
#: src/admin.php:670
|
4043 |
msgid "Trying..."
|
4044 |
msgstr "اعادة المحاولة..."
|
4045 |
|
4046 |
+
#: src/admin.php:669
|
4047 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4048 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
4049 |
|
4050 |
+
#: src/admin.php:680, src/admin.php:4387
|
4051 |
msgid "Error data:"
|
4052 |
msgstr "خطأ بالبيانات:"
|
4053 |
|
4054 |
+
#: src/admin.php:4041
|
4055 |
msgid "Backup does not exist in the backup history"
|
4056 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
4057 |
|
4058 |
+
#: src/admin.php:2921
|
4059 |
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."
|
4060 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
4061 |
|
4083 |
msgid "Moving old data out of the way..."
|
4084 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
4085 |
|
4086 |
+
#: src/addons/reporting.php:478
|
4087 |
msgid "Add another address..."
|
4088 |
msgstr "إضافة عنوان آخر ..."
|
4089 |
|
4090 |
+
#: src/addons/reporting.php:463
|
4091 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4092 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
4093 |
|
4094 |
+
#: src/addons/reporting.php:437
|
4095 |
msgid "Email reports"
|
4096 |
msgstr "تقارير البريد الإلكتروني"
|
4097 |
|
4098 |
+
#: src/class-updraftplus.php:1864, src/class-updraftplus.php:1869
|
4099 |
msgid "%s checksum: %s"
|
4100 |
msgstr "%s الاختباري:%s"
|
4101 |
|
4102 |
+
#: src/class-updraftplus.php:1837, src/class-updraftplus.php:1839
|
4103 |
msgid "files: %s"
|
4104 |
msgstr "ملفات:%s"
|
4105 |
|
4106 |
+
#: src/addons/reporting.php:391
|
4107 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4108 |
msgstr "استخدام قسم \"التقارير\" لتكوين عناوين البريد الإلكتروني ليتم استخدامها."
|
4109 |
|
4110 |
+
#: src/addons/reporting.php:267
|
4111 |
msgid "Debugging information"
|
4112 |
msgstr "معلومات التصحيح"
|
4113 |
|
4114 |
+
#: src/addons/reporting.php:222, src/admin.php:3770
|
4115 |
msgid "Uploaded to:"
|
4116 |
msgstr "تحميلها على:"
|
4117 |
|
4118 |
+
#: src/addons/reporting.php:221
|
4119 |
msgid "Time taken:"
|
4120 |
msgstr "الوقت المستغرق:"
|
4121 |
|
4122 |
+
#: src/addons/reporting.php:212
|
4123 |
msgid "Warnings"
|
4124 |
msgstr "تحذيرات"
|
4125 |
|
4126 |
+
#: src/addons/reporting.php:197
|
4127 |
msgid "Errors"
|
4128 |
msgstr "أخطاء"
|
4129 |
|
4130 |
+
#: src/addons/reporting.php:194
|
4131 |
msgid "Errors / warnings:"
|
4132 |
msgstr "أخطاء / تحذيرات:"
|
4133 |
|
4134 |
+
#: src/addons/morefiles.php:142, src/addons/morefiles.php:143,
|
4135 |
+
#: src/addons/reporting.php:183
|
4136 |
msgid "Contains:"
|
4137 |
msgstr "يحتوي على:"
|
4138 |
|
4139 |
+
#: src/addons/reporting.php:182
|
4140 |
msgid "Backup began:"
|
4141 |
msgstr "بدأ النسخ الاحتياطي:"
|
4142 |
|
4143 |
+
#: src/addons/reporting.php:170
|
4144 |
msgid "Backup Report"
|
4145 |
msgstr "تقرير النسخ الاحتياطي"
|
4146 |
|
4147 |
+
#: src/addons/reporting.php:165
|
4148 |
msgid "%d hours, %d minutes, %d seconds"
|
4149 |
msgstr "%d ساعة،%d دقيقة، %d ثانية"
|
4150 |
|
4151 |
+
#: src/addons/reporting.php:151
|
4152 |
msgid "%d errors, %d warnings"
|
4153 |
msgstr "%d الأخطاء، %d تحذيرات"
|
4154 |
|
4155 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:750,
|
4156 |
+
#: src/methods/dropbox.php:772
|
4157 |
msgid "%s authentication"
|
4158 |
msgstr "%s مصادقة"
|
4159 |
|
4160 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:534,
|
4161 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:750,
|
4162 |
+
#: src/methods/dropbox.php:772, src/methods/dropbox.php:787,
|
4163 |
+
#: src/methods/dropbox.php:800, src/methods/dropbox.php:943
|
4164 |
msgid "%s error: %s"
|
4165 |
msgstr "%s خطأ: %s"
|
4166 |
|
4167 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:577
|
4168 |
msgid "%s logo"
|
4169 |
msgstr "%s الشعار"
|
4170 |
|
4172 |
msgid "%s did not return the expected response - check your log file for more details"
|
4173 |
msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
|
4174 |
|
4175 |
+
#: src/methods/s3.php:312
|
4176 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4177 |
msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
|
4178 |
|
4179 |
+
#: src/methods/email.php:97
|
4180 |
msgid "For more options, use the \"%s\" add-on."
|
4181 |
msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
|
4182 |
|
4183 |
+
#: src/methods/email.php:96
|
4184 |
msgid "Your site's admin email address (%s) will be used."
|
4185 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
4186 |
|
4187 |
+
#: src/admin.php:717, src/admin.php:2723, src/methods/updraftvault.php:319,
|
4188 |
+
#: src/methods/updraftvault.php:362
|
4189 |
msgid "Connect"
|
4190 |
msgstr "الإتصال"
|
4191 |
|
4193 |
msgid "For more reporting features, use the Reporting add-on."
|
4194 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
4195 |
|
4196 |
+
#: src/class-updraftplus.php:4201
|
4197 |
msgid "(version: %s)"
|
4198 |
msgstr "(الإصدار: %s)"
|
4199 |
|
|
|
4200 |
#: src/admin.php:658
|
4201 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4202 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
4203 |
|
4204 |
+
#: src/addons/reporting.php:521, src/admin.php:657
|
4205 |
+
msgid "When the Email storage method is enabled, also send the backup"
|
4206 |
+
msgstr ""
|
4207 |
|
4208 |
+
#: src/addons/reporting.php:181, src/backup.php:1102
|
4209 |
msgid "Latest status:"
|
4210 |
msgstr "آخر التحديثات:"
|
4211 |
|
4217 |
msgid "Backed up: %s"
|
4218 |
msgstr "نسخ احتياطي: %s"
|
4219 |
|
4220 |
+
#: src/addons/reporting.php:264, src/backup.php:1052
|
4221 |
msgid "The log file has been attached to this email."
|
4222 |
msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
|
4223 |
|
4245 |
msgid "Files and database"
|
4246 |
msgstr "ملفات وقواعد البيانات"
|
4247 |
|
4248 |
+
#: src/options.php:197
|
4249 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4250 |
msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
|
4251 |
|
4252 |
+
#: src/options.php:197
|
4253 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4254 |
msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
|
4255 |
|
4256 |
+
#: src/options.php:197
|
4257 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4258 |
msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
|
4259 |
|
4260 |
+
#: src/options.php:197
|
4261 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4262 |
msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
|
4263 |
|
4264 |
+
#: src/options.php:197
|
4265 |
msgid "UpdraftPlus warning:"
|
4266 |
msgstr "تحذير UpdraftPlus :"
|
4267 |
|
4268 |
+
#: src/udaddons/options.php:496
|
4269 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4270 |
msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
|
4271 |
|
4272 |
+
#: src/udaddons/options.php:482
|
4273 |
msgid "please follow this link to update the plugin in order to activate it"
|
4274 |
msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
|
4275 |
|
4276 |
+
#: src/udaddons/options.php:479
|
4277 |
msgid "please follow this link to update the plugin in order to get it"
|
4278 |
msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
|
4279 |
|
4280 |
+
#: src/udaddons/options.php:469, src/udaddons/options.php:471
|
4281 |
msgid "latest"
|
4282 |
msgstr "آخر"
|
4283 |
|
4284 |
+
#: src/udaddons/options.php:467
|
4285 |
msgid "Your version: %s"
|
4286 |
msgstr "الإصدار: %s"
|
4287 |
|
4288 |
+
#: src/udaddons/options.php:465, src/udaddons/options.php:465
|
4289 |
msgid "You've got it"
|
4290 |
msgstr "كنت قد حصلت عليه"
|
4291 |
|
4292 |
+
#: src/udaddons/options.php:426
|
4293 |
msgid "UpdraftPlus Support"
|
4294 |
msgstr "دعم UpdraftPlus"
|
4295 |
|
4296 |
+
#: src/udaddons/options.php:384
|
4297 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4298 |
msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
4299 |
|
4300 |
+
#: src/udaddons/options.php:373, src/udaddons/updraftplus-addons.php:301
|
4301 |
msgid "UpdraftPlus Addons"
|
4302 |
msgstr "اضافات UpdraftPlus"
|
4303 |
|
4305 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4306 |
msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
4307 |
|
4308 |
+
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
4309 |
#: src/udaddons/updraftplus-addons.php:933
|
4310 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4311 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
|
4312 |
|
4313 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:929
|
4314 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4315 |
msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
|
4316 |
|
4317 |
+
#: src/methods/updraftvault.php:682, src/udaddons/updraftplus-addons.php:892
|
4318 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4319 |
msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
|
4320 |
|
4326 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4327 |
msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
4328 |
|
4329 |
+
#: src/methods/email.php:97,
|
4330 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4331 |
+
#: src/templates/wp-admin/settings/tab-addons.php:219,
|
4332 |
+
#: src/templates/wp-admin/settings/tab-addons.php:220
|
4333 |
msgid "Reporting"
|
4334 |
msgstr "التقارير"
|
4335 |
|
4336 |
+
#: src/admin.php:4992
|
4337 |
msgid "Options (raw)"
|
4338 |
msgstr "خيارات (الخام)"
|
4339 |
|
4340 |
+
#: src/addons/reporting.php:519, src/admin.php:656
|
4341 |
msgid "Send a report only when there are warnings/errors"
|
4342 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
4343 |
|
4353 |
msgid "See also the \"More Files\" add-on from our shop."
|
4354 |
msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
|
4355 |
|
4356 |
+
#: src/backup.php:3359, src/class-updraftplus.php:878
|
4357 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4358 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
4359 |
|
4360 |
+
#: src/class-updraftplus.php:862
|
4361 |
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)"
|
4362 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
4363 |
|
4364 |
+
#: src/udaddons/options.php:519
|
4365 |
msgid "Manage Addons"
|
4366 |
msgstr "ادارة الأضافات"
|
4367 |
|
4368 |
+
#: src/udaddons/options.php:497, src/udaddons/options.php:497
|
4369 |
msgid "Buy It"
|
4370 |
msgstr "شراء"
|
4371 |
|
4372 |
+
#: src/udaddons/options.php:496
|
4373 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4374 |
msgstr "الحصول علية من متجر UpdraftPlus.Com"
|
4375 |
|
4376 |
+
#: src/udaddons/options.php:490, src/udaddons/options.php:492
|
4377 |
msgid "activate it on this site"
|
4378 |
msgstr "تنشيطة على هذا الموقع"
|
4379 |
|
4380 |
+
#: src/udaddons/options.php:492
|
4381 |
msgid "You have an inactive purchase"
|
4382 |
msgstr "لديك شراء غير فعال"
|
4383 |
|
4384 |
+
#: src/udaddons/options.php:482
|
4385 |
msgid "Assigned to this site"
|
4386 |
msgstr "تعيين إلى هذا الموقع"
|
4387 |
|
4388 |
+
#: src/udaddons/options.php:479
|
4389 |
msgid "Available for this site (via your all-addons purchase)"
|
4390 |
msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
|
4391 |
|
4392 |
+
#: src/udaddons/options.php:473
|
4393 |
msgid "(apparently a pre-release or withdrawn release)"
|
4394 |
msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
|
4395 |
|
4396 |
+
#: src/udaddons/options.php:428
|
4397 |
msgid "Go here"
|
4398 |
msgstr "اذهب هنا"
|
4399 |
|
4400 |
+
#: src/udaddons/options.php:428
|
4401 |
msgid "Need to get support?"
|
4402 |
msgstr "هل انت بحاجة للحصول على الدعم؟"
|
4403 |
|
4404 |
+
#: src/udaddons/options.php:410
|
4405 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4406 |
msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
|
4407 |
|
4408 |
+
#: src/udaddons/options.php:324
|
4409 |
msgid "An unknown response was received. Response was:"
|
4410 |
msgstr "تم تلقى رد غير معروف. الرد هو:"
|
4411 |
|
4412 |
+
#: src/udaddons/options.php:323
|
4413 |
msgid "Claim not granted - your account login details were wrong"
|
4414 |
msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
|
4415 |
|
4416 |
+
#: src/udaddons/options.php:321
|
4417 |
msgid "Please wait whilst we make the claim..."
|
4418 |
msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
|
4419 |
|
4420 |
+
#: src/udaddons/options.php:275
|
4421 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4422 |
msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
|
4423 |
|
4424 |
+
#: src/udaddons/options.php:268
|
4425 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4426 |
msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
|
4427 |
|
4428 |
+
#: src/udaddons/options.php:264
|
4429 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4430 |
msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
|
4431 |
|
4432 |
+
#: src/udaddons/options.php:263
|
4433 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4434 |
msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
|
4435 |
|
4436 |
+
#: src/admin.php:2721
|
4437 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4438 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
4439 |
|
4477 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4478 |
msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
|
4479 |
|
4480 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4481 |
msgid "Without it, encryption will be a lot slower."
|
4482 |
msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
|
4483 |
|
4484 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4485 |
msgid "Your web-server does not have the %s module installed."
|
4486 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
4487 |
|
4488 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1267
|
4489 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4490 |
msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
|
4491 |
|
4493 |
msgid "Drop backup files here"
|
4494 |
msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
|
4495 |
|
4496 |
+
#: src/admin.php:668
|
4497 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4498 |
msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
|
4499 |
|
4500 |
+
#: src/admin.php:666
|
4501 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4502 |
msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
|
4503 |
|
4504 |
+
#: src/addons/wp-cli.php:93, src/admin.php:663
|
4505 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4506 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
4507 |
|
4521 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4522 |
msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
|
4523 |
|
4524 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:143,
|
4525 |
+
#: src/methods/stream-base.php:148
|
4526 |
msgid "Upload failed"
|
4527 |
msgstr "فشل التحميل"
|
4528 |
|
4530 |
msgid "You can send a backup to more than one destination with an add-on."
|
4531 |
msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
|
4532 |
|
4533 |
+
#: src/admin.php:3144
|
4534 |
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."
|
4535 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
4536 |
|
4537 |
+
#: src/admin.php:3043
|
4538 |
msgid "(%s%%, file %s of %s)"
|
4539 |
msgstr "(%s%%, ملف %s من%s)"
|
4540 |
|
4563 |
msgid "SCP/SFTP host setting"
|
4564 |
msgstr "اعداد استضافة SCP/SFTP"
|
4565 |
|
4566 |
+
#: src/methods/email.php:67
|
4567 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4568 |
msgstr "محاولة ارسال النسخ الأحتياطى عن طريق البريد الألكترونى فشلت (من المحتمل ان يكون ملف النسخ الاحتياطى اكبر من المساحة المسموح بها فى البريد)"
|
4569 |
|
4571 |
msgid "Backup is of: %s."
|
4572 |
msgstr "النسخ الأحتياطى من: %s"
|
4573 |
|
4574 |
+
#: src/admin.php:756
|
4575 |
msgid "%s settings test result:"
|
4576 |
msgstr "اعدادات نتيجة اختبار %s"
|
4577 |
|
4578 |
+
#: src/admin.php:3945, src/admin.php:3947
|
4579 |
msgid "(Not finished)"
|
4580 |
msgstr "(غير منتهي)"
|
4581 |
|
4582 |
+
#: src/admin.php:3947
|
4583 |
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."
|
4584 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
4585 |
|
4591 |
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)."
|
4592 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
4593 |
|
4594 |
+
#: src/admin.php:3139
|
4595 |
msgid "Job ID: %s"
|
4596 |
msgstr "رقم الوظيفة: %s"
|
4597 |
|
4598 |
+
#: src/admin.php:3124
|
4599 |
msgid "last activity: %ss ago"
|
4600 |
msgstr "آخر نشاط: منذ %ss"
|
4601 |
|
4602 |
+
#: src/admin.php:3123
|
4603 |
msgid "next resumption: %d (after %ss)"
|
4604 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
4605 |
|
4606 |
+
#: src/admin.php:3106, src/central/bootstrap.php:442,
|
4607 |
+
#: src/central/bootstrap.php:449, src/methods/updraftvault.php:410,
|
4608 |
+
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
4609 |
msgid "Unknown"
|
4610 |
msgstr "غير معروف"
|
4611 |
|
4612 |
+
#: src/admin.php:3057
|
4613 |
msgid "Backup finished"
|
4614 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
4615 |
|
4616 |
+
#: src/admin.php:3052
|
4617 |
msgid "Waiting until scheduled time to retry because of errors"
|
4618 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
4619 |
|
4620 |
+
#: src/admin.php:3048
|
4621 |
msgid "Pruning old backup sets"
|
4622 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
4623 |
|
4624 |
+
#: src/admin.php:3036
|
4625 |
msgid "Uploading files to remote storage"
|
4626 |
msgstr "تحميل الملفات للمخزن البعيد"
|
4627 |
|
4628 |
+
#: src/admin.php:3104
|
4629 |
msgid "Encrypted database"
|
4630 |
msgstr "قاعدة بيانات مشفرة"
|
4631 |
|
4632 |
+
#: src/admin.php:3096
|
4633 |
msgid "Encrypting database"
|
4634 |
msgstr "تشفير قاعدة البيانات"
|
4635 |
|
4636 |
+
#: src/admin.php:3070
|
4637 |
msgid "Created database backup"
|
4638 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
4639 |
|
4640 |
+
#: src/admin.php:3083
|
4641 |
msgid "table: %s"
|
4642 |
msgstr "الجدول: %s"
|
4643 |
|
4644 |
+
#: src/admin.php:3081
|
4645 |
msgid "Creating database backup"
|
4646 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
4647 |
|
4648 |
+
#: src/admin.php:3031
|
4649 |
msgid "Created file backup zips"
|
4650 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
4651 |
|
4652 |
+
#: src/admin.php:3018
|
4653 |
msgid "Creating file backup zips"
|
4654 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
4655 |
|
4656 |
+
#: src/admin.php:3013
|
4657 |
msgid "Backup begun"
|
4658 |
msgstr "بدأ النسخ الاحتياطى"
|
4659 |
|
4660 |
+
#: src/admin.php:2846
|
4661 |
msgid "Backups in progress:"
|
4662 |
msgstr "تقدم النسخ الأحتياطى:"
|
4663 |
|
4664 |
+
#: src/admin.php:972
|
4665 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4666 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
4667 |
|
4677 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4678 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
4679 |
|
4680 |
+
#: src/class-updraftplus.php:2958
|
4681 |
msgid "The backup has not finished; a resumption is scheduled"
|
4682 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
4683 |
|
4684 |
+
#: src/class-updraftplus.php:2142
|
4685 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4686 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
4687 |
|
4690 |
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)."
|
4691 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
4692 |
|
4693 |
+
#: src/admin.php:2572
|
4694 |
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)."
|
4695 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
4696 |
|
4697 |
+
#: src/addons/autobackup.php:1085, src/admin.php:710
|
4698 |
msgid "Proceed with update"
|
4699 |
msgstr "المضي قدما مع التحديث"
|
4700 |
|
4743 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4744 |
msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
|
4745 |
|
4746 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4747 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4748 |
msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
|
4749 |
|
4750 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4751 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4752 |
msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
|
4753 |
|
4754 |
+
#: src/addons/morefiles.php:203
|
4755 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4756 |
msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
|
4757 |
|
4758 |
+
#: src/addons/morefiles.php:193
|
4759 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4760 |
msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
|
4761 |
|
4770 |
msgid "Support"
|
4771 |
msgstr "الدعم"
|
4772 |
|
4773 |
+
#: src/class-updraftplus.php:4506
|
4774 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4775 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
4776 |
|
4777 |
+
#: src/class-updraftplus.php:4498
|
4778 |
msgid "This database backup is missing core WordPress tables: %s"
|
4779 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
4780 |
|
4781 |
+
#: src/class-updraftplus.php:4259
|
4782 |
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."
|
4783 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
4784 |
|
4785 |
+
#: src/class-updraftplus.php:4258, src/class-updraftplus.php:4265
|
4786 |
msgid "%s version: %s"
|
4787 |
msgstr "%s النسخة: %s"
|
4788 |
|
4789 |
+
#: src/class-updraftplus.php:4137
|
4790 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4791 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
4792 |
|
4793 |
+
#: src/addons/autobackup.php:1053, src/admin.php:807,
|
4794 |
#: src/includes/updraftplus-notices.php:171
|
4795 |
msgid "Be safe with an automatic backup"
|
4796 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
4797 |
|
4798 |
+
#: src/admin.php:2525
|
4799 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4800 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
4801 |
|
4802 |
+
#: src/admin.php:704
|
4803 |
msgid "The file was uploaded."
|
4804 |
msgstr "تم رفع الملف."
|
4805 |
|
4806 |
+
#: src/admin.php:703
|
4807 |
msgid "Unknown server response status:"
|
4808 |
msgstr "استجابة الخادم غير معروفة:"
|
4809 |
|
4810 |
+
#: src/admin.php:702
|
4811 |
msgid "Unknown server response:"
|
4812 |
msgstr "استجابة الملقم غير معروف:"
|
4813 |
|
4814 |
+
#: src/admin.php:701
|
4815 |
msgid "This decryption key will be attempted:"
|
4816 |
msgstr "سيتم محاولة فتح مفتاح التشفير:"
|
4817 |
|
4818 |
+
#: src/admin.php:700
|
4819 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4820 |
msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
|
4821 |
|
4822 |
+
#: src/admin.php:699
|
4823 |
msgid "Upload error"
|
4824 |
msgstr "خطأ فى الرفع"
|
4825 |
|
4826 |
+
#: src/admin.php:698
|
4827 |
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)."
|
4828 |
msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
|
4829 |
|
4830 |
+
#: src/admin.php:697
|
4831 |
msgid "Upload error:"
|
4832 |
msgstr "خطأ التحميل:"
|
4833 |
|
4834 |
+
#: src/admin.php:696
|
4835 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4836 |
msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
|
4837 |
|
4838 |
+
#: src/admin.php:687
|
4839 |
msgid "Download to your computer"
|
4840 |
msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
|
4841 |
|
4842 |
+
#: src/admin.php:686
|
4843 |
msgid "Delete from your web server"
|
4844 |
msgstr "حذف من خادم الويب الخاص بك"
|
4845 |
|
4846 |
+
#: src/admin.php:3917
|
4847 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4848 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
4849 |
|
4850 |
+
#: src/admin.php:3914
|
4851 |
msgid "(%d archive(s) in set)."
|
4852 |
msgstr "(%d الأرشيف(s) in set)."
|
4853 |
|
4855 |
msgid "Split archives every:"
|
4856 |
msgstr "تقسيم كل ارشيف:"
|
4857 |
|
4858 |
+
#: src/addons/moredatabase.php:278
|
4859 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4860 |
msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
|
4861 |
|
4862 |
+
#: src/admin.php:677
|
4863 |
msgid "Warnings:"
|
4864 |
msgstr "تحذيرات:"
|
4865 |
|
4866 |
+
#: src/admin.php:676
|
4867 |
msgid "Error: the server sent an empty response."
|
4868 |
msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
|
4869 |
|
4870 |
+
#: src/admin.php:2260
|
4871 |
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?"
|
4872 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
4873 |
|
4874 |
+
#: src/includes/class-wpadmin-commands.php:227
|
4875 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4876 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
4877 |
|
4878 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4879 |
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."
|
4880 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
4881 |
|
4882 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4883 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4884 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
4885 |
|
4903 |
msgid "No such backup set exists"
|
4904 |
msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
|
4905 |
|
4906 |
+
#: src/admin.php:1389
|
4907 |
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"
|
4908 |
msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
|
4909 |
|
4911 |
msgid "Moving unpacked backup into place..."
|
4912 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
4913 |
|
4914 |
+
#: src/backup.php:3060, src/backup.php:3315
|
4915 |
msgid "Failed to open the zip file (%s) - %s"
|
4916 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
4917 |
|
4918 |
+
#: src/addons/morefiles.php:181
|
4919 |
msgid "WordPress root directory server path: %s"
|
4920 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
4921 |
|
4923 |
msgid "%s end-point"
|
4924 |
msgstr "نقطة النهاية %s "
|
4925 |
|
4926 |
+
#: src/methods/s3.php:850
|
4927 |
msgid "... and many more!"
|
4928 |
msgstr "... وغيرها الكثير!"
|
4929 |
|
4932 |
msgid "S3 (Compatible)"
|
4933 |
msgstr "S3 (متوافق)"
|
4934 |
|
4935 |
+
#: src/admin.php:1299
|
4936 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4937 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
4938 |
|
4939 |
+
#: src/admin.php:4238
|
4940 |
msgid "Looking for %s archive: file name: %s"
|
4941 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
4942 |
|
4943 |
+
#: src/admin.php:4199
|
4944 |
msgid "Final checks"
|
4945 |
msgstr "الفحوصات النهائية"
|
4946 |
|
4952 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4953 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
4954 |
|
4955 |
+
#: src/admin.php:3551
|
4956 |
msgid "Your wp-content directory server path: %s"
|
4957 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
4958 |
|
4959 |
+
#: src/admin.php:693
|
4960 |
msgid "Raw backup history"
|
4961 |
msgstr "تاريخ النسخ الاحتياطي الخام"
|
4962 |
|
4964 |
msgid "Show raw backup and file list"
|
4965 |
msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
|
4966 |
|
4967 |
+
#: src/admin.php:675
|
4968 |
msgid "Processing files - please wait..."
|
4969 |
msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
4970 |
|
4971 |
+
#: src/admin.php:4389,
|
4972 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4973 |
msgid "Please consult this FAQ for help on what to do about it."
|
4974 |
msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
|
4977 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4978 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
4979 |
|
4980 |
+
#: src/class-updraftplus.php:4145
|
4981 |
msgid "Failed to open database file."
|
4982 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
4983 |
|
4984 |
+
#: src/admin.php:4957
|
4985 |
msgid "Known backups (raw)"
|
4986 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
4987 |
|
4993 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4994 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
4995 |
|
4996 |
+
#: src/admin.php:4258
|
4997 |
msgid "file is size:"
|
4998 |
msgstr "حجم الملف:"
|
4999 |
|
5000 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:476,
|
5001 |
+
#: src/addons/migrator.php:479, src/addons/migrator.php:482, src/admin.php:972,
|
5002 |
+
#: src/admin.php:2530, src/backup.php:3366, src/class-updraftplus.php:4379,
|
5003 |
+
#: src/class-updraftplus.php:4379, src/updraftplus.php:156
|
5004 |
msgid "Go here for more information."
|
5005 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
5006 |
|
5007 |
+
#: src/admin.php:674
|
5008 |
msgid "Some files are still downloading or being processed - please wait."
|
5009 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
5010 |
|
5011 |
+
#: src/class-updraftplus.php:4228, src/class-updraftplus.php:4249
|
5012 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5013 |
msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
|
5014 |
|
5015 |
+
#: src/addons/fixtime.php:570
|
5016 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5017 |
msgstr "المنطقة الزمنية المستخدمة هى من اعدادات الورد بريس الخاصة بك, في إعدادات -> عام."
|
5018 |
|
5019 |
+
#: src/addons/fixtime.php:570
|
5020 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5021 |
msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
|
5022 |
|
5054 |
|
5055 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
5056 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
5057 |
+
#: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
|
5058 |
+
#: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
|
5059 |
+
#: src/methods/stream-base.php:335
|
5060 |
msgid "%s Error"
|
5061 |
msgstr "خطأ %s"
|
5062 |
|
5064 |
msgid "%s error - failed to upload file"
|
5065 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
5066 |
|
5067 |
+
#: src/class-updraftplus.php:1269, src/methods/cloudfiles.php:211
|
5068 |
msgid "%s error - failed to re-assemble chunks"
|
5069 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
5070 |
|
5078 |
msgid "%s authentication failed"
|
5079 |
msgstr "المصادقة فشلت %s"
|
5080 |
|
5081 |
+
#: src/addons/googlecloud.php:438, src/addons/migrator.php:574,
|
5082 |
+
#: src/admin.php:2231, src/admin.php:2252, src/admin.php:2260,
|
5083 |
+
#: src/class-updraftplus.php:1014, src/class-updraftplus.php:1020,
|
5084 |
+
#: src/class-updraftplus.php:4118, src/class-updraftplus.php:4120,
|
5085 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4289,
|
5086 |
+
#: src/class-updraftplus.php:4358, src/methods/googledrive.php:395,
|
5087 |
+
#: src/methods/s3.php:341
|
5088 |
msgid "Error: %s"
|
5089 |
msgstr "خطأ: %s"
|
5090 |
|
5091 |
+
#: src/admin.php:3476
|
5092 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5093 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
5094 |
|
5095 |
+
#: src/admin.php:3474
|
5096 |
msgid "Backup directory specified does <b>not</b> exist."
|
5097 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
5098 |
|
5099 |
+
#: src/admin.php:3151, src/admin.php:3425
|
5100 |
msgid "Warning: %s"
|
5101 |
msgstr "تحذير: %s"
|
5102 |
|
5104 |
msgid "Last backup job run:"
|
5105 |
msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
|
5106 |
|
5107 |
+
#: src/backup.php:3086
|
5108 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5109 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
5110 |
|
5124 |
msgid "Warnings encountered:"
|
5125 |
msgstr "مصادفة تحذيرات:"
|
5126 |
|
5127 |
+
#: src/class-updraftplus.php:2946
|
5128 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5129 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
5130 |
|
5131 |
+
#: src/class-updraftplus.php:891
|
5132 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5133 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
5134 |
|
5135 |
+
#: src/addons/migrator.php:582
|
5136 |
msgid "New site:"
|
5137 |
msgstr "الموقع الجديد:"
|
5138 |
|
5139 |
+
#: src/addons/migrator.php:557
|
5140 |
msgid "Migrated site (from UpdraftPlus)"
|
5141 |
msgstr "المواقع المدمجة (من UpdraftPlus)"
|
5142 |
|
5143 |
+
#: src/addons/migrator.php:497
|
5144 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5145 |
msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
|
5146 |
|
5147 |
+
#: src/addons/migrator.php:496
|
5148 |
msgid "Information needed to continue:"
|
5149 |
msgstr "المعلومات اللازمة للأستمرار:"
|
5150 |
|
5151 |
+
#: src/addons/migrator.php:440
|
5152 |
msgid "Network activating theme:"
|
5153 |
msgstr "تفعيل ثيم الشبكة:"
|
5154 |
|
5155 |
+
#: src/addons/migrator.php:430
|
5156 |
msgid "Processed plugin:"
|
5157 |
msgstr "المكون الأضافى:"
|
5158 |
|
5164 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5165 |
msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
|
5166 |
|
5167 |
+
#: src/methods/s3.php:859
|
5168 |
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."
|
5169 |
msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
|
5170 |
|
5171 |
+
#: src/methods/s3.php:1164
|
5172 |
msgid "Please check your access credentials."
|
5173 |
msgstr "يرجى التحقق من وصول بيانات الأعتماد."
|
5174 |
|
5175 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1142
|
5176 |
msgid "The error reported by %s was:"
|
5177 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
5178 |
|
5180 |
msgid "Please supply the requested information, and then continue."
|
5181 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
5182 |
|
5183 |
+
#: src/class-updraftplus.php:4300, src/restorer.php:1825
|
5184 |
msgid "Site information:"
|
5185 |
msgstr "معلومات عن الموقع:"
|
5186 |
|
5188 |
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."
|
5189 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
5190 |
|
5191 |
+
#: src/admin.php:2525, src/class-updraftplus.php:4293, src/restorer.php:2196
|
5192 |
msgid "Warning:"
|
5193 |
msgstr "تحذير:"
|
5194 |
|
5195 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4285,
|
5196 |
#: src/restorer.php:184
|
5197 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5198 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
5199 |
|
5200 |
+
#: src/admin.php:4226
|
5201 |
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."
|
5202 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
5203 |
|
5204 |
+
#: src/admin.php:3623, src/methods/updraftvault.php:306
|
5205 |
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."
|
5206 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
5207 |
|
5208 |
+
#: src/admin.php:711
|
5209 |
msgid "Close"
|
5210 |
msgstr "اغلق"
|
5211 |
|
5212 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5213 |
+
#: src/admin.php:667, src/methods/remotesend.php:66,
|
5214 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5215 |
#: src/methods/remotesend.php:242
|
5216 |
msgid "Unexpected response:"
|
5217 |
msgstr "استجابة غير متوقعة:"
|
5218 |
|
5219 |
+
#: src/addons/reporting.php:517, src/admin.php:662
|
5220 |
msgid "To send to more than one address, separate each address with a comma."
|
5221 |
msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
|
5222 |
|
5223 |
+
#: src/admin.php:691
|
5224 |
msgid "PHP information"
|
5225 |
msgstr "معلومات PHP"
|
5226 |
|
5256 |
msgid "Also delete from remote storage"
|
5257 |
msgstr "حذف ايضاً من التخزين البعيد"
|
5258 |
|
5259 |
+
#: src/admin.php:2873
|
5260 |
msgid "Latest UpdraftPlus.com news:"
|
5261 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
5262 |
|
5273 |
msgid "News"
|
5274 |
msgstr "اخبار"
|
5275 |
|
5276 |
+
#: src/admin.php:1639, src/includes/class-wpadmin-commands.php:492
|
5277 |
msgid "Backup set not found"
|
5278 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
5279 |
|
5295 |
msgid "Blog link"
|
5296 |
msgstr "رابط المدونة"
|
5297 |
|
5298 |
+
#: src/admin.php:755
|
5299 |
msgid "Testing %s Settings..."
|
5300 |
msgstr "اختبار اعدادات %s ..."
|
5301 |
|
5303 |
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."
|
5304 |
msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
|
5305 |
|
5306 |
+
#: src/admin.php:988
|
5307 |
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."
|
5308 |
msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
|
5309 |
|
5310 |
+
#: src/admin.php:988
|
5311 |
msgid "Notice"
|
5312 |
msgstr "لاحظ"
|
5313 |
|
5319 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5320 |
msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
|
5321 |
|
5322 |
+
#: src/admin.php:673
|
5323 |
msgid "Begun looking for this entity"
|
5324 |
msgstr "بدأ البحث عن هذا الكيان"
|
5325 |
|
5326 |
+
#: src/methods/s3.php:482
|
5327 |
+
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials.1"
|
5328 |
+
msgstr ""
|
5329 |
+
|
5330 |
#: src/addons/dropbox-folders.php:32
|
5331 |
msgid "Store at"
|
5332 |
msgstr "المتجر فى"
|
5333 |
|
5334 |
+
#: src/addons/migrator.php:1542
|
5335 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5336 |
msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
|
5337 |
|
5338 |
+
#: src/addons/migrator.php:1416
|
5339 |
msgid "rows: %d"
|
5340 |
msgstr "الصفوف: %d"
|
5341 |
|
5342 |
+
#: src/addons/migrator.php:1290
|
5343 |
msgid "Time taken (seconds):"
|
5344 |
msgstr "الوقت المستغرق (ثانية):"
|
5345 |
|
5346 |
+
#: src/addons/migrator.php:1289, src/admin.php:678
|
5347 |
msgid "Errors:"
|
5348 |
msgstr "الأخطاء:"
|
5349 |
|
5350 |
+
#: src/addons/migrator.php:1288
|
5351 |
msgid "SQL update commands run:"
|
5352 |
msgstr "تشغيل اوامر تحديث SQL:"
|
5353 |
|
5354 |
+
#: src/addons/migrator.php:1287
|
5355 |
msgid "Changes made:"
|
5356 |
msgstr "التغييرات التي تم إجراؤها:"
|
5357 |
|
5358 |
+
#: src/addons/migrator.php:1286
|
5359 |
msgid "Rows examined:"
|
5360 |
msgstr "فحص الصفوف:"
|
5361 |
|
5362 |
+
#: src/addons/migrator.php:1285
|
5363 |
msgid "Tables examined:"
|
5364 |
msgstr "فحص الجداول:"
|
5365 |
|
5366 |
+
#: src/addons/migrator.php:1174
|
5367 |
msgid "Could not get list of tables"
|
5368 |
msgstr "لا يمكن الحصول على قائمة الجداول"
|
5369 |
|
5370 |
+
#: src/addons/migrator.php:1119
|
5371 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5372 |
msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
|
5373 |
|
5374 |
+
#: src/addons/migrator.php:1108
|
5375 |
msgid "Nothing to do: the site URL is already: %s"
|
5376 |
msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
|
5377 |
|
5378 |
+
#: src/addons/migrator.php:1072, src/addons/migrator.php:1076,
|
5379 |
+
#: src/addons/migrator.php:1080, src/addons/migrator.php:1085,
|
5380 |
+
#: src/addons/migrator.php:1089, src/addons/migrator.php:1094
|
5381 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5382 |
msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
|
5383 |
|
5384 |
+
#: src/addons/migrator.php:1032
|
5385 |
msgid "Database: search and replace site URL"
|
5386 |
msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
|
5387 |
|
5388 |
+
#: src/addons/migrator.php:892, src/addons/migrator.php:1271
|
5389 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5390 |
msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
|
5391 |
|
5392 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:1269
|
5393 |
msgid "Failed: the %s operation was not able to start."
|
5394 |
msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
|
5395 |
|
5396 |
+
#: src/addons/migrator.php:549
|
5397 |
msgid "Search and replace site location in the database (migrate)"
|
5398 |
msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
|
5399 |
|
5400 |
+
#: src/addons/migrator.php:549
|
5401 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5402 |
msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
|
5403 |
|
5404 |
+
#: src/addons/multisite.php:661
|
5405 |
msgid "Blog uploads"
|
5406 |
msgstr "مدونة الملفات المرفوعة"
|
5407 |
|
5408 |
+
#: src/addons/migrator.php:482, src/addons/multisite.php:654
|
5409 |
msgid "Must-use plugins"
|
5410 |
msgstr "لابد من استخدام الأضافات"
|
5411 |
|
5412 |
+
#: src/addons/multisite.php:184
|
5413 |
msgid "Multisite Install"
|
5414 |
msgstr "تثبيت الموقع المتعدد"
|
5415 |
|
5416 |
+
#: src/addons/fixtime.php:570
|
5417 |
msgid "starting from next time it is"
|
5418 |
msgstr "ابتداء من المرة القادمة انها"
|
5419 |
|
5443 |
|
5444 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5445 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5446 |
+
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
5447 |
#: src/udaddons/options.php:135
|
5448 |
msgid "Password"
|
5449 |
msgstr "كلمة السر"
|
5473 |
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."
|
5474 |
msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
|
5475 |
|
5476 |
+
#: src/addons/morefiles.php:661
|
5477 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5478 |
msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
|
5479 |
|
5480 |
+
#: src/addons/morefiles.php:295
|
5481 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: src/addons/morefiles.php:293
|
5485 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5486 |
msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
|
5487 |
|
5488 |
+
#: src/addons/morefiles.php:272
|
5489 |
msgid "More Files"
|
5490 |
msgstr "ملفات أخرى"
|
5491 |
|
5492 |
+
#: src/addons/morefiles.php:180
|
5493 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5494 |
msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
|
5495 |
|
5496 |
+
#: src/addons/morefiles.php:173
|
5497 |
msgid "The above files comprise everything in a WordPress installation."
|
5498 |
msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
|
5499 |
|
5500 |
+
#: src/addons/morefiles.php:154
|
5501 |
msgid "Over-write wp-config.php"
|
5502 |
msgstr "إعادة كتابة wp-config.php"
|
5503 |
|
5504 |
+
#: src/addons/morefiles.php:150, src/includes/class-wpadmin-commands.php:509
|
5505 |
msgid "WordPress Core"
|
5506 |
msgstr "لب الووردبريس"
|
5507 |
|
5508 |
+
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:365
|
5509 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5510 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
5511 |
|
5512 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5513 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3207,
|
5514 |
+
#: src/admin.php:3242, src/admin.php:3251, src/methods/addon-base-v2.php:299,
|
5515 |
+
#: src/methods/stream-base.php:351
|
5516 |
msgid "Failed"
|
5517 |
msgstr "فشل"
|
5518 |
|
5520 |
msgid "WebDAV URL"
|
5521 |
msgstr "رابط WEBDAV"
|
5522 |
|
5523 |
+
#: src/methods/stream-base.php:335
|
5524 |
msgid "Local write failed: Failed to download"
|
5525 |
msgstr "فشلت الكتابة المحلية: فشل تحميل"
|
5526 |
|
5527 |
+
#: src/methods/stream-base.php:304
|
5528 |
msgid "Error opening remote file: Failed to download"
|
5529 |
msgstr "خطأ في فتح الملف : فشل في التحميل"
|
5530 |
|
5531 |
+
#: src/methods/stream-base.php:125, src/methods/stream-base.php:129
|
5532 |
msgid "Chunk %s: A %s error occurred"
|
5533 |
msgstr "قطعة %s: حدث خطأ %s"
|
5534 |
|
5536 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5537 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5538 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5539 |
+
#: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
|
5540 |
+
#: src/methods/stream-base.php:27, src/methods/stream-base.php:163,
|
5541 |
+
#: src/methods/stream-base.php:169, src/methods/stream-base.php:203,
|
5542 |
+
#: src/methods/stream-base.php:278
|
5543 |
msgid "No %s settings were found"
|
5544 |
msgstr "تم العثور على أية إعدادات %s"
|
5545 |
|
5567 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5568 |
msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
|
5569 |
|
5570 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:818
|
5571 |
msgid "Your %s account name: %s"
|
5572 |
msgstr "اسم الحساب %s الخاص بك: %s"
|
5573 |
|
5574 |
+
#: src/methods/dropbox.php:808, src/methods/dropbox.php:830
|
5575 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5576 |
msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
|
5577 |
|
5578 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
5579 |
msgid "you have authenticated your %s account"
|
5580 |
msgstr "تم المصادقة على %s حسابك"
|
5581 |
|
5582 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5583 |
msgid "there's an add-on for that."
|
5584 |
msgstr "هناك اضافة لذلك."
|
5585 |
|
5586 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5587 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5588 |
msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
|
5589 |
|
5590 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5591 |
msgid "Backups are saved in"
|
5592 |
msgstr "يتم حفظ النسخ الأحتياطية فى"
|
5593 |
|
5594 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5595 |
msgid "Need to use sub-folders?"
|
5596 |
msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
|
5597 |
|
5604 |
msgid "You do not appear to be authenticated with Dropbox"
|
5605 |
msgstr "لا يبدو ان المصادقة مع Dropbox"
|
5606 |
|
5607 |
+
#: src/methods/s3.php:1159
|
5608 |
msgid "The communication with %s was not encrypted."
|
5609 |
msgstr "التواصل مع %s كان غير مشفر."
|
5610 |
|
5611 |
+
#: src/methods/s3.php:1157
|
5612 |
msgid "The communication with %s was encrypted."
|
5613 |
msgstr "التواصل مع %s كان مشفر."
|
5614 |
|
5615 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1154
|
5616 |
msgid "We accessed the bucket, and were able to create files within it."
|
5617 |
msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
|
5618 |
|
5619 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5620 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5621 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5622 |
msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
|
5623 |
|
5624 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5625 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5626 |
msgid "Failure"
|
5627 |
msgstr "فشل"
|
5628 |
|
5629 |
+
#: src/addons/backblaze.php:494, src/methods/s3.php:1140
|
5630 |
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)."
|
5631 |
msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
|
5632 |
|
5633 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5634 |
+
#: src/methods/s3.php:1134
|
5635 |
msgid "Region"
|
5636 |
msgstr "المنطقة"
|
5637 |
|
5638 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5639 |
+
#: src/methods/s3.php:1114
|
5640 |
msgid "Failure: No bucket details were given."
|
5641 |
msgstr "فشل: لم ترد تفاصيل الباكت."
|
5642 |
|
5643 |
+
#: src/methods/s3.php:1092
|
5644 |
msgid "API secret"
|
5645 |
msgstr "API السرية"
|
5646 |
|
5647 |
+
#: src/methods/s3.php:940
|
5648 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5649 |
msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
|
5650 |
|
5651 |
+
#: src/methods/s3.php:939
|
5652 |
msgid "%s location"
|
5653 |
msgstr "المكان %s"
|
5654 |
|
5655 |
+
#: src/methods/s3.php:935
|
5656 |
msgid "%s secret key"
|
5657 |
msgstr "المفتاح السرى %s"
|
5658 |
|
5659 |
+
#: src/methods/s3.php:931
|
5660 |
msgid "%s access key"
|
5661 |
msgstr "مفتاح الوصول %s"
|
5662 |
|
5663 |
+
#: src/methods/s3.php:871
|
5664 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5665 |
msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
|
5666 |
|
5667 |
+
#: src/methods/s3.php:869
|
5668 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5669 |
msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
|
5670 |
|
5671 |
+
#: src/methods/s3.php:598, src/methods/s3.php:671, src/methods/s3.php:776
|
|
|
5672 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5673 |
msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
|
5674 |
|
5675 |
+
#: src/methods/s3.php:759, src/methods/s3.php:769, src/methods/s3.php:805
|
5676 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5677 |
msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
|
5678 |
|
5679 |
+
#: src/methods/s3.php:460
|
5680 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5681 |
msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
|
5682 |
|
5683 |
+
#: src/methods/s3.php:456
|
5684 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5685 |
msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
|
5686 |
|
5687 |
+
#: src/methods/s3.php:440
|
5688 |
msgid "%s chunk %s: upload failed"
|
5689 |
msgstr "%s قطعة %s : فشل الرفع"
|
5690 |
|
5691 |
+
#: src/methods/s3.php:430
|
5692 |
msgid "%s error: file %s was shortened unexpectedly"
|
5693 |
msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
|
5694 |
|
5695 |
+
#: src/methods/s3.php:408
|
5696 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5697 |
msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
|
5698 |
|
5699 |
+
#: src/methods/email.php:92
|
5700 |
msgid "Note:"
|
5701 |
msgstr "ملاحظة:"
|
5702 |
|
5704 |
msgid "WordPress Backup"
|
5705 |
msgstr "نسخ ووردريس احتياطيا"
|
5706 |
|
5707 |
+
#: src/methods/cloudfiles.php:575, src/methods/openstack-base.php:530
|
5708 |
msgid "We accessed the container, and were able to create files within it."
|
5709 |
msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
|
5710 |
|
5711 |
+
#: src/methods/cloudfiles.php:571
|
5712 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5713 |
msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
|
5714 |
|
5715 |
+
#: src/methods/cloudfiles.php:544, src/methods/openstack-base.php:472
|
5716 |
msgid "Failure: No container details were given."
|
5717 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
5718 |
|
5719 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5720 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5721 |
+
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
5722 |
msgid "Username"
|
5723 |
msgstr "اسم المستخدم"
|
5724 |
|
5725 |
+
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:519,
|
5726 |
+
#: src/methods/s3.php:1088
|
5727 |
msgid "API key"
|
5728 |
msgstr "مفتاح API"
|
5729 |
|
5730 |
+
#: src/addons/migrator.php:323, src/addons/migrator.php:2062,
|
5731 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5732 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5733 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5734 |
+
#: src/admin.php:731, src/methods/addon-base-v2.php:291,
|
5735 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5736 |
+
#: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
|
5737 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5738 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5739 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5740 |
+
#: src/methods/s3.php:1088, src/methods/s3.php:1092
|
5741 |
msgid "Failure: No %s was given."
|
5742 |
msgstr "فضل: لم تعطى أية %s."
|
5743 |
|
5744 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5745 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
5746 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5747 |
msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
|
5748 |
|
5749 |
+
#: src/methods/cloudfiles.php:483
|
5750 |
msgid "Cloud Files username"
|
5751 |
msgstr "سحابة ملفات المستخدم"
|
5752 |
|
5773 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5774 |
msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
|
5775 |
|
5776 |
+
#: src/admin.php:754, src/methods/backup-module.php:315
|
5777 |
msgid "Test %s Settings"
|
5778 |
msgstr "اختبار %s الإعدادات"
|
5779 |
|
5780 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
5781 |
+
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
5782 |
msgid "Error opening local file: Failed to download"
|
5783 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
5784 |
|
5789 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5790 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5791 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5792 |
+
#: src/methods/s3.php:376, src/methods/s3.php:388, src/methods/s3.php:389
|
5793 |
msgid "%s Error: Failed to upload"
|
5794 |
msgstr "%s خطأ: فشل في تحميل"
|
5795 |
|
5796 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5797 |
+
#: src/class-updraftplus.php:1154, src/methods/cloudfiles.php:130,
|
5798 |
+
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
5799 |
msgid "%s Error: Failed to open local file"
|
5800 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
5801 |
|
5806 |
|
5807 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5808 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5809 |
+
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:554,
|
5810 |
+
#: src/methods/cloudfiles.php:557, src/methods/cloudfiles.php:560
|
5811 |
msgid "Cloud Files authentication failed"
|
5812 |
msgstr "فشل المصادقة بملفات سحابة"
|
5813 |
|
5814 |
+
#: src/methods/googledrive.php:1262
|
5815 |
msgid "Authenticate with Google"
|
5816 |
msgstr "المصادقة مع جوجل"
|
5817 |
|
5818 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5819 |
+
#: src/methods/googledrive.php:1226
|
5820 |
msgid "Client Secret"
|
5821 |
msgstr "سر العميل"
|
5822 |
|
5823 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1223
|
5824 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5825 |
msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
|
5826 |
|
5827 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5828 |
+
#: src/methods/googledrive.php:1222
|
5829 |
msgid "Client ID"
|
5830 |
msgstr "معرف العميل"
|
5831 |
|
5832 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5833 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5834 |
msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
|
5835 |
|
5836 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5837 |
msgid "Select 'Web Application' as the application type."
|
5838 |
msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
|
5839 |
|
5840 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1197
|
5841 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5842 |
msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
|
5843 |
|
5844 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5845 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
|
5846 |
+
#: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
|
5847 |
+
#: src/methods/googledrive.php:584
|
5848 |
msgid "Account is not authorized."
|
5849 |
msgstr "حساب غير مخول."
|
5850 |
|
5851 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
|
5852 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
5853 |
+
#: src/methods/stream-base.php:219
|
5854 |
msgid "Failed to upload to %s"
|
5855 |
msgstr "فشل في تحميل إلى %s"
|
5856 |
|
5857 |
+
#: src/methods/googledrive.php:523
|
5858 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5859 |
msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
|
5860 |
|
5861 |
+
#: src/methods/googledrive.php:616, src/methods/googledrive.php:652
|
5862 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5863 |
msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
|
5864 |
|
5865 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5866 |
+
#: src/methods/googledrive.php:467
|
5867 |
msgid "you have authenticated your %s account."
|
5868 |
msgstr "لديك حساب %s مصادق عليه."
|
5869 |
|
5870 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5871 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5872 |
+
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:575,
|
5873 |
+
#: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
|
5874 |
+
#: src/methods/s3.php:1154, src/methods/stream-base.php:362
|
5875 |
msgid "Success"
|
5876 |
msgstr "نجاح"
|
5877 |
|
5878 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:841,
|
5879 |
+
#: src/methods/dropbox.php:850, src/methods/googledrive.php:431
|
5880 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5881 |
msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
|
5882 |
|
5883 |
+
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
|
5884 |
msgid "Authorization failed"
|
5885 |
msgstr "فشل التخويل"
|
5886 |
|
5887 |
+
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
|
5888 |
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."
|
5889 |
msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
|
5890 |
|
5907 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5908 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
5909 |
|
5910 |
+
#: src/addons/migrator.php:1954, src/admin.php:1327, src/admin.php:3210,
|
5911 |
+
#: src/admin.php:3244, src/admin.php:3248, src/admin.php:4256,
|
5912 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5913 |
msgid "OK"
|
5914 |
msgstr "حسنا"
|
5917 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5918 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
5919 |
|
5920 |
+
#: src/addons/migrator.php:1304, src/restorer.php:2333
|
5921 |
msgid "the database query being run was:"
|
5922 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
5923 |
|
5925 |
msgid "will restore as:"
|
5926 |
msgstr "إستعادة على النحو التالي:"
|
5927 |
|
5928 |
+
#: src/class-updraftplus.php:4271, src/restorer.php:1807,
|
5929 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5930 |
msgid "Old table prefix:"
|
5931 |
msgstr "بادئة الجدول القديمة:"
|
5932 |
|
5933 |
+
#: src/addons/reporting.php:71, src/addons/reporting.php:180,
|
5934 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4201
|
5935 |
msgid "Backup of:"
|
5936 |
msgstr "نسخة احتياطية لـ:"
|
5937 |
|
6003 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
6004 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
6005 |
|
6006 |
+
#: src/admin.php:4264, src/admin.php:4265
|
6007 |
msgid "Could not find one of the files for restoration"
|
6008 |
msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
|
6009 |
|
6010 |
+
#: src/admin.php:4379
|
6011 |
msgid "Error message"
|
6012 |
msgstr "رسالة الخطأ"
|
6013 |
|
6014 |
+
#: src/admin.php:4261
|
6015 |
msgid "The backup records do not contain information about the proper size of this file."
|
6016 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
6017 |
|
6018 |
+
#: src/admin.php:4253
|
6019 |
msgid "Archive is expected to be size:"
|
6020 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
6021 |
|
6022 |
+
#: src/admin.php:4133
|
6023 |
msgid "If making a request for support, please include this information:"
|
6024 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
6025 |
|
6026 |
+
#: src/admin.php:4132
|
6027 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6028 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
6029 |
|
6030 |
+
#: src/admin.php:4087
|
6031 |
msgid "UpdraftPlus Restoration: Progress"
|
6032 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
6033 |
|
6034 |
+
#: src/admin.php:4040
|
6035 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6036 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
6037 |
|
6038 |
+
#: src/admin.php:3975
|
6039 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6040 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
6041 |
|
6042 |
+
#: src/admin.php:3993
|
6043 |
msgid "Delete this backup set"
|
6044 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
6045 |
|
6046 |
+
#: src/admin.php:3635
|
6047 |
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."
|
6048 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
6049 |
|
6050 |
+
#: src/admin.php:3632
|
6051 |
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."
|
6052 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
6053 |
|
6054 |
+
#: src/admin.php:3630
|
6055 |
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)."
|
6056 |
msgstr ""
|
6057 |
|
6058 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6059 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
6060 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
6061 |
msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
|
6062 |
|
6092 |
msgid "Use the server's SSL certificates"
|
6093 |
msgstr "استخدام شهادات SSL للملقم"
|
6094 |
|
6095 |
+
#: src/admin.php:3478
|
6096 |
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."
|
6097 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
6098 |
|
6099 |
+
#: src/admin.php:3478
|
6100 |
msgid "click here"
|
6101 |
msgstr "انقر هنا"
|
6102 |
|
6103 |
+
#: src/admin.php:3478
|
6104 |
msgid "or, to reset this option"
|
6105 |
msgstr "أو، لإعادة هذا الخيار"
|
6106 |
|
6107 |
+
#: src/admin.php:3478
|
6108 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: src/admin.php:3470
|
6112 |
msgid "Backup directory specified is writable, which is good."
|
6113 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
6114 |
|
6140 |
msgid "Advanced / Debugging Settings"
|
6141 |
msgstr "متقدمة / تصحيح الإعدادات "
|
6142 |
|
6143 |
+
#: src/admin.php:690
|
6144 |
msgid "Requesting start of backup..."
|
6145 |
msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
|
6146 |
|
6147 |
+
#: src/addons/morefiles.php:320, src/admin.php:706
|
6148 |
msgid "Cancel"
|
6149 |
msgstr "إلغاء"
|
6150 |
|
6151 |
+
#: src/addons/reporting.php:244, src/admin.php:3782
|
6152 |
msgid "None"
|
6153 |
msgstr "لا شيء"
|
6154 |
|
6173 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6174 |
msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
|
6175 |
|
6176 |
+
#: src/addons/morefiles.php:466, src/admin.php:3560
|
6177 |
msgid "Exclude these:"
|
6178 |
msgstr "استبعاد هذه:"
|
6179 |
|
6180 |
+
#: src/admin.php:3551
|
6181 |
msgid "Any other directories found inside wp-content"
|
6182 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
6183 |
|
6193 |
msgid "To fix the time at which a backup should take place,"
|
6194 |
msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
|
6195 |
|
6196 |
+
#: src/admin.php:3464
|
6197 |
msgid "Monthly"
|
6198 |
msgstr "شهريا"
|
6199 |
|
6200 |
+
#: src/admin.php:3463
|
6201 |
msgid "Fortnightly"
|
6202 |
msgstr "نصف شهري"
|
6203 |
|
6204 |
+
#: src/admin.php:3462
|
6205 |
msgid "Weekly"
|
6206 |
msgstr "أسبوعيا"
|
6207 |
|
6208 |
+
#: src/admin.php:3461
|
6209 |
msgid "Daily"
|
6210 |
msgstr "يوميا"
|
6211 |
|
6212 |
+
#: src/admin.php:713, src/admin.php:3439
|
6213 |
msgid "Download log file"
|
6214 |
msgstr "تحميل ملف السجل"
|
6215 |
|
6216 |
+
#: src/admin.php:3311
|
6217 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6218 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
6219 |
|
6220 |
+
#: src/admin.php:3306
|
6221 |
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"
|
6222 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
6223 |
|
6224 |
+
#: src/admin.php:3292
|
6225 |
msgid "The request to the filesystem to create the directory failed."
|
6226 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
6227 |
|
6228 |
+
#: src/addons/migrator.php:2495, src/admin.php:707, src/admin.php:3204,
|
6229 |
+
#: src/admin.php:3237, src/admin.php:3993,
|
6230 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6231 |
msgid "Delete"
|
6232 |
msgstr "حذف"
|
6233 |
|
6234 |
+
#: src/admin.php:3142
|
6235 |
msgid "show log"
|
6236 |
msgstr "عرض السجل"
|
6237 |
|
6264 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6265 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6266 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6267 |
+
#: src/templates/wp-admin/settings/tab-addons.php:272,
|
6268 |
+
#: src/templates/wp-admin/settings/tab-addons.php:306,
|
6269 |
+
#: src/templates/wp-admin/settings/tab-addons.php:325,
|
6270 |
+
#: src/templates/wp-admin/settings/tab-addons.php:328
|
6271 |
msgid "No"
|
6272 |
msgstr "لا"
|
6273 |
|
6300 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6301 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6302 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6303 |
+
#: src/templates/wp-admin/settings/tab-addons.php:275,
|
6304 |
+
#: src/templates/wp-admin/settings/tab-addons.php:278,
|
6305 |
+
#: src/templates/wp-admin/settings/tab-addons.php:309,
|
6306 |
+
#: src/templates/wp-admin/settings/tab-addons.php:312,
|
6307 |
+
#: src/templates/wp-admin/settings/tab-addons.php:331
|
6308 |
msgid "Yes"
|
6309 |
msgstr "نعم"
|
6310 |
|
6343 |
msgid "Perform a one-time backup"
|
6344 |
msgstr "إجراء نسخة احتياطية لمرة واحدة"
|
6345 |
|
6346 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:91
|
6347 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6348 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
6349 |
|
6350 |
+
#: src/class-updraftplus.php:4231
|
6351 |
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"
|
6352 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
6353 |
|
6354 |
+
#: src/addons/morefiles.php:150,
|
6355 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6356 |
msgid "%s restoration options:"
|
6357 |
msgstr "%s خيارات الإستعادة:"
|
6358 |
|
6388 |
msgid "Delete backup set"
|
6389 |
msgstr "حذف مجموعة النسخ الاحتياطية"
|
6390 |
|
6391 |
+
#: src/admin.php:689
|
6392 |
msgid "Download error: the server sent us a response which we did not understand."
|
6393 |
msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
|
6394 |
|
6395 |
+
#: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:110,
|
6396 |
+
#: src/addons/migrator.php:877, src/addons/migrator.php:1174,
|
6397 |
+
#: src/addons/migrator.php:1255, src/addons/migrator.php:1304,
|
6398 |
+
#: src/addons/migrator.php:1542, src/addons/migrator.php:1893,
|
6399 |
+
#: src/addons/migrator.php:1920, src/addons/migrator.php:1926,
|
6400 |
+
#: src/addons/migrator.php:1988, src/addons/migrator.php:2031,
|
6401 |
+
#: src/addons/migrator.php:2070, src/addons/migrator.php:2080,
|
6402 |
+
#: src/addons/migrator.php:2085, src/addons/s3-enhanced.php:160,
|
6403 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6404 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6405 |
+
#: src/admin.php:681, src/admin.php:4258, src/admin.php:4288,
|
6406 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6407 |
+
#: src/methods/updraftvault.php:527, src/restorer.php:1523
|
6408 |
msgid "Error:"
|
6409 |
msgstr "خطأ:"
|
6410 |
|
6411 |
+
#: src/admin.php:672,
|
6412 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6413 |
msgid "calculating..."
|
6414 |
msgstr "حساب ..."
|
6429 |
msgid "This is a count of the contents of your Updraft directory"
|
6430 |
msgstr "هذا عدد من محتويات مجلدات Updraft "
|
6431 |
|
6432 |
+
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
|
6433 |
+
#: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
|
6434 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
|
6435 |
+
#: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
|
6436 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
6437 |
+
#: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
|
6438 |
+
#: src/methods/googledrive.php:1192, src/methods/googledrive.php:1222,
|
6439 |
+
#: src/methods/googledrive.php:1226, src/methods/googledrive.php:1237,
|
6440 |
+
#: src/methods/googledrive.php:1248
|
6441 |
msgid "Google Drive"
|
6442 |
msgstr "جوجل درايف"
|
6443 |
|
6453 |
msgid "More tasks:"
|
6454 |
msgstr "المزيد من المهام:"
|
6455 |
|
6456 |
+
#: src/admin.php:2900
|
6457 |
msgid "Download most recently modified log file"
|
6458 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
6459 |
|
6460 |
+
#: src/central/bootstrap.php:185
|
6461 |
msgid "(Nothing yet logged)"
|
6462 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
6463 |
|
6464 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6465 |
+
#: src/admin.php:2855, src/admin.php:2860
|
6466 |
msgid "Last log message"
|
6467 |
msgstr "رسالة السجل الأخيرة"
|
6468 |
|
6469 |
+
#: src/addons/migrator.php:257, src/admin.php:712, src/admin.php:3975,
|
6470 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6471 |
msgid "Restore"
|
6472 |
msgstr "الإستعادة"
|
6473 |
|
6474 |
+
#: src/admin.php:532, src/admin.php:705,
|
6475 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6476 |
msgid "Backup Now"
|
6477 |
msgstr "النسخ الاحتياطي الآن"
|
6478 |
|
6479 |
+
#: src/addons/migrator.php:1958, src/addons/moredatabase.php:247,
|
6480 |
+
#: src/addons/reporting.php:259, src/addons/wp-cli.php:382, src/admin.php:315,
|
6481 |
+
#: src/admin.php:3757, src/admin.php:3837, src/admin.php:4342,
|
6482 |
#: src/includes/class-wpadmin-commands.php:147,
|
6483 |
+
#: src/includes/class-wpadmin-commands.php:507,
|
6484 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
6485 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6486 |
msgid "Database"
|
6487 |
msgstr "قاعدة بيانات"
|
6488 |
|
6489 |
+
#: src/admin.php:311, src/admin.php:4964
|
6490 |
msgid "Files"
|
6491 |
msgstr "ملفات"
|
6492 |
|
6514 |
msgid "JavaScript warning"
|
6515 |
msgstr "تحذير جافا سكريبت"
|
6516 |
|
6517 |
+
#: src/admin.php:692, src/admin.php:2927
|
6518 |
msgid "Delete Old Directories"
|
6519 |
msgstr "حذف الدلائل القديمة"
|
6520 |
|
6521 |
+
#: src/admin.php:2572
|
6522 |
msgid "Current limit is:"
|
6523 |
msgstr "الحد الحالي هو:"
|
6524 |
|
6525 |
+
#: src/admin.php:2547
|
6526 |
msgid "Your backup has been restored."
|
6527 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
6528 |
|
6534 |
msgid "Lead developer's homepage"
|
6535 |
msgstr "الولوج لموقع المطور"
|
6536 |
|
6537 |
+
#: src/central/bootstrap.php:504
|
6538 |
msgid "UpdraftPlus.Com"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: src/admin.php:4856
|
6542 |
msgid "Your settings have been wiped."
|
6543 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
6544 |
|
6545 |
+
#: src/admin.php:2507
|
6546 |
msgid "Backup directory successfully created."
|
6547 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
6548 |
|
6549 |
+
#: src/admin.php:2500
|
6550 |
msgid "Backup directory could not be created"
|
6551 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
6552 |
|
6553 |
+
#: src/admin.php:3174
|
6554 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6555 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
6556 |
|
6557 |
+
#: src/admin.php:3172
|
6558 |
msgid "Old directories successfully removed."
|
6559 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
6560 |
|
6561 |
+
#: src/admin.php:3169, src/admin.php:3169
|
6562 |
msgid "Remove old directories"
|
6563 |
msgstr "إزالة الدلائل القديمة"
|
6564 |
|
6565 |
+
#: src/addons/migrator.php:326, src/addons/migrator.php:341,
|
6566 |
+
#: src/admin.php:2449, src/admin.php:2458, src/admin.php:2467,
|
6567 |
+
#: src/admin.php:2509, src/admin.php:3176
|
6568 |
msgid "Return to UpdraftPlus Configuration"
|
6569 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
6570 |
|
6571 |
+
#: src/admin.php:685, src/admin.php:2449, src/admin.php:2458,
|
6572 |
+
#: src/admin.php:2467, src/admin.php:2509, src/admin.php:3176,
|
6573 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6574 |
msgid "Actions"
|
6575 |
msgstr "الإجراءات"
|
6576 |
|
6577 |
+
#: src/admin.php:2352
|
6578 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6579 |
msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
|
6580 |
|
6581 |
+
#: src/admin.php:2252
|
6582 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6583 |
msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
|
6584 |
|
6585 |
+
#: src/admin.php:2148
|
6586 |
msgid "No local copy present."
|
6587 |
msgstr "لا نسخة محلية متوفرة."
|
6588 |
|
6589 |
+
#: src/admin.php:2145
|
6590 |
msgid "Download in progress"
|
6591 |
msgstr "التحميل في تقدم"
|
6592 |
|
6593 |
+
#: src/admin.php:684, src/admin.php:2134
|
6594 |
msgid "File ready."
|
6595 |
msgstr "ملف جاهز."
|
6596 |
|
6597 |
+
#: src/admin.php:2115
|
6598 |
msgid "Download failed"
|
6599 |
msgstr "فشل تحميل"
|
6600 |
|
6601 |
+
#: src/admin.php:682, src/admin.php:1336, src/admin.php:1882,
|
6602 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
6603 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6604 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6605 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2433,
|
6606 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6607 |
msgid "Error"
|
6608 |
msgstr "خطأ"
|
6609 |
|
6610 |
+
#: src/admin.php:1917
|
6611 |
msgid "Could not find that job - perhaps it has already finished?"
|
6612 |
msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
|
6613 |
|
6614 |
+
#: src/admin.php:1909
|
6615 |
msgid "Job deleted"
|
6616 |
msgstr "وظيفة حذفت"
|
6617 |
|
6618 |
+
#: src/admin.php:1995
|
6619 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6620 |
msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
|
6621 |
|
6622 |
+
#: src/admin.php:757
|
6623 |
msgid "Nothing yet logged"
|
6624 |
msgstr "لا شيء حتى الآن تم تسجيله"
|
6625 |
|
6626 |
+
#: src/admin.php:984
|
6627 |
msgid "Please consult this FAQ if you have problems backing up."
|
6628 |
msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
|
6629 |
|
6630 |
+
#: src/admin.php:984
|
6631 |
msgid "Your website is hosted using the %s web server."
|
6632 |
msgstr "موقعك يستخدم %s من خادم الويب."
|
6633 |
|
6634 |
+
#: src/admin.php:980
|
6635 |
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."
|
6636 |
msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
|
6637 |
|
6638 |
+
#: src/admin.php:976
|
6639 |
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."
|
6640 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
6641 |
|
6642 |
+
#: src/addons/migrator.php:932, src/admin.php:968, src/admin.php:972,
|
6643 |
+
#: src/admin.php:976, src/admin.php:980, src/admin.php:984, src/admin.php:993,
|
6644 |
+
#: src/admin.php:3623, src/admin.php:3630, src/admin.php:3632,
|
6645 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6646 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6647 |
+
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
6648 |
+
#: src/methods/updraftvault.php:306,
|
6649 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6650 |
#: src/udaddons/updraftplus-addons.php:253
|
6651 |
msgid "Warning"
|
6652 |
msgstr "تحذير"
|
6653 |
|
6654 |
+
#: src/admin.php:914
|
6655 |
msgid "Add-Ons / Pro Support"
|
6656 |
msgstr "إضافات / الدعم المدفوع"
|
6657 |
|
6658 |
+
#: src/admin.php:548, src/admin.php:912,
|
6659 |
#: src/templates/wp-admin/settings/tab-bar.php:7
|
6660 |
msgid "Settings"
|
6661 |
msgstr "إعدادات"
|
6676 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6677 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
6678 |
|
6679 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3991,
|
6680 |
+
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
6681 |
msgid "File not found"
|
6682 |
msgstr "لم يتم العثور على ملف"
|
6683 |
|
6684 |
+
#: src/class-updraftplus.php:3898
|
6685 |
msgid "The decryption key used:"
|
6686 |
msgstr "مفتاح فك التشفير المستخدم:"
|
6687 |
|
6688 |
+
#: src/class-updraftplus.php:3898, src/class-updraftplus.php:4130,
|
6689 |
#: src/restorer.php:422
|
6690 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6691 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
6692 |
|
6693 |
+
#: src/class-updraftplus.php:3879, src/class-updraftplus.php:4118,
|
6694 |
#: src/restorer.php:409
|
6695 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6696 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
6699 |
msgid "Could not open the backup file for writing"
|
6700 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
6701 |
|
6702 |
+
#: src/class-updraftplus.php:3484
|
6703 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6704 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
6705 |
|
6706 |
+
#: src/class-updraftplus.php:3445
|
6707 |
msgid "Could not read the directory"
|
6708 |
msgstr "لا يمكن قراءة الدليل"
|
6709 |
|
6710 |
+
#: src/admin.php:2194, src/backup.php:1323
|
6711 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
6712 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
6713 |
|
6715 |
msgid "WordPress backup is complete"
|
6716 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
6717 |
|
6718 |
+
#: src/class-updraftplus.php:2955
|
6719 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6720 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
6721 |
|
6722 |
+
#: src/class-updraftplus.php:2940
|
6723 |
msgid "The backup apparently succeeded and is now complete"
|
6724 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
6725 |
|
6726 |
+
#: src/addons/moredatabase.php:393
|
6727 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6728 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
6729 |
|
6730 |
+
#: src/class-updraftplus.php:2643
|
6731 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6732 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
6733 |
|
6734 |
+
#: src/class-updraftplus.php:1921
|
6735 |
msgid "Others"
|
6736 |
msgstr "أخرى"
|
6737 |
|
6738 |
+
#: src/addons/multisite.php:469, src/class-updraftplus.php:1906
|
6739 |
msgid "Uploads"
|
6740 |
msgstr "الملفات المرفوعة"
|
6741 |
|
6742 |
+
#: src/class-updraftplus.php:1905
|
6743 |
msgid "Themes"
|
6744 |
msgstr "تصاميم"
|
6745 |
|
6746 |
+
#: src/class-updraftplus.php:1904
|
6747 |
msgid "Plugins"
|
6748 |
msgstr "الإضافات"
|
6749 |
|
6750 |
+
#: src/class-updraftplus.php:626
|
6751 |
msgid "No log files were found."
|
6752 |
msgstr "لا توجد ملفات السجل."
|
6753 |
|
6754 |
+
#: src/admin.php:2064, src/admin.php:2068, src/class-updraftplus.php:621
|
6755 |
msgid "The log file could not be read."
|
6756 |
msgstr "لا يمكن قراءة ملف السجل."
|
6757 |
|
6758 |
+
#: src/admin.php:1013, src/admin.php:1046, src/class-updraftplus.php:586,
|
6759 |
+
#: src/class-updraftplus.php:621, src/class-updraftplus.php:626,
|
6760 |
+
#: src/class-updraftplus.php:631
|
6761 |
msgid "UpdraftPlus notice:"
|
6762 |
msgstr "إشعار UpdraftPlus :"
|
6763 |
|
6764 |
+
#: src/addons/multisite.php:74, src/addons/multisite.php:691,
|
6765 |
#: src/options.php:59
|
6766 |
msgid "UpdraftPlus Backups"
|
6767 |
msgstr "نسخ الإحتياطية UpdraftPlus"
|
@@ -11,6 +11,82 @@ msgstr ""
|
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
msgid "Simple and secure login with a wave of your phone."
|
16 |
msgstr ""
|
@@ -35,7 +111,7 @@ msgstr ""
|
|
35 |
msgid "Thank you for installing UpdraftPlus!"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: src/addons/migrator.php:
|
39 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
msgstr ""
|
41 |
|
@@ -63,11 +139,11 @@ msgstr ""
|
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: src/admin.php:
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: src/admin.php:
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
@@ -75,15 +151,15 @@ msgstr ""
|
|
75 |
msgid "(Nothing has been logged yet)"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: src/addons/migrator.php:
|
79 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: src/addons/migrator.php:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: src/addons/migrator.php:
|
87 |
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."
|
88 |
msgstr ""
|
89 |
|
@@ -95,11 +171,11 @@ msgstr ""
|
|
95 |
msgid "Delete these settings"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
99 |
msgid "Currently disabled"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: src/addons/morestorage.php:81, src/admin.php:
|
103 |
msgid "Currently enabled"
|
104 |
msgstr ""
|
105 |
|
@@ -115,11 +191,11 @@ msgstr ""
|
|
115 |
msgid "get it here"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: src/methods/stream-base.php:
|
119 |
msgid "Download chunk size successfully changed to %d"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: src/methods/stream-base.php:
|
123 |
msgid "Download chunk size failed to change to %d"
|
124 |
msgstr ""
|
125 |
|
@@ -135,7 +211,7 @@ msgstr ""
|
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/backblaze.php:
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
@@ -145,25 +221,25 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
|
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: src/class-updraftplus.php:
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: src/class-updraftplus.php:
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/class-updraftplus.php:
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
160 |
msgstr[1] ""
|
161 |
|
162 |
-
#: src/addons/migrator.php:
|
163 |
msgid "Database restoration options:"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: src/addons/migrator.php:
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
@@ -191,27 +267,27 @@ msgstr ""
|
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/central/bootstrap.php:
|
195 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/central/bootstrap.php:
|
199 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: src/central/bootstrap.php:
|
203 |
msgid "A website where you have installed %s"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: src/central/bootstrap.php:
|
207 |
msgid "Self-hosted dashboard"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: src/central/bootstrap.php:
|
211 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: src/addons/migrator.php:
|
215 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
216 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
217 |
msgstr[0] ""
|
@@ -221,149 +297,149 @@ msgstr[1] ""
|
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: src/class-updraftplus.php:
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: src/class-updraftplus.php:
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/class-updraftplus.php:
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
-
#: src/central/bootstrap.php:
|
239 |
msgid "Create another key"
|
240 |
msgstr "Създай друг ключ"
|
241 |
|
242 |
-
#: src/central/bootstrap.php:
|
243 |
msgid "UpdraftCentral dashboard connection details"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/central/bootstrap.php:
|
247 |
msgid "Next"
|
248 |
msgstr "Следващ"
|
249 |
|
250 |
-
#: src/central/bootstrap.php:
|
251 |
msgid "an account"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/central/bootstrap.php:
|
255 |
msgid "i.e. if you have %s there"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/central/bootstrap.php:
|
259 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/central/bootstrap.php:
|
263 |
msgid "Manage existing keys (%d)..."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/central/bootstrap.php:
|
267 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/central/bootstrap.php:
|
271 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/central/bootstrap.php:
|
275 |
msgid "Detailed instructions for this can be found at %s"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/central/bootstrap.php:
|
279 |
msgid "You now need to copy the key below and enter it at your %s."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/admin.php:
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr "Моля въведете валиден адрес - пример http://example.com"
|
285 |
|
286 |
-
#: src/addons/backblaze.php:
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/addons/backblaze.php:
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/addons/backblaze.php:
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/addons/backblaze.php:
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: src/addons/backblaze.php:
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: src/addons/backblaze.php:
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: src/addons/backblaze.php:
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/addons/backblaze.php:
|
315 |
msgid "Account Key"
|
316 |
msgstr "Ключ за Акаунта"
|
317 |
|
318 |
-
#: src/addons/backblaze.php:
|
319 |
msgid "Account ID"
|
320 |
msgstr "Акаунт ID"
|
321 |
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: src/class-updraftplus.php:
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: src/class-updraftplus.php:
|
331 |
msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: src/class-updraftplus.php:
|
335 |
msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: src/class-updraftplus.php:
|
339 |
msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: src/methods/googledrive.php:
|
343 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
344 |
msgstr ""
|
345 |
|
346 |
#: src/methods/backup-module.php:595
|
347 |
-
msgid "Follow this link to remove
|
348 |
msgstr ""
|
349 |
|
350 |
#: src/addons/sftp.php:348
|
351 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/admin.php:
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/admin.php:
|
359 |
-
#: src/class-updraftplus.php:
|
360 |
-
#: src/class-updraftplus.php:
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: src/admin.php:
|
365 |
-
#: src/class-updraftplus.php:
|
366 |
-
#: src/class-updraftplus.php:
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
@@ -419,11 +495,11 @@ msgstr ""
|
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: src/admin.php:
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: src/admin.php:
|
427 |
msgid "Did not know how to delete from this cloud service."
|
428 |
msgstr ""
|
429 |
|
@@ -439,68 +515,68 @@ msgstr ""
|
|
439 |
msgid "Stored at: %s"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: src/methods/cloudfiles.php:
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: src/admin.php:
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: src/admin.php:
|
451 |
msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
|
452 |
msgstr ""
|
453 |
|
454 |
#: src/methods/updraftvault.php:71,
|
455 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: src/includes/class-wpadmin-commands.php:
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/includes/class-wpadmin-commands.php:
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/admin.php:
|
468 |
msgid "Press here to download or browse"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: src/admin.php:
|
472 |
msgid "Error: invalid path"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: src/admin.php:
|
476 |
msgid "An error occurred when fetching storage module options: "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: src/admin.php:
|
480 |
msgid "Loading log file"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: src/admin.php:
|
484 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: src/admin.php:
|
488 |
msgid "Search"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: src/admin.php:
|
492 |
msgid "Select a file to view information about it"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: src/admin.php:
|
496 |
msgid "Browsing zip file"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: src/admin.php:
|
500 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: src/admin.php:
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
@@ -508,120 +584,120 @@ msgstr ""
|
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: src/class-updraftplus.php:
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: src/admin.php:
|
516 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: src/admin.php:
|
520 |
msgid "All WordPress tables will be backed up."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: src/admin.php:
|
524 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: src/admin.php:
|
528 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: src/admin.php:
|
532 |
msgid "The available memory on the server."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: src/admin.php:
|
536 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: src/admin.php:
|
540 |
msgid "The file failed to upload. Please check the following:"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: src/admin.php:
|
544 |
msgid "HTTP code:"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: src/admin.php:
|
548 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: src/addons/moredatabase.php:
|
552 |
msgid "tables"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: src/addons/moredatabase.php:
|
556 |
msgid "WordPress database"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: src/addons/moredatabase.php:
|
560 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
564 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
568 |
msgid "UpdraftCentral Cloud or Premium"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
572 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
573 |
msgid "Find out more"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
577 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
578 |
msgstr ""
|
579 |
|
580 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
581 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
582 |
msgid "UpdraftPlus Gold"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
586 |
msgid "UpdraftPlus Free"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
590 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
594 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
598 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
602 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
603 |
msgid "Importer"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
607 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
611 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
612 |
msgid "No ads"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
616 |
msgid "Sophisticated reporting and emailing capabilities."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
620 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
624 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
625 |
msgid "More database options"
|
626 |
msgstr ""
|
627 |
|
@@ -689,13 +765,13 @@ msgstr ""
|
|
689 |
|
690 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
691 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
692 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
693 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
694 |
msgid "Upgrade now"
|
695 |
msgstr ""
|
696 |
|
697 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
698 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
699 |
msgid "Installed"
|
700 |
msgstr ""
|
701 |
|
@@ -728,31 +804,31 @@ msgstr ""
|
|
728 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/addons/morefiles.php:
|
732 |
msgid "Please choose a file or directory"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: src/addons/morefiles.php:
|
736 |
msgid "Confirm"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: src/addons/morefiles.php:
|
740 |
msgid "Go up a directory"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: src/addons/morefiles.php:
|
744 |
msgid "Add directory..."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: src/addons/morefiles.php:
|
748 |
msgid "Edit"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: src/addons/morefiles.php:
|
752 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: src/addons/s3-enhanced.php:
|
756 |
msgid "Europe (Frankfurt)"
|
757 |
msgstr ""
|
758 |
|
@@ -765,7 +841,7 @@ msgid "Europe (Ireland)"
|
|
765 |
msgstr ""
|
766 |
|
767 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
768 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
771 |
|
@@ -817,7 +893,7 @@ msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
|
|
817 |
msgstr ""
|
818 |
|
819 |
#: src/includes/updraftplus-notices.php:251
|
820 |
-
msgid "Spring sale - 20% off UpdraftPlus Premium until April
|
821 |
msgstr ""
|
822 |
|
823 |
#: src/includes/updraftplus-notices.php:238
|
@@ -862,7 +938,7 @@ msgid "Do you use UpdraftPlus on multiple sites?"
|
|
862 |
msgstr ""
|
863 |
|
864 |
#: src/includes/updraftplus-notices.php:92,
|
865 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
866 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
867 |
msgstr ""
|
868 |
|
@@ -907,7 +983,7 @@ msgid "The ultimately secure and convenient place to store your backups."
|
|
907 |
msgstr ""
|
908 |
|
909 |
#: src/includes/updraftplus-notices.php:41,
|
910 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
911 |
msgid "UpdraftVault storage"
|
912 |
msgstr ""
|
913 |
|
@@ -937,8 +1013,8 @@ msgid "Site size"
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
940 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
941 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
942 |
msgid "Lock settings"
|
943 |
msgstr ""
|
944 |
|
@@ -984,19 +1060,19 @@ msgstr ""
|
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: src/methods/googledrive.php:
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: src/methods/dropbox.php:
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: src/methods/dropbox.php:
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: src/central/bootstrap.php:
|
1000 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1001 |
msgstr ""
|
1002 |
|
@@ -1008,11 +1084,11 @@ msgstr ""
|
|
1008 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: src/admin.php:
|
1012 |
msgid "Remote files deleted:"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: src/admin.php:
|
1016 |
msgid "Local files deleted:"
|
1017 |
msgstr ""
|
1018 |
|
@@ -1020,35 +1096,35 @@ msgstr ""
|
|
1020 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: src/admin.php:
|
1024 |
msgid "remote files deleted"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: src/admin.php:
|
1028 |
msgid "Complete"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: src/admin.php:
|
1032 |
msgid "Do you want to carry out the import?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: src/admin.php:
|
1036 |
msgid "Which was exported on:"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: src/admin.php:
|
1040 |
msgid "This will import data from:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: src/admin.php:
|
1044 |
msgid "Importing..."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/admin.php:
|
1048 |
msgid "You have not yet selected a file to import."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1053 |
msgstr ""
|
1054 |
|
@@ -1081,7 +1157,7 @@ msgstr ""
|
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: src/includes/class-commands.php:
|
1085 |
msgid "%s add-on not found"
|
1086 |
msgstr ""
|
1087 |
|
@@ -1093,15 +1169,15 @@ msgstr ""
|
|
1093 |
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"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/admin.php:
|
1097 |
msgid "To fix this problem go here."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/admin.php:
|
1101 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/admin.php:
|
1105 |
msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
|
1106 |
msgstr ""
|
1107 |
|
@@ -1133,11 +1209,11 @@ msgstr ""
|
|
1133 |
msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: src/methods/s3.php:
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: src/methods/s3.php:
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
@@ -1145,7 +1221,7 @@ msgstr ""
|
|
1145 |
msgid "Backup using %s?"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: src/addons/s3-enhanced.php:
|
1149 |
msgid "Asia Pacific (Mumbai)"
|
1150 |
msgstr ""
|
1151 |
|
@@ -1157,19 +1233,19 @@ msgstr ""
|
|
1157 |
msgid "FAQs"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: src/central/bootstrap.php:
|
1161 |
msgid "More information..."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: src/central/bootstrap.php:
|
1165 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: src/central/bootstrap.php:
|
1169 |
msgid "Key size: %d bits"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: src/central/bootstrap.php:
|
1173 |
msgid "Public key was sent to:"
|
1174 |
msgstr ""
|
1175 |
|
@@ -1181,49 +1257,49 @@ msgstr ""
|
|
1181 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: src/addons/migrator.php:
|
1185 |
msgid "Create key"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: src/addons/migrator.php:
|
1189 |
msgid "slower, strongest"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: src/addons/migrator.php:
|
1193 |
msgid "recommended"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: src/addons/migrator.php:
|
1197 |
msgid "%s bytes"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: src/addons/migrator.php:
|
1201 |
msgid "faster (possibility for slow PHP installs)"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: src/addons/migrator.php:
|
1205 |
msgid "easy to break, fastest"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: src/addons/migrator.php:
|
1209 |
-
#: src/addons/migrator.php:
|
1210 |
-
#: src/central/bootstrap.php:
|
1211 |
msgid "%s bits"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: src/addons/migrator.php:
|
1215 |
msgid "Encryption key size:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: src/addons/migrator.php:
|
1219 |
msgid "Enter your chosen name"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: src/addons/migrator.php:
|
1223 |
-
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: src/methods/googledrive.php:
|
1227 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1228 |
msgstr ""
|
1229 |
|
@@ -1235,7 +1311,8 @@ msgstr ""
|
|
1235 |
msgid "login"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: src/
|
|
|
1239 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1240 |
msgstr ""
|
1241 |
|
@@ -1243,7 +1320,7 @@ msgstr ""
|
|
1243 |
msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: src/class-updraftplus.php:
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1255,7 +1332,7 @@ msgstr ""
|
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: src/class-updraftplus.php:
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
@@ -1263,13 +1340,13 @@ msgstr ""
|
|
1263 |
msgid "(tap on an icon to select or unselect)"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: src/methods/updraftvault.php:
|
1267 |
-
#: src/methods/updraftvault.php:
|
1268 |
msgid "%s per year"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: src/methods/updraftvault.php:
|
1272 |
-
#: src/methods/updraftvault.php:
|
1273 |
msgid "or (annual discount)"
|
1274 |
msgstr ""
|
1275 |
|
@@ -1277,51 +1354,51 @@ msgstr ""
|
|
1277 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: src/class-updraftplus.php:
|
1281 |
msgid "The given file was not found, or could not be read."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: src/central/bootstrap.php:
|
1285 |
msgid "UpdraftCentral (Remote Control)"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: src/central/bootstrap.php:
|
1289 |
msgid "View recent UpdraftCentral log events"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: src/central/bootstrap.php:
|
1293 |
msgid "Enter any description"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: src/central/bootstrap.php:
|
1297 |
msgid "Description"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: src/central/bootstrap.php:
|
1301 |
msgid "Delete..."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: src/central/bootstrap.php:
|
1305 |
msgid "Created:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: src/central/bootstrap.php:
|
1309 |
msgid "Access this site as user:"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: src/central/bootstrap.php:
|
1313 |
msgid "Details"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: src/central/bootstrap.php:
|
1317 |
msgid "Key description"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: src/central/bootstrap.php:
|
1321 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: src/central/bootstrap.php:
|
1325 |
msgid "An invalid URL was entered"
|
1326 |
msgstr ""
|
1327 |
|
@@ -1361,23 +1438,23 @@ msgstr ""
|
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: src/admin.php:
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: src/admin.php:
|
1373 |
msgid "Total backup size:"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: src/admin.php:
|
1377 |
msgid "stop"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: src/admin.php:
|
1381 |
msgid "The backup has finished running"
|
1382 |
msgstr ""
|
1383 |
|
@@ -1403,31 +1480,31 @@ msgstr ""
|
|
1403 |
msgid "calculate"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: src/admin.php:
|
1407 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: src/admin.php:
|
1411 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: src/admin.php:
|
1415 |
msgid "Please enter a valid URL"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/admin.php:
|
1419 |
msgid "Saving..."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: src/admin.php:
|
1423 |
msgid "Error: the server sent us a response which we did not understand."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "Fetching..."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/addons/s3-enhanced.php:
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
@@ -1439,77 +1516,77 @@ msgstr ""
|
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/class-updraftplus.php:
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/class-updraftplus.php:
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/class-updraftplus.php:
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: src/admin.php:
|
1455 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1456 |
msgid "Dismiss"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: src/admin.php:
|
1460 |
msgid "Please fill in the required information."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: src/addons/multisite.php:
|
1464 |
msgid "Read more..."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: src/addons/multisite.php:
|
1468 |
msgid "may include some site-wide data"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: src/addons/multisite.php:
|
1472 |
msgid "All sites"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: src/addons/multisite.php:
|
1476 |
msgid "Which site to restore"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: src/addons/migrator.php:
|
1480 |
msgid "Error when creating new site at your chosen address:"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: src/addons/migrator.php:
|
1484 |
msgid "Required information for restoring this backup was not given (%s)"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: src/addons/migrator.php:
|
1488 |
msgid "Attribute imported content to user"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: src/addons/migrator.php:
|
1492 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: src/addons/migrator.php:
|
1496 |
msgid "This feature is not compatible with %s"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: src/addons/migrator.php:
|
1500 |
msgid "Importing a single site into a multisite install"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: src/addons/migrator.php:
|
1504 |
msgid "other content from wp-content"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: src/addons/migrator.php:
|
1508 |
msgid "WordPress core"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/addons/migrator.php:
|
1512 |
-
#: src/addons/migrator.php:
|
1513 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1514 |
msgstr ""
|
1515 |
|
@@ -1517,11 +1594,11 @@ msgstr ""
|
|
1517 |
msgid "Call WordPress action:"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: src/admin.php:
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: src/admin.php:
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
@@ -1553,51 +1630,51 @@ msgstr ""
|
|
1553 |
msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/admin.php:
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: src/admin.php:
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: src/admin.php:
|
1569 |
msgid "settings"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: src/admin.php:
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: src/admin.php:
|
1577 |
msgid "Include any files in the backup"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: src/admin.php:
|
1581 |
msgid "Include the database in the backup"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: src/admin.php:
|
1585 |
msgid "Continue restoration"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: src/admin.php:
|
1589 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: src/admin.php:
|
1593 |
msgid "Unfinished restoration"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: src/admin.php:
|
1597 |
msgid "%s minutes, %s seconds"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: src/admin.php:
|
1601 |
msgid "Backup Contents And Schedule"
|
1602 |
msgstr ""
|
1603 |
|
@@ -1605,16 +1682,16 @@ msgstr ""
|
|
1605 |
msgid "Premium / Extensions"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: src/admin.php:
|
1609 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: src/addons/morefiles.php:77, src/admin.php:
|
1613 |
msgctxt "(verb)"
|
1614 |
msgid "Download"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/admin.php:
|
1618 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1619 |
msgstr ""
|
1620 |
|
@@ -1745,7 +1822,7 @@ msgstr ""
|
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: src/class-updraftplus.php:
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
@@ -1874,35 +1951,35 @@ msgstr ""
|
|
1874 |
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)."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: src/admin.php:
|
1878 |
msgid "Backup sets removed:"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: src/admin.php:
|
1882 |
msgid "Processing..."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: src/admin.php:
|
1886 |
msgid "For backups older than"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: src/admin.php:
|
1890 |
msgid "week(s)"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: src/admin.php:
|
1894 |
msgid "hour(s)"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: src/admin.php:
|
1898 |
msgid "day(s)"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/admin.php:
|
1902 |
msgid "in the month"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/admin.php:
|
1906 |
msgid "day"
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,7 +1987,7 @@ msgstr ""
|
|
1910 |
msgid "(as many as you like)"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/addons/fixtime.php:
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
@@ -1922,31 +1999,31 @@ msgstr ""
|
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: src/methods/updraftvault.php:
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: src/class-updraftplus.php:
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: src/class-updraftplus.php:
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: src/admin.php:
|
1938 |
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."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: src/methods/updraftvault.php:
|
1942 |
msgid "Don't know your email address, or forgotten your password?"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: src/methods/updraftvault.php:
|
1946 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: src/methods/updraftvault.php:
|
1950 |
msgid "Read the FAQs here."
|
1951 |
msgstr ""
|
1952 |
|
@@ -1958,99 +2035,99 @@ msgstr ""
|
|
1958 |
msgid "Server-side encryption"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: src/methods/updraftvault.php:
|
1962 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: src/admin.php:
|
1966 |
msgid "Go to the remote storage settings in order to connect."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: src/admin.php:
|
1970 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: src/methods/updraftvault.php:
|
1974 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: src/admin.php:
|
1978 |
msgid "Update quota count"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Counting..."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "Disconnecting..."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: src/admin.php:
|
1990 |
msgid "Connecting..."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: src/methods/updraftvault.php:
|
1994 |
msgid "Refresh current status"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: src/methods/updraftvault.php:
|
1998 |
-
#: src/methods/updraftvault.php:
|
1999 |
msgid "Get more quota"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: src/methods/updraftvault.php:
|
2003 |
-
#: src/methods/updraftvault.php:
|
2004 |
msgid "Current use:"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: src/methods/updraftvault.php:
|
2008 |
msgid "You can get more quota here"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: src/methods/updraftvault.php:
|
2012 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: src/admin.php:
|
2016 |
-
#: src/methods/updraftvault.php:
|
2017 |
msgid "Disconnect"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: src/methods/updraftvault.php:
|
2021 |
msgid "Quota:"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: src/methods/updraftvault.php:
|
2025 |
msgid "Vault owner"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: src/methods/updraftvault.php:
|
2029 |
msgid "Well done - there's nothing more needed to set up."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: src/methods/updraftvault.php:
|
2033 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: src/methods/updraftvault.php:
|
2037 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: src/methods/updraftvault.php:
|
2041 |
msgid "Go here for help"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: src/methods/updraftvault.php:
|
2045 |
msgid "E-mail"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: src/
|
2049 |
-
#: src/methods/updraftvault.php:
|
2050 |
msgid "Back..."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: src/methods/updraftvault.php:
|
2054 |
msgid "Subscriptions can be cancelled at any time."
|
2055 |
msgstr ""
|
2056 |
|
@@ -2058,37 +2135,37 @@ msgstr ""
|
|
2058 |
msgid "Buy it now"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: src/methods/updraftvault.php:
|
2062 |
-
#: src/methods/updraftvault.php:
|
2063 |
msgid "%s per quarter"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: src/central/bootstrap.php:
|
2067 |
-
#: src/methods/updraftvault.php:
|
2068 |
msgid "Read more about it here."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: src/methods/updraftvault.php:
|
2072 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: src/methods/updraftvault.php:
|
2076 |
msgid "Already purchased space?"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: src/methods/updraftvault.php:
|
2080 |
msgid "Show the options"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: src/methods/updraftvault.php:
|
2084 |
msgid "First time user?"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: src/methods/updraftvault.php:
|
2088 |
msgid "Press a button to get started."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: src/methods/updraftvault.php:
|
2092 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2093 |
msgstr ""
|
2094 |
|
@@ -2108,96 +2185,84 @@ msgstr ""
|
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: src/addons/azure.php:443, src/addons/backblaze.php:
|
2112 |
-
#: src/addons/googlecloud.php:843, src/methods/s3.php:
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: src/backup.php:
|
2117 |
msgid "The zip engine returned the message: %s."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: src/addons/s3-enhanced.php:
|
2121 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: src/addons/s3-enhanced.php:
|
2125 |
msgid "Allow deletion"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: src/addons/s3-enhanced.php:
|
2129 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/s3-enhanced.php:
|
2133 |
msgid "Allow download"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: src/addons/migrator.php:
|
2137 |
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."
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: src/addons/migrator.php:
|
2141 |
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."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: src/addons/migrator.php:
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: src/addons/migrator.php:
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: src/
|
2153 |
-
msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
|
2154 |
-
msgstr ""
|
2155 |
-
|
2156 |
-
#: src/addons/migrator.php:2366
|
2157 |
-
msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
|
2158 |
-
msgstr ""
|
2159 |
-
|
2160 |
-
#: src/addons/migrator.php:2366
|
2161 |
-
msgid "Keys for this site are created in the section below the one you just pressed in."
|
2162 |
-
msgstr ""
|
2163 |
-
|
2164 |
-
#: src/addons/migrator.php:2027, src/central/bootstrap.php:389
|
2165 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: src/addons/migrator.php:
|
2169 |
msgid "Key created successfully."
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: src/addons/migrator.php:
|
2173 |
msgid "A key with this name already exists; you must use a unique name."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: src/addons/migrator.php:
|
2177 |
msgid "Also send this backup to the active remote storage locations"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: src/addons/migrator.php:
|
2181 |
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."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: src/addons/migrator.php:
|
2185 |
msgid "site not found"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: src/addons/migrator.php:
|
2189 |
msgid "Backup data will be sent to:"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: src/addons/migrator.php:
|
2193 |
msgid "Restore an existing backup set onto this site"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: src/addons/migrator.php:
|
2197 |
msgid "This site has no backups to restore from yet."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: src/addons/reporting.php:
|
2201 |
msgid "Backup made by %s"
|
2202 |
msgstr ""
|
2203 |
|
@@ -2205,14 +2270,16 @@ msgstr ""
|
|
2205 |
msgid "This storage method does not allow downloading"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/admin.php:
|
2209 |
msgid "(backup set imported from remote location)"
|
2210 |
msgstr ""
|
2211 |
|
|
|
2212 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2213 |
msgid "Site"
|
2214 |
msgstr ""
|
2215 |
|
|
|
2216 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2217 |
msgid "Backup sent to remote site - not available for download."
|
2218 |
msgstr ""
|
@@ -2225,80 +2292,80 @@ msgstr ""
|
|
2225 |
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."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: src/addons/migrator.php:
|
2229 |
msgid "Testing connection..."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: src/admin.php:
|
2233 |
msgid "Deleting..."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: src/admin.php:
|
2237 |
msgid "key name"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: src/admin.php:
|
2241 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: src/admin.php:
|
2245 |
msgid "Creating..."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: src/addons/migrator.php:
|
2249 |
msgid "Or, receive a backup from a remote site"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: src/addons/migrator.php:
|
2253 |
msgid "Paste key here"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: src/addons/migrator.php:
|
2257 |
msgid "How do I get a site's key?"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: src/addons/migrator.php:
|
2261 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: src/addons/migrator.php:
|
2265 |
msgid "Or, send a backup to another site"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: src/addons/migrator.php:
|
2269 |
msgid "Send"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: src/addons/migrator.php:
|
2273 |
msgid "Send to site:"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: src/addons/migrator.php:
|
2277 |
msgid "No receiving sites have yet been added."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: src/addons/migrator.php:
|
2281 |
msgid "It is for sending backups to the following site: "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: src/addons/migrator.php:
|
2285 |
msgid "The key was successfully added."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: src/addons/migrator.php:
|
2289 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: src/addons/migrator.php:
|
2293 |
-
#: src/addons/migrator.php:
|
2294 |
msgid "The entered key was corrupt - please try again."
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: src/addons/migrator.php:
|
2298 |
msgid "The entered key was the wrong length - please try again."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: src/addons/migrator.php:
|
2302 |
msgid "key"
|
2303 |
msgstr ""
|
2304 |
|
@@ -2334,19 +2401,19 @@ msgstr ""
|
|
2334 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: src/admin.php:
|
2338 |
msgid "Resetting..."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/addons/migrator.php:
|
2342 |
msgid "Add site"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: src/admin.php:
|
2346 |
msgid "Adding..."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: src/udaddons/options.php:
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
@@ -2366,11 +2433,11 @@ msgstr ""
|
|
2366 |
msgid "Go here to re-enter your password."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: src/addons/migrator.php:
|
2370 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/migrator.php:
|
2374 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2378,7 +2445,7 @@ msgstr ""
|
|
2378 |
msgid "To restore using any of the backup sets below, press the button."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/admin.php:
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
@@ -2390,7 +2457,7 @@ msgstr ""
|
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: src/addons/azure.php:599, src/addons/migrator.php:
|
2394 |
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
@@ -2420,43 +2487,43 @@ msgstr ""
|
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: src/methods/email.php:
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: src/addons/s3-enhanced.php:
|
2432 |
msgid "Do remember to save your settings."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: src/addons/s3-enhanced.php:
|
2436 |
msgid "You are now using a IAM user account to access your bucket."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: src/addons/s3-enhanced.php:
|
2440 |
msgid "S3 bucket"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: src/addons/s3-enhanced.php:
|
2444 |
msgid "China (Beijing) (restricted)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: src/addons/s3-enhanced.php:
|
2448 |
msgid "South America (Sao Paulo)"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: src/addons/s3-enhanced.php:
|
2452 |
msgid "Asia Pacific (Tokyo)"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: src/addons/s3-enhanced.php:
|
2456 |
msgid "Asia Pacific (Sydney)"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: src/addons/s3-enhanced.php:
|
2460 |
msgid "Asia Pacific (Singapore)"
|
2461 |
msgstr ""
|
2462 |
|
@@ -2504,7 +2571,7 @@ msgstr ""
|
|
2504 |
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."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: src/addons/s3-enhanced.php:
|
2508 |
msgid "Create new IAM user and S3 bucket"
|
2509 |
msgstr ""
|
2510 |
|
@@ -2569,7 +2636,7 @@ msgstr ""
|
|
2569 |
msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/methods/s3.php:
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
@@ -2582,17 +2649,17 @@ msgid "UpdraftPlus news, high-quality training materials for WordPress developer
|
|
2582 |
msgstr ""
|
2583 |
|
2584 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
-
#: src/methods/updraftvault.php:
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr ""
|
@@ -2619,7 +2686,7 @@ msgstr ""
|
|
2619 |
|
2620 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
@@ -2632,11 +2699,11 @@ msgstr ""
|
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: src/addons/fixtime.php:
|
2636 |
msgid "(at same time as files backup)"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: src/admin.php:
|
2640 |
msgid "No backup has been completed"
|
2641 |
msgstr ""
|
2642 |
|
@@ -2669,8 +2736,8 @@ msgstr ""
|
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: src/methods/s3.php:
|
2673 |
-
#: src/methods/s3.php:
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
@@ -2679,7 +2746,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
|
|
2679 |
msgid "or"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: src/admin.php:
|
2683 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2684 |
msgstr ""
|
2685 |
|
@@ -2710,7 +2777,7 @@ msgstr ""
|
|
2710 |
msgid "Check this box to have a basic report sent to"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: src/admin.php:
|
2714 |
msgctxt "i.e. Non-automatic"
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
@@ -2724,11 +2791,11 @@ msgstr ""
|
|
2724 |
msgid "Change Lock Settings"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: src/addons/morefiles.php:
|
2728 |
msgid "Any other file/directory on your server that you wish to back up"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: src/admin.php:
|
2732 |
msgid "For even more features and personal support, check out "
|
2733 |
msgstr ""
|
2734 |
|
@@ -2737,7 +2804,7 @@ msgid "Database decryption phrase"
|
|
2737 |
msgstr ""
|
2738 |
|
2739 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2740 |
-
#: src/admin.php:
|
2741 |
msgid "Automatic backup before update"
|
2742 |
msgstr ""
|
2743 |
|
@@ -2798,7 +2865,7 @@ msgid "Please make sure that you have made a note of the password!"
|
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: src/addons/lockadmin.php:156,
|
2801 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2802 |
msgid "Lock access to the UpdraftPlus settings page"
|
2803 |
msgstr ""
|
2804 |
|
@@ -2814,15 +2881,15 @@ msgstr ""
|
|
2814 |
msgid "The admin password has now been removed."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: src/addons/morefiles.php:
|
2818 |
msgid "(learn more about this significant option)"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: src/udaddons/options.php:
|
2822 |
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."
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: src/admin.php:
|
2826 |
msgid "View Log"
|
2827 |
msgstr ""
|
2828 |
|
@@ -2839,11 +2906,11 @@ msgstr ""
|
|
2839 |
msgid "and retain this many scheduled backups"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: src/admin.php:
|
2843 |
msgid "incremental backup; base backup: %s"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: src/templates/wp-admin/advanced/lock-admin.php:
|
2847 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2848 |
msgstr ""
|
2849 |
|
@@ -2851,48 +2918,48 @@ msgstr ""
|
|
2851 |
msgid "Upload files into UpdraftPlus."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: src/admin.php:
|
2855 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: src/class-updraftplus.php:
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: src/addons/backblaze.php:
|
2864 |
msgid "Error: unexpected file read fail"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: src/backup.php:
|
2868 |
msgid "check your log for more details."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: src/backup.php:
|
2872 |
msgid "your web hosting account appears to be full; please see: %s"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: src/backup.php:
|
2876 |
msgid "A zip error occurred"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/reporting.php:
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: src/methods/updraftvault.php:
|
2888 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: src/methods/updraftvault.php:
|
2892 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: src/methods/updraftvault.php:
|
2896 |
msgid "You need to supply both an email address and a password"
|
2897 |
msgstr ""
|
2898 |
|
@@ -2900,36 +2967,36 @@ msgstr ""
|
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: src/class-updraftplus.php:
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: src/addons/migrator.php:
|
2912 |
msgid "already done"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: src/addons/migrator.php:
|
2916 |
msgid "skipped (not in list)"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/addons/migrator.php:
|
2920 |
-
#: src/addons/migrator.php:
|
2921 |
msgid "Search and replacing table:"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: src/addons/migrator.php:
|
2925 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: src/addons/migrator.php:
|
2929 |
msgid "These tables only"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: src/addons/migrator.php:
|
2933 |
msgid "Rows per batch"
|
2934 |
msgstr ""
|
2935 |
|
@@ -2941,19 +3008,19 @@ msgstr ""
|
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: src/class-updraftplus.php:
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
@@ -2982,7 +3049,7 @@ msgstr ""
|
|
2982 |
msgid "UpdraftPlus is on social media - check us out!"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: src/admin.php:
|
2986 |
msgid "Why am I seeing this?"
|
2987 |
msgstr ""
|
2988 |
|
@@ -2994,15 +3061,15 @@ msgstr ""
|
|
2994 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/admin.php:
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: src/class-updraftplus.php:
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: src/admin.php:
|
3006 |
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."
|
3007 |
msgstr ""
|
3008 |
|
@@ -3010,11 +3077,11 @@ msgstr ""
|
|
3010 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/admin.php:
|
3014 |
msgid "This file could not be uploaded"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: src/admin.php:
|
3018 |
msgid "You will find more information about this in the Settings section."
|
3019 |
msgstr ""
|
3020 |
|
@@ -3034,7 +3101,7 @@ msgstr ""
|
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: src/class-updraftplus.php:
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
@@ -3058,42 +3125,42 @@ msgstr ""
|
|
3058 |
msgid "Backup succeeded"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: src/admin.php:
|
3062 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3063 |
msgid "Every %s hours"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: src/addons/migrator.php:
|
3067 |
msgid "search and replace"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: src/addons/migrator.php:
|
3071 |
msgid "Go"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: src/addons/migrator.php:
|
3075 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: src/addons/migrator.php:
|
3079 |
msgid "This can easily destroy your site; so, use it with care!"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: src/addons/migrator.php:
|
3083 |
msgid "Replace with"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: src/addons/migrator.php:
|
3087 |
msgid "Search for"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: src/addons/migrator.php:
|
3091 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3092 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3093 |
msgid "Search / replace database"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/addons/migrator.php:
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3109,11 +3176,11 @@ msgstr ""
|
|
3109 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: src/methods/googledrive.php:
|
3113 |
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."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: src/admin.php:
|
3117 |
msgid "You have not yet made any backups."
|
3118 |
msgstr ""
|
3119 |
|
@@ -3133,11 +3200,11 @@ msgstr ""
|
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: src/admin.php:
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: src/admin.php:540, src/admin.php:
|
3141 |
#: src/includes/deprecated-actions.php:29,
|
3142 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3143 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
@@ -3148,19 +3215,19 @@ msgstr ""
|
|
3148 |
msgid "Current Status"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: src/admin.php:
|
3152 |
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."
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: src/admin.php:
|
3156 |
msgid "To make a backup, just press the Backup Now button."
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: src/admin.php:
|
3160 |
msgid "Welcome to UpdraftPlus!"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: src/addons/moredatabase.php:
|
3164 |
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)."
|
3165 |
msgstr ""
|
3166 |
|
@@ -3228,24 +3295,25 @@ msgstr ""
|
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: src/class-updraftplus.php:
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: src/methods/googledrive.php:
|
3236 |
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."
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/methods/googledrive.php:
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
-
#: src/addons/onedrive.php:868, src/methods/googledrive.php:
|
|
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: src/admin.php:
|
3249 |
msgid "External database"
|
3250 |
msgstr ""
|
3251 |
|
@@ -3277,7 +3345,7 @@ msgstr ""
|
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: src/class-updraftplus.php:
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
@@ -3298,7 +3366,7 @@ msgstr ""
|
|
3298 |
msgid "database connection attempt failed."
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: src/addons/migrator.php:
|
3302 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3303 |
msgstr ""
|
3304 |
|
@@ -3360,7 +3428,7 @@ msgstr ""
|
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: src/methods/dropbox.php:
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
@@ -3368,15 +3436,15 @@ msgstr ""
|
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/methods/dropbox.php:
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3408,37 +3476,37 @@ msgid "%s error - failed to access the container"
|
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
-
#: src/methods/dropbox.php:
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: src/methods/googledrive.php:
|
3416 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: src/methods/googledrive.php:
|
3420 |
msgid "It is an ID number internal to Google Drive"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/methods/googledrive.php:
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
-
#: src/methods/googledrive.php:
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
-
#: src/methods/googledrive.php:
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: src/methods/googledrive.php:
|
3442 |
msgid "Google Drive list files: failed to access parent folder"
|
3443 |
msgstr ""
|
3444 |
|
@@ -3463,7 +3531,7 @@ msgstr ""
|
|
3463 |
msgid "Fetch"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: src/addons/migrator.php:
|
3467 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3468 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3469 |
msgid "This feature requires %s version %s or later"
|
@@ -3473,7 +3541,7 @@ msgstr ""
|
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: src/class-updraftplus.php:
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
@@ -3497,8 +3565,8 @@ msgstr ""
|
|
3497 |
msgid "password/key"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: src/addons/migrator.php:
|
3501 |
-
#: src/admin.php:
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
@@ -3514,24 +3582,24 @@ msgstr ""
|
|
3514 |
msgid "SCP/SFTP password/key"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: src/admin.php:
|
3518 |
msgid "Files backup (created by %s)"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: src/admin.php:
|
3522 |
msgid "Files and database WordPress backup (created by %s)"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: src/addons/importer.php:276, src/admin.php:
|
3526 |
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: src/admin.php:
|
3531 |
msgid "Database (created by %s)"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: src/admin.php:
|
3535 |
msgid "unknown source"
|
3536 |
msgstr ""
|
3537 |
|
@@ -3543,32 +3611,32 @@ msgstr ""
|
|
3543 |
msgid "Upload backup files"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: src/admin.php:
|
3547 |
msgid "This backup was created by %s, and can be imported."
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: src/admin.php:
|
3551 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:
|
3555 |
msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: src/admin.php:
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: src/admin.php:
|
3563 |
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."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: src/admin.php:
|
3567 |
#: src/includes/class-backup-history.php:356
|
3568 |
msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: src/admin.php:
|
3572 |
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
@@ -3589,7 +3657,7 @@ msgstr ""
|
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: src/addons/backblaze.php:
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
@@ -3598,7 +3666,7 @@ msgstr ""
|
|
3598 |
msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/admin.php:
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
@@ -3607,20 +3675,20 @@ msgstr ""
|
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: src/addons/reporting.php:
|
3611 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: src/addons/morefiles.php:
|
3615 |
msgid "No backup of location: there was nothing found to back up"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:
|
3619 |
-
#: src/addons/morefiles.php:
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/methods/s3.php:
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
@@ -3628,16 +3696,16 @@ msgstr ""
|
|
3628 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/addons/morefiles.php:
|
3632 |
msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: src/class-updraftplus.php:
|
3636 |
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: src/class-updraftplus.php:
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
@@ -3657,7 +3725,7 @@ msgstr ""
|
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: src/udaddons/options.php:
|
3661 |
msgid "Available to claim on this site"
|
3662 |
msgstr ""
|
3663 |
|
@@ -3707,19 +3775,19 @@ msgstr ""
|
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/class-updraftplus.php:
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: src/includes/class-wpadmin-commands.php:
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
@@ -3735,7 +3803,7 @@ msgstr ""
|
|
3735 |
msgid "please wait for the rescheduled attempt"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: src/addons/reporting.php:
|
3739 |
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."
|
3740 |
msgstr ""
|
3741 |
|
@@ -3748,7 +3816,7 @@ msgstr ""
|
|
3748 |
msgid "Errors occurred:"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: src/admin.php:
|
3752 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3753 |
msgstr ""
|
3754 |
|
@@ -3772,11 +3840,11 @@ msgstr ""
|
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: src/admin.php:
|
3776 |
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)"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: src/addons/migrator.php:
|
3780 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3781 |
msgstr ""
|
3782 |
|
@@ -3785,7 +3853,7 @@ msgstr ""
|
|
3785 |
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."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/addons/moredatabase.php:137, src/admin.php:
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
@@ -3883,11 +3951,11 @@ msgid "Rackspace Cloud Files, enhanced"
|
|
3883 |
msgstr ""
|
3884 |
|
3885 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3886 |
-
#: src/methods/cloudfiles.php:
|
3887 |
msgid "Cloud Files Container"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:
|
3891 |
msgid "Cloud Files API Key"
|
3892 |
msgstr ""
|
3893 |
|
@@ -3946,31 +4014,32 @@ msgstr ""
|
|
3946 |
msgid "Authorisation failed (check your credentials)"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: src/
|
|
|
3950 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: src/admin.php:
|
3954 |
msgid "Create"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: src/admin.php:
|
3958 |
msgid "Trying..."
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: src/admin.php:
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: src/admin.php:
|
3970 |
msgid "Backup does not exist in the backup history"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/admin.php:
|
3974 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
|
3975 |
msgstr ""
|
3976 |
|
@@ -3998,88 +4067,88 @@ msgstr ""
|
|
3998 |
msgid "Moving old data out of the way..."
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/addons/reporting.php:
|
4002 |
msgid "Add another address..."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: src/addons/reporting.php:
|
4006 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/addons/reporting.php:
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: src/class-updraftplus.php:
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: src/addons/reporting.php:
|
4022 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: src/addons/reporting.php:
|
4026 |
msgid "Debugging information"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: src/addons/reporting.php:
|
4030 |
msgid "Uploaded to:"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: src/addons/reporting.php:
|
4034 |
msgid "Time taken:"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: src/addons/reporting.php:
|
4038 |
msgid "Warnings"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: src/addons/reporting.php:
|
4042 |
msgid "Errors"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: src/addons/reporting.php:
|
4046 |
msgid "Errors / warnings:"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: src/addons/morefiles.php:
|
4050 |
-
#: src/addons/reporting.php:
|
4051 |
msgid "Contains:"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: src/addons/reporting.php:
|
4055 |
msgid "Backup began:"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: src/addons/reporting.php:
|
4059 |
msgid "Backup Report"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: src/addons/reporting.php:
|
4063 |
msgid "%d hours, %d minutes, %d seconds"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/reporting.php:
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: src/addons/onedrive.php:814, src/methods/dropbox.php:
|
4071 |
-
#: src/methods/dropbox.php:
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: src/addons/onedrive.php:814, src/class-updraftplus.php:
|
4076 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4077 |
-
#: src/methods/dropbox.php:
|
4078 |
-
#: src/methods/dropbox.php:
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
@@ -4087,20 +4156,20 @@ msgstr ""
|
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/methods/s3.php:
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/methods/email.php:
|
4095 |
msgid "For more options, use the \"%s\" add-on."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/methods/email.php:
|
4099 |
msgid "Your site's admin email address (%s) will be used."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/admin.php:
|
4103 |
-
#: src/methods/updraftvault.php:
|
4104 |
msgid "Connect"
|
4105 |
msgstr ""
|
4106 |
|
@@ -4108,20 +4177,19 @@ msgstr ""
|
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: src/class-updraftplus.php:
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: src/addons/reporting.php:465, src/addons/reporting.php:465,
|
4116 |
#: src/admin.php:658
|
4117 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: src/addons/reporting.php:
|
4121 |
-
msgid "When the Email storage method is enabled, also send the
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: src/addons/reporting.php:
|
4125 |
msgid "Latest status:"
|
4126 |
msgstr ""
|
4127 |
|
@@ -4133,7 +4201,7 @@ msgstr ""
|
|
4133 |
msgid "Backed up: %s"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: src/addons/reporting.php:
|
4137 |
msgid "The log file has been attached to this email."
|
4138 |
msgstr ""
|
4139 |
|
@@ -4161,59 +4229,59 @@ msgstr ""
|
|
4161 |
msgid "Files and database"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: src/options.php:
|
4165 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: src/options.php:
|
4169 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: src/options.php:
|
4173 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: src/options.php:
|
4177 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: src/options.php:
|
4181 |
msgid "UpdraftPlus warning:"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: src/udaddons/options.php:
|
4185 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/udaddons/options.php:
|
4189 |
msgid "please follow this link to update the plugin in order to activate it"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: src/udaddons/options.php:
|
4193 |
msgid "please follow this link to update the plugin in order to get it"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: src/udaddons/options.php:
|
4197 |
msgid "latest"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: src/udaddons/options.php:
|
4201 |
msgid "Your version: %s"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: src/udaddons/options.php:
|
4205 |
msgid "You've got it"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: src/udaddons/options.php:
|
4209 |
msgid "UpdraftPlus Support"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: src/udaddons/options.php:
|
4213 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: src/udaddons/options.php:
|
4217 |
msgid "UpdraftPlus Addons"
|
4218 |
msgstr ""
|
4219 |
|
@@ -4221,16 +4289,16 @@ msgstr ""
|
|
4221 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: src/methods/updraftvault.php:
|
4225 |
#: src/udaddons/updraftplus-addons.php:933
|
4226 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: src/methods/updraftvault.php:
|
4230 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: src/methods/updraftvault.php:
|
4234 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4235 |
msgstr ""
|
4236 |
|
@@ -4242,18 +4310,18 @@ msgstr ""
|
|
4242 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: src/methods/email.php:
|
4246 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4247 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4248 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: src/admin.php:
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/addons/reporting.php:
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4269,87 +4337,87 @@ msgstr ""
|
|
4269 |
msgid "See also the \"More Files\" add-on from our shop."
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: src/backup.php:
|
4273 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: src/class-updraftplus.php:
|
4277 |
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)"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: src/udaddons/options.php:
|
4281 |
msgid "Manage Addons"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: src/udaddons/options.php:
|
4285 |
msgid "Buy It"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: src/udaddons/options.php:
|
4289 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: src/udaddons/options.php:
|
4293 |
msgid "activate it on this site"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: src/udaddons/options.php:
|
4297 |
msgid "You have an inactive purchase"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: src/udaddons/options.php:
|
4301 |
msgid "Assigned to this site"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: src/udaddons/options.php:
|
4305 |
msgid "Available for this site (via your all-addons purchase)"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: src/udaddons/options.php:
|
4309 |
msgid "(apparently a pre-release or withdrawn release)"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: src/udaddons/options.php:
|
4313 |
msgid "Go here"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: src/udaddons/options.php:
|
4317 |
msgid "Need to get support?"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: src/udaddons/options.php:
|
4321 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: src/udaddons/options.php:
|
4325 |
msgid "An unknown response was received. Response was:"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: src/udaddons/options.php:
|
4329 |
msgid "Claim not granted - your account login details were wrong"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#: src/udaddons/options.php:
|
4333 |
msgid "Please wait whilst we make the claim..."
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: src/udaddons/options.php:
|
4337 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: src/udaddons/options.php:
|
4341 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: src/udaddons/options.php:
|
4345 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: src/udaddons/options.php:
|
4349 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: src/
|
4353 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4354 |
msgstr ""
|
4355 |
|
@@ -4393,15 +4461,15 @@ msgstr ""
|
|
4393 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: src/addons/moredatabase.php:
|
4397 |
msgid "Without it, encryption will be a lot slower."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/moredatabase.php:
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
@@ -4409,15 +4477,15 @@ msgstr ""
|
|
4409 |
msgid "Drop backup files here"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: src/admin.php:
|
4413 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: src/admin.php:
|
4417 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/admin.php:
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4437,8 +4505,8 @@ msgstr ""
|
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: src/addons/azure.php:420, src/methods/stream-base.php:
|
4441 |
-
#: src/methods/stream-base.php:
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4444 |
|
@@ -4446,11 +4514,11 @@ msgstr ""
|
|
4446 |
msgid "You can send a backup to more than one destination with an add-on."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: src/admin.php:
|
4450 |
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."
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: src/admin.php:
|
4454 |
msgid "(%s%%, file %s of %s)"
|
4455 |
msgstr ""
|
4456 |
|
@@ -4479,7 +4547,7 @@ msgstr ""
|
|
4479 |
msgid "SCP/SFTP host setting"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: src/methods/email.php:
|
4483 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4484 |
msgstr ""
|
4485 |
|
@@ -4487,15 +4555,15 @@ msgstr ""
|
|
4487 |
msgid "Backup is of: %s."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: src/admin.php:
|
4491 |
msgid "%s settings test result:"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: src/admin.php:
|
4495 |
msgid "(Not finished)"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: src/admin.php:
|
4499 |
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."
|
4500 |
msgstr ""
|
4501 |
|
@@ -4507,77 +4575,77 @@ msgstr ""
|
|
4507 |
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)."
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: src/admin.php:
|
4511 |
msgid "Job ID: %s"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: src/admin.php:
|
4515 |
msgid "last activity: %ss ago"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: src/admin.php:
|
4519 |
msgid "next resumption: %d (after %ss)"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: src/admin.php:
|
4523 |
-
#: src/central/bootstrap.php:
|
4524 |
-
#: src/methods/updraftvault.php:
|
4525 |
msgid "Unknown"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: src/admin.php:
|
4529 |
msgid "Backup finished"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: src/admin.php:
|
4533 |
msgid "Waiting until scheduled time to retry because of errors"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: src/admin.php:
|
4537 |
msgid "Pruning old backup sets"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: src/admin.php:
|
4541 |
msgid "Uploading files to remote storage"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: src/admin.php:
|
4545 |
msgid "Encrypted database"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: src/admin.php:
|
4549 |
msgid "Encrypting database"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: src/admin.php:
|
4553 |
msgid "Created database backup"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: src/admin.php:
|
4557 |
msgid "table: %s"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: src/admin.php:
|
4561 |
msgid "Creating database backup"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: src/admin.php:
|
4565 |
msgid "Created file backup zips"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: src/admin.php:
|
4569 |
msgid "Creating file backup zips"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: src/admin.php:
|
4573 |
msgid "Backup begun"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: src/admin.php:
|
4577 |
msgid "Backups in progress:"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/admin.php:
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
@@ -4593,11 +4661,11 @@ msgstr ""
|
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/class-updraftplus.php:
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
@@ -4606,11 +4674,11 @@ msgstr ""
|
|
4606 |
msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: src/admin.php:
|
4610 |
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)."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: src/addons/autobackup.php:1085, src/admin.php:
|
4614 |
msgid "Proceed with update"
|
4615 |
msgstr ""
|
4616 |
|
@@ -4659,19 +4727,19 @@ msgstr ""
|
|
4659 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: src/addons/morefiles.php:
|
4663 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: src/addons/morefiles.php:
|
4667 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: src/addons/morefiles.php:
|
4671 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: src/addons/morefiles.php:
|
4675 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4676 |
msgstr ""
|
4677 |
|
@@ -4686,84 +4754,84 @@ msgstr ""
|
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: src/class-updraftplus.php:
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: src/addons/autobackup.php:1053, src/admin.php:
|
4710 |
#: src/includes/updraftplus-notices.php:171
|
4711 |
msgid "Be safe with an automatic backup"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: src/admin.php:
|
4715 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: src/admin.php:
|
4719 |
msgid "The file was uploaded."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: src/admin.php:
|
4723 |
msgid "Unknown server response status:"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: src/admin.php:
|
4727 |
msgid "Unknown server response:"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: src/admin.php:
|
4731 |
msgid "This decryption key will be attempted:"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: src/admin.php:
|
4735 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: src/admin.php:
|
4739 |
msgid "Upload error"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: src/admin.php:
|
4743 |
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)."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: src/admin.php:
|
4747 |
msgid "Upload error:"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: src/admin.php:
|
4751 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: src/admin.php:
|
4755 |
msgid "Download to your computer"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: src/admin.php:
|
4759 |
msgid "Delete from your web server"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: src/admin.php:
|
4763 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: src/admin.php:
|
4767 |
msgid "(%d archive(s) in set)."
|
4768 |
msgstr ""
|
4769 |
|
@@ -4771,31 +4839,31 @@ msgstr ""
|
|
4771 |
msgid "Split archives every:"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: src/addons/moredatabase.php:
|
4775 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: src/admin.php:
|
4779 |
msgid "Warnings:"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: src/admin.php:
|
4783 |
msgid "Error: the server sent an empty response."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/admin.php:
|
4787 |
msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: src/includes/class-wpadmin-commands.php:
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
@@ -4819,7 +4887,7 @@ msgstr ""
|
|
4819 |
msgid "No such backup set exists"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: src/admin.php:
|
4823 |
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"
|
4824 |
msgstr ""
|
4825 |
|
@@ -4827,11 +4895,11 @@ msgstr ""
|
|
4827 |
msgid "Moving unpacked backup into place..."
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: src/backup.php:
|
4831 |
msgid "Failed to open the zip file (%s) - %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/addons/morefiles.php:
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
@@ -4839,7 +4907,7 @@ msgstr ""
|
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3.php:
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
@@ -4848,15 +4916,15 @@ msgstr ""
|
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: src/admin.php:
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
@@ -4868,11 +4936,11 @@ msgstr ""
|
|
4868 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: src/admin.php:
|
4872 |
msgid "Your wp-content directory server path: %s"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#: src/admin.php:
|
4876 |
msgid "Raw backup history"
|
4877 |
msgstr ""
|
4878 |
|
@@ -4880,11 +4948,11 @@ msgstr ""
|
|
4880 |
msgid "Show raw backup and file list"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: src/admin.php:
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
@@ -4893,11 +4961,11 @@ msgstr ""
|
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/class-updraftplus.php:
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/admin.php:
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
@@ -4909,30 +4977,30 @@ msgstr ""
|
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/admin.php:
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:
|
4917 |
-
#: src/addons/migrator.php:
|
4918 |
-
#: src/admin.php:
|
4919 |
-
#: src/class-updraftplus.php:
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/admin.php:
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: src/class-updraftplus.php:
|
4928 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: src/addons/fixtime.php:
|
4932 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: src/addons/fixtime.php:
|
4936 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
4937 |
msgstr ""
|
4938 |
|
@@ -4970,9 +5038,9 @@ msgstr ""
|
|
4970 |
|
4971 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
-
#: src/methods/googledrive.php:
|
4974 |
-
#: src/methods/stream-base.php:
|
4975 |
-
#: src/methods/stream-base.php:
|
4976 |
msgid "%s Error"
|
4977 |
msgstr ""
|
4978 |
|
@@ -4980,7 +5048,7 @@ msgstr ""
|
|
4980 |
msgid "%s error - failed to upload file"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: src/class-updraftplus.php:
|
4984 |
msgid "%s error - failed to re-assemble chunks"
|
4985 |
msgstr ""
|
4986 |
|
@@ -4994,25 +5062,25 @@ msgstr ""
|
|
4994 |
msgid "%s authentication failed"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: src/addons/googlecloud.php:438, src/addons/migrator.php:
|
4998 |
-
#: src/admin.php:
|
4999 |
-
#: src/class-updraftplus.php:
|
5000 |
-
#: src/class-updraftplus.php:
|
5001 |
-
#: src/class-updraftplus.php:
|
5002 |
-
#: src/class-updraftplus.php:
|
5003 |
-
#: src/methods/s3.php:
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: src/admin.php:
|
5008 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: src/admin.php:
|
5012 |
msgid "Backup directory specified does <b>not</b> exist."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: src/admin.php:
|
5016 |
msgid "Warning: %s"
|
5017 |
msgstr ""
|
5018 |
|
@@ -5020,7 +5088,7 @@ msgstr ""
|
|
5020 |
msgid "Last backup job run:"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: src/backup.php:
|
5024 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5025 |
msgstr ""
|
5026 |
|
@@ -5040,35 +5108,35 @@ msgstr ""
|
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: src/class-updraftplus.php:
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: src/class-updraftplus.php:
|
5048 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: src/addons/migrator.php:
|
5052 |
msgid "New site:"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: src/addons/migrator.php:
|
5056 |
msgid "Migrated site (from UpdraftPlus)"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: src/addons/migrator.php:
|
5060 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: src/addons/migrator.php:
|
5064 |
msgid "Information needed to continue:"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: src/addons/migrator.php:
|
5068 |
msgid "Network activating theme:"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: src/addons/migrator.php:
|
5072 |
msgid "Processed plugin:"
|
5073 |
msgstr ""
|
5074 |
|
@@ -5080,15 +5148,15 @@ msgstr ""
|
|
5080 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/methods/s3.php:
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
@@ -5096,7 +5164,7 @@ msgstr ""
|
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/class-updraftplus.php:
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
@@ -5104,39 +5172,39 @@ msgstr ""
|
|
5104 |
msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/admin.php:
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: src/class-updraftplus.php:
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: src/admin.php:
|
5117 |
msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
-
#: src/admin.php:
|
5121 |
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."
|
5122 |
msgstr ""
|
5123 |
|
5124 |
-
#: src/admin.php:
|
5125 |
msgid "Close"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5129 |
-
#: src/admin.php:
|
5130 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5131 |
#: src/methods/remotesend.php:242
|
5132 |
msgid "Unexpected response:"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: src/addons/reporting.php:
|
5136 |
msgid "To send to more than one address, separate each address with a comma."
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: src/admin.php:
|
5140 |
msgid "PHP information"
|
5141 |
msgstr ""
|
5142 |
|
@@ -5172,7 +5240,7 @@ msgstr ""
|
|
5172 |
msgid "Also delete from remote storage"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: src/admin.php:
|
5176 |
msgid "Latest UpdraftPlus.com news:"
|
5177 |
msgstr ""
|
5178 |
|
@@ -5189,7 +5257,7 @@ msgstr ""
|
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/admin.php:
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5211,7 +5279,7 @@ msgstr ""
|
|
5211 |
msgid "Blog link"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: src/admin.php:
|
5215 |
msgid "Testing %s Settings..."
|
5216 |
msgstr ""
|
5217 |
|
@@ -5219,11 +5287,11 @@ msgstr ""
|
|
5219 |
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."
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: src/admin.php:
|
5223 |
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."
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: src/admin.php:
|
5227 |
msgid "Notice"
|
5228 |
msgstr ""
|
5229 |
|
@@ -5235,97 +5303,101 @@ msgstr ""
|
|
5235 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: src/admin.php:
|
5239 |
msgid "Begun looking for this entity"
|
5240 |
msgstr ""
|
5241 |
|
|
|
|
|
|
|
|
|
5242 |
#: src/addons/dropbox-folders.php:32
|
5243 |
msgid "Store at"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: src/addons/migrator.php:
|
5247 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: src/addons/migrator.php:
|
5251 |
msgid "rows: %d"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: src/addons/migrator.php:
|
5255 |
msgid "Time taken (seconds):"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: src/addons/migrator.php:
|
5259 |
msgid "Errors:"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: src/addons/migrator.php:
|
5263 |
msgid "SQL update commands run:"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: src/addons/migrator.php:
|
5267 |
msgid "Changes made:"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: src/addons/migrator.php:
|
5271 |
msgid "Rows examined:"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: src/addons/migrator.php:
|
5275 |
msgid "Tables examined:"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: src/addons/migrator.php:
|
5279 |
msgid "Could not get list of tables"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: src/addons/migrator.php:
|
5283 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: src/addons/migrator.php:
|
5287 |
msgid "Nothing to do: the site URL is already: %s"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: src/addons/migrator.php:
|
5291 |
-
#: src/addons/migrator.php:
|
5292 |
-
#: src/addons/migrator.php:
|
5293 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: src/addons/migrator.php:
|
5297 |
msgid "Database: search and replace site URL"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: src/addons/migrator.php:
|
5301 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: src/addons/migrator.php:
|
5305 |
msgid "Failed: the %s operation was not able to start."
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: src/addons/migrator.php:
|
5309 |
msgid "Search and replace site location in the database (migrate)"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: src/addons/migrator.php:
|
5313 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: src/addons/multisite.php:
|
5317 |
msgid "Blog uploads"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: src/addons/migrator.php:
|
5321 |
msgid "Must-use plugins"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: src/addons/multisite.php:
|
5325 |
msgid "Multisite Install"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: src/addons/fixtime.php:
|
5329 |
msgid "starting from next time it is"
|
5330 |
msgstr ""
|
5331 |
|
@@ -5355,7 +5427,7 @@ msgstr ""
|
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
-
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
@@ -5385,46 +5457,46 @@ msgstr ""
|
|
5385 |
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."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: src/addons/morefiles.php:
|
5389 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: src/addons/morefiles.php:
|
5393 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: src/addons/morefiles.php:
|
5397 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: src/addons/morefiles.php:
|
5401 |
msgid "More Files"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: src/addons/morefiles.php:
|
5405 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: src/addons/morefiles.php:
|
5409 |
msgid "The above files comprise everything in a WordPress installation."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: src/addons/morefiles.php:
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:
|
5426 |
-
#: src/admin.php:
|
5427 |
-
#: src/methods/stream-base.php:
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5432,15 +5504,15 @@ msgstr ""
|
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#: src/methods/stream-base.php:
|
5436 |
msgid "Local write failed: Failed to download"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: src/methods/stream-base.php:
|
5440 |
msgid "Error opening remote file: Failed to download"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: src/methods/stream-base.php:
|
5444 |
msgid "Chunk %s: A %s error occurred"
|
5445 |
msgstr ""
|
5446 |
|
@@ -5448,10 +5520,10 @@ msgstr ""
|
|
5448 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5449 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5450 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5451 |
-
#: src/methods/googledrive.php:
|
5452 |
-
#: src/methods/stream-base.php:27, src/methods/stream-base.php:
|
5453 |
-
#: src/methods/stream-base.php:
|
5454 |
-
#: src/methods/stream-base.php:
|
5455 |
msgid "No %s settings were found"
|
5456 |
msgstr ""
|
5457 |
|
@@ -5479,31 +5551,31 @@ msgstr ""
|
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/addons/onedrive.php:851, src/methods/dropbox.php:
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/methods/dropbox.php:
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
@@ -5516,100 +5588,99 @@ msgstr ""
|
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/methods/s3.php:
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:839, src/methods/s3.php:
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
-
#: src/methods/s3.php:
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
-
#: src/methods/s3.php:
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: src/addons/backblaze.php:
|
5542 |
msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
-
#: src/methods/s3.php:
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: src/methods/s3.php:
|
5584 |
-
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: src/methods/s3.php:
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/methods/email.php:
|
5613 |
msgid "Note:"
|
5614 |
msgstr ""
|
5615 |
|
@@ -5617,49 +5688,49 @@ msgstr ""
|
|
5617 |
msgid "WordPress Backup"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: src/methods/cloudfiles.php:
|
5621 |
msgid "We accessed the container, and were able to create files within it."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: src/methods/cloudfiles.php:
|
5625 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: src/methods/cloudfiles.php:
|
5629 |
msgid "Failure: No container details were given."
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
-
#: src/methods/cloudfiles.php:
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:
|
5639 |
-
#: src/methods/s3.php:
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: src/addons/migrator.php:
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
-
#: src/admin.php:
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
-
#: src/methods/cloudfiles.php:
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
-
#: src/methods/s3.php:
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: src/methods/cloudfiles.php:
|
5663 |
msgid "Cloud Files username"
|
5664 |
msgstr ""
|
5665 |
|
@@ -5686,12 +5757,12 @@ msgstr ""
|
|
5686 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/admin.php:
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: src/class-updraftplus.php:
|
5694 |
-
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5697 |
|
@@ -5702,13 +5773,13 @@ msgstr ""
|
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
-
#: src/methods/s3.php:
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5710 |
-
#: src/class-updraftplus.php:
|
5711 |
-
#: src/methods/googledrive.php:
|
5712 |
msgid "%s Error: Failed to open local file"
|
5713 |
msgstr ""
|
5714 |
|
@@ -5719,85 +5790,85 @@ msgstr ""
|
|
5719 |
|
5720 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5721 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5722 |
-
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:
|
5723 |
-
#: src/methods/cloudfiles.php:
|
5724 |
msgid "Cloud Files authentication failed"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/methods/googledrive.php:
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
-
#: src/methods/googledrive.php:
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
-
#: src/methods/googledrive.php:
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
-
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:
|
5759 |
-
#: src/methods/googledrive.php:
|
5760 |
-
#: src/methods/googledrive.php:
|
5761 |
msgid "Account is not authorized."
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: src/methods/googledrive.php:
|
5765 |
-
#: src/methods/googledrive.php:
|
5766 |
-
#: src/methods/stream-base.php:
|
5767 |
msgid "Failed to upload to %s"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: src/methods/googledrive.php:
|
5771 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/methods/googledrive.php:
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
-
#: src/methods/googledrive.php:
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
-
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:
|
5786 |
-
#: src/methods/googledrive.php:
|
5787 |
-
#: src/methods/s3.php:
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: src/addons/onedrive.php:843, src/methods/dropbox.php:
|
5792 |
-
#: src/methods/dropbox.php:
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
-
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:
|
5797 |
msgid "Authorization failed"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:
|
5801 |
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."
|
5802 |
msgstr ""
|
5803 |
|
@@ -5820,8 +5891,8 @@ msgstr ""
|
|
5820 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: src/addons/migrator.php:
|
5824 |
-
#: src/admin.php:
|
5825 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
@@ -5830,7 +5901,7 @@ msgstr ""
|
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/addons/migrator.php:
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
@@ -5838,13 +5909,13 @@ msgstr ""
|
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: src/class-updraftplus.php:
|
5842 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: src/addons/reporting.php:
|
5847 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
@@ -5916,60 +5987,60 @@ msgstr ""
|
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: src/admin.php:
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#: src/admin.php:
|
5936 |
msgid "If making a request for support, please include this information:"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: src/admin.php:
|
5940 |
msgid "ABORT: Could not find the information on which entities to restore."
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
msgid "UpdraftPlus Restoration: Progress"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: src/admin.php:
|
5948 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "Delete this backup set"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
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."
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/admin.php:
|
5964 |
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."
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/admin.php:
|
5968 |
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)."
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
@@ -6005,23 +6076,23 @@ msgstr ""
|
|
6005 |
msgid "Use the server's SSL certificates"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: src/admin.php:
|
6009 |
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."
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: src/admin.php:
|
6013 |
msgid "click here"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: src/admin.php:
|
6017 |
msgid "or, to reset this option"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: src/admin.php:
|
6021 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: src/admin.php:
|
6025 |
msgid "Backup directory specified is writable, which is good."
|
6026 |
msgstr ""
|
6027 |
|
@@ -6053,15 +6124,15 @@ msgstr ""
|
|
6053 |
msgid "Advanced / Debugging Settings"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: src/admin.php:
|
6057 |
msgid "Requesting start of backup..."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/addons/morefiles.php:
|
6061 |
msgid "Cancel"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: src/addons/reporting.php:
|
6065 |
msgid "None"
|
6066 |
msgstr ""
|
6067 |
|
@@ -6086,11 +6157,11 @@ msgstr ""
|
|
6086 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: src/addons/morefiles.php:
|
6090 |
msgid "Exclude these:"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: src/admin.php:
|
6094 |
msgid "Any other directories found inside wp-content"
|
6095 |
msgstr ""
|
6096 |
|
@@ -6106,45 +6177,45 @@ msgstr ""
|
|
6106 |
msgid "To fix the time at which a backup should take place,"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: src/admin.php:
|
6110 |
msgid "Monthly"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: src/admin.php:
|
6114 |
msgid "Fortnightly"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: src/admin.php:
|
6118 |
msgid "Weekly"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#: src/admin.php:
|
6122 |
msgid "Daily"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: src/admin.php:
|
6126 |
msgid "Download log file"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: src/admin.php:
|
6130 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: src/admin.php:
|
6134 |
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"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: src/admin.php:
|
6138 |
msgid "The request to the filesystem to create the directory failed."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: src/addons/migrator.php:
|
6142 |
-
#: src/admin.php:
|
6143 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6144 |
msgid "Delete"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: src/admin.php:
|
6148 |
msgid "show log"
|
6149 |
msgstr ""
|
6150 |
|
@@ -6177,9 +6248,10 @@ msgstr ""
|
|
6177 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6178 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6179 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6180 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6181 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6182 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
6183 |
msgid "No"
|
6184 |
msgstr ""
|
6185 |
|
@@ -6212,9 +6284,11 @@ msgstr ""
|
|
6212 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6213 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6214 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6215 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6216 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
6217 |
-
#: src/templates/wp-admin/settings/tab-addons.php:
|
|
|
|
|
6218 |
msgid "Yes"
|
6219 |
msgstr ""
|
6220 |
|
@@ -6253,15 +6327,16 @@ msgstr ""
|
|
6253 |
msgid "Perform a one-time backup"
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
-
#: src/class-updraftplus.php:
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: src/addons/morefiles.php:
|
|
|
6265 |
msgid "%s restoration options:"
|
6266 |
msgstr ""
|
6267 |
|
@@ -6297,27 +6372,27 @@ msgstr ""
|
|
6297 |
msgid "Delete backup set"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: src/admin.php:
|
6301 |
msgid "Download error: the server sent us a response which we did not understand."
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: src/addons/backblaze.php:
|
6305 |
-
#: src/addons/migrator.php:
|
6306 |
-
#: src/addons/migrator.php:
|
6307 |
-
#: src/addons/migrator.php:
|
6308 |
-
#: src/addons/migrator.php:
|
6309 |
-
#: src/addons/migrator.php:
|
6310 |
-
#: src/addons/migrator.php:
|
6311 |
-
#: src/addons/migrator.php:
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
-
#: src/admin.php:
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
-
#: src/methods/updraftvault.php:
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: src/admin.php:
|
6321 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6322 |
msgid "calculating..."
|
6323 |
msgstr ""
|
@@ -6338,15 +6413,15 @@ msgstr ""
|
|
6338 |
msgid "This is a count of the contents of your Updraft directory"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:
|
6342 |
-
#: src/methods/googledrive.php:
|
6343 |
-
#: src/methods/googledrive.php:
|
6344 |
-
#: src/methods/googledrive.php:
|
6345 |
-
#: src/methods/googledrive.php:
|
6346 |
-
#: src/methods/googledrive.php:
|
6347 |
-
#: src/methods/googledrive.php:
|
6348 |
-
#: src/methods/googledrive.php:
|
6349 |
-
#: src/methods/googledrive.php:
|
6350 |
msgid "Google Drive"
|
6351 |
msgstr ""
|
6352 |
|
@@ -6362,39 +6437,40 @@ msgstr ""
|
|
6362 |
msgid "More tasks:"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: src/admin.php:
|
6366 |
msgid "Download most recently modified log file"
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: src/central/bootstrap.php:
|
6370 |
msgid "(Nothing yet logged)"
|
6371 |
msgstr ""
|
6372 |
|
6373 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6374 |
-
#: src/admin.php:
|
6375 |
msgid "Last log message"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
-
#: src/addons/migrator.php:
|
6379 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6380 |
msgid "Restore"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#: src/admin.php:532, src/admin.php:
|
6384 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6385 |
msgid "Backup Now"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: src/addons/migrator.php:
|
6389 |
-
#: src/addons/reporting.php:
|
6390 |
-
#: src/admin.php:
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
-
#: src/includes/class-wpadmin-commands.php:
|
6393 |
-
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
|
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: src/admin.php:311, src/admin.php:
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
@@ -6422,15 +6498,15 @@ msgstr ""
|
|
6422 |
msgid "JavaScript warning"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: src/admin.php:
|
6426 |
msgid "Delete Old Directories"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: src/admin.php:
|
6430 |
msgid "Current limit is:"
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: src/admin.php:
|
6434 |
msgid "Your backup has been restored."
|
6435 |
msgstr ""
|
6436 |
|
@@ -6442,128 +6518,128 @@ msgstr ""
|
|
6442 |
msgid "Lead developer's homepage"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/central/bootstrap.php:
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: src/admin.php:
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: src/admin.php:
|
6454 |
msgid "Backup directory successfully created."
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: src/admin.php:
|
6458 |
msgid "Backup directory could not be created"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: src/admin.php:
|
6462 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: src/admin.php:
|
6466 |
msgid "Old directories successfully removed."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: src/admin.php:
|
6470 |
msgid "Remove old directories"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#: src/addons/migrator.php:
|
6474 |
-
#: src/admin.php:
|
6475 |
-
#: src/admin.php:
|
6476 |
msgid "Return to UpdraftPlus Configuration"
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#: src/admin.php:
|
6480 |
-
#: src/admin.php:
|
6481 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6482 |
msgid "Actions"
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#: src/admin.php:
|
6486 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
-
#: src/admin.php:
|
6490 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6491 |
msgstr ""
|
6492 |
|
6493 |
-
#: src/admin.php:
|
6494 |
msgid "No local copy present."
|
6495 |
msgstr ""
|
6496 |
|
6497 |
-
#: src/admin.php:
|
6498 |
msgid "Download in progress"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#: src/admin.php:
|
6502 |
msgid "File ready."
|
6503 |
msgstr ""
|
6504 |
|
6505 |
-
#: src/admin.php:
|
6506 |
msgid "Download failed"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
-
#: src/admin.php:
|
6510 |
-
#: src/class-updraftplus.php:
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
-
#: src/methods/stream-base.php:
|
6514 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
-
#: src/admin.php:
|
6519 |
msgid "Could not find that job - perhaps it has already finished?"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: src/admin.php:
|
6523 |
msgid "Job deleted"
|
6524 |
msgstr ""
|
6525 |
|
6526 |
-
#: src/admin.php:
|
6527 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6528 |
msgstr ""
|
6529 |
|
6530 |
-
#: src/admin.php:
|
6531 |
msgid "Nothing yet logged"
|
6532 |
msgstr ""
|
6533 |
|
6534 |
-
#: src/admin.php:
|
6535 |
msgid "Please consult this FAQ if you have problems backing up."
|
6536 |
msgstr ""
|
6537 |
|
6538 |
-
#: src/admin.php:
|
6539 |
msgid "Your website is hosted using the %s web server."
|
6540 |
msgstr ""
|
6541 |
|
6542 |
-
#: src/admin.php:
|
6543 |
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."
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: src/admin.php:
|
6547 |
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."
|
6548 |
msgstr ""
|
6549 |
|
6550 |
-
#: src/addons/migrator.php:
|
6551 |
-
#: src/admin.php:
|
6552 |
-
#: src/admin.php:
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
-
#: src/methods/s3.php:
|
6556 |
-
#: src/methods/updraftvault.php:
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6559 |
msgid "Warning"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
-
#: src/admin.php:
|
6563 |
msgid "Add-Ons / Pro Support"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
-
#: src/admin
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/addons/reporting.php:523, src/admin.php:660
|
15 |
+
msgid "Only email the database backup"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/addons/reporting.php:523
|
19 |
+
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."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/addons/reporting.php:523
|
23 |
+
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/addons/migrator.php:259
|
27 |
+
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/addons/incremental.php:62
|
31 |
+
msgid "Increments exist at: %s"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/addons/incremental.php:60, src/addons/incremental.php:62
|
35 |
+
msgid "(latest increment: %s)"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/s3-enhanced.php:370
|
39 |
+
msgid "Europe (Paris)"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/templates/wp-admin/settings/tab-addons.php:189
|
43 |
+
msgid "WP-CLI commands to take, list and delete backups."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/templates/wp-admin/settings/tab-addons.php:188
|
47 |
+
msgid "WP-CLI support"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/templates/wp-admin/settings/tab-addons.php:187
|
51 |
+
msgid "WP CLI"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/addons/wp-cli.php:239
|
55 |
+
msgid "Invalid Job Id"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: src/addons/wp-cli.php:181
|
59 |
+
msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: src/addons/wp-cli.php:171
|
63 |
+
msgid "Recently started backup job id: %s"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: src/addons/wp-cli.php:78
|
67 |
+
msgid "The given value for the '%s' option is not valid"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: src/addons/migrator.php:2447
|
71 |
+
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)."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: src/addons/migrator.php:2427
|
75 |
+
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: src/addons/migrator.php:2427
|
79 |
+
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: src/addons/migrator.php:2046
|
83 |
+
msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:14
|
87 |
+
msgid "This functionality has been disabled by the site administrator."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
91 |
msgid "Simple and secure login with a wave of your phone."
|
92 |
msgstr ""
|
111 |
msgid "Thank you for installing UpdraftPlus!"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: src/addons/migrator.php:2483
|
115 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
116 |
msgstr ""
|
117 |
|
139 |
msgid "Ensure you are logged into the correct account before continuing."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/admin.php:4789
|
143 |
msgid "Remote storage method and instance id are required for authentication."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: src/admin.php:4785
|
147 |
msgid "authentication error"
|
148 |
msgstr ""
|
149 |
|
151 |
msgid "(Nothing has been logged yet)"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: src/addons/migrator.php:425
|
155 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: src/addons/migrator.php:414
|
159 |
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."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: src/addons/migrator.php:403
|
163 |
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."
|
164 |
msgstr ""
|
165 |
|
171 |
msgid "Delete these settings"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/morestorage.php:81, src/admin.php:784
|
175 |
msgid "Currently disabled"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/morestorage.php:81, src/admin.php:783
|
179 |
msgid "Currently enabled"
|
180 |
msgstr ""
|
181 |
|
191 |
msgid "get it here"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: src/methods/stream-base.php:323
|
195 |
msgid "Download chunk size successfully changed to %d"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: src/methods/stream-base.php:320
|
199 |
msgid "Download chunk size failed to change to %d"
|
200 |
msgstr ""
|
201 |
|
211 |
msgid "remote site"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: src/addons/backblaze.php:497
|
215 |
msgid "Invalid bucket name"
|
216 |
msgstr ""
|
217 |
|
221 |
msgstr[0] ""
|
222 |
msgstr[1] ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4436
|
225 |
msgid "Your chosen replacement collation"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4413
|
229 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4413
|
233 |
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."
|
234 |
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."
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
+
#: src/addons/migrator.php:548
|
239 |
msgid "Database restoration options:"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: src/addons/migrator.php:392
|
243 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
244 |
msgstr ""
|
245 |
|
267 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: src/central/bootstrap.php:519
|
271 |
msgid "URL for the site of your UpdraftCentral dashboard"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: src/central/bootstrap.php:517
|
275 |
msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: src/central/bootstrap.php:514
|
279 |
msgid "A website where you have installed %s"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: src/central/bootstrap.php:512
|
283 |
msgid "Self-hosted dashboard"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/central/bootstrap.php:254
|
287 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/migrator.php:932
|
291 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
292 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
293 |
msgstr[0] ""
|
297 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/class-updraftplus.php:4389
|
301 |
msgid "Your chosen character set to use instead:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/class-updraftplus.php:4379
|
305 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: src/class-updraftplus.php:4379
|
309 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
310 |
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."
|
311 |
msgstr[0] ""
|
312 |
msgstr[1] ""
|
313 |
|
314 |
+
#: src/central/bootstrap.php:597
|
315 |
msgid "Create another key"
|
316 |
msgstr "Създай друг ключ"
|
317 |
|
318 |
+
#: src/central/bootstrap.php:526
|
319 |
msgid "UpdraftCentral dashboard connection details"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/central/bootstrap.php:520
|
323 |
msgid "Next"
|
324 |
msgstr "Следващ"
|
325 |
|
326 |
+
#: src/central/bootstrap.php:506
|
327 |
msgid "an account"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/central/bootstrap.php:506
|
331 |
msgid "i.e. if you have %s there"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/central/bootstrap.php:495
|
335 |
msgid "Connect this site to an UpdraftCentral dashboard found at..."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/central/bootstrap.php:469
|
339 |
msgid "Manage existing keys (%d)..."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: src/central/bootstrap.php:419
|
343 |
msgid "There are no UpdraftCentral dashboards that can currently control this site."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: src/central/bootstrap.php:256
|
347 |
msgid "You can now control this site via your UpdraftCentral dashboard at %s."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: src/central/bootstrap.php:254
|
351 |
msgid "Detailed instructions for this can be found at %s"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: src/central/bootstrap.php:254
|
355 |
msgid "You now need to copy the key below and enter it at your %s."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:778
|
359 |
msgid "Please enter a valid URL e.g http://example.com"
|
360 |
msgstr "Моля въведете валиден адрес - пример http://example.com"
|
361 |
|
362 |
+
#: src/addons/backblaze.php:655
|
363 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: src/addons/backblaze.php:654
|
367 |
msgid "some/path"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: src/addons/backblaze.php:654
|
371 |
msgid "Bucket name"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: src/addons/backblaze.php:653
|
375 |
msgid "Backup path"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: src/addons/backblaze.php:648
|
379 |
msgid "Application key"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/addons/backblaze.php:643, src/addons/backblaze.php:643
|
383 |
msgid "here"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: src/addons/backblaze.php:643
|
387 |
msgid "Get these settings from %s, or sign up %s."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: src/addons/backblaze.php:453
|
391 |
msgid "Account Key"
|
392 |
msgstr "Ключ за Акаунта"
|
393 |
|
394 |
+
#: src/addons/backblaze.php:452, src/addons/backblaze.php:641
|
395 |
msgid "Account ID"
|
396 |
msgstr "Акаунт ID"
|
397 |
|
398 |
+
#: src/class-updraftplus.php:4221
|
399 |
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."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: src/class-updraftplus.php:4219, src/class-updraftplus.php:4221
|
403 |
msgid "the migrator add-on"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: src/class-updraftplus.php:4219
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: src/class-updraftplus.php:4217
|
411 |
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."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: src/class-updraftplus.php:4212
|
415 |
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."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: src/methods/googledrive.php:1272
|
419 |
msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
|
420 |
msgstr ""
|
421 |
|
422 |
#: src/methods/backup-module.php:595
|
423 |
+
msgid "Follow this link to remove these settings for %s."
|
424 |
msgstr ""
|
425 |
|
426 |
#: src/addons/sftp.php:348
|
427 |
msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: src/admin.php:759
|
431 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/admin.php:1384, src/admin.php:4367, src/backup.php:2106,
|
435 |
+
#: src/class-updraftplus.php:2253, src/class-updraftplus.php:2318,
|
436 |
+
#: src/class-updraftplus.php:2452
|
437 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: src/admin.php:1375, src/admin.php:4353, src/backup.php:2097,
|
441 |
+
#: src/class-updraftplus.php:2244, src/class-updraftplus.php:2311,
|
442 |
+
#: src/class-updraftplus.php:2445
|
443 |
msgid "A PHP exception (%s) has occurred: %s"
|
444 |
msgstr ""
|
445 |
|
495 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: src/admin.php:4995
|
499 |
msgid "Value"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: src/admin.php:1721
|
503 |
msgid "Did not know how to delete from this cloud service."
|
504 |
msgstr ""
|
505 |
|
515 |
msgid "Stored at: %s"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: src/methods/cloudfiles.php:495
|
519 |
msgid "Cloud Files"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: src/admin.php:4740
|
523 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: src/admin.php:4699
|
527 |
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."
|
528 |
msgstr ""
|
529 |
|
530 |
#: src/methods/updraftvault.php:71,
|
531 |
+
#: src/templates/wp-admin/settings/tab-addons.php:297
|
532 |
msgid "UpdraftVault"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: src/includes/class-wpadmin-commands.php:515
|
536 |
msgid "archive"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: src/includes/class-wpadmin-commands.php:506
|
540 |
msgid "Extra database"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: src/admin.php:3909
|
544 |
msgid "Press here to download or browse"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: src/admin.php:1158, src/admin.php:1168
|
548 |
msgid "Error: invalid path"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: src/admin.php:955
|
552 |
msgid "An error occurred when fetching storage module options: "
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: src/admin.php:775
|
556 |
msgid "Loading log file"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: src/admin.php:774
|
560 |
msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: src/admin.php:773
|
564 |
msgid "Search"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: src/admin.php:772
|
568 |
msgid "Select a file to view information about it"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: src/admin.php:771
|
572 |
msgid "Browsing zip file"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: src/admin.php:740
|
576 |
msgid "With UpdraftPlus Premium, you can directly download individual files from here."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: src/admin.php:688
|
580 |
msgid "Browse contents"
|
581 |
msgstr ""
|
582 |
|
584 |
msgid "Skipped tables:"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: src/class-updraftplus.php:4501
|
588 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: src/admin.php:2804
|
592 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: src/admin.php:2804
|
596 |
msgid "All WordPress tables will be backed up."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: src/admin.php:770
|
600 |
msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: src/admin.php:770
|
604 |
msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: src/admin.php:770
|
608 |
msgid "The available memory on the server."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: src/admin.php:770
|
612 |
msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: src/admin.php:770
|
616 |
msgid "The file failed to upload. Please check the following:"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: src/admin.php:769
|
620 |
msgid "HTTP code:"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: src/addons/wp-cli.php:87, src/admin.php:665
|
624 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: src/addons/moredatabase.php:603
|
628 |
msgid "tables"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: src/addons/moredatabase.php:602
|
632 |
msgid "WordPress database"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: src/addons/moredatabase.php:595
|
636 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
640 |
msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: src/templates/wp-admin/settings/tab-addons.php:318
|
644 |
msgid "UpdraftCentral Cloud or Premium"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: src/templates/wp-admin/settings/tab-addons.php:301,
|
648 |
+
#: src/templates/wp-admin/settings/tab-addons.php:321
|
649 |
msgid "Find out more"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: src/templates/wp-admin/settings/tab-addons.php:300
|
653 |
msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
|
654 |
msgstr ""
|
655 |
|
656 |
#: src/templates/wp-admin/settings/tab-addons.php:41,
|
657 |
+
#: src/templates/wp-admin/settings/tab-addons.php:292
|
658 |
msgid "UpdraftPlus Gold"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: src/templates/wp-admin/settings/tab-addons.php:286
|
662 |
msgid "UpdraftPlus Free"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: src/templates/wp-admin/settings/tab-addons.php:283
|
666 |
msgid "Other products bundled with UpdraftPlus Premium or Gold"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: src/templates/wp-admin/settings/tab-addons.php:269
|
670 |
msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: src/templates/wp-admin/settings/tab-addons.php:253
|
674 |
msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251,
|
678 |
+
#: src/templates/wp-admin/settings/tab-addons.php:252
|
679 |
msgid "Importer"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237
|
683 |
msgid "Tidy things up for clients and remove all adverts for our other products."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: src/templates/wp-admin/settings/tab-addons.php:235,
|
687 |
+
#: src/templates/wp-admin/settings/tab-addons.php:236
|
688 |
msgid "No ads"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221
|
692 |
msgid "Sophisticated reporting and emailing capabilities."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: src/templates/wp-admin/settings/tab-addons.php:205
|
696 |
msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: src/templates/wp-admin/settings/tab-addons.php:203,
|
700 |
+
#: src/templates/wp-admin/settings/tab-addons.php:204
|
701 |
msgid "More database options"
|
702 |
msgstr ""
|
703 |
|
765 |
|
766 |
#: src/templates/wp-admin/settings/tab-addons.php:51,
|
767 |
#: src/templates/wp-admin/settings/tab-addons.php:54,
|
768 |
+
#: src/templates/wp-admin/settings/tab-addons.php:340,
|
769 |
+
#: src/templates/wp-admin/settings/tab-addons.php:343
|
770 |
msgid "Upgrade now"
|
771 |
msgstr ""
|
772 |
|
773 |
#: src/templates/wp-admin/settings/tab-addons.php:48,
|
774 |
+
#: src/templates/wp-admin/settings/tab-addons.php:337
|
775 |
msgid "Installed"
|
776 |
msgstr ""
|
777 |
|
804 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: src/addons/morefiles.php:332
|
808 |
msgid "Please choose a file or directory"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: src/addons/morefiles.php:321
|
812 |
msgid "Confirm"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: src/addons/morefiles.php:324
|
816 |
msgid "Go up a directory"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: src/addons/morefiles.php:317
|
820 |
msgid "Add directory..."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/addons/morefiles.php:310, src/addons/morefiles.php:330
|
824 |
msgid "Edit"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: src/addons/morefiles.php:293
|
828 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: src/addons/s3-enhanced.php:371
|
832 |
msgid "Europe (Frankfurt)"
|
833 |
msgstr ""
|
834 |
|
841 |
msgstr ""
|
842 |
|
843 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
844 |
+
#: src/templates/wp-admin/settings/tab-addons.php:317
|
845 |
msgid "UpdraftCentral"
|
846 |
msgstr ""
|
847 |
|
893 |
msgstr ""
|
894 |
|
895 |
#: src/includes/updraftplus-notices.php:251
|
896 |
+
msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
897 |
msgstr ""
|
898 |
|
899 |
#: src/includes/updraftplus-notices.php:238
|
938 |
msgstr ""
|
939 |
|
940 |
#: src/includes/updraftplus-notices.php:92,
|
941 |
+
#: src/templates/wp-admin/settings/tab-addons.php:320
|
942 |
msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
|
943 |
msgstr ""
|
944 |
|
983 |
msgstr ""
|
984 |
|
985 |
#: src/includes/updraftplus-notices.php:41,
|
986 |
+
#: src/templates/wp-admin/settings/tab-addons.php:298
|
987 |
msgid "UpdraftVault storage"
|
988 |
msgstr ""
|
989 |
|
1013 |
msgstr ""
|
1014 |
|
1015 |
#: src/templates/wp-admin/advanced/tools-menu.php:10,
|
1016 |
+
#: src/templates/wp-admin/settings/tab-addons.php:267,
|
1017 |
+
#: src/templates/wp-admin/settings/tab-addons.php:268
|
1018 |
msgid "Lock settings"
|
1019 |
msgstr ""
|
1020 |
|
1060 |
msgid "Backup of: %s"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/methods/googledrive.php:270
|
1064 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/methods/dropbox.php:787
|
1068 |
msgid "%s de-authentication"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/methods/dropbox.php:633
|
1072 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/central/bootstrap.php:592
|
1076 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
1077 |
msgstr ""
|
1078 |
|
1084 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: src/admin.php:1797
|
1088 |
msgid "Remote files deleted:"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: src/admin.php:1796
|
1092 |
msgid "Local files deleted:"
|
1093 |
msgstr ""
|
1094 |
|
1096 |
msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: src/admin.php:768
|
1100 |
msgid "remote files deleted"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: src/admin.php:766
|
1104 |
msgid "Complete"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: src/admin.php:765
|
1108 |
msgid "Do you want to carry out the import?"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: src/admin.php:764
|
1112 |
msgid "Which was exported on:"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: src/admin.php:763
|
1116 |
msgid "This will import data from:"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/admin.php:762
|
1120 |
msgid "Importing..."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/admin.php:758
|
1124 |
msgid "You have not yet selected a file to import."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/admin.php:742
|
1128 |
msgid "Your export file will be of your displayed settings, not your saved ones."
|
1129 |
msgstr ""
|
1130 |
|
1157 |
msgid "An error response was received; HTTP code:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: src/includes/class-commands.php:337
|
1161 |
msgid "%s add-on not found"
|
1162 |
msgstr ""
|
1163 |
|
1169 |
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"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: src/admin.php:2543
|
1173 |
msgid "To fix this problem go here."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: src/admin.php:2543
|
1177 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: src/admin.php:726
|
1181 |
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."
|
1182 |
msgstr ""
|
1183 |
|
1209 |
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."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: src/methods/s3.php:1143
|
1213 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: src/methods/s3.php:128
|
1217 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1218 |
msgstr ""
|
1219 |
|
1221 |
msgid "Backup using %s?"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: src/addons/s3-enhanced.php:375
|
1225 |
msgid "Asia Pacific (Mumbai)"
|
1226 |
msgstr ""
|
1227 |
|
1233 |
msgid "FAQs"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: src/central/bootstrap.php:548
|
1237 |
msgid "More information..."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: src/central/bootstrap.php:546
|
1241 |
msgid "Use the alternative method for making a connection with the dashboard."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: src/central/bootstrap.php:456
|
1245 |
msgid "Key size: %d bits"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: src/central/bootstrap.php:451
|
1249 |
msgid "Public key was sent to:"
|
1250 |
msgstr ""
|
1251 |
|
1257 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: src/addons/migrator.php:2460
|
1261 |
msgid "Create key"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:540
|
1265 |
msgid "slower, strongest"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1269 |
msgid "recommended"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: src/addons/migrator.php:2456, src/central/bootstrap.php:539
|
1273 |
msgid "%s bytes"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: src/addons/migrator.php:2455, src/central/bootstrap.php:538
|
1277 |
msgid "faster (possibility for slow PHP installs)"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: src/addons/migrator.php:2454, src/central/bootstrap.php:537
|
1281 |
msgid "easy to break, fastest"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: src/addons/migrator.php:2454, src/addons/migrator.php:2455,
|
1285 |
+
#: src/addons/migrator.php:2457, src/central/bootstrap.php:537,
|
1286 |
+
#: src/central/bootstrap.php:538, src/central/bootstrap.php:540
|
1287 |
msgid "%s bits"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: src/addons/migrator.php:2452, src/central/bootstrap.php:535
|
1291 |
msgid "Encryption key size:"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: src/addons/migrator.php:2450
|
1295 |
msgid "Enter your chosen name"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: src/addons/migrator.php:2449
|
1299 |
+
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: src/methods/googledrive.php:530
|
1303 |
msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
|
1304 |
msgstr ""
|
1305 |
|
1311 |
msgid "login"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: src/addons/reporting.php:521, src/addons/reporting.php:521,
|
1315 |
+
#: src/addons/reporting.php:523, src/methods/email.php:100
|
1316 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
1317 |
msgstr ""
|
1318 |
|
1320 |
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."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: src/class-updraftplus.php:1859
|
1324 |
msgid "Size: %s MB"
|
1325 |
msgstr ""
|
1326 |
|
1332 |
msgid "Now"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
1336 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1337 |
msgstr ""
|
1338 |
|
1340 |
msgid "(tap on an icon to select or unselect)"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: src/methods/updraftvault.php:333, src/methods/updraftvault.php:339,
|
1344 |
+
#: src/methods/updraftvault.php:345
|
1345 |
msgid "%s per year"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: src/methods/updraftvault.php:332, src/methods/updraftvault.php:338,
|
1349 |
+
#: src/methods/updraftvault.php:344
|
1350 |
msgid "or (annual discount)"
|
1351 |
msgstr ""
|
1352 |
|
1354 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: src/class-updraftplus.php:586, src/class-updraftplus.php:631
|
1358 |
msgid "The given file was not found, or could not be read."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: src/central/bootstrap.php:590
|
1362 |
msgid "UpdraftCentral (Remote Control)"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: src/central/bootstrap.php:579
|
1366 |
msgid "View recent UpdraftCentral log events"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: src/central/bootstrap.php:529
|
1370 |
msgid "Enter any description"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: src/central/bootstrap.php:528
|
1374 |
msgid "Description"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: src/central/bootstrap.php:461
|
1378 |
msgid "Delete..."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/central/bootstrap.php:454
|
1382 |
msgid "Created:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/central/bootstrap.php:451
|
1386 |
msgid "Access this site as user:"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/central/bootstrap.php:475
|
1390 |
msgid "Details"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: src/central/bootstrap.php:474
|
1394 |
msgid "Key description"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: src/central/bootstrap.php:347, src/central/bootstrap.php:358
|
1398 |
msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: src/central/bootstrap.php:217
|
1402 |
msgid "An invalid URL was entered"
|
1403 |
msgstr ""
|
1404 |
|
1438 |
msgid "UpdraftCentral Connection"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2934
|
1442 |
msgid "The backup was aborted by the user"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: src/admin.php:4735
|
1446 |
msgid "Your settings have been saved."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: src/admin.php:3787
|
1450 |
msgid "Total backup size:"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: src/admin.php:3144
|
1454 |
msgid "stop"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: src/admin.php:2986
|
1458 |
msgid "The backup has finished running"
|
1459 |
msgstr ""
|
1460 |
|
1480 |
msgid "calculate"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: src/admin.php:741
|
1484 |
msgid "You should save your changes to ensure that they are used for making your backup."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: src/admin.php:734
|
1488 |
msgid "We requested to delete the file, but could not understand the server's response"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: src/admin.php:733
|
1492 |
msgid "Please enter a valid URL"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: src/admin.php:716
|
1496 |
msgid "Saving..."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: src/admin.php:679
|
1500 |
msgid "Error: the server sent us a response which we did not understand."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/admin.php:671
|
1504 |
msgid "Fetching..."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/addons/s3-enhanced.php:372
|
1508 |
msgid "Asia Pacific (Seoul)"
|
1509 |
msgstr ""
|
1510 |
|
1516 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/class-updraftplus.php:4289, src/restorer.php:1819
|
1520 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: src/class-updraftplus.php:4285
|
1524 |
msgid "Please read this link for important information on this process."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: src/class-updraftplus.php:4285
|
1528 |
msgid "It will be imported as a new site."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: src/admin.php:2702, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
1532 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
1533 |
msgid "Dismiss"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: src/admin.php:753
|
1537 |
msgid "Please fill in the required information."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: src/addons/multisite.php:581
|
1541 |
msgid "Read more..."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: src/addons/multisite.php:572
|
1545 |
msgid "may include some site-wide data"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: src/addons/multisite.php:567
|
1549 |
msgid "All sites"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: src/addons/multisite.php:563
|
1553 |
msgid "Which site to restore"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/addons/migrator.php:618, src/addons/migrator.php:619
|
1557 |
msgid "Error when creating new site at your chosen address:"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/addons/migrator.php:560
|
1561 |
msgid "Required information for restoring this backup was not given (%s)"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/addons/migrator.php:512
|
1565 |
msgid "Attribute imported content to user"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/addons/migrator.php:502, src/addons/migrator.php:504
|
1569 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/addons/migrator.php:490
|
1573 |
msgid "This feature is not compatible with %s"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/addons/migrator.php:488, src/addons/migrator.php:490
|
1577 |
msgid "Importing a single site into a multisite install"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: src/addons/migrator.php:479
|
1581 |
msgid "other content from wp-content"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: src/addons/migrator.php:476
|
1585 |
msgid "WordPress core"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: src/addons/migrator.php:476, src/addons/migrator.php:479,
|
1589 |
+
#: src/addons/migrator.php:482
|
1590 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
1591 |
msgstr ""
|
1592 |
|
1594 |
msgid "Call WordPress action:"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: src/admin.php:2812
|
1598 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: src/admin.php:4241
|
1602 |
msgid "Skipping: this archive was already restored."
|
1603 |
msgstr ""
|
1604 |
|
1630 |
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)."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/admin.php:4609
|
1634 |
msgid "Send this backup to remote storage"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/admin.php:4607
|
1638 |
msgid "Check out UpdraftPlus Vault."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/admin.php:4607
|
1642 |
msgid "Not got any remote storage?"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/admin.php:4607
|
1646 |
msgid "settings"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: src/admin.php:4607
|
1650 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: src/admin.php:2810
|
1654 |
msgid "Include any files in the backup"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: src/admin.php:2796
|
1658 |
msgid "Include the database in the backup"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: src/admin.php:2701
|
1662 |
msgid "Continue restoration"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: src/admin.php:2696
|
1666 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: src/admin.php:2695
|
1670 |
msgid "Unfinished restoration"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: src/admin.php:2693
|
1674 |
msgid "%s minutes, %s seconds"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: src/admin.php:2640
|
1678 |
msgid "Backup Contents And Schedule"
|
1679 |
msgstr ""
|
1680 |
|
1682 |
msgid "Premium / Extensions"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: src/admin.php:2409, src/admin.php:2418
|
1686 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: src/addons/morefiles.php:77, src/admin.php:739
|
1690 |
msgctxt "(verb)"
|
1691 |
msgid "Download"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: src/admin.php:664
|
1695 |
msgid "You have chosen to backup files, but no file entities have been selected"
|
1696 |
msgstr ""
|
1697 |
|
1822 |
msgid "Could not access container"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: src/class-updraftplus.php:2951
|
1826 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1827 |
msgstr ""
|
1828 |
|
1951 |
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)."
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: src/admin.php:1795
|
1955 |
msgid "Backup sets removed:"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: src/admin.php:752
|
1959 |
msgid "Processing..."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: src/admin.php:750
|
1963 |
msgid "For backups older than"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: src/admin.php:749
|
1967 |
msgid "week(s)"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: src/admin.php:748
|
1971 |
msgid "hour(s)"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: src/admin.php:747
|
1975 |
msgid "day(s)"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: src/admin.php:746
|
1979 |
msgid "in the month"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: src/admin.php:745
|
1983 |
msgid "day"
|
1984 |
msgstr ""
|
1985 |
|
1987 |
msgid "(as many as you like)"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: src/addons/fixtime.php:306, src/addons/fixtime.php:311
|
1991 |
msgid "Add an additional retention rule..."
|
1992 |
msgstr ""
|
1993 |
|
1999 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: src/methods/updraftvault.php:707
|
2003 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: src/class-updraftplus.php:4358
|
2007 |
msgid "You must upgrade MySQL to be able to use this database."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: src/class-updraftplus.php:4358
|
2011 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: src/admin.php:2528
|
2015 |
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."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: src/methods/updraftvault.php:365
|
2019 |
msgid "Don't know your email address, or forgotten your password?"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: src/methods/updraftvault.php:358
|
2023 |
msgid "Enter your UpdraftPlus.Com email / password here to connect:"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2027 |
msgid "Read the FAQs here."
|
2028 |
msgstr ""
|
2029 |
|
2035 |
msgid "Server-side encryption"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: src/methods/updraftvault.php:715
|
2039 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: src/admin.php:1013
|
2043 |
msgid "Go to the remote storage settings in order to connect."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: src/admin.php:1013
|
2047 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: src/methods/updraftvault.php:348
|
2051 |
msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: src/admin.php:722
|
2055 |
msgid "Update quota count"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: src/admin.php:721
|
2059 |
msgid "Counting..."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: src/admin.php:720
|
2063 |
msgid "Disconnecting..."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: src/admin.php:718
|
2067 |
msgid "Connecting..."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: src/methods/updraftvault.php:468, src/methods/updraftvault.php:542
|
2071 |
msgid "Refresh current status"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: src/methods/updraftvault.php:466, src/methods/updraftvault.php:482,
|
2075 |
+
#: src/methods/updraftvault.php:484, src/methods/updraftvault.php:542
|
2076 |
msgid "Get more quota"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: src/methods/updraftvault.php:463, src/methods/updraftvault.php:479,
|
2080 |
+
#: src/methods/updraftvault.php:523
|
2081 |
msgid "Current use:"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: src/methods/updraftvault.php:458
|
2085 |
msgid "You can get more quota here"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: src/methods/updraftvault.php:458
|
2089 |
msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: src/admin.php:719, src/methods/updraftvault.php:392,
|
2093 |
+
#: src/methods/updraftvault.php:450
|
2094 |
msgid "Disconnect"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: src/methods/updraftvault.php:389, src/methods/updraftvault.php:442
|
2098 |
msgid "Quota:"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2102 |
msgid "Vault owner"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2106 |
msgid "Well done - there's nothing more needed to set up."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
|
2110 |
msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: src/methods/updraftvault.php:394, src/methods/updraftvault.php:436
|
2114 |
msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: src/methods/updraftvault.php:365
|
2118 |
msgid "Go here for help"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: src/methods/updraftvault.php:360
|
2122 |
msgid "E-mail"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: src/addons/migrator.php:183, src/central/bootstrap.php:565,
|
2126 |
+
#: src/methods/updraftvault.php:354, src/methods/updraftvault.php:368
|
2127 |
msgid "Back..."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: src/methods/updraftvault.php:348
|
2131 |
msgid "Subscriptions can be cancelled at any time."
|
2132 |
msgstr ""
|
2133 |
|
2135 |
msgid "Buy it now"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: src/methods/updraftvault.php:331, src/methods/updraftvault.php:337,
|
2139 |
+
#: src/methods/updraftvault.php:343
|
2140 |
msgid "%s per quarter"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: src/central/bootstrap.php:592, src/methods/updraftvault.php:322,
|
2144 |
+
#: src/methods/updraftvault.php:351
|
2145 |
msgid "Read more about it here."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
|
2149 |
msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: src/methods/updraftvault.php:318
|
2153 |
msgid "Already purchased space?"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: src/methods/updraftvault.php:315
|
2157 |
msgid "Show the options"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: src/methods/updraftvault.php:314
|
2161 |
msgid "First time user?"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2165 |
msgid "Press a button to get started."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
|
2169 |
msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
|
2170 |
msgstr ""
|
2171 |
|
2185 |
msgid "Updraft Vault"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:527,
|
2189 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1171
|
2190 |
msgid "Delete failed:"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: src/backup.php:3366
|
2194 |
msgid "The zip engine returned the message: %s."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: src/addons/s3-enhanced.php:396
|
2198 |
msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: src/addons/s3-enhanced.php:394
|
2202 |
msgid "Allow deletion"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/addons/s3-enhanced.php:392
|
2206 |
msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/addons/s3-enhanced.php:390
|
2210 |
msgid "Allow download"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: src/addons/migrator.php:1941
|
2214 |
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."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: src/addons/migrator.php:1926, src/admin.php:728
|
2218 |
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."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: src/addons/migrator.php:2492
|
2222 |
msgid "Existing keys"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: src/addons/migrator.php:2465
|
2226 |
msgid "Your new key:"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: src/central/bootstrap.php:401
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2230 |
msgid "You must copy and paste this key now - it cannot be shown again."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: src/addons/migrator.php:2046, src/central/bootstrap.php:401
|
2234 |
msgid "Key created successfully."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: src/addons/migrator.php:2031
|
2238 |
msgid "A key with this name already exists; you must use a unique name."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: src/addons/migrator.php:1972
|
2242 |
msgid "Also send this backup to the active remote storage locations"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: src/addons/migrator.php:1937
|
2246 |
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."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: src/addons/migrator.php:1893
|
2250 |
msgid "site not found"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: src/addons/migrator.php:1878
|
2254 |
msgid "Backup data will be sent to:"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: src/addons/migrator.php:215
|
2258 |
msgid "Restore an existing backup set onto this site"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: src/addons/migrator.php:222
|
2262 |
msgid "This site has no backups to restore from yet."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: src/addons/reporting.php:171
|
2266 |
msgid "Backup made by %s"
|
2267 |
msgstr ""
|
2268 |
|
2270 |
msgid "This storage method does not allow downloading"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: src/admin.php:3972
|
2274 |
msgid "(backup set imported from remote location)"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: src/addons/wp-cli.php:344,
|
2278 |
#: src/templates/wp-admin/settings/existing-backups-table.php:85
|
2279 |
msgid "Site"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: src/addons/wp-cli.php:342,
|
2283 |
#: src/templates/wp-admin/settings/existing-backups-table.php:84
|
2284 |
msgid "Backup sent to remote site - not available for download."
|
2285 |
msgstr ""
|
2292 |
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."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: src/addons/migrator.php:1954, src/admin.php:735
|
2296 |
msgid "Testing connection..."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: src/admin.php:732
|
2300 |
msgid "Deleting..."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: src/admin.php:731
|
2304 |
msgid "key name"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: src/admin.php:729
|
2308 |
msgid "Please give this key a name (e.g. indicate the site it is for):"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: src/admin.php:726
|
2312 |
msgid "Creating..."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: src/addons/migrator.php:2443
|
2316 |
msgid "Or, receive a backup from a remote site"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: src/addons/migrator.php:2431
|
2320 |
msgid "Paste key here"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: src/addons/migrator.php:2427
|
2324 |
msgid "How do I get a site's key?"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: src/addons/migrator.php:2427
|
2328 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: src/addons/migrator.php:2421
|
2332 |
msgid "Or, send a backup to another site"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: src/addons/migrator.php:2128, src/admin.php:736
|
2336 |
msgid "Send"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: src/addons/migrator.php:2122, src/admin.php:727
|
2340 |
msgid "Send to site:"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: src/addons/migrator.php:2120
|
2344 |
msgid "No receiving sites have yet been added."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: src/addons/migrator.php:2101
|
2348 |
msgid "It is for sending backups to the following site: "
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: src/addons/migrator.php:2101
|
2352 |
msgid "The key was successfully added."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: src/addons/migrator.php:2085
|
2356 |
msgid "The entered key does not belong to a remote site (it belongs to this one)."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: src/addons/migrator.php:2074, src/addons/migrator.php:2076,
|
2360 |
+
#: src/addons/migrator.php:2080
|
2361 |
msgid "The entered key was corrupt - please try again."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: src/addons/migrator.php:2072
|
2365 |
msgid "The entered key was the wrong length - please try again."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: src/addons/migrator.php:2062
|
2369 |
msgid "key"
|
2370 |
msgstr ""
|
2371 |
|
2401 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: src/admin.php:725
|
2405 |
msgid "Resetting..."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: src/addons/migrator.php:2431, src/admin.php:724
|
2409 |
msgid "Add site"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: src/admin.php:723
|
2413 |
msgid "Adding..."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: src/udaddons/options.php:322
|
2417 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2418 |
msgstr ""
|
2419 |
|
2433 |
msgid "Go here to re-enter your password."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: src/addons/migrator.php:257
|
2437 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: src/addons/migrator.php:215
|
2441 |
msgid "To import a backup set, go to the \"Existing Backups\" tab"
|
2442 |
msgstr ""
|
2443 |
|
2445 |
msgid "To restore using any of the backup sets below, press the button."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: src/admin.php:715, src/admin.php:741, src/admin.php:742
|
2449 |
msgid "You have made changes to your settings, and not saved."
|
2450 |
msgstr ""
|
2451 |
|
2457 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1941,
|
2461 |
#: src/addons/onedrive.php:1074
|
2462 |
msgid "For longer help, including screenshots, follow this link."
|
2463 |
msgstr ""
|
2487 |
msgid "Please re-authorize the connection to your %s account."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: src/methods/email.php:96
|
2491 |
msgid "configure it here"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680
|
2495 |
msgid "To remove the block, please go here."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: src/addons/s3-enhanced.php:473
|
2499 |
msgid "Do remember to save your settings."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: src/addons/s3-enhanced.php:473
|
2503 |
msgid "You are now using a IAM user account to access your bucket."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: src/addons/s3-enhanced.php:388
|
2507 |
msgid "S3 bucket"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/addons/s3-enhanced.php:378
|
2511 |
msgid "China (Beijing) (restricted)"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/addons/s3-enhanced.php:377
|
2515 |
msgid "South America (Sao Paulo)"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: src/addons/s3-enhanced.php:376
|
2519 |
msgid "Asia Pacific (Tokyo)"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: src/addons/s3-enhanced.php:374
|
2523 |
msgid "Asia Pacific (Sydney)"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: src/addons/s3-enhanced.php:373
|
2527 |
msgid "Asia Pacific (Singapore)"
|
2528 |
msgstr ""
|
2529 |
|
2571 |
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."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: src/addons/s3-enhanced.php:425
|
2575 |
msgid "Create new IAM user and S3 bucket"
|
2576 |
msgstr ""
|
2577 |
|
2636 |
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)"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: src/methods/s3.php:922
|
2640 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2641 |
msgstr ""
|
2642 |
|
2649 |
msgstr ""
|
2650 |
|
2651 |
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2652 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:873,
|
2653 |
#: src/udaddons/updraftplus-addons.php:887
|
2654 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2658 |
#: src/udaddons/updraftplus-addons.php:887
|
2659 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:680,
|
2663 |
#: src/udaddons/updraftplus-addons.php:887
|
2664 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2665 |
msgstr ""
|
2686 |
|
2687 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2688 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2689 |
+
#: src/templates/wp-admin/settings/tab-addons.php:289
|
2690 |
msgid "UpdraftPlus Premium"
|
2691 |
msgstr ""
|
2692 |
|
2699 |
msgid "Dismiss (for %s months)"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: src/addons/fixtime.php:447
|
2703 |
msgid "(at same time as files backup)"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: src/admin.php:3443
|
2707 |
msgid "No backup has been completed"
|
2708 |
msgstr ""
|
2709 |
|
2736 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: src/methods/s3.php:179, src/methods/s3.php:180, src/methods/s3.php:181,
|
2740 |
+
#: src/methods/s3.php:189, src/methods/s3.php:190, src/methods/s3.php:191
|
2741 |
msgid "%s Error: Failed to initialise"
|
2742 |
msgstr ""
|
2743 |
|
2746 |
msgid "or"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: src/admin.php:709
|
2750 |
msgid "You did not select any components to restore. Please select at least one, and then try again."
|
2751 |
msgstr ""
|
2752 |
|
2777 |
msgid "Check this box to have a basic report sent to"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: src/admin.php:3457
|
2781 |
msgctxt "i.e. Non-automatic"
|
2782 |
msgid "Manual"
|
2783 |
msgstr ""
|
2791 |
msgid "Change Lock Settings"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: src/addons/morefiles.php:271
|
2795 |
msgid "Any other file/directory on your server that you wish to back up"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: src/admin.php:2545
|
2799 |
msgid "For even more features and personal support, check out "
|
2800 |
msgstr ""
|
2801 |
|
2804 |
msgstr ""
|
2805 |
|
2806 |
#: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
|
2807 |
+
#: src/admin.php:714
|
2808 |
msgid "Automatic backup before update"
|
2809 |
msgstr ""
|
2810 |
|
2865 |
msgstr ""
|
2866 |
|
2867 |
#: src/addons/lockadmin.php:156,
|
2868 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:8
|
2869 |
msgid "Lock access to the UpdraftPlus settings page"
|
2870 |
msgstr ""
|
2871 |
|
2881 |
msgid "The admin password has now been removed."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: src/addons/morefiles.php:154
|
2885 |
msgid "(learn more about this significant option)"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: src/udaddons/options.php:265
|
2889 |
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."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: src/admin.php:2986, src/admin.php:4003
|
2893 |
msgid "View Log"
|
2894 |
msgstr ""
|
2895 |
|
2906 |
msgid "and retain this many scheduled backups"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: src/admin.php:3413
|
2910 |
msgid "incremental backup; base backup: %s"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: src/templates/wp-admin/advanced/lock-admin.php:19
|
2914 |
msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
|
2915 |
msgstr ""
|
2916 |
|
2918 |
msgid "Upload files into UpdraftPlus."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: src/admin.php:959, src/includes/class-commands.php:391,
|
2922 |
#: src/templates/wp-admin/settings/tab-status.php:22
|
2923 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: src/class-updraftplus.php:4274
|
2927 |
msgid "Backup label:"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: src/addons/backblaze.php:205, src/admin.php:2056
|
2931 |
msgid "Error: unexpected file read fail"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: src/backup.php:3372
|
2935 |
msgid "check your log for more details."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: src/backup.php:3370
|
2939 |
msgid "your web hosting account appears to be full; please see: %s"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: src/backup.php:3368
|
2943 |
msgid "A zip error occurred"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: src/addons/reporting.php:66
|
2947 |
msgid "Your label for this backup (optional)"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1192
|
2951 |
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."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:926
|
2955 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:922
|
2959 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:790
|
2963 |
msgid "You need to supply both an email address and a password"
|
2964 |
msgstr ""
|
2965 |
|
2967 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: src/class-updraftplus.php:4293
|
2971 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: src/class-updraftplus.php:4293
|
2975 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: src/addons/migrator.php:1239
|
2979 |
msgid "already done"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: src/addons/migrator.php:1196
|
2983 |
msgid "skipped (not in list)"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: src/addons/migrator.php:1196, src/addons/migrator.php:1239,
|
2987 |
+
#: src/addons/migrator.php:1373
|
2988 |
msgid "Search and replacing table:"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: src/addons/migrator.php:373
|
2992 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: src/addons/migrator.php:373
|
2996 |
msgid "These tables only"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: src/addons/migrator.php:372
|
3000 |
msgid "Rows per batch"
|
3001 |
msgstr ""
|
3002 |
|
3008 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: src/class-updraftplus.php:4266
|
3012 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: src/class-updraftplus.php:4266
|
3016 |
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."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: src/class-updraftplus.php:4266
|
3020 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: src/class-updraftplus.php:4266
|
3024 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3025 |
msgstr ""
|
3026 |
|
3049 |
msgid "UpdraftPlus is on social media - check us out!"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: src/admin.php:4070
|
3053 |
msgid "Why am I seeing this?"
|
3054 |
msgstr ""
|
3055 |
|
3061 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: src/admin.php:1995, src/admin.php:2007
|
3065 |
msgid "Start backup"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: src/class-updraftplus.php:4238, src/restorer.php:1055
|
3069 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: src/admin.php:3311
|
3073 |
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."
|
3074 |
msgstr ""
|
3075 |
|
3077 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: src/admin.php:2231
|
3081 |
msgid "This file could not be uploaded"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: src/admin.php:2194
|
3085 |
msgid "You will find more information about this in the Settings section."
|
3086 |
msgstr ""
|
3087 |
|
3101 |
msgid "Memory limit"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: src/class-updraftplus.php:4707, src/restorer.php:1608
|
3105 |
msgid "restoration"
|
3106 |
msgstr ""
|
3107 |
|
3125 |
msgid "Backup succeeded"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: src/admin.php:3458, src/admin.php:3459, src/admin.php:3460,
|
3129 |
#: src/updraftplus.php:99, src/updraftplus.php:100
|
3130 |
msgid "Every %s hours"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:892
|
3134 |
msgid "search and replace"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: src/addons/migrator.php:375
|
3138 |
msgid "Go"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: src/addons/migrator.php:364
|
3142 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: src/addons/migrator.php:363
|
3146 |
msgid "This can easily destroy your site; so, use it with care!"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: src/addons/migrator.php:319, src/addons/migrator.php:371
|
3150 |
msgid "Replace with"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: src/addons/migrator.php:318, src/addons/migrator.php:370
|
3154 |
msgid "Search for"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: src/addons/migrator.php:317, src/addons/migrator.php:362,
|
3158 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
3159 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
3160 |
msgid "Search / replace database"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: src/addons/migrator.php:323
|
3164 |
msgid "search term"
|
3165 |
msgstr ""
|
3166 |
|
3176 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: src/methods/googledrive.php:1199
|
3180 |
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."
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: src/admin.php:3814
|
3184 |
msgid "You have not yet made any backups."
|
3185 |
msgstr ""
|
3186 |
|
3200 |
msgid "Free disk space in account:"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: src/admin.php:4706, src/templates/wp-admin/settings/tab-status.php:27
|
3204 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: src/admin.php:540, src/admin.php:683, src/admin.php:1843,
|
3208 |
#: src/includes/deprecated-actions.php:29,
|
3209 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
3210 |
#: src/templates/wp-admin/settings/tab-bar.php:6
|
3215 |
msgid "Current Status"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: src/admin.php:964
|
3219 |
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."
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: src/admin.php:964
|
3223 |
msgid "To make a backup, just press the Backup Now button."
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: src/admin.php:964
|
3227 |
msgid "Welcome to UpdraftPlus!"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: src/addons/moredatabase.php:323
|
3231 |
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)."
|
3232 |
msgstr ""
|
3233 |
|
3295 |
msgid "user"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: src/class-updraftplus.php:1856
|
3299 |
msgid "External database (%s)"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: src/methods/googledrive.php:1199
|
3303 |
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."
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: src/methods/googledrive.php:494
|
3307 |
msgid "failed to access parent folder"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3311 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:434,
|
3312 |
+
#: src/methods/googledrive.php:447
|
3313 |
msgid "However, subsequent access attempts failed:"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: src/addons/wp-cli.php:388, src/admin.php:3839
|
3317 |
msgid "External database"
|
3318 |
msgstr ""
|
3319 |
|
3345 |
msgid "use UpdraftPlus Premium"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: src/class-updraftplus.php:4120
|
3349 |
msgid "Decryption failed. The database file is encrypted."
|
3350 |
msgstr ""
|
3351 |
|
3366 |
msgid "database connection attempt failed."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: src/addons/migrator.php:1127
|
3370 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
3371 |
msgstr ""
|
3372 |
|
3428 |
msgid "Failed to upload %s"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
3432 |
msgid "Success:"
|
3433 |
msgstr ""
|
3434 |
|
3436 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:612
|
3440 |
msgid "(You appear to be already authenticated)."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: src/methods/dropbox.php:608
|
3444 |
msgid "Dropbox"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:608
|
3448 |
msgid "Authenticate with %s"
|
3449 |
msgstr ""
|
3450 |
|
3476 |
msgstr ""
|
3477 |
|
3478 |
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3479 |
+
#: src/methods/dropbox.php:665, src/methods/googledrive.php:1278
|
3480 |
msgid "Account holder's name: %s."
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: src/methods/googledrive.php:1255
|
3484 |
msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: src/methods/googledrive.php:1242
|
3488 |
msgid "It is an ID number internal to Google Drive"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: src/methods/googledrive.php:1242
|
3492 |
msgid "<strong>This is NOT a folder name</strong>."
|
3493 |
msgstr ""
|
3494 |
|
3495 |
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3496 |
+
#: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248
|
3497 |
msgid "Folder"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3501 |
+
#: src/methods/googledrive.php:1152
|
3502 |
msgid "%s download: failed: file not found"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
|
3506 |
msgid "Name: %s."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: src/methods/googledrive.php:208
|
3510 |
msgid "Google Drive list files: failed to access parent folder"
|
3511 |
msgstr ""
|
3512 |
|
3531 |
msgid "Fetch"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: src/addons/migrator.php:488,
|
3535 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
|
3536 |
#: src/templates/wp-admin/settings/form-contents.php:190
|
3537 |
msgid "This feature requires %s version %s or later"
|
3541 |
msgid "Failed to unpack the archive"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: src/class-updraftplus.php:1380
|
3545 |
msgid "Error - failed to download the file"
|
3546 |
msgstr ""
|
3547 |
|
3565 |
msgid "password/key"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: src/addons/migrator.php:2450, src/addons/sftp.php:451, src/admin.php:730,
|
3569 |
+
#: src/admin.php:4995
|
3570 |
msgid "Key"
|
3571 |
msgstr ""
|
3572 |
|
3582 |
msgid "SCP/SFTP password/key"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3586 |
msgid "Files backup (created by %s)"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: src/addons/wp-cli.php:400, src/admin.php:3883
|
3590 |
msgid "Files and database WordPress backup (created by %s)"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: src/addons/importer.php:276, src/admin.php:3877,
|
3594 |
#: src/includes/class-backup-history.php:349
|
3595 |
msgid "Backup created by: %s."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: src/addons/wp-cli.php:382, src/admin.php:3837
|
3599 |
msgid "Database (created by %s)"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: src/addons/wp-cli.php:380, src/admin.php:3831, src/admin.php:3879
|
3603 |
msgid "unknown source"
|
3604 |
msgstr ""
|
3605 |
|
3611 |
msgid "Upload backup files"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: src/admin.php:2246
|
3615 |
msgid "This backup was created by %s, and can be imported."
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: src/admin.php:993
|
3619 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: src/admin.php:993
|
3623 |
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."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: src/admin.php:695, src/includes/class-backup-history.php:356
|
3627 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: src/admin.php:694
|
3631 |
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."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: src/admin.php:694, src/admin.php:695,
|
3635 |
#: src/includes/class-backup-history.php:356
|
3636 |
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))."
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: src/admin.php:3880, src/includes/class-wpadmin-commands.php:152,
|
3640 |
#: src/restorer.php:1577
|
3641 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3642 |
msgstr ""
|
3657 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: src/addons/backblaze.php:579, src/methods/cloudfiles.php:234,
|
3661 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3662 |
msgid "No settings were found"
|
3663 |
msgstr ""
|
3666 |
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."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: src/admin.php:661
|
3670 |
msgid "Rescanning remote and local storage for backup sets..."
|
3671 |
msgstr ""
|
3672 |
|
3675 |
msgid "(Read more)"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: src/addons/reporting.php:487
|
3679 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: src/addons/morefiles.php:521
|
3683 |
msgid "No backup of location: there was nothing found to back up"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: src/addons/moredatabase.php:241, src/addons/morefiles.php:310,
|
3687 |
+
#: src/addons/morefiles.php:331
|
3688 |
msgid "Remove"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: src/methods/s3.php:873
|
3692 |
msgid "Other %s FAQs."
|
3693 |
msgstr ""
|
3694 |
|
3696 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: src/addons/morefiles.php:468, src/admin.php:3562
|
3700 |
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."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330,
|
3704 |
#: src/restorer.php:1608
|
3705 |
msgid "Your hosting company must enable these functions before %s can work."
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: src/class-updraftplus.php:4707, src/methods/ftp.php:330
|
3709 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3710 |
msgstr ""
|
3711 |
|
3725 |
msgid "Backup created by:"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: src/udaddons/options.php:490
|
3729 |
msgid "Available to claim on this site"
|
3730 |
msgstr ""
|
3731 |
|
3775 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: src/class-updraftplus.php:4757
|
3779 |
msgid "The attempt to undo the double-compression succeeded."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: src/class-updraftplus.php:4734, src/class-updraftplus.php:4755
|
3783 |
msgid "The attempt to undo the double-compression failed."
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: src/class-updraftplus.php:4727
|
3787 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: src/includes/class-wpadmin-commands.php:315
|
3791 |
msgid "Constants"
|
3792 |
msgstr ""
|
3793 |
|
3803 |
msgid "please wait for the rescheduled attempt"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: src/addons/reporting.php:217
|
3807 |
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."
|
3808 |
msgstr ""
|
3809 |
|
3816 |
msgid "Errors occurred:"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/admin.php:4089
|
3820 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
3821 |
msgstr ""
|
3822 |
|
3840 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: src/admin.php:968, src/class-updraftplus.php:865
|
3844 |
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)"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: src/addons/migrator.php:290
|
3848 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
3849 |
msgstr ""
|
3850 |
|
3853 |
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."
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: src/addons/moredatabase.php:137, src/admin.php:1587
|
3857 |
msgid "Messages:"
|
3858 |
msgstr ""
|
3859 |
|
3951 |
msgstr ""
|
3952 |
|
3953 |
#: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
|
3954 |
+
#: src/methods/cloudfiles.php:492
|
3955 |
msgid "Cloud Files Container"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:487
|
3959 |
msgid "Cloud Files API Key"
|
3960 |
msgstr ""
|
3961 |
|
4014 |
msgid "Authorisation failed (check your credentials)"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/includes/class-commands.php:718, src/methods/updraftvault.php:630,
|
4018 |
+
#: src/udaddons/options.php:257
|
4019 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: src/admin.php:708, src/central/bootstrap.php:560
|
4023 |
msgid "Create"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: src/admin.php:670
|
4027 |
msgid "Trying..."
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: src/admin.php:669
|
4031 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: src/admin.php:680, src/admin.php:4387
|
4035 |
msgid "Error data:"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: src/admin.php:4041
|
4039 |
msgid "Backup does not exist in the backup history"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: src/admin.php:2921
|
4043 |
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."
|
4044 |
msgstr ""
|
4045 |
|
4067 |
msgid "Moving old data out of the way..."
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/reporting.php:478
|
4071 |
msgid "Add another address..."
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: src/addons/reporting.php:463
|
4075 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: src/addons/reporting.php:437
|
4079 |
msgid "Email reports"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/class-updraftplus.php:1864, src/class-updraftplus.php:1869
|
4083 |
msgid "%s checksum: %s"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: src/class-updraftplus.php:1837, src/class-updraftplus.php:1839
|
4087 |
msgid "files: %s"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/addons/reporting.php:391
|
4091 |
msgid "Use the \"Reporting\" section to configure the email addresses to be used."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: src/addons/reporting.php:267
|
4095 |
msgid "Debugging information"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: src/addons/reporting.php:222, src/admin.php:3770
|
4099 |
msgid "Uploaded to:"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: src/addons/reporting.php:221
|
4103 |
msgid "Time taken:"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: src/addons/reporting.php:212
|
4107 |
msgid "Warnings"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: src/addons/reporting.php:197
|
4111 |
msgid "Errors"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: src/addons/reporting.php:194
|
4115 |
msgid "Errors / warnings:"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: src/addons/morefiles.php:142, src/addons/morefiles.php:143,
|
4119 |
+
#: src/addons/reporting.php:183
|
4120 |
msgid "Contains:"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: src/addons/reporting.php:182
|
4124 |
msgid "Backup began:"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: src/addons/reporting.php:170
|
4128 |
msgid "Backup Report"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: src/addons/reporting.php:165
|
4132 |
msgid "%d hours, %d minutes, %d seconds"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: src/addons/reporting.php:151
|
4136 |
msgid "%d errors, %d warnings"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:750,
|
4140 |
+
#: src/methods/dropbox.php:772
|
4141 |
msgid "%s authentication"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:534,
|
4145 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:750,
|
4146 |
+
#: src/methods/dropbox.php:772, src/methods/dropbox.php:787,
|
4147 |
+
#: src/methods/dropbox.php:800, src/methods/dropbox.php:943
|
4148 |
msgid "%s error: %s"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:577
|
4152 |
msgid "%s logo"
|
4153 |
msgstr ""
|
4154 |
|
4156 |
msgid "%s did not return the expected response - check your log file for more details"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: src/methods/s3.php:312
|
4160 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: src/methods/email.php:97
|
4164 |
msgid "For more options, use the \"%s\" add-on."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: src/methods/email.php:96
|
4168 |
msgid "Your site's admin email address (%s) will be used."
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: src/admin.php:717, src/admin.php:2723, src/methods/updraftvault.php:319,
|
4172 |
+
#: src/methods/updraftvault.php:362
|
4173 |
msgid "Connect"
|
4174 |
msgstr ""
|
4175 |
|
4177 |
msgid "For more reporting features, use the Reporting add-on."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: src/class-updraftplus.php:4201
|
4181 |
msgid "(version: %s)"
|
4182 |
msgstr ""
|
4183 |
|
|
|
4184 |
#: src/admin.php:658
|
4185 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: src/addons/reporting.php:521, src/admin.php:657
|
4189 |
+
msgid "When the Email storage method is enabled, also send the backup"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: src/addons/reporting.php:181, src/backup.php:1102
|
4193 |
msgid "Latest status:"
|
4194 |
msgstr ""
|
4195 |
|
4201 |
msgid "Backed up: %s"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: src/addons/reporting.php:264, src/backup.php:1052
|
4205 |
msgid "The log file has been attached to this email."
|
4206 |
msgstr ""
|
4207 |
|
4229 |
msgid "Files and database"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: src/options.php:197
|
4233 |
msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: src/options.php:197
|
4237 |
msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: src/options.php:197
|
4241 |
msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: src/options.php:197
|
4245 |
msgid "This is a WordPress multi-site (a.k.a. network) installation."
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: src/options.php:197
|
4249 |
msgid "UpdraftPlus warning:"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/udaddons/options.php:496
|
4253 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: src/udaddons/options.php:482
|
4257 |
msgid "please follow this link to update the plugin in order to activate it"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/udaddons/options.php:479
|
4261 |
msgid "please follow this link to update the plugin in order to get it"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: src/udaddons/options.php:469, src/udaddons/options.php:471
|
4265 |
msgid "latest"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: src/udaddons/options.php:467
|
4269 |
msgid "Your version: %s"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: src/udaddons/options.php:465, src/udaddons/options.php:465
|
4273 |
msgid "You've got it"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: src/udaddons/options.php:426
|
4277 |
msgid "UpdraftPlus Support"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: src/udaddons/options.php:384
|
4281 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: src/udaddons/options.php:373, src/udaddons/updraftplus-addons.php:301
|
4285 |
msgid "UpdraftPlus Addons"
|
4286 |
msgstr ""
|
4287 |
|
4289 |
msgid "An update is available for UpdraftPlus - please follow this link to get it."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
4293 |
#: src/udaddons/updraftplus-addons.php:933
|
4294 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:929
|
4298 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: src/methods/updraftvault.php:682, src/udaddons/updraftplus-addons.php:892
|
4302 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
4303 |
msgstr ""
|
4304 |
|
4310 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: src/methods/email.php:97,
|
4314 |
#: src/templates/wp-admin/settings/form-contents.php:251,
|
4315 |
+
#: src/templates/wp-admin/settings/tab-addons.php:219,
|
4316 |
+
#: src/templates/wp-admin/settings/tab-addons.php:220
|
4317 |
msgid "Reporting"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: src/admin.php:4992
|
4321 |
msgid "Options (raw)"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: src/addons/reporting.php:519, src/admin.php:656
|
4325 |
msgid "Send a report only when there are warnings/errors"
|
4326 |
msgstr ""
|
4327 |
|
4337 |
msgid "See also the \"More Files\" add-on from our shop."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: src/backup.php:3359, src/class-updraftplus.php:878
|
4341 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: src/class-updraftplus.php:862
|
4345 |
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)"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: src/udaddons/options.php:519
|
4349 |
msgid "Manage Addons"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: src/udaddons/options.php:497, src/udaddons/options.php:497
|
4353 |
msgid "Buy It"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: src/udaddons/options.php:496
|
4357 |
msgid "Get it from the UpdraftPlus.Com Store"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: src/udaddons/options.php:490, src/udaddons/options.php:492
|
4361 |
msgid "activate it on this site"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: src/udaddons/options.php:492
|
4365 |
msgid "You have an inactive purchase"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: src/udaddons/options.php:482
|
4369 |
msgid "Assigned to this site"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: src/udaddons/options.php:479
|
4373 |
msgid "Available for this site (via your all-addons purchase)"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: src/udaddons/options.php:473
|
4377 |
msgid "(apparently a pre-release or withdrawn release)"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: src/udaddons/options.php:428
|
4381 |
msgid "Go here"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: src/udaddons/options.php:428
|
4385 |
msgid "Need to get support?"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: src/udaddons/options.php:410
|
4389 |
msgid "An error occurred when trying to retrieve your add-ons."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: src/udaddons/options.php:324
|
4393 |
msgid "An unknown response was received. Response was:"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: src/udaddons/options.php:323
|
4397 |
msgid "Claim not granted - your account login details were wrong"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: src/udaddons/options.php:321
|
4401 |
msgid "Please wait whilst we make the claim..."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/udaddons/options.php:275
|
4405 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: src/udaddons/options.php:268
|
4409 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: src/udaddons/options.php:264
|
4413 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: src/udaddons/options.php:263
|
4417 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: src/admin.php:2721
|
4421 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
4422 |
msgstr ""
|
4423 |
|
4461 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4465 |
msgid "Without it, encryption will be a lot slower."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: src/addons/moredatabase.php:318, src/addons/moredatabase.php:410
|
4469 |
msgid "Your web-server does not have the %s module installed."
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1267
|
4473 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4474 |
msgstr ""
|
4475 |
|
4477 |
msgid "Drop backup files here"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: src/admin.php:668
|
4481 |
msgid "The web server returned an error code (try again, or check your web server logs)"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: src/admin.php:666
|
4485 |
msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: src/addons/wp-cli.php:93, src/admin.php:663
|
4489 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4490 |
msgstr ""
|
4491 |
|
4505 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:143,
|
4509 |
+
#: src/methods/stream-base.php:148
|
4510 |
msgid "Upload failed"
|
4511 |
msgstr ""
|
4512 |
|
4514 |
msgid "You can send a backup to more than one destination with an add-on."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: src/admin.php:3144
|
4518 |
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."
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: src/admin.php:3043
|
4522 |
msgid "(%s%%, file %s of %s)"
|
4523 |
msgstr ""
|
4524 |
|
4547 |
msgid "SCP/SFTP host setting"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: src/methods/email.php:67
|
4551 |
msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
|
4552 |
msgstr ""
|
4553 |
|
4555 |
msgid "Backup is of: %s."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/admin.php:756
|
4559 |
msgid "%s settings test result:"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: src/admin.php:3945, src/admin.php:3947
|
4563 |
msgid "(Not finished)"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: src/admin.php:3947
|
4567 |
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."
|
4568 |
msgstr ""
|
4569 |
|
4575 |
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)."
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: src/admin.php:3139
|
4579 |
msgid "Job ID: %s"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: src/admin.php:3124
|
4583 |
msgid "last activity: %ss ago"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: src/admin.php:3123
|
4587 |
msgid "next resumption: %d (after %ss)"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: src/admin.php:3106, src/central/bootstrap.php:442,
|
4591 |
+
#: src/central/bootstrap.php:449, src/methods/updraftvault.php:410,
|
4592 |
+
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
4593 |
msgid "Unknown"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/admin.php:3057
|
4597 |
msgid "Backup finished"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/admin.php:3052
|
4601 |
msgid "Waiting until scheduled time to retry because of errors"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/admin.php:3048
|
4605 |
msgid "Pruning old backup sets"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: src/admin.php:3036
|
4609 |
msgid "Uploading files to remote storage"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: src/admin.php:3104
|
4613 |
msgid "Encrypted database"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: src/admin.php:3096
|
4617 |
msgid "Encrypting database"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: src/admin.php:3070
|
4621 |
msgid "Created database backup"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: src/admin.php:3083
|
4625 |
msgid "table: %s"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: src/admin.php:3081
|
4629 |
msgid "Creating database backup"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: src/admin.php:3031
|
4633 |
msgid "Created file backup zips"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: src/admin.php:3018
|
4637 |
msgid "Creating file backup zips"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: src/admin.php:3013
|
4641 |
msgid "Backup begun"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: src/admin.php:2846
|
4645 |
msgid "Backups in progress:"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: src/admin.php:972
|
4649 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4650 |
msgstr ""
|
4651 |
|
4661 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: src/class-updraftplus.php:2958
|
4665 |
msgid "The backup has not finished; a resumption is scheduled"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: src/class-updraftplus.php:2142
|
4669 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4670 |
msgstr ""
|
4671 |
|
4674 |
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)."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: src/admin.php:2572
|
4678 |
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)."
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: src/addons/autobackup.php:1085, src/admin.php:710
|
4682 |
msgid "Proceed with update"
|
4683 |
msgstr ""
|
4684 |
|
4727 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4731 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: src/addons/morefiles.php:256, src/addons/morefiles.php:257
|
4735 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: src/addons/morefiles.php:203
|
4739 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: src/addons/morefiles.php:193
|
4743 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
4744 |
msgstr ""
|
4745 |
|
4754 |
msgid "Support"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: src/class-updraftplus.php:4506
|
4758 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: src/class-updraftplus.php:4498
|
4762 |
msgid "This database backup is missing core WordPress tables: %s"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: src/class-updraftplus.php:4259
|
4766 |
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."
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: src/class-updraftplus.php:4258, src/class-updraftplus.php:4265
|
4770 |
msgid "%s version: %s"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: src/class-updraftplus.php:4137
|
4774 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: src/addons/autobackup.php:1053, src/admin.php:807,
|
4778 |
#: src/includes/updraftplus-notices.php:171
|
4779 |
msgid "Be safe with an automatic backup"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: src/admin.php:2525
|
4783 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: src/admin.php:704
|
4787 |
msgid "The file was uploaded."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/admin.php:703
|
4791 |
msgid "Unknown server response status:"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/admin.php:702
|
4795 |
msgid "Unknown server response:"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/admin.php:701
|
4799 |
msgid "This decryption key will be attempted:"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: src/admin.php:700
|
4803 |
msgid "Follow this link to attempt decryption and download the database file to your computer."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: src/admin.php:699
|
4807 |
msgid "Upload error"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: src/admin.php:698
|
4811 |
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)."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: src/admin.php:697
|
4815 |
msgid "Upload error:"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: src/admin.php:696
|
4819 |
msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: src/admin.php:687
|
4823 |
msgid "Download to your computer"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: src/admin.php:686
|
4827 |
msgid "Delete from your web server"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: src/admin.php:3917
|
4831 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: src/admin.php:3914
|
4835 |
msgid "(%d archive(s) in set)."
|
4836 |
msgstr ""
|
4837 |
|
4839 |
msgid "Split archives every:"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/addons/moredatabase.php:278
|
4843 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/admin.php:677
|
4847 |
msgid "Warnings:"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: src/admin.php:676
|
4851 |
msgid "Error: the server sent an empty response."
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: src/admin.php:2260
|
4855 |
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?"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: src/includes/class-wpadmin-commands.php:227
|
4859 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4863 |
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."
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4867 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4868 |
msgstr ""
|
4869 |
|
4887 |
msgid "No such backup set exists"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: src/admin.php:1389
|
4891 |
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"
|
4892 |
msgstr ""
|
4893 |
|
4895 |
msgid "Moving unpacked backup into place..."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: src/backup.php:3060, src/backup.php:3315
|
4899 |
msgid "Failed to open the zip file (%s) - %s"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: src/addons/morefiles.php:181
|
4903 |
msgid "WordPress root directory server path: %s"
|
4904 |
msgstr ""
|
4905 |
|
4907 |
msgid "%s end-point"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: src/methods/s3.php:850
|
4911 |
msgid "... and many more!"
|
4912 |
msgstr ""
|
4913 |
|
4916 |
msgid "S3 (Compatible)"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: src/admin.php:1299
|
4920 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: src/admin.php:4238
|
4924 |
msgid "Looking for %s archive: file name: %s"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/admin.php:4199
|
4928 |
msgid "Final checks"
|
4929 |
msgstr ""
|
4930 |
|
4936 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: src/admin.php:3551
|
4940 |
msgid "Your wp-content directory server path: %s"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: src/admin.php:693
|
4944 |
msgid "Raw backup history"
|
4945 |
msgstr ""
|
4946 |
|
4948 |
msgid "Show raw backup and file list"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: src/admin.php:675
|
4952 |
msgid "Processing files - please wait..."
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: src/admin.php:4389,
|
4956 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4957 |
msgid "Please consult this FAQ for help on what to do about it."
|
4958 |
msgstr ""
|
4961 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: src/class-updraftplus.php:4145
|
4965 |
msgid "Failed to open database file."
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: src/admin.php:4957
|
4969 |
msgid "Known backups (raw)"
|
4970 |
msgstr ""
|
4971 |
|
4977 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: src/admin.php:4258
|
4981 |
msgid "file is size:"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:476,
|
4985 |
+
#: src/addons/migrator.php:479, src/addons/migrator.php:482, src/admin.php:972,
|
4986 |
+
#: src/admin.php:2530, src/backup.php:3366, src/class-updraftplus.php:4379,
|
4987 |
+
#: src/class-updraftplus.php:4379, src/updraftplus.php:156
|
4988 |
msgid "Go here for more information."
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: src/admin.php:674
|
4992 |
msgid "Some files are still downloading or being processed - please wait."
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: src/class-updraftplus.php:4228, src/class-updraftplus.php:4249
|
4996 |
msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: src/addons/fixtime.php:570
|
5000 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: src/addons/fixtime.php:570
|
5004 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5005 |
msgstr ""
|
5006 |
|
5038 |
|
5039 |
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
5040 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
5041 |
+
#: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
|
5042 |
+
#: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
|
5043 |
+
#: src/methods/stream-base.php:335
|
5044 |
msgid "%s Error"
|
5045 |
msgstr ""
|
5046 |
|
5048 |
msgid "%s error - failed to upload file"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: src/class-updraftplus.php:1269, src/methods/cloudfiles.php:211
|
5052 |
msgid "%s error - failed to re-assemble chunks"
|
5053 |
msgstr ""
|
5054 |
|
5062 |
msgid "%s authentication failed"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
+
#: src/addons/googlecloud.php:438, src/addons/migrator.php:574,
|
5066 |
+
#: src/admin.php:2231, src/admin.php:2252, src/admin.php:2260,
|
5067 |
+
#: src/class-updraftplus.php:1014, src/class-updraftplus.php:1020,
|
5068 |
+
#: src/class-updraftplus.php:4118, src/class-updraftplus.php:4120,
|
5069 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4289,
|
5070 |
+
#: src/class-updraftplus.php:4358, src/methods/googledrive.php:395,
|
5071 |
+
#: src/methods/s3.php:341
|
5072 |
msgid "Error: %s"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
+
#: src/admin.php:3476
|
5076 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: src/admin.php:3474
|
5080 |
msgid "Backup directory specified does <b>not</b> exist."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/admin.php:3151, src/admin.php:3425
|
5084 |
msgid "Warning: %s"
|
5085 |
msgstr ""
|
5086 |
|
5088 |
msgid "Last backup job run:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/backup.php:3086
|
5092 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5093 |
msgstr ""
|
5094 |
|
5108 |
msgid "Warnings encountered:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:2946
|
5112 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: src/class-updraftplus.php:891
|
5116 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: src/addons/migrator.php:582
|
5120 |
msgid "New site:"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: src/addons/migrator.php:557
|
5124 |
msgid "Migrated site (from UpdraftPlus)"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: src/addons/migrator.php:497
|
5128 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: src/addons/migrator.php:496
|
5132 |
msgid "Information needed to continue:"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: src/addons/migrator.php:440
|
5136 |
msgid "Network activating theme:"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: src/addons/migrator.php:430
|
5140 |
msgid "Processed plugin:"
|
5141 |
msgstr ""
|
5142 |
|
5148 |
msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: src/methods/s3.php:859
|
5152 |
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."
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: src/methods/s3.php:1164
|
5156 |
msgid "Please check your access credentials."
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1142
|
5160 |
msgid "The error reported by %s was:"
|
5161 |
msgstr ""
|
5162 |
|
5164 |
msgid "Please supply the requested information, and then continue."
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: src/class-updraftplus.php:4300, src/restorer.php:1825
|
5168 |
msgid "Site information:"
|
5169 |
msgstr ""
|
5170 |
|
5172 |
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."
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: src/admin.php:2525, src/class-updraftplus.php:4293, src/restorer.php:2196
|
5176 |
msgid "Warning:"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: src/class-updraftplus.php:4282, src/class-updraftplus.php:4285,
|
5180 |
#: src/restorer.php:184
|
5181 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: src/admin.php:4226
|
5185 |
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."
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: src/admin.php:3623, src/methods/updraftvault.php:306
|
5189 |
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."
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:711
|
5193 |
msgid "Close"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
#: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
|
5197 |
+
#: src/admin.php:667, src/methods/remotesend.php:66,
|
5198 |
#: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
|
5199 |
#: src/methods/remotesend.php:242
|
5200 |
msgid "Unexpected response:"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: src/addons/reporting.php:517, src/admin.php:662
|
5204 |
msgid "To send to more than one address, separate each address with a comma."
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: src/admin.php:691
|
5208 |
msgid "PHP information"
|
5209 |
msgstr ""
|
5210 |
|
5240 |
msgid "Also delete from remote storage"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: src/admin.php:2873
|
5244 |
msgid "Latest UpdraftPlus.com news:"
|
5245 |
msgstr ""
|
5246 |
|
5257 |
msgid "News"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: src/admin.php:1639, src/includes/class-wpadmin-commands.php:492
|
5261 |
msgid "Backup set not found"
|
5262 |
msgstr ""
|
5263 |
|
5279 |
msgid "Blog link"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: src/admin.php:755
|
5283 |
msgid "Testing %s Settings..."
|
5284 |
msgstr ""
|
5285 |
|
5287 |
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."
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/admin.php:988
|
5291 |
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."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/admin.php:988
|
5295 |
msgid "Notice"
|
5296 |
msgstr ""
|
5297 |
|
5303 |
msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/admin.php:673
|
5307 |
msgid "Begun looking for this entity"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: src/methods/s3.php:482
|
5311 |
+
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials.1"
|
5312 |
+
msgstr ""
|
5313 |
+
|
5314 |
#: src/addons/dropbox-folders.php:32
|
5315 |
msgid "Store at"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: src/addons/migrator.php:1542
|
5319 |
msgid "\"%s\" has no primary key, manual change needed on row %s."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: src/addons/migrator.php:1416
|
5323 |
msgid "rows: %d"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: src/addons/migrator.php:1290
|
5327 |
msgid "Time taken (seconds):"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: src/addons/migrator.php:1289, src/admin.php:678
|
5331 |
msgid "Errors:"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/addons/migrator.php:1288
|
5335 |
msgid "SQL update commands run:"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: src/addons/migrator.php:1287
|
5339 |
msgid "Changes made:"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: src/addons/migrator.php:1286
|
5343 |
msgid "Rows examined:"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: src/addons/migrator.php:1285
|
5347 |
msgid "Tables examined:"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: src/addons/migrator.php:1174
|
5351 |
msgid "Could not get list of tables"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: src/addons/migrator.php:1119
|
5355 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: src/addons/migrator.php:1108
|
5359 |
msgid "Nothing to do: the site URL is already: %s"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: src/addons/migrator.php:1072, src/addons/migrator.php:1076,
|
5363 |
+
#: src/addons/migrator.php:1080, src/addons/migrator.php:1085,
|
5364 |
+
#: src/addons/migrator.php:1089, src/addons/migrator.php:1094
|
5365 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: src/addons/migrator.php:1032
|
5369 |
msgid "Database: search and replace site URL"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: src/addons/migrator.php:892, src/addons/migrator.php:1271
|
5373 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
5374 |
msgstr ""
|
5375 |
|
5376 |
+
#: src/addons/migrator.php:890, src/addons/migrator.php:1269
|
5377 |
msgid "Failed: the %s operation was not able to start."
|
5378 |
msgstr ""
|
5379 |
|
5380 |
+
#: src/addons/migrator.php:549
|
5381 |
msgid "Search and replace site location in the database (migrate)"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: src/addons/migrator.php:549
|
5385 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: src/addons/multisite.php:661
|
5389 |
msgid "Blog uploads"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: src/addons/migrator.php:482, src/addons/multisite.php:654
|
5393 |
msgid "Must-use plugins"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: src/addons/multisite.php:184
|
5397 |
msgid "Multisite Install"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: src/addons/fixtime.php:570
|
5401 |
msgid "starting from next time it is"
|
5402 |
msgstr ""
|
5403 |
|
5427 |
|
5428 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5429 |
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5430 |
+
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
5431 |
#: src/udaddons/options.php:135
|
5432 |
msgid "Password"
|
5433 |
msgstr ""
|
5457 |
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."
|
5458 |
msgstr ""
|
5459 |
|
5460 |
+
#: src/addons/morefiles.php:661
|
5461 |
msgid "No backup of %s directories: there was nothing found to back up"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: src/addons/morefiles.php:295
|
5465 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: src/addons/morefiles.php:293
|
5469 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: src/addons/morefiles.php:272
|
5473 |
msgid "More Files"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: src/addons/morefiles.php:180
|
5477 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: src/addons/morefiles.php:173
|
5481 |
msgid "The above files comprise everything in a WordPress installation."
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: src/addons/morefiles.php:154
|
5485 |
msgid "Over-write wp-config.php"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
+
#: src/addons/morefiles.php:150, src/includes/class-wpadmin-commands.php:509
|
5489 |
msgid "WordPress Core"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:365
|
5493 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5494 |
msgstr ""
|
5495 |
|
5496 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5497 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3207,
|
5498 |
+
#: src/admin.php:3242, src/admin.php:3251, src/methods/addon-base-v2.php:299,
|
5499 |
+
#: src/methods/stream-base.php:351
|
5500 |
msgid "Failed"
|
5501 |
msgstr ""
|
5502 |
|
5504 |
msgid "WebDAV URL"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/methods/stream-base.php:335
|
5508 |
msgid "Local write failed: Failed to download"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/methods/stream-base.php:304
|
5512 |
msgid "Error opening remote file: Failed to download"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: src/methods/stream-base.php:125, src/methods/stream-base.php:129
|
5516 |
msgid "Chunk %s: A %s error occurred"
|
5517 |
msgstr ""
|
5518 |
|
5520 |
#: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
|
5521 |
#: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
|
5522 |
#: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
|
5523 |
+
#: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
|
5524 |
+
#: src/methods/stream-base.php:27, src/methods/stream-base.php:163,
|
5525 |
+
#: src/methods/stream-base.php:169, src/methods/stream-base.php:203,
|
5526 |
+
#: src/methods/stream-base.php:278
|
5527 |
msgid "No %s settings were found"
|
5528 |
msgstr ""
|
5529 |
|
5551 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:818
|
5555 |
msgid "Your %s account name: %s"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: src/methods/dropbox.php:808, src/methods/dropbox.php:830
|
5559 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: src/methods/dropbox.php:803, src/methods/dropbox.php:805
|
5563 |
msgid "you have authenticated your %s account"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5567 |
msgid "there's an add-on for that."
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5571 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5575 |
msgid "Backups are saved in"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: src/methods/dropbox.php:600, src/methods/dropbox.php:602
|
5579 |
msgid "Need to use sub-folders?"
|
5580 |
msgstr ""
|
5581 |
|
5588 |
msgid "You do not appear to be authenticated with Dropbox"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: src/methods/s3.php:1159
|
5592 |
msgid "The communication with %s was not encrypted."
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: src/methods/s3.php:1157
|
5596 |
msgid "The communication with %s was encrypted."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1154
|
5600 |
msgid "We accessed the bucket, and were able to create files within it."
|
5601 |
msgstr ""
|
5602 |
|
5603 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5604 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5605 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5606 |
msgstr ""
|
5607 |
|
5608 |
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5609 |
+
#: src/methods/s3.php:1152, src/methods/s3.php:1164
|
5610 |
msgid "Failure"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: src/addons/backblaze.php:494, src/methods/s3.php:1140
|
5614 |
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)."
|
5615 |
msgstr ""
|
5616 |
|
5617 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5618 |
+
#: src/methods/s3.php:1134
|
5619 |
msgid "Region"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5623 |
+
#: src/methods/s3.php:1114
|
5624 |
msgid "Failure: No bucket details were given."
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: src/methods/s3.php:1092
|
5628 |
msgid "API secret"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: src/methods/s3.php:940
|
5632 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: src/methods/s3.php:939
|
5636 |
msgid "%s location"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: src/methods/s3.php:935
|
5640 |
msgid "%s secret key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: src/methods/s3.php:931
|
5644 |
msgid "%s access key"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: src/methods/s3.php:871
|
5648 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: src/methods/s3.php:869
|
5652 |
msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: src/methods/s3.php:598, src/methods/s3.php:671, src/methods/s3.php:776
|
|
|
5656 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: src/methods/s3.php:759, src/methods/s3.php:769, src/methods/s3.php:805
|
5660 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: src/methods/s3.php:460
|
5664 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: src/methods/s3.php:456
|
5668 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/methods/s3.php:440
|
5672 |
msgid "%s chunk %s: upload failed"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/methods/s3.php:430
|
5676 |
msgid "%s error: file %s was shortened unexpectedly"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/methods/s3.php:408
|
5680 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/methods/email.php:92
|
5684 |
msgid "Note:"
|
5685 |
msgstr ""
|
5686 |
|
5688 |
msgid "WordPress Backup"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: src/methods/cloudfiles.php:575, src/methods/openstack-base.php:530
|
5692 |
msgid "We accessed the container, and were able to create files within it."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: src/methods/cloudfiles.php:571
|
5696 |
msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: src/methods/cloudfiles.php:544, src/methods/openstack-base.php:472
|
5700 |
msgid "Failure: No container details were given."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5704 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5705 |
+
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
5706 |
msgid "Username"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
+
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:519,
|
5710 |
+
#: src/methods/s3.php:1088
|
5711 |
msgid "API key"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: src/addons/migrator.php:323, src/addons/migrator.php:2062,
|
5715 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5716 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5717 |
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5718 |
+
#: src/admin.php:731, src/methods/addon-base-v2.php:291,
|
5719 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5720 |
+
#: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
|
5721 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5722 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5723 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5724 |
+
#: src/methods/s3.php:1088, src/methods/s3.php:1092
|
5725 |
msgid "Failure: No %s was given."
|
5726 |
msgstr ""
|
5727 |
|
5728 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5729 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
5730 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: src/methods/cloudfiles.php:483
|
5734 |
msgid "Cloud Files username"
|
5735 |
msgstr ""
|
5736 |
|
5757 |
msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: src/admin.php:754, src/methods/backup-module.php:315
|
5761 |
msgid "Test %s Settings"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
5765 |
+
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
5766 |
msgid "Error opening local file: Failed to download"
|
5767 |
msgstr ""
|
5768 |
|
5773 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5774 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5775 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5776 |
+
#: src/methods/s3.php:376, src/methods/s3.php:388, src/methods/s3.php:389
|
5777 |
msgid "%s Error: Failed to upload"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
5781 |
+
#: src/class-updraftplus.php:1154, src/methods/cloudfiles.php:130,
|
5782 |
+
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
5783 |
msgid "%s Error: Failed to open local file"
|
5784 |
msgstr ""
|
5785 |
|
5790 |
|
5791 |
#: src/addons/cloudfiles-enhanced.php:107,
|
5792 |
#: src/addons/cloudfiles-enhanced.php:120,
|
5793 |
+
#: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:554,
|
5794 |
+
#: src/methods/cloudfiles.php:557, src/methods/cloudfiles.php:560
|
5795 |
msgid "Cloud Files authentication failed"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: src/methods/googledrive.php:1262
|
5799 |
msgid "Authenticate with Google"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5803 |
+
#: src/methods/googledrive.php:1226
|
5804 |
msgid "Client Secret"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1223
|
5808 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5809 |
msgstr ""
|
5810 |
|
5811 |
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5812 |
+
#: src/methods/googledrive.php:1222
|
5813 |
msgid "Client ID"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5817 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1199
|
5821 |
msgid "Select 'Web Application' as the application type."
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1197
|
5825 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5826 |
msgstr ""
|
5827 |
|
5828 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5829 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
|
5830 |
+
#: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
|
5831 |
+
#: src/methods/googledrive.php:584
|
5832 |
msgid "Account is not authorized."
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
|
5836 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
5837 |
+
#: src/methods/stream-base.php:219
|
5838 |
msgid "Failed to upload to %s"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/methods/googledrive.php:523
|
5842 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: src/methods/googledrive.php:616, src/methods/googledrive.php:652
|
5846 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5847 |
msgstr ""
|
5848 |
|
5849 |
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5850 |
+
#: src/methods/googledrive.php:467
|
5851 |
msgid "you have authenticated your %s account."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5855 |
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5856 |
+
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:575,
|
5857 |
+
#: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
|
5858 |
+
#: src/methods/s3.php:1154, src/methods/stream-base.php:362
|
5859 |
msgid "Success"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:841,
|
5863 |
+
#: src/methods/dropbox.php:850, src/methods/googledrive.php:431
|
5864 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
|
5868 |
msgid "Authorization failed"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
|
5872 |
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."
|
5873 |
msgstr ""
|
5874 |
|
5891 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: src/addons/migrator.php:1954, src/admin.php:1327, src/admin.php:3210,
|
5895 |
+
#: src/admin.php:3244, src/admin.php:3248, src/admin.php:4256,
|
5896 |
#: src/restorer.php:2437, src/restorer.php:2542
|
5897 |
msgid "OK"
|
5898 |
msgstr ""
|
5901 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: src/addons/migrator.php:1304, src/restorer.php:2333
|
5905 |
msgid "the database query being run was:"
|
5906 |
msgstr ""
|
5907 |
|
5909 |
msgid "will restore as:"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: src/class-updraftplus.php:4271, src/restorer.php:1807,
|
5913 |
#: src/restorer.php:1896, src/restorer.php:1922
|
5914 |
msgid "Old table prefix:"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: src/addons/reporting.php:71, src/addons/reporting.php:180,
|
5918 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4201
|
5919 |
msgid "Backup of:"
|
5920 |
msgstr ""
|
5921 |
|
5987 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5988 |
msgstr ""
|
5989 |
|
5990 |
+
#: src/admin.php:4264, src/admin.php:4265
|
5991 |
msgid "Could not find one of the files for restoration"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
+
#: src/admin.php:4379
|
5995 |
msgid "Error message"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
+
#: src/admin.php:4261
|
5999 |
msgid "The backup records do not contain information about the proper size of this file."
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: src/admin.php:4253
|
6003 |
msgid "Archive is expected to be size:"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: src/admin.php:4133
|
6007 |
msgid "If making a request for support, please include this information:"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/admin.php:4132
|
6011 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: src/admin.php:4087
|
6015 |
msgid "UpdraftPlus Restoration: Progress"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: src/admin.php:4040
|
6019 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: src/admin.php:3975
|
6023 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: src/admin.php:3993
|
6027 |
msgid "Delete this backup set"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: src/admin.php:3635
|
6031 |
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."
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: src/admin.php:3632
|
6035 |
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."
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: src/admin.php:3630
|
6039 |
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)."
|
6040 |
msgstr ""
|
6041 |
|
6042 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6043 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:863
|
6044 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
6045 |
msgstr ""
|
6046 |
|
6076 |
msgid "Use the server's SSL certificates"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: src/admin.php:3478
|
6080 |
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."
|
6081 |
msgstr ""
|
6082 |
|
6083 |
+
#: src/admin.php:3478
|
6084 |
msgid "click here"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: src/admin.php:3478
|
6088 |
msgid "or, to reset this option"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: src/admin.php:3478
|
6092 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: src/admin.php:3470
|
6096 |
msgid "Backup directory specified is writable, which is good."
|
6097 |
msgstr ""
|
6098 |
|
6124 |
msgid "Advanced / Debugging Settings"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: src/admin.php:690
|
6128 |
msgid "Requesting start of backup..."
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: src/addons/morefiles.php:320, src/admin.php:706
|
6132 |
msgid "Cancel"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: src/addons/reporting.php:244, src/admin.php:3782
|
6136 |
msgid "None"
|
6137 |
msgstr ""
|
6138 |
|
6157 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: src/addons/morefiles.php:466, src/admin.php:3560
|
6161 |
msgid "Exclude these:"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: src/admin.php:3551
|
6165 |
msgid "Any other directories found inside wp-content"
|
6166 |
msgstr ""
|
6167 |
|
6177 |
msgid "To fix the time at which a backup should take place,"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: src/admin.php:3464
|
6181 |
msgid "Monthly"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: src/admin.php:3463
|
6185 |
msgid "Fortnightly"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: src/admin.php:3462
|
6189 |
msgid "Weekly"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: src/admin.php:3461
|
6193 |
msgid "Daily"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: src/admin.php:713, src/admin.php:3439
|
6197 |
msgid "Download log file"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: src/admin.php:3311
|
6201 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: src/admin.php:3306
|
6205 |
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"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: src/admin.php:3292
|
6209 |
msgid "The request to the filesystem to create the directory failed."
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: src/addons/migrator.php:2495, src/admin.php:707, src/admin.php:3204,
|
6213 |
+
#: src/admin.php:3237, src/admin.php:3993,
|
6214 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
|
6215 |
msgid "Delete"
|
6216 |
msgstr ""
|
6217 |
|
6218 |
+
#: src/admin.php:3142
|
6219 |
msgid "show log"
|
6220 |
msgstr ""
|
6221 |
|
6248 |
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6249 |
#: src/templates/wp-admin/settings/tab-addons.php:240,
|
6250 |
#: src/templates/wp-admin/settings/tab-addons.php:256,
|
6251 |
+
#: src/templates/wp-admin/settings/tab-addons.php:272,
|
6252 |
+
#: src/templates/wp-admin/settings/tab-addons.php:306,
|
6253 |
+
#: src/templates/wp-admin/settings/tab-addons.php:325,
|
6254 |
+
#: src/templates/wp-admin/settings/tab-addons.php:328
|
6255 |
msgid "No"
|
6256 |
msgstr ""
|
6257 |
|
6284 |
#: src/templates/wp-admin/settings/tab-addons.php:246,
|
6285 |
#: src/templates/wp-admin/settings/tab-addons.php:259,
|
6286 |
#: src/templates/wp-admin/settings/tab-addons.php:262,
|
6287 |
+
#: src/templates/wp-admin/settings/tab-addons.php:275,
|
6288 |
+
#: src/templates/wp-admin/settings/tab-addons.php:278,
|
6289 |
+
#: src/templates/wp-admin/settings/tab-addons.php:309,
|
6290 |
+
#: src/templates/wp-admin/settings/tab-addons.php:312,
|
6291 |
+
#: src/templates/wp-admin/settings/tab-addons.php:331
|
6292 |
msgid "Yes"
|
6293 |
msgstr ""
|
6294 |
|
6327 |
msgid "Perform a one-time backup"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:91
|
6331 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: src/class-updraftplus.php:4231
|
6335 |
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"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: src/addons/morefiles.php:150,
|
6339 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6340 |
msgid "%s restoration options:"
|
6341 |
msgstr ""
|
6342 |
|
6372 |
msgid "Delete backup set"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: src/admin.php:689
|
6376 |
msgid "Download error: the server sent us a response which we did not understand."
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:110,
|
6380 |
+
#: src/addons/migrator.php:877, src/addons/migrator.php:1174,
|
6381 |
+
#: src/addons/migrator.php:1255, src/addons/migrator.php:1304,
|
6382 |
+
#: src/addons/migrator.php:1542, src/addons/migrator.php:1893,
|
6383 |
+
#: src/addons/migrator.php:1920, src/addons/migrator.php:1926,
|
6384 |
+
#: src/addons/migrator.php:1988, src/addons/migrator.php:2031,
|
6385 |
+
#: src/addons/migrator.php:2070, src/addons/migrator.php:2080,
|
6386 |
+
#: src/addons/migrator.php:2085, src/addons/s3-enhanced.php:160,
|
6387 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6388 |
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6389 |
+
#: src/admin.php:681, src/admin.php:4258, src/admin.php:4288,
|
6390 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6391 |
+
#: src/methods/updraftvault.php:527, src/restorer.php:1523
|
6392 |
msgid "Error:"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: src/admin.php:672,
|
6396 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:32
|
6397 |
msgid "calculating..."
|
6398 |
msgstr ""
|
6413 |
msgid "This is a count of the contents of your Updraft directory"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
|
6417 |
+
#: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
|
6418 |
+
#: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
|
6419 |
+
#: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
|
6420 |
+
#: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
|
6421 |
+
#: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
|
6422 |
+
#: src/methods/googledrive.php:1192, src/methods/googledrive.php:1222,
|
6423 |
+
#: src/methods/googledrive.php:1226, src/methods/googledrive.php:1237,
|
6424 |
+
#: src/methods/googledrive.php:1248
|
6425 |
msgid "Google Drive"
|
6426 |
msgstr ""
|
6427 |
|
6437 |
msgid "More tasks:"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: src/admin.php:2900
|
6441 |
msgid "Download most recently modified log file"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: src/central/bootstrap.php:185
|
6445 |
msgid "(Nothing yet logged)"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
#: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
|
6449 |
+
#: src/admin.php:2855, src/admin.php:2860
|
6450 |
msgid "Last log message"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: src/addons/migrator.php:257, src/admin.php:712, src/admin.php:3975,
|
6454 |
#: src/templates/wp-admin/settings/tab-status.php:30
|
6455 |
msgid "Restore"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
+
#: src/admin.php:532, src/admin.php:705,
|
6459 |
#: src/templates/wp-admin/settings/tab-status.php:27
|
6460 |
msgid "Backup Now"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: src/addons/migrator.php:1958, src/addons/moredatabase.php:247,
|
6464 |
+
#: src/addons/reporting.php:259, src/addons/wp-cli.php:382, src/admin.php:315,
|
6465 |
+
#: src/admin.php:3757, src/admin.php:3837, src/admin.php:4342,
|
6466 |
#: src/includes/class-wpadmin-commands.php:147,
|
6467 |
+
#: src/includes/class-wpadmin-commands.php:507,
|
6468 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
6469 |
+
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
|
6470 |
msgid "Database"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
+
#: src/admin.php:311, src/admin.php:4964
|
6474 |
msgid "Files"
|
6475 |
msgstr ""
|
6476 |
|
6498 |
msgid "JavaScript warning"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
+
#: src/admin.php:692, src/admin.php:2927
|
6502 |
msgid "Delete Old Directories"
|
6503 |
msgstr ""
|
6504 |
|
6505 |
+
#: src/admin.php:2572
|
6506 |
msgid "Current limit is:"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
+
#: src/admin.php:2547
|
6510 |
msgid "Your backup has been restored."
|
6511 |
msgstr ""
|
6512 |
|
6518 |
msgid "Lead developer's homepage"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
+
#: src/central/bootstrap.php:504
|
6522 |
msgid "UpdraftPlus.Com"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
+
#: src/admin.php:4856
|
6526 |
msgid "Your settings have been wiped."
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: src/admin.php:2507
|
6530 |
msgid "Backup directory successfully created."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: src/admin.php:2500
|
6534 |
msgid "Backup directory could not be created"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: src/admin.php:3174
|
6538 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: src/admin.php:3172
|
6542 |
msgid "Old directories successfully removed."
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: src/admin.php:3169, src/admin.php:3169
|
6546 |
msgid "Remove old directories"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: src/addons/migrator.php:326, src/addons/migrator.php:341,
|
6550 |
+
#: src/admin.php:2449, src/admin.php:2458, src/admin.php:2467,
|
6551 |
+
#: src/admin.php:2509, src/admin.php:3176
|
6552 |
msgid "Return to UpdraftPlus Configuration"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
+
#: src/admin.php:685, src/admin.php:2449, src/admin.php:2458,
|
6556 |
+
#: src/admin.php:2467, src/admin.php:2509, src/admin.php:3176,
|
6557 |
#: src/templates/wp-admin/settings/existing-backups-table.php:16
|
6558 |
msgid "Actions"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
+
#: src/admin.php:2352
|
6562 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
+
#: src/admin.php:2252
|
6566 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
6567 |
msgstr ""
|
6568 |
|
6569 |
+
#: src/admin.php:2148
|
6570 |
msgid "No local copy present."
|
6571 |
msgstr ""
|
6572 |
|
6573 |
+
#: src/admin.php:2145
|
6574 |
msgid "Download in progress"
|
6575 |
msgstr ""
|
6576 |
|
6577 |
+
#: src/admin.php:684, src/admin.php:2134
|
6578 |
msgid "File ready."
|
6579 |
msgstr ""
|
6580 |
|
6581 |
+
#: src/admin.php:2115
|
6582 |
msgid "Download failed"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
+
#: src/admin.php:682, src/admin.php:1336, src/admin.php:1882,
|
6586 |
+
#: src/class-updraftplus.php:1312, src/class-updraftplus.php:1356,
|
6587 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6588 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6589 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2433,
|
6590 |
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6591 |
msgid "Error"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: src/admin.php:1917
|
6595 |
msgid "Could not find that job - perhaps it has already finished?"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: src/admin.php:1909
|
6599 |
msgid "Job deleted"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: src/admin.php:1995
|
6603 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: src/admin.php:757
|
6607 |
msgid "Nothing yet logged"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/admin.php:984
|
6611 |
msgid "Please consult this FAQ if you have problems backing up."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/admin.php:984
|
6615 |
msgid "Your website is hosted using the %s web server."
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: src/admin.php:980
|
6619 |
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."
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: src/admin.php:976
|
6623 |
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."
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/addons/migrator.php:932, src/admin.php:968, src/admin.php:972,
|
6627 |
+
#: src/admin.php:976, src/admin.php:980, src/admin.php:984, src/admin.php:993,
|
6628 |
+
#: src/admin.php:3623, src/admin.php:3630, src/admin.php:3632,
|
6629 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6630 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6631 |
+
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
6632 |
+
#: src/methods/updraftvault.php:306,
|
6633 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6634 |
#: src/udaddons/updraftplus-addons.php:253
|
6635 |
msgid "Warning"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/admin.php:914
|
6639 |
msgid "Add-Ons / Pro Support"
|
6640 |
msgstr ""
|
6641 |
|
|