UpdraftPlus WordPress Backup Plugin - Version 1.16.10

Version Description

  • 23/Mar/2019 =

  • FEATURE: Added support for backing up and restoring SQL triggers

  • FIX: Prevent the downloader UI being removed before it's complete in the case of multi-archive sets (regression)

  • TWEAK: Refactor the restore code and use jobdata to save information about the restore rather than using $_POST data

  • TWEAK: Automatically show the UpdraftClone admin UI for UpdraftClone developers for easier debugging

  • TWEAK: Prevent a PHP notice with certain exclusion settings

  • TWEAK: Add a mention of UpdraftClone in WP's PHP version notice and WooCommerce's "untested extensions" notice

  • TWEAK: Add 5.1 to the built-in list of available UpdraftClone WP versions

Download this release

Release Info

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

Code changes from version 1.16.9 to 1.16.10

Files changed (4) hide show
  1. admin.php +32 -1
  2. languages/updraftplus.pot +361 -357
  3. readme.txt +6 -4
  4. updraftplus.php +1 -1
admin.php CHANGED
@@ -19,7 +19,7 @@ class UpdraftPlus_Admin {
19
 
20
  private $php_versions = array('5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3');
21
 
22
- private $wp_versions = array('3.2', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '4.0', '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', '4.7', '4.8', '4.9', '5.0');
23
 
24
  private $regions = array('London', 'New York', 'San Francisco', 'Amsterdam', 'Singapore', 'Frankfurt', 'Toronto', 'Bangalore');
25
 
@@ -507,6 +507,8 @@ class UpdraftPlus_Admin {
507
  'dismiss_confirm' => __('Are you sure you want to dismiss all UpdraftPlus news forever?', 'updraftplus'),
508
  );
509
 
 
 
510
  $updraftplus_dashboard_news = new Updraft_Dashboard_News('https://feeds.feedburner.com/updraftplus/', 'https://updraftplus.com/news/', $news_translations);
511
 
512
  // New-install admin tour
@@ -514,6 +516,10 @@ class UpdraftPlus_Admin {
514
  include_once(UPDRAFTPLUS_DIR.'/includes/updraftplus-tour.php');
515
  }
516
 
 
 
 
 
517
  // Next, the actions that only come on the UpdraftPlus page
518
  if (UpdraftPlus_Options::admin_page() != $pagenow || empty($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
519
  $this->setup_all_admin_notices_udonly($service);
@@ -560,6 +566,31 @@ class UpdraftPlus_Admin {
560
  }
561
  }
562
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
563
  /**
564
  * Sets up what is needed to allow an in-page backup to be run. Will enqueue scripts and output appropriate HTML (so, should be run when at a suitable place). Not intended for use on the UpdraftPlus settings page.
565
  *
19
 
20
  private $php_versions = array('5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3');
21
 
22
+ private $wp_versions = array('3.2', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '4.0', '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', '4.7', '4.8', '4.9', '5.0', '5.1');
23
 
24
  private $regions = array('London', 'New York', 'San Francisco', 'Amsterdam', 'Singapore', 'Frankfurt', 'Toronto', 'Bangalore');
25
 
507
  'dismiss_confirm' => __('Are you sure you want to dismiss all UpdraftPlus news forever?', 'updraftplus'),
508
  );
509
 
510
+ add_filter('woocommerce_in_plugin_update_message', array($this, 'woocommerce_in_plugin_update_message'));
511
+
512
  $updraftplus_dashboard_news = new Updraft_Dashboard_News('https://feeds.feedburner.com/updraftplus/', 'https://updraftplus.com/news/', $news_translations);
513
 
514
  // New-install admin tour
516
  include_once(UPDRAFTPLUS_DIR.'/includes/updraftplus-tour.php');
517
  }
518
 
519
+ if ('index.php' == $GLOBALS['pagenow'] && UpdraftPlus_Options::user_can_manage()) {
520
+ add_action('admin_print_footer_scripts', array($this, 'admin_index_print_footer_scripts'));
521
+ }
522
+
523
  // Next, the actions that only come on the UpdraftPlus page
524
  if (UpdraftPlus_Options::admin_page() != $pagenow || empty($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
525
  $this->setup_all_admin_notices_udonly($service);
566
  }
567
  }
568
 
569
+ /**
570
+ * Runs upon the WP action woocommerce_in_plugin_update_message
571
+ *
572
+ * @param String $msg - the message that WooCommerce will print
573
+ *
574
+ * @return String - filtered value
575
+ */
576
+ public function woocommerce_in_plugin_update_message($msg) {
577
+ return '<br><strong>'.__('You can test upgrading your site on an instant copy using UpdraftClone credits', 'updraftplus').' - <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&amp;tab=migrate#updraft-navtab-migrate-content">'.__('go here', 'updraftplus').'</a></strong>'.$msg;
578
+ }
579
+
580
+ /**
581
+ * Runs upon the WP action admin_print_footer_scripts if an entitled user is on the main WP dashboard page
582
+ */
583
+ public function admin_index_print_footer_scripts() {
584
+ ?>
585
+ <script>
586
+ jQuery(document).ready(function($) {
587
+ if ($('#dashboard-widgets #dashboard_php_nag').length < 1) return;
588
+ $('#dashboard-widgets #dashboard_php_nag .button-container').before('<a href="<?php echo UpdraftPlus_Options::admin_page_url(); ?>?page=updraftplus&amp;tab=migrate#updraft-navtab-migrate-content"><?php echo esc_js(__('You can test running your site on a different PHP (or WordPress) version using UpdraftClone credits.', 'updraftplus')); ?></a>');
589
+ });
590
+ </script>
591
+ <?php
592
+ }
593
+
594
  /**
595
  * Sets up what is needed to allow an in-page backup to be run. Will enqueue scripts and output appropriate HTML (so, should be run when at a suitable place). Not intended for use on the UpdraftPlus settings page.
596
  *
languages/updraftplus.pot CHANGED
@@ -25,7 +25,7 @@ msgstr ""
25
  msgid "UpdraftPlus Automatic Backups"
26
  msgstr ""
27
 
28
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026, src/admin.php:897
29
  msgid "Automatic backup before update"
30
  msgstr ""
31
 
@@ -49,7 +49,7 @@ msgstr ""
49
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
50
  msgstr ""
51
 
52
- #: src/addons/autobackup.php:344, src/addons/autobackup.php:439, src/admin.php:3073, src/admin.php:3079, src/templates/wp-admin/settings/take-backup.php:69
53
  msgid "Last log message"
54
  msgstr ""
55
 
@@ -57,7 +57,7 @@ msgstr ""
57
  msgid "Starting automatic backup..."
58
  msgstr ""
59
 
60
- #: src/addons/autobackup.php:349, src/addons/autobackup.php:441, src/admin.php:848, src/methods/remotesend.php:71, src/methods/remotesend.php:79, src/methods/remotesend.php:245, src/methods/remotesend.php:262, src/methods/remotesend.php:310
61
  msgid "Unexpected response:"
62
  msgstr ""
63
 
@@ -97,7 +97,7 @@ msgstr ""
97
  msgid "now proceeding with the updates..."
98
  msgstr ""
99
 
100
- #: src/addons/autobackup.php:1072, src/admin.php:1027
101
  msgid "Be safe with an automatic backup"
102
  msgstr ""
103
 
@@ -109,7 +109,7 @@ msgstr ""
109
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
110
  msgstr ""
111
 
112
- #: src/addons/autobackup.php:1104, src/admin.php:893
113
  msgid "Proceed with update"
114
  msgstr ""
115
 
@@ -145,11 +145,11 @@ msgstr ""
145
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
146
  msgstr ""
147
 
148
- #: src/addons/azure.php:608, src/addons/migrator.php:948, src/admin.php:1204, src/admin.php:1208, src/admin.php:1212, src/admin.php:1216, src/admin.php:1220, src/admin.php:1229, src/admin.php:3929, src/admin.php:3936, src/admin.php:3938, src/admin.php:5297, src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440, src/methods/ftp.php:335, src/methods/openstack-base.php:571, src/methods/s3.php:865, src/methods/s3.php:869, src/methods/updraftvault.php:324, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/templates/wp-admin/settings/tab-backups.php:27, src/udaddons/updraftplus-addons.php:265
149
  msgid "Warning"
150
  msgstr ""
151
 
152
- #: src/addons/azure.php:608, src/admin.php:3929, src/methods/updraftvault.php:324
153
  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."
154
  msgstr ""
155
 
@@ -229,11 +229,11 @@ msgstr ""
229
  msgid "Azure China"
230
  msgstr ""
231
 
232
- #: src/addons/backblaze.php:205, src/admin.php:2189
233
  msgid "Error: unexpected file read fail"
234
  msgstr ""
235
 
236
- #: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:117, src/addons/migrator.php:893, src/addons/migrator.php:1190, src/addons/migrator.php:1271, src/addons/migrator.php:1320, src/addons/migrator.php:1558, src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166, src/addons/s3-enhanced.php:168, src/addons/sftp.php:923, src/addons/webdav.php:203, src/admin.php:93, src/admin.php:862, src/includes/class-remote-send.php:273, src/includes/class-remote-send.php:300, src/includes/class-remote-send.php:306, src/includes/class-remote-send.php:369, src/includes/class-remote-send.php:428, src/includes/class-remote-send.php:455, src/includes/class-remote-send.php:478, src/includes/class-remote-send.php:488, src/includes/class-remote-send.php:493, src/methods/remotesend.php:76, src/methods/remotesend.php:259, src/methods/updraftvault.php:560, src/restorer.php:332, src/restorer.php:360, src/restorer.php:2104
237
  msgid "Error:"
238
  msgstr ""
239
 
@@ -613,7 +613,7 @@ msgstr ""
613
  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."
614
  msgstr ""
615
 
616
- #: src/addons/googlecloud.php:445, src/addons/migrator.php:590, src/admin.php:2372, src/admin.php:2393, src/admin.php:2401, src/class-updraftplus.php:1017, src/class-updraftplus.php:1023, src/class-updraftplus.php:4140, src/class-updraftplus.php:4142, src/class-updraftplus.php:4307, src/class-updraftplus.php:4314, src/class-updraftplus.php:4385, src/methods/googledrive.php:401, src/methods/s3.php:344
617
  msgid "Error: %s"
618
  msgstr ""
619
 
@@ -657,7 +657,7 @@ msgstr ""
657
  msgid "You must save and authenticate before you can test your settings."
658
  msgstr ""
659
 
660
- #: src/addons/googlecloud.php:783, src/addons/googlecloud.php:817, src/addons/googlecloud.php:823, src/addons/sftp.php:553, src/admin.php:3483, src/admin.php:3519, src/admin.php:3529, src/methods/addon-base-v2.php:313, src/methods/stream-base.php:356
661
  msgid "Failed"
662
  msgstr ""
663
 
@@ -733,7 +733,7 @@ msgstr ""
733
  msgid "Otherwise, you can leave it blank."
734
  msgstr ""
735
 
736
- #: src/addons/googlecloud.php:1041, src/addons/migrator.php:493, src/addons/migrator.php:496, src/addons/migrator.php:499, src/admin.php:1208, src/admin.php:2611, src/backup.php:3296, src/class-updraftplus.php:4406, src/class-updraftplus.php:4406, src/updraftplus.php:157
737
  msgid "Go here for more information."
738
  msgstr ""
739
 
@@ -789,7 +789,7 @@ msgstr ""
789
  msgid "Supported backup plugins: %s"
790
  msgstr ""
791
 
792
- #: src/addons/importer.php:276, src/admin.php:4090, src/includes/class-backup-history.php:499
793
  msgid "Backup created by: %s."
794
  msgstr ""
795
 
@@ -813,7 +813,7 @@ msgstr ""
813
  msgid "No incremental backup of your files is possible, as no suitable existing backup was found to add increments to."
814
  msgstr ""
815
 
816
- #: src/addons/incremental.php:342, src/addons/reporting.php:261, src/admin.php:4022
817
  msgid "None"
818
  msgstr ""
819
 
@@ -821,23 +821,23 @@ msgstr ""
821
  msgid "Every hour"
822
  msgstr ""
823
 
824
- #: src/addons/incremental.php:344, src/addons/incremental.php:345, src/addons/incremental.php:346, src/addons/incremental.php:347, src/admin.php:3737, src/admin.php:3738, src/admin.php:3739, src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
825
  msgid "Every %s hours"
826
  msgstr ""
827
 
828
- #: src/addons/incremental.php:348, src/admin.php:3740
829
  msgid "Daily"
830
  msgstr ""
831
 
832
- #: src/addons/incremental.php:349, src/admin.php:3741
833
  msgid "Weekly"
834
  msgstr ""
835
 
836
- #: src/addons/incremental.php:350, src/admin.php:3742
837
  msgid "Fortnightly"
838
  msgstr ""
839
 
840
- #: src/addons/incremental.php:351, src/admin.php:3743
841
  msgid "Monthly"
842
  msgstr ""
843
 
@@ -869,7 +869,7 @@ msgstr ""
869
  msgid "Please make sure that you have made a note of the password!"
870
  msgstr ""
871
 
872
- #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241, src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2966, src/methods/openstack2.php:164, src/methods/updraftvault.php:382, src/templates/wp-admin/settings/updraftcentral-connect.php:50
873
  msgid "Password"
874
  msgstr ""
875
 
@@ -961,7 +961,7 @@ msgstr ""
961
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
962
  msgstr ""
963
 
964
- #: src/addons/migrator.php:274, src/admin.php:708, src/admin.php:895, src/admin.php:4188
965
  msgid "Restore"
966
  msgstr ""
967
 
@@ -985,7 +985,7 @@ msgstr ""
985
  msgid "Replace with"
986
  msgstr ""
987
 
988
- #: src/addons/migrator.php:340, src/addons/moredatabase.php:89, src/addons/moredatabase.php:91, src/addons/moredatabase.php:93, src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530, src/addons/webdav.php:253, src/admin.php:914, src/includes/class-remote-send.php:470, src/methods/addon-base-v2.php:305, src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189, src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524, src/methods/ftp.php:417, src/methods/ftp.php:421, src/methods/openstack2.php:180, src/methods/openstack2.php:185, src/methods/openstack2.php:190, src/methods/openstack2.php:195, src/methods/s3.php:1139, src/methods/s3.php:1143
989
  msgid "Failure: No %s was given."
990
  msgstr ""
991
 
@@ -1187,7 +1187,7 @@ msgstr ""
1187
  msgid "SQL update commands run:"
1188
  msgstr ""
1189
 
1190
- #: src/addons/migrator.php:1305, src/admin.php:859
1191
  msgid "Errors:"
1192
  msgstr ""
1193
 
@@ -1239,7 +1239,7 @@ msgstr ""
1239
  msgid "Paste key here"
1240
  msgstr ""
1241
 
1242
- #: src/addons/migrator.php:1748, src/admin.php:907
1243
  msgid "Add site"
1244
  msgstr ""
1245
 
@@ -1259,7 +1259,7 @@ msgstr ""
1259
  msgid "Enter your chosen name"
1260
  msgstr ""
1261
 
1262
- #: src/addons/migrator.php:1761, src/addons/sftp.php:467, src/admin.php:913, src/admin.php:5145, src/templates/wp-admin/settings/temporary-clone.php:63
1263
  msgid "Key"
1264
  msgstr ""
1265
 
@@ -1331,7 +1331,7 @@ msgstr ""
1331
  msgid "%s total table(s) found; %s with the indicated prefix."
1332
  msgstr ""
1333
 
1334
- #: src/addons/moredatabase.php:144, src/admin.php:1699
1335
  msgid "Messages:"
1336
  msgstr ""
1337
 
@@ -1375,7 +1375,7 @@ msgstr ""
1375
  msgid "Username"
1376
  msgstr ""
1377
 
1378
- #: src/addons/moredatabase.php:242, src/addons/reporting.php:276, src/addons/wp-cli.php:432, src/admin.php:360, src/admin.php:3997, src/admin.php:4050, src/includes/class-remote-send.php:338, src/includes/class-wpadmin-commands.php:157, src/includes/class-wpadmin-commands.php:521, src/restorer.php:466, src/templates/wp-admin/settings/delete-and-restore-modals.php:74, src/templates/wp-admin/settings/delete-and-restore-modals.php:75, src/templates/wp-admin/settings/take-backup.php:34
1379
  msgid "Database"
1380
  msgstr ""
1381
 
@@ -1427,7 +1427,7 @@ msgstr ""
1427
  msgid "(None configured)"
1428
  msgstr ""
1429
 
1430
- #: src/addons/morefiles.php:71, src/admin.php:922
1431
  msgctxt "(verb)"
1432
  msgid "Download"
1433
  msgstr ""
@@ -1512,7 +1512,7 @@ msgstr ""
1512
  msgid "Go up a directory"
1513
  msgstr ""
1514
 
1515
- #: src/addons/morefiles.php:311, src/admin.php:888
1516
  msgid "Cancel"
1517
  msgstr ""
1518
 
@@ -1528,7 +1528,7 @@ msgstr ""
1528
  msgid "Exclude these:"
1529
  msgstr ""
1530
 
1531
- #: src/addons/morefiles.php:476, src/admin.php:3851
1532
  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."
1533
  msgstr ""
1534
 
@@ -1544,11 +1544,11 @@ msgstr ""
1544
  msgid "(as many as you like)"
1545
  msgstr ""
1546
 
1547
- #: src/addons/morestorage.php:81, src/admin.php:968
1548
  msgid "Currently enabled"
1549
  msgstr ""
1550
 
1551
- #: src/addons/morestorage.php:81, src/admin.php:969
1552
  msgid "Currently disabled"
1553
  msgstr ""
1554
 
@@ -1780,7 +1780,7 @@ msgstr ""
1780
  msgid "Time taken:"
1781
  msgstr ""
1782
 
1783
- #: src/addons/reporting.php:239, src/admin.php:4010
1784
  msgid "Uploaded to:"
1785
  msgstr ""
1786
 
@@ -1816,11 +1816,11 @@ msgstr ""
1816
  msgid "Log all messages to syslog (only server admins are likely to want this)"
1817
  msgstr ""
1818
 
1819
- #: src/addons/reporting.php:539, src/admin.php:843
1820
  msgid "To send to more than one address, separate each address with a comma."
1821
  msgstr ""
1822
 
1823
- #: src/addons/reporting.php:541, src/admin.php:837
1824
  msgid "Send a report only when there are warnings/errors"
1825
  msgstr ""
1826
 
@@ -1828,7 +1828,7 @@ msgstr ""
1828
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1829
  msgstr ""
1830
 
1831
- #: src/addons/reporting.php:543, src/admin.php:838
1832
  msgid "When the Email storage method is enabled, also send the backup"
1833
  msgstr ""
1834
 
@@ -1840,7 +1840,7 @@ msgstr ""
1840
  msgid "Use this option to only send database backups when sending to email, and skip other components."
1841
  msgstr ""
1842
 
1843
- #: src/addons/reporting.php:545, src/admin.php:841
1844
  msgid "Only email the database backup"
1845
  msgstr ""
1846
 
@@ -2229,11 +2229,11 @@ msgstr ""
2229
  msgid "No previous backup found to add an increment to."
2230
  msgstr ""
2231
 
2232
- #: src/addons/wp-cli.php:110, src/admin.php:846
2233
  msgid "You have chosen to backup a database, but no tables have been selected"
2234
  msgstr ""
2235
 
2236
- #: src/addons/wp-cli.php:116, src/admin.php:844
2237
  msgid "If you exclude both the database and the files, then you have excluded everything!"
2238
  msgstr ""
2239
 
@@ -2265,27 +2265,27 @@ msgstr ""
2265
  msgid "Latest full backup found; identifier:"
2266
  msgstr ""
2267
 
2268
- #: src/addons/wp-cli.php:430, src/admin.php:4044, src/admin.php:4092
2269
  msgid "unknown source"
2270
  msgstr ""
2271
 
2272
- #: src/addons/wp-cli.php:432, src/admin.php:4050
2273
  msgid "Database (created by %s)"
2274
  msgstr ""
2275
 
2276
- #: src/addons/wp-cli.php:438, src/admin.php:4052
2277
  msgid "External database"
2278
  msgstr ""
2279
 
2280
- #: src/addons/wp-cli.php:450, src/admin.php:4096
2281
  msgid "Files and database WordPress backup (created by %s)"
2282
  msgstr ""
2283
 
2284
- #: src/addons/wp-cli.php:450, src/admin.php:4096
2285
  msgid "Files backup (created by %s)"
2286
  msgstr ""
2287
 
2288
- #: src/addons/wp-cli.php:519, src/admin.php:863, src/class-updraftplus.php:1318, src/class-updraftplus.php:1362, src/includes/class-filesystem-functions.php:409, src/includes/class-storage-methods-interface.php:324, src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98, src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225, src/methods/googledrive.php:1118, src/methods/remotesend.php:315, src/methods/stream-base.php:219, src/restorer.php:3165, src/restorer.php:3190, src/restorer.php:3271, src/udaddons/options.php:231, src/updraftplus.php:157
2289
  msgid "Error"
2290
  msgstr ""
2291
 
@@ -2305,11 +2305,11 @@ msgstr ""
2305
  msgid "No valid components found, please select different components or a backup set with components that can be restored."
2306
  msgstr ""
2307
 
2308
- #: src/addons/wp-cli.php:650, src/admin.php:4580
2309
  msgid "UpdraftPlus Restoration: Progress"
2310
  msgstr ""
2311
 
2312
- #: src/addons/wp-cli.php:664, src/admin.php:4583
2313
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2314
  msgstr ""
2315
 
@@ -2349,7 +2349,7 @@ msgstr ""
2349
  msgid "At the same time as the files backup"
2350
  msgstr ""
2351
 
2352
- #: src/admin.php:350, src/admin.php:5114, src/templates/wp-admin/settings/take-backup.php:24
2353
  msgid "Files"
2354
  msgstr ""
2355
 
@@ -2373,1242 +2373,1246 @@ msgstr ""
2373
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
2374
  msgstr ""
2375
 
2376
- #: src/admin.php:708
 
 
 
 
2377
  msgid "Backup"
2378
  msgstr ""
2379
 
2380
- #: src/admin.php:716, src/admin.php:2814
2381
  msgid "Migrate / Clone"
2382
  msgstr ""
2383
 
2384
- #: src/admin.php:724, src/admin.php:1141, src/admin.php:2815
2385
  msgid "Settings"
2386
  msgstr ""
2387
 
2388
- #: src/admin.php:732, src/admin.php:2816
2389
  msgid "Advanced Tools"
2390
  msgstr ""
2391
 
2392
- #: src/admin.php:740
2393
  msgid "Extensions"
2394
  msgstr ""
2395
 
2396
- #: src/admin.php:839
2397
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
2398
  msgstr ""
2399
 
2400
- #: src/admin.php:840
2401
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
2402
  msgstr ""
2403
 
2404
- #: src/admin.php:842
2405
  msgid "Rescanning remote and local storage for backup sets..."
2406
  msgstr ""
2407
 
2408
- #: src/admin.php:845
2409
  msgid "You have chosen to backup files, but no file entities have been selected"
2410
  msgstr ""
2411
 
2412
- #: src/admin.php:847
2413
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
2414
  msgstr ""
2415
 
2416
- #: src/admin.php:849
2417
  msgid "The web server returned an error code (try again, or check your web server logs)"
2418
  msgstr ""
2419
 
2420
- #: src/admin.php:850
2421
  msgid "The new user's RackSpace console password is (this will not be shown again):"
2422
  msgstr ""
2423
 
2424
- #: src/admin.php:851
2425
  msgid "Trying..."
2426
  msgstr ""
2427
 
2428
- #: src/admin.php:852
2429
  msgid "Fetching..."
2430
  msgstr ""
2431
 
2432
- #: src/admin.php:853
2433
  msgid "calculating..."
2434
  msgstr ""
2435
 
2436
- #: src/admin.php:854
2437
  msgid "Begun looking for this entity"
2438
  msgstr ""
2439
 
2440
- #: src/admin.php:855
2441
  msgid "Some files are still downloading or being processed - please wait."
2442
  msgstr ""
2443
 
2444
- #: src/admin.php:856
2445
  msgid "Processing files - please wait..."
2446
  msgstr ""
2447
 
2448
- #: src/admin.php:857
2449
  msgid "Error: the server sent an empty response."
2450
  msgstr ""
2451
 
2452
- #: src/admin.php:858
2453
  msgid "Warnings:"
2454
  msgstr ""
2455
 
2456
- #: src/admin.php:860
2457
  msgid "Error: the server sent us a response which we did not understand."
2458
  msgstr ""
2459
 
2460
- #: src/admin.php:861, src/restorer.php:180
2461
  msgid "Error data:"
2462
  msgstr ""
2463
 
2464
- #: src/admin.php:864, src/admin.php:1975, src/includes/deprecated-actions.php:29, src/templates/wp-admin/settings/downloading-and-restoring.php:21, src/templates/wp-admin/settings/tab-backups.php:21, src/templates/wp-admin/settings/tab-backups.php:44
2465
  msgid "Existing Backups"
2466
  msgstr ""
2467
 
2468
- #: src/admin.php:865, src/admin.php:2267
2469
  msgid "File ready."
2470
  msgstr ""
2471
 
2472
- #: src/admin.php:866, src/admin.php:2594, src/admin.php:3452, src/admin.php:4477, src/admin.php:4487, src/admin.php:4496, src/templates/wp-admin/settings/existing-backups-table.php:19, src/templates/wp-admin/settings/existing-backups-table.php:137
2473
  msgid "Actions"
2474
  msgstr ""
2475
 
2476
- #: src/admin.php:867
2477
  msgid "Delete from your web server"
2478
  msgstr ""
2479
 
2480
- #: src/admin.php:868
2481
  msgid "Download to your computer"
2482
  msgstr ""
2483
 
2484
- #: src/admin.php:869
2485
  msgid "Browse contents"
2486
  msgstr ""
2487
 
2488
- #: src/admin.php:870
2489
  msgid "Download error: the server sent us a response which we did not understand."
2490
  msgstr ""
2491
 
2492
- #: src/admin.php:871
2493
  msgid "Requesting start of backup..."
2494
  msgstr ""
2495
 
2496
- #: src/admin.php:872
2497
  msgid "PHP information"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:873, src/admin.php:3166
2501
  msgid "Delete Old Directories"
2502
  msgstr ""
2503
 
2504
- #: src/admin.php:874
2505
  msgid "Raw backup history"
2506
  msgstr ""
2507
 
2508
- #: src/admin.php:875, src/admin.php:876, src/includes/class-backup-history.php:506
2509
  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))."
2510
  msgstr ""
2511
 
2512
- #: src/admin.php:875
2513
  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."
2514
  msgstr ""
2515
 
2516
- #: src/admin.php:876, src/includes/class-backup-history.php:506
2517
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2518
  msgstr ""
2519
 
2520
- #: src/admin.php:877
2521
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
2522
  msgstr ""
2523
 
2524
- #: src/admin.php:878
2525
  msgid "Upload error:"
2526
  msgstr ""
2527
 
2528
- #: src/admin.php:879
2529
  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)."
2530
  msgstr ""
2531
 
2532
- #: src/admin.php:880
2533
  msgid "Upload error"
2534
  msgstr ""
2535
 
2536
- #: src/admin.php:881
2537
  msgid "Follow this link to attempt decryption and download the database file to your computer."
2538
  msgstr ""
2539
 
2540
- #: src/admin.php:882
2541
  msgid "This decryption key will be attempted:"
2542
  msgstr ""
2543
 
2544
- #: src/admin.php:883
2545
  msgid "Unknown server response:"
2546
  msgstr ""
2547
 
2548
- #: src/admin.php:884
2549
  msgid "Unknown server response status:"
2550
  msgstr ""
2551
 
2552
- #: src/admin.php:885
2553
  msgid "The file was uploaded."
2554
  msgstr ""
2555
 
2556
- #: src/admin.php:887, src/templates/wp-admin/settings/take-backup.php:51
2557
  msgid "Backup Now"
2558
  msgstr ""
2559
 
2560
- #: src/admin.php:889, src/admin.php:3480, src/admin.php:3514, src/admin.php:4287, src/includes/class-remote-send.php:560, src/templates/wp-admin/settings/existing-backups-table.php:153, src/templates/wp-admin/settings/file-backup-exclude.php:11
2561
  msgid "Delete"
2562
  msgstr ""
2563
 
2564
- #: src/admin.php:890, src/central/bootstrap.php:565
2565
  msgid "Create"
2566
  msgstr ""
2567
 
2568
- #: src/admin.php:891, src/admin.php:4267
2569
  msgid "Upload"
2570
  msgstr ""
2571
 
2572
- #: src/admin.php:892
2573
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2574
  msgstr ""
2575
 
2576
- #: src/admin.php:894, src/includes/updraftplus-tour.php:89
2577
  msgid "Close"
2578
  msgstr ""
2579
 
2580
- #: src/admin.php:896, src/admin.php:3718
2581
  msgid "Download log file"
2582
  msgstr ""
2583
 
2584
- #: src/admin.php:898, src/admin.php:924, src/admin.php:925
2585
  msgid "You have made changes to your settings, and not saved."
2586
  msgstr ""
2587
 
2588
- #: src/admin.php:899
2589
  msgid "Saving..."
2590
  msgstr ""
2591
 
2592
- #: src/admin.php:900, src/admin.php:2897, src/methods/updraftvault.php:337, src/methods/updraftvault.php:383, src/templates/wp-admin/settings/temporary-clone.php:82
2593
  msgid "Connect"
2594
  msgstr ""
2595
 
2596
- #: src/admin.php:901
2597
  msgid "Connecting..."
2598
  msgstr ""
2599
 
2600
- #: src/admin.php:902, src/methods/updraftvault.php:413, src/methods/updraftvault.php:483
2601
  msgid "Disconnect"
2602
  msgstr ""
2603
 
2604
- #: src/admin.php:903
2605
  msgid "Disconnecting..."
2606
  msgstr ""
2607
 
2608
- #: src/admin.php:904
2609
  msgid "Counting..."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:905
2613
  msgid "Update quota count"
2614
  msgstr ""
2615
 
2616
- #: src/admin.php:906
2617
  msgid "Adding..."
2618
  msgstr ""
2619
 
2620
- #: src/admin.php:908
2621
  msgid "Resetting..."
2622
  msgstr ""
2623
 
2624
- #: src/admin.php:909
2625
  msgid "Creating..."
2626
  msgstr ""
2627
 
2628
- #: src/admin.php:909
2629
  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."
2630
  msgstr ""
2631
 
2632
- #: src/admin.php:910, src/includes/class-remote-send.php:530
2633
  msgid "Send to site:"
2634
  msgstr ""
2635
 
2636
- #: src/admin.php:911, src/includes/class-remote-send.php:306
2637
  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."
2638
  msgstr ""
2639
 
2640
- #: src/admin.php:912
2641
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2642
  msgstr ""
2643
 
2644
- #: src/admin.php:914
2645
  msgid "key name"
2646
  msgstr ""
2647
 
2648
- #: src/admin.php:915, src/templates/wp-admin/settings/existing-backups-table.php:159
2649
  msgid "Deleting..."
2650
  msgstr ""
2651
 
2652
- #: src/admin.php:916
2653
  msgid "Please enter a valid URL"
2654
  msgstr ""
2655
 
2656
- #: src/admin.php:917
2657
  msgid "We requested to delete the file, but could not understand the server's response"
2658
  msgstr ""
2659
 
2660
- #: src/admin.php:918, src/includes/class-remote-send.php:334
2661
  msgid "Testing connection..."
2662
  msgstr ""
2663
 
2664
- #: src/admin.php:919, src/includes/class-remote-send.php:365, src/includes/class-remote-send.php:536
2665
  msgid "Send"
2666
  msgstr ""
2667
 
2668
- #: src/admin.php:923
2669
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2670
  msgstr ""
2671
 
2672
- #: src/admin.php:924
2673
  msgid "You should save your changes to ensure that they are used for making your backup."
2674
  msgstr ""
2675
 
2676
- #: src/admin.php:925
2677
  msgid "Your export file will be of your displayed settings, not your saved ones."
2678
  msgstr ""
2679
 
2680
- #: src/admin.php:928
2681
  msgid "day"
2682
  msgstr ""
2683
 
2684
- #: src/admin.php:929
2685
  msgid "in the month"
2686
  msgstr ""
2687
 
2688
- #: src/admin.php:930
2689
  msgid "day(s)"
2690
  msgstr ""
2691
 
2692
- #: src/admin.php:931
2693
  msgid "hour(s)"
2694
  msgstr ""
2695
 
2696
- #: src/admin.php:932
2697
  msgid "week(s)"
2698
  msgstr ""
2699
 
2700
- #: src/admin.php:933
2701
  msgid "For backups older than"
2702
  msgstr ""
2703
 
2704
- #: src/admin.php:935
2705
  msgid "Processing..."
2706
  msgstr ""
2707
 
2708
- #: src/admin.php:936
2709
  msgid "Please fill in the required information."
2710
  msgstr ""
2711
 
2712
- #: src/admin.php:937, src/methods/backup-module.php:317
2713
  msgid "Test %s Settings"
2714
  msgstr ""
2715
 
2716
- #: src/admin.php:938
2717
  msgid "Testing %s Settings..."
2718
  msgstr ""
2719
 
2720
- #: src/admin.php:939
2721
  msgid "%s settings test result:"
2722
  msgstr ""
2723
 
2724
- #: src/admin.php:940
2725
  msgid "Nothing yet logged"
2726
  msgstr ""
2727
 
2728
- #: src/admin.php:941
2729
  msgid "You have not yet selected a file to import."
2730
  msgstr ""
2731
 
2732
- #: src/admin.php:942
2733
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2734
  msgstr ""
2735
 
2736
- #: src/admin.php:945
2737
  msgid "Importing..."
2738
  msgstr ""
2739
 
2740
- #: src/admin.php:946
2741
  msgid "This will import data from:"
2742
  msgstr ""
2743
 
2744
- #: src/admin.php:947
2745
  msgid "Which was exported on:"
2746
  msgstr ""
2747
 
2748
- #: src/admin.php:948
2749
  msgid "Do you want to carry out the import?"
2750
  msgstr ""
2751
 
2752
- #: src/admin.php:949
2753
  msgid "Complete"
2754
  msgstr ""
2755
 
2756
- #: src/admin.php:950, src/admin.php:3225
2757
  msgid "The backup has finished running"
2758
  msgstr ""
2759
 
2760
- #: src/admin.php:951
2761
  msgid "The backup was aborted"
2762
  msgstr ""
2763
 
2764
- #: src/admin.php:953
2765
  msgid "remote files deleted"
2766
  msgstr ""
2767
 
2768
- #: src/admin.php:954
2769
  msgid "HTTP code:"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:955
2773
  msgid "The file failed to upload. Please check the following:"
2774
  msgstr ""
2775
 
2776
- #: src/admin.php:955
2777
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2778
  msgstr ""
2779
 
2780
- #: src/admin.php:955
2781
  msgid "The available memory on the server."
2782
  msgstr ""
2783
 
2784
- #: src/admin.php:955
2785
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2786
  msgstr ""
2787
 
2788
- #: src/admin.php:955
2789
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:956
2793
  msgid "Browsing zip file"
2794
  msgstr ""
2795
 
2796
- #: src/admin.php:957
2797
  msgid "Select a file to view information about it"
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:958
2801
  msgid "Search"
2802
  msgstr ""
2803
 
2804
- #: src/admin.php:959
2805
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2806
  msgstr ""
2807
 
2808
- #: src/admin.php:960
2809
  msgid "Loading log file"
2810
  msgstr ""
2811
 
2812
- #: src/admin.php:963
2813
  msgid "Please enter a valid URL e.g http://example.com"
2814
  msgstr ""
2815
 
2816
- #: src/admin.php:970
2817
  msgid "Local backup upload has started; please check the log file to see the upload progress"
2818
  msgstr ""
2819
 
2820
- #: src/admin.php:971
2821
  msgid "You must select at least one remote storage destination to upload this backup set to."
2822
  msgstr ""
2823
 
2824
- #: src/admin.php:972
2825
  msgid "(already uploaded)"
2826
  msgstr ""
2827
 
2828
- #: src/admin.php:973
2829
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
2830
  msgstr ""
2831
 
2832
- #: src/admin.php:974, src/templates/wp-admin/settings/updraftcentral-connect.php:9
2833
  msgid "UpdraftCentral Cloud"
2834
  msgstr ""
2835
 
2836
- #: src/admin.php:975
2837
  msgid "Connected. Requesting UpdraftCentral Key."
2838
  msgstr ""
2839
 
2840
- #: src/admin.php:976
2841
  msgid "Key created. Adding site to UpdraftCentral Cloud."
2842
  msgstr ""
2843
 
2844
- #: src/admin.php:977
2845
  msgid "Login successful."
2846
  msgstr ""
2847
 
2848
- #: src/admin.php:977, src/admin.php:979
2849
  msgid "Please follow this link to open %s in a new window."
2850
  msgstr ""
2851
 
2852
- #: src/admin.php:978
2853
  msgid "Login successful; reloading information."
2854
  msgstr ""
2855
 
2856
- #: src/admin.php:979
2857
  msgid "Registration successful."
2858
  msgstr ""
2859
 
2860
- #: src/admin.php:980
2861
  msgid "Both email and password fields are required."
2862
  msgstr ""
2863
 
2864
- #: src/admin.php:981
2865
  msgid "An email is required and needs to be in a valid format."
2866
  msgstr ""
2867
 
2868
- #: src/admin.php:982
2869
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
2870
  msgstr ""
2871
 
2872
- #: src/admin.php:983
2873
  msgid "Verifying one-time password..."
2874
  msgstr ""
2875
 
2876
- #: src/admin.php:984
2877
  msgid "Perhaps you would want to login instead."
2878
  msgstr ""
2879
 
2880
- #: src/admin.php:985
2881
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
2882
  msgstr ""
2883
 
2884
- #: src/admin.php:986
2885
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
2886
  msgstr ""
2887
 
2888
- #: src/admin.php:987
2889
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
2890
  msgstr ""
2891
 
2892
- #: src/admin.php:988
2893
  msgid "You can also close this wizard."
2894
  msgstr ""
2895
 
2896
- #: src/admin.php:989
2897
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
2898
  msgstr ""
2899
 
2900
- #: src/admin.php:991
2901
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
2902
  msgstr ""
2903
 
2904
- #: src/admin.php:992
2905
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
2906
  msgstr ""
2907
 
2908
- #: src/admin.php:993
2909
  msgid "The preparation of the clone data has been aborted."
2910
  msgstr ""
2911
 
2912
- #: src/admin.php:995
2913
  msgid "Are you sure you want to remove this exclusion rule?"
2914
  msgstr ""
2915
 
2916
- #: src/admin.php:996
2917
  msgid "Please select a file/folder which you would like to exclude"
2918
  msgstr ""
2919
 
2920
- #: src/admin.php:997
2921
  msgid "Please enter a file extension, like zip"
2922
  msgstr ""
2923
 
2924
- #: src/admin.php:998
2925
  msgid "Please enter a valid file extension"
2926
  msgstr ""
2927
 
2928
- #: src/admin.php:999
2929
  msgid "Please enter characters that begin the filename which you would like to exclude"
2930
  msgstr ""
2931
 
2932
- #: src/admin.php:1000
2933
  msgid "Please enter a valid file name prefix"
2934
  msgstr ""
2935
 
2936
- #: src/admin.php:1001
2937
  msgid "The exclusion rule which you are trying to add already exists"
2938
  msgstr ""
2939
 
2940
- #: src/admin.php:1002
2941
  msgid "UpdraftClone key is required."
2942
  msgstr ""
2943
 
2944
- #: src/admin.php:1003, src/templates/wp-admin/settings/backupnow-modal.php:40
2945
  msgid "Include your files in the backup"
2946
  msgstr ""
2947
 
2948
- #: src/admin.php:1004
2949
  msgid "File backup options"
2950
  msgstr ""
2951
 
2952
- #: src/admin.php:1143
2953
  msgid "Add-Ons / Pro Support"
2954
  msgstr ""
2955
 
2956
- #: src/admin.php:1190
2957
  msgid "An error occurred when fetching storage module options: "
2958
  msgstr ""
2959
 
2960
- #: src/admin.php:1195, src/includes/class-commands.php:466, src/templates/wp-admin/settings/take-backup.php:13
2961
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2962
  msgstr ""
2963
 
2964
- #: src/admin.php:1200
2965
  msgid "Welcome to UpdraftPlus!"
2966
  msgstr ""
2967
 
2968
- #: src/admin.php:1200
2969
  msgid "To make a backup, just press the Backup Now button."
2970
  msgstr ""
2971
 
2972
- #: src/admin.php:1200
2973
  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."
2974
  msgstr ""
2975
 
2976
- #: src/admin.php:1204, src/class-updraftplus.php:866
2977
  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)"
2978
  msgstr ""
2979
 
2980
- #: src/admin.php:1208
2981
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
2982
  msgstr ""
2983
 
2984
- #: src/admin.php:1212
2985
  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."
2986
  msgstr ""
2987
 
2988
- #: src/admin.php:1216
2989
  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."
2990
  msgstr ""
2991
 
2992
- #: src/admin.php:1220
2993
  msgid "Your website is hosted using the %s web server."
2994
  msgstr ""
2995
 
2996
- #: src/admin.php:1220
2997
  msgid "Please consult this FAQ if you have problems backing up."
2998
  msgstr ""
2999
 
3000
- #: src/admin.php:1224
3001
  msgid "Notice"
3002
  msgstr ""
3003
 
3004
- #: src/admin.php:1224
3005
  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."
3006
  msgstr ""
3007
 
3008
- #: src/admin.php:1229
3009
  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."
3010
  msgstr ""
3011
 
3012
- #: src/admin.php:1229
3013
  msgid "Read this page for a guide to possible causes and how to fix it."
3014
  msgstr ""
3015
 
3016
- #: src/admin.php:1249, src/admin.php:1270, src/admin.php:1289, src/class-updraftplus.php:602, src/class-updraftplus.php:637, src/class-updraftplus.php:642, src/class-updraftplus.php:647
3017
  msgid "UpdraftPlus notice:"
3018
  msgstr ""
3019
 
3020
- #: src/admin.php:1249
3021
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3022
  msgstr ""
3023
 
3024
- #: src/admin.php:1249
3025
  msgid "Go to the remote storage settings in order to connect."
3026
  msgstr ""
3027
 
3028
- #: src/admin.php:1391, src/admin.php:1401
3029
  msgid "Error: invalid path"
3030
  msgstr ""
3031
 
3032
- #: src/admin.php:1752, src/includes/class-wpadmin-commands.php:506
3033
  msgid "Backup set not found"
3034
  msgstr ""
3035
 
3036
- #: src/admin.php:1838
3037
  msgid "Did not know how to delete from this cloud service."
3038
  msgstr ""
3039
 
3040
- #: src/admin.php:1919
3041
  msgid "Backup sets removed:"
3042
  msgstr ""
3043
 
3044
- #: src/admin.php:1920
3045
  msgid "Local files deleted:"
3046
  msgstr ""
3047
 
3048
- #: src/admin.php:1921
3049
  msgid "Remote files deleted:"
3050
  msgstr ""
3051
 
3052
- #: src/admin.php:2008
3053
  msgid "Job deleted"
3054
  msgstr ""
3055
 
3056
- #: src/admin.php:2016
3057
  msgid "Could not find that job - perhaps it has already finished?"
3058
  msgstr ""
3059
 
3060
- #: src/admin.php:2114, src/admin.php:2135, src/includes/class-commands.php:836
3061
  msgid "Start backup"
3062
  msgstr ""
3063
 
3064
- #: src/admin.php:2114, src/includes/class-commands.php:836
3065
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
3066
  msgstr ""
3067
 
3068
- #: src/admin.php:2197, src/admin.php:2201, src/class-updraftplus.php:637
3069
  msgid "The log file could not be read."
3070
  msgstr ""
3071
 
3072
- #: src/admin.php:2248
3073
  msgid "Download failed"
3074
  msgstr ""
3075
 
3076
- #: src/admin.php:2278
3077
  msgid "Download in progress"
3078
  msgstr ""
3079
 
3080
- #: src/admin.php:2281
3081
  msgid "No local copy present."
3082
  msgstr ""
3083
 
3084
- #: src/admin.php:2335, src/backup.php:1197
3085
  msgid "Backup directory (%s) is not writable, or does not exist."
3086
  msgstr ""
3087
 
3088
- #: src/admin.php:2335
3089
  msgid "You will find more information about this in the Settings section."
3090
  msgstr ""
3091
 
3092
- #: src/admin.php:2372
3093
  msgid "This file could not be uploaded"
3094
  msgstr ""
3095
 
3096
- #: src/admin.php:2387
3097
  msgid "This backup was created by %s, and can be imported."
3098
  msgstr ""
3099
 
3100
- #: src/admin.php:2393
3101
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
3102
  msgstr ""
3103
 
3104
- #: src/admin.php:2401
3105
  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?"
3106
  msgstr ""
3107
 
3108
- #: src/admin.php:2493
3109
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
3110
  msgstr ""
3111
 
3112
- #: src/admin.php:2585
3113
  msgid "Backup directory could not be created"
3114
  msgstr ""
3115
 
3116
- #: src/admin.php:2592
3117
  msgid "Backup directory successfully created."
3118
  msgstr ""
3119
 
3120
- #: src/admin.php:2594, src/admin.php:3452, src/admin.php:4477, src/admin.php:4487, src/admin.php:4496, src/admin.php:5461
3121
  msgid "Return to UpdraftPlus configuration"
3122
  msgstr ""
3123
 
3124
- #: src/admin.php:2606, src/class-updraftplus.php:4318, src/restorer.php:2872
3125
  msgid "Warning:"
3126
  msgstr ""
3127
 
3128
- #: src/admin.php:2606
3129
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3130
  msgstr ""
3131
 
3132
- #: src/admin.php:2609
3133
  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."
3134
  msgstr ""
3135
 
3136
- #: src/admin.php:2624
3137
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
3138
  msgstr ""
3139
 
3140
- #: src/admin.php:2624
3141
  msgid "To fix this problem go here."
3142
  msgstr ""
3143
 
3144
- #: src/admin.php:2626
3145
  msgid "For even more features and personal support, check out "
3146
  msgstr ""
3147
 
3148
- #: src/admin.php:2628
3149
  msgid "Your backup has been restored."
3150
  msgstr ""
3151
 
3152
- #: src/admin.php:2653
3153
  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)."
3154
  msgstr ""
3155
 
3156
- #: src/admin.php:2653
3157
  msgid "Current limit is:"
3158
  msgstr ""
3159
 
3160
- #: src/admin.php:2714
3161
  msgid "Backup Contents And Schedule"
3162
  msgstr ""
3163
 
3164
- #: src/admin.php:2813
3165
  msgid "Backup / Restore"
3166
  msgstr ""
3167
 
3168
- #: src/admin.php:2817
3169
  msgid "Premium / Extensions"
3170
  msgstr ""
3171
 
3172
- #: src/admin.php:2854
3173
  msgid "%s minutes, %s seconds"
3174
  msgstr ""
3175
 
3176
- #: src/admin.php:2856
3177
  msgid "Unfinished restoration"
3178
  msgstr ""
3179
 
3180
- #: src/admin.php:2857
3181
  msgid "You have an unfinished restoration operation, begun %s ago."
3182
  msgstr ""
3183
 
3184
- #: src/admin.php:2862
3185
  msgid "Continue restoration"
3186
  msgstr ""
3187
 
3188
- #: src/admin.php:2863, src/templates/wp-admin/notices/autobackup-notice.php:16, src/templates/wp-admin/notices/autobackup-notice.php:18, src/templates/wp-admin/notices/horizontal-notice.php:16, src/templates/wp-admin/notices/horizontal-notice.php:18
3189
  msgid "Dismiss"
3190
  msgstr ""
3191
 
3192
- #: src/admin.php:2884
3193
  msgid "Not yet got an account (it's free)? Go get one!"
3194
  msgstr ""
3195
 
3196
- #: src/admin.php:2895
3197
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3198
  msgstr ""
3199
 
3200
- #: src/admin.php:2907, src/includes/class-commands.php:905, src/includes/class-commands.php:953, src/templates/wp-admin/settings/temporary-clone.php:83, src/templates/wp-admin/settings/updraftcentral-connect.php:71
3201
  msgid "Processing"
3202
  msgstr ""
3203
 
3204
- #: src/admin.php:2950
3205
  msgid "Connect with your UpdraftPlus.Com account"
3206
  msgstr ""
3207
 
3208
- #: src/admin.php:2956, src/templates/wp-admin/settings/form-contents.php:255, src/templates/wp-admin/settings/updraftcentral-connect.php:44
3209
  msgid "Email"
3210
  msgstr ""
3211
 
3212
- #: src/admin.php:2971
3213
  msgid "Forgotten your details?"
3214
  msgstr ""
3215
 
3216
- #: src/admin.php:2983
3217
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
3218
  msgstr ""
3219
 
3220
- #: src/admin.php:2994
3221
  msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
3222
  msgstr ""
3223
 
3224
- #: src/admin.php:2994
3225
  msgid "Learn more about UpdraftCentral"
3226
  msgstr ""
3227
 
3228
- #: src/admin.php:3020, src/templates/wp-admin/settings/updraftcentral-connect.php:56
3229
  msgid "One Time Password (check your OTP app to get this password)"
3230
  msgstr ""
3231
 
3232
- #: src/admin.php:3090
3233
  msgid "Latest UpdraftPlus.com news:"
3234
  msgstr ""
3235
 
3236
- #: src/admin.php:3117
3237
  msgid "Download most recently modified log file"
3238
  msgstr ""
3239
 
3240
- #: src/admin.php:3160
3241
  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."
3242
  msgstr ""
3243
 
3244
- #: src/admin.php:3225, src/admin.php:4297
3245
  msgid "View Log"
3246
  msgstr ""
3247
 
3248
- #: src/admin.php:3264
3249
  msgid "Backup begun"
3250
  msgstr ""
3251
 
3252
- #: src/admin.php:3269
3253
  msgid "Creating file backup zips"
3254
  msgstr ""
3255
 
3256
- #: src/admin.php:3282
3257
  msgid "Created file backup zips"
3258
  msgstr ""
3259
 
3260
- #: src/admin.php:3287
3261
  msgid "Clone server being provisioned and booted (can take several minutes)"
3262
  msgstr ""
3263
 
3264
- #: src/admin.php:3291
3265
  msgid "Uploading files to remote storage"
3266
  msgstr ""
3267
 
3268
- #: src/admin.php:3292
3269
  msgid "Sending files to remote site"
3270
  msgstr ""
3271
 
3272
- #: src/admin.php:3299
3273
  msgid "(%s%%, file %s of %s)"
3274
  msgstr ""
3275
 
3276
- #: src/admin.php:3304
3277
  msgid "Pruning old backup sets"
3278
  msgstr ""
3279
 
3280
- #: src/admin.php:3308
3281
  msgid "Waiting until scheduled time to retry because of errors"
3282
  msgstr ""
3283
 
3284
- #: src/admin.php:3313
3285
  msgid "Backup finished"
3286
  msgstr ""
3287
 
3288
- #: src/admin.php:3326
3289
  msgid "Created database backup"
3290
  msgstr ""
3291
 
3292
- #: src/admin.php:3337
3293
  msgid "Creating database backup"
3294
  msgstr ""
3295
 
3296
- #: src/admin.php:3339
3297
  msgid "table: %s"
3298
  msgstr ""
3299
 
3300
- #: src/admin.php:3352
3301
  msgid "Encrypting database"
3302
  msgstr ""
3303
 
3304
- #: src/admin.php:3360
3305
  msgid "Encrypted database"
3306
  msgstr ""
3307
 
3308
- #: src/admin.php:3362, src/central/bootstrap.php:444, src/central/bootstrap.php:451, src/methods/updraftvault.php:431, src/methods/updraftvault.php:477, src/methods/updraftvault.php:562
3309
  msgid "Unknown"
3310
  msgstr ""
3311
 
3312
- #: src/admin.php:3379
3313
  msgid "next resumption: %d (after %ss)"
3314
  msgstr ""
3315
 
3316
- #: src/admin.php:3380
3317
  msgid "last activity: %ss ago"
3318
  msgstr ""
3319
 
3320
- #: src/admin.php:3400
3321
  msgid "Job ID: %s"
3322
  msgstr ""
3323
 
3324
- #: src/admin.php:3414, src/admin.php:3704
3325
  msgid "Warning: %s"
3326
  msgstr ""
3327
 
3328
- #: src/admin.php:3434
3329
  msgid "show log"
3330
  msgstr ""
3331
 
3332
- #: src/admin.php:3435
3333
  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."
3334
  msgstr ""
3335
 
3336
- #: src/admin.php:3435
3337
  msgid "stop"
3338
  msgstr ""
3339
 
3340
- #: src/admin.php:3445, src/admin.php:3445
3341
  msgid "Remove old directories"
3342
  msgstr ""
3343
 
3344
- #: src/admin.php:3448
3345
  msgid "Old directories successfully removed."
3346
  msgstr ""
3347
 
3348
- #: src/admin.php:3450
3349
  msgid "Old directory removal failed for some reason. You may want to do this manually."
3350
  msgstr ""
3351
 
3352
- #: src/admin.php:3487, src/admin.php:3522, src/admin.php:3526, src/includes/class-remote-send.php:334, src/includes/class-storage-methods-interface.php:315, src/restorer.php:330, src/restorer.php:3169, src/restorer.php:3274
3353
  msgid "OK"
3354
  msgstr ""
3355
 
3356
- #: src/admin.php:3571
3357
  msgid "The request to the filesystem to create the directory failed."
3358
  msgstr ""
3359
 
3360
- #: src/admin.php:3585
3361
  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"
3362
  msgstr ""
3363
 
3364
- #: src/admin.php:3590
3365
  msgid "The folder exists, but your webserver does not have permission to write to it."
3366
  msgstr ""
3367
 
3368
- #: src/admin.php:3590
3369
  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."
3370
  msgstr ""
3371
 
3372
- #: src/admin.php:3692
3373
  msgid "incremental backup; base backup: %s"
3374
  msgstr ""
3375
 
3376
- #: src/admin.php:3722
3377
  msgid "No backup has been completed"
3378
  msgstr ""
3379
 
3380
- #: src/admin.php:3736
3381
  msgctxt "i.e. Non-automatic"
3382
  msgid "Manual"
3383
  msgstr ""
3384
 
3385
- #: src/admin.php:3749
3386
  msgid "Backup directory specified is writable, which is good."
3387
  msgstr ""
3388
 
3389
- #: src/admin.php:3753
3390
  msgid "Backup directory specified does <b>not</b> exist."
3391
  msgstr ""
3392
 
3393
- #: src/admin.php:3755
3394
  msgid "Backup directory specified exists, but is <b>not</b> writable."
3395
  msgstr ""
3396
 
3397
- #: src/admin.php:3757
3398
  msgid "Follow this link to attempt to create the directory and set the permissions"
3399
  msgstr ""
3400
 
3401
- #: src/admin.php:3757
3402
  msgid "or, to reset this option"
3403
  msgstr ""
3404
 
3405
- #: src/admin.php:3757
3406
  msgid "press here"
3407
  msgstr ""
3408
 
3409
- #: src/admin.php:3757
3410
  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."
3411
  msgstr ""
3412
 
3413
- #: src/admin.php:3837
3414
  msgid "Your wp-content directory server path: %s"
3415
  msgstr ""
3416
 
3417
- #: src/admin.php:3837
3418
  msgid "Any other directories found inside wp-content"
3419
  msgstr ""
3420
 
3421
- #: src/admin.php:3848
3422
  msgid "Exclude these from"
3423
  msgstr ""
3424
 
3425
- #: src/admin.php:3936
3426
  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)."
3427
  msgstr ""
3428
 
3429
- #: src/admin.php:3938
3430
  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."
3431
  msgstr ""
3432
 
3433
- #: src/admin.php:3941
3434
  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."
3435
  msgstr ""
3436
 
3437
- #: src/admin.php:3979, src/templates/wp-admin/settings/backupnow-modal.php:60, src/templates/wp-admin/settings/existing-backups-table.php:71, src/templates/wp-admin/settings/existing-backups-table.php:74
3438
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
3439
  msgstr ""
3440
 
3441
- #: src/admin.php:4027
3442
  msgid "Total backup size:"
3443
  msgstr ""
3444
 
3445
- #: src/admin.php:4093, src/includes/class-wpadmin-commands.php:162, src/restorer.php:2179
3446
  msgid "Backup created by unknown source (%s) - cannot be restored."
3447
  msgstr ""
3448
 
3449
- #: src/admin.php:4122
3450
  msgid "Press here to download or browse"
3451
  msgstr ""
3452
 
3453
- #: src/admin.php:4127
3454
  msgid "(%d archive(s) in set)."
3455
  msgstr ""
3456
 
3457
- #: src/admin.php:4130
3458
  msgid "You appear to be missing one or more archives from this multi-archive set."
3459
  msgstr ""
3460
 
3461
- #: src/admin.php:4158, src/admin.php:4160
3462
  msgid "(Not finished)"
3463
  msgstr ""
3464
 
3465
- #: src/admin.php:4160
3466
  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."
3467
  msgstr ""
3468
 
3469
- #: src/admin.php:4185
3470
  msgid "(backup set imported from remote location)"
3471
  msgstr ""
3472
 
3473
- #: src/admin.php:4188
3474
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
3475
  msgstr ""
3476
 
3477
- #: src/admin.php:4267
3478
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
3479
  msgstr ""
3480
 
3481
- #: src/admin.php:4287
3482
  msgid "Delete this backup set"
3483
  msgstr ""
3484
 
3485
- #: src/admin.php:4440, src/admin.php:4448
3486
  msgid "Sufficient information about the in-progress restoration operation could not be found."
3487
  msgstr ""
3488
 
3489
- #: src/admin.php:4568
3490
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
3491
  msgstr ""
3492
 
3493
- #: src/admin.php:4569
3494
  msgid "Backup does not exist in the backup history"
3495
  msgstr ""
3496
 
3497
- #: src/admin.php:4589
3498
  msgid "ABORT: Could not find the information on which entities to restore."
3499
  msgstr ""
3500
 
3501
- #: src/admin.php:4589
3502
  msgid "If making a request for support, please include this information:"
3503
  msgstr ""
3504
 
3505
- #: src/admin.php:4754
3506
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3507
  msgstr ""
3508
 
3509
- #: src/admin.php:4754
3510
  msgid "settings"
3511
  msgstr ""
3512
 
3513
- #: src/admin.php:4754
3514
  msgid "Not got any remote storage?"
3515
  msgstr ""
3516
 
3517
- #: src/admin.php:4754
3518
  msgid "Check out UpdraftPlus Vault."
3519
  msgstr ""
3520
 
3521
- #: src/admin.php:4756
3522
  msgid "Send this backup to remote storage"
3523
  msgstr ""
3524
 
3525
- #: src/admin.php:4846
3526
  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."
3527
  msgstr ""
3528
 
3529
- #: src/admin.php:4853, src/templates/wp-admin/settings/take-backup.php:51
3530
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3531
  msgstr ""
3532
 
3533
- #: src/admin.php:4882
3534
  msgid "Your settings have been saved."
3535
  msgstr ""
3536
 
3537
- #: src/admin.php:4887
3538
  msgid "Your settings failed to save. Please refresh the settings page and try again"
3539
  msgstr ""
3540
 
3541
- #: src/admin.php:4935
3542
  msgid "authentication error"
3543
  msgstr ""
3544
 
3545
- #: src/admin.php:4939
3546
  msgid "Remote storage method and instance id are required for authentication."
3547
  msgstr ""
3548
 
3549
- #: src/admin.php:5006
3550
  msgid "Your settings have been wiped."
3551
  msgstr ""
3552
 
3553
- #: src/admin.php:5107
3554
  msgid "Known backups (raw)"
3555
  msgstr ""
3556
 
3557
- #: src/admin.php:5142
3558
  msgid "Options (raw)"
3559
  msgstr ""
3560
 
3561
- #: src/admin.php:5145
3562
  msgid "Value"
3563
  msgstr ""
3564
 
3565
- #: src/admin.php:5297
3566
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
3567
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
3568
  msgstr[0] ""
3569
  msgstr[1] ""
3570
 
3571
- #: src/admin.php:5297, src/methods/openstack2.php:144, src/restorer.php:183, src/restorer.php:185, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/templates/wp-admin/settings/tab-backups.php:27, src/templates/wp-admin/settings/updraftcentral-connect.php:14
3572
  msgid "Follow this link for more information"
3573
  msgstr ""
3574
 
3575
- #: src/admin.php:5321, src/admin.php:5325, src/templates/wp-admin/advanced/site-info.php:45, src/templates/wp-admin/advanced/site-info.php:51, src/templates/wp-admin/advanced/site-info.php:58, src/templates/wp-admin/advanced/site-info.php:59
3576
  msgid "%s version:"
3577
  msgstr ""
3578
 
3579
- #: src/admin.php:5329
3580
  msgid "Clone region:"
3581
  msgstr ""
3582
 
3583
- #: src/admin.php:5344
3584
  msgid "Forbid non-administrators to login to WordPress on your clone"
3585
  msgstr ""
3586
 
3587
- #: src/admin.php:5367
3588
  msgid "(current version)"
3589
  msgstr ""
3590
 
3591
- #: src/admin.php:5387
3592
  msgid "Your clone has started and will be available at the following URLs once it is ready."
3593
  msgstr ""
3594
 
3595
- #: src/admin.php:5388
3596
  msgid "Front page:"
3597
  msgstr ""
3598
 
3599
- #: src/admin.php:5389
3600
  msgid "Dashboard:"
3601
  msgstr ""
3602
 
3603
- #: src/admin.php:5391, src/admin.php:5394
3604
  msgid "You can find your temporary clone information in your updraftplus.com account here."
3605
  msgstr ""
3606
 
3607
- #: src/admin.php:5393
3608
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
3609
  msgstr ""
3610
 
3611
- #: src/admin.php:5459, src/admin.php:5461
3612
  msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
3613
  msgstr ""
3614
 
25
  msgid "UpdraftPlus Automatic Backups"
26
  msgstr ""
27
 
28
+ #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026, src/admin.php:915
29
  msgid "Automatic backup before update"
30
  msgstr ""
31
 
49
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
50
  msgstr ""
51
 
52
+ #: src/addons/autobackup.php:344, src/addons/autobackup.php:439, src/admin.php:3091, src/admin.php:3097, src/templates/wp-admin/settings/take-backup.php:69
53
  msgid "Last log message"
54
  msgstr ""
55
 
57
  msgid "Starting automatic backup..."
58
  msgstr ""
59
 
60
+ #: src/addons/autobackup.php:349, src/addons/autobackup.php:441, src/admin.php:866, src/methods/remotesend.php:71, src/methods/remotesend.php:79, src/methods/remotesend.php:245, src/methods/remotesend.php:262, src/methods/remotesend.php:310
61
  msgid "Unexpected response:"
62
  msgstr ""
63
 
97
  msgid "now proceeding with the updates..."
98
  msgstr ""
99
 
100
+ #: src/addons/autobackup.php:1072, src/admin.php:1045
101
  msgid "Be safe with an automatic backup"
102
  msgstr ""
103
 
109
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
110
  msgstr ""
111
 
112
+ #: src/addons/autobackup.php:1104, src/admin.php:911
113
  msgid "Proceed with update"
114
  msgstr ""
115
 
145
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
146
  msgstr ""
147
 
148
+ #: src/addons/azure.php:608, src/addons/migrator.php:948, src/admin.php:1222, src/admin.php:1226, src/admin.php:1230, src/admin.php:1234, src/admin.php:1238, src/admin.php:1247, src/admin.php:3947, src/admin.php:3954, src/admin.php:3956, src/admin.php:5315, src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440, src/methods/ftp.php:335, src/methods/openstack-base.php:571, src/methods/s3.php:865, src/methods/s3.php:869, src/methods/updraftvault.php:324, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/templates/wp-admin/settings/tab-backups.php:27, src/udaddons/updraftplus-addons.php:265
149
  msgid "Warning"
150
  msgstr ""
151
 
152
+ #: src/addons/azure.php:608, src/admin.php:3947, src/methods/updraftvault.php:324
153
  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."
154
  msgstr ""
155
 
229
  msgid "Azure China"
230
  msgstr ""
231
 
232
+ #: src/addons/backblaze.php:205, src/admin.php:2207
233
  msgid "Error: unexpected file read fail"
234
  msgstr ""
235
 
236
+ #: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:117, src/addons/migrator.php:893, src/addons/migrator.php:1190, src/addons/migrator.php:1271, src/addons/migrator.php:1320, src/addons/migrator.php:1558, src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166, src/addons/s3-enhanced.php:168, src/addons/sftp.php:923, src/addons/webdav.php:203, src/admin.php:93, src/admin.php:880, src/includes/class-remote-send.php:273, src/includes/class-remote-send.php:300, src/includes/class-remote-send.php:306, src/includes/class-remote-send.php:369, src/includes/class-remote-send.php:428, src/includes/class-remote-send.php:455, src/includes/class-remote-send.php:478, src/includes/class-remote-send.php:488, src/includes/class-remote-send.php:493, src/methods/remotesend.php:76, src/methods/remotesend.php:259, src/methods/updraftvault.php:560, src/restorer.php:332, src/restorer.php:360, src/restorer.php:2104
237
  msgid "Error:"
238
  msgstr ""
239
 
613
  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."
614
  msgstr ""
615
 
616
+ #: src/addons/googlecloud.php:445, src/addons/migrator.php:590, src/admin.php:2390, src/admin.php:2411, src/admin.php:2419, src/class-updraftplus.php:1017, src/class-updraftplus.php:1023, src/class-updraftplus.php:4140, src/class-updraftplus.php:4142, src/class-updraftplus.php:4307, src/class-updraftplus.php:4314, src/class-updraftplus.php:4385, src/methods/googledrive.php:401, src/methods/s3.php:344
617
  msgid "Error: %s"
618
  msgstr ""
619
 
657
  msgid "You must save and authenticate before you can test your settings."
658
  msgstr ""
659
 
660
+ #: src/addons/googlecloud.php:783, src/addons/googlecloud.php:817, src/addons/googlecloud.php:823, src/addons/sftp.php:553, src/admin.php:3501, src/admin.php:3537, src/admin.php:3547, src/methods/addon-base-v2.php:313, src/methods/stream-base.php:356
661
  msgid "Failed"
662
  msgstr ""
663
 
733
  msgid "Otherwise, you can leave it blank."
734
  msgstr ""
735
 
736
+ #: src/addons/googlecloud.php:1041, src/addons/migrator.php:493, src/addons/migrator.php:496, src/addons/migrator.php:499, src/admin.php:1226, src/admin.php:2629, src/backup.php:3296, src/class-updraftplus.php:4406, src/class-updraftplus.php:4406, src/updraftplus.php:157
737
  msgid "Go here for more information."
738
  msgstr ""
739
 
789
  msgid "Supported backup plugins: %s"
790
  msgstr ""
791
 
792
+ #: src/addons/importer.php:276, src/admin.php:4108, src/includes/class-backup-history.php:499
793
  msgid "Backup created by: %s."
794
  msgstr ""
795
 
813
  msgid "No incremental backup of your files is possible, as no suitable existing backup was found to add increments to."
814
  msgstr ""
815
 
816
+ #: src/addons/incremental.php:342, src/addons/reporting.php:261, src/admin.php:4040
817
  msgid "None"
818
  msgstr ""
819
 
821
  msgid "Every hour"
822
  msgstr ""
823
 
824
+ #: src/addons/incremental.php:344, src/addons/incremental.php:345, src/addons/incremental.php:346, src/addons/incremental.php:347, src/admin.php:3755, src/admin.php:3756, src/admin.php:3757, src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
825
  msgid "Every %s hours"
826
  msgstr ""
827
 
828
+ #: src/addons/incremental.php:348, src/admin.php:3758
829
  msgid "Daily"
830
  msgstr ""
831
 
832
+ #: src/addons/incremental.php:349, src/admin.php:3759
833
  msgid "Weekly"
834
  msgstr ""
835
 
836
+ #: src/addons/incremental.php:350, src/admin.php:3760
837
  msgid "Fortnightly"
838
  msgstr ""
839
 
840
+ #: src/addons/incremental.php:351, src/admin.php:3761
841
  msgid "Monthly"
842
  msgstr ""
843
 
869
  msgid "Please make sure that you have made a note of the password!"
870
  msgstr ""
871
 
872
+ #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241, src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2984, src/methods/openstack2.php:164, src/methods/updraftvault.php:382, src/templates/wp-admin/settings/updraftcentral-connect.php:50
873
  msgid "Password"
874
  msgstr ""
875
 
961
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
962
  msgstr ""
963
 
964
+ #: src/addons/migrator.php:274, src/admin.php:726, src/admin.php:913, src/admin.php:4206
965
  msgid "Restore"
966
  msgstr ""
967
 
985
  msgid "Replace with"
986
  msgstr ""
987
 
988
+ #: src/addons/migrator.php:340, src/addons/moredatabase.php:89, src/addons/moredatabase.php:91, src/addons/moredatabase.php:93, src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530, src/addons/webdav.php:253, src/admin.php:932, src/includes/class-remote-send.php:470, src/methods/addon-base-v2.php:305, src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189, src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524, src/methods/ftp.php:417, src/methods/ftp.php:421, src/methods/openstack2.php:180, src/methods/openstack2.php:185, src/methods/openstack2.php:190, src/methods/openstack2.php:195, src/methods/s3.php:1139, src/methods/s3.php:1143
989
  msgid "Failure: No %s was given."
990
  msgstr ""
991
 
1187
  msgid "SQL update commands run:"
1188
  msgstr ""
1189
 
1190
+ #: src/addons/migrator.php:1305, src/admin.php:877
1191
  msgid "Errors:"
1192
  msgstr ""
1193
 
1239
  msgid "Paste key here"
1240
  msgstr ""
1241
 
1242
+ #: src/addons/migrator.php:1748, src/admin.php:925
1243
  msgid "Add site"
1244
  msgstr ""
1245
 
1259
  msgid "Enter your chosen name"
1260
  msgstr ""
1261
 
1262
+ #: src/addons/migrator.php:1761, src/addons/sftp.php:467, src/admin.php:931, src/admin.php:5163, src/templates/wp-admin/settings/temporary-clone.php:63
1263
  msgid "Key"
1264
  msgstr ""
1265
 
1331
  msgid "%s total table(s) found; %s with the indicated prefix."
1332
  msgstr ""
1333
 
1334
+ #: src/addons/moredatabase.php:144, src/admin.php:1717
1335
  msgid "Messages:"
1336
  msgstr ""
1337
 
1375
  msgid "Username"
1376
  msgstr ""
1377
 
1378
+ #: src/addons/moredatabase.php:242, src/addons/reporting.php:276, src/addons/wp-cli.php:432, src/admin.php:360, src/admin.php:4015, src/admin.php:4068, src/includes/class-remote-send.php:338, src/includes/class-wpadmin-commands.php:157, src/includes/class-wpadmin-commands.php:521, src/restorer.php:466, src/templates/wp-admin/settings/delete-and-restore-modals.php:74, src/templates/wp-admin/settings/delete-and-restore-modals.php:75, src/templates/wp-admin/settings/take-backup.php:34
1379
  msgid "Database"
1380
  msgstr ""
1381
 
1427
  msgid "(None configured)"
1428
  msgstr ""
1429
 
1430
+ #: src/addons/morefiles.php:71, src/admin.php:940
1431
  msgctxt "(verb)"
1432
  msgid "Download"
1433
  msgstr ""
1512
  msgid "Go up a directory"
1513
  msgstr ""
1514
 
1515
+ #: src/addons/morefiles.php:311, src/admin.php:906
1516
  msgid "Cancel"
1517
  msgstr ""
1518
 
1528
  msgid "Exclude these:"
1529
  msgstr ""
1530
 
1531
+ #: src/addons/morefiles.php:476, src/admin.php:3869
1532
  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."
1533
  msgstr ""
1534
 
1544
  msgid "(as many as you like)"
1545
  msgstr ""
1546
 
1547
+ #: src/addons/morestorage.php:81, src/admin.php:986
1548
  msgid "Currently enabled"
1549
  msgstr ""
1550
 
1551
+ #: src/addons/morestorage.php:81, src/admin.php:987
1552
  msgid "Currently disabled"
1553
  msgstr ""
1554
 
1780
  msgid "Time taken:"
1781
  msgstr ""
1782
 
1783
+ #: src/addons/reporting.php:239, src/admin.php:4028
1784
  msgid "Uploaded to:"
1785
  msgstr ""
1786
 
1816
  msgid "Log all messages to syslog (only server admins are likely to want this)"
1817
  msgstr ""
1818
 
1819
+ #: src/addons/reporting.php:539, src/admin.php:861
1820
  msgid "To send to more than one address, separate each address with a comma."
1821
  msgstr ""
1822
 
1823
+ #: src/addons/reporting.php:541, src/admin.php:855
1824
  msgid "Send a report only when there are warnings/errors"
1825
  msgstr ""
1826
 
1828
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1829
  msgstr ""
1830
 
1831
+ #: src/addons/reporting.php:543, src/admin.php:856
1832
  msgid "When the Email storage method is enabled, also send the backup"
1833
  msgstr ""
1834
 
1840
  msgid "Use this option to only send database backups when sending to email, and skip other components."
1841
  msgstr ""
1842
 
1843
+ #: src/addons/reporting.php:545, src/admin.php:859
1844
  msgid "Only email the database backup"
1845
  msgstr ""
1846
 
2229
  msgid "No previous backup found to add an increment to."
2230
  msgstr ""
2231
 
2232
+ #: src/addons/wp-cli.php:110, src/admin.php:864
2233
  msgid "You have chosen to backup a database, but no tables have been selected"
2234
  msgstr ""
2235
 
2236
+ #: src/addons/wp-cli.php:116, src/admin.php:862
2237
  msgid "If you exclude both the database and the files, then you have excluded everything!"
2238
  msgstr ""
2239
 
2265
  msgid "Latest full backup found; identifier:"
2266
  msgstr ""
2267
 
2268
+ #: src/addons/wp-cli.php:430, src/admin.php:4062, src/admin.php:4110
2269
  msgid "unknown source"
2270
  msgstr ""
2271
 
2272
+ #: src/addons/wp-cli.php:432, src/admin.php:4068
2273
  msgid "Database (created by %s)"
2274
  msgstr ""
2275
 
2276
+ #: src/addons/wp-cli.php:438, src/admin.php:4070
2277
  msgid "External database"
2278
  msgstr ""
2279
 
2280
+ #: src/addons/wp-cli.php:450, src/admin.php:4114
2281
  msgid "Files and database WordPress backup (created by %s)"
2282
  msgstr ""
2283
 
2284
+ #: src/addons/wp-cli.php:450, src/admin.php:4114
2285
  msgid "Files backup (created by %s)"
2286
  msgstr ""
2287
 
2288
+ #: src/addons/wp-cli.php:519, src/admin.php:881, src/class-updraftplus.php:1318, src/class-updraftplus.php:1362, src/includes/class-filesystem-functions.php:409, src/includes/class-storage-methods-interface.php:324, src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98, src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225, src/methods/googledrive.php:1118, src/methods/remotesend.php:315, src/methods/stream-base.php:219, src/restorer.php:3165, src/restorer.php:3190, src/restorer.php:3271, src/udaddons/options.php:231, src/updraftplus.php:157
2289
  msgid "Error"
2290
  msgstr ""
2291
 
2305
  msgid "No valid components found, please select different components or a backup set with components that can be restored."
2306
  msgstr ""
2307
 
2308
+ #: src/addons/wp-cli.php:650, src/admin.php:4598
2309
  msgid "UpdraftPlus Restoration: Progress"
2310
  msgstr ""
2311
 
2312
+ #: src/addons/wp-cli.php:664, src/admin.php:4601
2313
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2314
  msgstr ""
2315
 
2349
  msgid "At the same time as the files backup"
2350
  msgstr ""
2351
 
2352
+ #: src/admin.php:350, src/admin.php:5132, src/templates/wp-admin/settings/take-backup.php:24
2353
  msgid "Files"
2354
  msgstr ""
2355
 
2373
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
2374
  msgstr ""
2375
 
2376
+ #: src/admin.php:575
2377
+ msgid "You can test running your site on a different PHP (or WordPress) version using UpdraftClone credits."
2378
+ msgstr ""
2379
+
2380
+ #: src/admin.php:726
2381
  msgid "Backup"
2382
  msgstr ""
2383
 
2384
+ #: src/admin.php:734, src/admin.php:2832
2385
  msgid "Migrate / Clone"
2386
  msgstr ""
2387
 
2388
+ #: src/admin.php:742, src/admin.php:1159, src/admin.php:2833
2389
  msgid "Settings"
2390
  msgstr ""
2391
 
2392
+ #: src/admin.php:750, src/admin.php:2834
2393
  msgid "Advanced Tools"
2394
  msgstr ""
2395
 
2396
+ #: src/admin.php:758
2397
  msgid "Extensions"
2398
  msgstr ""
2399
 
2400
+ #: src/admin.php:857
2401
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
2402
  msgstr ""
2403
 
2404
+ #: src/admin.php:858
2405
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
2406
  msgstr ""
2407
 
2408
+ #: src/admin.php:860
2409
  msgid "Rescanning remote and local storage for backup sets..."
2410
  msgstr ""
2411
 
2412
+ #: src/admin.php:863
2413
  msgid "You have chosen to backup files, but no file entities have been selected"
2414
  msgstr ""
2415
 
2416
+ #: src/admin.php:865
2417
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
2418
  msgstr ""
2419
 
2420
+ #: src/admin.php:867
2421
  msgid "The web server returned an error code (try again, or check your web server logs)"
2422
  msgstr ""
2423
 
2424
+ #: src/admin.php:868
2425
  msgid "The new user's RackSpace console password is (this will not be shown again):"
2426
  msgstr ""
2427
 
2428
+ #: src/admin.php:869
2429
  msgid "Trying..."
2430
  msgstr ""
2431
 
2432
+ #: src/admin.php:870
2433
  msgid "Fetching..."
2434
  msgstr ""
2435
 
2436
+ #: src/admin.php:871
2437
  msgid "calculating..."
2438
  msgstr ""
2439
 
2440
+ #: src/admin.php:872
2441
  msgid "Begun looking for this entity"
2442
  msgstr ""
2443
 
2444
+ #: src/admin.php:873
2445
  msgid "Some files are still downloading or being processed - please wait."
2446
  msgstr ""
2447
 
2448
+ #: src/admin.php:874
2449
  msgid "Processing files - please wait..."
2450
  msgstr ""
2451
 
2452
+ #: src/admin.php:875
2453
  msgid "Error: the server sent an empty response."
2454
  msgstr ""
2455
 
2456
+ #: src/admin.php:876
2457
  msgid "Warnings:"
2458
  msgstr ""
2459
 
2460
+ #: src/admin.php:878
2461
  msgid "Error: the server sent us a response which we did not understand."
2462
  msgstr ""
2463
 
2464
+ #: src/admin.php:879, src/restorer.php:180
2465
  msgid "Error data:"
2466
  msgstr ""
2467
 
2468
+ #: src/admin.php:882, src/admin.php:1993, src/includes/deprecated-actions.php:29, src/templates/wp-admin/settings/downloading-and-restoring.php:21, src/templates/wp-admin/settings/tab-backups.php:21, src/templates/wp-admin/settings/tab-backups.php:44
2469
  msgid "Existing Backups"
2470
  msgstr ""
2471
 
2472
+ #: src/admin.php:883, src/admin.php:2285
2473
  msgid "File ready."
2474
  msgstr ""
2475
 
2476
+ #: src/admin.php:884, src/admin.php:2612, src/admin.php:3470, src/admin.php:4495, src/admin.php:4505, src/admin.php:4514, src/templates/wp-admin/settings/existing-backups-table.php:19, src/templates/wp-admin/settings/existing-backups-table.php:137
2477
  msgid "Actions"
2478
  msgstr ""
2479
 
2480
+ #: src/admin.php:885
2481
  msgid "Delete from your web server"
2482
  msgstr ""
2483
 
2484
+ #: src/admin.php:886
2485
  msgid "Download to your computer"
2486
  msgstr ""
2487
 
2488
+ #: src/admin.php:887
2489
  msgid "Browse contents"
2490
  msgstr ""
2491
 
2492
+ #: src/admin.php:888
2493
  msgid "Download error: the server sent us a response which we did not understand."
2494
  msgstr ""
2495
 
2496
+ #: src/admin.php:889
2497
  msgid "Requesting start of backup..."
2498
  msgstr ""
2499
 
2500
+ #: src/admin.php:890
2501
  msgid "PHP information"
2502
  msgstr ""
2503
 
2504
+ #: src/admin.php:891, src/admin.php:3184
2505
  msgid "Delete Old Directories"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:892
2509
  msgid "Raw backup history"
2510
  msgstr ""
2511
 
2512
+ #: src/admin.php:893, src/admin.php:894, src/includes/class-backup-history.php:506
2513
  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))."
2514
  msgstr ""
2515
 
2516
+ #: src/admin.php:893
2517
  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."
2518
  msgstr ""
2519
 
2520
+ #: src/admin.php:894, src/includes/class-backup-history.php:506
2521
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2522
  msgstr ""
2523
 
2524
+ #: src/admin.php:895
2525
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
2526
  msgstr ""
2527
 
2528
+ #: src/admin.php:896
2529
  msgid "Upload error:"
2530
  msgstr ""
2531
 
2532
+ #: src/admin.php:897
2533
  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)."
2534
  msgstr ""
2535
 
2536
+ #: src/admin.php:898
2537
  msgid "Upload error"
2538
  msgstr ""
2539
 
2540
+ #: src/admin.php:899
2541
  msgid "Follow this link to attempt decryption and download the database file to your computer."
2542
  msgstr ""
2543
 
2544
+ #: src/admin.php:900
2545
  msgid "This decryption key will be attempted:"
2546
  msgstr ""
2547
 
2548
+ #: src/admin.php:901
2549
  msgid "Unknown server response:"
2550
  msgstr ""
2551
 
2552
+ #: src/admin.php:902
2553
  msgid "Unknown server response status:"
2554
  msgstr ""
2555
 
2556
+ #: src/admin.php:903
2557
  msgid "The file was uploaded."
2558
  msgstr ""
2559
 
2560
+ #: src/admin.php:905, src/templates/wp-admin/settings/take-backup.php:51
2561
  msgid "Backup Now"
2562
  msgstr ""
2563
 
2564
+ #: src/admin.php:907, src/admin.php:3498, src/admin.php:3532, src/admin.php:4305, src/includes/class-remote-send.php:560, src/templates/wp-admin/settings/existing-backups-table.php:153, src/templates/wp-admin/settings/file-backup-exclude.php:11
2565
  msgid "Delete"
2566
  msgstr ""
2567
 
2568
+ #: src/admin.php:908, src/central/bootstrap.php:565
2569
  msgid "Create"
2570
  msgstr ""
2571
 
2572
+ #: src/admin.php:909, src/admin.php:4285
2573
  msgid "Upload"
2574
  msgstr ""
2575
 
2576
+ #: src/admin.php:910
2577
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2578
  msgstr ""
2579
 
2580
+ #: src/admin.php:912, src/includes/updraftplus-tour.php:89
2581
  msgid "Close"
2582
  msgstr ""
2583
 
2584
+ #: src/admin.php:914, src/admin.php:3736
2585
  msgid "Download log file"
2586
  msgstr ""
2587
 
2588
+ #: src/admin.php:916, src/admin.php:942, src/admin.php:943
2589
  msgid "You have made changes to your settings, and not saved."
2590
  msgstr ""
2591
 
2592
+ #: src/admin.php:917
2593
  msgid "Saving..."
2594
  msgstr ""
2595
 
2596
+ #: src/admin.php:918, src/admin.php:2915, src/methods/updraftvault.php:337, src/methods/updraftvault.php:383, src/templates/wp-admin/settings/temporary-clone.php:82
2597
  msgid "Connect"
2598
  msgstr ""
2599
 
2600
+ #: src/admin.php:919
2601
  msgid "Connecting..."
2602
  msgstr ""
2603
 
2604
+ #: src/admin.php:920, src/methods/updraftvault.php:413, src/methods/updraftvault.php:483
2605
  msgid "Disconnect"
2606
  msgstr ""
2607
 
2608
+ #: src/admin.php:921
2609
  msgid "Disconnecting..."
2610
  msgstr ""
2611
 
2612
+ #: src/admin.php:922
2613
  msgid "Counting..."
2614
  msgstr ""
2615
 
2616
+ #: src/admin.php:923
2617
  msgid "Update quota count"
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:924
2621
  msgid "Adding..."
2622
  msgstr ""
2623
 
2624
+ #: src/admin.php:926
2625
  msgid "Resetting..."
2626
  msgstr ""
2627
 
2628
+ #: src/admin.php:927
2629
  msgid "Creating..."
2630
  msgstr ""
2631
 
2632
+ #: src/admin.php:927
2633
  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."
2634
  msgstr ""
2635
 
2636
+ #: src/admin.php:928, src/includes/class-remote-send.php:530
2637
  msgid "Send to site:"
2638
  msgstr ""
2639
 
2640
+ #: src/admin.php:929, src/includes/class-remote-send.php:306
2641
  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."
2642
  msgstr ""
2643
 
2644
+ #: src/admin.php:930
2645
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2646
  msgstr ""
2647
 
2648
+ #: src/admin.php:932
2649
  msgid "key name"
2650
  msgstr ""
2651
 
2652
+ #: src/admin.php:933, src/templates/wp-admin/settings/existing-backups-table.php:159
2653
  msgid "Deleting..."
2654
  msgstr ""
2655
 
2656
+ #: src/admin.php:934
2657
  msgid "Please enter a valid URL"
2658
  msgstr ""
2659
 
2660
+ #: src/admin.php:935
2661
  msgid "We requested to delete the file, but could not understand the server's response"
2662
  msgstr ""
2663
 
2664
+ #: src/admin.php:936, src/includes/class-remote-send.php:334
2665
  msgid "Testing connection..."
2666
  msgstr ""
2667
 
2668
+ #: src/admin.php:937, src/includes/class-remote-send.php:365, src/includes/class-remote-send.php:536
2669
  msgid "Send"
2670
  msgstr ""
2671
 
2672
+ #: src/admin.php:941
2673
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2674
  msgstr ""
2675
 
2676
+ #: src/admin.php:942
2677
  msgid "You should save your changes to ensure that they are used for making your backup."
2678
  msgstr ""
2679
 
2680
+ #: src/admin.php:943
2681
  msgid "Your export file will be of your displayed settings, not your saved ones."
2682
  msgstr ""
2683
 
2684
+ #: src/admin.php:946
2685
  msgid "day"
2686
  msgstr ""
2687
 
2688
+ #: src/admin.php:947
2689
  msgid "in the month"
2690
  msgstr ""
2691
 
2692
+ #: src/admin.php:948
2693
  msgid "day(s)"
2694
  msgstr ""
2695
 
2696
+ #: src/admin.php:949
2697
  msgid "hour(s)"
2698
  msgstr ""
2699
 
2700
+ #: src/admin.php:950
2701
  msgid "week(s)"
2702
  msgstr ""
2703
 
2704
+ #: src/admin.php:951
2705
  msgid "For backups older than"
2706
  msgstr ""
2707
 
2708
+ #: src/admin.php:953
2709
  msgid "Processing..."
2710
  msgstr ""
2711
 
2712
+ #: src/admin.php:954
2713
  msgid "Please fill in the required information."
2714
  msgstr ""
2715
 
2716
+ #: src/admin.php:955, src/methods/backup-module.php:317
2717
  msgid "Test %s Settings"
2718
  msgstr ""
2719
 
2720
+ #: src/admin.php:956
2721
  msgid "Testing %s Settings..."
2722
  msgstr ""
2723
 
2724
+ #: src/admin.php:957
2725
  msgid "%s settings test result:"
2726
  msgstr ""
2727
 
2728
+ #: src/admin.php:958
2729
  msgid "Nothing yet logged"
2730
  msgstr ""
2731
 
2732
+ #: src/admin.php:959
2733
  msgid "You have not yet selected a file to import."
2734
  msgstr ""
2735
 
2736
+ #: src/admin.php:960
2737
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2738
  msgstr ""
2739
 
2740
+ #: src/admin.php:963
2741
  msgid "Importing..."
2742
  msgstr ""
2743
 
2744
+ #: src/admin.php:964
2745
  msgid "This will import data from:"
2746
  msgstr ""
2747
 
2748
+ #: src/admin.php:965
2749
  msgid "Which was exported on:"
2750
  msgstr ""
2751
 
2752
+ #: src/admin.php:966
2753
  msgid "Do you want to carry out the import?"
2754
  msgstr ""
2755
 
2756
+ #: src/admin.php:967
2757
  msgid "Complete"
2758
  msgstr ""
2759
 
2760
+ #: src/admin.php:968, src/admin.php:3243
2761
  msgid "The backup has finished running"
2762
  msgstr ""
2763
 
2764
+ #: src/admin.php:969
2765
  msgid "The backup was aborted"
2766
  msgstr ""
2767
 
2768
+ #: src/admin.php:971
2769
  msgid "remote files deleted"
2770
  msgstr ""
2771
 
2772
+ #: src/admin.php:972
2773
  msgid "HTTP code:"
2774
  msgstr ""
2775
 
2776
+ #: src/admin.php:973
2777
  msgid "The file failed to upload. Please check the following:"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:973
2781
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2782
  msgstr ""
2783
 
2784
+ #: src/admin.php:973
2785
  msgid "The available memory on the server."
2786
  msgstr ""
2787
 
2788
+ #: src/admin.php:973
2789
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2790
  msgstr ""
2791
 
2792
+ #: src/admin.php:973
2793
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2794
  msgstr ""
2795
 
2796
+ #: src/admin.php:974
2797
  msgid "Browsing zip file"
2798
  msgstr ""
2799
 
2800
+ #: src/admin.php:975
2801
  msgid "Select a file to view information about it"
2802
  msgstr ""
2803
 
2804
+ #: src/admin.php:976
2805
  msgid "Search"
2806
  msgstr ""
2807
 
2808
+ #: src/admin.php:977
2809
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2810
  msgstr ""
2811
 
2812
+ #: src/admin.php:978
2813
  msgid "Loading log file"
2814
  msgstr ""
2815
 
2816
+ #: src/admin.php:981
2817
  msgid "Please enter a valid URL e.g http://example.com"
2818
  msgstr ""
2819
 
2820
+ #: src/admin.php:988
2821
  msgid "Local backup upload has started; please check the log file to see the upload progress"
2822
  msgstr ""
2823
 
2824
+ #: src/admin.php:989
2825
  msgid "You must select at least one remote storage destination to upload this backup set to."
2826
  msgstr ""
2827
 
2828
+ #: src/admin.php:990
2829
  msgid "(already uploaded)"
2830
  msgstr ""
2831
 
2832
+ #: src/admin.php:991
2833
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
2834
  msgstr ""
2835
 
2836
+ #: src/admin.php:992, src/templates/wp-admin/settings/updraftcentral-connect.php:9
2837
  msgid "UpdraftCentral Cloud"
2838
  msgstr ""
2839
 
2840
+ #: src/admin.php:993
2841
  msgid "Connected. Requesting UpdraftCentral Key."
2842
  msgstr ""
2843
 
2844
+ #: src/admin.php:994
2845
  msgid "Key created. Adding site to UpdraftCentral Cloud."
2846
  msgstr ""
2847
 
2848
+ #: src/admin.php:995
2849
  msgid "Login successful."
2850
  msgstr ""
2851
 
2852
+ #: src/admin.php:995, src/admin.php:997
2853
  msgid "Please follow this link to open %s in a new window."
2854
  msgstr ""
2855
 
2856
+ #: src/admin.php:996
2857
  msgid "Login successful; reloading information."
2858
  msgstr ""
2859
 
2860
+ #: src/admin.php:997
2861
  msgid "Registration successful."
2862
  msgstr ""
2863
 
2864
+ #: src/admin.php:998
2865
  msgid "Both email and password fields are required."
2866
  msgstr ""
2867
 
2868
+ #: src/admin.php:999
2869
  msgid "An email is required and needs to be in a valid format."
2870
  msgstr ""
2871
 
2872
+ #: src/admin.php:1000
2873
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
2874
  msgstr ""
2875
 
2876
+ #: src/admin.php:1001
2877
  msgid "Verifying one-time password..."
2878
  msgstr ""
2879
 
2880
+ #: src/admin.php:1002
2881
  msgid "Perhaps you would want to login instead."
2882
  msgstr ""
2883
 
2884
+ #: src/admin.php:1003
2885
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
2886
  msgstr ""
2887
 
2888
+ #: src/admin.php:1004
2889
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
2890
  msgstr ""
2891
 
2892
+ #: src/admin.php:1005
2893
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
2894
  msgstr ""
2895
 
2896
+ #: src/admin.php:1006
2897
  msgid "You can also close this wizard."
2898
  msgstr ""
2899
 
2900
+ #: src/admin.php:1007
2901
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
2902
  msgstr ""
2903
 
2904
+ #: src/admin.php:1009
2905
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
2906
  msgstr ""
2907
 
2908
+ #: src/admin.php:1010
2909
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
2910
  msgstr ""
2911
 
2912
+ #: src/admin.php:1011
2913
  msgid "The preparation of the clone data has been aborted."
2914
  msgstr ""
2915
 
2916
+ #: src/admin.php:1013
2917
  msgid "Are you sure you want to remove this exclusion rule?"
2918
  msgstr ""
2919
 
2920
+ #: src/admin.php:1014
2921
  msgid "Please select a file/folder which you would like to exclude"
2922
  msgstr ""
2923
 
2924
+ #: src/admin.php:1015
2925
  msgid "Please enter a file extension, like zip"
2926
  msgstr ""
2927
 
2928
+ #: src/admin.php:1016
2929
  msgid "Please enter a valid file extension"
2930
  msgstr ""
2931
 
2932
+ #: src/admin.php:1017
2933
  msgid "Please enter characters that begin the filename which you would like to exclude"
2934
  msgstr ""
2935
 
2936
+ #: src/admin.php:1018
2937
  msgid "Please enter a valid file name prefix"
2938
  msgstr ""
2939
 
2940
+ #: src/admin.php:1019
2941
  msgid "The exclusion rule which you are trying to add already exists"
2942
  msgstr ""
2943
 
2944
+ #: src/admin.php:1020
2945
  msgid "UpdraftClone key is required."
2946
  msgstr ""
2947
 
2948
+ #: src/admin.php:1021, src/templates/wp-admin/settings/backupnow-modal.php:40
2949
  msgid "Include your files in the backup"
2950
  msgstr ""
2951
 
2952
+ #: src/admin.php:1022
2953
  msgid "File backup options"
2954
  msgstr ""
2955
 
2956
+ #: src/admin.php:1161
2957
  msgid "Add-Ons / Pro Support"
2958
  msgstr ""
2959
 
2960
+ #: src/admin.php:1208
2961
  msgid "An error occurred when fetching storage module options: "
2962
  msgstr ""
2963
 
2964
+ #: src/admin.php:1213, src/includes/class-commands.php:466, src/templates/wp-admin/settings/take-backup.php:13
2965
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2966
  msgstr ""
2967
 
2968
+ #: src/admin.php:1218
2969
  msgid "Welcome to UpdraftPlus!"
2970
  msgstr ""
2971
 
2972
+ #: src/admin.php:1218
2973
  msgid "To make a backup, just press the Backup Now button."
2974
  msgstr ""
2975
 
2976
+ #: src/admin.php:1218
2977
  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."
2978
  msgstr ""
2979
 
2980
+ #: src/admin.php:1222, src/class-updraftplus.php:866
2981
  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)"
2982
  msgstr ""
2983
 
2984
+ #: src/admin.php:1226
2985
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
2986
  msgstr ""
2987
 
2988
+ #: src/admin.php:1230
2989
  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."
2990
  msgstr ""
2991
 
2992
+ #: src/admin.php:1234
2993
  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."
2994
  msgstr ""
2995
 
2996
+ #: src/admin.php:1238
2997
  msgid "Your website is hosted using the %s web server."
2998
  msgstr ""
2999
 
3000
+ #: src/admin.php:1238
3001
  msgid "Please consult this FAQ if you have problems backing up."
3002
  msgstr ""
3003
 
3004
+ #: src/admin.php:1242
3005
  msgid "Notice"
3006
  msgstr ""
3007
 
3008
+ #: src/admin.php:1242
3009
  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."
3010
  msgstr ""
3011
 
3012
+ #: src/admin.php:1247
3013
  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."
3014
  msgstr ""
3015
 
3016
+ #: src/admin.php:1247
3017
  msgid "Read this page for a guide to possible causes and how to fix it."
3018
  msgstr ""
3019
 
3020
+ #: src/admin.php:1267, src/admin.php:1288, src/admin.php:1307, src/class-updraftplus.php:602, src/class-updraftplus.php:637, src/class-updraftplus.php:642, src/class-updraftplus.php:647
3021
  msgid "UpdraftPlus notice:"
3022
  msgstr ""
3023
 
3024
+ #: src/admin.php:1267
3025
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3026
  msgstr ""
3027
 
3028
+ #: src/admin.php:1267
3029
  msgid "Go to the remote storage settings in order to connect."
3030
  msgstr ""
3031
 
3032
+ #: src/admin.php:1409, src/admin.php:1419
3033
  msgid "Error: invalid path"
3034
  msgstr ""
3035
 
3036
+ #: src/admin.php:1770, src/includes/class-wpadmin-commands.php:506
3037
  msgid "Backup set not found"
3038
  msgstr ""
3039
 
3040
+ #: src/admin.php:1856
3041
  msgid "Did not know how to delete from this cloud service."
3042
  msgstr ""
3043
 
3044
+ #: src/admin.php:1937
3045
  msgid "Backup sets removed:"
3046
  msgstr ""
3047
 
3048
+ #: src/admin.php:1938
3049
  msgid "Local files deleted:"
3050
  msgstr ""
3051
 
3052
+ #: src/admin.php:1939
3053
  msgid "Remote files deleted:"
3054
  msgstr ""
3055
 
3056
+ #: src/admin.php:2026
3057
  msgid "Job deleted"
3058
  msgstr ""
3059
 
3060
+ #: src/admin.php:2034
3061
  msgid "Could not find that job - perhaps it has already finished?"
3062
  msgstr ""
3063
 
3064
+ #: src/admin.php:2132, src/admin.php:2153, src/includes/class-commands.php:836
3065
  msgid "Start backup"
3066
  msgstr ""
3067
 
3068
+ #: src/admin.php:2132, src/includes/class-commands.php:836
3069
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
3070
  msgstr ""
3071
 
3072
+ #: src/admin.php:2215, src/admin.php:2219, src/class-updraftplus.php:637
3073
  msgid "The log file could not be read."
3074
  msgstr ""
3075
 
3076
+ #: src/admin.php:2266
3077
  msgid "Download failed"
3078
  msgstr ""
3079
 
3080
+ #: src/admin.php:2296
3081
  msgid "Download in progress"
3082
  msgstr ""
3083
 
3084
+ #: src/admin.php:2299
3085
  msgid "No local copy present."
3086
  msgstr ""
3087
 
3088
+ #: src/admin.php:2353, src/backup.php:1197
3089
  msgid "Backup directory (%s) is not writable, or does not exist."
3090
  msgstr ""
3091
 
3092
+ #: src/admin.php:2353
3093
  msgid "You will find more information about this in the Settings section."
3094
  msgstr ""
3095
 
3096
+ #: src/admin.php:2390
3097
  msgid "This file could not be uploaded"
3098
  msgstr ""
3099
 
3100
+ #: src/admin.php:2405
3101
  msgid "This backup was created by %s, and can be imported."
3102
  msgstr ""
3103
 
3104
+ #: src/admin.php:2411
3105
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
3106
  msgstr ""
3107
 
3108
+ #: src/admin.php:2419
3109
  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?"
3110
  msgstr ""
3111
 
3112
+ #: src/admin.php:2511
3113
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
3114
  msgstr ""
3115
 
3116
+ #: src/admin.php:2603
3117
  msgid "Backup directory could not be created"
3118
  msgstr ""
3119
 
3120
+ #: src/admin.php:2610
3121
  msgid "Backup directory successfully created."
3122
  msgstr ""
3123
 
3124
+ #: src/admin.php:2612, src/admin.php:3470, src/admin.php:4495, src/admin.php:4505, src/admin.php:4514, src/admin.php:5479
3125
  msgid "Return to UpdraftPlus configuration"
3126
  msgstr ""
3127
 
3128
+ #: src/admin.php:2624, src/class-updraftplus.php:4318, src/restorer.php:2872
3129
  msgid "Warning:"
3130
  msgstr ""
3131
 
3132
+ #: src/admin.php:2624
3133
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3134
  msgstr ""
3135
 
3136
+ #: src/admin.php:2627
3137
  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."
3138
  msgstr ""
3139
 
3140
+ #: src/admin.php:2642
3141
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
3142
  msgstr ""
3143
 
3144
+ #: src/admin.php:2642
3145
  msgid "To fix this problem go here."
3146
  msgstr ""
3147
 
3148
+ #: src/admin.php:2644
3149
  msgid "For even more features and personal support, check out "
3150
  msgstr ""
3151
 
3152
+ #: src/admin.php:2646
3153
  msgid "Your backup has been restored."
3154
  msgstr ""
3155
 
3156
+ #: src/admin.php:2671
3157
  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)."
3158
  msgstr ""
3159
 
3160
+ #: src/admin.php:2671
3161
  msgid "Current limit is:"
3162
  msgstr ""
3163
 
3164
+ #: src/admin.php:2732
3165
  msgid "Backup Contents And Schedule"
3166
  msgstr ""
3167
 
3168
+ #: src/admin.php:2831
3169
  msgid "Backup / Restore"
3170
  msgstr ""
3171
 
3172
+ #: src/admin.php:2835
3173
  msgid "Premium / Extensions"
3174
  msgstr ""
3175
 
3176
+ #: src/admin.php:2872
3177
  msgid "%s minutes, %s seconds"
3178
  msgstr ""
3179
 
3180
+ #: src/admin.php:2874
3181
  msgid "Unfinished restoration"
3182
  msgstr ""
3183
 
3184
+ #: src/admin.php:2875
3185
  msgid "You have an unfinished restoration operation, begun %s ago."
3186
  msgstr ""
3187
 
3188
+ #: src/admin.php:2880
3189
  msgid "Continue restoration"
3190
  msgstr ""
3191
 
3192
+ #: src/admin.php:2881, src/templates/wp-admin/notices/autobackup-notice.php:16, src/templates/wp-admin/notices/autobackup-notice.php:18, src/templates/wp-admin/notices/horizontal-notice.php:16, src/templates/wp-admin/notices/horizontal-notice.php:18
3193
  msgid "Dismiss"
3194
  msgstr ""
3195
 
3196
+ #: src/admin.php:2902
3197
  msgid "Not yet got an account (it's free)? Go get one!"
3198
  msgstr ""
3199
 
3200
+ #: src/admin.php:2913
3201
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3202
  msgstr ""
3203
 
3204
+ #: src/admin.php:2925, src/includes/class-commands.php:905, src/includes/class-commands.php:953, src/templates/wp-admin/settings/temporary-clone.php:83, src/templates/wp-admin/settings/updraftcentral-connect.php:71
3205
  msgid "Processing"
3206
  msgstr ""
3207
 
3208
+ #: src/admin.php:2968
3209
  msgid "Connect with your UpdraftPlus.Com account"
3210
  msgstr ""
3211
 
3212
+ #: src/admin.php:2974, src/templates/wp-admin/settings/form-contents.php:255, src/templates/wp-admin/settings/updraftcentral-connect.php:44
3213
  msgid "Email"
3214
  msgstr ""
3215
 
3216
+ #: src/admin.php:2989
3217
  msgid "Forgotten your details?"
3218
  msgstr ""
3219
 
3220
+ #: src/admin.php:3001
3221
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
3222
  msgstr ""
3223
 
3224
+ #: src/admin.php:3012
3225
  msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
3226
  msgstr ""
3227
 
3228
+ #: src/admin.php:3012
3229
  msgid "Learn more about UpdraftCentral"
3230
  msgstr ""
3231
 
3232
+ #: src/admin.php:3038, src/templates/wp-admin/settings/updraftcentral-connect.php:56
3233
  msgid "One Time Password (check your OTP app to get this password)"
3234
  msgstr ""
3235
 
3236
+ #: src/admin.php:3108
3237
  msgid "Latest UpdraftPlus.com news:"
3238
  msgstr ""
3239
 
3240
+ #: src/admin.php:3135
3241
  msgid "Download most recently modified log file"
3242
  msgstr ""
3243
 
3244
+ #: src/admin.php:3178
3245
  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."
3246
  msgstr ""
3247
 
3248
+ #: src/admin.php:3243, src/admin.php:4315
3249
  msgid "View Log"
3250
  msgstr ""
3251
 
3252
+ #: src/admin.php:3282
3253
  msgid "Backup begun"
3254
  msgstr ""
3255
 
3256
+ #: src/admin.php:3287
3257
  msgid "Creating file backup zips"
3258
  msgstr ""
3259
 
3260
+ #: src/admin.php:3300
3261
  msgid "Created file backup zips"
3262
  msgstr ""
3263
 
3264
+ #: src/admin.php:3305
3265
  msgid "Clone server being provisioned and booted (can take several minutes)"
3266
  msgstr ""
3267
 
3268
+ #: src/admin.php:3309
3269
  msgid "Uploading files to remote storage"
3270
  msgstr ""
3271
 
3272
+ #: src/admin.php:3310
3273
  msgid "Sending files to remote site"
3274
  msgstr ""
3275
 
3276
+ #: src/admin.php:3317
3277
  msgid "(%s%%, file %s of %s)"
3278
  msgstr ""
3279
 
3280
+ #: src/admin.php:3322
3281
  msgid "Pruning old backup sets"
3282
  msgstr ""
3283
 
3284
+ #: src/admin.php:3326
3285
  msgid "Waiting until scheduled time to retry because of errors"
3286
  msgstr ""
3287
 
3288
+ #: src/admin.php:3331
3289
  msgid "Backup finished"
3290
  msgstr ""
3291
 
3292
+ #: src/admin.php:3344
3293
  msgid "Created database backup"
3294
  msgstr ""
3295
 
3296
+ #: src/admin.php:3355
3297
  msgid "Creating database backup"
3298
  msgstr ""
3299
 
3300
+ #: src/admin.php:3357
3301
  msgid "table: %s"
3302
  msgstr ""
3303
 
3304
+ #: src/admin.php:3370
3305
  msgid "Encrypting database"
3306
  msgstr ""
3307
 
3308
+ #: src/admin.php:3378
3309
  msgid "Encrypted database"
3310
  msgstr ""
3311
 
3312
+ #: src/admin.php:3380, src/central/bootstrap.php:444, src/central/bootstrap.php:451, src/methods/updraftvault.php:431, src/methods/updraftvault.php:477, src/methods/updraftvault.php:562
3313
  msgid "Unknown"
3314
  msgstr ""
3315
 
3316
+ #: src/admin.php:3397
3317
  msgid "next resumption: %d (after %ss)"
3318
  msgstr ""
3319
 
3320
+ #: src/admin.php:3398
3321
  msgid "last activity: %ss ago"
3322
  msgstr ""
3323
 
3324
+ #: src/admin.php:3418
3325
  msgid "Job ID: %s"
3326
  msgstr ""
3327
 
3328
+ #: src/admin.php:3432, src/admin.php:3722
3329
  msgid "Warning: %s"
3330
  msgstr ""
3331
 
3332
+ #: src/admin.php:3452
3333
  msgid "show log"
3334
  msgstr ""
3335
 
3336
+ #: src/admin.php:3453
3337
  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."
3338
  msgstr ""
3339
 
3340
+ #: src/admin.php:3453
3341
  msgid "stop"
3342
  msgstr ""
3343
 
3344
+ #: src/admin.php:3463, src/admin.php:3463
3345
  msgid "Remove old directories"
3346
  msgstr ""
3347
 
3348
+ #: src/admin.php:3466
3349
  msgid "Old directories successfully removed."
3350
  msgstr ""
3351
 
3352
+ #: src/admin.php:3468
3353
  msgid "Old directory removal failed for some reason. You may want to do this manually."
3354
  msgstr ""
3355
 
3356
+ #: src/admin.php:3505, src/admin.php:3540, src/admin.php:3544, src/includes/class-remote-send.php:334, src/includes/class-storage-methods-interface.php:315, src/restorer.php:330, src/restorer.php:3169, src/restorer.php:3274
3357
  msgid "OK"
3358
  msgstr ""
3359
 
3360
+ #: src/admin.php:3589
3361
  msgid "The request to the filesystem to create the directory failed."
3362
  msgstr ""
3363
 
3364
+ #: src/admin.php:3603
3365
  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"
3366
  msgstr ""
3367
 
3368
+ #: src/admin.php:3608
3369
  msgid "The folder exists, but your webserver does not have permission to write to it."
3370
  msgstr ""
3371
 
3372
+ #: src/admin.php:3608
3373
  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."
3374
  msgstr ""
3375
 
3376
+ #: src/admin.php:3710
3377
  msgid "incremental backup; base backup: %s"
3378
  msgstr ""
3379
 
3380
+ #: src/admin.php:3740
3381
  msgid "No backup has been completed"
3382
  msgstr ""
3383
 
3384
+ #: src/admin.php:3754
3385
  msgctxt "i.e. Non-automatic"
3386
  msgid "Manual"
3387
  msgstr ""
3388
 
3389
+ #: src/admin.php:3767
3390
  msgid "Backup directory specified is writable, which is good."
3391
  msgstr ""
3392
 
3393
+ #: src/admin.php:3771
3394
  msgid "Backup directory specified does <b>not</b> exist."
3395
  msgstr ""
3396
 
3397
+ #: src/admin.php:3773
3398
  msgid "Backup directory specified exists, but is <b>not</b> writable."
3399
  msgstr ""
3400
 
3401
+ #: src/admin.php:3775
3402
  msgid "Follow this link to attempt to create the directory and set the permissions"
3403
  msgstr ""
3404
 
3405
+ #: src/admin.php:3775
3406
  msgid "or, to reset this option"
3407
  msgstr ""
3408
 
3409
+ #: src/admin.php:3775
3410
  msgid "press here"
3411
  msgstr ""
3412
 
3413
+ #: src/admin.php:3775
3414
  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."
3415
  msgstr ""
3416
 
3417
+ #: src/admin.php:3855
3418
  msgid "Your wp-content directory server path: %s"
3419
  msgstr ""
3420
 
3421
+ #: src/admin.php:3855
3422
  msgid "Any other directories found inside wp-content"
3423
  msgstr ""
3424
 
3425
+ #: src/admin.php:3866
3426
  msgid "Exclude these from"
3427
  msgstr ""
3428
 
3429
+ #: src/admin.php:3954
3430
  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)."
3431
  msgstr ""
3432
 
3433
+ #: src/admin.php:3956
3434
  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."
3435
  msgstr ""
3436
 
3437
+ #: src/admin.php:3959
3438
  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."
3439
  msgstr ""
3440
 
3441
+ #: src/admin.php:3997, src/templates/wp-admin/settings/backupnow-modal.php:60, src/templates/wp-admin/settings/existing-backups-table.php:71, src/templates/wp-admin/settings/existing-backups-table.php:74
3442
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
3443
  msgstr ""
3444
 
3445
+ #: src/admin.php:4045
3446
  msgid "Total backup size:"
3447
  msgstr ""
3448
 
3449
+ #: src/admin.php:4111, src/includes/class-wpadmin-commands.php:162, src/restorer.php:2179
3450
  msgid "Backup created by unknown source (%s) - cannot be restored."
3451
  msgstr ""
3452
 
3453
+ #: src/admin.php:4140
3454
  msgid "Press here to download or browse"
3455
  msgstr ""
3456
 
3457
+ #: src/admin.php:4145
3458
  msgid "(%d archive(s) in set)."
3459
  msgstr ""
3460
 
3461
+ #: src/admin.php:4148
3462
  msgid "You appear to be missing one or more archives from this multi-archive set."
3463
  msgstr ""
3464
 
3465
+ #: src/admin.php:4176, src/admin.php:4178
3466
  msgid "(Not finished)"
3467
  msgstr ""
3468
 
3469
+ #: src/admin.php:4178
3470
  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."
3471
  msgstr ""
3472
 
3473
+ #: src/admin.php:4203
3474
  msgid "(backup set imported from remote location)"
3475
  msgstr ""
3476
 
3477
+ #: src/admin.php:4206
3478
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
3479
  msgstr ""
3480
 
3481
+ #: src/admin.php:4285
3482
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
3483
  msgstr ""
3484
 
3485
+ #: src/admin.php:4305
3486
  msgid "Delete this backup set"
3487
  msgstr ""
3488
 
3489
+ #: src/admin.php:4458, src/admin.php:4466
3490
  msgid "Sufficient information about the in-progress restoration operation could not be found."
3491
  msgstr ""
3492
 
3493
+ #: src/admin.php:4586
3494
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
3495
  msgstr ""
3496
 
3497
+ #: src/admin.php:4587
3498
  msgid "Backup does not exist in the backup history"
3499
  msgstr ""
3500
 
3501
+ #: src/admin.php:4607
3502
  msgid "ABORT: Could not find the information on which entities to restore."
3503
  msgstr ""
3504
 
3505
+ #: src/admin.php:4607
3506
  msgid "If making a request for support, please include this information:"
3507
  msgstr ""
3508
 
3509
+ #: src/admin.php:4772
3510
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3511
  msgstr ""
3512
 
3513
+ #: src/admin.php:4772
3514
  msgid "settings"
3515
  msgstr ""
3516
 
3517
+ #: src/admin.php:4772
3518
  msgid "Not got any remote storage?"
3519
  msgstr ""
3520
 
3521
+ #: src/admin.php:4772
3522
  msgid "Check out UpdraftPlus Vault."
3523
  msgstr ""
3524
 
3525
+ #: src/admin.php:4774
3526
  msgid "Send this backup to remote storage"
3527
  msgstr ""
3528
 
3529
+ #: src/admin.php:4864
3530
  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."
3531
  msgstr ""
3532
 
3533
+ #: src/admin.php:4871, src/templates/wp-admin/settings/take-backup.php:51
3534
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3535
  msgstr ""
3536
 
3537
+ #: src/admin.php:4900
3538
  msgid "Your settings have been saved."
3539
  msgstr ""
3540
 
3541
+ #: src/admin.php:4905
3542
  msgid "Your settings failed to save. Please refresh the settings page and try again"
3543
  msgstr ""
3544
 
3545
+ #: src/admin.php:4953
3546
  msgid "authentication error"
3547
  msgstr ""
3548
 
3549
+ #: src/admin.php:4957
3550
  msgid "Remote storage method and instance id are required for authentication."
3551
  msgstr ""
3552
 
3553
+ #: src/admin.php:5024
3554
  msgid "Your settings have been wiped."
3555
  msgstr ""
3556
 
3557
+ #: src/admin.php:5125
3558
  msgid "Known backups (raw)"
3559
  msgstr ""
3560
 
3561
+ #: src/admin.php:5160
3562
  msgid "Options (raw)"
3563
  msgstr ""
3564
 
3565
+ #: src/admin.php:5163
3566
  msgid "Value"
3567
  msgstr ""
3568
 
3569
+ #: src/admin.php:5315
3570
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
3571
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
3572
  msgstr[0] ""
3573
  msgstr[1] ""
3574
 
3575
+ #: src/admin.php:5315, src/methods/openstack2.php:144, src/restorer.php:183, src/restorer.php:185, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/templates/wp-admin/settings/tab-backups.php:27, src/templates/wp-admin/settings/updraftcentral-connect.php:14
3576
  msgid "Follow this link for more information"
3577
  msgstr ""
3578
 
3579
+ #: src/admin.php:5339, src/admin.php:5343, src/templates/wp-admin/advanced/site-info.php:45, src/templates/wp-admin/advanced/site-info.php:51, src/templates/wp-admin/advanced/site-info.php:58, src/templates/wp-admin/advanced/site-info.php:59
3580
  msgid "%s version:"
3581
  msgstr ""
3582
 
3583
+ #: src/admin.php:5347
3584
  msgid "Clone region:"
3585
  msgstr ""
3586
 
3587
+ #: src/admin.php:5362
3588
  msgid "Forbid non-administrators to login to WordPress on your clone"
3589
  msgstr ""
3590
 
3591
+ #: src/admin.php:5385
3592
  msgid "(current version)"
3593
  msgstr ""
3594
 
3595
+ #: src/admin.php:5405
3596
  msgid "Your clone has started and will be available at the following URLs once it is ready."
3597
  msgstr ""
3598
 
3599
+ #: src/admin.php:5406
3600
  msgid "Front page:"
3601
  msgstr ""
3602
 
3603
+ #: src/admin.php:5407
3604
  msgid "Dashboard:"
3605
  msgstr ""
3606
 
3607
+ #: src/admin.php:5409, src/admin.php:5412
3608
  msgid "You can find your temporary clone information in your updraftplus.com account here."
3609
  msgstr ""
3610
 
3611
+ #: src/admin.php:5411
3612
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
3613
  msgstr ""
3614
 
3615
+ #: src/admin.php:5477, src/admin.php:5479
3616
  msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
3617
  msgstr ""
3618
 
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
- === UpdraftPlus WordPress Backup Plugin ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson, DNutbourne, aporter, snightingale, bcrodua
3
  Tags: backup, restore, database backup, wordpress backup, cloud backup, s3, dropbox, google drive, onedrive, ftp, backups
4
  Requires at least: 3.2
5
  Tested up to: 5.1
6
- Stable tag: 1.16.9
7
  Author URI: https://updraftplus.com
8
  Donate link: https://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
@@ -168,13 +168,15 @@ The <a href="https://updraftplus.com/news/">UpdraftPlus backup blog</a> is the b
168
 
169
  N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.16.8.x of the free version correspond to changes made in 2.16.8.x of the paid version.
170
 
171
- = 1.16.9 - 22/Mar/2019 =
172
 
173
  * FEATURE: Added support for backing up and restoring SQL triggers
174
  * FIX: Prevent the downloader UI being removed before it's complete in the case of multi-archive sets (regression)
175
  * TWEAK: Refactor the restore code and use jobdata to save information about the restore rather than using $_POST data
176
  * TWEAK: Automatically show the UpdraftClone admin UI for UpdraftClone developers for easier debugging
177
  * TWEAK: Prevent a PHP notice with certain exclusion settings
 
 
178
 
179
  = 1.16.8 - 13/Mar/2019 =
180
 
@@ -818,4 +820,4 @@ Furthermore, reliance upon any non-English translation is at your own risk. Updr
818
  We recognise and thank the following for code and/or libraries used and/or modified under the terms of their open source licences; see: https://updraftplus.com/acknowledgements/
819
 
820
  == Upgrade Notice ==
821
- * 1.16.9: Add capability to backup SQL triggers. Fix a regression causing incomplete downloading of multi-archive backup sets in the UI. A recommended update for all.
1
+ === UpdraftPlus WordPress Backup Plugin ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson, DNutbourne, aporter, snightingale, bcrodua
3
  Tags: backup, restore, database backup, wordpress backup, cloud backup, s3, dropbox, google drive, onedrive, ftp, backups
4
  Requires at least: 3.2
5
  Tested up to: 5.1
6
+ Stable tag: 1.16.10
7
  Author URI: https://updraftplus.com
8
  Donate link: https://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
168
 
169
  N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.16.8.x of the free version correspond to changes made in 2.16.8.x of the paid version.
170
 
171
+ = 1.16.10 - 23/Mar/2019 =
172
 
173
  * FEATURE: Added support for backing up and restoring SQL triggers
174
  * FIX: Prevent the downloader UI being removed before it's complete in the case of multi-archive sets (regression)
175
  * TWEAK: Refactor the restore code and use jobdata to save information about the restore rather than using $_POST data
176
  * TWEAK: Automatically show the UpdraftClone admin UI for UpdraftClone developers for easier debugging
177
  * TWEAK: Prevent a PHP notice with certain exclusion settings
178
+ * TWEAK: Add a mention of UpdraftClone in WP's PHP version notice and WooCommerce's "untested extensions" notice
179
+ * TWEAK: Add 5.1 to the built-in list of available UpdraftClone WP versions
180
 
181
  = 1.16.8 - 13/Mar/2019 =
182
 
820
  We recognise and thank the following for code and/or libraries used and/or modified under the terms of their open source licences; see: https://updraftplus.com/acknowledgements/
821
 
822
  == Upgrade Notice ==
823
+ * 1.16.10: Add capability to backup SQL triggers. Fix a regression causing incomplete downloading of multi-archive backup sets in the UI. Add UpdraftClone mention in WP's PHP update notice. A recommended update for all.
updraftplus.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
5
  Plugin URI: https://updraftplus.com
6
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
7
  Author: UpdraftPlus.Com, DavidAnderson
8
- Version: 1.16.9
9
  Donate link: https://david.dw-perspective.org.uk/donate
10
  License: GPLv3 or later
11
  Text Domain: updraftplus
5
  Plugin URI: https://updraftplus.com
6
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
7
  Author: UpdraftPlus.Com, DavidAnderson
8
+ Version: 1.16.10
9
  Donate link: https://david.dw-perspective.org.uk/donate
10
  License: GPLv3 or later
11
  Text Domain: updraftplus