Backup and Restore WordPress – WPBackItUp Backup Plugin - Version 1.11.0

Version Description

Release Date - September 15, 2015

  • FIX : Add default collation value for WordPress version <
Download this release

Release Info

Developer cssimmon
Plugin Icon 128x128 Backup and Restore WordPress – WPBackItUp Backup Plugin
Version 1.11.0
Comparing to
See all releases

Code changes from version 1.10.9 to 1.11.0

Files changed (45) hide show
  1. css/wpbackitup_admin.css +23 -0
  2. js/wpbackitup_admin.js +58 -20
  3. languages/wp-backitup-bn_BD.mo +0 -0
  4. languages/wp-backitup-bn_BD.po +752 -619
  5. languages/wp-backitup-de_DE.mo +0 -0
  6. languages/wp-backitup-de_DE.po +761 -485
  7. languages/wp-backitup-en_US.mo +0 -0
  8. languages/wp-backitup-en_US.po +359 -341
  9. languages/wp-backitup-es_ES.mo +0 -0
  10. languages/wp-backitup-es_ES.po +1609 -0
  11. languages/wp-backitup-fr_FR.mo +0 -0
  12. languages/wp-backitup-fr_FR.po +404 -348
  13. languages/wp-backitup-it_IT.mo +0 -0
  14. languages/wp-backitup-it_IT.po +1610 -0
  15. languages/wp-backitup-ru_RU.mo +0 -0
  16. languages/wp-backitup-ru_RU.po +361 -343
  17. languages/wp-backitup-tl.mo +0 -0
  18. languages/wp-backitup-tl.po +399 -343
  19. languages/wp-backitup.pot +358 -340
  20. languages/wp-backitup_it_IT.mo +0 -0
  21. languages/wp-backitup_it_IT.po +0 -1333
  22. lib/includes/class-backup.php +100 -117
  23. lib/includes/class-database.php +18 -4
  24. lib/includes/class-filesystem.php +75 -50
  25. lib/includes/class-job-v2.php +567 -124
  26. lib/includes/class-job.php +0 -916
  27. lib/includes/class-mutex.php +26 -11
  28. lib/includes/class-recursivefilteriterator.php +72 -0
  29. lib/includes/class-scheduler.php +8 -2
  30. lib/includes/class-sql.php +265 -202
  31. lib/includes/class-wpbackitup-admin.php +368 -204
  32. lib/includes/handler_download.php +2 -1
  33. lib/includes/handler_upload.php +37 -0
  34. lib/includes/job_backup.php +255 -226
  35. lib/includes/job_backup_cancelled.php +0 -118
  36. lib/includes/job_cleanup.php +103 -94
  37. lib/includes/job_restore.php +86 -81
  38. lib/includes/update_database.php +119 -1
  39. readme.txt +34 -2
  40. uninstall.php +59 -0
  41. views/backup.php +99 -115
  42. views/restore.php +46 -21
  43. views/settings.php +1 -4
  44. views/support.php +1 -4
  45. wp-backitup.php +62 -4
css/wpbackitup_admin.css CHANGED
@@ -71,6 +71,29 @@ h3 {
71
 
72
  .submit { padding: 0; }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
  /* Content */
76
  #content {
71
 
72
  .submit { padding: 0; }
73
 
74
+ /* notification */
75
+ .notice-error, .notice-success, .notice-warning{
76
+ background-repeat: no-repeat;
77
+ margin: 10px 20px 2px !important;
78
+ padding:15px 10px 15px 50px;
79
+ background-repeat: no-repeat;
80
+ background-position: 10px center;
81
+ }
82
+ .notice-error{
83
+ border-color: #D8000C;
84
+ background-image: url('../images/error.png');
85
+ }
86
+ .notice-success{
87
+ border-color: #7ad03a;
88
+ background-image:url('../images/success.png');
89
+ }
90
+ .notice-warning{
91
+ border-color: #9F6000;
92
+ background-image: url('../images/warning.png');
93
+ }
94
+ #wp-backitup-notification-widget-close{
95
+ cursor: pointer;
96
+ }
97
 
98
  /* Content */
99
  #content {
js/wpbackitup_admin.js CHANGED
@@ -184,6 +184,21 @@
184
  function wpbackitup_get_backup_status() {
185
  $.post(ajaxurl, wpbackitup_backup_status_reader, function(response) {
186
  /* Get response from log reader */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  var xmlObj = $(response);
188
 
189
  /* For each response */
@@ -255,19 +270,6 @@
255
 
256
  }
257
 
258
- // Cancelled
259
- if ( $(this).html() == -99 ) {
260
-
261
- $('.status-icon').fadeOut(200);
262
- $("#backup-button").removeAttr("disabled");
263
- $("#cancel-button").addClass('cancel-hidden');
264
- $("#cancel-button").removeAttr("disabled");
265
- $('.backup-cancelled').fadeIn(200);
266
-
267
- /* Stop statusreader */
268
- clearInterval(window.intervalDefine);
269
- }
270
-
271
  });
272
  });
273
  }
@@ -389,6 +391,32 @@
389
  });
390
  }
391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  //Save Schedule CLICK
393
  $("#wp-backitup-notification-close").click(function() {
394
  wpbackitup_dismiss_message();
@@ -451,12 +479,16 @@
451
 
452
  // Tracking ajax request.
453
  var jqxhr = null;
 
454
  // BACKUP button click
455
  $(".backup-button").click(function(e) {
456
  e.preventDefault();
457
 
 
458
  $("#backup-button").attr('disabled', 'disabled'); //Disable button
459
  $("#cancel-button").removeClass('cancel-hidden');
 
 
460
 
461
  jqxhr = $.ajax({
462
  url: ajaxurl,
@@ -501,6 +533,7 @@
501
  }
502
 
503
  // Cancel button click
 
504
  $(".cancel-button").click(function(e) {
505
  e.preventDefault();
506
 
@@ -529,6 +562,8 @@
529
  jqxhr.always(function(data, textStatus, errorThrown) {
530
  console.log("Cancel Button Click - Always");
531
  console.log(data.message);//backup queued?
 
 
532
  });
533
  });
534
 
@@ -607,14 +642,17 @@
607
  $('#datatable').on('click', 'a.deleteRow', function(e) {
608
 
609
  e.preventDefault();
 
610
  if (confirm(wpbackitup_local.sure))
611
  {
612
  var filename = this.title;
 
613
  var row = this.id.replace('deleteRow', 'row');
 
614
  $.ajax({
615
  url: ajaxurl,
616
  type: 'post',
617
- data: {action: wpbackitup_get_action_name('delete_file'), filed: filename},
618
  success: function(data) {
619
  if (data === 'deleted')
620
  {
@@ -770,17 +808,17 @@
770
  {
771
  //var restoreColumn = '<td><a href="#" title="' + data.backupFile + '" class="restoreRow" id="restoreRow' + cur_row + '">Restore</a></td>\n';
772
 
773
- var viewColumn = '<td>&nbsp;</td>\n';
774
- if (typeof data.logFileExists !== 'undefined' && data.logFileExists==true) {
775
- viewColumn = '<td><a class="viewloglink" href="' + data.backupName + '">' + wpbackitup_local.view_log + '</a></td>\n';
776
  }
777
 
778
  var newRow =
779
  '<tr ' + css_class + ' id="row' + cur_row + '">\n\
780
- <td>' + wpbackitup_local.new_backup + '</td>\n\
781
- <td><a href="#TB_inline?width=600&height=550&inlineId=new_backup" class="thickbox" title="' + data.backupName + '">' + wpbackitup_local.download + '</a></td>\n';
782
  newRow +=viewColumn;
783
- newRow +='<td><a href="#" title="' + data.backupName + '" class="deleteRow" id="deleteRow' + cur_row + '">' + wpbackitup_local.delete + '</a></td>\n';
 
784
  newRow +='</tr>';
785
 
786
  if ($('#nofiles'))
184
  function wpbackitup_get_backup_status() {
185
  $.post(ajaxurl, wpbackitup_backup_status_reader, function(response) {
186
  /* Get response from log reader */
187
+
188
+ //if backup was cancelled then stop processing
189
+ if (backup_cancelled){
190
+ /* Stop statusreader */
191
+ clearInterval(window.intervalDefine);
192
+
193
+ //shut down the backup UI
194
+ $('.status-icon').fadeOut(200);
195
+ $("#backup-button").removeAttr("disabled");
196
+ $("#cancel-button").fadeOut(200);
197
+ $('.backup-cancelled').fadeIn(200);
198
+
199
+ return false;
200
+ }
201
+
202
  var xmlObj = $(response);
203
 
204
  /* For each response */
270
 
271
  }
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  });
274
  });
275
  }
391
  });
392
  }
393
 
394
+ // Notification Widget close
395
+ $("#wp-backitup-notification-widget-close").click(function() {
396
+ notification_bar = $( "#wp-backitup-notification-widget");
397
+ notification_bar.fadeOut("slow");
398
+
399
+ //ajax call to delete it from the transient array
400
+ var jqxhr = $.ajax({
401
+ url: ajaxurl,
402
+ type: 'POST',
403
+ data: {action: wpbackitup_get_action_name('delete_transient')},
404
+ dataType: "json"
405
+ });
406
+
407
+
408
+ jqxhr.always(function(jsonData, textStatus, errorThrown) {
409
+ if(jsonData !== false){
410
+ notification_bar.removeClass();
411
+ notification_bar.addClass('notice');
412
+ notification_bar.addClass('notice-'+jsonData.message_type);
413
+ $("#wp-backitup-notification-widget-message p").html(jsonData.message);
414
+ notification_bar.hide().fadeIn("slow");
415
+ }
416
+ });
417
+
418
+ });
419
+
420
  //Save Schedule CLICK
421
  $("#wp-backitup-notification-close").click(function() {
422
  wpbackitup_dismiss_message();
479
 
480
  // Tracking ajax request.
481
  var jqxhr = null;
482
+
483
  // BACKUP button click
484
  $(".backup-button").click(function(e) {
485
  e.preventDefault();
486
 
487
+ backup_cancelled = false;
488
  $("#backup-button").attr('disabled', 'disabled'); //Disable button
489
  $("#cancel-button").removeClass('cancel-hidden');
490
+ $("#cancel-button").removeAttr("disabled");
491
+ $("#cancel-button").fadeIn(200);
492
 
493
  jqxhr = $.ajax({
494
  url: ajaxurl,
533
  }
534
 
535
  // Cancel button click
536
+ var backup_cancelled = false;
537
  $(".cancel-button").click(function(e) {
538
  e.preventDefault();
539
 
562
  jqxhr.always(function(data, textStatus, errorThrown) {
563
  console.log("Cancel Button Click - Always");
564
  console.log(data.message);//backup queued?
565
+
566
+ backup_cancelled = true;
567
  });
568
  });
569
 
642
  $('#datatable').on('click', 'a.deleteRow', function(e) {
643
 
644
  e.preventDefault();
645
+
646
  if (confirm(wpbackitup_local.sure))
647
  {
648
  var filename = this.title;
649
+ var post_id = $(this).data('id');
650
  var row = this.id.replace('deleteRow', 'row');
651
+
652
  $.ajax({
653
  url: ajaxurl,
654
  type: 'post',
655
+ data: {action: wpbackitup_get_action_name('delete_file'), filed: filename, post_id: post_id},
656
  success: function(data) {
657
  if (data === 'deleted')
658
  {
808
  {
809
  //var restoreColumn = '<td><a href="#" title="' + data.backupFile + '" class="restoreRow" id="restoreRow' + cur_row + '">Restore</a></td>\n';
810
 
811
+ var viewColumn = '<td>&nbsp;</td>\n<td>&nbsp;</td>\n';
812
+ if(data.backupMessage) {
813
+ viewColumn += '<td>'+ data.backupMessage +'</td>\n'
814
  }
815
 
816
  var newRow =
817
  '<tr ' + css_class + ' id="row' + cur_row + '">\n\
818
+ <td><a href="#TB_inline?width=600&height=550&inlineId=new_backup" class="thickbox" title="' + data.backupName + '">' + wpbackitup_local.new_backup + '</a></td>\n';
 
819
  newRow +=viewColumn;
820
+ //newRow +='<td><a href="#" title="' + data.backupName + '" class="deleteRow" id="deleteRow' + cur_row + '">' + wpbackitup_local.delete + '</a></td>\n';
821
+ newRow += '<td>&nbsp;</td>';
822
  newRow +='</tr>';
823
 
824
  if ($('#nofiles'))
languages/wp-backitup-bn_BD.mo CHANGED
Binary file
languages/wp-backitup-bn_BD.po CHANGED
@@ -4,8 +4,8 @@
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP BackItUp\n"
7
- "POT-Creation-Date: 2015-08-14 10:31-0400\n"
8
- "PO-Revision-Date: 2015-08-14 10:31-0400\n"
9
  "Last-Translator: MD. AL-AMIN <alamin_opu@yahoo.com>\n"
10
  "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/wp-translations/wp-"
11
  "backitup/language/bn_BD/)\n"
@@ -19,177 +19,190 @@ msgstr ""
19
  "X-Poedit-KeywordsList: _;__;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
23
- #: views/backup.php:179
24
  msgid "Backup"
25
  msgstr "ব্যাকআপ"
26
 
27
- #: lib/includes/class-wpbackitup-admin.php:175
28
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
29
  msgid "Restore"
30
  msgstr "পুনরুদ্ধার"
31
 
32
- #: lib/includes/class-wpbackitup-admin.php:179
33
  msgid "Support"
34
  msgstr "সাহায্য"
35
 
36
- #: lib/includes/class-wpbackitup-admin.php:182
37
  msgid "Settings"
38
  msgstr "সেটিংস"
39
 
40
- #: lib/includes/class-wpbackitup-admin.php:203
41
  msgid "The backup you have selected exceeds what your host allows you to upload."
42
  msgstr ""
43
- "অাপনি যে ব্যাকঅাপটি সিলেক্ট করেছেন সেটি অাপনার হোস্ট যতটুকু অাপলোড করার অনুমতি দেয় তা "
44
- "অতিক্রম করবে।"
45
 
46
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
47
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
48
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
49
- #: views/backup.php:312 views/backup.php:313
50
  msgid "Warning"
51
  msgstr "সতর্কবার্তা"
52
 
53
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
54
  msgid "Error"
55
  msgstr "ত্রুটি"
56
 
57
- #: lib/includes/class-wpbackitup-admin.php:206
58
  msgid "Response"
59
  msgstr "উত্তর"
60
 
61
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
62
- #: views/restore.php:205
63
  msgid "Status"
64
  msgstr "অবস্থা"
65
 
66
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
67
  msgid "Download"
68
  msgstr "ডাউনলোড"
69
 
70
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
71
- #: views/restore.php:111
72
  msgid "Delete"
73
  msgstr "মুছুন "
74
 
75
- #: lib/includes/class-wpbackitup-admin.php:211
76
  msgid "(JS997) Unexpected error"
77
  msgstr "(JS997) অপ্রত্যাশিত ত্রুটি"
78
 
79
- #: lib/includes/class-wpbackitup-admin.php:212
80
  msgid "(JS998) Unexpected error"
81
  msgstr "(JS998) অপ্রত্যাশিত ত্রুটি"
82
 
83
- #: lib/includes/class-wpbackitup-admin.php:213
84
  msgid "(JS999) An unexpected error has occurred"
85
  msgstr "(JS999) একটি অপ্রত্যাশিত ত্রুটি হয়েছে"
86
 
87
- #: lib/includes/class-wpbackitup-admin.php:214
88
  msgid "Scheduled has been saved."
89
  msgstr "সুচি সংরক্ষন করা হয়েছে।"
90
 
91
- #: lib/includes/class-wpbackitup-admin.php:215
92
  msgid "Scheduled was not saved."
93
  msgstr "সুচি সংরক্ষন সম্পন্ন হয়নি।"
94
 
95
- #: lib/includes/class-wpbackitup-admin.php:216
96
  msgid "Are you sure you want to restore your site?"
97
  msgstr "অাপনি কি নিশ্চিতভাবে চান সাইটটি পুনরুদ্ধার করতে? "
98
 
99
- #: lib/includes/class-wpbackitup-admin.php:217
100
  msgid "Are you sure ?"
101
  msgstr "অাপনি কি নিশ্চিত ? "
102
 
103
- #: lib/includes/class-wpbackitup-admin.php:218
104
  msgid "This file cannot be delete!"
105
  msgstr "এই ফাইলটি মুছা যাবে নাহ !"
106
 
107
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
108
  msgid "View Log"
109
  msgstr "লগ দেখুন"
110
 
111
- #: lib/includes/class-wpbackitup-admin.php:220
112
  msgid "New Backup!"
113
  msgstr "নতুন ব্যাকঅাপ !"
114
 
115
- #: lib/includes/class-wpbackitup-admin.php:221
116
  msgid "Uploaded Backup"
117
  msgstr "অাপলোডকৃত ব্যাকঅাপ"
118
 
119
- #: lib/includes/class-wpbackitup-admin.php:480
120
  msgid "Backup Queued"
121
  msgstr "ব্যাকঅাপ অপেক্ষমান"
122
 
123
- #: lib/includes/class-wpbackitup-admin.php:482
124
  msgid "Backup could not be queued"
125
  msgstr "ব্যাকঅাপ অপেক্ষমান করা যায়নি। "
126
 
127
- #: lib/includes/class-wpbackitup-admin.php:485
128
- msgid "Backup already in queue"
129
- msgstr "ব্যাকঅাপ অাগে থেকেই অপেক্ষমান"
130
 
131
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
132
- msgid "Backup Cancelled"
133
- msgstr "ব্যাকঅাপ বাতিল করা হয়েছে"
134
-
135
- #: lib/includes/class-wpbackitup-admin.php:535
136
  msgid "No backup file selected."
137
  msgstr "ব্যাকঅাপ ফাইল বাছাই করা হয়নি।"
138
 
139
- #: lib/includes/class-wpbackitup-admin.php:542
140
  msgid "No user id found."
141
  msgstr "ব্যবহারকারী খুজে পাওয়া যায়নি। "
142
 
143
- #: lib/includes/class-wpbackitup-admin.php:553
144
  msgid "Restore Queued"
145
  msgstr "পুনরুদ্ধার অপেক্ষমান"
146
 
147
- #: lib/includes/class-wpbackitup-admin.php:555
148
  msgid "Restore could not be queued"
149
  msgstr "পুনরুদ্ধার অপেক্ষমান করা যায় নি"
150
 
151
- #: lib/includes/class-wpbackitup-admin.php:558
152
  msgid "Restore already in queue"
153
  msgstr "পুনরুদ্ধার অাগে থেকেই অপেক্ষমান"
154
 
155
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
156
  msgid "No response log found."
157
  msgstr "রেসপনস লগ পাওয়া যায়নি।"
158
 
159
- #: lib/includes/class-wpbackitup-admin.php:836
160
- #: lib/includes/class-wpbackitup-admin.php:844
161
- #: lib/includes/class-wpbackitup-admin.php:873
162
- #: lib/includes/class-wpbackitup-admin.php:880
163
- #: lib/includes/class-wpbackitup-admin.php:887
164
- #: lib/includes/class-wpbackitup-admin.php:894
165
  msgid "Please enter a number"
166
  msgstr "একটি নাম্বার প্রবেশ করুন "
167
 
168
- #: lib/includes/class-wpbackitup-admin.php:865
169
- #: lib/includes/class-wpbackitup-admin.php:972
170
  msgid "Please enter a valid email"
171
  msgstr "একটি সঠিক ইমেইল প্রবেশ করুন "
172
 
173
- #: lib/includes/class-wpbackitup-admin.php:979
174
  msgid "Please enter your support ticket id"
175
  msgstr "অাপনার সাপোর্ট টিকেট অাইডি প্রবেশ করুন"
176
 
177
- #: lib/includes/class-wpbackitup-admin.php:984
178
  msgid "Please only enter numbers in this field"
179
  msgstr "এই ঘরে শুধুমাত্র নাম্বার প্রবেশ করুন"
180
 
181
- #: lib/includes/class-wpbackitup-admin.php:1645
182
  msgid "License is invalid."
183
  msgstr "লাইসেন্স সঠিক নয়।"
184
 
185
- #: lib/includes/class-wpbackitup-admin.php:1650
186
  msgid "License has expired."
187
  msgstr "লাইসেন্স বাতিল হয়ে গিয়েছে। "
188
 
189
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  msgid "Activation limit has been reached."
191
  msgstr "সক্রিয়করন সীমা পুর্ন হয়ে গিয়েছে।"
192
 
 
 
 
 
193
  #: lib/includes/handler_upload.php:29
194
  msgid "Invalid Nonce"
195
  msgstr "ভুল Nonce"
@@ -213,1109 +226,1229 @@ msgstr "অাপলোড WP BackitUp ব্যাকঅাপের সংর
213
 
214
  #: lib/includes/handler_upload.php:161
215
  msgid "Could not import file into WP BackItUp backup set."
216
- msgstr ""
217
-
218
- #: lib/includes/job_backup.php:851
219
- msgid "Preparing for backup...Done"
220
- msgstr "ব্যাকঅাপের জন্যে তৈরি হচ্ছে...সম্পন্ন হল"
221
-
222
- #: lib/includes/job_backup.php:852
223
- msgid "Backing up database...Done"
224
- msgstr "ডাটাবেজ ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
225
-
226
- #: lib/includes/job_backup.php:853
227
- msgid "Creating backup information file...Done"
228
- msgstr "ব্যাকঅাপের তথ্য তৈরি হচ্ছে...সম্পন্ন হল"
229
-
230
- #: lib/includes/job_backup.php:854
231
- msgid "Backing up themes...Done"
232
- msgstr "থিম ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
233
-
234
- #: lib/includes/job_backup.php:855
235
- msgid "Backing up plugins...Done"
236
- msgstr "প্লাগিন ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
237
 
238
- #: lib/includes/job_backup.php:856
239
- msgid "Backing up uploads...Done"
240
- msgstr "অাপলোড ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
241
-
242
- #: lib/includes/job_backup.php:857
243
- msgid "Backing up miscellaneous files...Done"
244
- msgstr "অন্যান্য ফাইল ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
245
-
246
- #: lib/includes/job_backup.php:858
247
- msgid "Finalizing backup...Done"
248
- msgstr "ব্যাকঅাপ নেয়া শেষ হচ্ছে...সম্পন্ন হল"
249
-
250
- #: lib/includes/job_backup.php:859
251
- msgid "Validating backup...Done"
252
- msgstr "ব্যাকঅাপ যাচাই করা হচ্ছে...সম্পন্ন হল"
253
-
254
- #: lib/includes/job_backup.php:860
255
- msgid "Cleaning up...Done"
256
- msgstr "পরিষ্কার করছে...সম্পন্ন হল"
257
 
258
- #: lib/includes/job_backup.php:870
259
  #, php-format
260
  msgid "%s - Backup completed successfully."
261
- msgstr "%s - সফলভাবে ব্যাকআপ হয়েছে। "
262
 
263
- #: lib/includes/job_backup.php:871
264
  msgid "Your backup completed successfully."
265
- msgstr "অাপনার ব্যাকআপ সফলভাবে হয়েছে। "
266
 
267
- #: lib/includes/job_backup.php:874
268
  #, php-format
269
  msgid "%s - Backup did not complete successfully."
270
- msgstr ""
271
 
272
- #: lib/includes/job_backup.php:875
273
  msgid "Your backup did not complete successfully."
274
- msgstr ""
275
 
276
- #: lib/includes/job_backup.php:880
277
  #, php-format
278
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
279
- msgstr ""
280
 
281
- #: lib/includes/job_backup.php:881
282
  msgid "Backup date:"
283
- msgstr ""
284
 
285
- #: lib/includes/job_backup.php:882
286
  msgid "Number of backups completed with WP BackItUp:"
287
- msgstr ""
288
 
289
- #: lib/includes/job_backup.php:884
290
  msgid "Completion Code:"
291
- msgstr ""
292
 
293
- #: lib/includes/job_backup.php:885
294
  msgid "WP BackItUp Version:"
295
- msgstr ""
296
 
297
- #: lib/includes/job_backup.php:891
298
- msgid "Steps Completed"
299
- msgstr ""
300
-
301
- #: lib/includes/job_backup.php:912
302
  #, php-format
303
  msgid "Checkout %s for info about WP BackItUp and our other products."
304
- msgstr ""
305
 
306
- #: lib/includes/job_backup.php:1088
307
  msgid ""
308
- "(101) Unable to create a new directory for backup. Please check your CHMOD "
309
- "settings of your wp-backitup backup directory"
310
  msgstr ""
 
 
311
 
312
- #: lib/includes/job_backup.php:1089
313
  msgid ""
314
  "(102) Cannot create backup directory. Please check the CHMOD settings of your wp-"
315
  "backitup plugin directory"
316
  msgstr ""
 
 
317
 
318
- #: lib/includes/job_backup.php:1090
319
  msgid "(103) Unable to backup your files. Please try again"
320
- msgstr ""
321
 
322
- #: lib/includes/job_backup.php:1091
323
  msgid "(104) Unable to export your database. Please try again"
324
- msgstr ""
325
 
326
- #: lib/includes/job_backup.php:1092
327
  msgid "(105) Unable to export site information file. Please try again"
328
- msgstr ""
329
 
330
- #: lib/includes/job_backup.php:1093
331
  msgid "(106) Unable to cleanup your backup directory"
332
- msgstr ""
333
 
334
- #: lib/includes/job_backup.php:1094
335
  msgid "(107) Unable to compress(zip) your backup. Please try again"
336
- msgstr ""
337
 
338
- #: lib/includes/job_backup.php:1095
339
  msgid "(108) Unable to backup your site data files. Please try again"
340
- msgstr ""
341
 
342
- #: lib/includes/job_backup.php:1096
343
  msgid "(109) Unable to finalize backup. Please try again"
344
- msgstr ""
345
 
346
- #: lib/includes/job_backup.php:1097
347
  msgid ""
348
- "(114) Your database was accessible but an export could not be created. Please "
349
- "contact support by clicking the get support link on the right. Please let us know "
350
- "who your host is when you submit the request"
351
  msgstr ""
 
 
352
 
353
- #: lib/includes/job_backup.php:1098
354
  msgid "(120) Unable to backup your themes. Please try again"
355
- msgstr ""
356
 
357
- #: lib/includes/job_backup.php:1099
358
  msgid "(121) Unable to backup your plugins. Please try again"
359
- msgstr ""
360
 
361
- #: lib/includes/job_backup.php:1100
362
  msgid "(122) Unable to backup your uploads. Please try again"
363
- msgstr ""
364
 
365
- #: lib/includes/job_backup.php:1101
366
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
367
- msgstr ""
368
 
369
- #: lib/includes/job_backup.php:1102
370
  msgid ""
371
- "(125) Unable to compress your backup because there is no zip utility available. "
372
- "Please contact support"
373
  msgstr ""
 
 
374
 
375
- #: lib/includes/job_backup.php:1103
376
  msgid "(126) Unable to validate your backup. Please try again"
377
- msgstr ""
378
 
379
- #: lib/includes/job_backup.php:1104
380
  msgid "(127) Unable to create inventory of files to backup. Please try again"
381
- msgstr ""
382
 
383
- #: lib/includes/job_backup.php:1105
384
  msgid "(128) Unable to create job control record. Please try again"
385
- msgstr ""
386
 
387
- #: lib/includes/job_backup.php:1107
388
  msgid ""
389
- "(2101) Unable to create a new directory for backup. Please check your CHMOD "
390
- "settings of your wp-backitup backup directory"
391
  msgstr ""
 
 
392
 
393
- #: lib/includes/job_backup.php:1108
394
  msgid ""
395
  "(2102) Cannot create backup directory. Please check the CHMOD settings of your wp-"
396
  "backitup plugin directory"
397
  msgstr ""
 
 
398
 
399
- #: lib/includes/job_backup.php:1109
400
  msgid "(2103) Unable to backup your files. Please try again"
401
- msgstr ""
402
 
403
- #: lib/includes/job_backup.php:1110
404
  msgid "(2104) Unable to export your database. Please try again"
405
- msgstr ""
406
 
407
- #: lib/includes/job_backup.php:1111
408
  msgid "(2105) Unable to export site information file. Please try again"
409
- msgstr ""
410
 
411
- #: lib/includes/job_backup.php:1112
412
  msgid "(2106) Unable to cleanup your backup directory"
413
- msgstr ""
414
 
415
- #: lib/includes/job_backup.php:1113
416
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
417
- msgstr ""
418
 
419
- #: lib/includes/job_backup.php:1114
420
  msgid "(2108) Unable to backup your site data files. Please try again"
421
- msgstr ""
422
 
423
- #: lib/includes/job_backup.php:1115
424
  msgid "(2109) Unable to finalize backup. Please try again"
425
- msgstr ""
426
 
427
- #: lib/includes/job_backup.php:1116
428
  msgid ""
429
- "(2114) Your database was accessible but an export could not be created. Please "
430
- "contact support by clicking the get support link on the right. Please let us know "
431
- "who your host is when you submit the request"
432
  msgstr ""
 
 
433
 
434
- #: lib/includes/job_backup.php:1117
435
  msgid "(2120) Unable to backup your themes. Please try again"
436
- msgstr ""
437
 
438
- #: lib/includes/job_backup.php:1118
439
  msgid "(2121) Unable to backup your plugins. Please try again"
440
- msgstr ""
441
 
442
- #: lib/includes/job_backup.php:1119
443
  msgid "(2122) Unable to backup your uploads. Please try again"
444
- msgstr ""
445
 
446
- #: lib/includes/job_backup.php:1120
447
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
448
- msgstr ""
449
 
450
- #: lib/includes/job_backup.php:1121
451
  msgid ""
452
  "(2125) Unable to compress your backup because there is no zip utility available. "
453
  "Please contact support"
454
  msgstr ""
 
 
455
 
456
- #: lib/includes/job_backup.php:1122
457
  msgid "(2126) Unable to validate your backup. Please try again"
458
- msgstr ""
459
 
460
- #: lib/includes/job_backup.php:1123
461
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
462
- msgstr ""
463
 
464
- #: lib/includes/job_backup.php:1124
465
  msgid "(2128) Unable to create job control record. Please try again"
466
- msgstr ""
467
 
468
- #: lib/includes/job_backup.php:1127
469
  msgid "(999) Unexpected error"
470
- msgstr ""
471
 
472
  #. TRANSLATORS: %s = plugin name.
473
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
474
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
475
- #: views/backup.php:20
476
  #, php-format
477
  msgid "%s Dashboard"
478
- msgstr ""
479
 
480
- #: views/backup.php:150
 
 
 
 
481
  #, php-format
482
  msgid "Backup folder does not exist. Please contact %s for assistance."
483
- msgstr ""
484
 
485
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
486
  msgid "support"
487
- msgstr ""
488
 
489
- #: views/backup.php:153 views/backup.php:159
490
  msgid "Close"
491
- msgstr ""
492
 
493
- #: views/backup.php:174
494
  msgid ""
495
  "Click the backup button to create a zipped backup file of this site's database, "
496
  "plugins, themes and settings."
497
  msgstr ""
 
 
498
 
499
- #: views/backup.php:175
500
  msgid ""
501
- "Once your backup file has been created it will appear in the available backups "
502
- "section below. This file may remain on your hosting providers server but we "
503
- "recommend that you download and save it somewhere safe."
504
  msgstr ""
 
 
 
505
 
506
- #: views/backup.php:176
507
  msgid ""
508
  "WP BackItUp premium customers can use these backup files to perform an automated "
509
  "restore of their site."
510
  msgstr ""
 
 
511
 
512
- #: views/backup.php:180
513
  msgid "Cancel"
514
- msgstr ""
515
 
516
- #: views/backup.php:187
517
  #, php-format
518
  msgid ""
519
- "WP BackItUp lite customers may use these backup files to manually restore their "
520
- "site. Please visit %s for manual restore instructions."
521
  msgstr ""
 
 
522
 
523
- #: views/backup.php:194
524
  msgid "Backup Schedule"
525
- msgstr ""
526
 
527
- #: views/backup.php:196
528
  msgid "Select the days of the week you would like your backup to run."
529
- msgstr ""
530
 
531
- #: views/backup.php:198
532
  msgid ""
533
  "Backup your site once per week or every day, it's up to you. If you have email "
534
- "notifications turned on we'll even send you an email when it's done. Once your "
535
- "backup file has been created it will appear in the available backups section "
536
- "below. This file may remain on your hosting providers server but we recommend that "
537
- "you download and save it somewhere safe."
538
- msgstr ""
539
-
540
- #: views/backup.php:200
 
 
 
 
 
541
  msgid "Please make sure to schedule your backup for at least once per week."
542
- msgstr ""
543
 
544
- #: views/backup.php:204
545
  msgid "Monday"
546
- msgstr ""
547
 
548
- #: views/backup.php:205
549
  msgid "Tuesday"
550
- msgstr ""
551
 
552
- #: views/backup.php:206
553
  msgid "Wednesday"
554
- msgstr ""
555
 
556
- #: views/backup.php:207
557
  msgid "Thursday"
558
- msgstr ""
559
 
560
- #: views/backup.php:208
561
  msgid "Friday"
562
- msgstr ""
563
 
564
- #: views/backup.php:209
565
  msgid "Saturday"
566
- msgstr ""
567
 
568
- #: views/backup.php:210
569
  msgid "Sunday"
570
- msgstr ""
571
 
572
- #: views/backup.php:213
573
  msgid "Save Schedule"
574
- msgstr ""
575
 
576
- #: views/backup.php:218
577
  #, php-format
578
  msgid ""
579
- "Scheduled backups are only available to WP BackItUp premium customers. Please "
580
- "visit %s to get WP BackItUp risk free for 30 days."
581
  msgstr ""
 
 
582
 
583
- #: views/backup.php:225 views/restore.php:94
584
  msgid "Available Backups"
585
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
586
 
587
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
588
  msgid "No backup archives found."
589
- msgstr ""
590
 
591
- #: views/backup.php:291
592
  #, php-format
593
  msgid ""
594
  "The automated restore feature is only available to WP BackItUp premium customers. "
595
  "Please visit %s to get WP BackItUp risk free for 30 days."
596
  msgstr ""
 
 
597
 
598
- #: views/backup.php:300 views/restore.php:209
599
  msgid "Nothing to report"
600
- msgstr ""
601
 
602
- #: views/backup.php:305
603
  msgid "Preparing for backup"
604
- msgstr ""
605
 
606
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
607
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
608
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
609
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
610
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
611
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
612
- #: views/restore.php:228 views/restore.php:230
613
  msgid "Done"
614
- msgstr ""
615
 
616
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
617
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
618
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
619
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
620
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
621
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
622
- #: views/restore.php:228 views/restore.php:230
623
  msgid "Failed"
624
- msgstr ""
 
 
 
 
625
 
626
- #: views/backup.php:306
627
  msgid "Backing up database"
628
- msgstr ""
629
 
630
- #: views/backup.php:307
631
  msgid "Creating backup information file"
632
- msgstr ""
633
 
634
- #: views/backup.php:308
635
  msgid "Backing up themes"
636
- msgstr ""
637
 
638
- #: views/backup.php:309
639
  msgid "Backing up plugins"
640
- msgstr ""
641
 
642
- #: views/backup.php:310
643
  msgid "Backing up uploads"
644
- msgstr ""
645
 
646
- #: views/backup.php:311
647
  msgid "Backing up everything else"
648
- msgstr ""
649
 
650
- #: views/backup.php:312
651
  msgid "Validating backup"
652
- msgstr ""
653
 
654
- #: views/backup.php:313
655
  msgid "Finalizing backup"
656
- msgstr ""
657
 
658
- #: views/backup.php:323
659
  msgid "Backup completed successfully"
660
- msgstr ""
661
 
662
- #: views/backup.php:344
663
  msgid "Backups"
664
- msgstr ""
665
 
666
- #: views/backup.php:344
667
  msgid "Version "
668
- msgstr ""
669
 
670
- #: views/backup.php:346
671
  msgid "Welcome to WP BackItUp!"
672
- msgstr ""
673
 
674
- #: views/backup.php:346
675
  msgid "The simplest way to backup your WordPress site."
676
- msgstr ""
677
 
678
- #: views/backup.php:347
679
  msgid ""
680
- "Getting started is easy, just click the backup button on the left side of this "
681
- "page."
682
- msgstr ""
683
 
684
- #: views/backup.php:351
685
  #, php-format
686
  msgid ""
687
- "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
688
- "medium;color: green\">%s</span> successful backups."
689
  msgstr ""
 
 
690
 
691
- #: views/backup.php:352
692
  msgid "Tips"
693
- msgstr ""
694
 
695
- #: views/backup.php:353
696
  msgid "Backup your site at least once per week"
697
- msgstr ""
698
 
699
- #: views/backup.php:354
700
  msgid "Download all your backups and store them somewhere safe"
701
- msgstr ""
702
 
703
- #: views/backup.php:355
704
  msgid "Verify your backup files are good by taking a look at what's inside"
705
- msgstr ""
706
 
707
- #: views/backup.php:360
708
  #, php-format
709
  msgid "Why not %s and schedule your backups!"
710
- msgstr ""
711
 
712
- #: views/backup.php:360
713
  msgid "upgrade"
714
- msgstr ""
715
 
716
- #: views/backup.php:369
717
  msgid "Register WP BackItUp"
718
- msgstr ""
719
 
720
- #: views/backup.php:372
721
  msgid ""
722
- "Enter your name and email address below to receive <b>special offers</b> and "
723
- "access to our world class <b>support</b> team. <br />\n"
724
  " <br />Enter your license key below to activate it on this site."
725
  msgstr ""
 
 
 
726
 
727
- #: views/backup.php:374
728
  msgid "name"
729
- msgstr ""
730
 
731
- #: views/backup.php:375
732
  msgid "email address"
733
- msgstr ""
734
 
735
- #: views/backup.php:376
736
  msgid "license key"
737
- msgstr ""
738
 
739
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
740
  #, php-format
741
  msgid "%s"
742
- msgstr ""
743
 
744
- #: views/backup.php:377
745
  msgid "Free plugin customers do not need to enter license key."
746
- msgstr ""
747
 
748
- #: views/backup.php:378
749
  msgid "Register"
750
- msgstr ""
751
 
752
- #: views/backup.php:387
753
  msgid "License Info"
754
- msgstr ""
755
 
756
- #: views/backup.php:409
757
  msgid "Name"
758
- msgstr ""
759
 
760
- #: views/backup.php:410
761
  msgid "Email"
762
- msgstr ""
763
 
764
- #: views/backup.php:411
765
  msgid "License Type"
766
- msgstr ""
767
 
768
- #: views/backup.php:412
769
  msgid "Expires"
770
- msgstr ""
771
 
772
- #: views/backup.php:415
773
  msgid "Enter license key to activate on this site."
774
- msgstr ""
775
 
776
- #: views/backup.php:422
777
  msgid "License Active"
778
- msgstr ""
779
 
780
- #: views/backup.php:430
781
  msgid "License expired"
782
- msgstr ""
783
 
784
- #: views/backup.php:434
785
  msgid "Update"
786
- msgstr ""
787
 
788
- #: views/backup.php:438
789
  msgid "Activate"
790
- msgstr ""
791
 
792
- #: views/backup.php:442
793
  #, php-format
794
  msgid "Purchase a %s license using the purchase link above."
795
- msgstr ""
796
 
797
- #: views/backup.php:442
798
  msgid "no-risk"
799
- msgstr ""
800
 
801
- #: views/backup.php:448
802
  #, php-format
803
  msgid ""
804
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year of "
805
- "<strong>product updates</strong> and <strong>priority support.</strong>"
 
806
  msgstr ""
 
 
807
 
808
- #: views/backup.php:459
809
  msgid "Useful Links"
810
- msgstr ""
811
 
812
- #: views/backup.php:462 views/backup.php:466
813
  msgid "Your account"
814
- msgstr ""
815
 
816
- #: views/backup.php:469
817
  msgid "Documentation"
818
- msgstr ""
819
 
820
- #: views/backup.php:472
821
  msgid "Get support"
822
- msgstr ""
823
 
824
- #: views/backup.php:475
825
  msgid "Feature request"
826
- msgstr ""
 
 
 
 
827
 
828
- #: views/backup.php:477
829
  msgid "Contact"
830
- msgstr ""
831
 
832
- #: views/backup.php:497 views/backup.php:518
833
  msgid "WP BackItUp Backup Set"
834
- msgstr ""
835
 
836
- #: views/backup.php:499
837
  msgid ""
838
- "Below are the archive files included in this backup set. Click the link to "
839
- "download."
840
- msgstr ""
841
 
842
- #: views/backup.php:519
843
  msgid "Please refresh this page to download your new backup files."
844
- msgstr ""
845
 
846
- #: views/restore.php:16
847
  #, php-format
848
  msgid "%s Restore"
849
- msgstr ""
850
 
851
- #: views/restore.php:59
852
  msgid "Zip Files"
853
- msgstr ""
854
 
855
- #: views/restore.php:74
856
  #, php-format
857
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
858
- msgstr ""
859
 
860
- #: views/restore.php:81
861
  #, php-format
862
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
863
- msgstr ""
864
 
865
- #: views/restore.php:141
866
  #, php-format
867
  msgid ""
868
- "<p>* The automated restore feature is only available to licensed customers. "
869
- "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP BackItUp "
870
- "risk free for 30 days.</p>"
871
  msgstr ""
 
 
872
 
873
- #: views/restore.php:153
874
  msgid "Upload"
875
- msgstr ""
876
 
877
- #: views/restore.php:156
878
- msgid ""
879
- "Upload WP BackItUp archive(zip) files to add to your list of available backups."
880
  msgstr ""
 
881
 
882
- #: views/restore.php:173
883
  msgid "WP BackItUp - Upload backup files"
884
- msgstr ""
885
 
886
- #: views/restore.php:174
887
  msgid "Backup files may be uploaded into WP BackItUp with this form."
888
- msgstr ""
889
 
890
- #: views/restore.php:174
891
  msgid ""
892
  "They may also be uploaded manually into the WP BackItUp directory (wp-content/"
893
- "wpbackitup_backups) using FTP. When done uploading all backup files refresh this "
894
- "page."
895
  msgstr ""
 
 
896
 
897
- #: views/restore.php:178
898
  #, php-format
899
  msgid "This feature requires %s version %s or later"
900
- msgstr ""
901
 
902
- #: views/restore.php:184
903
  msgid "Drop backup files here"
904
- msgstr ""
905
 
906
- #: views/restore.php:190
907
  msgid ""
908
  "* Reload this page when done uploading to see new backups appear in the Available "
909
  "Backups section above. "
910
  msgstr ""
 
 
911
 
912
- #: views/restore.php:219
913
  msgid "Preparing for restore"
914
- msgstr ""
915
 
916
- #: views/restore.php:220
917
  msgid "Unzipping backup set"
918
- msgstr ""
919
 
920
- #: views/restore.php:221
921
  msgid "Validating backup file"
922
- msgstr ""
923
 
924
- #: views/restore.php:222
925
  msgid "Deactivating plugins"
926
- msgstr ""
927
 
928
- #: views/restore.php:223
929
  msgid "Creating database restore point"
930
- msgstr ""
931
 
932
- #: views/restore.php:224
933
  msgid "Staging content files"
934
- msgstr ""
935
 
936
- #: views/restore.php:225
937
  msgid "Restoring content files"
938
- msgstr ""
939
 
940
- #: views/restore.php:226
941
  msgid "Restoring database"
942
- msgstr ""
943
 
944
- #: views/restore.php:227
945
  msgid "Updating current user info"
946
- msgstr ""
947
 
948
- #: views/restore.php:228
949
  msgid "Updating site URL"
950
- msgstr ""
951
 
952
- #: views/restore.php:230
953
  msgid "Updating permalinks"
954
- msgstr ""
955
 
956
- #: views/restore.php:236
957
  msgid "Error 201: No file selected"
958
- msgstr ""
959
 
960
- #: views/restore.php:237
961
  msgid "Error 202: Your file could not be uploaded"
962
- msgstr ""
963
 
964
- #: views/restore.php:238
965
  msgid "Error 203: Your backup could not be unzipped"
966
- msgstr ""
967
 
968
- #: views/restore.php:239
969
  msgid ""
970
- "Error 204: Your backup appears to be invalid. Please ensure you selected a valid "
971
- "backup"
972
  msgstr ""
 
973
 
974
- #: views/restore.php:240
975
  msgid "Error 205: Cannot create restore point"
976
- msgstr ""
977
 
978
- #: views/restore.php:241
979
  msgid "Error 206: Unable to connect to your database"
980
- msgstr ""
981
 
982
- #: views/restore.php:242
983
  msgid "Error 207: Unable to get current site URL from database. Please try again"
984
  msgstr ""
 
985
 
986
- #: views/restore.php:243
987
  msgid "Error 208: Unable to get current home URL from database. Please try again"
988
- msgstr ""
989
 
990
- #: views/restore.php:244
991
  msgid "Error 209: Unable to get current user ID from database. Please try again"
992
  msgstr ""
 
993
 
994
- #: views/restore.php:245
995
- msgid ""
996
- "Error 210: Unable to get current user password from database. Please try again"
997
  msgstr ""
 
 
998
 
999
- #: views/restore.php:246
1000
  msgid "Error 211: Unable to get current user email from database. Please try again"
1001
  msgstr ""
 
1002
 
1003
- #: views/restore.php:247
1004
  msgid ""
1005
- "Error 212: Unable to import your database. This may require importing the file "
1006
- "manually"
1007
  msgstr ""
 
 
1008
 
1009
- #: views/restore.php:248
1010
  msgid ""
1011
- "Warning 213: Unable to update your site URL value. Please check your WordPress "
1012
- "general settings to make sure your Site and WordPress URLs are correct"
1013
  msgstr ""
 
 
1014
 
1015
- #: views/restore.php:249
1016
  msgid ""
1017
- "Warning 214: Unable to update your home URL value. Please check your WordPress "
1018
- "general settings to make sure your Site and WordPress URLs are correct"
1019
  msgstr ""
 
 
1020
 
1021
- #: views/restore.php:250
1022
  msgid ""
1023
- "Warning 215: Unable to update your user information. This may require you to login "
1024
- "with the admin username and password that was used when the backup was created"
1025
  msgstr ""
 
 
1026
 
1027
- #: views/restore.php:251
1028
  msgid "Error 216: Database not found in backup"
1029
- msgstr ""
1030
 
1031
- #: views/restore.php:252
1032
  msgid "Warning 217: Unable to remove existing wp-content directory"
1033
- msgstr ""
1034
 
1035
- #: views/restore.php:253
1036
  msgid ""
1037
- "Error 218: Unable to create new wp-content directory. Please check your CHMOD "
1038
- "settings in /wp-content/"
1039
  msgstr ""
 
 
1040
 
1041
- #: views/restore.php:254
1042
  msgid "Error 219: Unable to import wp-content. Please try again"
1043
- msgstr ""
1044
 
1045
- #: views/restore.php:255
1046
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1047
- msgstr ""
1048
 
1049
- #: views/restore.php:256
1050
  #, php-format
1051
  msgid ""
1052
- "Error 221: Table prefix value in wp-config.php is different from backup. This MUST "
1053
- "be changed in your wp-config.php file before you will be able to restore your "
1054
- "site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" > FAQs</a> for "
1055
- "more info."
1056
  msgstr ""
 
 
 
1057
 
1058
- #: views/restore.php:257
1059
  msgid "Error 222: Unable to create restore folder"
1060
- msgstr ""
1061
 
1062
- #: views/restore.php:258
1063
  msgid ""
1064
- "Error 223: An error occurred during the restore. WP BackItUp attempted to restore "
1065
- "the database to its previous state but were unsuccessful. Please contact WP "
1066
- "BackItUp customer support and do not attempt to perform any further restores"
1067
  msgstr ""
 
 
 
1068
 
1069
- #: views/restore.php:259
1070
  msgid ""
1071
- "Error 224: An error occurred during the restore, however, we have successfully "
1072
- "restored your database to the previous state"
1073
  msgstr ""
 
 
1074
 
1075
- #: views/restore.php:260
1076
  msgid "Error 225: Restore option is only available to licensed WP BackItUp users"
1077
- msgstr ""
1078
 
1079
- #: views/restore.php:261
1080
  msgid ""
1081
- "Error 226: Restore cannot proceed because your backup was created using a "
1082
- "different version of WordPress"
1083
  msgstr ""
 
 
1084
 
1085
- #: views/restore.php:262
1086
  msgid ""
1087
- "Error 227: Restore cannot proceed because your backup was created using a "
1088
- "different version of WP BackItUp. Please contact WP BackItUp support to help "
1089
- "convert this backup to the current version"
1090
  msgstr ""
 
 
 
1091
 
1092
- #: views/restore.php:263
1093
  msgid ""
1094
  "Error 230: WP BackItUp ran into unexpected errors during the database restore. "
1095
- "However, we were able to successfully revert the database back to its original "
1096
- "state . This error may require importing the database manually"
1097
  msgstr ""
 
 
 
1098
 
1099
- #: views/restore.php:264
1100
  msgid ""
1101
  "Error 235: WP BackItUp is not able to proceed because there is no zip utility "
1102
  "available. Please contact support"
1103
  msgstr ""
 
 
1104
 
1105
- #: views/restore.php:265
1106
  msgid ""
1107
- "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1108
- "running. Please wait for the backup to complete and then try again"
1109
  msgstr ""
 
 
1110
 
1111
- #: views/restore.php:267
1112
  msgid ""
1113
- "Error 251: WP BackItUp is unable to begin the restore because the backup manifest "
1114
- "is empty"
1115
- msgstr ""
1116
 
1117
- #: views/restore.php:268
1118
  msgid ""
1119
- "Error 252: At least one zip file is missing from your backup set. Please make "
1120
- "sure to upload all zip files that were part of this backup"
1121
  msgstr ""
 
 
1122
 
1123
- #: views/restore.php:269
1124
  msgid ""
1125
- "Error 253: Backup set contains a zip file that is not in the manifest. Please "
1126
- "make sure to upload only zip files that were part of this backup"
1127
  msgstr ""
 
 
1128
 
1129
- #: views/restore.php:271
1130
  msgid ""
1131
- "Warning 300: Unable to restore all WordPress content. Please review your restore "
1132
- "logs to see what WP BackItUp was unable to restore"
1133
  msgstr ""
 
 
1134
 
1135
- #: views/restore.php:272
1136
  msgid ""
1137
- "Warning 305: Unable to restore all plugins. Please review your restore logs to see "
1138
- "what WP BackItUp was unable to restore"
1139
  msgstr ""
 
 
1140
 
1141
- #: views/restore.php:274
1142
  msgid "Error 2001: Unable to prepare site for restore"
1143
- msgstr ""
1144
 
1145
- #: views/restore.php:275
1146
  msgid "Error 2002: Unable to unzip backup"
1147
- msgstr ""
1148
 
1149
- #: views/restore.php:276
1150
  msgid "Error 2003: Unable to validate backup"
1151
- msgstr ""
1152
 
1153
- #: views/restore.php:277
1154
  msgid "Error 2004: Unable to create restore point"
1155
- msgstr ""
1156
 
1157
- #: views/restore.php:278
1158
  msgid "Error 2005: Unable to stage wp-content"
1159
- msgstr ""
1160
 
1161
- #: views/restore.php:279
1162
  msgid "Error 2006: Unable to restore content files"
1163
- msgstr ""
1164
 
1165
- #: views/restore.php:280
1166
  msgid "Error 2007: Unable to restore database"
1167
- msgstr ""
1168
 
1169
- #: views/restore.php:281
1170
  msgid "Error 2999: Unexpected error encountered"
1171
- msgstr ""
1172
 
1173
- #: views/restore.php:288
1174
  msgid ""
1175
- "Restore completed successfully. If you are prompted to login please do so with "
1176
- "your current username and password"
1177
  msgstr ""
 
 
1178
 
1179
- #: views/settings.php:16
1180
  #, php-format
1181
  msgid "%s Settings"
1182
- msgstr ""
1183
 
1184
- #: views/settings.php:43
1185
  msgid "Email Notifications"
1186
- msgstr ""
1187
 
1188
- #: views/settings.php:44
1189
  msgid ""
1190
- "Please enter your email address if you would like to receive backup email "
1191
- "notifications."
1192
- msgstr ""
1193
 
1194
- #: views/settings.php:45
1195
  msgid ""
1196
  "Backup email notifications will be sent for every backup and will contain status "
1197
  "information related to the backup."
1198
  msgstr ""
 
 
1199
 
1200
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1201
- #: views/settings.php:114
1202
  msgid "Save"
1203
- msgstr ""
1204
 
1205
- #: views/settings.php:63
1206
  msgid "Backup Retention"
1207
- msgstr ""
1208
 
1209
- #: views/settings.php:64
1210
- msgid ""
1211
- "Enter the number of backup archives that you would like to remain on the server."
1212
- msgstr ""
1213
 
1214
- #: views/settings.php:65
1215
  msgid ""
1216
- "Many hosts limit the amount of space that you can take up on their servers. This "
1217
- "option tells WP BackItUp the maximum number of backup archives that should remain "
1218
- "on your hosts server. Don't worry, we will always remove the oldest backup "
1219
- "archives first."
1220
  msgstr ""
 
 
 
1221
 
1222
- #: views/settings.php:84
1223
  msgid "Turn on logging?"
1224
- msgstr ""
1225
 
1226
- #: views/settings.php:85
1227
  msgid "Yes"
1228
- msgstr ""
1229
 
1230
- #: views/settings.php:86
1231
  msgid "No"
1232
- msgstr ""
1233
 
1234
- #: views/settings.php:87
1235
  msgid ""
1236
  "This option should only be turned on when troubleshooting issues with WPBackItUp "
1237
  "support."
1238
- msgstr ""
1239
 
1240
- #: views/settings.php:92
1241
  msgid "Advanced Settings"
1242
- msgstr ""
1243
 
1244
- #: views/settings.php:93
1245
  msgid "These options should only be changed when working with WP BackItUp support."
1246
- msgstr ""
1247
 
1248
- #: views/settings.php:96
1249
  msgid "Plugins Batch Size"
1250
- msgstr ""
1251
 
1252
- #: views/settings.php:101
1253
  msgid "Themes Batch Size"
1254
- msgstr ""
1255
 
1256
- #: views/settings.php:106
1257
  msgid "Uploads Batch Size"
1258
- msgstr ""
1259
 
1260
- #: views/settings.php:111
1261
  msgid "Others Batch Size"
1262
- msgstr ""
1263
 
1264
- #: views/support.php:16
1265
  #, php-format
1266
  msgid "%s Support"
1267
- msgstr ""
1268
 
1269
- #: views/support.php:35
1270
  msgid "Support email sent successfully!"
1271
- msgstr ""
1272
 
1273
- #: views/support.php:48
1274
  msgid "Email Logs to Support"
1275
- msgstr ""
1276
 
1277
- #: views/support.php:49
1278
  msgid "This form should be used to send log files to support only."
1279
- msgstr ""
1280
 
1281
- #: views/support.php:50
1282
  msgid ""
1283
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://www."
1284
- "wpbackitup.com/support\" target=\"_blank\">support portal.</a> before using this "
1285
- "form."
1286
  msgstr ""
 
 
1287
 
1288
- #: views/support.php:51
1289
  msgid ""
1290
- "The ticket id you receive from your support request should be entered in the "
1291
- "ticket id field below."
1292
  msgstr ""
 
1293
 
1294
- #: views/support.php:52
1295
  msgid "your email address"
1296
- msgstr ""
1297
 
1298
- #: views/support.php:62
1299
  msgid "support ticket id"
1300
- msgstr ""
1301
 
1302
- #: views/support.php:72
1303
  msgid "problem description or additional information"
1304
- msgstr ""
1305
 
1306
- #: views/support.php:83
1307
  msgid "Send"
1308
- msgstr ""
1309
 
1310
- #: views/support.php:86
1311
  msgid "Please register your version of WP BackItUp for access to support."
1312
- msgstr ""
1313
 
1314
- #: views/support.php:90
1315
  msgid "Premium customers receive priority support."
1316
- msgstr ""
1317
 
1318
- #: wp-backitup.php:97 wp-backitup.php:98
1319
  #, php-format
1320
  msgid "Every %s hours"
1321
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP BackItUp\n"
7
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
8
+ "PO-Revision-Date: 2015-09-15 11:50-0400\n"
9
  "Last-Translator: MD. AL-AMIN <alamin_opu@yahoo.com>\n"
10
  "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/wp-translations/wp-"
11
  "backitup/language/bn_BD/)\n"
19
  "X-Poedit-KeywordsList: _;__;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118 views/backup.php:124
23
+ #: views/backup.php:189 views/restore.php:99 wp-backitup.php:109
24
  msgid "Backup"
25
  msgstr "ব্যাকআপ"
26
 
27
+ #: lib/includes/class-wpbackitup-admin.php:182 lib/includes/class-wpbackitup-admin.php:217
28
+ #: views/restore.php:137 wp-backitup.php:123
29
  msgid "Restore"
30
  msgstr "পুনরুদ্ধার"
31
 
32
+ #: lib/includes/class-wpbackitup-admin.php:186
33
  msgid "Support"
34
  msgstr "সাহায্য"
35
 
36
+ #: lib/includes/class-wpbackitup-admin.php:189
37
  msgid "Settings"
38
  msgstr "সেটিংস"
39
 
40
+ #: lib/includes/class-wpbackitup-admin.php:210
41
  msgid "The backup you have selected exceeds what your host allows you to upload."
42
  msgstr ""
43
+ "অাপনি যে ব্যাকঅাপটি সিলেক্ট করেছেন সেটি অাপনার হোস্ট যতটুকু অাপলোড করার অনুমতি দেয় তা অতিক্রম "
44
+ "করবে।"
45
 
46
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280 views/backup.php:281
47
+ #: views/backup.php:282 views/backup.php:283 views/backup.php:284 views/backup.php:285
48
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288 views/backup.php:289
 
49
  msgid "Warning"
50
  msgstr "সতর্কবার্তা"
51
 
52
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94 views/backup.php:220
53
  msgid "Error"
54
  msgstr "ত্রুটি"
55
 
56
+ #: lib/includes/class-wpbackitup-admin.php:213
57
  msgid "Response"
58
  msgstr "উত্তর"
59
 
60
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192 views/backup.php:271
61
+ #: views/restore.php:230
62
  msgid "Status"
63
  msgstr "অবস্থা"
64
 
65
+ #: lib/includes/class-wpbackitup-admin.php:215
66
  msgid "Download"
67
  msgstr "ডাউনলোড"
68
 
69
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248 views/restore.php:132
 
70
  msgid "Delete"
71
  msgstr "মুছুন "
72
 
73
+ #: lib/includes/class-wpbackitup-admin.php:218
74
  msgid "(JS997) Unexpected error"
75
  msgstr "(JS997) অপ্রত্যাশিত ত্রুটি"
76
 
77
+ #: lib/includes/class-wpbackitup-admin.php:219
78
  msgid "(JS998) Unexpected error"
79
  msgstr "(JS998) অপ্রত্যাশিত ত্রুটি"
80
 
81
+ #: lib/includes/class-wpbackitup-admin.php:220
82
  msgid "(JS999) An unexpected error has occurred"
83
  msgstr "(JS999) একটি অপ্রত্যাশিত ত্রুটি হয়েছে"
84
 
85
+ #: lib/includes/class-wpbackitup-admin.php:221
86
  msgid "Scheduled has been saved."
87
  msgstr "সুচি সংরক্ষন করা হয়েছে।"
88
 
89
+ #: lib/includes/class-wpbackitup-admin.php:222
90
  msgid "Scheduled was not saved."
91
  msgstr "সুচি সংরক্ষন সম্পন্ন হয়নি।"
92
 
93
+ #: lib/includes/class-wpbackitup-admin.php:223
94
  msgid "Are you sure you want to restore your site?"
95
  msgstr "অাপনি কি নিশ্চিতভাবে চান সাইটটি পুনরুদ্ধার করতে? "
96
 
97
+ #: lib/includes/class-wpbackitup-admin.php:224
98
  msgid "Are you sure ?"
99
  msgstr "অাপনি কি নিশ্চিত ? "
100
 
101
+ #: lib/includes/class-wpbackitup-admin.php:225
102
  msgid "This file cannot be delete!"
103
  msgstr "এই ফাইলটি মুছা যাবে নাহ !"
104
 
105
+ #: lib/includes/class-wpbackitup-admin.php:226
106
  msgid "View Log"
107
  msgstr "লগ দেখুন"
108
 
109
+ #: lib/includes/class-wpbackitup-admin.php:227
110
  msgid "New Backup!"
111
  msgstr "নতুন ব্যাকঅাপ !"
112
 
113
+ #: lib/includes/class-wpbackitup-admin.php:228
114
  msgid "Uploaded Backup"
115
  msgstr "অাপলোডকৃত ব্যাকঅাপ"
116
 
117
+ #: lib/includes/class-wpbackitup-admin.php:515
118
  msgid "Backup Queued"
119
  msgstr "ব্যাকঅাপ অপেক্ষমান"
120
 
121
+ #: lib/includes/class-wpbackitup-admin.php:518
122
  msgid "Backup could not be queued"
123
  msgstr "ব্যাকঅাপ অপেক্ষমান করা যায়নি। "
124
 
125
+ #: lib/includes/class-wpbackitup-admin.php:522
126
+ msgid "Job already in queue, please try again later"
127
+ msgstr "কাজটি ইতিমধ্যে কিউতে আছে । দয়াকরে আবার চেষ্টা করুন । "
128
 
129
+ #: lib/includes/class-wpbackitup-admin.php:554
 
 
 
 
130
  msgid "No backup file selected."
131
  msgstr "ব্যাকঅাপ ফাইল বাছাই করা হয়নি।"
132
 
133
+ #: lib/includes/class-wpbackitup-admin.php:561
134
  msgid "No user id found."
135
  msgstr "ব্যবহারকারী খুজে পাওয়া যায়নি। "
136
 
137
+ #: lib/includes/class-wpbackitup-admin.php:582
138
  msgid "Restore Queued"
139
  msgstr "পুনরুদ্ধার অপেক্ষমান"
140
 
141
+ #: lib/includes/class-wpbackitup-admin.php:584
142
  msgid "Restore could not be queued"
143
  msgstr "পুনরুদ্ধার অপেক্ষমান করা যায় নি"
144
 
145
+ #: lib/includes/class-wpbackitup-admin.php:588
146
  msgid "Restore already in queue"
147
  msgstr "পুনরুদ্ধার অাগে থেকেই অপেক্ষমান"
148
 
149
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
150
+ msgid "Backup Cancelled"
151
+ msgstr "ব্যাকঅাপ বাতিল করা হয়েছে"
152
+
153
+ #: lib/includes/class-wpbackitup-admin.php:754
154
  msgid "No response log found."
155
  msgstr "রেসপনস লগ পাওয়া যায়নি।"
156
 
157
+ #: lib/includes/class-wpbackitup-admin.php:856 lib/includes/class-wpbackitup-admin.php:864
158
+ #: lib/includes/class-wpbackitup-admin.php:893 lib/includes/class-wpbackitup-admin.php:900
159
+ #: lib/includes/class-wpbackitup-admin.php:907 lib/includes/class-wpbackitup-admin.php:914
 
 
 
160
  msgid "Please enter a number"
161
  msgstr "একটি নাম্বার প্রবেশ করুন "
162
 
163
+ #: lib/includes/class-wpbackitup-admin.php:885 lib/includes/class-wpbackitup-admin.php:993
 
164
  msgid "Please enter a valid email"
165
  msgstr "একটি সঠিক ইমেইল প্রবেশ করুন "
166
 
167
+ #: lib/includes/class-wpbackitup-admin.php:1000
168
  msgid "Please enter your support ticket id"
169
  msgstr "অাপনার সাপোর্ট টিকেট অাইডি প্রবেশ করুন"
170
 
171
+ #: lib/includes/class-wpbackitup-admin.php:1005
172
  msgid "Please only enter numbers in this field"
173
  msgstr "এই ঘরে শুধুমাত্র নাম্বার প্রবেশ করুন"
174
 
175
+ #: lib/includes/class-wpbackitup-admin.php:1699
176
  msgid "License is invalid."
177
  msgstr "লাইসেন্স সঠিক নয়।"
178
 
179
+ #: lib/includes/class-wpbackitup-admin.php:1704
180
  msgid "License has expired."
181
  msgstr "লাইসেন্স বাতিল হয়ে গিয়েছে। "
182
 
183
+ #: lib/includes/class-wpbackitup-admin.php:1707
184
+ #, php-format
185
+ msgid ""
186
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> now for "
187
+ "another year of <strong>product updates</strong> and access to our <strong>world class "
188
+ "support</strong> team."
189
+ msgstr ""
190
+ "আপনার লাইসেন্সের মেয়াদ শেষ হয়ে গেছে। দয়াকরে আরও এক বছরের জন্য <strong> পণ্য আপডেট </"
191
+ "strong><a href=\"%s\" target=\"blank\"> নতুন </a> করুন এবং আমাদের বিশ্বমানের সহায়তা দলের "
192
+ "সহায়তা নিন । "
193
+
194
+ #: lib/includes/class-wpbackitup-admin.php:1721
195
+ msgid "License Expired: Scheduled backups are no longer active."
196
+ msgstr "লাইসেন্সের মেয়াদ শেষঃ নির্ধারিত ব্যাকআপ আর সক্রিয় নেই । "
197
+
198
+ #: lib/includes/class-wpbackitup-admin.php:1729
199
  msgid "Activation limit has been reached."
200
  msgstr "সক্রিয়করন সীমা পুর্ন হয়ে গিয়েছে।"
201
 
202
+ #: lib/includes/class-wpbackitup-admin.php:1735
203
+ msgid "Your Activation limit has been reached"
204
+ msgstr "আপনার অ্যাক্টিভেশন শেষ সীমায় পৌঁছেছে"
205
+
206
  #: lib/includes/handler_upload.php:29
207
  msgid "Invalid Nonce"
208
  msgstr "ভুল Nonce"
226
 
227
  #: lib/includes/handler_upload.php:161
228
  msgid "Could not import file into WP BackItUp backup set."
229
+ msgstr "WP BackItUp ব্যাকআপ সেট এর মধ্যে ফাইল ইম্পোর্ট করা যায়নি."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
 
231
+ #: lib/includes/job_backup.php:907
232
+ #, php-format
233
+ msgid ""
234
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your license has "
235
+ "expired.</span><br/><br/>Scheduled backups will only continue to function for "
236
+ "<strong>30</strong> days after your license has expired.Please <strong><a href=\"%s\" "
237
+ "target=\"blank\">renew</a></strong> for another year of product updates and access to "
238
+ "our world class support team.<br/><br/>"
239
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
240
 
241
+ #: lib/includes/job_backup.php:912
242
  #, php-format
243
  msgid "%s - Backup completed successfully."
244
+ msgstr "%s - সফলভাবে ব্যাকআপ সম্পন্ন হয়েছে। "
245
 
246
+ #: lib/includes/job_backup.php:913
247
  msgid "Your backup completed successfully."
248
+ msgstr "অাপনার ব্যাকআপ সফলভাবে সম্পন্ন হয়েছে। "
249
 
250
+ #: lib/includes/job_backup.php:916
251
  #, php-format
252
  msgid "%s - Backup did not complete successfully."
253
+ msgstr "%s - সফলভাবে ব্যাকআপ সম্পন্ন হয়নি। "
254
 
255
+ #: lib/includes/job_backup.php:917
256
  msgid "Your backup did not complete successfully."
257
+ msgstr "অাপনার ব্যাকআপ সফলভাবে সম্পন্ন হয়নি। "
258
 
259
+ #: lib/includes/job_backup.php:924
260
  #, php-format
261
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
262
+ msgstr "ওয়ার্ডপ্রেস সাইট: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
263
 
264
+ #: lib/includes/job_backup.php:925
265
  msgid "Backup date:"
266
+ msgstr "ব্যাকআপের তারিখ:"
267
 
268
+ #: lib/includes/job_backup.php:926
269
  msgid "Number of backups completed with WP BackItUp:"
270
+ msgstr "WP BackItUp দিয়ে ব্যাকঅাপ সম্পন্ন করা হয়েছে:"
271
 
272
+ #: lib/includes/job_backup.php:928
273
  msgid "Completion Code:"
274
+ msgstr "পরিপূর্ন কোড:"
275
 
276
+ #: lib/includes/job_backup.php:929
277
  msgid "WP BackItUp Version:"
278
+ msgstr "WP BackItUp ভার্সন:"
279
 
280
+ #: lib/includes/job_backup.php:941
 
 
 
 
281
  #, php-format
282
  msgid "Checkout %s for info about WP BackItUp and our other products."
283
+ msgstr "WP BackItUp এবং অামাদের অন্যান্য প্রোডাক্ট সম্পর্কে জানতে %s দেখুন।"
284
 
285
+ #: lib/includes/job_backup.php:1117
286
  msgid ""
287
+ "(101) Unable to create a new directory for backup. Please check your CHMOD settings of "
288
+ "your wp-backitup backup directory"
289
  msgstr ""
290
+ "(101) ব্যাকঅাপের জন্য নতুন ডিরেক্টরি তৈরি করা যাচ্ছে নাহ। দয়াকরে অাপনার wp-backitup ব্যাকঅাপ "
291
+ "ডিরেক্টরির CHMOD সেটিংস যাচাই করুন"
292
 
293
+ #: lib/includes/job_backup.php:1118
294
  msgid ""
295
  "(102) Cannot create backup directory. Please check the CHMOD settings of your wp-"
296
  "backitup plugin directory"
297
  msgstr ""
298
+ "(102) ব্যাকঅাপ ডিরেক্টরি তৈরি করা যাচ্ছে নাহ। দয়াকরে অাপনার wp-backitup প্লাগিন ডিরেক্টরির "
299
+ "CHMOD সেটিংস যাচাই করুন"
300
 
301
+ #: lib/includes/job_backup.php:1119
302
  msgid "(103) Unable to backup your files. Please try again"
303
+ msgstr "(103) অাপনার ফাইলসমুহ ব্যাকঅাপ নেয়া যাচ্ছে নাহ। দয়াকরে অাবার চেষ্টা করুন। "
304
 
305
+ #: lib/includes/job_backup.php:1120
306
  msgid "(104) Unable to export your database. Please try again"
307
+ msgstr "(104) অাপনার ডেটাবেজ এক্সপোর্ট করা যাচ্ছে নাহ। দয়াকরে অাবার চেষ্টা করুন। "
308
 
309
+ #: lib/includes/job_backup.php:1121
310
  msgid "(105) Unable to export site information file. Please try again"
311
+ msgstr "(105) অাপনার সাইটের তথ্য এক্সপোর্ট করা যাচ্ছে নাহ। দয়াকরে অাবার চেষ্টা করুন। "
312
 
313
+ #: lib/includes/job_backup.php:1122
314
  msgid "(106) Unable to cleanup your backup directory"
315
+ msgstr "(106) অাপনার ব্যাকঅাপ ডিরেক্টরি পরিষ্কার করা যাচ্ছে নাহ।"
316
 
317
+ #: lib/includes/job_backup.php:1123
318
  msgid "(107) Unable to compress(zip) your backup. Please try again"
319
+ msgstr "(107) আপনার ব্যাকআপ সঙ্কুচিত করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
320
 
321
+ #: lib/includes/job_backup.php:1124
322
  msgid "(108) Unable to backup your site data files. Please try again"
323
+ msgstr "(108) আপনার সাইটের ডাটা ফাইল ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
324
 
325
+ #: lib/includes/job_backup.php:1125
326
  msgid "(109) Unable to finalize backup. Please try again"
327
+ msgstr "(109) ব্যাকআপ চূড়ান্ত করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
328
 
329
+ #: lib/includes/job_backup.php:1126
330
  msgid ""
331
+ "(114) Your database was accessible but an export could not be created. Please contact "
332
+ "support by clicking the get support link on the right. Please let us know who your host "
333
+ "is when you submit the request"
334
  msgstr ""
335
+ "(114) আপনার ডাটাবেস সুগম ছিল কিন্তু এক্সপোর্ট তৈরি করা যায়নি । ডানদিকে সংযোগ সমর্থন লিঙ্কে "
336
+ "ক্লিক করে সমর্থনের সাথে যোগাযোগ করুন ।দয়াকরে অনুরোধ করার সময় আমাদেরকে আপনার হোস্ট জানান । "
337
 
338
+ #: lib/includes/job_backup.php:1127
339
  msgid "(120) Unable to backup your themes. Please try again"
340
+ msgstr "(120) আপনার থিম ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
341
 
342
+ #: lib/includes/job_backup.php:1128
343
  msgid "(121) Unable to backup your plugins. Please try again"
344
+ msgstr "(121) আপনার প্লাগিন ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
345
 
346
+ #: lib/includes/job_backup.php:1129
347
  msgid "(122) Unable to backup your uploads. Please try again"
348
+ msgstr "(122) আপনার আপলোড ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
349
 
350
+ #: lib/includes/job_backup.php:1130
351
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
352
+ msgstr "(123) আপনার বিবিধ ফাইল ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
353
 
354
+ #: lib/includes/job_backup.php:1131
355
  msgid ""
356
+ "(125) Unable to compress your backup because there is no zip utility available. Please "
357
+ "contact support"
358
  msgstr ""
359
+ "(125) আপনার ব্যাকআপ সঙ্কুচিত করা যাচ্ছেনা কারন কোন zip utility খুজে পাওয়া যায়নি । দয়াকরে "
360
+ "support এ যোগাযোগ করুন ।"
361
 
362
+ #: lib/includes/job_backup.php:1132
363
  msgid "(126) Unable to validate your backup. Please try again"
364
+ msgstr "(126) আপনার ব্যাকআপ যাচাই করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
365
 
366
+ #: lib/includes/job_backup.php:1133
367
  msgid "(127) Unable to create inventory of files to backup. Please try again"
368
+ msgstr "(127) ব্যাকআপের জন্য ফাইলের তালিকা তৈরি করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
369
 
370
+ #: lib/includes/job_backup.php:1134
371
  msgid "(128) Unable to create job control record. Please try again"
372
+ msgstr "(128) কাজের নিয়ন্ত্রণ রেকর্ড তৈরি করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
373
 
374
+ #: lib/includes/job_backup.php:1136
375
  msgid ""
376
+ "(2101) Unable to create a new directory for backup. Please check your CHMOD settings of "
377
+ "your wp-backitup backup directory"
378
  msgstr ""
379
+ "(2101) ব্যাকঅাপের জন্য নতুন ডিরেক্টরি তৈরি করা যাচ্ছেনা। দয়াকরে অাপনার wp-backitup ব্যাকঅাপ "
380
+ "ডিরেক্টরির CHMOD সেটিংস যাচাই করুন"
381
 
382
+ #: lib/includes/job_backup.php:1137
383
  msgid ""
384
  "(2102) Cannot create backup directory. Please check the CHMOD settings of your wp-"
385
  "backitup plugin directory"
386
  msgstr ""
387
+ "(2102) ব্যাকঅাপ ডিরেক্টরি তৈরি করা যাচ্ছেনা। দয়াকরে অাপনার wp-backitup প্লাগিন ডিরেক্টরির "
388
+ "CHMOD সেটিংস যাচাই করুন"
389
 
390
+ #: lib/includes/job_backup.php:1138
391
  msgid "(2103) Unable to backup your files. Please try again"
392
+ msgstr "(2103) অাপনার ফাইলসমুহ ব্যাকঅাপ নেয়া যাচ্ছে নাহ। দয়াকরে অাবার চেষ্টা করুন। "
393
 
394
+ #: lib/includes/job_backup.php:1139
395
  msgid "(2104) Unable to export your database. Please try again"
396
+ msgstr "(2104) অাপনার ডেটাবেজ এক্সপোর্ট করা যাচ্ছেনা। দয়াকরে অাবার চেষ্টা করুন। "
397
 
398
+ #: lib/includes/job_backup.php:1140
399
  msgid "(2105) Unable to export site information file. Please try again"
400
+ msgstr "(2105) অাপনার সাইটের তথ্য এক্সপোর্ট করা যাচ্ছে নাহ। দয়াকরে অাবার চেষ্টা করুন। "
401
 
402
+ #: lib/includes/job_backup.php:1141
403
  msgid "(2106) Unable to cleanup your backup directory"
404
+ msgstr "(2106) অাপনার ব্যাকঅাপ ডিরেক্টরি পরিষ্কার করা যাচ্ছেনা।"
405
 
406
+ #: lib/includes/job_backup.php:1142
407
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
408
+ msgstr "(2107) আপনার ব্যাকআপ সঙ্কুচিত করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
409
 
410
+ #: lib/includes/job_backup.php:1143
411
  msgid "(2108) Unable to backup your site data files. Please try again"
412
+ msgstr "(2108) আপনার সাইটের ডাটা ফাইল ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
413
 
414
+ #: lib/includes/job_backup.php:1144
415
  msgid "(2109) Unable to finalize backup. Please try again"
416
+ msgstr "(2109) ব্যাকআপ চূড়ান্ত করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন। "
417
 
418
+ #: lib/includes/job_backup.php:1145
419
  msgid ""
420
+ "(2114) Your database was accessible but an export could not be created. Please contact "
421
+ "support by clicking the get support link on the right. Please let us know who your host "
422
+ "is when you submit the request"
423
  msgstr ""
424
+ "(2114) আপনার ডাটাবেস সুগম ছিল কিন্তু এক্সপোর্ট তৈরি করা যায়নি । ডানদিকে সংযোগ সমর্থন লিঙ্কে "
425
+ "ক্লিক করে সমর্থনের সাথে যোগাযোগ করুন ।দয়াকরে অনুরোধ করার সময় আমাদেরকে আপনার হোস্ট জানান । "
426
 
427
+ #: lib/includes/job_backup.php:1146
428
  msgid "(2120) Unable to backup your themes. Please try again"
429
+ msgstr "(2120) আপনার থিম ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
430
 
431
+ #: lib/includes/job_backup.php:1147
432
  msgid "(2121) Unable to backup your plugins. Please try again"
433
+ msgstr "(2121) আপনার প্লাগিন ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
434
 
435
+ #: lib/includes/job_backup.php:1148
436
  msgid "(2122) Unable to backup your uploads. Please try again"
437
+ msgstr "(2122) আপনার আপলোড ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
438
 
439
+ #: lib/includes/job_backup.php:1149
440
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
441
+ msgstr "(2123) আপনার বিবিধ ফাইল ব্যাকআপ করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
442
 
443
+ #: lib/includes/job_backup.php:1150
444
  msgid ""
445
  "(2125) Unable to compress your backup because there is no zip utility available. "
446
  "Please contact support"
447
  msgstr ""
448
+ "(2125) আপনার ব্যাকআপ সঙ্কুচিত করা যাচ্ছেনা কারন কোন zip utility খুজে পাওয়া যায়নি । দয়াকরে "
449
+ "support এ যোগাযোগ করুন ।"
450
 
451
+ #: lib/includes/job_backup.php:1151
452
  msgid "(2126) Unable to validate your backup. Please try again"
453
+ msgstr "(2126) আপনার ব্যাকআপ যাচাই করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
454
 
455
+ #: lib/includes/job_backup.php:1152
456
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
457
+ msgstr "(2127) ব্যাকআপের জন্য ফাইলের তালিকা তৈরি করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
458
 
459
+ #: lib/includes/job_backup.php:1153
460
  msgid "(2128) Unable to create job control record. Please try again"
461
+ msgstr "(2128) কাজের নিয়ন্ত্রণ রেকর্ড তৈরি করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন । "
462
 
463
+ #: lib/includes/job_backup.php:1156
464
  msgid "(999) Unexpected error"
465
+ msgstr "(999) অপ্রত্যাশিত ত্রুটি"
466
 
467
  #. TRANSLATORS: %s = plugin name.
468
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
469
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
470
+ #: views/backup.php:17
471
  #, php-format
472
  msgid "%s Dashboard"
473
+ msgstr "%s ড্যাশবোর্ড"
474
 
475
+ #: views/backup.php:83
476
+ msgid "Dismiss"
477
+ msgstr "ভন্ডুল"
478
+
479
+ #: views/backup.php:95
480
  #, php-format
481
  msgid "Backup folder does not exist. Please contact %s for assistance."
482
+ msgstr "ব্যাকআপ ফোল্ডার পাওয়া যাচ্ছেনা । দয়াকরে সহায়তার জন্য %s এর সাথে যোগাযোগ করুন."
483
 
484
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
485
  msgid "support"
486
+ msgstr "সাহায্য"
487
 
488
+ #: views/backup.php:98 views/backup.php:104
489
  msgid "Close"
490
+ msgstr "বন্ধ"
491
 
492
+ #: views/backup.php:119
493
  msgid ""
494
  "Click the backup button to create a zipped backup file of this site's database, "
495
  "plugins, themes and settings."
496
  msgstr ""
497
+ "এই সাইট এর ডাটাবেস, প্লাগিন, থিম এবং সেটিংস এর একটি জিপ করা ব্যাকআপ ফাইল তৈরি করার জন্য "
498
+ "ব্যাকআপ বাটনে ক্লিক করুন."
499
 
500
+ #: views/backup.php:120
501
  msgid ""
502
+ "Once your backup file has been created it will appear in the available backups section "
503
+ "below. This file may remain on your hosting providers server but we recommend that you "
504
+ "download and save it somewhere safe."
505
  msgstr ""
506
+ "যখনি আপনার ব্যাকআপ ফাইল তৈরি হবে এটা নীচে পাওয়া ব্যাকআপ বিভাগে প্রদর্শিত হবে । এই ফাইলটি "
507
+ "আপনার হোস্টিং প্রদানকারী সার্ভারে থেকে যেতে পারে কিন্তু আমরা আপনাকে প্রস্তাব দিই এটি ডাউনলোড "
508
+ "করুন এবং কোথাও নিরাপদে সংরক্ষণ করুন । "
509
 
510
+ #: views/backup.php:121
511
  msgid ""
512
  "WP BackItUp premium customers can use these backup files to perform an automated "
513
  "restore of their site."
514
  msgstr ""
515
+ "WP BackItUp প্রিমিয়াম গ্রাহকেরা এই ব্যাকআপ ফাইল ব্যবহার করে তাদের সাইটের স্বয়ংক্রিয় "
516
+ "পুনঃস্থাপন সঞ্চালন করতে পারেন । "
517
 
518
+ #: views/backup.php:125
519
  msgid "Cancel"
520
+ msgstr "বাতিল"
521
 
522
+ #: views/backup.php:132
523
  #, php-format
524
  msgid ""
525
+ "WP BackItUp lite customers may use these backup files to manually restore their site. "
526
+ "Please visit %s for manual restore instructions."
527
  msgstr ""
528
+ "WP BackItUp সাধারণ গ্রাহকেরা এই ব্যাকআপ ফাইল ব্যবহার করে তাদের সাইটের ম্যানুয়ালি পুনঃস্থাপন "
529
+ "সঞ্চালন করতে পারেন । দয়াকরে ম্যানুয়াল পুনঃস্থাপন নির্দেশিকার জন্য %s দেখুন । "
530
 
531
+ #: views/backup.php:139
532
  msgid "Backup Schedule"
533
+ msgstr "ব্যাকআপ সূচী"
534
 
535
+ #: views/backup.php:141
536
  msgid "Select the days of the week you would like your backup to run."
537
+ msgstr "সপ্তাহের কোন দিনগুলোতে আপনি ব্যাকআপ চালাতে চান তা নির্বাচন করুন । "
538
 
539
+ #: views/backup.php:143
540
  msgid ""
541
  "Backup your site once per week or every day, it's up to you. If you have email "
542
+ "notifications turned on we'll even send you an email when it's done. Once your backup "
543
+ "file has been created it will appear in the available backups section below. This file "
544
+ "may remain on your hosting providers server but we recommend that you download and save "
545
+ "it somewhere safe."
546
+ msgstr ""
547
+ "আপনার সাইটের ব্যাকআপ সপ্তাহে বা প্রতি দিনে একবার নেবেন কিনা, এটা আপনার উপর নির্ভর করে । "
548
+ "আপনি যদি ইমেল বিজ্ঞপ্তি চালু থাকে আমরা আপনাকে একটি ইমেল পাঠিয়ে জানিয়ে দেব যখন এটা শেষ হবে। "
549
+ "যখনি আপনার ব্যাকআপ ফাইল তৈরি হবে এটা নীচে পাওয়া ব্যাকআপ বিভাগে প্রদর্শিত হবে । এই ফাইলটি "
550
+ "আপনার হোস্টিং প্রদানকারী সার্ভারে থেকে যেতে পারে কিন্তু আমরা আপনাকে প্রস্তাব দিই এটি ডাউনলোড "
551
+ "করুন এবং কোথাও নিরাপদে সংরক্ষণ করুন । "
552
+
553
+ #: views/backup.php:145
554
  msgid "Please make sure to schedule your backup for at least once per week."
555
+ msgstr "দয়াকরে প্রতি সপ্তাহে অন্তত একবার আপনার ব্যাকআপ করার সময় নির্ধারণ করতে নিশ্চিত করুন."
556
 
557
+ #: views/backup.php:149
558
  msgid "Monday"
559
+ msgstr "সোমবার"
560
 
561
+ #: views/backup.php:150
562
  msgid "Tuesday"
563
+ msgstr "মঙ্গলবার"
564
 
565
+ #: views/backup.php:151
566
  msgid "Wednesday"
567
+ msgstr "বুধবার"
568
 
569
+ #: views/backup.php:152
570
  msgid "Thursday"
571
+ msgstr "বৃহস্পতিবার"
572
 
573
+ #: views/backup.php:153
574
  msgid "Friday"
575
+ msgstr "শুক্রবার"
576
 
577
+ #: views/backup.php:154
578
  msgid "Saturday"
579
+ msgstr "শনিবার"
580
 
581
+ #: views/backup.php:155
582
  msgid "Sunday"
583
+ msgstr "রবিবার"
584
 
585
+ #: views/backup.php:158
586
  msgid "Save Schedule"
587
+ msgstr "সূচী সংরক্ষন করুন"
588
 
589
+ #: views/backup.php:163
590
  #, php-format
591
  msgid ""
592
+ "Scheduled backups are only available to WP BackItUp premium customers. Please visit %s "
593
+ "to get WP BackItUp risk free for 30 days."
594
  msgstr ""
595
+ "নির্ধারিত ব্যাকআপ শুধুমাত্র WP BackItUp প্রিমিয়াম গ্রাহকদের জন্য । 30 দিনের জন্য ঝুঁকিহীন ফ্রি WP "
596
+ "BackItUp পেতে %s এর ভিজিট করুন । "
597
 
598
+ #: views/backup.php:170 views/restore.php:95
599
  msgid "Available Backups"
600
+ msgstr "যে যে ব্যাকঅাপ আছে"
601
+
602
+ #: views/backup.php:190 views/restore.php:100
603
+ msgid "Date"
604
+ msgstr "তারিখ"
605
+
606
+ #: views/backup.php:191
607
+ msgid "Duration"
608
+ msgstr "স্থিতিকাল"
609
+
610
+ #: views/backup.php:214
611
+ msgid "Success"
612
+ msgstr "সাফল্য"
613
 
614
+ #: views/backup.php:217
615
+ msgid "Active"
616
+ msgstr "সক্রিয়"
617
+
618
+ #: views/backup.php:257 views/restore.php:150
619
  msgid "No backup archives found."
620
+ msgstr "কোন ব্যাকআপ আর্কাইভ পাওয়া যায়নি । "
621
 
622
+ #: views/backup.php:266
623
  #, php-format
624
  msgid ""
625
  "The automated restore feature is only available to WP BackItUp premium customers. "
626
  "Please visit %s to get WP BackItUp risk free for 30 days."
627
  msgstr ""
628
+ "স্বয়ংক্রিয় ব্যাকআপ শুধুমাত্র WP BackItUp প্রিমিয়াম গ্রাহকদের জন্য । 30 দিনের জন্য ঝুঁকিহীন ফ্রি WP "
629
+ "BackItUp পেতে %s এর ভিজিট করুন । "
630
 
631
+ #: views/backup.php:275 views/restore.php:234
632
  msgid "Nothing to report"
633
+ msgstr "কোনও প্রতিবেদন নেই । "
634
 
635
+ #: views/backup.php:280
636
  msgid "Preparing for backup"
637
+ msgstr "ব্যাকঅাপের জন্যে তৈরি হচ্ছে"
638
 
639
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282 views/backup.php:283
640
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286 views/backup.php:287
641
+ #: views/backup.php:288 views/backup.php:289 views/restore.php:244 views/restore.php:245
642
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248 views/restore.php:249
643
+ #: views/restore.php:250 views/restore.php:251 views/restore.php:252 views/restore.php:253
644
+ #: views/restore.php:255
 
645
  msgid "Done"
646
+ msgstr "সম্পন্ন"
647
 
648
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282 views/backup.php:283
649
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286 views/backup.php:287
650
+ #: views/backup.php:288 views/backup.php:289 views/restore.php:244 views/restore.php:245
651
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248 views/restore.php:249
652
+ #: views/restore.php:250 views/restore.php:251 views/restore.php:252 views/restore.php:253
653
+ #: views/restore.php:255
 
654
  msgid "Failed"
655
+ msgstr "ব্যর্থ "
656
+
657
+ #: views/backup.php:281
658
+ msgid "Creating inventory of files to backup"
659
+ msgstr "ব্যাকআপ ফাইলের তালিকা তৈরি হচ্ছে "
660
 
661
+ #: views/backup.php:282
662
  msgid "Backing up database"
663
+ msgstr "ডাটাবেজ ব্যাকঅাপ হচ্ছে"
664
 
665
+ #: views/backup.php:283
666
  msgid "Creating backup information file"
667
+ msgstr "ব্যাকঅাপের তথ্য তৈরি হচ্ছে"
668
 
669
+ #: views/backup.php:284
670
  msgid "Backing up themes"
671
+ msgstr "থিম ব্যাকঅাপ হচ্ছে"
672
 
673
+ #: views/backup.php:285
674
  msgid "Backing up plugins"
675
+ msgstr "প্লাগিন ব্যাকঅাপ হচ্ছে"
676
 
677
+ #: views/backup.php:286
678
  msgid "Backing up uploads"
679
+ msgstr "অাপলোড ব্যাকঅাপ হচ্ছে"
680
 
681
+ #: views/backup.php:287
682
  msgid "Backing up everything else"
683
+ msgstr "বাকিসব ব্যাকঅাপ হচ্ছে"
684
 
685
+ #: views/backup.php:288
686
  msgid "Validating backup"
687
+ msgstr "ব্যাকঅাপ যাচাই করা হচ্ছে"
688
 
689
+ #: views/backup.php:289
690
  msgid "Finalizing backup"
691
+ msgstr "ব্যাকঅাপ নেয়া শেষ হচ্ছে"
692
 
693
+ #: views/backup.php:299
694
  msgid "Backup completed successfully"
695
+ msgstr "সফলভাবে ব্যাকআপ সম্পন্ন হয়েছে"
696
 
697
+ #: views/backup.php:320
698
  msgid "Backups"
699
+ msgstr "ব্যাকআপসমুহ"
700
 
701
+ #: views/backup.php:320
702
  msgid "Version "
703
+ msgstr "ভার্সন"
704
 
705
+ #: views/backup.php:322
706
  msgid "Welcome to WP BackItUp!"
707
+ msgstr "WP BackItUp! এ স্বাগতম!"
708
 
709
+ #: views/backup.php:322
710
  msgid "The simplest way to backup your WordPress site."
711
+ msgstr "আপনার WordPress সাইটের ব্যাকআপের সবচেয়ে সহজ উপায় । "
712
 
713
+ #: views/backup.php:323
714
  msgid ""
715
+ "Getting started is easy, just click the backup button on the left side of this page."
716
+ msgstr "শুরু করা খুব সহজ , শুধু এই পৃষ্ঠার বামদিকে ব্যাকআপ বাটনে ক্লিক করুন."
 
717
 
718
+ #: views/backup.php:327
719
  #, php-format
720
  msgid ""
721
+ "Congratulations! You have performed <span style=\"font-weight:bold;font-size:medium;"
722
+ "color: green\">%s</span> successful backups."
723
  msgstr ""
724
+ "অভিনন্দন ! আপনি <span style=\"font-weight:bold;font-size:medium;color: green\">%s</span> "
725
+ "ব্যাকআপ সফলভাবে সম্পন্ন করেছেন । "
726
 
727
+ #: views/backup.php:328
728
  msgid "Tips"
729
+ msgstr "পরামর্শ"
730
 
731
+ #: views/backup.php:329
732
  msgid "Backup your site at least once per week"
733
+ msgstr "সপ্তাহে অন্তত একবার আপনার সাইেটর ব্যাকআপ নিন "
734
 
735
+ #: views/backup.php:330
736
  msgid "Download all your backups and store them somewhere safe"
737
+ msgstr "আপনার সব ব্যাকআপ ডাউনলোড করুন এবং তাদের কোথাও নিরাপদে সংরক্ষণ করুন "
738
 
739
+ #: views/backup.php:331
740
  msgid "Verify your backup files are good by taking a look at what's inside"
741
+ msgstr "ফাইেলর ভিতরে দেখে আপনার ব্যাকআপ যাচাই করুন "
742
 
743
+ #: views/backup.php:336
744
  #, php-format
745
  msgid "Why not %s and schedule your backups!"
746
+ msgstr "কেন নয় %s এবং আপনার ব্যাকআপের সময় নির্ধারণ ! "
747
 
748
+ #: views/backup.php:336
749
  msgid "upgrade"
750
+ msgstr "আপগ্রেড "
751
 
752
+ #: views/backup.php:345
753
  msgid "Register WP BackItUp"
754
+ msgstr " WP BackItUp নিবন্ধন করুন "
755
 
756
+ #: views/backup.php:348
757
  msgid ""
758
+ "Enter your name and email address below to receive <b>special offers</b> and access to "
759
+ "our world class <b>support</b> team. <br />\n"
760
  " <br />Enter your license key below to activate it on this site."
761
  msgstr ""
762
+ "আমাদের বিশ্বমানের <b>সহায়তা</b> দলের সহায়তা এবং <b>বিশেষ সুবিধা</b> পেতে নিচে আপনার নাম "
763
+ "এবং ইমেইল দিন ।<br />\n"
764
+ "<br />এই সাইটে এটি সক্রিয় করার জন্য নিচের আপনার লাইসেন্স কী লিখুন । "
765
 
766
+ #: views/backup.php:350
767
  msgid "name"
768
+ msgstr "নাম"
769
 
770
+ #: views/backup.php:351
771
  msgid "email address"
772
+ msgstr "ইমেইল ঠিকানা"
773
 
774
+ #: views/backup.php:352
775
  msgid "license key"
776
+ msgstr "লাইসেন্স কী"
777
 
778
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
779
  #, php-format
780
  msgid "%s"
781
+ msgstr "%s"
782
 
783
+ #: views/backup.php:353
784
  msgid "Free plugin customers do not need to enter license key."
785
+ msgstr "ফ্রি প্লাগইন গ্রাহকদের লাইসেন্স কী প্রবেশ করতে হবে না."
786
 
787
+ #: views/backup.php:354
788
  msgid "Register"
789
+ msgstr "নিবন্ধন করুন"
790
 
791
+ #: views/backup.php:363
792
  msgid "License Info"
793
+ msgstr "লাইসেন্সের তথ্য"
794
 
795
+ #: views/backup.php:385
796
  msgid "Name"
797
+ msgstr "নাম"
798
 
799
+ #: views/backup.php:386
800
  msgid "Email"
801
+ msgstr "ইমেইল"
802
 
803
+ #: views/backup.php:387
804
  msgid "License Type"
805
+ msgstr "লাইসেন্সের তথ্য"
806
 
807
+ #: views/backup.php:388
808
  msgid "Expires"
809
+ msgstr "মেয়াদ শেষ হয়"
810
 
811
+ #: views/backup.php:391
812
  msgid "Enter license key to activate on this site."
813
+ msgstr "এই সাইটে সক্রিয় করতে লাইসেন্স কী দিন । "
814
 
815
+ #: views/backup.php:398
816
  msgid "License Active"
817
+ msgstr "লাইসেন্স সক্রিয় "
818
 
819
+ #: views/backup.php:406
820
  msgid "License expired"
821
+ msgstr "লাইসেন্স এর মেয়াদ শেষ "
822
 
823
+ #: views/backup.php:410
824
  msgid "Update"
825
+ msgstr "হালনাগাদ"
826
 
827
+ #: views/backup.php:414
828
  msgid "Activate"
829
+ msgstr "সক্রিয় করুন"
830
 
831
+ #: views/backup.php:418
832
  #, php-format
833
  msgid "Purchase a %s license using the purchase link above."
834
+ msgstr "উপরের লিঙ্ক ব্যবহার করে একটি %s লাইসেন্স কিনুন । "
835
 
836
+ #: views/backup.php:418
837
  msgid "no-risk"
838
+ msgstr "ঝুঁকিহীন"
839
 
840
+ #: views/backup.php:424
841
  #, php-format
842
  msgid ""
843
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
844
+ "<strong>product updates</strong> and access to our <strong>world class support</strong> "
845
+ "team."
846
  msgstr ""
847
+ "দয়াকরে আরও এক বছরের জন্য<strong> পণ্য আপডেট </strong> <a href=\"%s\" target=\"blank\"> "
848
+ "নতুন </a> করুন এবং আমাদের বিশ্বমানের সহায়তা দলের সহায়তা নিন । "
849
 
850
+ #: views/backup.php:435
851
  msgid "Useful Links"
852
+ msgstr "প্রয়োজনীয় লিঙ্কগুলো "
853
 
854
+ #: views/backup.php:438 views/backup.php:442
855
  msgid "Your account"
856
+ msgstr "অাপনার একাউন্ট"
857
 
858
+ #: views/backup.php:445
859
  msgid "Documentation"
860
+ msgstr "ডকুমেন্টেশন"
861
 
862
+ #: views/backup.php:448
863
  msgid "Get support"
864
+ msgstr "সাহায্য নিন"
865
 
866
+ #: views/backup.php:451
867
  msgid "Feature request"
868
+ msgstr "বৈশিষ্ট্য অনুরোধ"
869
+
870
+ #: views/backup.php:453
871
+ msgid "Language Translations"
872
+ msgstr "ভাষা অনুবাদ"
873
 
874
+ #: views/backup.php:455
875
  msgid "Contact"
876
+ msgstr "যোগাযোগ"
877
 
878
+ #: views/backup.php:478 views/backup.php:502
879
  msgid "WP BackItUp Backup Set"
880
+ msgstr "WP BackItUp ব্যাকআপ সেট"
881
 
882
+ #: views/backup.php:480
883
  msgid ""
884
+ "Below are the archive files included in this backup set. Click the link to download."
885
+ msgstr "নীচে এই ব্যাকআপ সেট এর অন্তর্ভুক্ত আর্কাইভ ফাইলসমূহ । ডাউনলোড করতে লিংকে ক্লিক করুন."
 
886
 
887
+ #: views/backup.php:503
888
  msgid "Please refresh this page to download your new backup files."
889
+ msgstr "আপনার নতুন ব্যাকআপ ফাইল ডাউনলোড করতে এই পৃষ্ঠাটি রিফ্রেশ করুন । "
890
 
891
+ #: views/restore.php:13
892
  #, php-format
893
  msgid "%s Restore"
894
+ msgstr "%s পুনরুদ্ধার"
895
 
896
+ #: views/restore.php:60
897
  msgid "Zip Files"
898
+ msgstr "জিপ ফাইল"
899
 
900
+ #: views/restore.php:75
901
  #, php-format
902
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
903
+ msgstr "ত্রুটিঃ ব্যাকআপ ফোল্ডার পাওয়া যায়নি । দয়াকরে সহায়তার জন্য %s এর সাথে যোগাযোগ করুন । "
904
 
905
+ #: views/restore.php:82
906
  #, php-format
907
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
908
+ msgstr "ত্রুটিঃ পুনরুদ্ধার ফোল্ডার পাওয়া যায়নি । দয়াকরে সহায়তার জন্য %s এর সাথে যোগাযোগ করুন । "
909
 
910
+ #: views/restore.php:166
911
  #, php-format
912
  msgid ""
913
+ "<p>* The automated restore feature is only available to licensed customers. Please "
914
+ "visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP BackItUp risk free for "
915
+ "30 days.</p>"
916
  msgstr ""
917
+ "<p>* স্বয়ংক্রিয় ব্যাকআপ শুধুমাত্র WP BackItUp প্রিমিয়াম গ্রাহকদের জন্য । 30 দিনের জন্য ঝুঁকিহীন ফ্রি "
918
+ "WP BackItUp পেতে <a href=\"%s\" target=\"_blank\">%s</a> ভিজিট করুন । </p>"
919
 
920
+ #: views/restore.php:178
921
  msgid "Upload"
922
+ msgstr "আপলোড"
923
 
924
+ #: views/restore.php:181
925
+ msgid "Upload WP BackItUp archive(zip) files to add to your list of available backups."
 
926
  msgstr ""
927
+ "আপনার বিদ্যমান ব্যাকআপ তালিকায় WP BackItUp সংরক্ষাণাগার (ZIP) ফাইলগুলো যোগ করতে আপলোড করুন."
928
 
929
+ #: views/restore.php:198
930
  msgid "WP BackItUp - Upload backup files"
931
+ msgstr "WP BackItUp - ব্যাকআপ ফাইলসমূহ আপলোড করুন "
932
 
933
+ #: views/restore.php:199
934
  msgid "Backup files may be uploaded into WP BackItUp with this form."
935
+ msgstr "ব্যাকআপ ফাইলসমূহ WP BackItUp এর মধ্যে এই ফর্ম দিয়ে আপলোড করা যেতে পারে । "
936
 
937
+ #: views/restore.php:199
938
  msgid ""
939
  "They may also be uploaded manually into the WP BackItUp directory (wp-content/"
940
+ "wpbackitup_backups) using FTP. When done uploading all backup files refresh this page."
 
941
  msgstr ""
942
+ "FTP ব্যবহার করে তাদের WP BackItUp ডিরেক্টরির (Wp-content / wpbackitup_backups) মধ্যে "
943
+ "ম্যানুয়ালি আপলোড করা যেতে পারে । সব ব্যাকআপ ফাইল আপলোড সম্পন্ন হলে এই পৃষ্ঠাটি রিফ্রেশ করুন । "
944
 
945
+ #: views/restore.php:203
946
  #, php-format
947
  msgid "This feature requires %s version %s or later"
948
+ msgstr "এই বৈশিষ্ট্যটির জন্য প্রয়োজন %s এর সংস্করণ %s বা পরবর্তী "
949
 
950
+ #: views/restore.php:209
951
  msgid "Drop backup files here"
952
+ msgstr "এখানে ব্যাকআপ ফাইল ছাড়ুন"
953
 
954
+ #: views/restore.php:215
955
  msgid ""
956
  "* Reload this page when done uploading to see new backups appear in the Available "
957
  "Backups section above. "
958
  msgstr ""
959
+ "* নতুন ব্যাকআপ উপরে উপলব্ধ ব্যাকআপ বিভাগে প্রদর্শিত দেখতে আপলোড সম্পন্ন হলে এই পৃষ্ঠাটি পুনঃ লোড "
960
+ "করুন । "
961
 
962
+ #: views/restore.php:244
963
  msgid "Preparing for restore"
964
+ msgstr "পুনরুদ্ধারের জন্যে তৈরি হচ্ছে"
965
 
966
+ #: views/restore.php:245
967
  msgid "Unzipping backup set"
968
+ msgstr "Unzipping ব্যাকআপ সেট"
969
 
970
+ #: views/restore.php:246
971
  msgid "Validating backup file"
972
+ msgstr "ব্যাকঅাপ যাচাই করা হচ্ছে"
973
 
974
+ #: views/restore.php:247
975
  msgid "Deactivating plugins"
976
+ msgstr "প্লাগিনসমূহ নিষ্ক্রিয় করা হচ্ছে "
977
 
978
+ #: views/restore.php:248
979
  msgid "Creating database restore point"
980
+ msgstr "ডাটাবেস পুনঃস্থাপন পয়েন্ট তৈরি করা হচ্ছে "
981
 
982
+ #: views/restore.php:249
983
  msgid "Staging content files"
984
+ msgstr "কন্টেন্ট ফাইলসমূহ উপস্থাপন করা হচ্ছে "
985
 
986
+ #: views/restore.php:250
987
  msgid "Restoring content files"
988
+ msgstr "কন্টেন্ট ফাইলসমূহ পুনরুদ্ধার করা হচ্ছে"
989
 
990
+ #: views/restore.php:251
991
  msgid "Restoring database"
992
+ msgstr "ডাটাবেস পুনরদ্ধার করা হচ্ছে "
993
 
994
+ #: views/restore.php:252
995
  msgid "Updating current user info"
996
+ msgstr "বর্তমান ব্যবহারকারীর তথ্য হালনাগাদ করা হচ্ছে "
997
 
998
+ #: views/restore.php:253
999
  msgid "Updating site URL"
1000
+ msgstr "সাইট URL হালনাগাদ হচ্ছে "
1001
 
1002
+ #: views/restore.php:255
1003
  msgid "Updating permalinks"
1004
+ msgstr "permalinks হালনাগাদ হচ্ছে "
1005
 
1006
+ #: views/restore.php:261
1007
  msgid "Error 201: No file selected"
1008
+ msgstr "ত্রুটি 201: কোন ফাইল নির্বাচন করা হয়নি "
1009
 
1010
+ #: views/restore.php:262
1011
  msgid "Error 202: Your file could not be uploaded"
1012
+ msgstr "ত্রুটি 202: আপনার ফাইলটি আপলোড করা যায়নি "
1013
 
1014
+ #: views/restore.php:263
1015
  msgid "Error 203: Your backup could not be unzipped"
1016
+ msgstr "ত্রুটি 203: আপনার ব্যাকআপ unzip করা যায়নি "
1017
 
1018
+ #: views/restore.php:264
1019
  msgid ""
1020
+ "Error 204: Your backup appears to be invalid. Please ensure you selected a valid backup"
 
1021
  msgstr ""
1022
+ "ত্রুটি 204: আপনার ব্যাকআপ অবৈধ বলে মনে হচ্ছে । দয়াকরে একটি বৈধ ব্যাকআপ নির্বাচন নিশ্চিত করুন "
1023
 
1024
+ #: views/restore.php:265
1025
  msgid "Error 205: Cannot create restore point"
1026
+ msgstr "থ্রুটি 205: পুনরদ্ধার পয়েন্ট তৈরি করা যাচ্ছেনা "
1027
 
1028
+ #: views/restore.php:266
1029
  msgid "Error 206: Unable to connect to your database"
1030
+ msgstr "ত্রুটি 206: আপনার ডাটাবেসের সঙ্গে সংযোগ দেয়া যাচ্ছেনা "
1031
 
1032
+ #: views/restore.php:267
1033
  msgid "Error 207: Unable to get current site URL from database. Please try again"
1034
  msgstr ""
1035
+ "ত্রুটি 207: ডাটাবেস থেকে এই সাইটের বর্তমান URL পাওয়া যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন "
1036
 
1037
+ #: views/restore.php:268
1038
  msgid "Error 208: Unable to get current home URL from database. Please try again"
1039
+ msgstr "ত্রুটি 208: ডাটাবেস থেকে বর্তমান হোম URL পাওয়া যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন "
1040
 
1041
+ #: views/restore.php:269
1042
  msgid "Error 209: Unable to get current user ID from database. Please try again"
1043
  msgstr ""
1044
+ "ত্রুটি 209: ডাটাবেস থেকে বর্তমান ব্যবহারকারীর ID পাওয়া যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন "
1045
 
1046
+ #: views/restore.php:270
1047
+ msgid "Error 210: Unable to get current user password from database. Please try again"
 
1048
  msgstr ""
1049
+ "ত্রুটি 210: ডাটাবেস থেকে বর্তমান ব্যবহারকারীর password পাওয়া যাচ্ছেনা । দয়াকরে আবার চেষ্টা "
1050
+ "করুন "
1051
 
1052
+ #: views/restore.php:271
1053
  msgid "Error 211: Unable to get current user email from database. Please try again"
1054
  msgstr ""
1055
+ "ত্রুটি 211: ডাটাবেস থেকে বর্তমান ব্যবহারকারীর email পাওয়া যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন "
1056
 
1057
+ #: views/restore.php:272
1058
  msgid ""
1059
+ "Error 212: Unable to import your database. This may require importing the file manually"
 
1060
  msgstr ""
1061
+ "ত্রুটি 212: আপনার ডাটাবেস ইম্পোর্ট করা যাচ্ছেনা । এই ফাইল ম্যানুয়ালি ইম্পোর্ট করার প্রয়োজন হতে "
1062
+ "পারে "
1063
 
1064
+ #: views/restore.php:273
1065
  msgid ""
1066
+ "Warning 213: Unable to update your site URL value. Please check your WordPress general "
1067
+ "settings to make sure your Site and WordPress URLs are correct"
1068
  msgstr ""
1069
+ "বিপদসংকেত 213: আপনার সাইট URL এর ভ্যালু হালনাগাদ করা যাচ্ছেনা । দয়াকরে WordPress সাধারণ "
1070
+ "সেটিংস পরীক্ষা করে নিশ্চিত হউন যে আপনার সাইট এবং WordPress URLs সঠিক "
1071
 
1072
+ #: views/restore.php:274
1073
  msgid ""
1074
+ "Warning 214: Unable to update your home URL value. Please check your WordPress general "
1075
+ "settings to make sure your Site and WordPress URLs are correct"
1076
  msgstr ""
1077
+ "বিপদসংকেত 214: আপনার হোম URL ভ্যালু হালনাগাদ করা যাচ্ছেনা। দয়াকরে WordPress সাধারণ "
1078
+ "সেটিংস পরীক্ষা করে নিশ্চিত হউন যে আপনার সাইট এবং WordPress URLs সঠিক "
1079
 
1080
+ #: views/restore.php:275
1081
  msgid ""
1082
+ "Warning 215: Unable to update your user information. This may require you to login with "
1083
+ "the admin username and password that was used when the backup was created"
1084
  msgstr ""
1085
+ "বিপদসঙ্কেত 215: আপনার ব্যবহারকারী তথ্য হালনাগাদ করা যাচ্ছেনা । এই ব্যাকআপ তৈরি করার সময় "
1086
+ "ব্যবহৃত অ্যাডমিন ব্যবহারকারীর নাম ও পাসওয়ার্ড দিয়ে লগইন করার প্রয়োজন হতে পারে । "
1087
 
1088
+ #: views/restore.php:276
1089
  msgid "Error 216: Database not found in backup"
1090
+ msgstr "ত্রুটি 216: ব্যাকআপে ডাটাবেস পাওয়া যায়নি "
1091
 
1092
+ #: views/restore.php:277
1093
  msgid "Warning 217: Unable to remove existing wp-content directory"
1094
+ msgstr "বিপদসংকেত 217: বিদ্যমান wp-content ডিরেক্টরি অপসারণ করা যাচ্ছেনা "
1095
 
1096
+ #: views/restore.php:278
1097
  msgid ""
1098
+ "Error 218: Unable to create new wp-content directory. Please check your CHMOD settings "
1099
+ "in /wp-content/"
1100
  msgstr ""
1101
+ "ত্রুটি 218: নতুন wp-content ডিরেক্টরি তৈরি করা যাচ্ছেনা। দয়াকরে অাপনার /wp-content/ "
1102
+ "ডিরেক্টরির CHMOD সেটিংস যাচাই করুন"
1103
 
1104
+ #: views/restore.php:279
1105
  msgid "Error 219: Unable to import wp-content. Please try again"
1106
+ msgstr "ত্রুটি 219: wp-content ইম্পোরট করা যাচ্ছেনা । দয়াকরে আবার চেষ্টা করুন "
1107
 
1108
+ #: views/restore.php:280
1109
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1110
+ msgstr "বিপদসঙ্কেত 220: ইম্পোর্ট ডিরেক্টরি পরিষ্করণ করা যাচ্ছেনা । কোন প্রক্রিয়ার প্রয়োজন নেই "
1111
 
1112
+ #: views/restore.php:281
1113
  #, php-format
1114
  msgid ""
1115
+ "Error 221: Table prefix value in wp-config.php is different from backup. This MUST be "
1116
+ "changed in your wp-config.php file before you will be able to restore your site. See "
1117
+ "www.wpbackitup.com <a href =\"%s\" target=\"_blank\" > FAQs</a> for more info."
 
1118
  msgstr ""
1119
+ "ত্রুটি 221: wp-config.php এর মধ্যে টেবিল prefix মান ব্যাকআপ থেকে ভিন্ন । আপনি আপনার সাইট "
1120
+ "পুনরুদ্ধার করতে সক্ষম হওয়ার পূর্বে এই wp-config.php ফাইলের মধ্যে অবশ্যই পরিবর্তন করতে হবে । আরও "
1121
+ "তথ্যের জন্য www.wpbackitup.com <a href =\"%s\" target=\"_blank\" > FAQs</a> দেখুন । "
1122
 
1123
+ #: views/restore.php:282
1124
  msgid "Error 222: Unable to create restore folder"
1125
+ msgstr "ত্রুটি 222: পুনরুদ্ধার ফোল্ডার তৈরি করা যাচ্ছেনা "
1126
 
1127
+ #: views/restore.php:283
1128
  msgid ""
1129
+ "Error 223: An error occurred during the restore. WP BackItUp attempted to restore the "
1130
+ "database to its previous state but were unsuccessful. Please contact WP BackItUp "
1131
+ "customer support and do not attempt to perform any further restores"
1132
  msgstr ""
1133
+ "ত্রুটি 223: পুনস্থাপন করার সময় একটি ত্রুটি ঘটেছে । WP BackItUp ডাটাবেসের পূর্ববর্তী অবস্থানে "
1134
+ "পুনস্থাপন করতে চেষ্টা করে সফল হয়নি । দয়াকরে WP BackItUp গ্রাহক সহায়তায় যোগাযোগ করুন এবং আর "
1135
+ "কোন পুনস্থাপনের চেষ্টা থেকে বিরত থাকুন । "
1136
 
1137
+ #: views/restore.php:284
1138
  msgid ""
1139
+ "Error 224: An error occurred during the restore, however, we have successfully restored "
1140
+ "your database to the previous state"
1141
  msgstr ""
1142
+ "ত্রুটি 224: পুনস্থাপনের সময় একটি ত্রুটি ঘটেছে, তবুও , আপনার ডাটাবেস পূর্ববর্তী অবস্থানে সফলভাবে "
1143
+ "পুনস্থাপিত হয়েছে । "
1144
 
1145
+ #: views/restore.php:285
1146
  msgid "Error 225: Restore option is only available to licensed WP BackItUp users"
1147
+ msgstr "ত্রুটি 225: পুনরুদ্ধার অপশন শুধুমাত্র লাইসেন্সড WP BackItUp ব্যবহারকারীদের জন্য "
1148
 
1149
+ #: views/restore.php:286
1150
  msgid ""
1151
+ "Error 226: Restore cannot proceed because your backup was created using a different "
1152
+ "version of WordPress"
1153
  msgstr ""
1154
+ "ত্রুটি 226: পুনরুদ্ধার পুনরারম্ভ করা যাচ্ছেনা কারন আপনার ব্যাকআপ আলাদা সংস্করণের WordPress "
1155
+ "ব্যবহার করে করা হয়েছে "
1156
 
1157
+ #: views/restore.php:287
1158
  msgid ""
1159
+ "Error 227: Restore cannot proceed because your backup was created using a different "
1160
+ "version of WP BackItUp. Please contact WP BackItUp support to help convert this backup "
1161
+ "to the current version"
1162
  msgstr ""
1163
+ "ত্রুটি 227: পুনস্থাপন আর চালিয়ে নেয়া সম্ভব হচ্ছেনা কারন আপনার ব্যাকআপ অন্য সংস্করণের WP BackItUp "
1164
+ "দিয়ে করা হয়েছে । দয়াকরে এই ব্যাকআপকে বর্তমান সংস্করণে পরিবর্তিত করতে WP BackItUp সহায়তায় "
1165
+ "যোগাযোগ করুন । "
1166
 
1167
+ #: views/restore.php:288
1168
  msgid ""
1169
  "Error 230: WP BackItUp ran into unexpected errors during the database restore. "
1170
+ "However, we were able to successfully revert the database back to its original state . "
1171
+ "This error may require importing the database manually"
1172
  msgstr ""
1173
+ "ত্রুটি 230: ডাটাবেস পুনস্থাপনের সময় WP BackItUp অপ্রত্যাশিত ত্রুটির সম্মুখীন হয়েছে । তবুও ডাটাবেস "
1174
+ "প্রাথমিক অবস্থানে প্রত্যাবর্তন করা হয়েছে । এই ত্রুটির জন্য ডাটাবেস ম্যানুয়ালি ইম্পোর্ট করার প্রয়োজন "
1175
+ "হতে পারে । "
1176
 
1177
+ #: views/restore.php:289
1178
  msgid ""
1179
  "Error 235: WP BackItUp is not able to proceed because there is no zip utility "
1180
  "available. Please contact support"
1181
  msgstr ""
1182
+ "ত্রুটি 235: WP BackItUp পুনরারম্ভ করা যাচ্ছেনা কারন কোন zip utility পাওয়া যায়নি । দয়াকরে "
1183
+ "কন্টাক্ট এর সাথে যোগাযোগ করুন"
1184
 
1185
+ #: views/restore.php:290
1186
  msgid ""
1187
+ "Error 250: WP BackItUp is unable to begin the restore because a backup is running. "
1188
+ "Please wait for the backup to complete and then try again"
1189
  msgstr ""
1190
+ "ত্রুটি 250: একটি ব্যাকআপ চলার কারনে WP BackItUp পুনস্থাপন শুরু করতে পারছেনা । দয়াকরে ব্যাকআপ "
1191
+ "সম্পন্ন হওয়া পর্যন্ত অপেক্ষা করুন এবং তারপর আবারও চেষ্টা করুন । "
1192
 
1193
+ #: views/restore.php:292
1194
  msgid ""
1195
+ "Error 251: WP BackItUp is unable to begin the restore because the backup manifest is "
1196
+ "empty"
1197
+ msgstr "ত্রুটি 251: WP BackItUp পুনরুদ্ধার শুরু করা সম্ভব হচ্ছেনা কারন ব্যাকআপ ম্যানিফেসট খালি "
1198
 
1199
+ #: views/restore.php:293
1200
  msgid ""
1201
+ "Error 252: At least one zip file is missing from your backup set. Please make sure to "
1202
+ "upload all zip files that were part of this backup"
1203
  msgstr ""
1204
+ "ত্রুটি 252: কমপক্ষে একটি ZIP ফাইল আপনার ব্যাকআপ সেটে অনুপস্থিত । দয়াকরে এই ব্যাকআপের সমস্ত zip "
1205
+ "ফাইল আপলোড নিশ্চিত করুন । "
1206
 
1207
+ #: views/restore.php:294
1208
  msgid ""
1209
+ "Error 253: Backup set contains a zip file that is not in the manifest. Please make "
1210
+ "sure to upload only zip files that were part of this backup"
1211
  msgstr ""
1212
+ "ত্রুটি 253: ব্যাকআপ সেটের মধ্যে এমন একটি zip ফাইল রয়েছে যা তালিকাতে নেই । দয়াকরে শুধুমাত্র এই "
1213
+ "ব্যাকআপের অন্তর্ভুক্ত zip ফাইল আপলোড নিশ্চিত করুন । "
1214
 
1215
+ #: views/restore.php:296
1216
  msgid ""
1217
+ "Warning 300: Unable to restore all WordPress content. Please review your restore logs "
1218
+ "to see what WP BackItUp was unable to restore"
1219
  msgstr ""
1220
+ "বিপদসঙ্কেত 300: সমস্ত WordPress কন্টেন্ট পুনস্থাপন করা যাচ্ছেনা । দয়াকরে আপনার পুনস্থাপন logs "
1221
+ "দেখুন যে WP BackItUp কি পুনস্থাপন করতে পারছেনা । "
1222
 
1223
+ #: views/restore.php:297
1224
  msgid ""
1225
+ "Warning 305: Unable to restore all plugins. Please review your restore logs to see what "
1226
+ "WP BackItUp was unable to restore"
1227
  msgstr ""
1228
+ "বিপদসঙ্কেত 305: সমস্ত প্লাগিন পুনস্থাপন সম্ভব হচ্ছেনা । দয়াকরে আপনার পুনস্থাপন logs দেখুন যে WP "
1229
+ "BackItUp কি পুনস্থাপন করতে পারছেনা । "
1230
 
1231
+ #: views/restore.php:299
1232
  msgid "Error 2001: Unable to prepare site for restore"
1233
+ msgstr "ত্রুটি 2001: সাইট পুনরুদ্ধার এর জন্য প্রস্তুত করা যাচ্ছেনা "
1234
 
1235
+ #: views/restore.php:300
1236
  msgid "Error 2002: Unable to unzip backup"
1237
+ msgstr "ত্রুটি 2002: ব্যাকআপ unzip করা যাচ্ছেনা "
1238
 
1239
+ #: views/restore.php:301
1240
  msgid "Error 2003: Unable to validate backup"
1241
+ msgstr "ত্রুটি 2003: ব্যাকআপ যাচাই করা যাচ্ছেনা "
1242
 
1243
+ #: views/restore.php:302
1244
  msgid "Error 2004: Unable to create restore point"
1245
+ msgstr "ত্রুটি 2004: পুনরুদ্ধার পয়েন্ট তৈরি করা যাচ্ছেনা "
1246
 
1247
+ #: views/restore.php:303
1248
  msgid "Error 2005: Unable to stage wp-content"
1249
+ msgstr "ত্রুটি 2005: wp-content পর্যায় করা যাচ্ছেনা ।"
1250
 
1251
+ #: views/restore.php:304
1252
  msgid "Error 2006: Unable to restore content files"
1253
+ msgstr "ত্রুটি 2006: কন্টেন্ট ফাইলসমূহ পুনস্থাপন করা যাচ্ছেনা "
1254
 
1255
+ #: views/restore.php:305
1256
  msgid "Error 2007: Unable to restore database"
1257
+ msgstr "ত্রুটি 2007: ডাটাবেস পুনস্থাপন করা যাচ্ছেনা "
1258
 
1259
+ #: views/restore.php:306
1260
  msgid "Error 2999: Unexpected error encountered"
1261
+ msgstr "ত্রুটি 2999: অপ্রত্যাশিত ত্রুটি ঘটেছে "
1262
 
1263
+ #: views/restore.php:313
1264
  msgid ""
1265
+ "Restore completed successfully. If you are prompted to login please do so with your "
1266
+ "current username and password"
1267
  msgstr ""
1268
+ "পুনস্থাপন সফলভাবে সম্পন্ন হয়েছে । আপনাকে লগইন করার অনুরোধ জানানো হলে দয়া করে আপনার বর্তমান "
1269
+ "ব্যবহারকারীর নাম ও পাসওয়ার্ড দিয়ে এটি করুন । "
1270
 
1271
+ #: views/settings.php:13
1272
  #, php-format
1273
  msgid "%s Settings"
1274
+ msgstr "%s সেটিংস"
1275
 
1276
+ #: views/settings.php:40
1277
  msgid "Email Notifications"
1278
+ msgstr "ইমেইল বিজ্ঞপ্তি"
1279
 
1280
+ #: views/settings.php:41
1281
  msgid ""
1282
+ "Please enter your email address if you would like to receive backup email notifications."
1283
+ msgstr "আপনি যদি ইমেইলে ব্যাকআপ বিজ্ঞপ্তি পেতে চান তাহলে আপনার ইমেল ঠিকানা লিখুন."
 
1284
 
1285
+ #: views/settings.php:42
1286
  msgid ""
1287
  "Backup email notifications will be sent for every backup and will contain status "
1288
  "information related to the backup."
1289
  msgstr ""
1290
+ "ব্যাকআপ ইমেল বিজ্ঞপ্তি প্রতি ব্যাকআপের জন্য পাঠানো হবে এবং ব্যাকআপ এর সাথে সম্পর্কিত অবস্থা "
1291
+ "সংক্রান্ত তথ্য উপস্থিত থাকবে."
1292
 
1293
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1294
+ #: views/settings.php:111
1295
  msgid "Save"
1296
+ msgstr "সংরক্ষণ করুন"
1297
 
1298
+ #: views/settings.php:60
1299
  msgid "Backup Retention"
1300
+ msgstr "ব্যাকআপ ধারণ"
1301
 
1302
+ #: views/settings.php:61
1303
+ msgid "Enter the number of backup archives that you would like to remain on the server."
1304
+ msgstr "আপনি সার্ভারে যে সংখ্যক ব্যাকআপ আর্কাইভ চান তার সংখ্যা লিখুন "
 
1305
 
1306
+ #: views/settings.php:62
1307
  msgid ""
1308
+ "Many hosts limit the amount of space that you can take up on their servers. This option "
1309
+ "tells WP BackItUp the maximum number of backup archives that should remain on your "
1310
+ "hosts server. Don't worry, we will always remove the oldest backup archives first."
 
1311
  msgstr ""
1312
+ "আপনি তাদের সার্ভারে যে পরিমাণ জায়গা নেবেন অনেক হোস্ট তার পরিমাণ নিয়ন্ত্রিত করে দেয় । এই "
1313
+ "বিকল্পটি WP BackItUp কে আপনার হোস্ট সার্ভারে ব্যাকআপ আর্কাইভের সর্বোচ্চ যে সংখ্যা থাকা উচিত তা "
1314
+ "বলে দেয় । চিন্তা করবেন না, সবসময় প্রথম পুরনো ব্যাকআপ আর্কাইভ মুছে ফেলা হবে । "
1315
 
1316
+ #: views/settings.php:81
1317
  msgid "Turn on logging?"
1318
+ msgstr "লগইন চালু করুন?"
1319
 
1320
+ #: views/settings.php:82
1321
  msgid "Yes"
1322
+ msgstr "হ্যাঁ"
1323
 
1324
+ #: views/settings.php:83
1325
  msgid "No"
1326
+ msgstr "না"
1327
 
1328
+ #: views/settings.php:84
1329
  msgid ""
1330
  "This option should only be turned on when troubleshooting issues with WPBackItUp "
1331
  "support."
1332
+ msgstr "এই অপশন WPBackItUp সমর্থন সমস্যা সমাধানের সময় চালু করা উচিত । "
1333
 
1334
+ #: views/settings.php:89
1335
  msgid "Advanced Settings"
1336
+ msgstr "আরও অপশন"
1337
 
1338
+ #: views/settings.php:90
1339
  msgid "These options should only be changed when working with WP BackItUp support."
1340
+ msgstr "WP BackItUp সমর্থনের সঙ্গে কাজ করার সময় শুধুমাত্র এই অপশন পরিবর্তন করা উচিত । "
1341
 
1342
+ #: views/settings.php:93
1343
  msgid "Plugins Batch Size"
1344
+ msgstr "প্লাগইন ব্যাচ আকার"
1345
 
1346
+ #: views/settings.php:98
1347
  msgid "Themes Batch Size"
1348
+ msgstr "থিম ব্যাচ আকার"
1349
 
1350
+ #: views/settings.php:103
1351
  msgid "Uploads Batch Size"
1352
+ msgstr "আপলোড ব্যাচ আকার"
1353
 
1354
+ #: views/settings.php:108
1355
  msgid "Others Batch Size"
1356
+ msgstr "অন্যদের ব্যাচ আকার"
1357
 
1358
+ #: views/support.php:13
1359
  #, php-format
1360
  msgid "%s Support"
1361
+ msgstr "%s সাহায্য"
1362
 
1363
+ #: views/support.php:32
1364
  msgid "Support email sent successfully!"
1365
+ msgstr "সফলভাবে সাহায্যের জন্য ইমেইল পাঠানো হয়েছে"
1366
 
1367
+ #: views/support.php:45
1368
  msgid "Email Logs to Support"
1369
+ msgstr "ইমেল লগ সমর্থনের জন্য "
1370
 
1371
+ #: views/support.php:46
1372
  msgid "This form should be used to send log files to support only."
1373
+ msgstr "এই ফর্মটি শুধুমাত্র সমর্থনে লগ ফাইল পাঠানোর জন্য ব্যবহার করা উচিত । "
1374
 
1375
+ #: views/support.php:47
1376
  msgid ""
1377
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://www."
1378
+ "wpbackitup.com/support\" target=\"_blank\">support portal.</a> before using this form."
 
1379
  msgstr ""
1380
+ "এই ফরমটি ব্যবহারের পূর্বে দয়াকরে WP BackItUp<a href=\"https://www.wpbackitup.com/support\" "
1381
+ "target=\"_blank\">সমর্থন পোর্টালে</a> একটি সমর্থন টিকেট খোলা নিশ্চিত করুন । "
1382
 
1383
+ #: views/support.php:48
1384
  msgid ""
1385
+ "The ticket id you receive from your support request should be entered in the ticket id "
1386
+ "field below."
1387
  msgstr ""
1388
+ "আপনার সমর্থন অনুরোধ থেকে প্রাপ্ত টিকেট আইডি নীচের টিকেট আইডি ক্ষেত্রের মধ্যে প্রবেশ করানো উচিত "
1389
 
1390
+ #: views/support.php:49
1391
  msgid "your email address"
1392
+ msgstr "অাপনার ইমেইল ঠিকানা"
1393
 
1394
+ #: views/support.php:59
1395
  msgid "support ticket id"
1396
+ msgstr "সাপোর্ট টিকেট অাইডি"
1397
 
1398
+ #: views/support.php:69
1399
  msgid "problem description or additional information"
1400
+ msgstr "সমস্যা বর্ণনা বা অতিরিক্ত তথ্য"
1401
 
1402
+ #: views/support.php:80
1403
  msgid "Send"
1404
+ msgstr "পাঠান"
1405
 
1406
+ #: views/support.php:83
1407
  msgid "Please register your version of WP BackItUp for access to support."
1408
+ msgstr "সমর্থন অ্যাক্সেস জন্য আপনার WP BackItUp সংস্করণ নিবন্ধন করুন."
1409
 
1410
+ #: views/support.php:87
1411
  msgid "Premium customers receive priority support."
1412
+ msgstr "প্রিমিয়াম গ্রাহকদের অগ্রাধিকার সহায়তা দেওয়া হয় "
1413
 
1414
+ #: wp-backitup.php:98 wp-backitup.php:99
1415
  #, php-format
1416
  msgid "Every %s hours"
1417
+ msgstr "প্রতি %s ঘন্টা"
1418
+
1419
+ #: wp-backitup.php:137
1420
+ msgid "Cleanup"
1421
+ msgstr "পরিষ্করণ"
1422
+
1423
+ #~ msgid "Preparing for backup...Done"
1424
+ #~ msgstr "ব্যাকঅাপের জন্যে তৈরি হচ্ছে...সম্পন্ন হল"
1425
+
1426
+ #~ msgid "Backing up database...Done"
1427
+ #~ msgstr "ডাটাবেজ ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
1428
+
1429
+ #~ msgid "Creating backup information file...Done"
1430
+ #~ msgstr "ব্যাকঅাপের তথ্য তৈরি হচ্ছে...সম্পন্ন হল"
1431
+
1432
+ #~ msgid "Backing up themes...Done"
1433
+ #~ msgstr "থিম ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
1434
+
1435
+ #~ msgid "Backing up plugins...Done"
1436
+ #~ msgstr "প্লাগিন ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
1437
+
1438
+ #~ msgid "Backing up uploads...Done"
1439
+ #~ msgstr "অাপলোড ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
1440
+
1441
+ #~ msgid "Backing up miscellaneous files...Done"
1442
+ #~ msgstr "অন্যান্য ফাইল ব্যাকঅাপ হচ্ছে...সম্পন্ন হল"
1443
+
1444
+ #~ msgid "Finalizing backup...Done"
1445
+ #~ msgstr "ব্যাকঅাপ নেয়া শেষ হচ্ছে...সম্পন্ন হল"
1446
+
1447
+ #~ msgid "Validating backup...Done"
1448
+ #~ msgstr "ব্যাকঅাপ যাচাই করা হচ্ছে...সম্পন্ন হল"
1449
+
1450
+ #~ msgid "Cleaning up...Done"
1451
+ #~ msgstr "পরিষ্কার করছে...সম্পন্ন হল"
1452
+
1453
+ #~ msgid "Steps Completed"
1454
+ #~ msgstr "ধাপ সম্পন্ন হয়েছে"
languages/wp-backitup-de_DE.mo CHANGED
Binary file
languages/wp-backitup-de_DE.po CHANGED
@@ -1,12 +1,14 @@
1
  #
2
  # Translators:
 
 
3
  # WebSource <info@websource.li>, 2015
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP BackItUp\n"
7
- "POT-Creation-Date: 2015-08-14 10:31-0400\n"
8
- "PO-Revision-Date: 2015-08-14 10:31-0400\n"
9
- "Last-Translator: Chris Simmons <chris.simmons01@gmail.com>\n"
10
  "Language-Team: German (Germany) (http://www.transifex.com/wp-translations/wp-"
11
  "backitup/language/de_DE/)\n"
12
  "Language: de_DE\n"
@@ -19,515 +21,574 @@ msgstr ""
19
  "X-Poedit-KeywordsList: _;__;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
23
- #: views/backup.php:179
 
24
  msgid "Backup"
25
- msgstr "Backup"
26
 
27
- #: lib/includes/class-wpbackitup-admin.php:175
28
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
29
  msgid "Restore"
30
  msgstr "Wiederherstellen"
31
 
32
- #: lib/includes/class-wpbackitup-admin.php:179
33
  msgid "Support"
34
  msgstr "Support"
35
 
36
- #: lib/includes/class-wpbackitup-admin.php:182
37
  msgid "Settings"
38
  msgstr "Einstellungen"
39
 
40
- #: lib/includes/class-wpbackitup-admin.php:203
41
  msgid ""
42
  "The backup you have selected exceeds what your host allows you to upload."
43
  msgstr ""
 
 
44
 
45
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
46
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
47
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
48
- #: views/backup.php:312 views/backup.php:313
49
  msgid "Warning"
50
  msgstr "Warnung"
51
 
52
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
53
  msgid "Error"
54
  msgstr "Fehler"
55
 
56
- #: lib/includes/class-wpbackitup-admin.php:206
57
  msgid "Response"
58
  msgstr "Antwort"
59
 
60
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
61
- #: views/restore.php:205
62
  msgid "Status"
63
  msgstr "Status"
64
 
65
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
66
  msgid "Download"
67
  msgstr "Download"
68
 
69
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
70
- #: views/restore.php:111
71
  msgid "Delete"
72
  msgstr "Löschen"
73
 
74
- #: lib/includes/class-wpbackitup-admin.php:211
75
  msgid "(JS997) Unexpected error"
76
- msgstr ""
77
 
78
- #: lib/includes/class-wpbackitup-admin.php:212
79
  msgid "(JS998) Unexpected error"
80
- msgstr ""
81
 
82
- #: lib/includes/class-wpbackitup-admin.php:213
83
  msgid "(JS999) An unexpected error has occurred"
84
- msgstr ""
85
 
86
- #: lib/includes/class-wpbackitup-admin.php:214
87
  msgid "Scheduled has been saved."
88
- msgstr ""
89
 
90
- #: lib/includes/class-wpbackitup-admin.php:215
91
  msgid "Scheduled was not saved."
92
- msgstr ""
93
 
94
- #: lib/includes/class-wpbackitup-admin.php:216
95
  msgid "Are you sure you want to restore your site?"
96
- msgstr ""
97
 
98
- #: lib/includes/class-wpbackitup-admin.php:217
99
  msgid "Are you sure ?"
100
  msgstr "Sind Sie sicher?"
101
 
102
- #: lib/includes/class-wpbackitup-admin.php:218
103
  msgid "This file cannot be delete!"
104
- msgstr ""
105
 
106
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
107
  msgid "View Log"
108
  msgstr "Logdatei anzeigen"
109
 
110
- #: lib/includes/class-wpbackitup-admin.php:220
111
  msgid "New Backup!"
112
  msgstr "Neues Backup!"
113
 
114
- #: lib/includes/class-wpbackitup-admin.php:221
115
  msgid "Uploaded Backup"
116
- msgstr ""
117
 
118
- #: lib/includes/class-wpbackitup-admin.php:480
119
  msgid "Backup Queued"
120
- msgstr ""
121
 
122
- #: lib/includes/class-wpbackitup-admin.php:482
123
  msgid "Backup could not be queued"
124
- msgstr ""
125
 
126
- #: lib/includes/class-wpbackitup-admin.php:485
127
- msgid "Backup already in queue"
128
- msgstr ""
129
-
130
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
131
- msgid "Backup Cancelled"
132
- msgstr ""
133
 
134
- #: lib/includes/class-wpbackitup-admin.php:535
135
  msgid "No backup file selected."
136
- msgstr ""
137
 
138
- #: lib/includes/class-wpbackitup-admin.php:542
139
  msgid "No user id found."
140
- msgstr ""
141
 
142
- #: lib/includes/class-wpbackitup-admin.php:553
143
  msgid "Restore Queued"
144
- msgstr ""
145
 
146
- #: lib/includes/class-wpbackitup-admin.php:555
147
  msgid "Restore could not be queued"
148
- msgstr ""
149
 
150
- #: lib/includes/class-wpbackitup-admin.php:558
151
  msgid "Restore already in queue"
152
- msgstr ""
153
 
154
- #: lib/includes/class-wpbackitup-admin.php:743
155
- msgid "No response log found."
156
- msgstr ""
157
 
158
- #: lib/includes/class-wpbackitup-admin.php:836
159
- #: lib/includes/class-wpbackitup-admin.php:844
160
- #: lib/includes/class-wpbackitup-admin.php:873
161
- #: lib/includes/class-wpbackitup-admin.php:880
162
- #: lib/includes/class-wpbackitup-admin.php:887
163
- #: lib/includes/class-wpbackitup-admin.php:894
 
 
 
 
164
  msgid "Please enter a number"
165
- msgstr ""
166
 
167
- #: lib/includes/class-wpbackitup-admin.php:865
168
- #: lib/includes/class-wpbackitup-admin.php:972
169
  msgid "Please enter a valid email"
170
- msgstr ""
171
 
172
- #: lib/includes/class-wpbackitup-admin.php:979
173
  msgid "Please enter your support ticket id"
174
- msgstr ""
175
 
176
- #: lib/includes/class-wpbackitup-admin.php:984
177
  msgid "Please only enter numbers in this field"
178
- msgstr ""
179
 
180
- #: lib/includes/class-wpbackitup-admin.php:1645
181
  msgid "License is invalid."
182
- msgstr ""
183
 
184
- #: lib/includes/class-wpbackitup-admin.php:1650
185
  msgid "License has expired."
 
 
 
 
 
 
 
 
186
  msgstr ""
 
 
 
 
187
 
188
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
189
  msgid "Activation limit has been reached."
190
- msgstr ""
 
 
 
 
191
 
192
  #: lib/includes/handler_upload.php:29
193
  msgid "Invalid Nonce"
194
- msgstr ""
195
 
196
  #: lib/includes/handler_upload.php:39 lib/includes/handler_upload.php:151
197
  msgid "Upload directory is not writable, or does not exist."
198
  msgstr ""
 
 
199
 
200
  #: lib/includes/handler_upload.php:80
201
  #, php-format
202
  msgid "Error: %s"
203
- msgstr ""
204
 
205
  #: lib/includes/handler_upload.php:80
206
  msgid "File could not be uploaded"
207
- msgstr ""
208
 
209
  #: lib/includes/handler_upload.php:141
210
  msgid "Upload does not appear to be a WP BackItUp backup archive file."
211
  msgstr ""
 
 
212
 
213
  #: lib/includes/handler_upload.php:161
214
  msgid "Could not import file into WP BackItUp backup set."
215
- msgstr ""
216
-
217
- #: lib/includes/job_backup.php:851
218
- msgid "Preparing for backup...Done"
219
- msgstr ""
220
-
221
- #: lib/includes/job_backup.php:852
222
- msgid "Backing up database...Done"
223
- msgstr ""
224
-
225
- #: lib/includes/job_backup.php:853
226
- msgid "Creating backup information file...Done"
227
- msgstr ""
228
-
229
- #: lib/includes/job_backup.php:854
230
- msgid "Backing up themes...Done"
231
- msgstr ""
232
-
233
- #: lib/includes/job_backup.php:855
234
- msgid "Backing up plugins...Done"
235
- msgstr ""
236
 
237
- #: lib/includes/job_backup.php:856
238
- msgid "Backing up uploads...Done"
239
- msgstr ""
240
-
241
- #: lib/includes/job_backup.php:857
242
- msgid "Backing up miscellaneous files...Done"
243
- msgstr ""
244
-
245
- #: lib/includes/job_backup.php:858
246
- msgid "Finalizing backup...Done"
247
- msgstr ""
248
-
249
- #: lib/includes/job_backup.php:859
250
- msgid "Validating backup...Done"
251
- msgstr ""
252
-
253
- #: lib/includes/job_backup.php:860
254
- msgid "Cleaning up...Done"
255
  msgstr ""
256
 
257
- #: lib/includes/job_backup.php:870
258
  #, php-format
259
  msgid "%s - Backup completed successfully."
260
- msgstr ""
261
 
262
- #: lib/includes/job_backup.php:871
263
  msgid "Your backup completed successfully."
264
- msgstr ""
265
 
266
- #: lib/includes/job_backup.php:874
267
  #, php-format
268
  msgid "%s - Backup did not complete successfully."
269
- msgstr ""
270
 
271
- #: lib/includes/job_backup.php:875
272
  msgid "Your backup did not complete successfully."
273
- msgstr ""
274
 
275
- #: lib/includes/job_backup.php:880
276
  #, php-format
277
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
278
- msgstr ""
279
 
280
- #: lib/includes/job_backup.php:881
281
  msgid "Backup date:"
282
- msgstr ""
283
 
284
- #: lib/includes/job_backup.php:882
285
  msgid "Number of backups completed with WP BackItUp:"
286
- msgstr ""
287
 
288
- #: lib/includes/job_backup.php:884
289
  msgid "Completion Code:"
290
- msgstr ""
291
 
292
- #: lib/includes/job_backup.php:885
293
  msgid "WP BackItUp Version:"
294
- msgstr ""
295
 
296
- #: lib/includes/job_backup.php:891
297
- msgid "Steps Completed"
298
- msgstr ""
299
-
300
- #: lib/includes/job_backup.php:912
301
  #, php-format
302
  msgid "Checkout %s for info about WP BackItUp and our other products."
303
- msgstr ""
304
 
305
- #: lib/includes/job_backup.php:1088
306
  msgid ""
307
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
308
  "settings of your wp-backitup backup directory"
309
  msgstr ""
 
 
310
 
311
- #: lib/includes/job_backup.php:1089
312
  msgid ""
313
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
314
  "your wp-backitup plugin directory"
315
  msgstr ""
 
 
316
 
317
- #: lib/includes/job_backup.php:1090
318
  msgid "(103) Unable to backup your files. Please try again"
319
- msgstr ""
320
 
321
- #: lib/includes/job_backup.php:1091
322
  msgid "(104) Unable to export your database. Please try again"
323
  msgstr ""
 
324
 
325
- #: lib/includes/job_backup.php:1092
326
  msgid "(105) Unable to export site information file. Please try again"
327
  msgstr ""
 
 
328
 
329
- #: lib/includes/job_backup.php:1093
330
  msgid "(106) Unable to cleanup your backup directory"
331
- msgstr ""
332
 
333
- #: lib/includes/job_backup.php:1094
334
  msgid "(107) Unable to compress(zip) your backup. Please try again"
335
  msgstr ""
 
336
 
337
- #: lib/includes/job_backup.php:1095
338
  msgid "(108) Unable to backup your site data files. Please try again"
339
  msgstr ""
 
 
340
 
341
- #: lib/includes/job_backup.php:1096
342
  msgid "(109) Unable to finalize backup. Please try again"
343
  msgstr ""
 
344
 
345
- #: lib/includes/job_backup.php:1097
346
  msgid ""
347
  "(114) Your database was accessible but an export could not be created. "
348
  "Please contact support by clicking the get support link on the right. Please "
349
  "let us know who your host is when you submit the request"
350
  msgstr ""
 
 
 
 
351
 
352
- #: lib/includes/job_backup.php:1098
353
  msgid "(120) Unable to backup your themes. Please try again"
354
- msgstr ""
355
 
356
- #: lib/includes/job_backup.php:1099
357
  msgid "(121) Unable to backup your plugins. Please try again"
358
- msgstr ""
359
 
360
- #: lib/includes/job_backup.php:1100
361
  msgid "(122) Unable to backup your uploads. Please try again"
362
- msgstr ""
363
 
364
- #: lib/includes/job_backup.php:1101
365
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
366
  msgstr ""
 
 
367
 
368
- #: lib/includes/job_backup.php:1102
369
  msgid ""
370
  "(125) Unable to compress your backup because there is no zip utility "
371
  "available. Please contact support"
372
  msgstr ""
 
 
373
 
374
- #: lib/includes/job_backup.php:1103
375
  msgid "(126) Unable to validate your backup. Please try again"
376
- msgstr ""
377
 
378
- #: lib/includes/job_backup.php:1104
379
  msgid "(127) Unable to create inventory of files to backup. Please try again"
380
  msgstr ""
 
 
381
 
382
- #: lib/includes/job_backup.php:1105
383
  msgid "(128) Unable to create job control record. Please try again"
384
  msgstr ""
 
 
385
 
386
- #: lib/includes/job_backup.php:1107
387
  msgid ""
388
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
389
  "settings of your wp-backitup backup directory"
390
  msgstr ""
 
 
391
 
392
- #: lib/includes/job_backup.php:1108
393
  msgid ""
394
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
395
  "your wp-backitup plugin directory"
396
  msgstr ""
 
 
397
 
398
- #: lib/includes/job_backup.php:1109
399
  msgid "(2103) Unable to backup your files. Please try again"
400
- msgstr ""
401
 
402
- #: lib/includes/job_backup.php:1110
403
  msgid "(2104) Unable to export your database. Please try again"
404
  msgstr ""
 
405
 
406
- #: lib/includes/job_backup.php:1111
407
  msgid "(2105) Unable to export site information file. Please try again"
408
  msgstr ""
 
 
409
 
410
- #: lib/includes/job_backup.php:1112
411
  msgid "(2106) Unable to cleanup your backup directory"
412
- msgstr ""
413
 
414
- #: lib/includes/job_backup.php:1113
415
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
416
  msgstr ""
 
417
 
418
- #: lib/includes/job_backup.php:1114
419
  msgid "(2108) Unable to backup your site data files. Please try again"
420
  msgstr ""
 
 
421
 
422
- #: lib/includes/job_backup.php:1115
423
  msgid "(2109) Unable to finalize backup. Please try again"
424
  msgstr ""
 
425
 
426
- #: lib/includes/job_backup.php:1116
427
  msgid ""
428
  "(2114) Your database was accessible but an export could not be created. "
429
  "Please contact support by clicking the get support link on the right. Please "
430
  "let us know who your host is when you submit the request"
431
  msgstr ""
 
 
 
 
432
 
433
- #: lib/includes/job_backup.php:1117
434
  msgid "(2120) Unable to backup your themes. Please try again"
435
- msgstr ""
436
 
437
- #: lib/includes/job_backup.php:1118
438
  msgid "(2121) Unable to backup your plugins. Please try again"
439
- msgstr ""
440
 
441
- #: lib/includes/job_backup.php:1119
442
  msgid "(2122) Unable to backup your uploads. Please try again"
443
- msgstr ""
444
 
445
- #: lib/includes/job_backup.php:1120
446
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
447
  msgstr ""
 
 
448
 
449
- #: lib/includes/job_backup.php:1121
450
  msgid ""
451
  "(2125) Unable to compress your backup because there is no zip utility "
452
  "available. Please contact support"
453
  msgstr ""
 
 
454
 
455
- #: lib/includes/job_backup.php:1122
456
  msgid "(2126) Unable to validate your backup. Please try again"
457
- msgstr ""
458
 
459
- #: lib/includes/job_backup.php:1123
460
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
461
  msgstr ""
 
 
462
 
463
- #: lib/includes/job_backup.php:1124
464
  msgid "(2128) Unable to create job control record. Please try again"
465
  msgstr ""
 
 
466
 
467
- #: lib/includes/job_backup.php:1127
468
  msgid "(999) Unexpected error"
469
- msgstr ""
470
 
471
  #. TRANSLATORS: %s = plugin name.
472
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
473
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
474
- #: views/backup.php:20
475
  #, php-format
476
  msgid "%s Dashboard"
477
- msgstr ""
478
 
479
- #: views/backup.php:150
 
 
 
 
480
  #, php-format
481
  msgid "Backup folder does not exist. Please contact %s for assistance."
482
  msgstr ""
 
 
483
 
484
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
485
  msgid "support"
486
- msgstr ""
487
 
488
- #: views/backup.php:153 views/backup.php:159
489
  msgid "Close"
490
  msgstr "Schließen"
491
 
492
- #: views/backup.php:174
493
  msgid ""
494
  "Click the backup button to create a zipped backup file of this site's "
495
  "database, plugins, themes and settings."
496
  msgstr ""
 
 
497
 
498
- #: views/backup.php:175
499
  msgid ""
500
  "Once your backup file has been created it will appear in the available "
501
  "backups section below. This file may remain on your hosting providers server "
502
  "but we recommend that you download and save it somewhere safe."
503
  msgstr ""
 
 
 
 
504
 
505
- #: views/backup.php:176
506
  msgid ""
507
  "WP BackItUp premium customers can use these backup files to perform an "
508
  "automated restore of their site."
509
  msgstr ""
 
 
510
 
511
- #: views/backup.php:180
512
  msgid "Cancel"
513
  msgstr "Abbrechen"
514
 
515
- #: views/backup.php:187
516
  #, php-format
517
  msgid ""
518
  "WP BackItUp lite customers may use these backup files to manually restore "
519
  "their site. Please visit %s for manual restore instructions."
520
  msgstr ""
 
 
 
521
 
522
- #: views/backup.php:194
523
  msgid "Backup Schedule"
524
- msgstr ""
525
 
526
- #: views/backup.php:196
527
  msgid "Select the days of the week you would like your backup to run."
528
  msgstr ""
 
529
 
530
- #: views/backup.php:198
531
  msgid ""
532
  "Backup your site once per week or every day, it's up to you. If you have "
533
  "email notifications turned on we'll even send you an email when it's done. "
@@ -535,527 +596,635 @@ msgid ""
535
  "backups section below. This file may remain on your hosting providers server "
536
  "but we recommend that you download and save it somewhere safe."
537
  msgstr ""
 
 
 
 
 
 
 
538
 
539
- #: views/backup.php:200
540
  msgid "Please make sure to schedule your backup for at least once per week."
541
- msgstr ""
542
 
543
- #: views/backup.php:204
544
  msgid "Monday"
545
  msgstr "Montag"
546
 
547
- #: views/backup.php:205
548
  msgid "Tuesday"
549
  msgstr "Dienstag"
550
 
551
- #: views/backup.php:206
552
  msgid "Wednesday"
553
  msgstr "Mittwoch"
554
 
555
- #: views/backup.php:207
556
  msgid "Thursday"
557
  msgstr "Donnerstag"
558
 
559
- #: views/backup.php:208
560
  msgid "Friday"
561
  msgstr "Freitag"
562
 
563
- #: views/backup.php:209
564
  msgid "Saturday"
565
  msgstr "Samstag"
566
 
567
- #: views/backup.php:210
568
  msgid "Sunday"
569
  msgstr "Sonntag"
570
 
571
- #: views/backup.php:213
572
  msgid "Save Schedule"
573
- msgstr ""
574
 
575
- #: views/backup.php:218
576
  #, php-format
577
  msgid ""
578
  "Scheduled backups are only available to WP BackItUp premium customers. "
579
  "Please visit %s to get WP BackItUp risk free for 30 days."
580
  msgstr ""
 
 
 
581
 
582
- #: views/backup.php:225 views/restore.php:94
583
  msgid "Available Backups"
584
- msgstr "Verfügbare Backups"
 
 
 
 
585
 
586
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
587
  msgid "No backup archives found."
588
- msgstr ""
589
 
590
- #: views/backup.php:291
591
  #, php-format
592
  msgid ""
593
  "The automated restore feature is only available to WP BackItUp premium "
594
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
595
  msgstr ""
 
 
 
596
 
597
- #: views/backup.php:300 views/restore.php:209
598
  msgid "Nothing to report"
599
- msgstr ""
600
 
601
- #: views/backup.php:305
602
  msgid "Preparing for backup"
603
- msgstr ""
604
-
605
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
606
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
607
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
608
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
609
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
610
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
611
- #: views/restore.php:228 views/restore.php:230
612
  msgid "Done"
613
- msgstr ""
614
-
615
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
616
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
617
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
618
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
619
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
620
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
621
- #: views/restore.php:228 views/restore.php:230
622
  msgid "Failed"
623
- msgstr ""
624
 
625
- #: views/backup.php:306
 
 
 
 
626
  msgid "Backing up database"
627
- msgstr ""
628
 
629
- #: views/backup.php:307
630
  msgid "Creating backup information file"
631
- msgstr ""
632
 
633
- #: views/backup.php:308
634
  msgid "Backing up themes"
635
- msgstr ""
636
 
637
- #: views/backup.php:309
638
  msgid "Backing up plugins"
639
- msgstr ""
640
 
641
- #: views/backup.php:310
642
  msgid "Backing up uploads"
643
- msgstr ""
644
 
645
- #: views/backup.php:311
646
  msgid "Backing up everything else"
647
- msgstr ""
648
 
649
- #: views/backup.php:312
650
  msgid "Validating backup"
651
- msgstr ""
652
 
653
- #: views/backup.php:313
654
  msgid "Finalizing backup"
655
- msgstr ""
656
 
657
- #: views/backup.php:323
658
  msgid "Backup completed successfully"
659
- msgstr ""
660
 
661
- #: views/backup.php:344
662
  msgid "Backups"
663
- msgstr "Backups"
664
 
665
- #: views/backup.php:344
666
  msgid "Version "
667
  msgstr "Version"
668
 
669
- #: views/backup.php:346
670
  msgid "Welcome to WP BackItUp!"
671
- msgstr ""
672
 
673
- #: views/backup.php:346
674
  msgid "The simplest way to backup your WordPress site."
675
- msgstr ""
676
 
677
- #: views/backup.php:347
678
  msgid ""
679
  "Getting started is easy, just click the backup button on the left side of "
680
  "this page."
681
  msgstr ""
 
 
682
 
683
- #: views/backup.php:351
684
  #, php-format
685
  msgid ""
686
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
687
  "medium;color: green\">%s</span> successful backups."
688
  msgstr ""
 
 
689
 
690
- #: views/backup.php:352
691
  msgid "Tips"
692
  msgstr "Tipps"
693
 
694
- #: views/backup.php:353
695
  msgid "Backup your site at least once per week"
696
- msgstr ""
697
 
698
- #: views/backup.php:354
699
  msgid "Download all your backups and store them somewhere safe"
700
  msgstr ""
 
 
701
 
702
- #: views/backup.php:355
703
  msgid "Verify your backup files are good by taking a look at what's inside"
704
  msgstr ""
 
 
705
 
706
- #: views/backup.php:360
707
  #, php-format
708
  msgid "Why not %s and schedule your backups!"
709
- msgstr ""
710
 
711
- #: views/backup.php:360
712
  msgid "upgrade"
713
- msgstr ""
714
 
715
- #: views/backup.php:369
716
  msgid "Register WP BackItUp"
717
- msgstr ""
718
 
719
- #: views/backup.php:372
720
  msgid ""
721
  "Enter your name and email address below to receive <b>special offers</b> and "
722
  "access to our world class <b>support</b> team. <br />\n"
723
  " <br />Enter your license key below to activate it on this "
724
  "site."
725
  msgstr ""
 
 
 
 
 
726
 
727
- #: views/backup.php:374
728
  msgid "name"
729
- msgstr ""
730
 
731
- #: views/backup.php:375
732
  msgid "email address"
733
- msgstr ""
734
 
735
- #: views/backup.php:376
736
  msgid "license key"
737
- msgstr ""
738
 
739
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
740
  #, php-format
741
  msgid "%s"
742
- msgstr ""
743
 
744
- #: views/backup.php:377
745
  msgid "Free plugin customers do not need to enter license key."
746
  msgstr ""
 
747
 
748
- #: views/backup.php:378
749
  msgid "Register"
750
  msgstr "Registrieren"
751
 
752
- #: views/backup.php:387
753
  msgid "License Info"
754
  msgstr "Lizenzinformation"
755
 
756
- #: views/backup.php:409
757
  msgid "Name"
758
  msgstr "Name"
759
 
760
- #: views/backup.php:410
761
  msgid "Email"
762
  msgstr "E-Mail"
763
 
764
- #: views/backup.php:411
765
  msgid "License Type"
766
  msgstr "Lizenztyp"
767
 
768
- #: views/backup.php:412
769
  msgid "Expires"
770
- msgstr ""
771
 
772
- #: views/backup.php:415
773
  msgid "Enter license key to activate on this site."
774
- msgstr ""
775
 
776
- #: views/backup.php:422
777
  msgid "License Active"
778
- msgstr ""
779
 
780
- #: views/backup.php:430
781
  msgid "License expired"
782
- msgstr ""
783
 
784
- #: views/backup.php:434
785
  msgid "Update"
786
- msgstr ""
787
 
788
- #: views/backup.php:438
789
  msgid "Activate"
790
- msgstr ""
791
 
792
- #: views/backup.php:442
793
  #, php-format
794
  msgid "Purchase a %s license using the purchase link above."
795
- msgstr ""
796
 
797
- #: views/backup.php:442
798
  msgid "no-risk"
799
- msgstr ""
800
 
801
- #: views/backup.php:448
802
  #, php-format
803
  msgid ""
804
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
805
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
806
  msgstr ""
 
 
 
807
 
808
- #: views/backup.php:459
809
  msgid "Useful Links"
810
  msgstr "Nützliche Links"
811
 
812
- #: views/backup.php:462 views/backup.php:466
813
  msgid "Your account"
814
  msgstr "Dein Konto"
815
 
816
- #: views/backup.php:469
817
  msgid "Documentation"
818
  msgstr "Dokumentation"
819
 
820
- #: views/backup.php:472
821
  msgid "Get support"
822
  msgstr "Erhalte Support"
823
 
824
- #: views/backup.php:475
825
  msgid "Feature request"
826
- msgstr ""
 
 
 
 
827
 
828
- #: views/backup.php:477
829
  msgid "Contact"
830
  msgstr "Kontakt"
831
 
832
- #: views/backup.php:497 views/backup.php:518
833
  msgid "WP BackItUp Backup Set"
834
- msgstr ""
835
 
836
- #: views/backup.php:499
837
  msgid ""
838
  "Below are the archive files included in this backup set. Click the link to "
839
  "download."
840
  msgstr ""
 
 
841
 
842
- #: views/backup.php:519
843
  msgid "Please refresh this page to download your new backup files."
844
  msgstr ""
 
 
845
 
846
- #: views/restore.php:16
847
  #, php-format
848
  msgid "%s Restore"
849
- msgstr ""
850
 
851
- #: views/restore.php:59
852
  msgid "Zip Files"
853
- msgstr ""
854
 
855
- #: views/restore.php:74
856
  #, php-format
857
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
858
  msgstr ""
 
 
859
 
860
- #: views/restore.php:81
861
  #, php-format
862
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
863
  msgstr ""
 
 
864
 
865
- #: views/restore.php:141
866
  #, php-format
867
  msgid ""
868
  "<p>* The automated restore feature is only available to licensed customers. "
869
  "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP "
870
  "BackItUp risk free for 30 days.</p>"
871
  msgstr ""
 
 
 
 
872
 
873
- #: views/restore.php:153
874
  msgid "Upload"
875
- msgstr ""
876
 
877
- #: views/restore.php:156
878
  msgid ""
879
  "Upload WP BackItUp archive(zip) files to add to your list of available "
880
  "backups."
881
  msgstr ""
 
 
882
 
883
- #: views/restore.php:173
884
  msgid "WP BackItUp - Upload backup files"
885
- msgstr ""
886
 
887
- #: views/restore.php:174
888
  msgid "Backup files may be uploaded into WP BackItUp with this form."
889
  msgstr ""
 
 
890
 
891
- #: views/restore.php:174
892
  msgid ""
893
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
894
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
895
  "refresh this page."
896
  msgstr ""
 
 
 
897
 
898
- #: views/restore.php:178
899
  #, php-format
900
  msgid "This feature requires %s version %s or later"
901
- msgstr ""
902
 
903
- #: views/restore.php:184
904
  msgid "Drop backup files here"
905
- msgstr ""
906
 
907
- #: views/restore.php:190
908
  msgid ""
909
  "* Reload this page when done uploading to see new backups appear in the "
910
  "Available Backups section above. "
911
  msgstr ""
 
 
912
 
913
- #: views/restore.php:219
914
  msgid "Preparing for restore"
915
- msgstr ""
916
 
917
- #: views/restore.php:220
918
  msgid "Unzipping backup set"
919
- msgstr ""
920
 
921
- #: views/restore.php:221
922
  msgid "Validating backup file"
923
- msgstr ""
924
 
925
- #: views/restore.php:222
926
  msgid "Deactivating plugins"
927
- msgstr ""
928
 
929
- #: views/restore.php:223
930
  msgid "Creating database restore point"
931
- msgstr ""
932
 
933
- #: views/restore.php:224
934
  msgid "Staging content files"
935
- msgstr ""
936
 
937
- #: views/restore.php:225
938
  msgid "Restoring content files"
939
- msgstr ""
940
 
941
- #: views/restore.php:226
942
  msgid "Restoring database"
943
- msgstr ""
944
 
945
- #: views/restore.php:227
946
  msgid "Updating current user info"
947
- msgstr ""
948
 
949
- #: views/restore.php:228
950
  msgid "Updating site URL"
951
- msgstr ""
952
 
953
- #: views/restore.php:230
954
  msgid "Updating permalinks"
955
- msgstr ""
956
 
957
- #: views/restore.php:236
958
  msgid "Error 201: No file selected"
959
- msgstr ""
960
 
961
- #: views/restore.php:237
962
  msgid "Error 202: Your file could not be uploaded"
963
- msgstr ""
964
 
965
- #: views/restore.php:238
966
  msgid "Error 203: Your backup could not be unzipped"
967
- msgstr ""
968
 
969
- #: views/restore.php:239
970
  msgid ""
971
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
972
  "valid backup"
973
  msgstr ""
 
 
974
 
975
- #: views/restore.php:240
976
  msgid "Error 205: Cannot create restore point"
977
- msgstr ""
978
 
979
- #: views/restore.php:241
980
  msgid "Error 206: Unable to connect to your database"
981
  msgstr ""
 
982
 
983
- #: views/restore.php:242
984
  msgid ""
985
  "Error 207: Unable to get current site URL from database. Please try again"
986
  msgstr ""
 
 
987
 
988
- #: views/restore.php:243
989
  msgid ""
990
  "Error 208: Unable to get current home URL from database. Please try again"
991
  msgstr ""
 
 
992
 
993
- #: views/restore.php:244
994
  msgid ""
995
  "Error 209: Unable to get current user ID from database. Please try again"
996
  msgstr ""
 
 
997
 
998
- #: views/restore.php:245
999
  msgid ""
1000
  "Error 210: Unable to get current user password from database. Please try "
1001
  "again"
1002
  msgstr ""
 
 
1003
 
1004
- #: views/restore.php:246
1005
  msgid ""
1006
  "Error 211: Unable to get current user email from database. Please try again"
1007
  msgstr ""
 
 
1008
 
1009
- #: views/restore.php:247
1010
  msgid ""
1011
  "Error 212: Unable to import your database. This may require importing the "
1012
  "file manually"
1013
  msgstr ""
 
 
1014
 
1015
- #: views/restore.php:248
1016
  msgid ""
1017
  "Warning 213: Unable to update your site URL value. Please check your "
1018
  "WordPress general settings to make sure your Site and WordPress URLs are "
1019
  "correct"
1020
  msgstr ""
 
 
 
1021
 
1022
- #: views/restore.php:249
1023
  msgid ""
1024
  "Warning 214: Unable to update your home URL value. Please check your "
1025
  "WordPress general settings to make sure your Site and WordPress URLs are "
1026
  "correct"
1027
  msgstr ""
 
 
 
1028
 
1029
- #: views/restore.php:250
1030
  msgid ""
1031
  "Warning 215: Unable to update your user information. This may require you to "
1032
  "login with the admin username and password that was used when the backup was "
1033
  "created"
1034
  msgstr ""
 
 
 
1035
 
1036
- #: views/restore.php:251
1037
  msgid "Error 216: Database not found in backup"
1038
- msgstr ""
1039
 
1040
- #: views/restore.php:252
1041
  msgid "Warning 217: Unable to remove existing wp-content directory"
1042
  msgstr ""
 
 
1043
 
1044
- #: views/restore.php:253
1045
  msgid ""
1046
  "Error 218: Unable to create new wp-content directory. Please check your "
1047
  "CHMOD settings in /wp-content/"
1048
  msgstr ""
 
 
1049
 
1050
- #: views/restore.php:254
1051
  msgid "Error 219: Unable to import wp-content. Please try again"
1052
  msgstr ""
 
 
1053
 
1054
- #: views/restore.php:255
1055
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1056
  msgstr ""
 
 
1057
 
1058
- #: views/restore.php:256
1059
  #, php-format
1060
  msgid ""
1061
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1063,272 +1232,379 @@ msgid ""
1063
  "restore your site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" "
1064
  "> FAQs</a> for more info."
1065
  msgstr ""
 
 
 
 
 
1066
 
1067
- #: views/restore.php:257
1068
  msgid "Error 222: Unable to create restore folder"
1069
- msgstr ""
1070
 
1071
- #: views/restore.php:258
1072
  msgid ""
1073
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1074
  "restore the database to its previous state but were unsuccessful. Please "
1075
  "contact WP BackItUp customer support and do not attempt to perform any "
1076
  "further restores"
1077
  msgstr ""
 
 
 
 
1078
 
1079
- #: views/restore.php:259
1080
  msgid ""
1081
  "Error 224: An error occurred during the restore, however, we have "
1082
  "successfully restored your database to the previous state"
1083
  msgstr ""
 
 
1084
 
1085
- #: views/restore.php:260
1086
  msgid ""
1087
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1088
  msgstr ""
 
 
1089
 
1090
- #: views/restore.php:261
1091
  msgid ""
1092
  "Error 226: Restore cannot proceed because your backup was created using a "
1093
  "different version of WordPress"
1094
  msgstr ""
 
 
1095
 
1096
- #: views/restore.php:262
1097
  msgid ""
1098
  "Error 227: Restore cannot proceed because your backup was created using a "
1099
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1100
  "help convert this backup to the current version"
1101
  msgstr ""
 
 
 
 
1102
 
1103
- #: views/restore.php:263
1104
  msgid ""
1105
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1106
  "restore. However, we were able to successfully revert the database back to "
1107
  "its original state . This error may require importing the database manually"
1108
  msgstr ""
 
 
 
 
1109
 
1110
- #: views/restore.php:264
1111
  msgid ""
1112
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1113
  "utility available. Please contact support"
1114
  msgstr ""
 
 
1115
 
1116
- #: views/restore.php:265
1117
  msgid ""
1118
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1119
  "running. Please wait for the backup to complete and then try again"
1120
  msgstr ""
 
 
 
1121
 
1122
- #: views/restore.php:267
1123
  msgid ""
1124
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1125
  "manifest is empty"
1126
  msgstr ""
 
 
1127
 
1128
- #: views/restore.php:268
1129
  msgid ""
1130
  "Error 252: At least one zip file is missing from your backup set. Please "
1131
  "make sure to upload all zip files that were part of this backup"
1132
  msgstr ""
 
 
 
1133
 
1134
- #: views/restore.php:269
1135
  msgid ""
1136
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1137
  "Please make sure to upload only zip files that were part of this backup"
1138
  msgstr ""
 
 
 
1139
 
1140
- #: views/restore.php:271
1141
  msgid ""
1142
  "Warning 300: Unable to restore all WordPress content. Please review your "
1143
  "restore logs to see what WP BackItUp was unable to restore"
1144
  msgstr ""
 
 
 
1145
 
1146
- #: views/restore.php:272
1147
  msgid ""
1148
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1149
  "to see what WP BackItUp was unable to restore"
1150
  msgstr ""
 
 
 
1151
 
1152
- #: views/restore.php:274
1153
  msgid "Error 2001: Unable to prepare site for restore"
1154
  msgstr ""
 
1155
 
1156
- #: views/restore.php:275
1157
  msgid "Error 2002: Unable to unzip backup"
1158
- msgstr ""
1159
 
1160
- #: views/restore.php:276
1161
  msgid "Error 2003: Unable to validate backup"
1162
- msgstr ""
1163
 
1164
- #: views/restore.php:277
1165
  msgid "Error 2004: Unable to create restore point"
1166
- msgstr ""
1167
 
1168
- #: views/restore.php:278
1169
  msgid "Error 2005: Unable to stage wp-content"
1170
- msgstr ""
1171
 
1172
- #: views/restore.php:279
1173
  msgid "Error 2006: Unable to restore content files"
1174
- msgstr ""
1175
 
1176
- #: views/restore.php:280
1177
  msgid "Error 2007: Unable to restore database"
1178
- msgstr ""
1179
 
1180
- #: views/restore.php:281
1181
  msgid "Error 2999: Unexpected error encountered"
1182
- msgstr ""
1183
 
1184
- #: views/restore.php:288
1185
  msgid ""
1186
  "Restore completed successfully. If you are prompted to login please do so "
1187
  "with your current username and password"
1188
  msgstr ""
 
 
 
1189
 
1190
- #: views/settings.php:16
1191
  #, php-format
1192
  msgid "%s Settings"
1193
- msgstr ""
1194
 
1195
- #: views/settings.php:43
1196
  msgid "Email Notifications"
1197
- msgstr ""
1198
 
1199
- #: views/settings.php:44
1200
  msgid ""
1201
  "Please enter your email address if you would like to receive backup email "
1202
  "notifications."
1203
  msgstr ""
 
 
1204
 
1205
- #: views/settings.php:45
1206
  msgid ""
1207
  "Backup email notifications will be sent for every backup and will contain "
1208
  "status information related to the backup."
1209
  msgstr ""
 
 
1210
 
1211
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1212
- #: views/settings.php:114
1213
  msgid "Save"
1214
- msgstr ""
1215
 
1216
- #: views/settings.php:63
1217
  msgid "Backup Retention"
1218
- msgstr ""
1219
 
1220
- #: views/settings.php:64
1221
  msgid ""
1222
  "Enter the number of backup archives that you would like to remain on the "
1223
  "server."
1224
  msgstr ""
 
 
1225
 
1226
- #: views/settings.php:65
1227
  msgid ""
1228
  "Many hosts limit the amount of space that you can take up on their servers. "
1229
  "This option tells WP BackItUp the maximum number of backup archives that "
1230
  "should remain on your hosts server. Don't worry, we will always remove the "
1231
  "oldest backup archives first."
1232
  msgstr ""
 
 
 
 
 
1233
 
1234
- #: views/settings.php:84
1235
  msgid "Turn on logging?"
1236
- msgstr ""
1237
 
1238
- #: views/settings.php:85
1239
  msgid "Yes"
1240
- msgstr ""
1241
 
1242
- #: views/settings.php:86
1243
  msgid "No"
1244
- msgstr ""
1245
 
1246
- #: views/settings.php:87
1247
  msgid ""
1248
  "This option should only be turned on when troubleshooting issues with "
1249
  "WPBackItUp support."
1250
  msgstr ""
 
 
1251
 
1252
- #: views/settings.php:92
1253
  msgid "Advanced Settings"
1254
- msgstr ""
1255
 
1256
- #: views/settings.php:93
1257
  msgid ""
1258
  "These options should only be changed when working with WP BackItUp support."
1259
  msgstr ""
 
 
1260
 
1261
- #: views/settings.php:96
1262
  msgid "Plugins Batch Size"
1263
- msgstr ""
1264
 
1265
- #: views/settings.php:101
1266
  msgid "Themes Batch Size"
1267
- msgstr ""
1268
 
1269
- #: views/settings.php:106
1270
  msgid "Uploads Batch Size"
1271
- msgstr ""
1272
 
1273
- #: views/settings.php:111
1274
  msgid "Others Batch Size"
1275
- msgstr ""
1276
 
1277
- #: views/support.php:16
1278
  #, php-format
1279
  msgid "%s Support"
1280
  msgstr "%s Support"
1281
 
1282
- #: views/support.php:35
1283
  msgid "Support email sent successfully!"
1284
- msgstr ""
1285
 
1286
- #: views/support.php:48
1287
  msgid "Email Logs to Support"
1288
- msgstr ""
1289
 
1290
- #: views/support.php:49
1291
  msgid "This form should be used to send log files to support only."
1292
  msgstr ""
 
 
1293
 
1294
- #: views/support.php:50
1295
  msgid ""
1296
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1297
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1298
  "using this form."
1299
  msgstr ""
 
 
 
1300
 
1301
- #: views/support.php:51
1302
  msgid ""
1303
  "The ticket id you receive from your support request should be entered in the "
1304
  "ticket id field below."
1305
  msgstr ""
 
 
1306
 
1307
- #: views/support.php:52
1308
  msgid "your email address"
1309
  msgstr "Deine E-Mail Adresse."
1310
 
1311
- #: views/support.php:62
1312
  msgid "support ticket id"
1313
- msgstr ""
1314
 
1315
- #: views/support.php:72
1316
  msgid "problem description or additional information"
1317
- msgstr ""
1318
 
1319
- #: views/support.php:83
1320
  msgid "Send"
1321
  msgstr "Senden"
1322
 
1323
- #: views/support.php:86
1324
  msgid "Please register your version of WP BackItUp for access to support."
1325
  msgstr ""
 
 
1326
 
1327
- #: views/support.php:90
1328
  msgid "Premium customers receive priority support."
1329
- msgstr ""
1330
 
1331
- #: wp-backitup.php:97 wp-backitup.php:98
1332
  #, php-format
1333
  msgid "Every %s hours"
1334
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #
2
  # Translators:
3
+ # Sascha Lewandowski <S.Lewandowski@it-lew.de>, 2015
4
+ # Stefan Apel <apel.s@sebakmt.com>, 2015
5
  # WebSource <info@websource.li>, 2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WP BackItUp\n"
9
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
10
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
11
+ "Last-Translator: Stefan Apel <apel.s@sebakmt.com>\n"
12
  "Language-Team: German (Germany) (http://www.transifex.com/wp-translations/wp-"
13
  "backitup/language/de_DE/)\n"
14
  "Language: de_DE\n"
21
  "X-Poedit-KeywordsList: _;__;_e\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
25
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
26
+ #: wp-backitup.php:109
27
  msgid "Backup"
28
+ msgstr "Sichern"
29
 
30
+ #: lib/includes/class-wpbackitup-admin.php:182
31
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
32
+ #: wp-backitup.php:123
33
  msgid "Restore"
34
  msgstr "Wiederherstellen"
35
 
36
+ #: lib/includes/class-wpbackitup-admin.php:186
37
  msgid "Support"
38
  msgstr "Support"
39
 
40
+ #: lib/includes/class-wpbackitup-admin.php:189
41
  msgid "Settings"
42
  msgstr "Einstellungen"
43
 
44
+ #: lib/includes/class-wpbackitup-admin.php:210
45
  msgid ""
46
  "The backup you have selected exceeds what your host allows you to upload."
47
  msgstr ""
48
+ "Das von Ihnen gewählte Backup übersteigt die von Ihrem Web-Host zum Upload "
49
+ "zugelassene Datenmenge."
50
 
51
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
52
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
53
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
54
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
55
  msgid "Warning"
56
  msgstr "Warnung"
57
 
58
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
59
+ #: views/backup.php:220
60
  msgid "Error"
61
  msgstr "Fehler"
62
 
63
+ #: lib/includes/class-wpbackitup-admin.php:213
64
  msgid "Response"
65
  msgstr "Antwort"
66
 
67
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
68
+ #: views/backup.php:271 views/restore.php:230
69
  msgid "Status"
70
  msgstr "Status"
71
 
72
+ #: lib/includes/class-wpbackitup-admin.php:215
73
  msgid "Download"
74
  msgstr "Download"
75
 
76
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
77
+ #: views/restore.php:132
78
  msgid "Delete"
79
  msgstr "Löschen"
80
 
81
+ #: lib/includes/class-wpbackitup-admin.php:218
82
  msgid "(JS997) Unexpected error"
83
+ msgstr "(JS997) Unerwarteter Fehler"
84
 
85
+ #: lib/includes/class-wpbackitup-admin.php:219
86
  msgid "(JS998) Unexpected error"
87
+ msgstr "(JS998) Unerwarteter Fehler"
88
 
89
+ #: lib/includes/class-wpbackitup-admin.php:220
90
  msgid "(JS999) An unexpected error has occurred"
91
+ msgstr "(JS999) Ein unerwarteter Fehler ist aufgetreten."
92
 
93
+ #: lib/includes/class-wpbackitup-admin.php:221
94
  msgid "Scheduled has been saved."
95
+ msgstr "Zeitplan wurde gespeichert."
96
 
97
+ #: lib/includes/class-wpbackitup-admin.php:222
98
  msgid "Scheduled was not saved."
99
+ msgstr "Zeitplan wurde nicht gespeichert."
100
 
101
+ #: lib/includes/class-wpbackitup-admin.php:223
102
  msgid "Are you sure you want to restore your site?"
103
+ msgstr "Sind Sie sicher, dass Sie Ihre Seite wiederherstellen möchten?"
104
 
105
+ #: lib/includes/class-wpbackitup-admin.php:224
106
  msgid "Are you sure ?"
107
  msgstr "Sind Sie sicher?"
108
 
109
+ #: lib/includes/class-wpbackitup-admin.php:225
110
  msgid "This file cannot be delete!"
111
+ msgstr "Diese Datei kann nicht gelöscht werden!"
112
 
113
+ #: lib/includes/class-wpbackitup-admin.php:226
114
  msgid "View Log"
115
  msgstr "Logdatei anzeigen"
116
 
117
+ #: lib/includes/class-wpbackitup-admin.php:227
118
  msgid "New Backup!"
119
  msgstr "Neues Backup!"
120
 
121
+ #: lib/includes/class-wpbackitup-admin.php:228
122
  msgid "Uploaded Backup"
123
+ msgstr "Hochgeladenes Backup"
124
 
125
+ #: lib/includes/class-wpbackitup-admin.php:515
126
  msgid "Backup Queued"
127
+ msgstr "Geplantes Backup"
128
 
129
+ #: lib/includes/class-wpbackitup-admin.php:518
130
  msgid "Backup could not be queued"
131
+ msgstr "Backup konnte nicht geplant werden"
132
 
133
+ #: lib/includes/class-wpbackitup-admin.php:522
134
+ msgid "Job already in queue, please try again later"
135
+ msgstr "Auftrag bereits in Warteschleife. Probieren Sie es später noch einmal."
 
 
 
 
136
 
137
+ #: lib/includes/class-wpbackitup-admin.php:554
138
  msgid "No backup file selected."
139
+ msgstr "Keine Backup-Datei ausgewählt."
140
 
141
+ #: lib/includes/class-wpbackitup-admin.php:561
142
  msgid "No user id found."
143
+ msgstr "Keine Nutzer-ID gefunden."
144
 
145
+ #: lib/includes/class-wpbackitup-admin.php:582
146
  msgid "Restore Queued"
147
+ msgstr "Wiederherstellung geplant"
148
 
149
+ #: lib/includes/class-wpbackitup-admin.php:584
150
  msgid "Restore could not be queued"
151
+ msgstr "Wiederherstellung konnte nicht geplant werden"
152
 
153
+ #: lib/includes/class-wpbackitup-admin.php:588
154
  msgid "Restore already in queue"
155
+ msgstr "Wiederherstellung bereits geplant"
156
 
157
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
158
+ msgid "Backup Cancelled"
159
+ msgstr "Backup abgebrochen"
160
 
161
+ #: lib/includes/class-wpbackitup-admin.php:754
162
+ msgid "No response log found."
163
+ msgstr "Kein Antwortprotokoll gefunden."
164
+
165
+ #: lib/includes/class-wpbackitup-admin.php:856
166
+ #: lib/includes/class-wpbackitup-admin.php:864
167
+ #: lib/includes/class-wpbackitup-admin.php:893
168
+ #: lib/includes/class-wpbackitup-admin.php:900
169
+ #: lib/includes/class-wpbackitup-admin.php:907
170
+ #: lib/includes/class-wpbackitup-admin.php:914
171
  msgid "Please enter a number"
172
+ msgstr "Bitte eine Nummer eingeben"
173
 
174
+ #: lib/includes/class-wpbackitup-admin.php:885
175
+ #: lib/includes/class-wpbackitup-admin.php:993
176
  msgid "Please enter a valid email"
177
+ msgstr "Bitte eine gültige Email eingeben"
178
 
179
+ #: lib/includes/class-wpbackitup-admin.php:1000
180
  msgid "Please enter your support ticket id"
181
+ msgstr "Bitte ID des Support-Tickets eingeben"
182
 
183
+ #: lib/includes/class-wpbackitup-admin.php:1005
184
  msgid "Please only enter numbers in this field"
185
+ msgstr "Bitte Nummern in dieses Feld eingeben"
186
 
187
+ #: lib/includes/class-wpbackitup-admin.php:1699
188
  msgid "License is invalid."
189
+ msgstr "Lizenz ist nicht gültig"
190
 
191
+ #: lib/includes/class-wpbackitup-admin.php:1704
192
  msgid "License has expired."
193
+ msgstr "Lizenz ist abgelaufen"
194
+
195
+ #: lib/includes/class-wpbackitup-admin.php:1707
196
+ #, php-format
197
+ msgid ""
198
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
199
+ "now for another year of <strong>product updates</strong> and access to our "
200
+ "<strong>world class support</strong> team."
201
  msgstr ""
202
+ "Ihre Lizenz ist abgelaufen. Bitte <a href=\"%s\" target=\"blank\">erneuern</"
203
+ "a> Sie Ihre Lizenz jetzt für ein weiteres Jahr mit <strong>Produkt-Updates</"
204
+ "strong> und Unterstützung durch unseren <strong>erstklassigen Kundendienst</"
205
+ "strong>."
206
 
207
+ #: lib/includes/class-wpbackitup-admin.php:1721
208
+ msgid "License Expired: Scheduled backups are no longer active."
209
+ msgstr "Lizenz abgelaufen: Es werden keine geplanten Backups mehr ausgeführt."
210
+
211
+ #: lib/includes/class-wpbackitup-admin.php:1729
212
  msgid "Activation limit has been reached."
213
+ msgstr "Aktivierungs-Limit wurde erreicht"
214
+
215
+ #: lib/includes/class-wpbackitup-admin.php:1735
216
+ msgid "Your Activation limit has been reached"
217
+ msgstr "Ihr Aktivierungs-Limit wurde erreicht"
218
 
219
  #: lib/includes/handler_upload.php:29
220
  msgid "Invalid Nonce"
221
+ msgstr "Ungültige Nonce"
222
 
223
  #: lib/includes/handler_upload.php:39 lib/includes/handler_upload.php:151
224
  msgid "Upload directory is not writable, or does not exist."
225
  msgstr ""
226
+ "In das Upload-Verzeichnis kann nicht geschrieben werden, oder es existiert "
227
+ "nicht."
228
 
229
  #: lib/includes/handler_upload.php:80
230
  #, php-format
231
  msgid "Error: %s"
232
+ msgstr "Fehler: %s"
233
 
234
  #: lib/includes/handler_upload.php:80
235
  msgid "File could not be uploaded"
236
+ msgstr "Datei konnte nicht hochgeladen werden"
237
 
238
  #: lib/includes/handler_upload.php:141
239
  msgid "Upload does not appear to be a WP BackItUp backup archive file."
240
  msgstr ""
241
+ "Bei der Datei handelt es sich scheinbar nicht um eine WP BackItUp Backup-"
242
+ "Datei. "
243
 
244
  #: lib/includes/handler_upload.php:161
245
  msgid "Could not import file into WP BackItUp backup set."
246
+ msgstr "Datei konnte nicht in den WP BackItUp Backup-Satz importiert werden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
 
248
+ #: lib/includes/job_backup.php:907
249
+ #, php-format
250
+ msgid ""
251
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
252
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
253
+ "function for <strong>30</strong> days after your license has expired.Please "
254
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
255
+ "of product updates and access to our world class support team.<br/><br/>"
 
 
 
 
 
 
 
 
 
 
256
  msgstr ""
257
 
258
+ #: lib/includes/job_backup.php:912
259
  #, php-format
260
  msgid "%s - Backup completed successfully."
261
+ msgstr "%s - Sicherung erfolgreich abgeschlossen."
262
 
263
+ #: lib/includes/job_backup.php:913
264
  msgid "Your backup completed successfully."
265
+ msgstr "Die Sicherung wurde erfolgreich abgeschlossen."
266
 
267
+ #: lib/includes/job_backup.php:916
268
  #, php-format
269
  msgid "%s - Backup did not complete successfully."
270
+ msgstr "%s - Sicherung nicht erfolgreich abgeschlossen."
271
 
272
+ #: lib/includes/job_backup.php:917
273
  msgid "Your backup did not complete successfully."
274
+ msgstr "Die Sicherung wurde nicht erfolgreich abgeschlossen."
275
 
276
+ #: lib/includes/job_backup.php:924
277
  #, php-format
278
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
279
+ msgstr "WordPress-Seite: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
280
 
281
+ #: lib/includes/job_backup.php:925
282
  msgid "Backup date:"
283
+ msgstr "Sicherungs-Datum:"
284
 
285
+ #: lib/includes/job_backup.php:926
286
  msgid "Number of backups completed with WP BackItUp:"
287
+ msgstr "Anzahl der Sicherungen, welche mit WP BackItUp durchgeführt wurden:"
288
 
289
+ #: lib/includes/job_backup.php:928
290
  msgid "Completion Code:"
291
+ msgstr "Komplettierungs-Code:"
292
 
293
+ #: lib/includes/job_backup.php:929
294
  msgid "WP BackItUp Version:"
295
+ msgstr "WP BackItUp Version:"
296
 
297
+ #: lib/includes/job_backup.php:941
 
 
 
 
298
  #, php-format
299
  msgid "Checkout %s for info about WP BackItUp and our other products."
300
+ msgstr "Besuchen Sie %s für Infos über WP BackItUp und unsere anderen Produkte"
301
 
302
+ #: lib/includes/job_backup.php:1117
303
  msgid ""
304
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
305
  "settings of your wp-backitup backup directory"
306
  msgstr ""
307
+ "(101) Neues Sicherungs-Verzeichnis konnte nicht angelegt werden. Bitte "
308
+ "prüfen Sie die CHMOD-Einstellungen des wp-backitup Sicherungs-Verzeichnisses."
309
 
310
+ #: lib/includes/job_backup.php:1118
311
  msgid ""
312
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
313
  "your wp-backitup plugin directory"
314
  msgstr ""
315
+ "(102) Sicherungs-Verzeichnis konnte nicht angelegt werden. Bitte prüfen Sie "
316
+ "die CHMOD-Einstellungen des wp-backitup Plugin-Verzeichnisses."
317
 
318
+ #: lib/includes/job_backup.php:1119
319
  msgid "(103) Unable to backup your files. Please try again"
320
+ msgstr "(103) Dateien konnten nicht gesichert werden. Bitte erneut versuchen."
321
 
322
+ #: lib/includes/job_backup.php:1120
323
  msgid "(104) Unable to export your database. Please try again"
324
  msgstr ""
325
+ "(104) Datenbank konnten nicht exportiert werden. Bitte erneut versuchen."
326
 
327
+ #: lib/includes/job_backup.php:1121
328
  msgid "(105) Unable to export site information file. Please try again"
329
  msgstr ""
330
+ "(105) Seiteninformationen konnten nicht exportiert werden. Bitte erneut "
331
+ "versuchen."
332
 
333
+ #: lib/includes/job_backup.php:1122
334
  msgid "(106) Unable to cleanup your backup directory"
335
+ msgstr "(106) Sicherungs-Verzeichnis konnte nicht geleert werden."
336
 
337
+ #: lib/includes/job_backup.php:1123
338
  msgid "(107) Unable to compress(zip) your backup. Please try again"
339
  msgstr ""
340
+ "(107) Sicherung konnte nicht gepackt (zip) werden. Bitte erneut versuchen."
341
 
342
+ #: lib/includes/job_backup.php:1124
343
  msgid "(108) Unable to backup your site data files. Please try again"
344
  msgstr ""
345
+ "(108) Dateien mit den Daten Ihrer Seite konnten nicht gesichert werden. "
346
+ "Bitte erneut versuchen."
347
 
348
+ #: lib/includes/job_backup.php:1125
349
  msgid "(109) Unable to finalize backup. Please try again"
350
  msgstr ""
351
+ "(109) Sicherung konnte nicht abgeschlossen werden. Bitte erneut versuchen."
352
 
353
+ #: lib/includes/job_backup.php:1126
354
  msgid ""
355
  "(114) Your database was accessible but an export could not be created. "
356
  "Please contact support by clicking the get support link on the right. Please "
357
  "let us know who your host is when you submit the request"
358
  msgstr ""
359
+ "(114) Es konnte zwar auf Ihre Datenbank zugegriffen aber kein Export "
360
+ "durchgeführt werden. Bitte kontaktieren Sie den Kundendienst über den Link "
361
+ "auf der rechten Seite. Bitte teilen Sie uns den Namen Ihres Web-Hosters mit "
362
+ "und wann die Anfrage gesendet wurde."
363
 
364
+ #: lib/includes/job_backup.php:1127
365
  msgid "(120) Unable to backup your themes. Please try again"
366
+ msgstr "(120) Themes konnten nicht gesichert werden. Bitte erneut versuchen."
367
 
368
+ #: lib/includes/job_backup.php:1128
369
  msgid "(121) Unable to backup your plugins. Please try again"
370
+ msgstr "(121) Plugins konnten nicht gesichert werden. Bitte erneut versuchen."
371
 
372
+ #: lib/includes/job_backup.php:1129
373
  msgid "(122) Unable to backup your uploads. Please try again"
374
+ msgstr "(122) Uploads konnten nicht gesichert werden. Bitte erneut versuchen."
375
 
376
+ #: lib/includes/job_backup.php:1130
377
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
378
  msgstr ""
379
+ "(123) Sonstige Dateien konnten nicht gesichert werden. Bitte erneut "
380
+ "versuchen."
381
 
382
+ #: lib/includes/job_backup.php:1131
383
  msgid ""
384
  "(125) Unable to compress your backup because there is no zip utility "
385
  "available. Please contact support"
386
  msgstr ""
387
+ "(125) Sicherung konnte nicht komprimiert werden, da kein ZIP-Dienstprogramm "
388
+ "verfügbar ist"
389
 
390
+ #: lib/includes/job_backup.php:1132
391
  msgid "(126) Unable to validate your backup. Please try again"
392
+ msgstr "(126) Sicherung konnte nicht geprüft werden. Bitte erneut versuchen."
393
 
394
+ #: lib/includes/job_backup.php:1133
395
  msgid "(127) Unable to create inventory of files to backup. Please try again"
396
  msgstr ""
397
+ "(127) Der Bestand an zu sichernden Dateien konnte nicht erfasst werden. "
398
+ "Bitte erneut versuchen."
399
 
400
+ #: lib/includes/job_backup.php:1134
401
  msgid "(128) Unable to create job control record. Please try again"
402
  msgstr ""
403
+ "(128) Es konnte kein Auftragssteuerungseintrag erstellt werden. Bitte erneut "
404
+ "versuchen."
405
 
406
+ #: lib/includes/job_backup.php:1136
407
  msgid ""
408
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
409
  "settings of your wp-backitup backup directory"
410
  msgstr ""
411
+ "(2101) Neues Sicherungs-Verzeichnis konnte nicht angelegt werden. Bitte "
412
+ "prüfen Sie die CHMOD-Einstellungen des wp-backitup Sicherungs-Verzeichnisses."
413
 
414
+ #: lib/includes/job_backup.php:1137
415
  msgid ""
416
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
417
  "your wp-backitup plugin directory"
418
  msgstr ""
419
+ "(2102) Sicherungs-Verzeichnis konnte nicht angelegt werden. Bitte prüfen Sie "
420
+ "die CHMOD-Einstellungen des wp-backitup Plugin-Verzeichnisses."
421
 
422
+ #: lib/includes/job_backup.php:1138
423
  msgid "(2103) Unable to backup your files. Please try again"
424
+ msgstr "(2103) Dateien konnten nicht gesichert werden. Bitte erneut versuchen."
425
 
426
+ #: lib/includes/job_backup.php:1139
427
  msgid "(2104) Unable to export your database. Please try again"
428
  msgstr ""
429
+ "(2104) Datenbank konnten nicht exportiert werden. Bitte erneut versuchen."
430
 
431
+ #: lib/includes/job_backup.php:1140
432
  msgid "(2105) Unable to export site information file. Please try again"
433
  msgstr ""
434
+ "(2105) Seiteninformationen konnten nicht exportiert werden. Bitte erneut "
435
+ "versuchen."
436
 
437
+ #: lib/includes/job_backup.php:1141
438
  msgid "(2106) Unable to cleanup your backup directory"
439
+ msgstr "(2106) Sicherungs-Verzeichnis konnte nicht geleert werden."
440
 
441
+ #: lib/includes/job_backup.php:1142
442
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
443
  msgstr ""
444
+ "(2107) Sicherung konnte nicht gepackt (zip) werden. Bitte erneut versuchen."
445
 
446
+ #: lib/includes/job_backup.php:1143
447
  msgid "(2108) Unable to backup your site data files. Please try again"
448
  msgstr ""
449
+ "(2108) Dateien mit den Daten Ihrer Seite konnten nicht gesichert werden. "
450
+ "Bitte erneut versuchen."
451
 
452
+ #: lib/includes/job_backup.php:1144
453
  msgid "(2109) Unable to finalize backup. Please try again"
454
  msgstr ""
455
+ "(2109) Sicherung konnte nicht abgeschlossen werden. Bitte erneut versuchen."
456
 
457
+ #: lib/includes/job_backup.php:1145
458
  msgid ""
459
  "(2114) Your database was accessible but an export could not be created. "
460
  "Please contact support by clicking the get support link on the right. Please "
461
  "let us know who your host is when you submit the request"
462
  msgstr ""
463
+ "(2114) Es konnte zwar auf Ihre Datenbank zugegriffen aber kein Export "
464
+ "durchgeführt werden. Bitte kontaktieren Sie den Kundendienst über den Link "
465
+ "auf der rechten Seite. Bitte teilen Sie uns den Namen Ihres Web-Hosters mit "
466
+ "und wann die Anfrage gesendet wurde."
467
 
468
+ #: lib/includes/job_backup.php:1146
469
  msgid "(2120) Unable to backup your themes. Please try again"
470
+ msgstr "(2120) Themes konnten nicht gesichert werden. Bitte erneut versuchen."
471
 
472
+ #: lib/includes/job_backup.php:1147
473
  msgid "(2121) Unable to backup your plugins. Please try again"
474
+ msgstr "(2121) Plugins konnten nicht gesichert werden. Bitte erneut versuchen."
475
 
476
+ #: lib/includes/job_backup.php:1148
477
  msgid "(2122) Unable to backup your uploads. Please try again"
478
+ msgstr "(2122) Uploads konnten nicht gesichert werden. Bitte erneut versuchen."
479
 
480
+ #: lib/includes/job_backup.php:1149
481
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
482
  msgstr ""
483
+ "(2123) Sonstige Dateien konnten nicht gesichert werden. Bitte erneut "
484
+ "versuchen."
485
 
486
+ #: lib/includes/job_backup.php:1150
487
  msgid ""
488
  "(2125) Unable to compress your backup because there is no zip utility "
489
  "available. Please contact support"
490
  msgstr ""
491
+ "(2125) Sicherung konnte nicht komprimiert werden, da kein ZIP-Dienstprogramm "
492
+ "verfügbar ist"
493
 
494
+ #: lib/includes/job_backup.php:1151
495
  msgid "(2126) Unable to validate your backup. Please try again"
496
+ msgstr "(2126) Sicherung konnte nicht geprüft werden. Bitte erneut versuchen."
497
 
498
+ #: lib/includes/job_backup.php:1152
499
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
500
  msgstr ""
501
+ "(2127) Der Bestand an zu sichernden Dateien konnte nicht erfasst werden. "
502
+ "Bitte erneut versuchen."
503
 
504
+ #: lib/includes/job_backup.php:1153
505
  msgid "(2128) Unable to create job control record. Please try again"
506
  msgstr ""
507
+ "(2128) Es konnte kein Auftragssteuerungseintrag erstellt werden. Bitte "
508
+ "erneut versuchen."
509
 
510
+ #: lib/includes/job_backup.php:1156
511
  msgid "(999) Unexpected error"
512
+ msgstr "(999) Unerwarteter Fehler"
513
 
514
  #. TRANSLATORS: %s = plugin name.
515
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
516
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
517
+ #: views/backup.php:17
518
  #, php-format
519
  msgid "%s Dashboard"
520
+ msgstr "%s Dashboard"
521
 
522
+ #: views/backup.php:83
523
+ msgid "Dismiss"
524
+ msgstr "Verwerfen"
525
+
526
+ #: views/backup.php:95
527
  #, php-format
528
  msgid "Backup folder does not exist. Please contact %s for assistance."
529
  msgstr ""
530
+ "Das Sicherungs-Verzeichnis existiert nicht. Bitte kontaktieren Sie %s für "
531
+ "Hilfestellung."
532
 
533
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
534
  msgid "support"
535
+ msgstr "Support"
536
 
537
+ #: views/backup.php:98 views/backup.php:104
538
  msgid "Close"
539
  msgstr "Schließen"
540
 
541
+ #: views/backup.php:119
542
  msgid ""
543
  "Click the backup button to create a zipped backup file of this site's "
544
  "database, plugins, themes and settings."
545
  msgstr ""
546
+ "Auf Sicherung klicken, um Datenbank, Plugins, Themes und Einstellungen "
547
+ "dieser Seite in einer komprimierten Datei zu sichern."
548
 
549
+ #: views/backup.php:120
550
  msgid ""
551
  "Once your backup file has been created it will appear in the available "
552
  "backups section below. This file may remain on your hosting providers server "
553
  "but we recommend that you download and save it somewhere safe."
554
  msgstr ""
555
+ "Sobald die Sicherungs-Datei erstellt wurde, wird sie in der untenstehenden "
556
+ "Liste verfügbarer Backups auftauchen. Sie können die Datei einfach auf dem "
557
+ "Server Ihres Hosters liegen lassen. Wir empfehlen allerdings, die Datei "
558
+ "herunterzuladen und auch an einem anderen Ort zu speichern."
559
 
560
+ #: views/backup.php:121
561
  msgid ""
562
  "WP BackItUp premium customers can use these backup files to perform an "
563
  "automated restore of their site."
564
  msgstr ""
565
+ "Premium-Kunden von WP BackItUp können diese Sicherungs-Dateien verwenden, um "
566
+ "eine automatische Wiederherstellung ihrer Seite durchzuführen."
567
 
568
+ #: views/backup.php:125
569
  msgid "Cancel"
570
  msgstr "Abbrechen"
571
 
572
+ #: views/backup.php:132
573
  #, php-format
574
  msgid ""
575
  "WP BackItUp lite customers may use these backup files to manually restore "
576
  "their site. Please visit %s for manual restore instructions."
577
  msgstr ""
578
+ "Nutzer der Lite-Version von WP BackItUp können diese Sicherungs-Dateien "
579
+ "verwenden, um eine manuelle Wiederherstellung ihrer Seite durchzuführen. "
580
+ "Eine Anleitung zur manuellen Wiederherstellung finden Sie unter %s."
581
 
582
+ #: views/backup.php:139
583
  msgid "Backup Schedule"
584
+ msgstr "Sicherungs-Zeitplan"
585
 
586
+ #: views/backup.php:141
587
  msgid "Select the days of the week you would like your backup to run."
588
  msgstr ""
589
+ "Wählen Sie die Wochentage, an welchen ein Sicherung durchgeführt werden soll."
590
 
591
+ #: views/backup.php:143
592
  msgid ""
593
  "Backup your site once per week or every day, it's up to you. If you have "
594
  "email notifications turned on we'll even send you an email when it's done. "
596
  "backups section below. This file may remain on your hosting providers server "
597
  "but we recommend that you download and save it somewhere safe."
598
  msgstr ""
599
+ "Sie können die Seite einmal wöchentlich oder an jedem Tag sichern. Es liegt "
600
+ "ganz bei Ihnen. Wenn Sie die Email-Benachrichtigungen einschalten, werden "
601
+ "Sie sogar über abgeschlossene Sicherungen informiert. Sobald die Sicherungs-"
602
+ "Datei erstellt wurde, wird sie in der untenstehenden Liste verfügbarer "
603
+ "Sicherung auftauchen. Sie können die Datei einfach auf dem Server Ihres "
604
+ "Hosters liegen lassen. Wir empfehlen allerdings, die Datei herunterzuladen "
605
+ "und auch an einem anderen Ort zu speichern."
606
 
607
+ #: views/backup.php:145
608
  msgid "Please make sure to schedule your backup for at least once per week."
609
+ msgstr "Bitte planen Sie mindestens eine Sicherung pro Woche."
610
 
611
+ #: views/backup.php:149
612
  msgid "Monday"
613
  msgstr "Montag"
614
 
615
+ #: views/backup.php:150
616
  msgid "Tuesday"
617
  msgstr "Dienstag"
618
 
619
+ #: views/backup.php:151
620
  msgid "Wednesday"
621
  msgstr "Mittwoch"
622
 
623
+ #: views/backup.php:152
624
  msgid "Thursday"
625
  msgstr "Donnerstag"
626
 
627
+ #: views/backup.php:153
628
  msgid "Friday"
629
  msgstr "Freitag"
630
 
631
+ #: views/backup.php:154
632
  msgid "Saturday"
633
  msgstr "Samstag"
634
 
635
+ #: views/backup.php:155
636
  msgid "Sunday"
637
  msgstr "Sonntag"
638
 
639
+ #: views/backup.php:158
640
  msgid "Save Schedule"
641
+ msgstr "Zeitplan speichern"
642
 
643
+ #: views/backup.php:163
644
  #, php-format
645
  msgid ""
646
  "Scheduled backups are only available to WP BackItUp premium customers. "
647
  "Please visit %s to get WP BackItUp risk free for 30 days."
648
  msgstr ""
649
+ "Geplante Sicherungen stehen nur Premium-Kunden von WP BackItUp zur "
650
+ "Verfügung. Besuchen Sie %s, um WP BackItUp für 30 Tage risikofrei "
651
+ "ausprobieren zu können."
652
 
653
+ #: views/backup.php:170 views/restore.php:95
654
  msgid "Available Backups"
655
+ msgstr "Verfügbare Sicherungen"
656
+
657
+ #: views/backup.php:190 views/restore.php:100
658
+ msgid "Date"
659
+ msgstr "Datum"
660
 
661
+ #: views/backup.php:191
662
+ msgid "Duration"
663
+ msgstr "Dauer"
664
+
665
+ #: views/backup.php:214
666
+ msgid "Success"
667
+ msgstr "Erfolgreich"
668
+
669
+ #: views/backup.php:217
670
+ msgid "Active"
671
+ msgstr "Aktiv"
672
+
673
+ #: views/backup.php:257 views/restore.php:150
674
  msgid "No backup archives found."
675
+ msgstr "Keine Sicherungs-Archive gefunden."
676
 
677
+ #: views/backup.php:266
678
  #, php-format
679
  msgid ""
680
  "The automated restore feature is only available to WP BackItUp premium "
681
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
682
  msgstr ""
683
+ "Die Funktion zur automatischen Wiederherstellung steht nur Premium-Kunden "
684
+ "von WP BackItUp zur Verfügung. Besuchen Sie %s, um WP BackItUp für 30 Tage "
685
+ "risikofrei ausprobieren zu können."
686
 
687
+ #: views/backup.php:275 views/restore.php:234
688
  msgid "Nothing to report"
689
+ msgstr "Nichts zu berichten"
690
 
691
+ #: views/backup.php:280
692
  msgid "Preparing for backup"
693
+ msgstr "Sicherung wird vorbereitet"
694
+
695
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
696
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
697
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
698
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
699
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
700
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
701
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
702
  msgid "Done"
703
+ msgstr "Fertig"
704
+
705
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
706
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
707
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
708
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
709
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
710
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
711
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
712
  msgid "Failed"
713
+ msgstr "Fehlgeschlagen"
714
 
715
+ #: views/backup.php:281
716
+ msgid "Creating inventory of files to backup"
717
+ msgstr "Liste der zu sichernden Dateien wir erstellt"
718
+
719
+ #: views/backup.php:282
720
  msgid "Backing up database"
721
+ msgstr "Sichere die Datenbank"
722
 
723
+ #: views/backup.php:283
724
  msgid "Creating backup information file"
725
+ msgstr "Erstelle Datei mit Sicherungs-Informationen"
726
 
727
+ #: views/backup.php:284
728
  msgid "Backing up themes"
729
+ msgstr "Sichere Themes"
730
 
731
+ #: views/backup.php:285
732
  msgid "Backing up plugins"
733
+ msgstr "Sichere Plugins"
734
 
735
+ #: views/backup.php:286
736
  msgid "Backing up uploads"
737
+ msgstr "Sichere Uploads"
738
 
739
+ #: views/backup.php:287
740
  msgid "Backing up everything else"
741
+ msgstr "Sichere alle weiteren Daten"
742
 
743
+ #: views/backup.php:288
744
  msgid "Validating backup"
745
+ msgstr "Überprüfe Sicherung"
746
 
747
+ #: views/backup.php:289
748
  msgid "Finalizing backup"
749
+ msgstr "Schließe Sicherung ab"
750
 
751
+ #: views/backup.php:299
752
  msgid "Backup completed successfully"
753
+ msgstr "Sicherung erfolgreich abgeschlossen."
754
 
755
+ #: views/backup.php:320
756
  msgid "Backups"
757
+ msgstr "Sicherungen"
758
 
759
+ #: views/backup.php:320
760
  msgid "Version "
761
  msgstr "Version"
762
 
763
+ #: views/backup.php:322
764
  msgid "Welcome to WP BackItUp!"
765
+ msgstr "Willkommen bei WP BackItUp!"
766
 
767
+ #: views/backup.php:322
768
  msgid "The simplest way to backup your WordPress site."
769
+ msgstr "Der einfachste Weg, um Ihre Wordpress-Seite zu sichern."
770
 
771
+ #: views/backup.php:323
772
  msgid ""
773
  "Getting started is easy, just click the backup button on the left side of "
774
  "this page."
775
  msgstr ""
776
+ "Die ersten Schritte sind gar nicht schwer. Drücken Sie einfach den Sicherung-"
777
+ "Button links auf dieser Seite."
778
 
779
+ #: views/backup.php:327
780
  #, php-format
781
  msgid ""
782
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
783
  "medium;color: green\">%s</span> successful backups."
784
  msgstr ""
785
+ "Glückwunsch! Sie haben <span style=\"font-weight:bold;font-size:medium;"
786
+ "color: green\">%s</span> erfolgreiche Sicherungen durchgeführt."
787
 
788
+ #: views/backup.php:328
789
  msgid "Tips"
790
  msgstr "Tipps"
791
 
792
+ #: views/backup.php:329
793
  msgid "Backup your site at least once per week"
794
+ msgstr "Sichern Sie Ihre Seite mindestens einmal pro Woche."
795
 
796
+ #: views/backup.php:330
797
  msgid "Download all your backups and store them somewhere safe"
798
  msgstr ""
799
+ "Laden Sie all Ihre Sicherungen herunter und speichern Sie sie an einem "
800
+ "sicheren Ort."
801
 
802
+ #: views/backup.php:331
803
  msgid "Verify your backup files are good by taking a look at what's inside"
804
  msgstr ""
805
+ "Prüfen Sie, ob Ihr Sicherungs-Dateien in Ordnung sind, indem Sie einen Blick "
806
+ "auf den Inhalt werfen."
807
 
808
+ #: views/backup.php:336
809
  #, php-format
810
  msgid "Why not %s and schedule your backups!"
811
+ msgstr "Wie wäre es mit einem %s und geplanten Sicherungen!"
812
 
813
+ #: views/backup.php:336
814
  msgid "upgrade"
815
+ msgstr "Upgrade"
816
 
817
+ #: views/backup.php:345
818
  msgid "Register WP BackItUp"
819
+ msgstr "WP BackItUp registrieren"
820
 
821
+ #: views/backup.php:348
822
  msgid ""
823
  "Enter your name and email address below to receive <b>special offers</b> and "
824
  "access to our world class <b>support</b> team. <br />\n"
825
  " <br />Enter your license key below to activate it on this "
826
  "site."
827
  msgstr ""
828
+ "Geben Sie unten Ihren Namen und Ihre Email-Adresse ein, um <b>spezielle "
829
+ "Angebote</b> zu erhalten und auf unseren ersklassigen <b>Support</b> in "
830
+ "Anspruch nehmen zu können.<br />\n"
831
+ "<br />Geben Sie unten Ihren Lizenzschlüssel ein, um ihn für diese Seite zu "
832
+ "aktivieren."
833
 
834
+ #: views/backup.php:350
835
  msgid "name"
836
+ msgstr "Name"
837
 
838
+ #: views/backup.php:351
839
  msgid "email address"
840
+ msgstr "E-Mail-Adresse"
841
 
842
+ #: views/backup.php:352
843
  msgid "license key"
844
+ msgstr "Lizenzschlüssel"
845
 
846
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
847
  #, php-format
848
  msgid "%s"
849
+ msgstr "%s"
850
 
851
+ #: views/backup.php:353
852
  msgid "Free plugin customers do not need to enter license key."
853
  msgstr ""
854
+ "Nutzer der kostenlosen Plugin-Version müssen keinen Lizenzschlüssel eingeben."
855
 
856
+ #: views/backup.php:354
857
  msgid "Register"
858
  msgstr "Registrieren"
859
 
860
+ #: views/backup.php:363
861
  msgid "License Info"
862
  msgstr "Lizenzinformation"
863
 
864
+ #: views/backup.php:385
865
  msgid "Name"
866
  msgstr "Name"
867
 
868
+ #: views/backup.php:386
869
  msgid "Email"
870
  msgstr "E-Mail"
871
 
872
+ #: views/backup.php:387
873
  msgid "License Type"
874
  msgstr "Lizenztyp"
875
 
876
+ #: views/backup.php:388
877
  msgid "Expires"
878
+ msgstr "Läuft ab"
879
 
880
+ #: views/backup.php:391
881
  msgid "Enter license key to activate on this site."
882
+ msgstr "Lizenzschlüssel eingeben und für diese Seite aktivieren"
883
 
884
+ #: views/backup.php:398
885
  msgid "License Active"
886
+ msgstr "Lizenz aktiv"
887
 
888
+ #: views/backup.php:406
889
  msgid "License expired"
890
+ msgstr "Lizenz abgelaufen"
891
 
892
+ #: views/backup.php:410
893
  msgid "Update"
894
+ msgstr "Update"
895
 
896
+ #: views/backup.php:414
897
  msgid "Activate"
898
+ msgstr "Aktivieren"
899
 
900
+ #: views/backup.php:418
901
  #, php-format
902
  msgid "Purchase a %s license using the purchase link above."
903
+ msgstr "Erwerben Sie über den obenstehenden Link einen %s Lizenzschlüssel."
904
 
905
+ #: views/backup.php:418
906
  msgid "no-risk"
907
+ msgstr "kein Risiko"
908
 
909
+ #: views/backup.php:424
910
  #, php-format
911
  msgid ""
912
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
913
+ "<strong>product updates</strong> and access to our <strong>world class "
914
+ "support</strong> team."
915
  msgstr ""
916
+ "Bitte <a href=\"%s\" target=\"blank\">erneuern</a> Sie Ihre Lizenz jetzt für "
917
+ "ein weiteres Jahr mit <strong>Produkt-Updates</strong> und Unterstützung "
918
+ "durch unseren <strong>erstklassigen Kundendienst</strong>."
919
 
920
+ #: views/backup.php:435
921
  msgid "Useful Links"
922
  msgstr "Nützliche Links"
923
 
924
+ #: views/backup.php:438 views/backup.php:442
925
  msgid "Your account"
926
  msgstr "Dein Konto"
927
 
928
+ #: views/backup.php:445
929
  msgid "Documentation"
930
  msgstr "Dokumentation"
931
 
932
+ #: views/backup.php:448
933
  msgid "Get support"
934
  msgstr "Erhalte Support"
935
 
936
+ #: views/backup.php:451
937
  msgid "Feature request"
938
+ msgstr "Feature-Anfrage"
939
+
940
+ #: views/backup.php:453
941
+ msgid "Language Translations"
942
+ msgstr "Übersetzungen"
943
 
944
+ #: views/backup.php:455
945
  msgid "Contact"
946
  msgstr "Kontakt"
947
 
948
+ #: views/backup.php:478 views/backup.php:502
949
  msgid "WP BackItUp Backup Set"
950
+ msgstr "WP BackItUp Sicherungs-Set"
951
 
952
+ #: views/backup.php:480
953
  msgid ""
954
  "Below are the archive files included in this backup set. Click the link to "
955
  "download."
956
  msgstr ""
957
+ "Unten stehen die Archiv-Dateien, welche in diesem Sicherungs-Set enthalten "
958
+ "sind. Zum Download anklicken."
959
 
960
+ #: views/backup.php:503
961
  msgid "Please refresh this page to download your new backup files."
962
  msgstr ""
963
+ "Bitte aktualisieren Sie die Seite, um Ihre neuen Sicherungs-Dateien "
964
+ "herunterzuladen."
965
 
966
+ #: views/restore.php:13
967
  #, php-format
968
  msgid "%s Restore"
969
+ msgstr "%s Wiederherstellen"
970
 
971
+ #: views/restore.php:60
972
  msgid "Zip Files"
973
+ msgstr "Zip-Dateien"
974
 
975
+ #: views/restore.php:75
976
  #, php-format
977
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
978
  msgstr ""
979
+ "Fehler: Das Sicherungs-Verzeichnis existiert nicht. Bitte kontaktieren Sie "
980
+ "%s für Hilfestellung."
981
 
982
+ #: views/restore.php:82
983
  #, php-format
984
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
985
  msgstr ""
986
+ "Fehler: Das Wiederherstellungs-Verzeichnis existiert nicht. Bitte "
987
+ "kontaktieren Sie %s für Hilfestellung."
988
 
989
+ #: views/restore.php:166
990
  #, php-format
991
  msgid ""
992
  "<p>* The automated restore feature is only available to licensed customers. "
993
  "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP "
994
  "BackItUp risk free for 30 days.</p>"
995
  msgstr ""
996
+ "<p>* Die Funktion zur automatischen Wiederherstellung steht nur Premium-"
997
+ "Kunden von WP BackItUp zur Verfügung. Besuchen Sie <a href=\"%s\" target="
998
+ "\"_blank\">%s</a>, um WP BackItUp für 30 Tage risikofrei ausprobieren zu "
999
+ "können.</p>"
1000
 
1001
+ #: views/restore.php:178
1002
  msgid "Upload"
1003
+ msgstr "Upload"
1004
 
1005
+ #: views/restore.php:181
1006
  msgid ""
1007
  "Upload WP BackItUp archive(zip) files to add to your list of available "
1008
  "backups."
1009
  msgstr ""
1010
+ "Laden Sie WP BackItUp Archiv-Dateien (ZIP) hoch, um sie zur Liste "
1011
+ "verfügbarer Sicherungen hinzuzufügen. "
1012
 
1013
+ #: views/restore.php:198
1014
  msgid "WP BackItUp - Upload backup files"
1015
+ msgstr "WP BackItUp - Sicherungs-Dateien hochladen"
1016
 
1017
+ #: views/restore.php:199
1018
  msgid "Backup files may be uploaded into WP BackItUp with this form."
1019
  msgstr ""
1020
+ "Sicherungs-Dateien können über dieses Formular in WP BackItUp hochgeladen "
1021
+ "werden."
1022
 
1023
+ #: views/restore.php:199
1024
  msgid ""
1025
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
1026
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
1027
  "refresh this page."
1028
  msgstr ""
1029
+ "Sie können auch manuell über FTP in das WP BackItUp-Verzeichnis (wp-content/"
1030
+ "wpbackitup_backups) hochgeladen werden. Nachdem alle Dateien hochgeladen "
1031
+ "wurden, Seite aktualisieren."
1032
 
1033
+ #: views/restore.php:203
1034
  #, php-format
1035
  msgid "This feature requires %s version %s or later"
1036
+ msgstr "Diese Funktion erfordert die %s Version %s oder höher"
1037
 
1038
+ #: views/restore.php:209
1039
  msgid "Drop backup files here"
1040
+ msgstr "Sicherungs-Dateien hier ablegen"
1041
 
1042
+ #: views/restore.php:215
1043
  msgid ""
1044
  "* Reload this page when done uploading to see new backups appear in the "
1045
  "Available Backups section above. "
1046
  msgstr ""
1047
+ "* Aktualisieren Sie die Seite nach Abschluss des Uploads, damit die neuen "
1048
+ "Sicherungen oben in der Liste der verfügbaren Sicherungen erscheinen."
1049
 
1050
+ #: views/restore.php:244
1051
  msgid "Preparing for restore"
1052
+ msgstr "Wiederherstellung wird vorbereitet"
1053
 
1054
+ #: views/restore.php:245
1055
  msgid "Unzipping backup set"
1056
+ msgstr "Entpacke Sicherungs-Set"
1057
 
1058
+ #: views/restore.php:246
1059
  msgid "Validating backup file"
1060
+ msgstr "Überprüfe Sicherungs-Datei"
1061
 
1062
+ #: views/restore.php:247
1063
  msgid "Deactivating plugins"
1064
+ msgstr "Deaktiviere Plugins"
1065
 
1066
+ #: views/restore.php:248
1067
  msgid "Creating database restore point"
1068
+ msgstr "Erstelle Datenbank-Wiederherstellungspunkt"
1069
 
1070
+ #: views/restore.php:249
1071
  msgid "Staging content files"
1072
+ msgstr "Stelle Inhaltsdateien bereit"
1073
 
1074
+ #: views/restore.php:250
1075
  msgid "Restoring content files"
1076
+ msgstr "Stelle Inhaltsdateien wieder her"
1077
 
1078
+ #: views/restore.php:251
1079
  msgid "Restoring database"
1080
+ msgstr "Stelle Datenbank wieder her"
1081
 
1082
+ #: views/restore.php:252
1083
  msgid "Updating current user info"
1084
+ msgstr "Aktualisiere Benutzer-Informationen"
1085
 
1086
+ #: views/restore.php:253
1087
  msgid "Updating site URL"
1088
+ msgstr "Aktualisiere URL der Seite"
1089
 
1090
+ #: views/restore.php:255
1091
  msgid "Updating permalinks"
1092
+ msgstr "Aktualisiere Permanentlinks"
1093
 
1094
+ #: views/restore.php:261
1095
  msgid "Error 201: No file selected"
1096
+ msgstr "Fehler 201: Keine Datei ausgewählt"
1097
 
1098
+ #: views/restore.php:262
1099
  msgid "Error 202: Your file could not be uploaded"
1100
+ msgstr "Fehler 202: Datei konnte nicht hochgeladen werden"
1101
 
1102
+ #: views/restore.php:263
1103
  msgid "Error 203: Your backup could not be unzipped"
1104
+ msgstr "Fehler 203: Die Sicherung konnte nicht entpackt werden"
1105
 
1106
+ #: views/restore.php:264
1107
  msgid ""
1108
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1109
  "valid backup"
1110
  msgstr ""
1111
+ "Fehler 204: Die Sicherung schein ungültig zu sein. Bitte stellen Sie sicher, "
1112
+ "dass Sie ein gültiges Sicherung ausgewählt haben."
1113
 
1114
+ #: views/restore.php:265
1115
  msgid "Error 205: Cannot create restore point"
1116
+ msgstr "Fehler 205: Wiederherstellungspunkt kann nicht erstellt werden"
1117
 
1118
+ #: views/restore.php:266
1119
  msgid "Error 206: Unable to connect to your database"
1120
  msgstr ""
1121
+ "Fehler 206: Es kann keine Verbindung zu Ihrer Datenbank hergestellt werden"
1122
 
1123
+ #: views/restore.php:267
1124
  msgid ""
1125
  "Error 207: Unable to get current site URL from database. Please try again"
1126
  msgstr ""
1127
+ "Fehler 207: URL der Seite konnte nicht aus Datenbank ausgelesen werden. "
1128
+ "Bitte erneut versuchen."
1129
 
1130
+ #: views/restore.php:268
1131
  msgid ""
1132
  "Error 208: Unable to get current home URL from database. Please try again"
1133
  msgstr ""
1134
+ "Fehler 208: Aktuelle Haupt-URL konnte nicht aus Datenbank ausgelesen werden. "
1135
+ "Bitte erneut versuchen."
1136
 
1137
+ #: views/restore.php:269
1138
  msgid ""
1139
  "Error 209: Unable to get current user ID from database. Please try again"
1140
  msgstr ""
1141
+ "Fehler 209: Aktuelle Benutzer-ID konnte nicht aus Datenbank ausgelesen "
1142
+ "werden. Bitte erneut versuchen."
1143
 
1144
+ #: views/restore.php:270
1145
  msgid ""
1146
  "Error 210: Unable to get current user password from database. Please try "
1147
  "again"
1148
  msgstr ""
1149
+ "Fehler 210: Aktuelle Benutzer-Passwort konnte nicht aus Datenbank ausgelesen "
1150
+ "werden. Bitte erneut versuchen."
1151
 
1152
+ #: views/restore.php:271
1153
  msgid ""
1154
  "Error 211: Unable to get current user email from database. Please try again"
1155
  msgstr ""
1156
+ "Fehler 211: Aktuelle Benutzer-Email konnte nicht aus Datenbank ausgelesen "
1157
+ "werden. Bitte erneut versuchen."
1158
 
1159
+ #: views/restore.php:272
1160
  msgid ""
1161
  "Error 212: Unable to import your database. This may require importing the "
1162
  "file manually"
1163
  msgstr ""
1164
+ "Fehler 212: Datenbank konnte nicht importiert werden. Die Datei muss "
1165
+ "wahrscheinlich manuell importiert werden."
1166
 
1167
+ #: views/restore.php:273
1168
  msgid ""
1169
  "Warning 213: Unable to update your site URL value. Please check your "
1170
  "WordPress general settings to make sure your Site and WordPress URLs are "
1171
  "correct"
1172
  msgstr ""
1173
+ "Warnung 213: Wert der Seiten-URL konnte nicht aktualisiert werden. Bitte "
1174
+ "prüfen Sie die grundlegenden Einstellungen von WordPress und stellen Sie "
1175
+ "sicher, dass die URLs der Seite und von WordPress richtig sind."
1176
 
1177
+ #: views/restore.php:274
1178
  msgid ""
1179
  "Warning 214: Unable to update your home URL value. Please check your "
1180
  "WordPress general settings to make sure your Site and WordPress URLs are "
1181
  "correct"
1182
  msgstr ""
1183
+ "Warnung 214: Wert der Haupt-URL konnte nicht aktualisiert werden. Bitte "
1184
+ "prüfen Sie die grundlegenden Einstellungen von WordPress und stellen Sie "
1185
+ "sicher, dass die URLs der Seite und von WordPress richtig sind."
1186
 
1187
+ #: views/restore.php:275
1188
  msgid ""
1189
  "Warning 215: Unable to update your user information. This may require you to "
1190
  "login with the admin username and password that was used when the backup was "
1191
  "created"
1192
  msgstr ""
1193
+ "Warnung 215: Benutzerinformationen konnten nicht aktualisiert werden. Sie "
1194
+ "müssen sich wahrscheinlich mit den Admin-Zugangsdaten einloggen, welche zum "
1195
+ "Zeitpunkt des Backups gültig waren."
1196
 
1197
+ #: views/restore.php:276
1198
  msgid "Error 216: Database not found in backup"
1199
+ msgstr "Fehler 216: Datenbank in der Sicherung nicht gefunden."
1200
 
1201
+ #: views/restore.php:277
1202
  msgid "Warning 217: Unable to remove existing wp-content directory"
1203
  msgstr ""
1204
+ "Warnung 217: Das existierende wp-content-Verzeichnis konnte nicht gelöscht "
1205
+ "werden"
1206
 
1207
+ #: views/restore.php:278
1208
  msgid ""
1209
  "Error 218: Unable to create new wp-content directory. Please check your "
1210
  "CHMOD settings in /wp-content/"
1211
  msgstr ""
1212
+ "Fehler 218: Neues wp-content-Verzeichnis konnte nicht angelegt werden. Bitte "
1213
+ "prüfen Sie die CHMOD-Einstellungen in /wp-content/."
1214
 
1215
+ #: views/restore.php:279
1216
  msgid "Error 219: Unable to import wp-content. Please try again"
1217
  msgstr ""
1218
+ "Fehler 219: wp-content konnte nicht importiert werden. Bitte erneut "
1219
+ "versuchen."
1220
 
1221
+ #: views/restore.php:280
1222
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1223
  msgstr ""
1224
+ "Warnung 220: Import-Verzeichnis konnte nicht geleert werden. Keine Maßnahmen "
1225
+ "notwendig."
1226
 
1227
+ #: views/restore.php:281
1228
  #, php-format
1229
  msgid ""
1230
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1232
  "restore your site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" "
1233
  "> FAQs</a> for more info."
1234
  msgstr ""
1235
+ "Fehler 221: Der in der wp-config.php definierte Präfix für Tabellen weicht "
1236
+ "von dem in der Sicherung definierten Wert ab. Sie müssen den Präfix erst im "
1237
+ "wp-config.php anpassen, bevor Sie Ihre Seite wiederherstellen können. Lesen "
1238
+ "Sie die <a href =\"%s\" target=\"_blank\" > FAQs</a> auf www.wpbackitup.com "
1239
+ "für weitere Infos."
1240
 
1241
+ #: views/restore.php:282
1242
  msgid "Error 222: Unable to create restore folder"
1243
+ msgstr "Fehler 222: Wiederherstellungsverzeichnis konnte nicht erstellt werden"
1244
 
1245
+ #: views/restore.php:283
1246
  msgid ""
1247
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1248
  "restore the database to its previous state but were unsuccessful. Please "
1249
  "contact WP BackItUp customer support and do not attempt to perform any "
1250
  "further restores"
1251
  msgstr ""
1252
+ "Fehler 223: Während der Wiederherstellung ist ein Fehler aufgetreten. WP "
1253
+ "BackItUp gelang es nicht, den vorhergegangenen Zustand der Datenbank "
1254
+ "wiederherzustellen. Bitte kontaktieren Sie den Kundendienst von WP BackItUp "
1255
+ "und unternehmen Sie vorerst keine weiteren Versuche zu Wiederherstellung."
1256
 
1257
+ #: views/restore.php:284
1258
  msgid ""
1259
  "Error 224: An error occurred during the restore, however, we have "
1260
  "successfully restored your database to the previous state"
1261
  msgstr ""
1262
+ "Fehler 224: Ein Fehler ist während der Wiederherstellung aufgetreten. Die "
1263
+ "Datenbank konnte allerdings trotzdem erfolgreich wiederhergestellt werden."
1264
 
1265
+ #: views/restore.php:285
1266
  msgid ""
1267
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1268
  msgstr ""
1269
+ "Fehler 225: Die Wiederherstellungs-Funktion steht nur lizensierten Benutzern "
1270
+ "von WP BackItUp zur Verfügung."
1271
 
1272
+ #: views/restore.php:286
1273
  msgid ""
1274
  "Error 226: Restore cannot proceed because your backup was created using a "
1275
  "different version of WordPress"
1276
  msgstr ""
1277
+ "Fehler 226. Die Wiederherstellung kann nicht fortgesetzt werden, da Sie eine "
1278
+ "abweichende Version von WordPress verwenden."
1279
 
1280
+ #: views/restore.php:287
1281
  msgid ""
1282
  "Error 227: Restore cannot proceed because your backup was created using a "
1283
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1284
  "help convert this backup to the current version"
1285
  msgstr ""
1286
+ "Fehler 227. Die Wiederherstellung kann nicht fortgesetzt werden, da Ihre "
1287
+ "Sicherung mit einer abweichenden Version von WP BackItUp erstellt wurde. "
1288
+ "Bitte setzen Sie sich mit dem WP BackItUp-Kundendienst in Verbindung, um "
1289
+ "sich bei der Konvertierung zur aktuellen Version helfen zu lassen."
1290
 
1291
+ #: views/restore.php:288
1292
  msgid ""
1293
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1294
  "restore. However, we were able to successfully revert the database back to "
1295
  "its original state . This error may require importing the database manually"
1296
  msgstr ""
1297
+ "Fehler 230: Während der Wiederherstellung der Datenbank trat ein "
1298
+ "unerwarteter Fehler auf. Wir konnten die Datenbank aber erfolgreich in ihren "
1299
+ "ursprünglichen Zustand zurückversetzen. Aufgrund dieses Fehlers ist ein "
1300
+ "manueller Import der Datenbank notwendig."
1301
 
1302
+ #: views/restore.php:289
1303
  msgid ""
1304
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1305
  "utility available. Please contact support"
1306
  msgstr ""
1307
+ "Fehler 235: WP BackItUp kann nicht fortfahren, da kein ZIP-Dienstprogramm "
1308
+ "verfügbar ist. Bitte setzen Sie sich mit dem Kundendienst in Verbindung."
1309
 
1310
+ #: views/restore.php:290
1311
  msgid ""
1312
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1313
  "running. Please wait for the backup to complete and then try again"
1314
  msgstr ""
1315
+ "Fehler 250: WP BackItUp kann nicht mit der Wiederherstellung beginnen, weil "
1316
+ "eine Sicherung läuft. Bitte warten Sie, bis die Sicherung abgeschlossen "
1317
+ "wurde und versuchen Sie es dann erneut."
1318
 
1319
+ #: views/restore.php:292
1320
  msgid ""
1321
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1322
  "manifest is empty"
1323
  msgstr ""
1324
+ "Fehler 251: WP BackItUp kann nicht mit der Wiederherstellung anfangen, da "
1325
+ "das Sicherungs-Manifest leer ist."
1326
 
1327
+ #: views/restore.php:293
1328
  msgid ""
1329
  "Error 252: At least one zip file is missing from your backup set. Please "
1330
  "make sure to upload all zip files that were part of this backup"
1331
  msgstr ""
1332
+ "Fehler 252: Mindestens eine ZIP-Datei fehlt in Ihrem Sicherungs-Set. Bitte "
1333
+ "stellen Sie sicher, dass alle zu dieser Sicherung gehörenden Dateien "
1334
+ "hochgeladen wurden."
1335
 
1336
+ #: views/restore.php:294
1337
  msgid ""
1338
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1339
  "Please make sure to upload only zip files that were part of this backup"
1340
  msgstr ""
1341
+ "Fehler 253: Die Sicherung enthält eine ZIP-Datei, welche nicht im Manifest "
1342
+ "steht. Bitte stellen Sie sicher, dass nur die zu dieser Sicherung gehörenden "
1343
+ "Dateien hochgeladen wurden."
1344
 
1345
+ #: views/restore.php:296
1346
  msgid ""
1347
  "Warning 300: Unable to restore all WordPress content. Please review your "
1348
  "restore logs to see what WP BackItUp was unable to restore"
1349
  msgstr ""
1350
+ "Warnung 300: WordPress-Inhalt konnte nicht wiederhergestellt werden. Bitte "
1351
+ "schauen Sie sich die Wiederherstellungsprotokolle an, um herauszufinden, was "
1352
+ "nicht wiederhergestellt werden konnte."
1353
 
1354
+ #: views/restore.php:297
1355
  msgid ""
1356
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1357
  "to see what WP BackItUp was unable to restore"
1358
  msgstr ""
1359
+ "Warnung 305: Es konnten nicht alle Plugins wiederhergestellt werden. Bitte "
1360
+ "schauen Sie sich die Wiederherstellungsprotokolle an, um herauszufinden, was "
1361
+ "nicht wiederhergestellt werden konnte."
1362
 
1363
+ #: views/restore.php:299
1364
  msgid "Error 2001: Unable to prepare site for restore"
1365
  msgstr ""
1366
+ "Fehler 2001: Seite konnte nicht für Wiederherstellung vorbereitet werden"
1367
 
1368
+ #: views/restore.php:300
1369
  msgid "Error 2002: Unable to unzip backup"
1370
+ msgstr "Fehler 2002: Sicherung konnte nicht entpackt werden"
1371
 
1372
+ #: views/restore.php:301
1373
  msgid "Error 2003: Unable to validate backup"
1374
+ msgstr "Fehler 2003: Sicherung konnte nicht geprüft werden"
1375
 
1376
+ #: views/restore.php:302
1377
  msgid "Error 2004: Unable to create restore point"
1378
+ msgstr "Fehler 2004: Wiederherstellungspunkt kann nicht erstellt werden"
1379
 
1380
+ #: views/restore.php:303
1381
  msgid "Error 2005: Unable to stage wp-content"
1382
+ msgstr "Fehler 2005: wp-content konnte nicht bereitgestellt werden"
1383
 
1384
+ #: views/restore.php:304
1385
  msgid "Error 2006: Unable to restore content files"
1386
+ msgstr "Fehler 2006: Inhaltsdateien konnten nicht wiederhergestellt werden"
1387
 
1388
+ #: views/restore.php:305
1389
  msgid "Error 2007: Unable to restore database"
1390
+ msgstr "Fehler 2007: Datenbank konnte nicht wiederhergestellt werden"
1391
 
1392
+ #: views/restore.php:306
1393
  msgid "Error 2999: Unexpected error encountered"
1394
+ msgstr "Fehler 2999: Unerwarteter Fehler aufgetreten"
1395
 
1396
+ #: views/restore.php:313
1397
  msgid ""
1398
  "Restore completed successfully. If you are prompted to login please do so "
1399
  "with your current username and password"
1400
  msgstr ""
1401
+ "Wiederherstellung erfolgreich abgeschlossen. Wenn Sie zum Login aufgefordert "
1402
+ "werden, geben Sie bitte Ihren aktuellen Benutzernamen und Ihr aktuelles "
1403
+ "Passwort ein."
1404
 
1405
+ #: views/settings.php:13
1406
  #, php-format
1407
  msgid "%s Settings"
1408
+ msgstr "%s Einstellungen"
1409
 
1410
+ #: views/settings.php:40
1411
  msgid "Email Notifications"
1412
+ msgstr "Email-Benachrichtigungen"
1413
 
1414
+ #: views/settings.php:41
1415
  msgid ""
1416
  "Please enter your email address if you would like to receive backup email "
1417
  "notifications."
1418
  msgstr ""
1419
+ "Bitte geben Sie Ihre Email-Adresse ein, wenn Sie per Email über Sicherungen "
1420
+ "benachrichtigt werden wollen."
1421
 
1422
+ #: views/settings.php:42
1423
  msgid ""
1424
  "Backup email notifications will be sent for every backup and will contain "
1425
  "status information related to the backup."
1426
  msgstr ""
1427
+ "Email-Benachrichtigungen werden zu jeder Sicherung versandt und enthalten "
1428
+ "Status-Informationen zu dieser Sicherung."
1429
 
1430
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1431
+ #: views/settings.php:111
1432
  msgid "Save"
1433
+ msgstr "Speichern"
1434
 
1435
+ #: views/settings.php:60
1436
  msgid "Backup Retention"
1437
+ msgstr "Sicherung-Aufbewahrung"
1438
 
1439
+ #: views/settings.php:61
1440
  msgid ""
1441
  "Enter the number of backup archives that you would like to remain on the "
1442
  "server."
1443
  msgstr ""
1444
+ "Geben Sie die Anzahl der Sicherungen ein, welche auf dem Server verbleiben "
1445
+ "sollen."
1446
 
1447
+ #: views/settings.php:62
1448
  msgid ""
1449
  "Many hosts limit the amount of space that you can take up on their servers. "
1450
  "This option tells WP BackItUp the maximum number of backup archives that "
1451
  "should remain on your hosts server. Don't worry, we will always remove the "
1452
  "oldest backup archives first."
1453
  msgstr ""
1454
+ "Viele Hoster begrenzen den Webspace, welcher Ihnen auf dem Server zur "
1455
+ "Verfügung steht. Mit dieser Option können Sie festlegen, wie viele "
1456
+ "Sicherungs-Archive WP BackItUp maximal auf dem Server belassen darf. Aber "
1457
+ "keine Angst: es werden immer die jeweils ältesten Sicherungen zuerst "
1458
+ "gelöscht."
1459
 
1460
+ #: views/settings.php:81
1461
  msgid "Turn on logging?"
1462
+ msgstr "Protokollierung anschalten?"
1463
 
1464
+ #: views/settings.php:82
1465
  msgid "Yes"
1466
+ msgstr "Ja"
1467
 
1468
+ #: views/settings.php:83
1469
  msgid "No"
1470
+ msgstr "Nein"
1471
 
1472
+ #: views/settings.php:84
1473
  msgid ""
1474
  "This option should only be turned on when troubleshooting issues with "
1475
  "WPBackItUp support."
1476
  msgstr ""
1477
+ "Diese Option sollte nur dann eingeschaltet werden, wenn gemeinsam mit dem "
1478
+ "WPBackItUp-Kundendienst nach Problemen gesucht wird."
1479
 
1480
+ #: views/settings.php:89
1481
  msgid "Advanced Settings"
1482
+ msgstr "Erweiterte Einstellungen"
1483
 
1484
+ #: views/settings.php:90
1485
  msgid ""
1486
  "These options should only be changed when working with WP BackItUp support."
1487
  msgstr ""
1488
+ "Diese Optionen sollten nur nach Rücksprache mit dem WPBackItUp-Kundendienst "
1489
+ "geändert werden."
1490
 
1491
+ #: views/settings.php:93
1492
  msgid "Plugins Batch Size"
1493
+ msgstr "Batch-Größe Plugins"
1494
 
1495
+ #: views/settings.php:98
1496
  msgid "Themes Batch Size"
1497
+ msgstr "Batch-Größe Themes"
1498
 
1499
+ #: views/settings.php:103
1500
  msgid "Uploads Batch Size"
1501
+ msgstr "Batch-Größe Uploads"
1502
 
1503
+ #: views/settings.php:108
1504
  msgid "Others Batch Size"
1505
+ msgstr "Batch-Größe Sonstiges"
1506
 
1507
+ #: views/support.php:13
1508
  #, php-format
1509
  msgid "%s Support"
1510
  msgstr "%s Support"
1511
 
1512
+ #: views/support.php:32
1513
  msgid "Support email sent successfully!"
1514
+ msgstr "Email an den Kundendienst erfolgreich versandt!"
1515
 
1516
+ #: views/support.php:45
1517
  msgid "Email Logs to Support"
1518
+ msgstr "Protokolle an Kundendienst senden"
1519
 
1520
+ #: views/support.php:46
1521
  msgid "This form should be used to send log files to support only."
1522
  msgstr ""
1523
+ "Dieses Formular sollte nur dazu verwendet werden, um Protokolldateien an den "
1524
+ "Kundendienst zu senden."
1525
 
1526
+ #: views/support.php:47
1527
  msgid ""
1528
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1529
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1530
  "using this form."
1531
  msgstr ""
1532
+ "Bitte erstellen Sie zuerst ein Support-Ticket über das WP BackItUp <a href="
1533
+ "\"https://www.wpbackitup.com/support\" target=\"_blank\">Kundendienst-"
1534
+ "Portal</a>, bevor Sie dieses Formular verwenden. "
1535
 
1536
+ #: views/support.php:48
1537
  msgid ""
1538
  "The ticket id you receive from your support request should be entered in the "
1539
  "ticket id field below."
1540
  msgstr ""
1541
+ "Die Ticket-ID, welche Sie zu Ihrer Support-Anfrage erhalten, sollten Sie "
1542
+ "unten in das Ticket-ID-Feld eintragen."
1543
 
1544
+ #: views/support.php:49
1545
  msgid "your email address"
1546
  msgstr "Deine E-Mail Adresse."
1547
 
1548
+ #: views/support.php:59
1549
  msgid "support ticket id"
1550
+ msgstr "ID des Support-Tickets"
1551
 
1552
+ #: views/support.php:69
1553
  msgid "problem description or additional information"
1554
+ msgstr "Problembeschreibung oder zusätzliche Informationen"
1555
 
1556
+ #: views/support.php:80
1557
  msgid "Send"
1558
  msgstr "Senden"
1559
 
1560
+ #: views/support.php:83
1561
  msgid "Please register your version of WP BackItUp for access to support."
1562
  msgstr ""
1563
+ "Bitte registrieren Sie Ihre Version von WP BackItUp, um den Kundendienst in "
1564
+ "Anspruch nehmen zu können."
1565
 
1566
+ #: views/support.php:87
1567
  msgid "Premium customers receive priority support."
1568
+ msgstr "Premium-Kunden erhalten bevorzugten Support."
1569
 
1570
+ #: wp-backitup.php:98 wp-backitup.php:99
1571
  #, php-format
1572
  msgid "Every %s hours"
1573
+ msgstr "Alle %s Stunden"
1574
+
1575
+ #: wp-backitup.php:137
1576
+ msgid "Cleanup"
1577
+ msgstr "Bereinigung"
1578
+
1579
+ #~ msgid "Preparing for backup...Done"
1580
+ #~ msgstr "Bereite Backup vor...Fertig"
1581
+
1582
+ #~ msgid "Backing up database...Done"
1583
+ #~ msgstr "Sichere die Datenbank...Fertig"
1584
+
1585
+ #~ msgid "Creating backup information file...Done"
1586
+ #~ msgstr "Erstelle Datei mit Backup-Informationen...Fertig"
1587
+
1588
+ #~ msgid "Backing up themes...Done"
1589
+ #~ msgstr "Sichere Themes...Fertig"
1590
+
1591
+ #~ msgid "Backing up plugins...Done"
1592
+ #~ msgstr "Sichere Plugins...Fertig"
1593
+
1594
+ #~ msgid "Backing up uploads...Done"
1595
+ #~ msgstr "Sichere Uploads...Fertig"
1596
+
1597
+ #~ msgid "Backing up miscellaneous files...Done"
1598
+ #~ msgstr "Sichere sonstige Dateien...Fertig"
1599
+
1600
+ #~ msgid "Finalizing backup...Done"
1601
+ #~ msgstr "Schließe Backup ab...Fertig"
1602
+
1603
+ #~ msgid "Validating backup...Done"
1604
+ #~ msgstr "Überprüfe Backup...Fertig"
1605
+
1606
+ #~ msgid "Cleaning up...Done"
1607
+ #~ msgstr "Räume auf...Fertig"
1608
+
1609
+ #~ msgid "Steps Completed"
1610
+ #~ msgstr "Schritte abgeschlossen"
languages/wp-backitup-en_US.mo CHANGED
Binary file
languages/wp-backitup-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPBackItUp\n"
4
- "POT-Creation-Date: 2015-08-14 10:31-0400\n"
5
- "PO-Revision-Date: 2015-08-14 10:31-0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPBackItUp <translations@wpbackitup.com>\n"
8
  "Language: en_US\n"
@@ -15,176 +15,195 @@ msgstr ""
15
  "X-Poedit-KeywordsList: _;__;_e\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
19
- #: views/backup.php:179
 
20
  msgid "Backup"
21
  msgstr ""
22
 
23
- #: lib/includes/class-wpbackitup-admin.php:175
24
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
25
  msgid "Restore"
26
  msgstr ""
27
 
28
- #: lib/includes/class-wpbackitup-admin.php:179
29
  msgid "Support"
30
  msgstr ""
31
 
32
- #: lib/includes/class-wpbackitup-admin.php:182
33
  msgid "Settings"
34
  msgstr ""
35
 
36
- #: lib/includes/class-wpbackitup-admin.php:203
37
  msgid ""
38
  "The backup you have selected exceeds what your host allows you to upload."
39
  msgstr ""
40
 
41
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
42
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
43
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
44
- #: views/backup.php:312 views/backup.php:313
45
  msgid "Warning"
46
  msgstr ""
47
 
48
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
49
  msgid "Error"
50
  msgstr ""
51
 
52
- #: lib/includes/class-wpbackitup-admin.php:206
53
  msgid "Response"
54
  msgstr ""
55
 
56
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
57
- #: views/restore.php:205
58
  msgid "Status"
59
  msgstr ""
60
 
61
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
62
  msgid "Download"
63
  msgstr ""
64
 
65
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
66
- #: views/restore.php:111
67
  msgid "Delete"
68
  msgstr ""
69
 
70
- #: lib/includes/class-wpbackitup-admin.php:211
71
  msgid "(JS997) Unexpected error"
72
  msgstr ""
73
 
74
- #: lib/includes/class-wpbackitup-admin.php:212
75
  msgid "(JS998) Unexpected error"
76
  msgstr ""
77
 
78
- #: lib/includes/class-wpbackitup-admin.php:213
79
  msgid "(JS999) An unexpected error has occurred"
80
  msgstr ""
81
 
82
- #: lib/includes/class-wpbackitup-admin.php:214
83
  msgid "Scheduled has been saved."
84
  msgstr ""
85
 
86
- #: lib/includes/class-wpbackitup-admin.php:215
87
  msgid "Scheduled was not saved."
88
  msgstr ""
89
 
90
- #: lib/includes/class-wpbackitup-admin.php:216
91
  msgid "Are you sure you want to restore your site?"
92
  msgstr ""
93
 
94
- #: lib/includes/class-wpbackitup-admin.php:217
95
  msgid "Are you sure ?"
96
  msgstr ""
97
 
98
- #: lib/includes/class-wpbackitup-admin.php:218
99
  msgid "This file cannot be delete!"
100
  msgstr ""
101
 
102
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
103
  msgid "View Log"
104
  msgstr ""
105
 
106
- #: lib/includes/class-wpbackitup-admin.php:220
107
  msgid "New Backup!"
108
  msgstr ""
109
 
110
- #: lib/includes/class-wpbackitup-admin.php:221
111
  msgid "Uploaded Backup"
112
  msgstr ""
113
 
114
- #: lib/includes/class-wpbackitup-admin.php:480
115
  msgid "Backup Queued"
116
  msgstr ""
117
 
118
- #: lib/includes/class-wpbackitup-admin.php:482
119
  msgid "Backup could not be queued"
120
  msgstr ""
121
 
122
- #: lib/includes/class-wpbackitup-admin.php:485
123
- msgid "Backup already in queue"
124
- msgstr ""
125
-
126
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
127
- msgid "Backup Cancelled"
128
  msgstr ""
129
 
130
- #: lib/includes/class-wpbackitup-admin.php:535
131
  msgid "No backup file selected."
132
  msgstr ""
133
 
134
- #: lib/includes/class-wpbackitup-admin.php:542
135
  msgid "No user id found."
136
  msgstr ""
137
 
138
- #: lib/includes/class-wpbackitup-admin.php:553
139
  msgid "Restore Queued"
140
  msgstr ""
141
 
142
- #: lib/includes/class-wpbackitup-admin.php:555
143
  msgid "Restore could not be queued"
144
  msgstr ""
145
 
146
- #: lib/includes/class-wpbackitup-admin.php:558
147
  msgid "Restore already in queue"
148
  msgstr ""
149
 
150
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
151
  msgid "No response log found."
152
  msgstr ""
153
 
154
- #: lib/includes/class-wpbackitup-admin.php:836
155
- #: lib/includes/class-wpbackitup-admin.php:844
156
- #: lib/includes/class-wpbackitup-admin.php:873
157
- #: lib/includes/class-wpbackitup-admin.php:880
158
- #: lib/includes/class-wpbackitup-admin.php:887
159
- #: lib/includes/class-wpbackitup-admin.php:894
160
  msgid "Please enter a number"
161
  msgstr ""
162
 
163
- #: lib/includes/class-wpbackitup-admin.php:865
164
- #: lib/includes/class-wpbackitup-admin.php:972
165
  msgid "Please enter a valid email"
166
  msgstr ""
167
 
168
- #: lib/includes/class-wpbackitup-admin.php:979
169
  msgid "Please enter your support ticket id"
170
  msgstr ""
171
 
172
- #: lib/includes/class-wpbackitup-admin.php:984
173
  msgid "Please only enter numbers in this field"
174
  msgstr ""
175
 
176
- #: lib/includes/class-wpbackitup-admin.php:1645
177
  msgid "License is invalid."
178
  msgstr ""
179
 
180
- #: lib/includes/class-wpbackitup-admin.php:1650
181
  msgid "License has expired."
182
  msgstr ""
183
 
184
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
185
  msgid "Activation limit has been reached."
186
  msgstr ""
187
 
 
 
 
 
188
  #: lib/includes/handler_upload.php:29
189
  msgid "Invalid Nonce"
190
  msgstr ""
@@ -210,320 +229,290 @@ msgstr ""
210
  msgid "Could not import file into WP BackItUp backup set."
211
  msgstr ""
212
 
213
- #: lib/includes/job_backup.php:851
214
- msgid "Preparing for backup...Done"
215
- msgstr ""
216
-
217
- #: lib/includes/job_backup.php:852
218
- msgid "Backing up database...Done"
219
- msgstr ""
220
-
221
- #: lib/includes/job_backup.php:853
222
- msgid "Creating backup information file...Done"
223
- msgstr ""
224
-
225
- #: lib/includes/job_backup.php:854
226
- msgid "Backing up themes...Done"
227
- msgstr ""
228
-
229
- #: lib/includes/job_backup.php:855
230
- msgid "Backing up plugins...Done"
231
- msgstr ""
232
-
233
- #: lib/includes/job_backup.php:856
234
- msgid "Backing up uploads...Done"
235
- msgstr ""
236
-
237
- #: lib/includes/job_backup.php:857
238
- msgid "Backing up miscellaneous files...Done"
239
- msgstr ""
240
-
241
- #: lib/includes/job_backup.php:858
242
- msgid "Finalizing backup...Done"
243
- msgstr ""
244
-
245
- #: lib/includes/job_backup.php:859
246
- msgid "Validating backup...Done"
247
- msgstr ""
248
-
249
- #: lib/includes/job_backup.php:860
250
- msgid "Cleaning up...Done"
251
  msgstr ""
252
 
253
- #: lib/includes/job_backup.php:870
254
  #, php-format
255
  msgid "%s - Backup completed successfully."
256
  msgstr ""
257
 
258
- #: lib/includes/job_backup.php:871
259
  msgid "Your backup completed successfully."
260
  msgstr ""
261
 
262
- #: lib/includes/job_backup.php:874
263
  #, php-format
264
  msgid "%s - Backup did not complete successfully."
265
  msgstr ""
266
 
267
- #: lib/includes/job_backup.php:875
268
  msgid "Your backup did not complete successfully."
269
  msgstr ""
270
 
271
- #: lib/includes/job_backup.php:880
272
  #, php-format
273
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
274
  msgstr ""
275
 
276
- #: lib/includes/job_backup.php:881
277
  msgid "Backup date:"
278
  msgstr ""
279
 
280
- #: lib/includes/job_backup.php:882
281
  msgid "Number of backups completed with WP BackItUp:"
282
  msgstr ""
283
 
284
- #: lib/includes/job_backup.php:884
285
  msgid "Completion Code:"
286
  msgstr ""
287
 
288
- #: lib/includes/job_backup.php:885
289
  msgid "WP BackItUp Version:"
290
  msgstr ""
291
 
292
- #: lib/includes/job_backup.php:891
293
- msgid "Steps Completed"
294
- msgstr ""
295
-
296
- #: lib/includes/job_backup.php:912
297
  #, php-format
298
  msgid "Checkout %s for info about WP BackItUp and our other products."
299
  msgstr ""
300
 
301
- #: lib/includes/job_backup.php:1088
302
  msgid ""
303
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
304
  "settings of your wp-backitup backup directory"
305
  msgstr ""
306
 
307
- #: lib/includes/job_backup.php:1089
308
  msgid ""
309
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
310
  "your wp-backitup plugin directory"
311
  msgstr ""
312
 
313
- #: lib/includes/job_backup.php:1090
314
  msgid "(103) Unable to backup your files. Please try again"
315
  msgstr ""
316
 
317
- #: lib/includes/job_backup.php:1091
318
  msgid "(104) Unable to export your database. Please try again"
319
  msgstr ""
320
 
321
- #: lib/includes/job_backup.php:1092
322
  msgid "(105) Unable to export site information file. Please try again"
323
  msgstr ""
324
 
325
- #: lib/includes/job_backup.php:1093
326
  msgid "(106) Unable to cleanup your backup directory"
327
  msgstr ""
328
 
329
- #: lib/includes/job_backup.php:1094
330
  msgid "(107) Unable to compress(zip) your backup. Please try again"
331
  msgstr ""
332
 
333
- #: lib/includes/job_backup.php:1095
334
  msgid "(108) Unable to backup your site data files. Please try again"
335
  msgstr ""
336
 
337
- #: lib/includes/job_backup.php:1096
338
  msgid "(109) Unable to finalize backup. Please try again"
339
  msgstr ""
340
 
341
- #: lib/includes/job_backup.php:1097
342
  msgid ""
343
  "(114) Your database was accessible but an export could not be created. "
344
  "Please contact support by clicking the get support link on the right. Please "
345
  "let us know who your host is when you submit the request"
346
  msgstr ""
347
 
348
- #: lib/includes/job_backup.php:1098
349
  msgid "(120) Unable to backup your themes. Please try again"
350
  msgstr ""
351
 
352
- #: lib/includes/job_backup.php:1099
353
  msgid "(121) Unable to backup your plugins. Please try again"
354
  msgstr ""
355
 
356
- #: lib/includes/job_backup.php:1100
357
  msgid "(122) Unable to backup your uploads. Please try again"
358
  msgstr ""
359
 
360
- #: lib/includes/job_backup.php:1101
361
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
362
  msgstr ""
363
 
364
- #: lib/includes/job_backup.php:1102
365
  msgid ""
366
  "(125) Unable to compress your backup because there is no zip utility "
367
  "available. Please contact support"
368
  msgstr ""
369
 
370
- #: lib/includes/job_backup.php:1103
371
  msgid "(126) Unable to validate your backup. Please try again"
372
  msgstr ""
373
 
374
- #: lib/includes/job_backup.php:1104
375
  msgid "(127) Unable to create inventory of files to backup. Please try again"
376
  msgstr ""
377
 
378
- #: lib/includes/job_backup.php:1105
379
  msgid "(128) Unable to create job control record. Please try again"
380
  msgstr ""
381
 
382
- #: lib/includes/job_backup.php:1107
383
  msgid ""
384
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
385
  "settings of your wp-backitup backup directory"
386
  msgstr ""
387
 
388
- #: lib/includes/job_backup.php:1108
389
  msgid ""
390
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
391
  "your wp-backitup plugin directory"
392
  msgstr ""
393
 
394
- #: lib/includes/job_backup.php:1109
395
  msgid "(2103) Unable to backup your files. Please try again"
396
  msgstr ""
397
 
398
- #: lib/includes/job_backup.php:1110
399
  msgid "(2104) Unable to export your database. Please try again"
400
  msgstr ""
401
 
402
- #: lib/includes/job_backup.php:1111
403
  msgid "(2105) Unable to export site information file. Please try again"
404
  msgstr ""
405
 
406
- #: lib/includes/job_backup.php:1112
407
  msgid "(2106) Unable to cleanup your backup directory"
408
  msgstr ""
409
 
410
- #: lib/includes/job_backup.php:1113
411
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
412
  msgstr ""
413
 
414
- #: lib/includes/job_backup.php:1114
415
  msgid "(2108) Unable to backup your site data files. Please try again"
416
  msgstr ""
417
 
418
- #: lib/includes/job_backup.php:1115
419
  msgid "(2109) Unable to finalize backup. Please try again"
420
  msgstr ""
421
 
422
- #: lib/includes/job_backup.php:1116
423
  msgid ""
424
  "(2114) Your database was accessible but an export could not be created. "
425
  "Please contact support by clicking the get support link on the right. Please "
426
  "let us know who your host is when you submit the request"
427
  msgstr ""
428
 
429
- #: lib/includes/job_backup.php:1117
430
  msgid "(2120) Unable to backup your themes. Please try again"
431
  msgstr ""
432
 
433
- #: lib/includes/job_backup.php:1118
434
  msgid "(2121) Unable to backup your plugins. Please try again"
435
  msgstr ""
436
 
437
- #: lib/includes/job_backup.php:1119
438
  msgid "(2122) Unable to backup your uploads. Please try again"
439
  msgstr ""
440
 
441
- #: lib/includes/job_backup.php:1120
442
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
443
  msgstr ""
444
 
445
- #: lib/includes/job_backup.php:1121
446
  msgid ""
447
  "(2125) Unable to compress your backup because there is no zip utility "
448
  "available. Please contact support"
449
  msgstr ""
450
 
451
- #: lib/includes/job_backup.php:1122
452
  msgid "(2126) Unable to validate your backup. Please try again"
453
  msgstr ""
454
 
455
- #: lib/includes/job_backup.php:1123
456
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
457
  msgstr ""
458
 
459
- #: lib/includes/job_backup.php:1124
460
  msgid "(2128) Unable to create job control record. Please try again"
461
  msgstr ""
462
 
463
- #: lib/includes/job_backup.php:1127
464
  msgid "(999) Unexpected error"
465
  msgstr ""
466
 
467
  #. TRANSLATORS: %s = plugin name.
468
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
469
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
470
- #: views/backup.php:20
471
  #, php-format
472
  msgid "%s Dashboard"
473
  msgstr ""
474
 
475
- #: views/backup.php:150
 
 
 
 
476
  #, php-format
477
  msgid "Backup folder does not exist. Please contact %s for assistance."
478
  msgstr ""
479
 
480
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
481
  msgid "support"
482
  msgstr ""
483
 
484
- #: views/backup.php:153 views/backup.php:159
485
  msgid "Close"
486
  msgstr ""
487
 
488
- #: views/backup.php:174
489
  msgid ""
490
  "Click the backup button to create a zipped backup file of this site's "
491
  "database, plugins, themes and settings."
492
  msgstr ""
493
 
494
- #: views/backup.php:175
495
  msgid ""
496
  "Once your backup file has been created it will appear in the available "
497
  "backups section below. This file may remain on your hosting providers server "
498
  "but we recommend that you download and save it somewhere safe."
499
  msgstr ""
500
 
501
- #: views/backup.php:176
502
  msgid ""
503
  "WP BackItUp premium customers can use these backup files to perform an "
504
  "automated restore of their site."
505
  msgstr ""
506
 
507
- #: views/backup.php:180
508
  msgid "Cancel"
509
  msgstr ""
510
 
511
- #: views/backup.php:187
512
  #, php-format
513
  msgid ""
514
  "WP BackItUp lite customers may use these backup files to manually restore "
515
  "their site. Please visit %s for manual restore instructions."
516
  msgstr ""
517
 
518
- #: views/backup.php:194
519
  msgid "Backup Schedule"
520
  msgstr ""
521
 
522
- #: views/backup.php:196
523
  msgid "Select the days of the week you would like your backup to run."
524
  msgstr ""
525
 
526
- #: views/backup.php:198
527
  msgid ""
528
  "Backup your site once per week or every day, it's up to you. If you have "
529
  "email notifications turned on we'll even send you an email when it's done. "
@@ -532,187 +521,207 @@ msgid ""
532
  "but we recommend that you download and save it somewhere safe."
533
  msgstr ""
534
 
535
- #: views/backup.php:200
536
  msgid "Please make sure to schedule your backup for at least once per week."
537
  msgstr ""
538
 
539
- #: views/backup.php:204
540
  msgid "Monday"
541
  msgstr ""
542
 
543
- #: views/backup.php:205
544
  msgid "Tuesday"
545
  msgstr ""
546
 
547
- #: views/backup.php:206
548
  msgid "Wednesday"
549
  msgstr ""
550
 
551
- #: views/backup.php:207
552
  msgid "Thursday"
553
  msgstr ""
554
 
555
- #: views/backup.php:208
556
  msgid "Friday"
557
  msgstr ""
558
 
559
- #: views/backup.php:209
560
  msgid "Saturday"
561
  msgstr ""
562
 
563
- #: views/backup.php:210
564
  msgid "Sunday"
565
  msgstr ""
566
 
567
- #: views/backup.php:213
568
  msgid "Save Schedule"
569
  msgstr ""
570
 
571
- #: views/backup.php:218
572
  #, php-format
573
  msgid ""
574
  "Scheduled backups are only available to WP BackItUp premium customers. "
575
  "Please visit %s to get WP BackItUp risk free for 30 days."
576
  msgstr ""
577
 
578
- #: views/backup.php:225 views/restore.php:94
579
  msgid "Available Backups"
580
  msgstr ""
581
 
582
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  msgid "No backup archives found."
584
  msgstr ""
585
 
586
- #: views/backup.php:291
587
  #, php-format
588
  msgid ""
589
  "The automated restore feature is only available to WP BackItUp premium "
590
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
591
  msgstr ""
592
 
593
- #: views/backup.php:300 views/restore.php:209
594
  msgid "Nothing to report"
595
  msgstr ""
596
 
597
- #: views/backup.php:305
598
  msgid "Preparing for backup"
599
  msgstr ""
600
 
601
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
602
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
603
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
604
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
605
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
606
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
607
- #: views/restore.php:228 views/restore.php:230
608
  msgid "Done"
609
  msgstr ""
610
 
611
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
612
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
613
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
614
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
615
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
616
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
617
- #: views/restore.php:228 views/restore.php:230
618
  msgid "Failed"
619
  msgstr ""
620
 
621
- #: views/backup.php:306
 
 
 
 
622
  msgid "Backing up database"
623
  msgstr ""
624
 
625
- #: views/backup.php:307
626
  msgid "Creating backup information file"
627
  msgstr ""
628
 
629
- #: views/backup.php:308
630
  msgid "Backing up themes"
631
  msgstr ""
632
 
633
- #: views/backup.php:309
634
  msgid "Backing up plugins"
635
  msgstr ""
636
 
637
- #: views/backup.php:310
638
  msgid "Backing up uploads"
639
  msgstr ""
640
 
641
- #: views/backup.php:311
642
  msgid "Backing up everything else"
643
  msgstr ""
644
 
645
- #: views/backup.php:312
646
  msgid "Validating backup"
647
  msgstr ""
648
 
649
- #: views/backup.php:313
650
  msgid "Finalizing backup"
651
  msgstr ""
652
 
653
- #: views/backup.php:323
654
  msgid "Backup completed successfully"
655
  msgstr ""
656
 
657
- #: views/backup.php:344
658
  msgid "Backups"
659
  msgstr ""
660
 
661
- #: views/backup.php:344
662
  msgid "Version "
663
  msgstr ""
664
 
665
- #: views/backup.php:346
666
  msgid "Welcome to WP BackItUp!"
667
  msgstr ""
668
 
669
- #: views/backup.php:346
670
  msgid "The simplest way to backup your WordPress site."
671
  msgstr ""
672
 
673
- #: views/backup.php:347
674
  msgid ""
675
  "Getting started is easy, just click the backup button on the left side of "
676
  "this page."
677
  msgstr ""
678
 
679
- #: views/backup.php:351
680
  #, php-format
681
  msgid ""
682
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
683
  "medium;color: green\">%s</span> successful backups."
684
  msgstr ""
685
 
686
- #: views/backup.php:352
687
  msgid "Tips"
688
  msgstr ""
689
 
690
- #: views/backup.php:353
691
  msgid "Backup your site at least once per week"
692
  msgstr ""
693
 
694
- #: views/backup.php:354
695
  msgid "Download all your backups and store them somewhere safe"
696
  msgstr ""
697
 
698
- #: views/backup.php:355
699
  msgid "Verify your backup files are good by taking a look at what's inside"
700
  msgstr ""
701
 
702
- #: views/backup.php:360
703
  #, php-format
704
  msgid "Why not %s and schedule your backups!"
705
  msgstr ""
706
 
707
- #: views/backup.php:360
708
  msgid "upgrade"
709
  msgstr ""
710
 
711
- #: views/backup.php:369
712
  msgid "Register WP BackItUp"
713
  msgstr ""
714
 
715
- #: views/backup.php:372
716
  msgid ""
717
  "Enter your name and email address below to receive <b>special offers</b> and "
718
  "access to our world class <b>support</b> team. <br />\n"
@@ -720,145 +729,150 @@ msgid ""
720
  "site."
721
  msgstr ""
722
 
723
- #: views/backup.php:374
724
  msgid "name"
725
  msgstr ""
726
 
727
- #: views/backup.php:375
728
  msgid "email address"
729
  msgstr ""
730
 
731
- #: views/backup.php:376
732
  msgid "license key"
733
  msgstr ""
734
 
735
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
736
  #, php-format
737
  msgid "%s"
738
  msgstr ""
739
 
740
- #: views/backup.php:377
741
  msgid "Free plugin customers do not need to enter license key."
742
  msgstr ""
743
 
744
- #: views/backup.php:378
745
  msgid "Register"
746
  msgstr ""
747
 
748
- #: views/backup.php:387
749
  msgid "License Info"
750
  msgstr ""
751
 
752
- #: views/backup.php:409
753
  msgid "Name"
754
  msgstr ""
755
 
756
- #: views/backup.php:410
757
  msgid "Email"
758
  msgstr ""
759
 
760
- #: views/backup.php:411
761
  msgid "License Type"
762
  msgstr ""
763
 
764
- #: views/backup.php:412
765
  msgid "Expires"
766
  msgstr ""
767
 
768
- #: views/backup.php:415
769
  msgid "Enter license key to activate on this site."
770
  msgstr ""
771
 
772
- #: views/backup.php:422
773
  msgid "License Active"
774
  msgstr ""
775
 
776
- #: views/backup.php:430
777
  msgid "License expired"
778
  msgstr ""
779
 
780
- #: views/backup.php:434
781
  msgid "Update"
782
  msgstr ""
783
 
784
- #: views/backup.php:438
785
  msgid "Activate"
786
  msgstr ""
787
 
788
- #: views/backup.php:442
789
  #, php-format
790
  msgid "Purchase a %s license using the purchase link above."
791
  msgstr ""
792
 
793
- #: views/backup.php:442
794
  msgid "no-risk"
795
  msgstr ""
796
 
797
- #: views/backup.php:448
798
  #, php-format
799
  msgid ""
800
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
801
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
802
  msgstr ""
803
 
804
- #: views/backup.php:459
805
  msgid "Useful Links"
806
  msgstr ""
807
 
808
- #: views/backup.php:462 views/backup.php:466
809
  msgid "Your account"
810
  msgstr ""
811
 
812
- #: views/backup.php:469
813
  msgid "Documentation"
814
  msgstr ""
815
 
816
- #: views/backup.php:472
817
  msgid "Get support"
818
  msgstr ""
819
 
820
- #: views/backup.php:475
821
  msgid "Feature request"
822
  msgstr ""
823
 
824
- #: views/backup.php:477
 
 
 
 
825
  msgid "Contact"
826
  msgstr ""
827
 
828
- #: views/backup.php:497 views/backup.php:518
829
  msgid "WP BackItUp Backup Set"
830
  msgstr ""
831
 
832
- #: views/backup.php:499
833
  msgid ""
834
  "Below are the archive files included in this backup set. Click the link to "
835
  "download."
836
  msgstr ""
837
 
838
- #: views/backup.php:519
839
  msgid "Please refresh this page to download your new backup files."
840
  msgstr ""
841
 
842
- #: views/restore.php:16
843
  #, php-format
844
  msgid "%s Restore"
845
  msgstr ""
846
 
847
- #: views/restore.php:59
848
  msgid "Zip Files"
849
  msgstr ""
850
 
851
- #: views/restore.php:74
852
  #, php-format
853
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
854
  msgstr ""
855
 
856
- #: views/restore.php:81
857
  #, php-format
858
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
859
  msgstr ""
860
 
861
- #: views/restore.php:141
862
  #, php-format
863
  msgid ""
864
  "<p>* The automated restore feature is only available to licensed customers. "
@@ -866,192 +880,192 @@ msgid ""
866
  "BackItUp risk free for 30 days.</p>"
867
  msgstr ""
868
 
869
- #: views/restore.php:153
870
  msgid "Upload"
871
  msgstr ""
872
 
873
- #: views/restore.php:156
874
  msgid ""
875
  "Upload WP BackItUp archive(zip) files to add to your list of available "
876
  "backups."
877
  msgstr ""
878
 
879
- #: views/restore.php:173
880
  msgid "WP BackItUp - Upload backup files"
881
  msgstr ""
882
 
883
- #: views/restore.php:174
884
  msgid "Backup files may be uploaded into WP BackItUp with this form."
885
  msgstr ""
886
 
887
- #: views/restore.php:174
888
  msgid ""
889
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
890
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
891
  "refresh this page."
892
  msgstr ""
893
 
894
- #: views/restore.php:178
895
  #, php-format
896
  msgid "This feature requires %s version %s or later"
897
  msgstr ""
898
 
899
- #: views/restore.php:184
900
  msgid "Drop backup files here"
901
  msgstr ""
902
 
903
- #: views/restore.php:190
904
  msgid ""
905
  "* Reload this page when done uploading to see new backups appear in the "
906
  "Available Backups section above. "
907
  msgstr ""
908
 
909
- #: views/restore.php:219
910
  msgid "Preparing for restore"
911
  msgstr ""
912
 
913
- #: views/restore.php:220
914
  msgid "Unzipping backup set"
915
  msgstr ""
916
 
917
- #: views/restore.php:221
918
  msgid "Validating backup file"
919
  msgstr ""
920
 
921
- #: views/restore.php:222
922
  msgid "Deactivating plugins"
923
  msgstr ""
924
 
925
- #: views/restore.php:223
926
  msgid "Creating database restore point"
927
  msgstr ""
928
 
929
- #: views/restore.php:224
930
  msgid "Staging content files"
931
  msgstr ""
932
 
933
- #: views/restore.php:225
934
  msgid "Restoring content files"
935
  msgstr ""
936
 
937
- #: views/restore.php:226
938
  msgid "Restoring database"
939
  msgstr ""
940
 
941
- #: views/restore.php:227
942
  msgid "Updating current user info"
943
  msgstr ""
944
 
945
- #: views/restore.php:228
946
  msgid "Updating site URL"
947
  msgstr ""
948
 
949
- #: views/restore.php:230
950
  msgid "Updating permalinks"
951
  msgstr ""
952
 
953
- #: views/restore.php:236
954
  msgid "Error 201: No file selected"
955
  msgstr ""
956
 
957
- #: views/restore.php:237
958
  msgid "Error 202: Your file could not be uploaded"
959
  msgstr ""
960
 
961
- #: views/restore.php:238
962
  msgid "Error 203: Your backup could not be unzipped"
963
  msgstr ""
964
 
965
- #: views/restore.php:239
966
  msgid ""
967
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
968
  "valid backup"
969
  msgstr ""
970
 
971
- #: views/restore.php:240
972
  msgid "Error 205: Cannot create restore point"
973
  msgstr ""
974
 
975
- #: views/restore.php:241
976
  msgid "Error 206: Unable to connect to your database"
977
  msgstr ""
978
 
979
- #: views/restore.php:242
980
  msgid ""
981
  "Error 207: Unable to get current site URL from database. Please try again"
982
  msgstr ""
983
 
984
- #: views/restore.php:243
985
  msgid ""
986
  "Error 208: Unable to get current home URL from database. Please try again"
987
  msgstr ""
988
 
989
- #: views/restore.php:244
990
  msgid ""
991
  "Error 209: Unable to get current user ID from database. Please try again"
992
  msgstr ""
993
 
994
- #: views/restore.php:245
995
  msgid ""
996
  "Error 210: Unable to get current user password from database. Please try "
997
  "again"
998
  msgstr ""
999
 
1000
- #: views/restore.php:246
1001
  msgid ""
1002
  "Error 211: Unable to get current user email from database. Please try again"
1003
  msgstr ""
1004
 
1005
- #: views/restore.php:247
1006
  msgid ""
1007
  "Error 212: Unable to import your database. This may require importing the "
1008
  "file manually"
1009
  msgstr ""
1010
 
1011
- #: views/restore.php:248
1012
  msgid ""
1013
  "Warning 213: Unable to update your site URL value. Please check your "
1014
  "WordPress general settings to make sure your Site and WordPress URLs are "
1015
  "correct"
1016
  msgstr ""
1017
 
1018
- #: views/restore.php:249
1019
  msgid ""
1020
  "Warning 214: Unable to update your home URL value. Please check your "
1021
  "WordPress general settings to make sure your Site and WordPress URLs are "
1022
  "correct"
1023
  msgstr ""
1024
 
1025
- #: views/restore.php:250
1026
  msgid ""
1027
  "Warning 215: Unable to update your user information. This may require you to "
1028
  "login with the admin username and password that was used when the backup was "
1029
  "created"
1030
  msgstr ""
1031
 
1032
- #: views/restore.php:251
1033
  msgid "Error 216: Database not found in backup"
1034
  msgstr ""
1035
 
1036
- #: views/restore.php:252
1037
  msgid "Warning 217: Unable to remove existing wp-content directory"
1038
  msgstr ""
1039
 
1040
- #: views/restore.php:253
1041
  msgid ""
1042
  "Error 218: Unable to create new wp-content directory. Please check your "
1043
  "CHMOD settings in /wp-content/"
1044
  msgstr ""
1045
 
1046
- #: views/restore.php:254
1047
  msgid "Error 219: Unable to import wp-content. Please try again"
1048
  msgstr ""
1049
 
1050
- #: views/restore.php:255
1051
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1052
  msgstr ""
1053
 
1054
- #: views/restore.php:256
1055
  #, php-format
1056
  msgid ""
1057
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1060,11 +1074,11 @@ msgid ""
1060
  "> FAQs</a> for more info."
1061
  msgstr ""
1062
 
1063
- #: views/restore.php:257
1064
  msgid "Error 222: Unable to create restore folder"
1065
  msgstr ""
1066
 
1067
- #: views/restore.php:258
1068
  msgid ""
1069
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1070
  "restore the database to its previous state but were unsuccessful. Please "
@@ -1072,154 +1086,154 @@ msgid ""
1072
  "further restores"
1073
  msgstr ""
1074
 
1075
- #: views/restore.php:259
1076
  msgid ""
1077
  "Error 224: An error occurred during the restore, however, we have "
1078
  "successfully restored your database to the previous state"
1079
  msgstr ""
1080
 
1081
- #: views/restore.php:260
1082
  msgid ""
1083
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1084
  msgstr ""
1085
 
1086
- #: views/restore.php:261
1087
  msgid ""
1088
  "Error 226: Restore cannot proceed because your backup was created using a "
1089
  "different version of WordPress"
1090
  msgstr ""
1091
 
1092
- #: views/restore.php:262
1093
  msgid ""
1094
  "Error 227: Restore cannot proceed because your backup was created using a "
1095
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1096
  "help convert this backup to the current version"
1097
  msgstr ""
1098
 
1099
- #: views/restore.php:263
1100
  msgid ""
1101
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1102
  "restore. However, we were able to successfully revert the database back to "
1103
  "its original state . This error may require importing the database manually"
1104
  msgstr ""
1105
 
1106
- #: views/restore.php:264
1107
  msgid ""
1108
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1109
  "utility available. Please contact support"
1110
  msgstr ""
1111
 
1112
- #: views/restore.php:265
1113
  msgid ""
1114
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1115
  "running. Please wait for the backup to complete and then try again"
1116
  msgstr ""
1117
 
1118
- #: views/restore.php:267
1119
  msgid ""
1120
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1121
  "manifest is empty"
1122
  msgstr ""
1123
 
1124
- #: views/restore.php:268
1125
  msgid ""
1126
  "Error 252: At least one zip file is missing from your backup set. Please "
1127
  "make sure to upload all zip files that were part of this backup"
1128
  msgstr ""
1129
 
1130
- #: views/restore.php:269
1131
  msgid ""
1132
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1133
  "Please make sure to upload only zip files that were part of this backup"
1134
  msgstr ""
1135
 
1136
- #: views/restore.php:271
1137
  msgid ""
1138
  "Warning 300: Unable to restore all WordPress content. Please review your "
1139
  "restore logs to see what WP BackItUp was unable to restore"
1140
  msgstr ""
1141
 
1142
- #: views/restore.php:272
1143
  msgid ""
1144
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1145
  "to see what WP BackItUp was unable to restore"
1146
  msgstr ""
1147
 
1148
- #: views/restore.php:274
1149
  msgid "Error 2001: Unable to prepare site for restore"
1150
  msgstr ""
1151
 
1152
- #: views/restore.php:275
1153
  msgid "Error 2002: Unable to unzip backup"
1154
  msgstr ""
1155
 
1156
- #: views/restore.php:276
1157
  msgid "Error 2003: Unable to validate backup"
1158
  msgstr ""
1159
 
1160
- #: views/restore.php:277
1161
  msgid "Error 2004: Unable to create restore point"
1162
  msgstr ""
1163
 
1164
- #: views/restore.php:278
1165
  msgid "Error 2005: Unable to stage wp-content"
1166
  msgstr ""
1167
 
1168
- #: views/restore.php:279
1169
  msgid "Error 2006: Unable to restore content files"
1170
  msgstr ""
1171
 
1172
- #: views/restore.php:280
1173
  msgid "Error 2007: Unable to restore database"
1174
  msgstr ""
1175
 
1176
- #: views/restore.php:281
1177
  msgid "Error 2999: Unexpected error encountered"
1178
  msgstr ""
1179
 
1180
- #: views/restore.php:288
1181
  msgid ""
1182
  "Restore completed successfully. If you are prompted to login please do so "
1183
  "with your current username and password"
1184
  msgstr ""
1185
 
1186
- #: views/settings.php:16
1187
  #, php-format
1188
  msgid "%s Settings"
1189
  msgstr ""
1190
 
1191
- #: views/settings.php:43
1192
  msgid "Email Notifications"
1193
  msgstr ""
1194
 
1195
- #: views/settings.php:44
1196
  msgid ""
1197
  "Please enter your email address if you would like to receive backup email "
1198
  "notifications."
1199
  msgstr ""
1200
 
1201
- #: views/settings.php:45
1202
  msgid ""
1203
  "Backup email notifications will be sent for every backup and will contain "
1204
  "status information related to the backup."
1205
  msgstr ""
1206
 
1207
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1208
- #: views/settings.php:114
1209
  msgid "Save"
1210
  msgstr ""
1211
 
1212
- #: views/settings.php:63
1213
  msgid "Backup Retention"
1214
  msgstr ""
1215
 
1216
- #: views/settings.php:64
1217
  msgid ""
1218
  "Enter the number of backup archives that you would like to remain on the "
1219
  "server."
1220
  msgstr ""
1221
 
1222
- #: views/settings.php:65
1223
  msgid ""
1224
  "Many hosts limit the amount of space that you can take up on their servers. "
1225
  "This option tells WP BackItUp the maximum number of backup archives that "
@@ -1227,104 +1241,108 @@ msgid ""
1227
  "oldest backup archives first."
1228
  msgstr ""
1229
 
1230
- #: views/settings.php:84
1231
  msgid "Turn on logging?"
1232
  msgstr ""
1233
 
1234
- #: views/settings.php:85
1235
  msgid "Yes"
1236
  msgstr ""
1237
 
1238
- #: views/settings.php:86
1239
  msgid "No"
1240
  msgstr ""
1241
 
1242
- #: views/settings.php:87
1243
  msgid ""
1244
  "This option should only be turned on when troubleshooting issues with "
1245
  "WPBackItUp support."
1246
  msgstr ""
1247
 
1248
- #: views/settings.php:92
1249
  msgid "Advanced Settings"
1250
  msgstr ""
1251
 
1252
- #: views/settings.php:93
1253
  msgid ""
1254
  "These options should only be changed when working with WP BackItUp support."
1255
  msgstr ""
1256
 
1257
- #: views/settings.php:96
1258
  msgid "Plugins Batch Size"
1259
  msgstr ""
1260
 
1261
- #: views/settings.php:101
1262
  msgid "Themes Batch Size"
1263
  msgstr ""
1264
 
1265
- #: views/settings.php:106
1266
  msgid "Uploads Batch Size"
1267
  msgstr ""
1268
 
1269
- #: views/settings.php:111
1270
  msgid "Others Batch Size"
1271
  msgstr ""
1272
 
1273
- #: views/support.php:16
1274
  #, php-format
1275
  msgid "%s Support"
1276
  msgstr ""
1277
 
1278
- #: views/support.php:35
1279
  msgid "Support email sent successfully!"
1280
  msgstr ""
1281
 
1282
- #: views/support.php:48
1283
  msgid "Email Logs to Support"
1284
  msgstr ""
1285
 
1286
- #: views/support.php:49
1287
  msgid "This form should be used to send log files to support only."
1288
  msgstr ""
1289
 
1290
- #: views/support.php:50
1291
  msgid ""
1292
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1293
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1294
  "using this form."
1295
  msgstr ""
1296
 
1297
- #: views/support.php:51
1298
  msgid ""
1299
  "The ticket id you receive from your support request should be entered in the "
1300
  "ticket id field below."
1301
  msgstr ""
1302
 
1303
- #: views/support.php:52
1304
  msgid "your email address"
1305
  msgstr ""
1306
 
1307
- #: views/support.php:62
1308
  msgid "support ticket id"
1309
  msgstr ""
1310
 
1311
- #: views/support.php:72
1312
  msgid "problem description or additional information"
1313
  msgstr ""
1314
 
1315
- #: views/support.php:83
1316
  msgid "Send"
1317
  msgstr ""
1318
 
1319
- #: views/support.php:86
1320
  msgid "Please register your version of WP BackItUp for access to support."
1321
  msgstr ""
1322
 
1323
- #: views/support.php:90
1324
  msgid "Premium customers receive priority support."
1325
  msgstr ""
1326
 
1327
- #: wp-backitup.php:97 wp-backitup.php:98
1328
  #, php-format
1329
  msgid "Every %s hours"
1330
  msgstr ""
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPBackItUp\n"
4
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
5
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPBackItUp <translations@wpbackitup.com>\n"
8
  "Language: en_US\n"
15
  "X-Poedit-KeywordsList: _;__;_e\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
19
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
20
+ #: wp-backitup.php:109
21
  msgid "Backup"
22
  msgstr ""
23
 
24
+ #: lib/includes/class-wpbackitup-admin.php:182
25
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
26
+ #: wp-backitup.php:123
27
  msgid "Restore"
28
  msgstr ""
29
 
30
+ #: lib/includes/class-wpbackitup-admin.php:186
31
  msgid "Support"
32
  msgstr ""
33
 
34
+ #: lib/includes/class-wpbackitup-admin.php:189
35
  msgid "Settings"
36
  msgstr ""
37
 
38
+ #: lib/includes/class-wpbackitup-admin.php:210
39
  msgid ""
40
  "The backup you have selected exceeds what your host allows you to upload."
41
  msgstr ""
42
 
43
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
44
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
45
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
46
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
47
  msgid "Warning"
48
  msgstr ""
49
 
50
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
51
+ #: views/backup.php:220
52
  msgid "Error"
53
  msgstr ""
54
 
55
+ #: lib/includes/class-wpbackitup-admin.php:213
56
  msgid "Response"
57
  msgstr ""
58
 
59
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
60
+ #: views/backup.php:271 views/restore.php:230
61
  msgid "Status"
62
  msgstr ""
63
 
64
+ #: lib/includes/class-wpbackitup-admin.php:215
65
  msgid "Download"
66
  msgstr ""
67
 
68
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
69
+ #: views/restore.php:132
70
  msgid "Delete"
71
  msgstr ""
72
 
73
+ #: lib/includes/class-wpbackitup-admin.php:218
74
  msgid "(JS997) Unexpected error"
75
  msgstr ""
76
 
77
+ #: lib/includes/class-wpbackitup-admin.php:219
78
  msgid "(JS998) Unexpected error"
79
  msgstr ""
80
 
81
+ #: lib/includes/class-wpbackitup-admin.php:220
82
  msgid "(JS999) An unexpected error has occurred"
83
  msgstr ""
84
 
85
+ #: lib/includes/class-wpbackitup-admin.php:221
86
  msgid "Scheduled has been saved."
87
  msgstr ""
88
 
89
+ #: lib/includes/class-wpbackitup-admin.php:222
90
  msgid "Scheduled was not saved."
91
  msgstr ""
92
 
93
+ #: lib/includes/class-wpbackitup-admin.php:223
94
  msgid "Are you sure you want to restore your site?"
95
  msgstr ""
96
 
97
+ #: lib/includes/class-wpbackitup-admin.php:224
98
  msgid "Are you sure ?"
99
  msgstr ""
100
 
101
+ #: lib/includes/class-wpbackitup-admin.php:225
102
  msgid "This file cannot be delete!"
103
  msgstr ""
104
 
105
+ #: lib/includes/class-wpbackitup-admin.php:226
106
  msgid "View Log"
107
  msgstr ""
108
 
109
+ #: lib/includes/class-wpbackitup-admin.php:227
110
  msgid "New Backup!"
111
  msgstr ""
112
 
113
+ #: lib/includes/class-wpbackitup-admin.php:228
114
  msgid "Uploaded Backup"
115
  msgstr ""
116
 
117
+ #: lib/includes/class-wpbackitup-admin.php:515
118
  msgid "Backup Queued"
119
  msgstr ""
120
 
121
+ #: lib/includes/class-wpbackitup-admin.php:518
122
  msgid "Backup could not be queued"
123
  msgstr ""
124
 
125
+ #: lib/includes/class-wpbackitup-admin.php:522
126
+ msgid "Job already in queue, please try again later"
 
 
 
 
127
  msgstr ""
128
 
129
+ #: lib/includes/class-wpbackitup-admin.php:554
130
  msgid "No backup file selected."
131
  msgstr ""
132
 
133
+ #: lib/includes/class-wpbackitup-admin.php:561
134
  msgid "No user id found."
135
  msgstr ""
136
 
137
+ #: lib/includes/class-wpbackitup-admin.php:582
138
  msgid "Restore Queued"
139
  msgstr ""
140
 
141
+ #: lib/includes/class-wpbackitup-admin.php:584
142
  msgid "Restore could not be queued"
143
  msgstr ""
144
 
145
+ #: lib/includes/class-wpbackitup-admin.php:588
146
  msgid "Restore already in queue"
147
  msgstr ""
148
 
149
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
150
+ msgid "Backup Cancelled"
151
+ msgstr ""
152
+
153
+ #: lib/includes/class-wpbackitup-admin.php:754
154
  msgid "No response log found."
155
  msgstr ""
156
 
157
+ #: lib/includes/class-wpbackitup-admin.php:856
158
+ #: lib/includes/class-wpbackitup-admin.php:864
159
+ #: lib/includes/class-wpbackitup-admin.php:893
160
+ #: lib/includes/class-wpbackitup-admin.php:900
161
+ #: lib/includes/class-wpbackitup-admin.php:907
162
+ #: lib/includes/class-wpbackitup-admin.php:914
163
  msgid "Please enter a number"
164
  msgstr ""
165
 
166
+ #: lib/includes/class-wpbackitup-admin.php:885
167
+ #: lib/includes/class-wpbackitup-admin.php:993
168
  msgid "Please enter a valid email"
169
  msgstr ""
170
 
171
+ #: lib/includes/class-wpbackitup-admin.php:1000
172
  msgid "Please enter your support ticket id"
173
  msgstr ""
174
 
175
+ #: lib/includes/class-wpbackitup-admin.php:1005
176
  msgid "Please only enter numbers in this field"
177
  msgstr ""
178
 
179
+ #: lib/includes/class-wpbackitup-admin.php:1699
180
  msgid "License is invalid."
181
  msgstr ""
182
 
183
+ #: lib/includes/class-wpbackitup-admin.php:1704
184
  msgid "License has expired."
185
  msgstr ""
186
 
187
+ #: lib/includes/class-wpbackitup-admin.php:1707
188
+ #, php-format
189
+ msgid ""
190
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
191
+ "now for another year of <strong>product updates</strong> and access to our "
192
+ "<strong>world class support</strong> team."
193
+ msgstr ""
194
+
195
+ #: lib/includes/class-wpbackitup-admin.php:1721
196
+ msgid "License Expired: Scheduled backups are no longer active."
197
+ msgstr ""
198
+
199
+ #: lib/includes/class-wpbackitup-admin.php:1729
200
  msgid "Activation limit has been reached."
201
  msgstr ""
202
 
203
+ #: lib/includes/class-wpbackitup-admin.php:1735
204
+ msgid "Your Activation limit has been reached"
205
+ msgstr ""
206
+
207
  #: lib/includes/handler_upload.php:29
208
  msgid "Invalid Nonce"
209
  msgstr ""
229
  msgid "Could not import file into WP BackItUp backup set."
230
  msgstr ""
231
 
232
+ #: lib/includes/job_backup.php:907
233
+ #, php-format
234
+ msgid ""
235
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
236
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
237
+ "function for <strong>30</strong> days after your license has expired.Please "
238
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
239
+ "of product updates and access to our world class support team.<br/><br/>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgstr ""
241
 
242
+ #: lib/includes/job_backup.php:912
243
  #, php-format
244
  msgid "%s - Backup completed successfully."
245
  msgstr ""
246
 
247
+ #: lib/includes/job_backup.php:913
248
  msgid "Your backup completed successfully."
249
  msgstr ""
250
 
251
+ #: lib/includes/job_backup.php:916
252
  #, php-format
253
  msgid "%s - Backup did not complete successfully."
254
  msgstr ""
255
 
256
+ #: lib/includes/job_backup.php:917
257
  msgid "Your backup did not complete successfully."
258
  msgstr ""
259
 
260
+ #: lib/includes/job_backup.php:924
261
  #, php-format
262
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
263
  msgstr ""
264
 
265
+ #: lib/includes/job_backup.php:925
266
  msgid "Backup date:"
267
  msgstr ""
268
 
269
+ #: lib/includes/job_backup.php:926
270
  msgid "Number of backups completed with WP BackItUp:"
271
  msgstr ""
272
 
273
+ #: lib/includes/job_backup.php:928
274
  msgid "Completion Code:"
275
  msgstr ""
276
 
277
+ #: lib/includes/job_backup.php:929
278
  msgid "WP BackItUp Version:"
279
  msgstr ""
280
 
281
+ #: lib/includes/job_backup.php:941
 
 
 
 
282
  #, php-format
283
  msgid "Checkout %s for info about WP BackItUp and our other products."
284
  msgstr ""
285
 
286
+ #: lib/includes/job_backup.php:1117
287
  msgid ""
288
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
289
  "settings of your wp-backitup backup directory"
290
  msgstr ""
291
 
292
+ #: lib/includes/job_backup.php:1118
293
  msgid ""
294
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
295
  "your wp-backitup plugin directory"
296
  msgstr ""
297
 
298
+ #: lib/includes/job_backup.php:1119
299
  msgid "(103) Unable to backup your files. Please try again"
300
  msgstr ""
301
 
302
+ #: lib/includes/job_backup.php:1120
303
  msgid "(104) Unable to export your database. Please try again"
304
  msgstr ""
305
 
306
+ #: lib/includes/job_backup.php:1121
307
  msgid "(105) Unable to export site information file. Please try again"
308
  msgstr ""
309
 
310
+ #: lib/includes/job_backup.php:1122
311
  msgid "(106) Unable to cleanup your backup directory"
312
  msgstr ""
313
 
314
+ #: lib/includes/job_backup.php:1123
315
  msgid "(107) Unable to compress(zip) your backup. Please try again"
316
  msgstr ""
317
 
318
+ #: lib/includes/job_backup.php:1124
319
  msgid "(108) Unable to backup your site data files. Please try again"
320
  msgstr ""
321
 
322
+ #: lib/includes/job_backup.php:1125
323
  msgid "(109) Unable to finalize backup. Please try again"
324
  msgstr ""
325
 
326
+ #: lib/includes/job_backup.php:1126
327
  msgid ""
328
  "(114) Your database was accessible but an export could not be created. "
329
  "Please contact support by clicking the get support link on the right. Please "
330
  "let us know who your host is when you submit the request"
331
  msgstr ""
332
 
333
+ #: lib/includes/job_backup.php:1127
334
  msgid "(120) Unable to backup your themes. Please try again"
335
  msgstr ""
336
 
337
+ #: lib/includes/job_backup.php:1128
338
  msgid "(121) Unable to backup your plugins. Please try again"
339
  msgstr ""
340
 
341
+ #: lib/includes/job_backup.php:1129
342
  msgid "(122) Unable to backup your uploads. Please try again"
343
  msgstr ""
344
 
345
+ #: lib/includes/job_backup.php:1130
346
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
347
  msgstr ""
348
 
349
+ #: lib/includes/job_backup.php:1131
350
  msgid ""
351
  "(125) Unable to compress your backup because there is no zip utility "
352
  "available. Please contact support"
353
  msgstr ""
354
 
355
+ #: lib/includes/job_backup.php:1132
356
  msgid "(126) Unable to validate your backup. Please try again"
357
  msgstr ""
358
 
359
+ #: lib/includes/job_backup.php:1133
360
  msgid "(127) Unable to create inventory of files to backup. Please try again"
361
  msgstr ""
362
 
363
+ #: lib/includes/job_backup.php:1134
364
  msgid "(128) Unable to create job control record. Please try again"
365
  msgstr ""
366
 
367
+ #: lib/includes/job_backup.php:1136
368
  msgid ""
369
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
370
  "settings of your wp-backitup backup directory"
371
  msgstr ""
372
 
373
+ #: lib/includes/job_backup.php:1137
374
  msgid ""
375
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
376
  "your wp-backitup plugin directory"
377
  msgstr ""
378
 
379
+ #: lib/includes/job_backup.php:1138
380
  msgid "(2103) Unable to backup your files. Please try again"
381
  msgstr ""
382
 
383
+ #: lib/includes/job_backup.php:1139
384
  msgid "(2104) Unable to export your database. Please try again"
385
  msgstr ""
386
 
387
+ #: lib/includes/job_backup.php:1140
388
  msgid "(2105) Unable to export site information file. Please try again"
389
  msgstr ""
390
 
391
+ #: lib/includes/job_backup.php:1141
392
  msgid "(2106) Unable to cleanup your backup directory"
393
  msgstr ""
394
 
395
+ #: lib/includes/job_backup.php:1142
396
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
397
  msgstr ""
398
 
399
+ #: lib/includes/job_backup.php:1143
400
  msgid "(2108) Unable to backup your site data files. Please try again"
401
  msgstr ""
402
 
403
+ #: lib/includes/job_backup.php:1144
404
  msgid "(2109) Unable to finalize backup. Please try again"
405
  msgstr ""
406
 
407
+ #: lib/includes/job_backup.php:1145
408
  msgid ""
409
  "(2114) Your database was accessible but an export could not be created. "
410
  "Please contact support by clicking the get support link on the right. Please "
411
  "let us know who your host is when you submit the request"
412
  msgstr ""
413
 
414
+ #: lib/includes/job_backup.php:1146
415
  msgid "(2120) Unable to backup your themes. Please try again"
416
  msgstr ""
417
 
418
+ #: lib/includes/job_backup.php:1147
419
  msgid "(2121) Unable to backup your plugins. Please try again"
420
  msgstr ""
421
 
422
+ #: lib/includes/job_backup.php:1148
423
  msgid "(2122) Unable to backup your uploads. Please try again"
424
  msgstr ""
425
 
426
+ #: lib/includes/job_backup.php:1149
427
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
428
  msgstr ""
429
 
430
+ #: lib/includes/job_backup.php:1150
431
  msgid ""
432
  "(2125) Unable to compress your backup because there is no zip utility "
433
  "available. Please contact support"
434
  msgstr ""
435
 
436
+ #: lib/includes/job_backup.php:1151
437
  msgid "(2126) Unable to validate your backup. Please try again"
438
  msgstr ""
439
 
440
+ #: lib/includes/job_backup.php:1152
441
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
442
  msgstr ""
443
 
444
+ #: lib/includes/job_backup.php:1153
445
  msgid "(2128) Unable to create job control record. Please try again"
446
  msgstr ""
447
 
448
+ #: lib/includes/job_backup.php:1156
449
  msgid "(999) Unexpected error"
450
  msgstr ""
451
 
452
  #. TRANSLATORS: %s = plugin name.
453
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
454
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
455
+ #: views/backup.php:17
456
  #, php-format
457
  msgid "%s Dashboard"
458
  msgstr ""
459
 
460
+ #: views/backup.php:83
461
+ msgid "Dismiss"
462
+ msgstr ""
463
+
464
+ #: views/backup.php:95
465
  #, php-format
466
  msgid "Backup folder does not exist. Please contact %s for assistance."
467
  msgstr ""
468
 
469
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
470
  msgid "support"
471
  msgstr ""
472
 
473
+ #: views/backup.php:98 views/backup.php:104
474
  msgid "Close"
475
  msgstr ""
476
 
477
+ #: views/backup.php:119
478
  msgid ""
479
  "Click the backup button to create a zipped backup file of this site's "
480
  "database, plugins, themes and settings."
481
  msgstr ""
482
 
483
+ #: views/backup.php:120
484
  msgid ""
485
  "Once your backup file has been created it will appear in the available "
486
  "backups section below. This file may remain on your hosting providers server "
487
  "but we recommend that you download and save it somewhere safe."
488
  msgstr ""
489
 
490
+ #: views/backup.php:121
491
  msgid ""
492
  "WP BackItUp premium customers can use these backup files to perform an "
493
  "automated restore of their site."
494
  msgstr ""
495
 
496
+ #: views/backup.php:125
497
  msgid "Cancel"
498
  msgstr ""
499
 
500
+ #: views/backup.php:132
501
  #, php-format
502
  msgid ""
503
  "WP BackItUp lite customers may use these backup files to manually restore "
504
  "their site. Please visit %s for manual restore instructions."
505
  msgstr ""
506
 
507
+ #: views/backup.php:139
508
  msgid "Backup Schedule"
509
  msgstr ""
510
 
511
+ #: views/backup.php:141
512
  msgid "Select the days of the week you would like your backup to run."
513
  msgstr ""
514
 
515
+ #: views/backup.php:143
516
  msgid ""
517
  "Backup your site once per week or every day, it's up to you. If you have "
518
  "email notifications turned on we'll even send you an email when it's done. "
521
  "but we recommend that you download and save it somewhere safe."
522
  msgstr ""
523
 
524
+ #: views/backup.php:145
525
  msgid "Please make sure to schedule your backup for at least once per week."
526
  msgstr ""
527
 
528
+ #: views/backup.php:149
529
  msgid "Monday"
530
  msgstr ""
531
 
532
+ #: views/backup.php:150
533
  msgid "Tuesday"
534
  msgstr ""
535
 
536
+ #: views/backup.php:151
537
  msgid "Wednesday"
538
  msgstr ""
539
 
540
+ #: views/backup.php:152
541
  msgid "Thursday"
542
  msgstr ""
543
 
544
+ #: views/backup.php:153
545
  msgid "Friday"
546
  msgstr ""
547
 
548
+ #: views/backup.php:154
549
  msgid "Saturday"
550
  msgstr ""
551
 
552
+ #: views/backup.php:155
553
  msgid "Sunday"
554
  msgstr ""
555
 
556
+ #: views/backup.php:158
557
  msgid "Save Schedule"
558
  msgstr ""
559
 
560
+ #: views/backup.php:163
561
  #, php-format
562
  msgid ""
563
  "Scheduled backups are only available to WP BackItUp premium customers. "
564
  "Please visit %s to get WP BackItUp risk free for 30 days."
565
  msgstr ""
566
 
567
+ #: views/backup.php:170 views/restore.php:95
568
  msgid "Available Backups"
569
  msgstr ""
570
 
571
+ #: views/backup.php:190 views/restore.php:100
572
+ msgid "Date"
573
+ msgstr ""
574
+
575
+ #: views/backup.php:191
576
+ msgid "Duration"
577
+ msgstr ""
578
+
579
+ #: views/backup.php:214
580
+ msgid "Success"
581
+ msgstr ""
582
+
583
+ #: views/backup.php:217
584
+ msgid "Active"
585
+ msgstr ""
586
+
587
+ #: views/backup.php:257 views/restore.php:150
588
  msgid "No backup archives found."
589
  msgstr ""
590
 
591
+ #: views/backup.php:266
592
  #, php-format
593
  msgid ""
594
  "The automated restore feature is only available to WP BackItUp premium "
595
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
596
  msgstr ""
597
 
598
+ #: views/backup.php:275 views/restore.php:234
599
  msgid "Nothing to report"
600
  msgstr ""
601
 
602
+ #: views/backup.php:280
603
  msgid "Preparing for backup"
604
  msgstr ""
605
 
606
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
607
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
608
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
609
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
610
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
611
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
612
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
613
  msgid "Done"
614
  msgstr ""
615
 
616
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
617
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
618
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
619
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
620
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
621
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
622
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
623
  msgid "Failed"
624
  msgstr ""
625
 
626
+ #: views/backup.php:281
627
+ msgid "Creating inventory of files to backup"
628
+ msgstr ""
629
+
630
+ #: views/backup.php:282
631
  msgid "Backing up database"
632
  msgstr ""
633
 
634
+ #: views/backup.php:283
635
  msgid "Creating backup information file"
636
  msgstr ""
637
 
638
+ #: views/backup.php:284
639
  msgid "Backing up themes"
640
  msgstr ""
641
 
642
+ #: views/backup.php:285
643
  msgid "Backing up plugins"
644
  msgstr ""
645
 
646
+ #: views/backup.php:286
647
  msgid "Backing up uploads"
648
  msgstr ""
649
 
650
+ #: views/backup.php:287
651
  msgid "Backing up everything else"
652
  msgstr ""
653
 
654
+ #: views/backup.php:288
655
  msgid "Validating backup"
656
  msgstr ""
657
 
658
+ #: views/backup.php:289
659
  msgid "Finalizing backup"
660
  msgstr ""
661
 
662
+ #: views/backup.php:299
663
  msgid "Backup completed successfully"
664
  msgstr ""
665
 
666
+ #: views/backup.php:320
667
  msgid "Backups"
668
  msgstr ""
669
 
670
+ #: views/backup.php:320
671
  msgid "Version "
672
  msgstr ""
673
 
674
+ #: views/backup.php:322
675
  msgid "Welcome to WP BackItUp!"
676
  msgstr ""
677
 
678
+ #: views/backup.php:322
679
  msgid "The simplest way to backup your WordPress site."
680
  msgstr ""
681
 
682
+ #: views/backup.php:323
683
  msgid ""
684
  "Getting started is easy, just click the backup button on the left side of "
685
  "this page."
686
  msgstr ""
687
 
688
+ #: views/backup.php:327
689
  #, php-format
690
  msgid ""
691
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
692
  "medium;color: green\">%s</span> successful backups."
693
  msgstr ""
694
 
695
+ #: views/backup.php:328
696
  msgid "Tips"
697
  msgstr ""
698
 
699
+ #: views/backup.php:329
700
  msgid "Backup your site at least once per week"
701
  msgstr ""
702
 
703
+ #: views/backup.php:330
704
  msgid "Download all your backups and store them somewhere safe"
705
  msgstr ""
706
 
707
+ #: views/backup.php:331
708
  msgid "Verify your backup files are good by taking a look at what's inside"
709
  msgstr ""
710
 
711
+ #: views/backup.php:336
712
  #, php-format
713
  msgid "Why not %s and schedule your backups!"
714
  msgstr ""
715
 
716
+ #: views/backup.php:336
717
  msgid "upgrade"
718
  msgstr ""
719
 
720
+ #: views/backup.php:345
721
  msgid "Register WP BackItUp"
722
  msgstr ""
723
 
724
+ #: views/backup.php:348
725
  msgid ""
726
  "Enter your name and email address below to receive <b>special offers</b> and "
727
  "access to our world class <b>support</b> team. <br />\n"
729
  "site."
730
  msgstr ""
731
 
732
+ #: views/backup.php:350
733
  msgid "name"
734
  msgstr ""
735
 
736
+ #: views/backup.php:351
737
  msgid "email address"
738
  msgstr ""
739
 
740
+ #: views/backup.php:352
741
  msgid "license key"
742
  msgstr ""
743
 
744
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
745
  #, php-format
746
  msgid "%s"
747
  msgstr ""
748
 
749
+ #: views/backup.php:353
750
  msgid "Free plugin customers do not need to enter license key."
751
  msgstr ""
752
 
753
+ #: views/backup.php:354
754
  msgid "Register"
755
  msgstr ""
756
 
757
+ #: views/backup.php:363
758
  msgid "License Info"
759
  msgstr ""
760
 
761
+ #: views/backup.php:385
762
  msgid "Name"
763
  msgstr ""
764
 
765
+ #: views/backup.php:386
766
  msgid "Email"
767
  msgstr ""
768
 
769
+ #: views/backup.php:387
770
  msgid "License Type"
771
  msgstr ""
772
 
773
+ #: views/backup.php:388
774
  msgid "Expires"
775
  msgstr ""
776
 
777
+ #: views/backup.php:391
778
  msgid "Enter license key to activate on this site."
779
  msgstr ""
780
 
781
+ #: views/backup.php:398
782
  msgid "License Active"
783
  msgstr ""
784
 
785
+ #: views/backup.php:406
786
  msgid "License expired"
787
  msgstr ""
788
 
789
+ #: views/backup.php:410
790
  msgid "Update"
791
  msgstr ""
792
 
793
+ #: views/backup.php:414
794
  msgid "Activate"
795
  msgstr ""
796
 
797
+ #: views/backup.php:418
798
  #, php-format
799
  msgid "Purchase a %s license using the purchase link above."
800
  msgstr ""
801
 
802
+ #: views/backup.php:418
803
  msgid "no-risk"
804
  msgstr ""
805
 
806
+ #: views/backup.php:424
807
  #, php-format
808
  msgid ""
809
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
810
+ "<strong>product updates</strong> and access to our <strong>world class "
811
+ "support</strong> team."
812
  msgstr ""
813
 
814
+ #: views/backup.php:435
815
  msgid "Useful Links"
816
  msgstr ""
817
 
818
+ #: views/backup.php:438 views/backup.php:442
819
  msgid "Your account"
820
  msgstr ""
821
 
822
+ #: views/backup.php:445
823
  msgid "Documentation"
824
  msgstr ""
825
 
826
+ #: views/backup.php:448
827
  msgid "Get support"
828
  msgstr ""
829
 
830
+ #: views/backup.php:451
831
  msgid "Feature request"
832
  msgstr ""
833
 
834
+ #: views/backup.php:453
835
+ msgid "Language Translations"
836
+ msgstr ""
837
+
838
+ #: views/backup.php:455
839
  msgid "Contact"
840
  msgstr ""
841
 
842
+ #: views/backup.php:478 views/backup.php:502
843
  msgid "WP BackItUp Backup Set"
844
  msgstr ""
845
 
846
+ #: views/backup.php:480
847
  msgid ""
848
  "Below are the archive files included in this backup set. Click the link to "
849
  "download."
850
  msgstr ""
851
 
852
+ #: views/backup.php:503
853
  msgid "Please refresh this page to download your new backup files."
854
  msgstr ""
855
 
856
+ #: views/restore.php:13
857
  #, php-format
858
  msgid "%s Restore"
859
  msgstr ""
860
 
861
+ #: views/restore.php:60
862
  msgid "Zip Files"
863
  msgstr ""
864
 
865
+ #: views/restore.php:75
866
  #, php-format
867
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
868
  msgstr ""
869
 
870
+ #: views/restore.php:82
871
  #, php-format
872
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
873
  msgstr ""
874
 
875
+ #: views/restore.php:166
876
  #, php-format
877
  msgid ""
878
  "<p>* The automated restore feature is only available to licensed customers. "
880
  "BackItUp risk free for 30 days.</p>"
881
  msgstr ""
882
 
883
+ #: views/restore.php:178
884
  msgid "Upload"
885
  msgstr ""
886
 
887
+ #: views/restore.php:181
888
  msgid ""
889
  "Upload WP BackItUp archive(zip) files to add to your list of available "
890
  "backups."
891
  msgstr ""
892
 
893
+ #: views/restore.php:198
894
  msgid "WP BackItUp - Upload backup files"
895
  msgstr ""
896
 
897
+ #: views/restore.php:199
898
  msgid "Backup files may be uploaded into WP BackItUp with this form."
899
  msgstr ""
900
 
901
+ #: views/restore.php:199
902
  msgid ""
903
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
904
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
905
  "refresh this page."
906
  msgstr ""
907
 
908
+ #: views/restore.php:203
909
  #, php-format
910
  msgid "This feature requires %s version %s or later"
911
  msgstr ""
912
 
913
+ #: views/restore.php:209
914
  msgid "Drop backup files here"
915
  msgstr ""
916
 
917
+ #: views/restore.php:215
918
  msgid ""
919
  "* Reload this page when done uploading to see new backups appear in the "
920
  "Available Backups section above. "
921
  msgstr ""
922
 
923
+ #: views/restore.php:244
924
  msgid "Preparing for restore"
925
  msgstr ""
926
 
927
+ #: views/restore.php:245
928
  msgid "Unzipping backup set"
929
  msgstr ""
930
 
931
+ #: views/restore.php:246
932
  msgid "Validating backup file"
933
  msgstr ""
934
 
935
+ #: views/restore.php:247
936
  msgid "Deactivating plugins"
937
  msgstr ""
938
 
939
+ #: views/restore.php:248
940
  msgid "Creating database restore point"
941
  msgstr ""
942
 
943
+ #: views/restore.php:249
944
  msgid "Staging content files"
945
  msgstr ""
946
 
947
+ #: views/restore.php:250
948
  msgid "Restoring content files"
949
  msgstr ""
950
 
951
+ #: views/restore.php:251
952
  msgid "Restoring database"
953
  msgstr ""
954
 
955
+ #: views/restore.php:252
956
  msgid "Updating current user info"
957
  msgstr ""
958
 
959
+ #: views/restore.php:253
960
  msgid "Updating site URL"
961
  msgstr ""
962
 
963
+ #: views/restore.php:255
964
  msgid "Updating permalinks"
965
  msgstr ""
966
 
967
+ #: views/restore.php:261
968
  msgid "Error 201: No file selected"
969
  msgstr ""
970
 
971
+ #: views/restore.php:262
972
  msgid "Error 202: Your file could not be uploaded"
973
  msgstr ""
974
 
975
+ #: views/restore.php:263
976
  msgid "Error 203: Your backup could not be unzipped"
977
  msgstr ""
978
 
979
+ #: views/restore.php:264
980
  msgid ""
981
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
982
  "valid backup"
983
  msgstr ""
984
 
985
+ #: views/restore.php:265
986
  msgid "Error 205: Cannot create restore point"
987
  msgstr ""
988
 
989
+ #: views/restore.php:266
990
  msgid "Error 206: Unable to connect to your database"
991
  msgstr ""
992
 
993
+ #: views/restore.php:267
994
  msgid ""
995
  "Error 207: Unable to get current site URL from database. Please try again"
996
  msgstr ""
997
 
998
+ #: views/restore.php:268
999
  msgid ""
1000
  "Error 208: Unable to get current home URL from database. Please try again"
1001
  msgstr ""
1002
 
1003
+ #: views/restore.php:269
1004
  msgid ""
1005
  "Error 209: Unable to get current user ID from database. Please try again"
1006
  msgstr ""
1007
 
1008
+ #: views/restore.php:270
1009
  msgid ""
1010
  "Error 210: Unable to get current user password from database. Please try "
1011
  "again"
1012
  msgstr ""
1013
 
1014
+ #: views/restore.php:271
1015
  msgid ""
1016
  "Error 211: Unable to get current user email from database. Please try again"
1017
  msgstr ""
1018
 
1019
+ #: views/restore.php:272
1020
  msgid ""
1021
  "Error 212: Unable to import your database. This may require importing the "
1022
  "file manually"
1023
  msgstr ""
1024
 
1025
+ #: views/restore.php:273
1026
  msgid ""
1027
  "Warning 213: Unable to update your site URL value. Please check your "
1028
  "WordPress general settings to make sure your Site and WordPress URLs are "
1029
  "correct"
1030
  msgstr ""
1031
 
1032
+ #: views/restore.php:274
1033
  msgid ""
1034
  "Warning 214: Unable to update your home URL value. Please check your "
1035
  "WordPress general settings to make sure your Site and WordPress URLs are "
1036
  "correct"
1037
  msgstr ""
1038
 
1039
+ #: views/restore.php:275
1040
  msgid ""
1041
  "Warning 215: Unable to update your user information. This may require you to "
1042
  "login with the admin username and password that was used when the backup was "
1043
  "created"
1044
  msgstr ""
1045
 
1046
+ #: views/restore.php:276
1047
  msgid "Error 216: Database not found in backup"
1048
  msgstr ""
1049
 
1050
+ #: views/restore.php:277
1051
  msgid "Warning 217: Unable to remove existing wp-content directory"
1052
  msgstr ""
1053
 
1054
+ #: views/restore.php:278
1055
  msgid ""
1056
  "Error 218: Unable to create new wp-content directory. Please check your "
1057
  "CHMOD settings in /wp-content/"
1058
  msgstr ""
1059
 
1060
+ #: views/restore.php:279
1061
  msgid "Error 219: Unable to import wp-content. Please try again"
1062
  msgstr ""
1063
 
1064
+ #: views/restore.php:280
1065
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1066
  msgstr ""
1067
 
1068
+ #: views/restore.php:281
1069
  #, php-format
1070
  msgid ""
1071
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1074
  "> FAQs</a> for more info."
1075
  msgstr ""
1076
 
1077
+ #: views/restore.php:282
1078
  msgid "Error 222: Unable to create restore folder"
1079
  msgstr ""
1080
 
1081
+ #: views/restore.php:283
1082
  msgid ""
1083
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1084
  "restore the database to its previous state but were unsuccessful. Please "
1086
  "further restores"
1087
  msgstr ""
1088
 
1089
+ #: views/restore.php:284
1090
  msgid ""
1091
  "Error 224: An error occurred during the restore, however, we have "
1092
  "successfully restored your database to the previous state"
1093
  msgstr ""
1094
 
1095
+ #: views/restore.php:285
1096
  msgid ""
1097
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1098
  msgstr ""
1099
 
1100
+ #: views/restore.php:286
1101
  msgid ""
1102
  "Error 226: Restore cannot proceed because your backup was created using a "
1103
  "different version of WordPress"
1104
  msgstr ""
1105
 
1106
+ #: views/restore.php:287
1107
  msgid ""
1108
  "Error 227: Restore cannot proceed because your backup was created using a "
1109
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1110
  "help convert this backup to the current version"
1111
  msgstr ""
1112
 
1113
+ #: views/restore.php:288
1114
  msgid ""
1115
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1116
  "restore. However, we were able to successfully revert the database back to "
1117
  "its original state . This error may require importing the database manually"
1118
  msgstr ""
1119
 
1120
+ #: views/restore.php:289
1121
  msgid ""
1122
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1123
  "utility available. Please contact support"
1124
  msgstr ""
1125
 
1126
+ #: views/restore.php:290
1127
  msgid ""
1128
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1129
  "running. Please wait for the backup to complete and then try again"
1130
  msgstr ""
1131
 
1132
+ #: views/restore.php:292
1133
  msgid ""
1134
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1135
  "manifest is empty"
1136
  msgstr ""
1137
 
1138
+ #: views/restore.php:293
1139
  msgid ""
1140
  "Error 252: At least one zip file is missing from your backup set. Please "
1141
  "make sure to upload all zip files that were part of this backup"
1142
  msgstr ""
1143
 
1144
+ #: views/restore.php:294
1145
  msgid ""
1146
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1147
  "Please make sure to upload only zip files that were part of this backup"
1148
  msgstr ""
1149
 
1150
+ #: views/restore.php:296
1151
  msgid ""
1152
  "Warning 300: Unable to restore all WordPress content. Please review your "
1153
  "restore logs to see what WP BackItUp was unable to restore"
1154
  msgstr ""
1155
 
1156
+ #: views/restore.php:297
1157
  msgid ""
1158
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1159
  "to see what WP BackItUp was unable to restore"
1160
  msgstr ""
1161
 
1162
+ #: views/restore.php:299
1163
  msgid "Error 2001: Unable to prepare site for restore"
1164
  msgstr ""
1165
 
1166
+ #: views/restore.php:300
1167
  msgid "Error 2002: Unable to unzip backup"
1168
  msgstr ""
1169
 
1170
+ #: views/restore.php:301
1171
  msgid "Error 2003: Unable to validate backup"
1172
  msgstr ""
1173
 
1174
+ #: views/restore.php:302
1175
  msgid "Error 2004: Unable to create restore point"
1176
  msgstr ""
1177
 
1178
+ #: views/restore.php:303
1179
  msgid "Error 2005: Unable to stage wp-content"
1180
  msgstr ""
1181
 
1182
+ #: views/restore.php:304
1183
  msgid "Error 2006: Unable to restore content files"
1184
  msgstr ""
1185
 
1186
+ #: views/restore.php:305
1187
  msgid "Error 2007: Unable to restore database"
1188
  msgstr ""
1189
 
1190
+ #: views/restore.php:306
1191
  msgid "Error 2999: Unexpected error encountered"
1192
  msgstr ""
1193
 
1194
+ #: views/restore.php:313
1195
  msgid ""
1196
  "Restore completed successfully. If you are prompted to login please do so "
1197
  "with your current username and password"
1198
  msgstr ""
1199
 
1200
+ #: views/settings.php:13
1201
  #, php-format
1202
  msgid "%s Settings"
1203
  msgstr ""
1204
 
1205
+ #: views/settings.php:40
1206
  msgid "Email Notifications"
1207
  msgstr ""
1208
 
1209
+ #: views/settings.php:41
1210
  msgid ""
1211
  "Please enter your email address if you would like to receive backup email "
1212
  "notifications."
1213
  msgstr ""
1214
 
1215
+ #: views/settings.php:42
1216
  msgid ""
1217
  "Backup email notifications will be sent for every backup and will contain "
1218
  "status information related to the backup."
1219
  msgstr ""
1220
 
1221
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1222
+ #: views/settings.php:111
1223
  msgid "Save"
1224
  msgstr ""
1225
 
1226
+ #: views/settings.php:60
1227
  msgid "Backup Retention"
1228
  msgstr ""
1229
 
1230
+ #: views/settings.php:61
1231
  msgid ""
1232
  "Enter the number of backup archives that you would like to remain on the "
1233
  "server."
1234
  msgstr ""
1235
 
1236
+ #: views/settings.php:62
1237
  msgid ""
1238
  "Many hosts limit the amount of space that you can take up on their servers. "
1239
  "This option tells WP BackItUp the maximum number of backup archives that "
1241
  "oldest backup archives first."
1242
  msgstr ""
1243
 
1244
+ #: views/settings.php:81
1245
  msgid "Turn on logging?"
1246
  msgstr ""
1247
 
1248
+ #: views/settings.php:82
1249
  msgid "Yes"
1250
  msgstr ""
1251
 
1252
+ #: views/settings.php:83
1253
  msgid "No"
1254
  msgstr ""
1255
 
1256
+ #: views/settings.php:84
1257
  msgid ""
1258
  "This option should only be turned on when troubleshooting issues with "
1259
  "WPBackItUp support."
1260
  msgstr ""
1261
 
1262
+ #: views/settings.php:89
1263
  msgid "Advanced Settings"
1264
  msgstr ""
1265
 
1266
+ #: views/settings.php:90
1267
  msgid ""
1268
  "These options should only be changed when working with WP BackItUp support."
1269
  msgstr ""
1270
 
1271
+ #: views/settings.php:93
1272
  msgid "Plugins Batch Size"
1273
  msgstr ""
1274
 
1275
+ #: views/settings.php:98
1276
  msgid "Themes Batch Size"
1277
  msgstr ""
1278
 
1279
+ #: views/settings.php:103
1280
  msgid "Uploads Batch Size"
1281
  msgstr ""
1282
 
1283
+ #: views/settings.php:108
1284
  msgid "Others Batch Size"
1285
  msgstr ""
1286
 
1287
+ #: views/support.php:13
1288
  #, php-format
1289
  msgid "%s Support"
1290
  msgstr ""
1291
 
1292
+ #: views/support.php:32
1293
  msgid "Support email sent successfully!"
1294
  msgstr ""
1295
 
1296
+ #: views/support.php:45
1297
  msgid "Email Logs to Support"
1298
  msgstr ""
1299
 
1300
+ #: views/support.php:46
1301
  msgid "This form should be used to send log files to support only."
1302
  msgstr ""
1303
 
1304
+ #: views/support.php:47
1305
  msgid ""
1306
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1307
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1308
  "using this form."
1309
  msgstr ""
1310
 
1311
+ #: views/support.php:48
1312
  msgid ""
1313
  "The ticket id you receive from your support request should be entered in the "
1314
  "ticket id field below."
1315
  msgstr ""
1316
 
1317
+ #: views/support.php:49
1318
  msgid "your email address"
1319
  msgstr ""
1320
 
1321
+ #: views/support.php:59
1322
  msgid "support ticket id"
1323
  msgstr ""
1324
 
1325
+ #: views/support.php:69
1326
  msgid "problem description or additional information"
1327
  msgstr ""
1328
 
1329
+ #: views/support.php:80
1330
  msgid "Send"
1331
  msgstr ""
1332
 
1333
+ #: views/support.php:83
1334
  msgid "Please register your version of WP BackItUp for access to support."
1335
  msgstr ""
1336
 
1337
+ #: views/support.php:87
1338
  msgid "Premium customers receive priority support."
1339
  msgstr ""
1340
 
1341
+ #: wp-backitup.php:98 wp-backitup.php:99
1342
  #, php-format
1343
  msgid "Every %s hours"
1344
  msgstr ""
1345
+
1346
+ #: wp-backitup.php:137
1347
+ msgid "Cleanup"
1348
+ msgstr ""
languages/wp-backitup-es_ES.mo ADDED
Binary file
languages/wp-backitup-es_ES.po ADDED
@@ -0,0 +1,1609 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Germán Suárez <germansc.upwork@gmail.com>, 2015
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP BackItUp\n"
7
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
8
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
9
+ "Last-Translator: Germán Suárez <germansc.upwork@gmail.com>\n"
10
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/wp-translations/wp-"
11
+ "backitup/language/es_ES/)\n"
12
+ "Language: es_ES\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.8.4\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: _;__;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
23
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
24
+ #: wp-backitup.php:109
25
+ msgid "Backup"
26
+ msgstr "Copia de seguridad"
27
+
28
+ #: lib/includes/class-wpbackitup-admin.php:182
29
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
30
+ #: wp-backitup.php:123
31
+ msgid "Restore"
32
+ msgstr "Restaurar"
33
+
34
+ #: lib/includes/class-wpbackitup-admin.php:186
35
+ msgid "Support"
36
+ msgstr "Soporte"
37
+
38
+ #: lib/includes/class-wpbackitup-admin.php:189
39
+ msgid "Settings"
40
+ msgstr "Configuración"
41
+
42
+ #: lib/includes/class-wpbackitup-admin.php:210
43
+ msgid ""
44
+ "The backup you have selected exceeds what your host allows you to upload."
45
+ msgstr ""
46
+ "La copia de seguridad que ha seleccionado excede lo que su servidor le "
47
+ "permite subir."
48
+
49
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
50
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
51
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
52
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
53
+ msgid "Warning"
54
+ msgstr "Advertencia"
55
+
56
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
57
+ #: views/backup.php:220
58
+ msgid "Error"
59
+ msgstr "Error"
60
+
61
+ #: lib/includes/class-wpbackitup-admin.php:213
62
+ msgid "Response"
63
+ msgstr "Respuesta"
64
+
65
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
66
+ #: views/backup.php:271 views/restore.php:230
67
+ msgid "Status"
68
+ msgstr "Estado"
69
+
70
+ #: lib/includes/class-wpbackitup-admin.php:215
71
+ msgid "Download"
72
+ msgstr "Descargar"
73
+
74
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
75
+ #: views/restore.php:132
76
+ msgid "Delete"
77
+ msgstr "Borrar"
78
+
79
+ #: lib/includes/class-wpbackitup-admin.php:218
80
+ msgid "(JS997) Unexpected error"
81
+ msgstr "(JS997) Error inesperado"
82
+
83
+ #: lib/includes/class-wpbackitup-admin.php:219
84
+ msgid "(JS998) Unexpected error"
85
+ msgstr "(JS998) Error inesperado"
86
+
87
+ #: lib/includes/class-wpbackitup-admin.php:220
88
+ msgid "(JS999) An unexpected error has occurred"
89
+ msgstr "(JS999) Ocurrió un error inesperado"
90
+
91
+ #: lib/includes/class-wpbackitup-admin.php:221
92
+ msgid "Scheduled has been saved."
93
+ msgstr "Se ha guardado la programación."
94
+
95
+ #: lib/includes/class-wpbackitup-admin.php:222
96
+ msgid "Scheduled was not saved."
97
+ msgstr "La programación no se ha guardado."
98
+
99
+ #: lib/includes/class-wpbackitup-admin.php:223
100
+ msgid "Are you sure you want to restore your site?"
101
+ msgstr "¿Está seguro de que quiere restaurar su sitio web?"
102
+
103
+ #: lib/includes/class-wpbackitup-admin.php:224
104
+ msgid "Are you sure ?"
105
+ msgstr "¿Está seguro?"
106
+
107
+ #: lib/includes/class-wpbackitup-admin.php:225
108
+ msgid "This file cannot be delete!"
109
+ msgstr "¡Este archivo no se puede borrar!"
110
+
111
+ #: lib/includes/class-wpbackitup-admin.php:226
112
+ msgid "View Log"
113
+ msgstr "Ver registro"
114
+
115
+ #: lib/includes/class-wpbackitup-admin.php:227
116
+ msgid "New Backup!"
117
+ msgstr "¡Nueva copia de seguridad!"
118
+
119
+ #: lib/includes/class-wpbackitup-admin.php:228
120
+ msgid "Uploaded Backup"
121
+ msgstr "Copia de seguridad subida"
122
+
123
+ #: lib/includes/class-wpbackitup-admin.php:515
124
+ msgid "Backup Queued"
125
+ msgstr "Copia de seguridad puesta en la cola"
126
+
127
+ #: lib/includes/class-wpbackitup-admin.php:518
128
+ msgid "Backup could not be queued"
129
+ msgstr "No se puede poner en la cola la copia de seguridad"
130
+
131
+ #: lib/includes/class-wpbackitup-admin.php:522
132
+ msgid "Job already in queue, please try again later"
133
+ msgstr "La tarea ya se encuentra en la cola, por favor, inténtelo más tarde"
134
+
135
+ #: lib/includes/class-wpbackitup-admin.php:554
136
+ msgid "No backup file selected."
137
+ msgstr "No se ha seleccionado ningún archivo de copia de seguridad."
138
+
139
+ #: lib/includes/class-wpbackitup-admin.php:561
140
+ msgid "No user id found."
141
+ msgstr "No se ha encontrado la id de usuario."
142
+
143
+ #: lib/includes/class-wpbackitup-admin.php:582
144
+ msgid "Restore Queued"
145
+ msgstr "Restauración en la cola"
146
+
147
+ #: lib/includes/class-wpbackitup-admin.php:584
148
+ msgid "Restore could not be queued"
149
+ msgstr "La restauración no se ha podido poner en cola"
150
+
151
+ #: lib/includes/class-wpbackitup-admin.php:588
152
+ msgid "Restore already in queue"
153
+ msgstr "La restauración ya está en la cola"
154
+
155
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
156
+ msgid "Backup Cancelled"
157
+ msgstr "Copia de seguridad cancelada"
158
+
159
+ #: lib/includes/class-wpbackitup-admin.php:754
160
+ msgid "No response log found."
161
+ msgstr "No se ha enontrado ningún registro."
162
+
163
+ #: lib/includes/class-wpbackitup-admin.php:856
164
+ #: lib/includes/class-wpbackitup-admin.php:864
165
+ #: lib/includes/class-wpbackitup-admin.php:893
166
+ #: lib/includes/class-wpbackitup-admin.php:900
167
+ #: lib/includes/class-wpbackitup-admin.php:907
168
+ #: lib/includes/class-wpbackitup-admin.php:914
169
+ msgid "Please enter a number"
170
+ msgstr "Por favor, introduzca un número"
171
+
172
+ #: lib/includes/class-wpbackitup-admin.php:885
173
+ #: lib/includes/class-wpbackitup-admin.php:993
174
+ msgid "Please enter a valid email"
175
+ msgstr "Por favor, introduzca una dirección de correo electrónico válida"
176
+
177
+ #: lib/includes/class-wpbackitup-admin.php:1000
178
+ msgid "Please enter your support ticket id"
179
+ msgstr "Por favor, introduzca el id de la incidencia"
180
+
181
+ #: lib/includes/class-wpbackitup-admin.php:1005
182
+ msgid "Please only enter numbers in this field"
183
+ msgstr "Por favor, sólo introduzca números en este campo"
184
+
185
+ #: lib/includes/class-wpbackitup-admin.php:1699
186
+ msgid "License is invalid."
187
+ msgstr "Licencia no válida"
188
+
189
+ #: lib/includes/class-wpbackitup-admin.php:1704
190
+ msgid "License has expired."
191
+ msgstr "La licencia ha caducado."
192
+
193
+ #: lib/includes/class-wpbackitup-admin.php:1707
194
+ #, php-format
195
+ msgid ""
196
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
197
+ "now for another year of <strong>product updates</strong> and access to our "
198
+ "<strong>world class support</strong> team."
199
+ msgstr ""
200
+ "La licencia ha caducado. Por favor <a href=\"%s\" target=\"blank\">renueve</"
201
+ "a> ahora para otro año de <strong>actualizaciones</strong> y acceso a "
202
+ "nuestro equipo de <strong>soporte de talla mundial</strong>."
203
+
204
+ #: lib/includes/class-wpbackitup-admin.php:1721
205
+ msgid "License Expired: Scheduled backups are no longer active."
206
+ msgstr ""
207
+ "La licencia ha caducado. Las copias de seguridad programadas ya no están "
208
+ "activas."
209
+
210
+ #: lib/includes/class-wpbackitup-admin.php:1729
211
+ msgid "Activation limit has been reached."
212
+ msgstr "Se ha llegado al límite de activaciones."
213
+
214
+ #: lib/includes/class-wpbackitup-admin.php:1735
215
+ msgid "Your Activation limit has been reached"
216
+ msgstr "Se ha llegado a su límite de activaciones"
217
+
218
+ #: lib/includes/handler_upload.php:29
219
+ msgid "Invalid Nonce"
220
+ msgstr "Nonce no válido"
221
+
222
+ #: lib/includes/handler_upload.php:39 lib/includes/handler_upload.php:151
223
+ msgid "Upload directory is not writable, or does not exist."
224
+ msgstr "El directorio de subida no tiene permisos de escritura, o no existe."
225
+
226
+ #: lib/includes/handler_upload.php:80
227
+ #, php-format
228
+ msgid "Error: %s"
229
+ msgstr "Error: %s"
230
+
231
+ #: lib/includes/handler_upload.php:80
232
+ msgid "File could not be uploaded"
233
+ msgstr "No se ha podido subir el archivo"
234
+
235
+ #: lib/includes/handler_upload.php:141
236
+ msgid "Upload does not appear to be a WP BackItUp backup archive file."
237
+ msgstr "El archivo subido no parecer ser un archivo de WP BackItUp."
238
+
239
+ #: lib/includes/handler_upload.php:161
240
+ msgid "Could not import file into WP BackItUp backup set."
241
+ msgstr ""
242
+ "No se ha podido importar el fichero dentro del conjunto de copias de "
243
+ "seguridad de WP BackItUp."
244
+
245
+ #: lib/includes/job_backup.php:907
246
+ #, php-format
247
+ msgid ""
248
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
249
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
250
+ "function for <strong>30</strong> days after your license has expired.Please "
251
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
252
+ "of product updates and access to our world class support team.<br/><br/>"
253
+ msgstr ""
254
+
255
+ #: lib/includes/job_backup.php:912
256
+ #, php-format
257
+ msgid "%s - Backup completed successfully."
258
+ msgstr "%s - de la copia de seguridad completada con éxito."
259
+
260
+ #: lib/includes/job_backup.php:913
261
+ msgid "Your backup completed successfully."
262
+ msgstr "Su copia de seguridad se ha completado con éxito."
263
+
264
+ #: lib/includes/job_backup.php:916
265
+ #, php-format
266
+ msgid "%s - Backup did not complete successfully."
267
+ msgstr "%s - de la copia de seguridad no se ha completado con éxito."
268
+
269
+ #: lib/includes/job_backup.php:917
270
+ msgid "Your backup did not complete successfully."
271
+ msgstr "Su copia de seguridad no se ha completado con éxito."
272
+
273
+ #: lib/includes/job_backup.php:924
274
+ #, php-format
275
+ msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
276
+ msgstr "Web de WordPress: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
277
+
278
+ #: lib/includes/job_backup.php:925
279
+ msgid "Backup date:"
280
+ msgstr "Fecha de la copia de seguridad:"
281
+
282
+ #: lib/includes/job_backup.php:926
283
+ msgid "Number of backups completed with WP BackItUp:"
284
+ msgstr "Número de copias de seguridad realizadas con WP BackItUp:"
285
+
286
+ #: lib/includes/job_backup.php:928
287
+ msgid "Completion Code:"
288
+ msgstr "Código de finalización:"
289
+
290
+ #: lib/includes/job_backup.php:929
291
+ msgid "WP BackItUp Version:"
292
+ msgstr "Versión de WP BackItUp:"
293
+
294
+ #: lib/includes/job_backup.php:941
295
+ #, php-format
296
+ msgid "Checkout %s for info about WP BackItUp and our other products."
297
+ msgstr ""
298
+ "Comprueba %s para información sobre WP BackItUp y nuestros otros productos."
299
+
300
+ #: lib/includes/job_backup.php:1117
301
+ msgid ""
302
+ "(101) Unable to create a new directory for backup. Please check your CHMOD "
303
+ "settings of your wp-backitup backup directory"
304
+ msgstr ""
305
+ "(101) No se puede crear un nuevo directorio para las copias de seguridad. "
306
+ "Compruebe la configuración CHMOD del directorio de wp-backitup"
307
+
308
+ #: lib/includes/job_backup.php:1118
309
+ msgid ""
310
+ "(102) Cannot create backup directory. Please check the CHMOD settings of "
311
+ "your wp-backitup plugin directory"
312
+ msgstr ""
313
+ "(102) No se ha podido crear el directorio para las copias de seguridad. "
314
+ "Compruebe la configuración CHMOD del directorio de wp-backitup"
315
+
316
+ #: lib/includes/job_backup.php:1119
317
+ msgid "(103) Unable to backup your files. Please try again"
318
+ msgstr ""
319
+ "(103) No se pueden hacer copias de seguridad de sus archivos. Inténtelo de "
320
+ "nuevo"
321
+
322
+ #: lib/includes/job_backup.php:1120
323
+ msgid "(104) Unable to export your database. Please try again"
324
+ msgstr "(104) No se puede exportar su base de datos. Inténtelo de nuevo"
325
+
326
+ #: lib/includes/job_backup.php:1121
327
+ msgid "(105) Unable to export site information file. Please try again"
328
+ msgstr ""
329
+ "(105) No se puede exportar el archivo de información del sitio web. "
330
+ "Inténtelo de nuevo"
331
+
332
+ #: lib/includes/job_backup.php:1122
333
+ msgid "(106) Unable to cleanup your backup directory"
334
+ msgstr "(106) No se puede limpiar su directorio de copias de seguridad"
335
+
336
+ #: lib/includes/job_backup.php:1123
337
+ msgid "(107) Unable to compress(zip) your backup. Please try again"
338
+ msgstr ""
339
+ "(107) No se puede comprimir(zip) su copia de seguridad. Inténtelo de nuevo"
340
+
341
+ #: lib/includes/job_backup.php:1124
342
+ msgid "(108) Unable to backup your site data files. Please try again"
343
+ msgstr ""
344
+ "(108) No se puede realizar la copia de seguridad de los ficheros de datos de "
345
+ "su sitio web. Inténtelo de nuevo"
346
+
347
+ #: lib/includes/job_backup.php:1125
348
+ msgid "(109) Unable to finalize backup. Please try again"
349
+ msgstr "(109) No se puede terminar la copia de seguridad. Inténtelo de nuevo"
350
+
351
+ #: lib/includes/job_backup.php:1126
352
+ msgid ""
353
+ "(114) Your database was accessible but an export could not be created. "
354
+ "Please contact support by clicking the get support link on the right. Please "
355
+ "let us know who your host is when you submit the request"
356
+ msgstr ""
357
+ "(114) Su base de datos era accesible pero no se ha podido exportar. Por "
358
+ "favor contacte con el soporte técnico haciendo clic en el enlace conseguir "
359
+ "soporte de la derecha.\n"
360
+ "Por favor díganos cual es su proveedor de hosting cuando nos envie la "
361
+ "petición"
362
+
363
+ #: lib/includes/job_backup.php:1127
364
+ msgid "(120) Unable to backup your themes. Please try again"
365
+ msgstr ""
366
+ "(120) No se puede realizar la copia de seguridad de sus temas. Inténtelo de "
367
+ "nuevo"
368
+
369
+ #: lib/includes/job_backup.php:1128
370
+ msgid "(121) Unable to backup your plugins. Please try again"
371
+ msgstr ""
372
+ "(121) No se puede realizar la copia de seguridad de sus plugins. Inténtelo "
373
+ "de nuevo"
374
+
375
+ #: lib/includes/job_backup.php:1129
376
+ msgid "(122) Unable to backup your uploads. Please try again"
377
+ msgstr ""
378
+ "(122) No se puede realizar la copia de seguridad de sus subidas. Inténtelo "
379
+ "de nuevo"
380
+
381
+ #: lib/includes/job_backup.php:1130
382
+ msgid "(123) Unable to backup your miscellaneous files. Please try again"
383
+ msgstr ""
384
+ "(123) No se puede realizar la copia de seguridad de archivos diversos. "
385
+ "Inténtelo de nuevo"
386
+
387
+ #: lib/includes/job_backup.php:1131
388
+ msgid ""
389
+ "(125) Unable to compress your backup because there is no zip utility "
390
+ "available. Please contact support"
391
+ msgstr ""
392
+ "(125) No se puede comprimir su copia de seguridad debido a que no está "
393
+ "disponible la utilidad zip. Por favor contacte con el soporte técnico"
394
+
395
+ #: lib/includes/job_backup.php:1132
396
+ msgid "(126) Unable to validate your backup. Please try again"
397
+ msgstr "(126) No se puede validar su copia de seguridad. Inténtelo de nuevo."
398
+
399
+ #: lib/includes/job_backup.php:1133
400
+ msgid "(127) Unable to create inventory of files to backup. Please try again"
401
+ msgstr ""
402
+ "(127) No se puede crear el inventario de ficheros que se deben añadir a la "
403
+ "copia de seguridad. Inténtelo de nuevo"
404
+
405
+ #: lib/includes/job_backup.php:1134
406
+ msgid "(128) Unable to create job control record. Please try again"
407
+ msgstr ""
408
+ "(128) No se puede crear el registro de control de tareas. Inténtelo de nuevo"
409
+
410
+ #: lib/includes/job_backup.php:1136
411
+ msgid ""
412
+ "(2101) Unable to create a new directory for backup. Please check your CHMOD "
413
+ "settings of your wp-backitup backup directory"
414
+ msgstr ""
415
+ "(2101) No se puede crear un nuevo directorio para las copias de seguridad. "
416
+ "Compruebe la configuración CHMOD del directorio de wp-backitup"
417
+
418
+ #: lib/includes/job_backup.php:1137
419
+ msgid ""
420
+ "(2102) Cannot create backup directory. Please check the CHMOD settings of "
421
+ "your wp-backitup plugin directory"
422
+ msgstr ""
423
+ "(2102) No se ha podido crear el directorio para las copias de seguridad. "
424
+ "Compruebe la configuración CHMOD del directorio de wp-backitup"
425
+
426
+ #: lib/includes/job_backup.php:1138
427
+ msgid "(2103) Unable to backup your files. Please try again"
428
+ msgstr ""
429
+ "(2103) No se pueden hacer copias de seguridad de sus archivos. Inténtelo de "
430
+ "nuevo"
431
+
432
+ #: lib/includes/job_backup.php:1139
433
+ msgid "(2104) Unable to export your database. Please try again"
434
+ msgstr "(2104) No se puede exportar su base de datos. Inténtelo de nuevo"
435
+
436
+ #: lib/includes/job_backup.php:1140
437
+ msgid "(2105) Unable to export site information file. Please try again"
438
+ msgstr ""
439
+ "(2105) No se puede exportar el archivo de información del sitio web. "
440
+ "Inténtelo de nuevo"
441
+
442
+ #: lib/includes/job_backup.php:1141
443
+ msgid "(2106) Unable to cleanup your backup directory"
444
+ msgstr "(2106) No se puede limpiar su directorio de copias de seguridad"
445
+
446
+ #: lib/includes/job_backup.php:1142
447
+ msgid "(2107) Unable to compress(zip) your backup. Please try again"
448
+ msgstr ""
449
+ "(2107) No se puede comprimir(zip) su copia de seguridad. Inténtelo de nuevo"
450
+
451
+ #: lib/includes/job_backup.php:1143
452
+ msgid "(2108) Unable to backup your site data files. Please try again"
453
+ msgstr ""
454
+ "(2108) No se puede realizar la copia de seguridad de los ficheros de datos "
455
+ "de su sitio web. Inténtelo de nuevo"
456
+
457
+ #: lib/includes/job_backup.php:1144
458
+ msgid "(2109) Unable to finalize backup. Please try again"
459
+ msgstr "(2109) No se puede terminar la copia de seguridad. Inténtelo de nuevo"
460
+
461
+ #: lib/includes/job_backup.php:1145
462
+ msgid ""
463
+ "(2114) Your database was accessible but an export could not be created. "
464
+ "Please contact support by clicking the get support link on the right. Please "
465
+ "let us know who your host is when you submit the request"
466
+ msgstr ""
467
+ "(2114) Su base de datos era accesible pero no se ha podido exportar. Por "
468
+ "favor contacte con el soporte técnico haciendo clic en el enlace conseguir "
469
+ "soporte de la derecha.\n"
470
+ "Por favor díganos cual es su proveedor de hosting cuando nos envie la "
471
+ "petición"
472
+
473
+ #: lib/includes/job_backup.php:1146
474
+ msgid "(2120) Unable to backup your themes. Please try again"
475
+ msgstr ""
476
+ "(2120) No se puede realizar la copia de seguridad de sus temas. Inténtelo de "
477
+ "nuevo"
478
+
479
+ #: lib/includes/job_backup.php:1147
480
+ msgid "(2121) Unable to backup your plugins. Please try again"
481
+ msgstr ""
482
+ "(2121) No se puede realizar la copia de seguridad de sus plugins. Inténtelo "
483
+ "de nuevo"
484
+
485
+ #: lib/includes/job_backup.php:1148
486
+ msgid "(2122) Unable to backup your uploads. Please try again"
487
+ msgstr ""
488
+ "(2122) No se puede realizar la copia de seguridad de sus subidas. Inténtelo "
489
+ "de nuevo."
490
+
491
+ #: lib/includes/job_backup.php:1149
492
+ msgid "(2123) Unable to backup your miscellaneous files. Please try again"
493
+ msgstr ""
494
+ "(2123) No se puede realizar la copia de seguridad de archivos diversos. "
495
+ "Inténtelo de nuevo"
496
+
497
+ #: lib/includes/job_backup.php:1150
498
+ msgid ""
499
+ "(2125) Unable to compress your backup because there is no zip utility "
500
+ "available. Please contact support"
501
+ msgstr ""
502
+ "(2125) No se puede comprimir su copia de seguridad debido a que no está "
503
+ "disponible la utilidad zip. Por favor contacte con el soporte técnico"
504
+
505
+ #: lib/includes/job_backup.php:1151
506
+ msgid "(2126) Unable to validate your backup. Please try again"
507
+ msgstr "(2126) No se puede validar su copia de seguridad. Inténtelo de nuevo"
508
+
509
+ #: lib/includes/job_backup.php:1152
510
+ msgid "(2127) Unable to create inventory of files to backup. Please try again"
511
+ msgstr ""
512
+ "(2127) No se puede crear el inventario de ficheros que se deben añadir a la "
513
+ "copia de seguridad. Inténtelo de nuevo"
514
+
515
+ #: lib/includes/job_backup.php:1153
516
+ msgid "(2128) Unable to create job control record. Please try again"
517
+ msgstr ""
518
+ "(2128) No se puede crear el registro de control de tareas. Inténtelo de nuevo"
519
+
520
+ #: lib/includes/job_backup.php:1156
521
+ msgid "(999) Unexpected error"
522
+ msgstr "(999) Error inesperado"
523
+
524
+ #. TRANSLATORS: %s = plugin name.
525
+ #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
526
+ #. Similar to how WordPress uses the word dashboard at the in the left navigation.
527
+ #: views/backup.php:17
528
+ #, php-format
529
+ msgid "%s Dashboard"
530
+ msgstr "Escritorio de %s"
531
+
532
+ #: views/backup.php:83
533
+ msgid "Dismiss"
534
+ msgstr "Descartar"
535
+
536
+ #: views/backup.php:95
537
+ #, php-format
538
+ msgid "Backup folder does not exist. Please contact %s for assistance."
539
+ msgstr ""
540
+ "La carpeta para las copias de seguridad no existe. Por favor contacte con %s "
541
+ "para conseguir ayuda."
542
+
543
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
544
+ msgid "support"
545
+ msgstr "soporte"
546
+
547
+ #: views/backup.php:98 views/backup.php:104
548
+ msgid "Close"
549
+ msgstr "Cerrar"
550
+
551
+ #: views/backup.php:119
552
+ msgid ""
553
+ "Click the backup button to create a zipped backup file of this site's "
554
+ "database, plugins, themes and settings."
555
+ msgstr ""
556
+ "Haga clic en el botón de copia de seguridad para crear una copia de "
557
+ "seguridad de la base de datos, plugins, temas y configuración de este sitio "
558
+ "web en un archivo zip."
559
+
560
+ #: views/backup.php:120
561
+ msgid ""
562
+ "Once your backup file has been created it will appear in the available "
563
+ "backups section below. This file may remain on your hosting providers server "
564
+ "but we recommend that you download and save it somewhere safe."
565
+ msgstr ""
566
+ "Una vez se ha creado su archivo de copia de seguridad aparecerá en la "
567
+ "sección inferior de copias de seguridad disponibles. Este archivo "
568
+ "permanecerá en su proveedor de hosting pero se recomienda que lo descargue y "
569
+ "guarde en algún lugar seguro."
570
+
571
+ #: views/backup.php:121
572
+ msgid ""
573
+ "WP BackItUp premium customers can use these backup files to perform an "
574
+ "automated restore of their site."
575
+ msgstr ""
576
+ "Los clientes premium de WP BackItUp pueden utilizar estos archivos de copia "
577
+ "de seguridad para restaurar automáticamente su sitio web."
578
+
579
+ #: views/backup.php:125
580
+ msgid "Cancel"
581
+ msgstr "Cancelar"
582
+
583
+ #: views/backup.php:132
584
+ #, php-format
585
+ msgid ""
586
+ "WP BackItUp lite customers may use these backup files to manually restore "
587
+ "their site. Please visit %s for manual restore instructions."
588
+ msgstr ""
589
+ "Los clientes lite de WP BackItUp pueden utilizar estos archivos de copia de "
590
+ "seguridad para restaurar de forma manual su sitio web. Visite %s para saber "
591
+ "como realizar la restauración manual."
592
+
593
+ #: views/backup.php:139
594
+ msgid "Backup Schedule"
595
+ msgstr "Copia de seguridad programada"
596
+
597
+ #: views/backup.php:141
598
+ msgid "Select the days of the week you would like your backup to run."
599
+ msgstr ""
600
+ "Seleccione los días de la semana que le gustaria que se realizara su copia "
601
+ "de seguridad."
602
+
603
+ #: views/backup.php:143
604
+ msgid ""
605
+ "Backup your site once per week or every day, it's up to you. If you have "
606
+ "email notifications turned on we'll even send you an email when it's done. "
607
+ "Once your backup file has been created it will appear in the available "
608
+ "backups section below. This file may remain on your hosting providers server "
609
+ "but we recommend that you download and save it somewhere safe."
610
+ msgstr ""
611
+ "Haga una copia de seguridad una vez por semana o todos los días, depende de "
612
+ "usted. Si tiene las notificaciones por correo electrónico activadas recibirá "
613
+ "un correo cuando esté hecha. Una vez se ha creado su archivo de copia de "
614
+ "seguridad aparecerá en la sección inferior de copias de seguridad "
615
+ "disponibles. El archivo permanecerá en su proveedor de hosting pero se "
616
+ "recomienda que descargue y guarde la copia en algún lugar seguro."
617
+
618
+ #: views/backup.php:145
619
+ msgid "Please make sure to schedule your backup for at least once per week."
620
+ msgstr ""
621
+ "Por favor, asegúrese de programar su copia de seguridad por lo menos una vez "
622
+ "a la semana."
623
+
624
+ #: views/backup.php:149
625
+ msgid "Monday"
626
+ msgstr "Lunes"
627
+
628
+ #: views/backup.php:150
629
+ msgid "Tuesday"
630
+ msgstr "Martes"
631
+
632
+ #: views/backup.php:151
633
+ msgid "Wednesday"
634
+ msgstr "Miércoles"
635
+
636
+ #: views/backup.php:152
637
+ msgid "Thursday"
638
+ msgstr "Jueves"
639
+
640
+ #: views/backup.php:153
641
+ msgid "Friday"
642
+ msgstr "Viernes"
643
+
644
+ #: views/backup.php:154
645
+ msgid "Saturday"
646
+ msgstr "Sábado"
647
+
648
+ #: views/backup.php:155
649
+ msgid "Sunday"
650
+ msgstr "Domingo"
651
+
652
+ #: views/backup.php:158
653
+ msgid "Save Schedule"
654
+ msgstr "Guardar programación"
655
+
656
+ #: views/backup.php:163
657
+ #, php-format
658
+ msgid ""
659
+ "Scheduled backups are only available to WP BackItUp premium customers. "
660
+ "Please visit %s to get WP BackItUp risk free for 30 days."
661
+ msgstr ""
662
+ "Las copias de seguridad programadas sólo están disponibles para los clientes "
663
+ "premium de Wp BackItUp. Visite %s para conseguir WP BackItUp sin riesgos por "
664
+ "30 días."
665
+
666
+ #: views/backup.php:170 views/restore.php:95
667
+ msgid "Available Backups"
668
+ msgstr "Copias de seguridad disponibles"
669
+
670
+ #: views/backup.php:190 views/restore.php:100
671
+ msgid "Date"
672
+ msgstr "Fecha"
673
+
674
+ #: views/backup.php:191
675
+ msgid "Duration"
676
+ msgstr "Duración"
677
+
678
+ #: views/backup.php:214
679
+ msgid "Success"
680
+ msgstr "Éxito"
681
+
682
+ #: views/backup.php:217
683
+ msgid "Active"
684
+ msgstr "Activo"
685
+
686
+ #: views/backup.php:257 views/restore.php:150
687
+ msgid "No backup archives found."
688
+ msgstr "No se han encontrado archivos de copia de seguridad."
689
+
690
+ #: views/backup.php:266
691
+ #, php-format
692
+ msgid ""
693
+ "The automated restore feature is only available to WP BackItUp premium "
694
+ "customers. Please visit %s to get WP BackItUp risk free for 30 days."
695
+ msgstr ""
696
+ "La función de restauración automática sólo está disponible para clientes "
697
+ "premium de WP BackItUp. Visite %s para conseguir WP BackItUp sin riesgos por "
698
+ "30 días."
699
+
700
+ #: views/backup.php:275 views/restore.php:234
701
+ msgid "Nothing to report"
702
+ msgstr "Nada que informar"
703
+
704
+ #: views/backup.php:280
705
+ msgid "Preparing for backup"
706
+ msgstr "Preparándose para la copia de seguridad"
707
+
708
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
709
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
710
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
711
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
712
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
713
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
714
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
715
+ msgid "Done"
716
+ msgstr "Hecho"
717
+
718
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
719
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
720
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
721
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
722
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
723
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
724
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
725
+ msgid "Failed"
726
+ msgstr "Fallido"
727
+
728
+ #: views/backup.php:281
729
+ msgid "Creating inventory of files to backup"
730
+ msgstr "Creando el inventario de ficheros a guardar en la copia de seguridad"
731
+
732
+ #: views/backup.php:282
733
+ msgid "Backing up database"
734
+ msgstr "Realizando copia de seguridad de la base de datos"
735
+
736
+ #: views/backup.php:283
737
+ msgid "Creating backup information file"
738
+ msgstr "Creando el archivo de información de la copia de seguridad"
739
+
740
+ #: views/backup.php:284
741
+ msgid "Backing up themes"
742
+ msgstr "Realizando copia de seguridad de los temas"
743
+
744
+ #: views/backup.php:285
745
+ msgid "Backing up plugins"
746
+ msgstr "Realizando copia de seguridad de los plugins"
747
+
748
+ #: views/backup.php:286
749
+ msgid "Backing up uploads"
750
+ msgstr "Realizando copia de seguridad de las subidas"
751
+
752
+ #: views/backup.php:287
753
+ msgid "Backing up everything else"
754
+ msgstr "Realizando copia de seguridad del resto"
755
+
756
+ #: views/backup.php:288
757
+ msgid "Validating backup"
758
+ msgstr "Validando copia de seguridad"
759
+
760
+ #: views/backup.php:289
761
+ msgid "Finalizing backup"
762
+ msgstr "Acabando la copia de seguridad"
763
+
764
+ #: views/backup.php:299
765
+ msgid "Backup completed successfully"
766
+ msgstr "Copia de seguridad completada con éxito."
767
+
768
+ #: views/backup.php:320
769
+ msgid "Backups"
770
+ msgstr "Copias de seguridad"
771
+
772
+ #: views/backup.php:320
773
+ msgid "Version "
774
+ msgstr "Versión"
775
+
776
+ #: views/backup.php:322
777
+ msgid "Welcome to WP BackItUp!"
778
+ msgstr "Bienvenido a WP BackItUp!"
779
+
780
+ #: views/backup.php:322
781
+ msgid "The simplest way to backup your WordPress site."
782
+ msgstr ""
783
+ "La forma más simple de realizar copias de seguridad de su sitio Wordpress."
784
+
785
+ #: views/backup.php:323
786
+ msgid ""
787
+ "Getting started is easy, just click the backup button on the left side of "
788
+ "this page."
789
+ msgstr ""
790
+ "Empezar es sencillo, sólo haga clic en el botón de copia de seguridad en el "
791
+ "lado izquierdo de esta página."
792
+
793
+ #: views/backup.php:327
794
+ #, php-format
795
+ msgid ""
796
+ "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
797
+ "medium;color: green\">%s</span> successful backups."
798
+ msgstr ""
799
+ "¡Enhorabuena! Ha realizado <span style=\"font-weight:bold;font-size:medium;"
800
+ "color: green\">%s</span> copias de seguridad con éxito."
801
+
802
+ #: views/backup.php:328
803
+ msgid "Tips"
804
+ msgstr "Consejos"
805
+
806
+ #: views/backup.php:329
807
+ msgid "Backup your site at least once per week"
808
+ msgstr "Haga una copia de seguridad al menos un vez por semana"
809
+
810
+ #: views/backup.php:330
811
+ msgid "Download all your backups and store them somewhere safe"
812
+ msgstr "Descargue sus copias de seguridad y guárdelas en algún lugar seguro"
813
+
814
+ #: views/backup.php:331
815
+ msgid "Verify your backup files are good by taking a look at what's inside"
816
+ msgstr ""
817
+ "Verifique que sus archivos de copia de seguridad estén bien mirando lo que "
818
+ "contienen"
819
+
820
+ #: views/backup.php:336
821
+ #, php-format
822
+ msgid "Why not %s and schedule your backups!"
823
+ msgstr "¿¡Por qué no %s y programar sus copias de seguridad!?"
824
+
825
+ #: views/backup.php:336
826
+ msgid "upgrade"
827
+ msgstr "actualizar"
828
+
829
+ #: views/backup.php:345
830
+ msgid "Register WP BackItUp"
831
+ msgstr "Registrar WP BackItUp"
832
+
833
+ #: views/backup.php:348
834
+ msgid ""
835
+ "Enter your name and email address below to receive <b>special offers</b> and "
836
+ "access to our world class <b>support</b> team. <br />\n"
837
+ " <br />Enter your license key below to activate it on this "
838
+ "site."
839
+ msgstr ""
840
+ "Introduzca su nombre y dirección de correo electrónico abajo para recibir "
841
+ "<b>ofertas especiales</b> y acceso a nuestro fantástico equipo de "
842
+ "<b>soporte</b>. <br />\n"
843
+ "<br />Entre su clave de licéncia abajo para activarlo en este sitio web."
844
+
845
+ #: views/backup.php:350
846
+ msgid "name"
847
+ msgstr "nombre"
848
+
849
+ #: views/backup.php:351
850
+ msgid "email address"
851
+ msgstr "dirección de correo electrónico"
852
+
853
+ #: views/backup.php:352
854
+ msgid "license key"
855
+ msgstr "clave de licencia"
856
+
857
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
858
+ #, php-format
859
+ msgid "%s"
860
+ msgstr "%s"
861
+
862
+ #: views/backup.php:353
863
+ msgid "Free plugin customers do not need to enter license key."
864
+ msgstr ""
865
+ "Los clientes del plugin gratuito no necesitan introducir la clave de "
866
+ "licencia."
867
+
868
+ #: views/backup.php:354
869
+ msgid "Register"
870
+ msgstr "Registrarse"
871
+
872
+ #: views/backup.php:363
873
+ msgid "License Info"
874
+ msgstr "Información de la licencia"
875
+
876
+ #: views/backup.php:385
877
+ msgid "Name"
878
+ msgstr "Nombre"
879
+
880
+ #: views/backup.php:386
881
+ msgid "Email"
882
+ msgstr "Correo"
883
+
884
+ #: views/backup.php:387
885
+ msgid "License Type"
886
+ msgstr "Tipo de licencia"
887
+
888
+ #: views/backup.php:388
889
+ msgid "Expires"
890
+ msgstr "Expira"
891
+
892
+ #: views/backup.php:391
893
+ msgid "Enter license key to activate on this site."
894
+ msgstr "Introduzca la clave de la licencia para activarlo en este sitio web."
895
+
896
+ #: views/backup.php:398
897
+ msgid "License Active"
898
+ msgstr "Licencia activa"
899
+
900
+ #: views/backup.php:406
901
+ msgid "License expired"
902
+ msgstr "Licencia caducada"
903
+
904
+ #: views/backup.php:410
905
+ msgid "Update"
906
+ msgstr "Actualizar"
907
+
908
+ #: views/backup.php:414
909
+ msgid "Activate"
910
+ msgstr "Activar"
911
+
912
+ #: views/backup.php:418
913
+ #, php-format
914
+ msgid "Purchase a %s license using the purchase link above."
915
+ msgstr "Compre una licencia %s usando el enlace superior de compra."
916
+
917
+ #: views/backup.php:418
918
+ msgid "no-risk"
919
+ msgstr "sin riesgo"
920
+
921
+ #: views/backup.php:424
922
+ #, php-format
923
+ msgid ""
924
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
925
+ "<strong>product updates</strong> and access to our <strong>world class "
926
+ "support</strong> team."
927
+ msgstr ""
928
+ "Por favor, <a href=\"%s\" target=\"blank\">renueve</a> ahora para otro año "
929
+ "de <strong> actualizaciones</strong> y acceso a nuestro equipo de "
930
+ "<strong>soporte de talla mundial</strong>."
931
+
932
+ #: views/backup.php:435
933
+ msgid "Useful Links"
934
+ msgstr "Enlaces útiles"
935
+
936
+ #: views/backup.php:438 views/backup.php:442
937
+ msgid "Your account"
938
+ msgstr "Su cuenta"
939
+
940
+ #: views/backup.php:445
941
+ msgid "Documentation"
942
+ msgstr "Documentación"
943
+
944
+ #: views/backup.php:448
945
+ msgid "Get support"
946
+ msgstr "Obtener soporte"
947
+
948
+ #: views/backup.php:451
949
+ msgid "Feature request"
950
+ msgstr "Solicite función"
951
+
952
+ #: views/backup.php:453
953
+ msgid "Language Translations"
954
+ msgstr "Traducciones"
955
+
956
+ #: views/backup.php:455
957
+ msgid "Contact"
958
+ msgstr "Contacto"
959
+
960
+ #: views/backup.php:478 views/backup.php:502
961
+ msgid "WP BackItUp Backup Set"
962
+ msgstr "Conjunto de copias de seguridad de WP BackItUp"
963
+
964
+ #: views/backup.php:480
965
+ msgid ""
966
+ "Below are the archive files included in this backup set. Click the link to "
967
+ "download."
968
+ msgstr ""
969
+ "Debajo están los archivos incluidos en esta copia de seguridad. Haga clic en "
970
+ "el enlace para descargarla."
971
+
972
+ #: views/backup.php:503
973
+ msgid "Please refresh this page to download your new backup files."
974
+ msgstr ""
975
+ "Por favor, actualice esta página para descargar sus nuevos archivos de copia "
976
+ "de seguridad"
977
+
978
+ #: views/restore.php:13
979
+ #, php-format
980
+ msgid "%s Restore"
981
+ msgstr "%s Restaurar"
982
+
983
+ #: views/restore.php:60
984
+ msgid "Zip Files"
985
+ msgstr "Archivos zip"
986
+
987
+ #: views/restore.php:75
988
+ #, php-format
989
+ msgid "Error: Backup folder does not exist. Please contact %s for assistance."
990
+ msgstr ""
991
+ "Error: La carpeta de las copias de seguridad no existe. Contacte con %s para "
992
+ "asistencia."
993
+
994
+ #: views/restore.php:82
995
+ #, php-format
996
+ msgid "Error: Restore folder does not exist. Please contact %s for assistance."
997
+ msgstr ""
998
+ "Error: La carpeta de restauración no existe. Contacte con %s para asistencia."
999
+
1000
+ #: views/restore.php:166
1001
+ #, php-format
1002
+ msgid ""
1003
+ "<p>* The automated restore feature is only available to licensed customers. "
1004
+ "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP "
1005
+ "BackItUp risk free for 30 days.</p>"
1006
+ msgstr ""
1007
+ "<p>* La función de restauración automática está disponible sólo para "
1008
+ "clientes con licencia. Visite <a href=\"%s\" target=\"_blank\">%s</a> para "
1009
+ "conseguir una licencia de WP BackItUp sin riesgo de 30 días.</p>"
1010
+
1011
+ #: views/restore.php:178
1012
+ msgid "Upload"
1013
+ msgstr "Subir"
1014
+
1015
+ #: views/restore.php:181
1016
+ msgid ""
1017
+ "Upload WP BackItUp archive(zip) files to add to your list of available "
1018
+ "backups."
1019
+ msgstr ""
1020
+ "Suba archivos(zip) de WP BackItUp para añadirlos a su lista de copias de "
1021
+ "seguridad disponibles."
1022
+
1023
+ #: views/restore.php:198
1024
+ msgid "WP BackItUp - Upload backup files"
1025
+ msgstr "WP BackItUp - Subir archivos de copia de seguridad"
1026
+
1027
+ #: views/restore.php:199
1028
+ msgid "Backup files may be uploaded into WP BackItUp with this form."
1029
+ msgstr ""
1030
+ "Las copias de seguridad se pueden subir a WP BackItUp con este formulario."
1031
+
1032
+ #: views/restore.php:199
1033
+ msgid ""
1034
+ "They may also be uploaded manually into the WP BackItUp directory (wp-"
1035
+ "content/wpbackitup_backups) using FTP. When done uploading all backup files "
1036
+ "refresh this page."
1037
+ msgstr ""
1038
+ "También se pueden subir manualmente al directorio de WP BackItUp (wp-content/"
1039
+ "wpbackitup_backups) usando FTP. Cuando termine con la subida de todas las "
1040
+ "copias de seguridad actualice esta página."
1041
+
1042
+ #: views/restore.php:203
1043
+ #, php-format
1044
+ msgid "This feature requires %s version %s or later"
1045
+ msgstr "Esta función requiere %s versión %s o superior"
1046
+
1047
+ #: views/restore.php:209
1048
+ msgid "Drop backup files here"
1049
+ msgstr "Coloque las copias de seguridad aquí"
1050
+
1051
+ #: views/restore.php:215
1052
+ msgid ""
1053
+ "* Reload this page when done uploading to see new backups appear in the "
1054
+ "Available Backups section above. "
1055
+ msgstr ""
1056
+ "* Recargue esta página cuando termine la subida para ver aparecer las nuevas "
1057
+ "copias de seguridad en la sección Copias de seguridad disponibles de abajo."
1058
+
1059
+ #: views/restore.php:244
1060
+ msgid "Preparing for restore"
1061
+ msgstr "Preparándose para restaurar"
1062
+
1063
+ #: views/restore.php:245
1064
+ msgid "Unzipping backup set"
1065
+ msgstr "Descomprimir copia de seguridad"
1066
+
1067
+ #: views/restore.php:246
1068
+ msgid "Validating backup file"
1069
+ msgstr "Validando el archivo de copia de seguridad"
1070
+
1071
+ #: views/restore.php:247
1072
+ msgid "Deactivating plugins"
1073
+ msgstr "Desactivando plugins"
1074
+
1075
+ #: views/restore.php:248
1076
+ msgid "Creating database restore point"
1077
+ msgstr "Creando un punto de restauración de la base de datos"
1078
+
1079
+ #: views/restore.php:249
1080
+ msgid "Staging content files"
1081
+ msgstr "Archivos de contenidos provisional"
1082
+
1083
+ #: views/restore.php:250
1084
+ msgid "Restoring content files"
1085
+ msgstr "Restaurando archivos de contenidos"
1086
+
1087
+ #: views/restore.php:251
1088
+ msgid "Restoring database"
1089
+ msgstr "Resturando base de datos"
1090
+
1091
+ #: views/restore.php:252
1092
+ msgid "Updating current user info"
1093
+ msgstr "Actualización de la información actual del usuario"
1094
+
1095
+ #: views/restore.php:253
1096
+ msgid "Updating site URL"
1097
+ msgstr "Actualizando dirección URL"
1098
+
1099
+ #: views/restore.php:255
1100
+ msgid "Updating permalinks"
1101
+ msgstr "Actualizando enlaces permanentes"
1102
+
1103
+ #: views/restore.php:261
1104
+ msgid "Error 201: No file selected"
1105
+ msgstr "Error 201: No se ha seleccionado ningún archivo"
1106
+
1107
+ #: views/restore.php:262
1108
+ msgid "Error 202: Your file could not be uploaded"
1109
+ msgstr "Error 202: No se ha podido subir el archivo"
1110
+
1111
+ #: views/restore.php:263
1112
+ msgid "Error 203: Your backup could not be unzipped"
1113
+ msgstr "Error 203: No se puede descomprimir su copia de seguridad"
1114
+
1115
+ #: views/restore.php:264
1116
+ msgid ""
1117
+ "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1118
+ "valid backup"
1119
+ msgstr ""
1120
+ "Error 204: Su copia de seguridad parece no válida. Asegúrese de seleccionar "
1121
+ "una copia de seguridad válida"
1122
+
1123
+ #: views/restore.php:265
1124
+ msgid "Error 205: Cannot create restore point"
1125
+ msgstr "Error 205: No se puede crear un punto de restauración"
1126
+
1127
+ #: views/restore.php:266
1128
+ msgid "Error 206: Unable to connect to your database"
1129
+ msgstr "Error 206: No se puede conectar a su base de datos"
1130
+
1131
+ #: views/restore.php:267
1132
+ msgid ""
1133
+ "Error 207: Unable to get current site URL from database. Please try again"
1134
+ msgstr ""
1135
+ "Error 207: No se puede conseguir la URL actual desde la base de datos. "
1136
+ "Inténtelo de nuevo"
1137
+
1138
+ #: views/restore.php:268
1139
+ msgid ""
1140
+ "Error 208: Unable to get current home URL from database. Please try again"
1141
+ msgstr ""
1142
+ "Error 208: No se puede conseguir la URL de la página de inicio actual desde "
1143
+ "la base de datos. Inténtelo de nuevo"
1144
+
1145
+ #: views/restore.php:269
1146
+ msgid ""
1147
+ "Error 209: Unable to get current user ID from database. Please try again"
1148
+ msgstr ""
1149
+ "Error 209: No se puede conseguir la ID actual de usuario desde la base de "
1150
+ "datos. Inténtelo de nuevo"
1151
+
1152
+ #: views/restore.php:270
1153
+ msgid ""
1154
+ "Error 210: Unable to get current user password from database. Please try "
1155
+ "again"
1156
+ msgstr ""
1157
+ "Error 210: No se puede conseguir la contraseña actual de usuario desde la "
1158
+ "base de datos. Inténtelo de nuevo"
1159
+
1160
+ #: views/restore.php:271
1161
+ msgid ""
1162
+ "Error 211: Unable to get current user email from database. Please try again"
1163
+ msgstr ""
1164
+ "Error 211: No se puede conseguir la dirección de correo electrónico actual "
1165
+ "del usuario desde la base de datos. Inténtelo de nuevo"
1166
+
1167
+ #: views/restore.php:272
1168
+ msgid ""
1169
+ "Error 212: Unable to import your database. This may require importing the "
1170
+ "file manually"
1171
+ msgstr ""
1172
+ "Error 212: No se puede importar su base de datos. Esto puede requerir la "
1173
+ "importación manual del archivo"
1174
+
1175
+ #: views/restore.php:273
1176
+ msgid ""
1177
+ "Warning 213: Unable to update your site URL value. Please check your "
1178
+ "WordPress general settings to make sure your Site and WordPress URLs are "
1179
+ "correct"
1180
+ msgstr ""
1181
+ "Advertencia 213: No se puede actualizar el valor de la URL de su sitio web. "
1182
+ "Compruebe los ajustes generales de su WordPress para asegurarse de que las "
1183
+ "URL de su sitio y de WordPress son correctas"
1184
+
1185
+ #: views/restore.php:274
1186
+ msgid ""
1187
+ "Warning 214: Unable to update your home URL value. Please check your "
1188
+ "WordPress general settings to make sure your Site and WordPress URLs are "
1189
+ "correct"
1190
+ msgstr ""
1191
+ "Advertencia 214: No se puede actualizar la URL de su página de inicio. "
1192
+ "Compruebe los ajustes generales de su WordPress para asegurarse de que las "
1193
+ "URL de su sitio y de WordPress son correctas"
1194
+
1195
+ #: views/restore.php:275
1196
+ msgid ""
1197
+ "Warning 215: Unable to update your user information. This may require you to "
1198
+ "login with the admin username and password that was used when the backup was "
1199
+ "created"
1200
+ msgstr ""
1201
+ "Advertencia 215: No se puede actualizar su información de usuario. Esto "
1202
+ "puede requerir que inicie sesión con el nombre de usuario y contraseña que "
1203
+ "usó cuando se creó la copia de seguridad"
1204
+
1205
+ #: views/restore.php:276
1206
+ msgid "Error 216: Database not found in backup"
1207
+ msgstr "Error 216: No se encuentra la base de datos en la copia de seguridad"
1208
+
1209
+ #: views/restore.php:277
1210
+ msgid "Warning 217: Unable to remove existing wp-content directory"
1211
+ msgstr ""
1212
+ "Advertencia 217: No se puede eliminar el directorio wp-content existente"
1213
+
1214
+ #: views/restore.php:278
1215
+ msgid ""
1216
+ "Error 218: Unable to create new wp-content directory. Please check your "
1217
+ "CHMOD settings in /wp-content/"
1218
+ msgstr ""
1219
+ "Error 218: No se puede crear un nuevo directorio wp-content. Revise su "
1220
+ "configuración CHMOD en /wp-content/"
1221
+
1222
+ #: views/restore.php:279
1223
+ msgid "Error 219: Unable to import wp-content. Please try again"
1224
+ msgstr "Error 219: No se puede importat wp-content. Inténtelo de nuevo"
1225
+
1226
+ #: views/restore.php:280
1227
+ msgid "Warning 220: Unable to cleanup import directory. No action is required"
1228
+ msgstr ""
1229
+ "Advertencia 220: No se puede limpiar el directorio importado. No se requiere "
1230
+ "ninguna acción"
1231
+
1232
+ #: views/restore.php:281
1233
+ #, php-format
1234
+ msgid ""
1235
+ "Error 221: Table prefix value in wp-config.php is different from backup. "
1236
+ "This MUST be changed in your wp-config.php file before you will be able to "
1237
+ "restore your site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" "
1238
+ "> FAQs</a> for more info."
1239
+ msgstr ""
1240
+ "Error 221: El prefijo de la tabla en wp-config.php es distinto del de la "
1241
+ "copia de seguridad. Este DEBE ser cambiado en su archivo wp-config.php antes "
1242
+ "de poder restaurar su sitio web. Vea en www.wpbackitup.com las <a href =\"%s"
1243
+ "\" target=\"_blank\" > Preguntas frecuentes</a> para más información."
1244
+
1245
+ #: views/restore.php:282
1246
+ msgid "Error 222: Unable to create restore folder"
1247
+ msgstr "Error 222: No se puede crear la carpeta de restauración"
1248
+
1249
+ #: views/restore.php:283
1250
+ msgid ""
1251
+ "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1252
+ "restore the database to its previous state but were unsuccessful. Please "
1253
+ "contact WP BackItUp customer support and do not attempt to perform any "
1254
+ "further restores"
1255
+ msgstr ""
1256
+ "Error 223: Ha ocurrido un error durante la restauración. WP BackItUp "
1257
+ "intentará restaurar la base de datos a su estado previo pero puede no tener "
1258
+ "éxito. Por favor, contacte con el soporte al cliente de WP BackItUp y no "
1259
+ "intente realizar más restauraciones"
1260
+
1261
+ #: views/restore.php:284
1262
+ msgid ""
1263
+ "Error 224: An error occurred during the restore, however, we have "
1264
+ "successfully restored your database to the previous state"
1265
+ msgstr ""
1266
+ "Error 224: Ha ocurrido un error durante la restauración, de todas formas, "
1267
+ "hemos restaurado su base de datos a su estado previo con éxito"
1268
+
1269
+ #: views/restore.php:285
1270
+ msgid ""
1271
+ "Error 225: Restore option is only available to licensed WP BackItUp users"
1272
+ msgstr ""
1273
+ "Error 225: La opción de restaurar está disponible sólo para los usuarios con "
1274
+ "licencia de WP BackItUp"
1275
+
1276
+ #: views/restore.php:286
1277
+ msgid ""
1278
+ "Error 226: Restore cannot proceed because your backup was created using a "
1279
+ "different version of WordPress"
1280
+ msgstr ""
1281
+ "Error 226: No se procederá a la restauración porqué su copia de seguridad se "
1282
+ "creó con una versión distinta de WordPress"
1283
+
1284
+ #: views/restore.php:287
1285
+ msgid ""
1286
+ "Error 227: Restore cannot proceed because your backup was created using a "
1287
+ "different version of WP BackItUp. Please contact WP BackItUp support to "
1288
+ "help convert this backup to the current version"
1289
+ msgstr ""
1290
+ "Error 227: No se procederá a la restauración porqué su copia de seguridad se "
1291
+ "creó con una versión distinta de WP BackItUp. Contacte con el soporte de WP "
1292
+ "BackItUp para encontrar ayuda de como convertir su copia de seguridad a la "
1293
+ "versión actual"
1294
+
1295
+ #: views/restore.php:288
1296
+ msgid ""
1297
+ "Error 230: WP BackItUp ran into unexpected errors during the database "
1298
+ "restore. However, we were able to successfully revert the database back to "
1299
+ "its original state . This error may require importing the database manually"
1300
+ msgstr ""
1301
+ "Error 230: WP BackItUp tuvo errores inesperados durante la restauración de "
1302
+ "la base de datos. De todas formas, se ha podido revertir la base de datos a "
1303
+ "su estado original. Este error puede requerir la importación de la base de "
1304
+ "datos de forma manual"
1305
+
1306
+ #: views/restore.php:289
1307
+ msgid ""
1308
+ "Error 235: WP BackItUp is not able to proceed because there is no zip "
1309
+ "utility available. Please contact support"
1310
+ msgstr ""
1311
+ "Error 235: WP BackItUp no puede proceder porqué no hay ninguna utilidad zip "
1312
+ "disponible. Por favor, contacte con el soporte"
1313
+
1314
+ #: views/restore.php:290
1315
+ msgid ""
1316
+ "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1317
+ "running. Please wait for the backup to complete and then try again"
1318
+ msgstr ""
1319
+ "Error 250: WP BackItUp no puede empezar la restauración porqué se esta "
1320
+ "creando una copia de seguridad. Espere que la copia de seguridad se complete "
1321
+ "y entonces inténtelo de nuevo"
1322
+
1323
+ #: views/restore.php:292
1324
+ msgid ""
1325
+ "Error 251: WP BackItUp is unable to begin the restore because the backup "
1326
+ "manifest is empty"
1327
+ msgstr ""
1328
+ "Error 251: WP BackItUp no puede empezar la restauración porqué el manifiesto "
1329
+ "de la copia de seguridad está vacío"
1330
+
1331
+ #: views/restore.php:293
1332
+ msgid ""
1333
+ "Error 252: At least one zip file is missing from your backup set. Please "
1334
+ "make sure to upload all zip files that were part of this backup"
1335
+ msgstr ""
1336
+ "Error 252: Por lo menos se ha perdido un archivo zip de su copia de "
1337
+ "seguridad. Por favor, esté seguro de subir todos los ficheros zip que forman "
1338
+ "parte de esta copia de seguridad"
1339
+
1340
+ #: views/restore.php:294
1341
+ msgid ""
1342
+ "Error 253: Backup set contains a zip file that is not in the manifest. "
1343
+ "Please make sure to upload only zip files that were part of this backup"
1344
+ msgstr ""
1345
+ "Error 253: La copia de seguridad contiene un archivo zip que no está en el "
1346
+ "manifiesto. Asegúrese de subir sólo los archivos zip que forman parte de "
1347
+ "esta copia de seguridad"
1348
+
1349
+ #: views/restore.php:296
1350
+ msgid ""
1351
+ "Warning 300: Unable to restore all WordPress content. Please review your "
1352
+ "restore logs to see what WP BackItUp was unable to restore"
1353
+ msgstr ""
1354
+ "Advertencia 300: No se puede restaurar todo el contenido de WordPress. "
1355
+ "Revise los registros de restauración para ver que no puede restaurar WP "
1356
+ "BackItUp"
1357
+
1358
+ #: views/restore.php:297
1359
+ msgid ""
1360
+ "Warning 305: Unable to restore all plugins. Please review your restore logs "
1361
+ "to see what WP BackItUp was unable to restore"
1362
+ msgstr ""
1363
+ "Advertencia 305: No se pueden restaurar todos los plugins. Revise los "
1364
+ "registros de restauración para ver que no puede restaurar WP BackItUp"
1365
+
1366
+ #: views/restore.php:299
1367
+ msgid "Error 2001: Unable to prepare site for restore"
1368
+ msgstr "Error 2001: No se puede preparar el sitio para su restauración"
1369
+
1370
+ #: views/restore.php:300
1371
+ msgid "Error 2002: Unable to unzip backup"
1372
+ msgstr "Error 2002: No se puede descomprimir la copia de seguridad"
1373
+
1374
+ #: views/restore.php:301
1375
+ msgid "Error 2003: Unable to validate backup"
1376
+ msgstr "Error 2003: No se puede validar la copia de seguridad"
1377
+
1378
+ #: views/restore.php:302
1379
+ msgid "Error 2004: Unable to create restore point"
1380
+ msgstr "Error 2004: No se puede crear un punto de restauración"
1381
+
1382
+ #: views/restore.php:303
1383
+ msgid "Error 2005: Unable to stage wp-content"
1384
+ msgstr "Error 2005: No se puede realizar una copia intermedia de wp-content"
1385
+
1386
+ #: views/restore.php:304
1387
+ msgid "Error 2006: Unable to restore content files"
1388
+ msgstr "Error 2006: No se pueden restaurar los archivos de contenidos"
1389
+
1390
+ #: views/restore.php:305
1391
+ msgid "Error 2007: Unable to restore database"
1392
+ msgstr "Error 2007: No se puede restaurar la base de datos"
1393
+
1394
+ #: views/restore.php:306
1395
+ msgid "Error 2999: Unexpected error encountered"
1396
+ msgstr "Error 2999: Se ha encontrado un error inesperado"
1397
+
1398
+ #: views/restore.php:313
1399
+ msgid ""
1400
+ "Restore completed successfully. If you are prompted to login please do so "
1401
+ "with your current username and password"
1402
+ msgstr ""
1403
+ "Restauración completada con éxito. Si se le solicita que inicie sesión por "
1404
+ "favor hágalo con su nombre de usuario y contraseña actuales"
1405
+
1406
+ #: views/settings.php:13
1407
+ #, php-format
1408
+ msgid "%s Settings"
1409
+ msgstr "%s Ajustes"
1410
+
1411
+ #: views/settings.php:40
1412
+ msgid "Email Notifications"
1413
+ msgstr "Notificaciones por correo electrónico"
1414
+
1415
+ #: views/settings.php:41
1416
+ msgid ""
1417
+ "Please enter your email address if you would like to receive backup email "
1418
+ "notifications."
1419
+ msgstr ""
1420
+ "Por favor, introduzca su dirección de correo electrónico si quiere recibir "
1421
+ "notificacions por correo de sus copias de seguridad"
1422
+
1423
+ #: views/settings.php:42
1424
+ msgid ""
1425
+ "Backup email notifications will be sent for every backup and will contain "
1426
+ "status information related to the backup."
1427
+ msgstr ""
1428
+ "Las notificaciones por correo electrónico de las copias de seguridad se "
1429
+ "enviaran por cada copia de seguridad y contendrán información relacionada "
1430
+ "con el estado de la copia de seguridad"
1431
+
1432
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1433
+ #: views/settings.php:111
1434
+ msgid "Save"
1435
+ msgstr "Guardar"
1436
+
1437
+ #: views/settings.php:60
1438
+ msgid "Backup Retention"
1439
+ msgstr "Retención de la copia de seguridad"
1440
+
1441
+ #: views/settings.php:61
1442
+ msgid ""
1443
+ "Enter the number of backup archives that you would like to remain on the "
1444
+ "server."
1445
+ msgstr ""
1446
+ "Introduzca el número de copias de seguridad que quiere que permanezcan en su "
1447
+ "servidor."
1448
+
1449
+ #: views/settings.php:62
1450
+ msgid ""
1451
+ "Many hosts limit the amount of space that you can take up on their servers. "
1452
+ "This option tells WP BackItUp the maximum number of backup archives that "
1453
+ "should remain on your hosts server. Don't worry, we will always remove the "
1454
+ "oldest backup archives first."
1455
+ msgstr ""
1456
+ "Muchos proveedores de hosting limitan la cantidad de espacio que puede usar "
1457
+ "en sus servidores. Esta opción le dice a WP BackItUp el número máximo de "
1458
+ "copias de seguridad que pueden permanecer en los servidores. No se preocupe, "
1459
+ "siempre eliminaremos primero las copias de seguridad más antiguas."
1460
+
1461
+ #: views/settings.php:81
1462
+ msgid "Turn on logging?"
1463
+ msgstr "¿Activar al iniciar sesión?"
1464
+
1465
+ #: views/settings.php:82
1466
+ msgid "Yes"
1467
+ msgstr "Sí"
1468
+
1469
+ #: views/settings.php:83
1470
+ msgid "No"
1471
+ msgstr "No"
1472
+
1473
+ #: views/settings.php:84
1474
+ msgid ""
1475
+ "This option should only be turned on when troubleshooting issues with "
1476
+ "WPBackItUp support."
1477
+ msgstr ""
1478
+ "Esta opción sólo debería activarse cuando solucione problemas a través del "
1479
+ "soporte de WP BackItUp."
1480
+
1481
+ #: views/settings.php:89
1482
+ msgid "Advanced Settings"
1483
+ msgstr "Ajustes avanzados"
1484
+
1485
+ #: views/settings.php:90
1486
+ msgid ""
1487
+ "These options should only be changed when working with WP BackItUp support."
1488
+ msgstr ""
1489
+ "Esta opción sólo se debería cambiar cuando trabaje con el soporte de WP "
1490
+ "BackItUp."
1491
+
1492
+ #: views/settings.php:93
1493
+ msgid "Plugins Batch Size"
1494
+ msgstr "Tamaño del lote de plugins"
1495
+
1496
+ #: views/settings.php:98
1497
+ msgid "Themes Batch Size"
1498
+ msgstr "Tamaño del lote de temas"
1499
+
1500
+ #: views/settings.php:103
1501
+ msgid "Uploads Batch Size"
1502
+ msgstr "Tamaño del lote de subidas"
1503
+
1504
+ #: views/settings.php:108
1505
+ msgid "Others Batch Size"
1506
+ msgstr "Tamaño del lote de otros"
1507
+
1508
+ #: views/support.php:13
1509
+ #, php-format
1510
+ msgid "%s Support"
1511
+ msgstr "%s soporte"
1512
+
1513
+ #: views/support.php:32
1514
+ msgid "Support email sent successfully!"
1515
+ msgstr "¡Correo para el soporte enviado con éxito!"
1516
+
1517
+ #: views/support.php:45
1518
+ msgid "Email Logs to Support"
1519
+ msgstr "Envíe por correo electrónico los registros al soporte"
1520
+
1521
+ #: views/support.php:46
1522
+ msgid "This form should be used to send log files to support only."
1523
+ msgstr ""
1524
+ "Este formulario debería ser usado sólo para enviar los archivos de registro "
1525
+ "al soporte."
1526
+
1527
+ #: views/support.php:47
1528
+ msgid ""
1529
+ "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1530
+ "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1531
+ "using this form."
1532
+ msgstr ""
1533
+ "Asegúrese de crear una incidencia de soporte técnico a través del <a href="
1534
+ "\"https://www.wpbackitup.com/support\" target=\"_blank\">portal de soporte</"
1535
+ "a> de Wp BackItUp antes de usar este formulario."
1536
+
1537
+ #: views/support.php:48
1538
+ msgid ""
1539
+ "The ticket id you receive from your support request should be entered in the "
1540
+ "ticket id field below."
1541
+ msgstr ""
1542
+ "El id del ticket de la incidencia que reciba de nuestro soporte técnico debe "
1543
+ "introducirse en el campo inferior del id del ticket."
1544
+
1545
+ #: views/support.php:49
1546
+ msgid "your email address"
1547
+ msgstr "su dirección de correo electrónico"
1548
+
1549
+ #: views/support.php:59
1550
+ msgid "support ticket id"
1551
+ msgstr "id del ticket del soporte técnico"
1552
+
1553
+ #: views/support.php:69
1554
+ msgid "problem description or additional information"
1555
+ msgstr "descripción del problema o información adicional"
1556
+
1557
+ #: views/support.php:80
1558
+ msgid "Send"
1559
+ msgstr "Enviar"
1560
+
1561
+ #: views/support.php:83
1562
+ msgid "Please register your version of WP BackItUp for access to support."
1563
+ msgstr "Por favor, registre su versión de WP BackItUp para acceder al soporte."
1564
+
1565
+ #: views/support.php:87
1566
+ msgid "Premium customers receive priority support."
1567
+ msgstr "Los clientes premium reciben soporte técnico prioritario."
1568
+
1569
+ #: wp-backitup.php:98 wp-backitup.php:99
1570
+ #, php-format
1571
+ msgid "Every %s hours"
1572
+ msgstr "Cada %s horas"
1573
+
1574
+ #: wp-backitup.php:137
1575
+ msgid "Cleanup"
1576
+ msgstr "Limpiar"
1577
+
1578
+ #~ msgid "Preparing for backup...Done"
1579
+ #~ msgstr "Preparando la copia de seguridad... Hecho."
1580
+
1581
+ #~ msgid "Backing up database...Done"
1582
+ #~ msgstr "Realizando copia de seguridad de la base de datos... Hecho"
1583
+
1584
+ #~ msgid "Creating backup information file...Done"
1585
+ #~ msgstr "Creando el fichero de información de la copia de seguridad... Hecho"
1586
+
1587
+ #~ msgid "Backing up themes...Done"
1588
+ #~ msgstr "Realizando copia de seguridad de los temas... Hecho"
1589
+
1590
+ #~ msgid "Backing up plugins...Done"
1591
+ #~ msgstr "Realizando copia de seguridad de los plugins... Hecho"
1592
+
1593
+ #~ msgid "Backing up uploads...Done"
1594
+ #~ msgstr "Realizando copia de seguridad de las subidas... Hecho"
1595
+
1596
+ #~ msgid "Backing up miscellaneous files...Done"
1597
+ #~ msgstr "Realizando copia de seguridad de archivos diversos... Hecho"
1598
+
1599
+ #~ msgid "Finalizing backup...Done"
1600
+ #~ msgstr "Acabando la copia de seguridad... Hecho"
1601
+
1602
+ #~ msgid "Validating backup...Done"
1603
+ #~ msgstr "Validando copia de seguridad... Hecho"
1604
+
1605
+ #~ msgid "Cleaning up...Done"
1606
+ #~ msgstr "Limpiando... Hecho"
1607
+
1608
+ #~ msgid "Steps Completed"
1609
+ #~ msgstr "Pasos completados"
languages/wp-backitup-fr_FR.mo CHANGED
Binary file
languages/wp-backitup-fr_FR.po CHANGED
@@ -8,8 +8,8 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WP BackItUp\n"
11
- "POT-Creation-Date: 2015-08-14 10:31-0400\n"
12
- "PO-Revision-Date: 2015-08-14 10:31-0400\n"
13
  "Last-Translator: Franck\n"
14
  "Language-Team: French (France) (http://www.transifex.com/wp-translations/wp-"
15
  "backitup/language/fr_FR/)\n"
@@ -23,178 +23,202 @@ msgstr ""
23
  "X-Poedit-KeywordsList: _;__;_e\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
27
- #: views/backup.php:179
 
28
  msgid "Backup"
29
  msgstr "Sauvegarder"
30
 
31
- #: lib/includes/class-wpbackitup-admin.php:175
32
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
33
  msgid "Restore"
34
  msgstr "Rétablir"
35
 
36
- #: lib/includes/class-wpbackitup-admin.php:179
37
  msgid "Support"
38
  msgstr "Support"
39
 
40
- #: lib/includes/class-wpbackitup-admin.php:182
41
  msgid "Settings"
42
  msgstr "Réglages"
43
 
44
- #: lib/includes/class-wpbackitup-admin.php:203
45
  msgid ""
46
  "The backup you have selected exceeds what your host allows you to upload."
47
  msgstr ""
48
  "La sauvegarde que vous avez sélectionnée excède ce que vous êtes autorisé à "
49
  "mettre en ligne par votre hébergeur."
50
 
51
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
52
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
53
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
54
- #: views/backup.php:312 views/backup.php:313
55
  msgid "Warning"
56
  msgstr "Avertissement"
57
 
58
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
59
  msgid "Error"
60
  msgstr "Erreur"
61
 
62
- #: lib/includes/class-wpbackitup-admin.php:206
63
  msgid "Response"
64
  msgstr "Réponse"
65
 
66
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
67
- #: views/restore.php:205
68
  msgid "Status"
69
  msgstr "État"
70
 
71
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
72
  msgid "Download"
73
  msgstr "Télécharger"
74
 
75
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
76
- #: views/restore.php:111
77
  msgid "Delete"
78
  msgstr "Supprimer"
79
 
80
- #: lib/includes/class-wpbackitup-admin.php:211
81
  msgid "(JS997) Unexpected error"
82
  msgstr "(JS997) Erreur inattendue."
83
 
84
- #: lib/includes/class-wpbackitup-admin.php:212
85
  msgid "(JS998) Unexpected error"
86
  msgstr "(JS998) Erreur inattendue."
87
 
88
- #: lib/includes/class-wpbackitup-admin.php:213
89
  msgid "(JS999) An unexpected error has occurred"
90
  msgstr "(JS999) Erreur inattendue."
91
 
92
- #: lib/includes/class-wpbackitup-admin.php:214
93
  msgid "Scheduled has been saved."
94
  msgstr "La planification a été enregistrée."
95
 
96
- #: lib/includes/class-wpbackitup-admin.php:215
97
  msgid "Scheduled was not saved."
98
  msgstr "La planification n'a pas été enregistrée."
99
 
100
- #: lib/includes/class-wpbackitup-admin.php:216
101
  msgid "Are you sure you want to restore your site?"
102
  msgstr "Êtes-vous sur de vouloir restaurer votre site ?"
103
 
104
- #: lib/includes/class-wpbackitup-admin.php:217
105
  msgid "Are you sure ?"
106
  msgstr "Voulez-vous vraiment faire cela ?"
107
 
108
- #: lib/includes/class-wpbackitup-admin.php:218
109
  msgid "This file cannot be delete!"
110
  msgstr "Ce fichier ne peut pas être supprimé&nbsp;!"
111
 
112
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
113
  msgid "View Log"
114
  msgstr "Voir le fichier journal"
115
 
116
- #: lib/includes/class-wpbackitup-admin.php:220
117
  msgid "New Backup!"
118
  msgstr "Nouvelle sauvegarde !"
119
 
120
- #: lib/includes/class-wpbackitup-admin.php:221
121
  msgid "Uploaded Backup"
122
  msgstr "Sauvegarde mise en ligne."
123
 
124
- #: lib/includes/class-wpbackitup-admin.php:480
125
  msgid "Backup Queued"
126
  msgstr "Sauvegarde mise en file d'attente."
127
 
128
- #: lib/includes/class-wpbackitup-admin.php:482
129
  msgid "Backup could not be queued"
130
  msgstr "La sauvegarde n'a pas pu être mise en file d'attente."
131
 
132
- #: lib/includes/class-wpbackitup-admin.php:485
133
- msgid "Backup already in queue"
134
- msgstr "La sauvegarde est déjà dans la file d'attente."
135
-
136
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
137
- msgid "Backup Cancelled"
138
- msgstr "Sauvegarde annulée."
139
 
140
- #: lib/includes/class-wpbackitup-admin.php:535
141
  msgid "No backup file selected."
142
  msgstr "Aucun fichier de sauvegarde sélectionné."
143
 
144
- #: lib/includes/class-wpbackitup-admin.php:542
145
  msgid "No user id found."
146
  msgstr "Aucun identifiant d'utilisateur trouvé."
147
 
148
- #: lib/includes/class-wpbackitup-admin.php:553
149
  msgid "Restore Queued"
150
  msgstr "Restauration mise en file d'attente."
151
 
152
- #: lib/includes/class-wpbackitup-admin.php:555
153
  msgid "Restore could not be queued"
154
  msgstr "La restauration n'a pas pu être mise en file d'attente."
155
 
156
- #: lib/includes/class-wpbackitup-admin.php:558
157
  msgid "Restore already in queue"
158
  msgstr "La restauration est déjà en file d'attente."
159
 
160
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
161
  msgid "No response log found."
162
  msgstr "Pas de réponse de journal trouvée."
163
 
164
- #: lib/includes/class-wpbackitup-admin.php:836
165
- #: lib/includes/class-wpbackitup-admin.php:844
166
- #: lib/includes/class-wpbackitup-admin.php:873
167
- #: lib/includes/class-wpbackitup-admin.php:880
168
- #: lib/includes/class-wpbackitup-admin.php:887
169
- #: lib/includes/class-wpbackitup-admin.php:894
170
  msgid "Please enter a number"
171
  msgstr "Veuillez saisir un chiffre."
172
 
173
- #: lib/includes/class-wpbackitup-admin.php:865
174
- #: lib/includes/class-wpbackitup-admin.php:972
175
  msgid "Please enter a valid email"
176
  msgstr "Veuillez saisir une adresse de messagerie valide."
177
 
178
- #: lib/includes/class-wpbackitup-admin.php:979
179
  msgid "Please enter your support ticket id"
180
  msgstr "Veuillez saisir l'identifiant de votre ticket de support."
181
 
182
- #: lib/includes/class-wpbackitup-admin.php:984
183
  msgid "Please only enter numbers in this field"
184
  msgstr "Veuillez saisir uniquement des chiffres dans ce champ."
185
 
186
- #: lib/includes/class-wpbackitup-admin.php:1645
187
  msgid "License is invalid."
188
  msgstr "La licence n'est pas valide."
189
 
190
- #: lib/includes/class-wpbackitup-admin.php:1650
191
  msgid "License has expired."
192
  msgstr "La licence est expirée."
193
 
194
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid "Activation limit has been reached."
196
  msgstr "La limite d'activation a été atteinte."
197
 
 
 
 
 
198
  #: lib/includes/handler_upload.php:29
199
  msgid "Invalid Nonce"
200
  msgstr "Nonce invalide"
@@ -224,96 +248,62 @@ msgid "Could not import file into WP BackItUp backup set."
224
  msgstr ""
225
  "Impossible d&rsquo;importer le fichier dans le jeu de sauvegarde WP BackItUp."
226
 
227
- #: lib/includes/job_backup.php:851
228
- msgid "Preparing for backup...Done"
229
- msgstr "Préparation pour la sauvegarde... Terminé."
230
-
231
- #: lib/includes/job_backup.php:852
232
- msgid "Backing up database...Done"
233
- msgstr "Sauvegarde de la base de données... Terminé."
234
-
235
- #: lib/includes/job_backup.php:853
236
- msgid "Creating backup information file...Done"
237
- msgstr "Création du fichier d'information de la sauvegarde... Terminé."
238
-
239
- #: lib/includes/job_backup.php:854
240
- msgid "Backing up themes...Done"
241
- msgstr "Sauvegarde des thèmes... Terminé."
242
-
243
- #: lib/includes/job_backup.php:855
244
- msgid "Backing up plugins...Done"
245
- msgstr "Sauvegarde des extensions... Terminé."
246
-
247
- #: lib/includes/job_backup.php:856
248
- msgid "Backing up uploads...Done"
249
- msgstr "Sauvegarde des pièces jointes... Terminé."
250
-
251
- #: lib/includes/job_backup.php:857
252
- msgid "Backing up miscellaneous files...Done"
253
- msgstr "Sauvegarde des fichiers divers... Terminé."
254
-
255
- #: lib/includes/job_backup.php:858
256
- msgid "Finalizing backup...Done"
257
- msgstr "Finalisation de la sauvegarde... Terminé."
258
-
259
- #: lib/includes/job_backup.php:859
260
- msgid "Validating backup...Done"
261
- msgstr "Validation de la sauvegarde... Terminé."
262
-
263
- #: lib/includes/job_backup.php:860
264
- msgid "Cleaning up...Done"
265
- msgstr "Nettoyage... Terminé."
266
 
267
- #: lib/includes/job_backup.php:870
268
  #, php-format
269
  msgid "%s - Backup completed successfully."
270
  msgstr "%s - La sauvegarde a été correctement effectuée."
271
 
272
- #: lib/includes/job_backup.php:871
273
  msgid "Your backup completed successfully."
274
  msgstr "Votre sauvegarde a été correctement effectuée."
275
 
276
- #: lib/includes/job_backup.php:874
277
  #, php-format
278
  msgid "%s - Backup did not complete successfully."
279
  msgstr "%s - La sauvegarde n'a pas été correctement effectuée."
280
 
281
- #: lib/includes/job_backup.php:875
282
  msgid "Your backup did not complete successfully."
283
  msgstr "Votre sauvegarde n'a pas été correctement effectuée."
284
 
285
- #: lib/includes/job_backup.php:880
286
  #, php-format
287
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
288
  msgstr "Site WordPress&nbsp;: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
289
 
290
- #: lib/includes/job_backup.php:881
291
  msgid "Backup date:"
292
  msgstr "Date de la sauvegarde&nbsp;:"
293
 
294
- #: lib/includes/job_backup.php:882
295
  msgid "Number of backups completed with WP BackItUp:"
296
  msgstr "Nombre de sauvegardes effectuées avec WP BackItUp&nbsp;:"
297
 
298
- #: lib/includes/job_backup.php:884
299
  msgid "Completion Code:"
300
  msgstr "Code de réussite&nbsp;:"
301
 
302
- #: lib/includes/job_backup.php:885
303
  msgid "WP BackItUp Version:"
304
  msgstr "Version de WP BackItUp&nbsp;:"
305
 
306
- #: lib/includes/job_backup.php:891
307
- msgid "Steps Completed"
308
- msgstr "Étapes terminées"
309
-
310
- #: lib/includes/job_backup.php:912
311
  #, php-format
312
  msgid "Checkout %s for info about WP BackItUp and our other products."
313
  msgstr ""
314
  "Consultez %s pour en savoir plus sur WP BackItUp et nos autres produits."
315
 
316
- #: lib/includes/job_backup.php:1088
317
  msgid ""
318
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
319
  "settings of your wp-backitup backup directory"
@@ -321,7 +311,7 @@ msgstr ""
321
  "(101) Impossible de créer un nouveau répertoire pour la sauvegarde. Veuillez "
322
  "vérifier vos réglages CHMOD de votre répertoire de sauvegarde wp-backitup."
323
 
324
- #: lib/includes/job_backup.php:1089
325
  msgid ""
326
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
327
  "your wp-backitup plugin directory"
@@ -329,41 +319,41 @@ msgstr ""
329
  "(102) Impossible de créer le répertoire de sauvegarde. Veuillez vérifier vos "
330
  "réglages CHMOD du répertoire de l'extension wp-backitup."
331
 
332
- #: lib/includes/job_backup.php:1090
333
  msgid "(103) Unable to backup your files. Please try again"
334
  msgstr "(103) Impossible de sauvegarder vos fichiers. Veuillez réessayer."
335
 
336
- #: lib/includes/job_backup.php:1091
337
  msgid "(104) Unable to export your database. Please try again"
338
  msgstr ""
339
  "(104) Impossible d'exporter votre base de données. Veuillez réessayer. "
340
 
341
- #: lib/includes/job_backup.php:1092
342
  msgid "(105) Unable to export site information file. Please try again"
343
  msgstr ""
344
  "(105) Impossible d'exporter le fichier d'informations du site. Veuillez "
345
  "réessayer."
346
 
347
- #: lib/includes/job_backup.php:1093
348
  msgid "(106) Unable to cleanup your backup directory"
349
  msgstr "(106) Impossible de nettoyer votre répertoire de sauvegarde."
350
 
351
- #: lib/includes/job_backup.php:1094
352
  msgid "(107) Unable to compress(zip) your backup. Please try again"
353
  msgstr ""
354
  "(107) Impossible de compresser (zip) votre sauvegarde. Veuillez réessayer."
355
 
356
- #: lib/includes/job_backup.php:1095
357
  msgid "(108) Unable to backup your site data files. Please try again"
358
  msgstr ""
359
  "(108) Impossible de sauvegarder les fichiers de données de votre site. "
360
  "Veuillez réessayer."
361
 
362
- #: lib/includes/job_backup.php:1096
363
  msgid "(109) Unable to finalize backup. Please try again"
364
  msgstr "(109) Impossible de finaliser la sauvegarde. Veuillez réessayer."
365
 
366
- #: lib/includes/job_backup.php:1097
367
  msgid ""
368
  "(114) Your database was accessible but an export could not be created. "
369
  "Please contact support by clicking the get support link on the right. Please "
@@ -374,25 +364,25 @@ msgstr ""
374
  "support sur la droite. Veuillez nous dire quel est votre hébergeur et le "
375
  "moment où vous avez effectué la requête."
376
 
377
- #: lib/includes/job_backup.php:1098
378
  msgid "(120) Unable to backup your themes. Please try again"
379
  msgstr "(120) Impossible de sauvegarder vos thèmes. Veuillez réessayer."
380
 
381
- #: lib/includes/job_backup.php:1099
382
  msgid "(121) Unable to backup your plugins. Please try again"
383
  msgstr "(121) Impossible de sauvegarder vos extensions. Veuillez réessayer."
384
 
385
- #: lib/includes/job_backup.php:1100
386
  msgid "(122) Unable to backup your uploads. Please try again"
387
  msgstr ""
388
  "(122) Impossible de sauvegarder vos pièces jointes. Veuillez réessayer. "
389
 
390
- #: lib/includes/job_backup.php:1101
391
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
392
  msgstr ""
393
  "(123) Impossible de sauvegarder vos fichiers divers. Veuillez réessayer."
394
 
395
- #: lib/includes/job_backup.php:1102
396
  msgid ""
397
  "(125) Unable to compress your backup because there is no zip utility "
398
  "available. Please contact support"
@@ -400,23 +390,23 @@ msgstr ""
400
  "(125) Impossible de compresser votre sauvegarde car il n'y a pas "
401
  "d'utilitaire zip disponible. Veuillez réessayer."
402
 
403
- #: lib/includes/job_backup.php:1103
404
  msgid "(126) Unable to validate your backup. Please try again"
405
  msgstr "(126) Impossible de valider votre sauvegarde. Veuillez réessayer."
406
 
407
- #: lib/includes/job_backup.php:1104
408
  msgid "(127) Unable to create inventory of files to backup. Please try again"
409
  msgstr ""
410
  "(127) Impossible de créer l'inventaire des fichiers de sauvegarde. Veuillez "
411
  "réessayer."
412
 
413
- #: lib/includes/job_backup.php:1105
414
  msgid "(128) Unable to create job control record. Please try again"
415
  msgstr ""
416
  "(128) Impossible de créer une tâche d'enregistrement de contrôle. Veuillez "
417
  "réessayer."
418
 
419
- #: lib/includes/job_backup.php:1107
420
  msgid ""
421
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
422
  "settings of your wp-backitup backup directory"
@@ -425,7 +415,7 @@ msgstr ""
425
  "Veuillez vérifier vos réglages CHMOD de votre répertoire de sauvegarde wp-"
426
  "backitup."
427
 
428
- #: lib/includes/job_backup.php:1108
429
  msgid ""
430
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
431
  "your wp-backitup plugin directory"
@@ -433,41 +423,41 @@ msgstr ""
433
  "(2102) Impossible de créer le répertoire de sauvegarde. Veuillez vérifier "
434
  "vos réglages CHMOD du répertoire de l'extension wp-backitup."
435
 
436
- #: lib/includes/job_backup.php:1109
437
  msgid "(2103) Unable to backup your files. Please try again"
438
  msgstr "(2103) Impossible de sauvegarder vos fichiers. Veuillez réessayer. "
439
 
440
- #: lib/includes/job_backup.php:1110
441
  msgid "(2104) Unable to export your database. Please try again"
442
  msgstr ""
443
  "(2104) Impossible d'exporter votre base de données. Veuillez réessayer."
444
 
445
- #: lib/includes/job_backup.php:1111
446
  msgid "(2105) Unable to export site information file. Please try again"
447
  msgstr ""
448
  "(2105) Impossible d'exporter le fichier d'informations du site. Veuillez "
449
  "réessayer."
450
 
451
- #: lib/includes/job_backup.php:1112
452
  msgid "(2106) Unable to cleanup your backup directory"
453
  msgstr "(2106) Impossible de nettoyer votre répertoire de sauvegarde."
454
 
455
- #: lib/includes/job_backup.php:1113
456
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
457
  msgstr ""
458
  "(2107) Impossible de compresser (zip) votre sauvegarde. Veuillez réessayer."
459
 
460
- #: lib/includes/job_backup.php:1114
461
  msgid "(2108) Unable to backup your site data files. Please try again"
462
  msgstr ""
463
  "(2108) Impossible de sauvegarder les fichiers de données de votre site. "
464
  "Veuillez réessayer."
465
 
466
- #: lib/includes/job_backup.php:1115
467
  msgid "(2109) Unable to finalize backup. Please try again"
468
  msgstr "(2109) Impossible de finaliser la sauvegarde. Veuillez réessayer."
469
 
470
- #: lib/includes/job_backup.php:1116
471
  msgid ""
472
  "(2114) Your database was accessible but an export could not be created. "
473
  "Please contact support by clicking the get support link on the right. Please "
@@ -478,25 +468,25 @@ msgstr ""
478
  "support sur la droite. Veuillez nous dire quel est votre hébergeur et le "
479
  "moment où vous avez effectué la requête."
480
 
481
- #: lib/includes/job_backup.php:1117
482
  msgid "(2120) Unable to backup your themes. Please try again"
483
  msgstr "(2120) Impossible de sauvegarder vos thèmes. Veuillez réessayer."
484
 
485
- #: lib/includes/job_backup.php:1118
486
  msgid "(2121) Unable to backup your plugins. Please try again"
487
  msgstr "(2121) Impossible de sauvegarder vos extensions. Veuillez réessayer."
488
 
489
- #: lib/includes/job_backup.php:1119
490
  msgid "(2122) Unable to backup your uploads. Please try again"
491
  msgstr ""
492
  "(2122) Impossible de sauvegarder vos pièces jointes. Veuillez réessayer. "
493
 
494
- #: lib/includes/job_backup.php:1120
495
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
496
  msgstr ""
497
  "(2123) Impossible de sauvegarder vos fichiers divers. Veuillez réessayer."
498
 
499
- #: lib/includes/job_backup.php:1121
500
  msgid ""
501
  "(2125) Unable to compress your backup because there is no zip utility "
502
  "available. Please contact support"
@@ -504,50 +494,54 @@ msgstr ""
504
  "(2125) Impossible de compresser votre sauvegarde car il n'y a pas "
505
  "d'utilitaire zip disponible. Veuillez réessayer."
506
 
507
- #: lib/includes/job_backup.php:1122
508
  msgid "(2126) Unable to validate your backup. Please try again"
509
  msgstr "(2126) Impossible de valider votre sauvegarde. Veuillez réessayer."
510
 
511
- #: lib/includes/job_backup.php:1123
512
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
513
  msgstr ""
514
  "(2127) Impossible de créer l'inventaire des fichiers de sauvegarde. Veuillez "
515
  "réessayer."
516
 
517
- #: lib/includes/job_backup.php:1124
518
  msgid "(2128) Unable to create job control record. Please try again"
519
  msgstr ""
520
  "(2128) Impossible de créer une tâche d'enregistrement de contrôle. Veuillez "
521
  "réessayer."
522
 
523
- #: lib/includes/job_backup.php:1127
524
  msgid "(999) Unexpected error"
525
  msgstr "(999) Erreur inattendue"
526
 
527
  #. TRANSLATORS: %s = plugin name.
528
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
529
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
530
- #: views/backup.php:20
531
  #, php-format
532
  msgid "%s Dashboard"
533
  msgstr "Tableau de bord de %s"
534
 
535
- #: views/backup.php:150
 
 
 
 
536
  #, php-format
537
  msgid "Backup folder does not exist. Please contact %s for assistance."
538
  msgstr ""
539
  "Le dossier de sauvegarde n'existe pas. Veuillez contacter %s pour de "
540
  "l'assistance."
541
 
542
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
543
  msgid "support"
544
  msgstr "support"
545
 
546
- #: views/backup.php:153 views/backup.php:159
547
  msgid "Close"
548
  msgstr "Fermer"
549
 
550
- #: views/backup.php:174
551
  msgid ""
552
  "Click the backup button to create a zipped backup file of this site's "
553
  "database, plugins, themes and settings."
@@ -555,7 +549,7 @@ msgstr ""
555
  "Cliquez sur le bouton de sauvegarde pour créer un fichier zippé de la base "
556
  "de données, des extensions, thèmes et réglages de votre site."
557
 
558
- #: views/backup.php:175
559
  msgid ""
560
  "Once your backup file has been created it will appear in the available "
561
  "backups section below. This file may remain on your hosting providers server "
@@ -566,7 +560,7 @@ msgstr ""
566
  "le serveur de votre hébergement, mais nous vous recommandons de le "
567
  "télécharger et de l'enregistrer dans un endroit sûr."
568
 
569
- #: views/backup.php:176
570
  msgid ""
571
  "WP BackItUp premium customers can use these backup files to perform an "
572
  "automated restore of their site."
@@ -574,11 +568,11 @@ msgstr ""
574
  "Les utilisateurs de WP BackItUp Premium peuvent utiliser les fichiers de "
575
  "sauvegarde pour effectuer une restauration automatique de leurs sites."
576
 
577
- #: views/backup.php:180
578
  msgid "Cancel"
579
  msgstr "Annuler"
580
 
581
- #: views/backup.php:187
582
  #, php-format
583
  msgid ""
584
  "WP BackItUp lite customers may use these backup files to manually restore "
@@ -588,15 +582,15 @@ msgstr ""
588
  "sauvegarde pour effectuer une restauration manuelle de leurs sites. Veuillez "
589
  "vous rendre sur %s pour les instructions de restauration."
590
 
591
- #: views/backup.php:194
592
  msgid "Backup Schedule"
593
  msgstr "Planification de sauvegarde"
594
 
595
- #: views/backup.php:196
596
  msgid "Select the days of the week you would like your backup to run."
597
  msgstr "Sélectionner les jours de la semaine pour effectuer la sauvegarde."
598
 
599
- #: views/backup.php:198
600
  msgid ""
601
  "Backup your site once per week or every day, it's up to you. If you have "
602
  "email notifications turned on we'll even send you an email when it's done. "
@@ -612,45 +606,45 @@ msgstr ""
612
  "d'hébergement, mais nous vous recommandons de télécharger et de "
613
  "l'enregistrer dans un endroit sûr."
614
 
615
- #: views/backup.php:200
616
  msgid "Please make sure to schedule your backup for at least once per week."
617
  msgstr ""
618
  "Veuillez vous assurer de programmer une sauvegarde au moins une fois par "
619
  "semaine."
620
 
621
- #: views/backup.php:204
622
  msgid "Monday"
623
  msgstr "lundi"
624
 
625
- #: views/backup.php:205
626
  msgid "Tuesday"
627
  msgstr "mardi"
628
 
629
- #: views/backup.php:206
630
  msgid "Wednesday"
631
  msgstr "mercredi"
632
 
633
- #: views/backup.php:207
634
  msgid "Thursday"
635
  msgstr "jeudi"
636
 
637
- #: views/backup.php:208
638
  msgid "Friday"
639
  msgstr "vendredi"
640
 
641
- #: views/backup.php:209
642
  msgid "Saturday"
643
  msgstr "samedi"
644
 
645
- #: views/backup.php:210
646
  msgid "Sunday"
647
  msgstr "dimanche"
648
 
649
- #: views/backup.php:213
650
  msgid "Save Schedule"
651
  msgstr "Enregistrer la planification"
652
 
653
- #: views/backup.php:218
654
  #, php-format
655
  msgid ""
656
  "Scheduled backups are only available to WP BackItUp premium customers. "
@@ -660,15 +654,31 @@ msgstr ""
660
  "BackItUp premium. Veuillez visiter %s pour obtenir sans risque WP BackItUp "
661
  "pendant 30 jours."
662
 
663
- #: views/backup.php:225 views/restore.php:94
664
  msgid "Available Backups"
665
  msgstr "Sauvegardes disponibles"
666
 
667
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
668
  msgid "No backup archives found."
669
  msgstr "Aucune archive de sauvegarde trouvée."
670
 
671
- #: views/backup.php:291
672
  #, php-format
673
  msgid ""
674
  "The automated restore feature is only available to WP BackItUp premium "
@@ -678,87 +688,91 @@ msgstr ""
678
  "clients WP BackItUp premium. Veuillez visiter %s pour obtenir sans risque WP "
679
  "BackItUp pendant 30 jours."
680
 
681
- #: views/backup.php:300 views/restore.php:209
682
  msgid "Nothing to report"
683
  msgstr "Rien à signaler"
684
 
685
- #: views/backup.php:305
686
  msgid "Preparing for backup"
687
  msgstr "Préparation pour la sauvegarde"
688
 
689
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
690
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
691
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
692
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
693
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
694
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
695
- #: views/restore.php:228 views/restore.php:230
696
  msgid "Done"
697
  msgstr "Terminé"
698
 
699
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
700
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
701
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
702
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
703
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
704
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
705
- #: views/restore.php:228 views/restore.php:230
706
  msgid "Failed"
707
  msgstr "Échoué"
708
 
709
- #: views/backup.php:306
 
 
 
 
710
  msgid "Backing up database"
711
  msgstr "Sauvegarde de la base de données"
712
 
713
- #: views/backup.php:307
714
  msgid "Creating backup information file"
715
  msgstr "Création du fichier de données de sauvegarde."
716
 
717
- #: views/backup.php:308
718
  msgid "Backing up themes"
719
  msgstr "Sauvegarde des thèmes"
720
 
721
- #: views/backup.php:309
722
  msgid "Backing up plugins"
723
  msgstr "Sauvegarde des extensions"
724
 
725
- #: views/backup.php:310
726
  msgid "Backing up uploads"
727
  msgstr "Sauvegarde des pièces jointes"
728
 
729
- #: views/backup.php:311
730
  msgid "Backing up everything else"
731
  msgstr "Sauvegarde de tout le reste"
732
 
733
- #: views/backup.php:312
734
  msgid "Validating backup"
735
  msgstr "Validation de la sauvegarde"
736
 
737
- #: views/backup.php:313
738
  msgid "Finalizing backup"
739
  msgstr "Finalisation de la sauvegarde"
740
 
741
- #: views/backup.php:323
742
  msgid "Backup completed successfully"
743
  msgstr "La sauvegarde a bien été effectuée."
744
 
745
- #: views/backup.php:344
746
  msgid "Backups"
747
  msgstr "Sauvegardes"
748
 
749
- #: views/backup.php:344
750
  msgid "Version "
751
  msgstr "Version "
752
 
753
- #: views/backup.php:346
754
  msgid "Welcome to WP BackItUp!"
755
  msgstr "Bienvenue dans WP BackItUp !"
756
 
757
- #: views/backup.php:346
758
  msgid "The simplest way to backup your WordPress site."
759
  msgstr "La manière la plus simple de sauvegarder votre site WordPress."
760
 
761
- #: views/backup.php:347
762
  msgid ""
763
  "Getting started is easy, just click the backup button on the left side of "
764
  "this page."
@@ -766,7 +780,7 @@ msgstr ""
766
  "Le démarrage est simple, cliquez sur le bouton de sauvegarde à gauche sur "
767
  "cette page."
768
 
769
- #: views/backup.php:351
770
  #, php-format
771
  msgid ""
772
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
@@ -775,39 +789,39 @@ msgstr ""
775
  "Félicitations ! Vous avez bien effectué <span style=\"font-weight:bold;font-"
776
  "size:medium;color: green\">%s</span> sauvegardes."
777
 
778
- #: views/backup.php:352
779
  msgid "Tips"
780
  msgstr "Astuces"
781
 
782
- #: views/backup.php:353
783
  msgid "Backup your site at least once per week"
784
  msgstr "Sauvegardez votre site au moins une fois par semaine"
785
 
786
- #: views/backup.php:354
787
  msgid "Download all your backups and store them somewhere safe"
788
  msgstr ""
789
  "Téléchargez toutes vos sauvegardes et stockez-les dans un endroit sécurisé."
790
 
791
- #: views/backup.php:355
792
  msgid "Verify your backup files are good by taking a look at what's inside"
793
  msgstr ""
794
  "Vérifiez que vos fichiers de sauvegarde sont bons en regardant attentivement "
795
  "ce qu'il y a dedans."
796
 
797
- #: views/backup.php:360
798
  #, php-format
799
  msgid "Why not %s and schedule your backups!"
800
  msgstr "Pourquoi ne pas %s et planifier vos sauvegardes&nbsp;!"
801
 
802
- #: views/backup.php:360
803
  msgid "upgrade"
804
  msgstr "mettre à jour"
805
 
806
- #: views/backup.php:369
807
  msgid "Register WP BackItUp"
808
  msgstr "Enregistrer WP BackItUp"
809
 
810
- #: views/backup.php:372
811
  msgid ""
812
  "Enter your name and email address below to receive <b>special offers</b> and "
813
  "access to our world class <b>support</b> team. <br />\n"
@@ -819,121 +833,126 @@ msgstr ""
819
  "classe mondiale.<br />\n"
820
  "<br />Entrez votre clé de licence ci-dessous pour l'activer sur ce site."
821
 
822
- #: views/backup.php:374
823
  msgid "name"
824
  msgstr "nom"
825
 
826
- #: views/backup.php:375
827
  msgid "email address"
828
  msgstr "adresse de messagerie"
829
 
830
- #: views/backup.php:376
831
  msgid "license key"
832
  msgstr "clé de licence"
833
 
834
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
835
  #, php-format
836
  msgid "%s"
837
  msgstr "%s"
838
 
839
- #: views/backup.php:377
840
  msgid "Free plugin customers do not need to enter license key."
841
  msgstr ""
842
  "Les utilisateurs de l'extension gratuite n'ont pas besoin de saisir de clé "
843
  "de licence."
844
 
845
- #: views/backup.php:378
846
  msgid "Register"
847
  msgstr "Inscription"
848
 
849
- #: views/backup.php:387
850
  msgid "License Info"
851
  msgstr "Info de licence"
852
 
853
- #: views/backup.php:409
854
  msgid "Name"
855
  msgstr "Nom"
856
 
857
- #: views/backup.php:410
858
  msgid "Email"
859
  msgstr "E-mail "
860
 
861
- #: views/backup.php:411
862
  msgid "License Type"
863
  msgstr "Type de licence"
864
 
865
- #: views/backup.php:412
866
  msgid "Expires"
867
  msgstr "Expire"
868
 
869
- #: views/backup.php:415
870
  msgid "Enter license key to activate on this site."
871
  msgstr "Saisissez la clé de licence à activer sur ce site."
872
 
873
- #: views/backup.php:422
874
  msgid "License Active"
875
  msgstr "Licence active"
876
 
877
- #: views/backup.php:430
878
  msgid "License expired"
879
  msgstr "Licence expirée"
880
 
881
- #: views/backup.php:434
882
  msgid "Update"
883
  msgstr "Mettre à jour"
884
 
885
- #: views/backup.php:438
886
  msgid "Activate"
887
  msgstr "Activer"
888
 
889
- #: views/backup.php:442
890
  #, php-format
891
  msgid "Purchase a %s license using the purchase link above."
892
  msgstr "Achetez une licence %s en utilisant le lien d'achat ci-dessus."
893
 
894
- #: views/backup.php:442
895
  msgid "no-risk"
896
  msgstr "sans risque"
897
 
898
- #: views/backup.php:448
899
  #, php-format
900
  msgid ""
901
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
902
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
903
  msgstr ""
904
- "<a href=\"%s\" target=\"blank\">Renouveler</a> votre licence maintenant pour "
905
- "une nouvelle année de <strong>mises à jour produit</strong> et <strong>un "
906
- "support prioritaire.</strong>"
907
 
908
- #: views/backup.php:459
909
  msgid "Useful Links"
910
  msgstr "Liens utiles"
911
 
912
- #: views/backup.php:462 views/backup.php:466
913
  msgid "Your account"
914
  msgstr "Votre compte"
915
 
916
- #: views/backup.php:469
917
  msgid "Documentation"
918
  msgstr "Documentation"
919
 
920
- #: views/backup.php:472
921
  msgid "Get support"
922
  msgstr "Obtenir du support"
923
 
924
- #: views/backup.php:475
925
  msgid "Feature request"
926
  msgstr "Demande de fonctionnalité"
927
 
928
- #: views/backup.php:477
 
 
 
 
929
  msgid "Contact"
930
  msgstr "Contact"
931
 
932
- #: views/backup.php:497 views/backup.php:518
933
  msgid "WP BackItUp Backup Set"
934
  msgstr "Jeu de sauvegarde WP BackItUp"
935
 
936
- #: views/backup.php:499
937
  msgid ""
938
  "Below are the archive files included in this backup set. Click the link to "
939
  "download."
@@ -941,36 +960,36 @@ msgstr ""
941
  "Voici les fichiers d'archive inclus dans ce jeu de sauvegarde. Cliquez sur "
942
  "le lien pour télécharger."
943
 
944
- #: views/backup.php:519
945
  msgid "Please refresh this page to download your new backup files."
946
  msgstr ""
947
  "Veuillez rafraichir cette page pour télécharger vos nouveaux fichiers de "
948
  "sauvegarde."
949
 
950
- #: views/restore.php:16
951
  #, php-format
952
  msgid "%s Restore"
953
  msgstr "Restaurer %s"
954
 
955
- #: views/restore.php:59
956
  msgid "Zip Files"
957
  msgstr "Fichiers Zip"
958
 
959
- #: views/restore.php:74
960
  #, php-format
961
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
962
  msgstr ""
963
  "Erreur&nbsp;: Le dossier de sauvegarde n'existe pas. Veuillez contacter %s "
964
  "pour de l'assistance."
965
 
966
- #: views/restore.php:81
967
  #, php-format
968
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
969
  msgstr ""
970
  "Erreur&nbsp;: Le dossier de restauration n'existe pas. Veuillez contacter %s "
971
  "pour de l'assistance."
972
 
973
- #: views/restore.php:141
974
  #, php-format
975
  msgid ""
976
  "<p>* The automated restore feature is only available to licensed customers. "
@@ -982,11 +1001,11 @@ msgstr ""
982
  "target=\"_blank\">%s</a> pour obtenir sans risque une licence WP BackItUp "
983
  "pendant 30 jours.</p>"
984
 
985
- #: views/restore.php:153
986
  msgid "Upload"
987
  msgstr "Envoyer"
988
 
989
- #: views/restore.php:156
990
  msgid ""
991
  "Upload WP BackItUp archive(zip) files to add to your list of available "
992
  "backups."
@@ -994,17 +1013,17 @@ msgstr ""
994
  "Mettez en ligne les fichiers d'archive (zip) de WP BackItUp à ajouter à "
995
  "votre liste de sauvegardes disponibles."
996
 
997
- #: views/restore.php:173
998
  msgid "WP BackItUp - Upload backup files"
999
  msgstr "WP BackItUp - Envoi de fichiers de sauvegarde"
1000
 
1001
- #: views/restore.php:174
1002
  msgid "Backup files may be uploaded into WP BackItUp with this form."
1003
  msgstr ""
1004
  "Les fichiers de sauvegarde peuvent être envoyés dans WP BackItUp via ce "
1005
  "formulaire."
1006
 
1007
- #: views/restore.php:174
1008
  msgid ""
1009
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
1010
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
@@ -1015,16 +1034,16 @@ msgstr ""
1015
  "terminé le chargement de tous les fichiers de sauvegarde rafraîchissez cette "
1016
  "page."
1017
 
1018
- #: views/restore.php:178
1019
  #, php-format
1020
  msgid "This feature requires %s version %s or later"
1021
  msgstr "Cette fonctionnalité nécessite %s version %s ou plus."
1022
 
1023
- #: views/restore.php:184
1024
  msgid "Drop backup files here"
1025
  msgstr "Déposez ici vos fichiers de sauvegarde"
1026
 
1027
- #: views/restore.php:190
1028
  msgid ""
1029
  "* Reload this page when done uploading to see new backups appear in the "
1030
  "Available Backups section above. "
@@ -1033,63 +1052,63 @@ msgstr ""
1033
  "apparaître de nouvelles sauvegardes dans la section sauvegardes disponibles "
1034
  "ci-dessus."
1035
 
1036
- #: views/restore.php:219
1037
  msgid "Preparing for restore"
1038
  msgstr "Préparation pour la restauration"
1039
 
1040
- #: views/restore.php:220
1041
  msgid "Unzipping backup set"
1042
  msgstr "Décompression du jeu de sauvegardes"
1043
 
1044
- #: views/restore.php:221
1045
  msgid "Validating backup file"
1046
  msgstr "Validation du fichier de sauvegarde"
1047
 
1048
- #: views/restore.php:222
1049
  msgid "Deactivating plugins"
1050
  msgstr "Désactivation des extensions"
1051
 
1052
- #: views/restore.php:223
1053
  msgid "Creating database restore point"
1054
  msgstr "Création du point de restauration de la base de données."
1055
 
1056
- #: views/restore.php:224
1057
  msgid "Staging content files"
1058
- msgstr ""
1059
 
1060
- #: views/restore.php:225
1061
  msgid "Restoring content files"
1062
  msgstr "Restauration des fichiers de contenu."
1063
 
1064
- #: views/restore.php:226
1065
  msgid "Restoring database"
1066
  msgstr "Restauration de la base de données."
1067
 
1068
- #: views/restore.php:227
1069
  msgid "Updating current user info"
1070
  msgstr "Mise à jour des informations de l'utilisateur courant."
1071
 
1072
- #: views/restore.php:228
1073
  msgid "Updating site URL"
1074
  msgstr "Mise à jour de l'URL du site"
1075
 
1076
- #: views/restore.php:230
1077
  msgid "Updating permalinks"
1078
  msgstr "Mise à jour des permaliens"
1079
 
1080
- #: views/restore.php:236
1081
  msgid "Error 201: No file selected"
1082
  msgstr "Erreur 201 : aucun fichier sélectionné."
1083
 
1084
- #: views/restore.php:237
1085
  msgid "Error 202: Your file could not be uploaded"
1086
  msgstr "Erreur 202&nbsp;: Votre fichier n'a pas pu être mis en ligne."
1087
 
1088
- #: views/restore.php:238
1089
  msgid "Error 203: Your backup could not be unzipped"
1090
  msgstr "Erreur 203&nbsp;: Votre sauvegarde n'a pas pu être dé-zippée."
1091
 
1092
- #: views/restore.php:239
1093
  msgid ""
1094
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1095
  "valid backup"
@@ -1097,36 +1116,36 @@ msgstr ""
1097
  "Erreur 204&nbsp;: Votre sauvegarde semble ne pas être valide. Veuillez vous "
1098
  "assurer d'en choisir une valide."
1099
 
1100
- #: views/restore.php:240
1101
  msgid "Error 205: Cannot create restore point"
1102
  msgstr "Erreur 205 : impossible de créer le point de restauration."
1103
 
1104
- #: views/restore.php:241
1105
  msgid "Error 206: Unable to connect to your database"
1106
  msgstr "Erreur 206 : impossible de se connecter à votre base de données."
1107
 
1108
- #: views/restore.php:242
1109
  msgid ""
1110
  "Error 207: Unable to get current site URL from database. Please try again"
1111
  msgstr ""
1112
  "Erreur 207&nbsp;: Impossible d'obtenir l'URL actuelle du site depuis la base "
1113
  "de données. Veuillez réessayer."
1114
 
1115
- #: views/restore.php:243
1116
  msgid ""
1117
  "Error 208: Unable to get current home URL from database. Please try again"
1118
  msgstr ""
1119
  "Erreur 208&nbsp;: Impossible d'obtenir l'URL actuelle de la page d'accueil "
1120
  "depuis la base de données. Veuillez réessayer."
1121
 
1122
- #: views/restore.php:244
1123
  msgid ""
1124
  "Error 209: Unable to get current user ID from database. Please try again"
1125
  msgstr ""
1126
  "Erreur 209&nbsp;: Impossible d'obtenir l'identifiant de l'utilisateur "
1127
  "courant depuis la base de données. Veuillez réessayer."
1128
 
1129
- #: views/restore.php:245
1130
  msgid ""
1131
  "Error 210: Unable to get current user password from database. Please try "
1132
  "again"
@@ -1134,14 +1153,14 @@ msgstr ""
1134
  "Erreur 210&nbsp;: Impossible d'obtenir le mot de passe de l'utilisateur "
1135
  "courant depuis la base de données. Veuillez réessayer."
1136
 
1137
- #: views/restore.php:246
1138
  msgid ""
1139
  "Error 211: Unable to get current user email from database. Please try again"
1140
  msgstr ""
1141
  "Erreur 211&nbsp;: Impossible d'obtenir l'e-mail de l'utilisateur courant "
1142
  "depuis la base de données. Veuillez réessayer."
1143
 
1144
- #: views/restore.php:247
1145
  msgid ""
1146
  "Error 212: Unable to import your database. This may require importing the "
1147
  "file manually"
@@ -1149,7 +1168,7 @@ msgstr ""
1149
  "Erreur 212&nbsp;: Impossible d'importer votre base de données. Cela peut "
1150
  "nécessiter l'importation du fichier manuellement."
1151
 
1152
- #: views/restore.php:248
1153
  msgid ""
1154
  "Warning 213: Unable to update your site URL value. Please check your "
1155
  "WordPress general settings to make sure your Site and WordPress URLs are "
@@ -1159,7 +1178,7 @@ msgstr ""
1159
  "votre site. Veuillez vérifier vos paramètres généraux WordPress pour vous "
1160
  "assurer que votre site et les URLs Wordpress sont correctes."
1161
 
1162
- #: views/restore.php:249
1163
  msgid ""
1164
  "Warning 214: Unable to update your home URL value. Please check your "
1165
  "WordPress general settings to make sure your Site and WordPress URLs are "
@@ -1169,7 +1188,7 @@ msgstr ""
1169
  "votre page d'accueil. Veuillez vérifier vos paramètres généraux WordPress "
1170
  "pour vous assurer que votre site et les URLs Wordpress sont corrects."
1171
 
1172
- #: views/restore.php:250
1173
  msgid ""
1174
  "Warning 215: Unable to update your user information. This may require you to "
1175
  "login with the admin username and password that was used when the backup was "
@@ -1180,17 +1199,17 @@ msgstr ""
1180
  "de passe d'administrateur qui a été utilisé lorsque la sauvegarde a été "
1181
  "créée."
1182
 
1183
- #: views/restore.php:251
1184
  msgid "Error 216: Database not found in backup"
1185
  msgstr "Erreur 216 : base de données introuvable dans la sauvegarde."
1186
 
1187
- #: views/restore.php:252
1188
  msgid "Warning 217: Unable to remove existing wp-content directory"
1189
  msgstr ""
1190
  "Avertissement 217&nbsp;: Impossible de supprimer le répertoire wp-content "
1191
  "existant."
1192
 
1193
- #: views/restore.php:253
1194
  msgid ""
1195
  "Error 218: Unable to create new wp-content directory. Please check your "
1196
  "CHMOD settings in /wp-content/"
@@ -1198,18 +1217,18 @@ msgstr ""
1198
  "Erreur 218&nbsp;: Impossible de créer le nouveau répertoire wp-content. "
1199
  "Veuillez vérifier vos réglages CHMOD dans /wp-content/."
1200
 
1201
- #: views/restore.php:254
1202
  msgid "Error 219: Unable to import wp-content. Please try again"
1203
  msgstr ""
1204
  "Erreur 219&nbsp;: Impossible d'importer wp-content. Veuillez réessayer."
1205
 
1206
- #: views/restore.php:255
1207
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1208
  msgstr ""
1209
  "Avertissement 220&nbsp;: Impossible de nettoyer le répertoire d'import. "
1210
  "Aucune action n'est requise."
1211
 
1212
- #: views/restore.php:256
1213
  #, php-format
1214
  msgid ""
1215
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1223,11 +1242,11 @@ msgstr ""
1223
  "wpbackitup.com <a href =\"%s\" target=\"_blank\" >FAQ</a> pour plus "
1224
  "d'informations."
1225
 
1226
- #: views/restore.php:257
1227
  msgid "Error 222: Unable to create restore folder"
1228
  msgstr "Erreur 222 : impossible de créer le répertoire de restauration."
1229
 
1230
- #: views/restore.php:258
1231
  msgid ""
1232
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1233
  "restore the database to its previous state but were unsuccessful. Please "
@@ -1239,7 +1258,7 @@ msgstr ""
1239
  "mais sans succès. Veuillez contacter le support client de WP BackItUp et ne "
1240
  "pas essayer de lancer de nouvelles restaurations."
1241
 
1242
- #: views/restore.php:259
1243
  msgid ""
1244
  "Error 224: An error occurred during the restore, however, we have "
1245
  "successfully restored your database to the previous state"
@@ -1248,14 +1267,14 @@ msgstr ""
1248
  "Cependant, nous avons restauré avec succès votre base de données à son état "
1249
  "précédent."
1250
 
1251
- #: views/restore.php:260
1252
  msgid ""
1253
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1254
  msgstr ""
1255
  "Erreur 225&nbsp;: L'option de restauration est disponible uniquement aux "
1256
  "utilisateurs WP BackItUp avec licence."
1257
 
1258
- #: views/restore.php:261
1259
  msgid ""
1260
  "Error 226: Restore cannot proceed because your backup was created using a "
1261
  "different version of WordPress"
@@ -1263,7 +1282,7 @@ msgstr ""
1263
  "Erreur 226&nbsp;: La restauration ne peut pas être effectuée parce que votre "
1264
  "sauvegarde a été faite en utilisant une version différente de WordPress."
1265
 
1266
- #: views/restore.php:262
1267
  msgid ""
1268
  "Error 227: Restore cannot proceed because your backup was created using a "
1269
  "different version of WP BackItUp. Please contact WP BackItUp support to "
@@ -1274,7 +1293,7 @@ msgstr ""
1274
  "Veuillez contacter le support WP BackItUp pour aider à convertir cette "
1275
  "sauvegarde vers la version actuelle."
1276
 
1277
- #: views/restore.php:263
1278
  msgid ""
1279
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1280
  "restore. However, we were able to successfully revert the database back to "
@@ -1285,7 +1304,7 @@ msgstr ""
1285
  "de restaurer la base de données dans son état d'origine avec succès. Cette "
1286
  "erreur peut nécessiter d'importer manuellement la base de données."
1287
 
1288
- #: views/restore.php:264
1289
  msgid ""
1290
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1291
  "utility available. Please contact support"
@@ -1293,7 +1312,7 @@ msgstr ""
1293
  "Erreur 235&nbsp;: WP BackItUp ne peut pas continuer car aucun utilitaire zip "
1294
  "n'est disponible. Veuillez contacter le support."
1295
 
1296
- #: views/restore.php:265
1297
  msgid ""
1298
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1299
  "running. Please wait for the backup to complete and then try again"
@@ -1302,7 +1321,7 @@ msgstr ""
1302
  "sauvegarde est en cours. Veuillez attendre la fin de la sauvegarde et "
1303
  "refaire un essai."
1304
 
1305
- #: views/restore.php:267
1306
  msgid ""
1307
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1308
  "manifest is empty"
@@ -1310,7 +1329,7 @@ msgstr ""
1310
  "Erreur 251&nbsp;: WP BackItUp est incapable de commencer la restauration "
1311
  "parce que le manifeste de sauvegarde est vide."
1312
 
1313
- #: views/restore.php:268
1314
  msgid ""
1315
  "Error 252: At least one zip file is missing from your backup set. Please "
1316
  "make sure to upload all zip files that were part of this backup"
@@ -1319,7 +1338,7 @@ msgstr ""
1319
  "sauvegarde. Veuillez vous assurer de mettre en ligne tous les fichiers zip "
1320
  "faisant partie de cette sauvegarde."
1321
 
1322
- #: views/restore.php:269
1323
  msgid ""
1324
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1325
  "Please make sure to upload only zip files that were part of this backup"
@@ -1328,7 +1347,7 @@ msgstr ""
1328
  "présent dans le manifeste. Veuillez vous assurez de faire de mettre en ligne "
1329
  "uniquement les fichiers zip faisant partie de cette sauvegarde."
1330
 
1331
- #: views/restore.php:271
1332
  msgid ""
1333
  "Warning 300: Unable to restore all WordPress content. Please review your "
1334
  "restore logs to see what WP BackItUp was unable to restore"
@@ -1337,7 +1356,7 @@ msgstr ""
1337
  "Veuillez consulter les journaux de restauration pour voir ce que WP BackItUp "
1338
  "n'a pas été capable de restaurer."
1339
 
1340
- #: views/restore.php:272
1341
  msgid ""
1342
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1343
  "to see what WP BackItUp was unable to restore"
@@ -1346,40 +1365,40 @@ msgstr ""
1346
  "Veuillez consulter les journaux de restauration pour voir ce WP BackItUp n'a "
1347
  "pas été capable de restaurer."
1348
 
1349
- #: views/restore.php:274
1350
  msgid "Error 2001: Unable to prepare site for restore"
1351
  msgstr ""
1352
  "Erreur 2001&nbsp;: Impossible de préparer le site pour la restauration."
1353
 
1354
- #: views/restore.php:275
1355
  msgid "Error 2002: Unable to unzip backup"
1356
  msgstr "Erreur 2002&nbsp;: Impossible de décompresser la sauvegarde."
1357
 
1358
- #: views/restore.php:276
1359
  msgid "Error 2003: Unable to validate backup"
1360
  msgstr "Erreur 2003&nbsp;: Impossible de valider la sauvegarde."
1361
 
1362
- #: views/restore.php:277
1363
  msgid "Error 2004: Unable to create restore point"
1364
  msgstr "Erreur 2004&nbsp;: Impossible de créer le point de restauration."
1365
 
1366
- #: views/restore.php:278
1367
  msgid "Error 2005: Unable to stage wp-content"
1368
- msgstr ""
1369
 
1370
- #: views/restore.php:279
1371
  msgid "Error 2006: Unable to restore content files"
1372
  msgstr "Erreur 2006&nbsp;: Impossible de restaurer les fichiers de contenu."
1373
 
1374
- #: views/restore.php:280
1375
  msgid "Error 2007: Unable to restore database"
1376
  msgstr "Erreur 2007&nbsp;: Impossible de restaurer la base de données."
1377
 
1378
- #: views/restore.php:281
1379
  msgid "Error 2999: Unexpected error encountered"
1380
  msgstr "Erreur 2999&nbsp;: Une erreur inattendue s'est produite."
1381
 
1382
- #: views/restore.php:288
1383
  msgid ""
1384
  "Restore completed successfully. If you are prompted to login please do so "
1385
  "with your current username and password"
@@ -1388,16 +1407,16 @@ msgstr ""
1388
  "apparaît, veuillez vous connecter avec vos nom d'utilisateur et mot de passe "
1389
  "actuels."
1390
 
1391
- #: views/settings.php:16
1392
  #, php-format
1393
  msgid "%s Settings"
1394
  msgstr "Réglages de %s"
1395
 
1396
- #: views/settings.php:43
1397
  msgid "Email Notifications"
1398
  msgstr "Notifications par e-mail"
1399
 
1400
- #: views/settings.php:44
1401
  msgid ""
1402
  "Please enter your email address if you would like to receive backup email "
1403
  "notifications."
@@ -1405,7 +1424,7 @@ msgstr ""
1405
  "Veuillez saisir votre adresse de messagerie si vous souhaitez recevoir par e-"
1406
  "mail les notifications de vos sauvegardes."
1407
 
1408
- #: views/settings.php:45
1409
  msgid ""
1410
  "Backup email notifications will be sent for every backup and will contain "
1411
  "status information related to the backup."
@@ -1413,16 +1432,16 @@ msgstr ""
1413
  "Les e-mails de notification de sauvegarde seront envoyés à chaque sauvegarde "
1414
  "et contiendront des informations sur l'état de la sauvegarde."
1415
 
1416
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1417
- #: views/settings.php:114
1418
  msgid "Save"
1419
  msgstr "Enregistrer"
1420
 
1421
- #: views/settings.php:63
1422
  msgid "Backup Retention"
1423
  msgstr "Rétention de sauvegarde"
1424
 
1425
- #: views/settings.php:64
1426
  msgid ""
1427
  "Enter the number of backup archives that you would like to remain on the "
1428
  "server."
@@ -1430,7 +1449,7 @@ msgstr ""
1430
  "Saisissez le nombre d'archives de sauvegarde que vous souhaitez conserver "
1431
  "sur le serveur."
1432
 
1433
- #: views/settings.php:65
1434
  msgid ""
1435
  "Many hosts limit the amount of space that you can take up on their servers. "
1436
  "This option tells WP BackItUp the maximum number of backup archives that "
@@ -1443,19 +1462,19 @@ msgstr ""
1443
  "Ne vous inquiétez pas, nous supprimons toujours les anciennes archives de "
1444
  "sauvegarde en premier."
1445
 
1446
- #: views/settings.php:84
1447
  msgid "Turn on logging?"
1448
  msgstr "Activer la journalisation&nbsp;?"
1449
 
1450
- #: views/settings.php:85
1451
  msgid "Yes"
1452
  msgstr "Oui"
1453
 
1454
- #: views/settings.php:86
1455
  msgid "No"
1456
  msgstr "Non"
1457
 
1458
- #: views/settings.php:87
1459
  msgid ""
1460
  "This option should only be turned on when troubleshooting issues with "
1461
  "WPBackItUp support."
@@ -1463,53 +1482,53 @@ msgstr ""
1463
  "Cette option ne devrait être activée uniquement lors de la résolution des "
1464
  "problèmes avec le suport WPBackItUp."
1465
 
1466
- #: views/settings.php:92
1467
  msgid "Advanced Settings"
1468
  msgstr "Réglages avancés"
1469
 
1470
- #: views/settings.php:93
1471
  msgid ""
1472
  "These options should only be changed when working with WP BackItUp support."
1473
  msgstr ""
1474
  "Ces options ne doivent être modifiées uniquement lorsqu'on travaille avec le "
1475
  "suppport WP BackItUp."
1476
 
1477
- #: views/settings.php:96
1478
  msgid "Plugins Batch Size"
1479
  msgstr "Taille du lot des extensions"
1480
 
1481
- #: views/settings.php:101
1482
  msgid "Themes Batch Size"
1483
  msgstr "Taille du lot des thèmes"
1484
 
1485
- #: views/settings.php:106
1486
  msgid "Uploads Batch Size"
1487
  msgstr "Taille du lot des pièces jointes"
1488
 
1489
- #: views/settings.php:111
1490
  msgid "Others Batch Size"
1491
  msgstr "Taille des autres lots"
1492
 
1493
- #: views/support.php:16
1494
  #, php-format
1495
  msgid "%s Support"
1496
  msgstr "Support de %s"
1497
 
1498
- #: views/support.php:35
1499
  msgid "Support email sent successfully!"
1500
  msgstr "Votre e-mail au support a bien été envoyé !"
1501
 
1502
- #: views/support.php:48
1503
  msgid "Email Logs to Support"
1504
  msgstr "Envoyer au support vos fichiers de logs"
1505
 
1506
- #: views/support.php:49
1507
  msgid "This form should be used to send log files to support only."
1508
  msgstr ""
1509
  "Ce formulaire doit être utilisé uniquement pour envoyer des fichiers de log "
1510
  "au support."
1511
 
1512
- #: views/support.php:50
1513
  msgid ""
1514
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1515
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
@@ -1519,7 +1538,7 @@ msgstr ""
1519
  "sur le <a href=\"https://www.wpbackitup.com/support\" target=\"_blank"
1520
  "\">portail de support </a> avant d'utiliser ce formulaire."
1521
 
1522
- #: views/support.php:51
1523
  msgid ""
1524
  "The ticket id you receive from your support request should be entered in the "
1525
  "ticket id field below."
@@ -1527,33 +1546,70 @@ msgstr ""
1527
  "L'ID du ticket que vous avez reçu du support doit être saisi dans le champ "
1528
  "ID du ticket ci-dessous."
1529
 
1530
- #: views/support.php:52
1531
  msgid "your email address"
1532
  msgstr "votre adresse e-mail"
1533
 
1534
- #: views/support.php:62
1535
  msgid "support ticket id"
1536
  msgstr "ID du ticket de support"
1537
 
1538
- #: views/support.php:72
1539
  msgid "problem description or additional information"
1540
  msgstr "description du problème ou informations supplémentaires"
1541
 
1542
- #: views/support.php:83
1543
  msgid "Send"
1544
  msgstr "Envoyer"
1545
 
1546
- #: views/support.php:86
1547
  msgid "Please register your version of WP BackItUp for access to support."
1548
  msgstr ""
1549
  "Veuillez enregistrer votre version de WP BackItUp afin de bénéficier du "
1550
  "support."
1551
 
1552
- #: views/support.php:90
1553
  msgid "Premium customers receive priority support."
1554
  msgstr "Les clients Premium bénéficient d'un support prioritaire."
1555
 
1556
- #: wp-backitup.php:97 wp-backitup.php:98
1557
  #, php-format
1558
  msgid "Every %s hours"
1559
  msgstr "Toutes les %s heures"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WP BackItUp\n"
11
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
12
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
13
  "Last-Translator: Franck\n"
14
  "Language-Team: French (France) (http://www.transifex.com/wp-translations/wp-"
15
  "backitup/language/fr_FR/)\n"
23
  "X-Poedit-KeywordsList: _;__;_e\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
27
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
28
+ #: wp-backitup.php:109
29
  msgid "Backup"
30
  msgstr "Sauvegarder"
31
 
32
+ #: lib/includes/class-wpbackitup-admin.php:182
33
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
34
+ #: wp-backitup.php:123
35
  msgid "Restore"
36
  msgstr "Rétablir"
37
 
38
+ #: lib/includes/class-wpbackitup-admin.php:186
39
  msgid "Support"
40
  msgstr "Support"
41
 
42
+ #: lib/includes/class-wpbackitup-admin.php:189
43
  msgid "Settings"
44
  msgstr "Réglages"
45
 
46
+ #: lib/includes/class-wpbackitup-admin.php:210
47
  msgid ""
48
  "The backup you have selected exceeds what your host allows you to upload."
49
  msgstr ""
50
  "La sauvegarde que vous avez sélectionnée excède ce que vous êtes autorisé à "
51
  "mettre en ligne par votre hébergeur."
52
 
53
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
54
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
55
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
56
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
57
  msgid "Warning"
58
  msgstr "Avertissement"
59
 
60
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
61
+ #: views/backup.php:220
62
  msgid "Error"
63
  msgstr "Erreur"
64
 
65
+ #: lib/includes/class-wpbackitup-admin.php:213
66
  msgid "Response"
67
  msgstr "Réponse"
68
 
69
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
70
+ #: views/backup.php:271 views/restore.php:230
71
  msgid "Status"
72
  msgstr "État"
73
 
74
+ #: lib/includes/class-wpbackitup-admin.php:215
75
  msgid "Download"
76
  msgstr "Télécharger"
77
 
78
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
79
+ #: views/restore.php:132
80
  msgid "Delete"
81
  msgstr "Supprimer"
82
 
83
+ #: lib/includes/class-wpbackitup-admin.php:218
84
  msgid "(JS997) Unexpected error"
85
  msgstr "(JS997) Erreur inattendue."
86
 
87
+ #: lib/includes/class-wpbackitup-admin.php:219
88
  msgid "(JS998) Unexpected error"
89
  msgstr "(JS998) Erreur inattendue."
90
 
91
+ #: lib/includes/class-wpbackitup-admin.php:220
92
  msgid "(JS999) An unexpected error has occurred"
93
  msgstr "(JS999) Erreur inattendue."
94
 
95
+ #: lib/includes/class-wpbackitup-admin.php:221
96
  msgid "Scheduled has been saved."
97
  msgstr "La planification a été enregistrée."
98
 
99
+ #: lib/includes/class-wpbackitup-admin.php:222
100
  msgid "Scheduled was not saved."
101
  msgstr "La planification n'a pas été enregistrée."
102
 
103
+ #: lib/includes/class-wpbackitup-admin.php:223
104
  msgid "Are you sure you want to restore your site?"
105
  msgstr "Êtes-vous sur de vouloir restaurer votre site ?"
106
 
107
+ #: lib/includes/class-wpbackitup-admin.php:224
108
  msgid "Are you sure ?"
109
  msgstr "Voulez-vous vraiment faire cela ?"
110
 
111
+ #: lib/includes/class-wpbackitup-admin.php:225
112
  msgid "This file cannot be delete!"
113
  msgstr "Ce fichier ne peut pas être supprimé&nbsp;!"
114
 
115
+ #: lib/includes/class-wpbackitup-admin.php:226
116
  msgid "View Log"
117
  msgstr "Voir le fichier journal"
118
 
119
+ #: lib/includes/class-wpbackitup-admin.php:227
120
  msgid "New Backup!"
121
  msgstr "Nouvelle sauvegarde !"
122
 
123
+ #: lib/includes/class-wpbackitup-admin.php:228
124
  msgid "Uploaded Backup"
125
  msgstr "Sauvegarde mise en ligne."
126
 
127
+ #: lib/includes/class-wpbackitup-admin.php:515
128
  msgid "Backup Queued"
129
  msgstr "Sauvegarde mise en file d'attente."
130
 
131
+ #: lib/includes/class-wpbackitup-admin.php:518
132
  msgid "Backup could not be queued"
133
  msgstr "La sauvegarde n'a pas pu être mise en file d'attente."
134
 
135
+ #: lib/includes/class-wpbackitup-admin.php:522
136
+ msgid "Job already in queue, please try again later"
137
+ msgstr "Votre tâche est déjà en file d'attente, veuillez réessayer plus tard."
 
 
 
 
138
 
139
+ #: lib/includes/class-wpbackitup-admin.php:554
140
  msgid "No backup file selected."
141
  msgstr "Aucun fichier de sauvegarde sélectionné."
142
 
143
+ #: lib/includes/class-wpbackitup-admin.php:561
144
  msgid "No user id found."
145
  msgstr "Aucun identifiant d'utilisateur trouvé."
146
 
147
+ #: lib/includes/class-wpbackitup-admin.php:582
148
  msgid "Restore Queued"
149
  msgstr "Restauration mise en file d'attente."
150
 
151
+ #: lib/includes/class-wpbackitup-admin.php:584
152
  msgid "Restore could not be queued"
153
  msgstr "La restauration n'a pas pu être mise en file d'attente."
154
 
155
+ #: lib/includes/class-wpbackitup-admin.php:588
156
  msgid "Restore already in queue"
157
  msgstr "La restauration est déjà en file d'attente."
158
 
159
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
160
+ msgid "Backup Cancelled"
161
+ msgstr "Sauvegarde annulée."
162
+
163
+ #: lib/includes/class-wpbackitup-admin.php:754
164
  msgid "No response log found."
165
  msgstr "Pas de réponse de journal trouvée."
166
 
167
+ #: lib/includes/class-wpbackitup-admin.php:856
168
+ #: lib/includes/class-wpbackitup-admin.php:864
169
+ #: lib/includes/class-wpbackitup-admin.php:893
170
+ #: lib/includes/class-wpbackitup-admin.php:900
171
+ #: lib/includes/class-wpbackitup-admin.php:907
172
+ #: lib/includes/class-wpbackitup-admin.php:914
173
  msgid "Please enter a number"
174
  msgstr "Veuillez saisir un chiffre."
175
 
176
+ #: lib/includes/class-wpbackitup-admin.php:885
177
+ #: lib/includes/class-wpbackitup-admin.php:993
178
  msgid "Please enter a valid email"
179
  msgstr "Veuillez saisir une adresse de messagerie valide."
180
 
181
+ #: lib/includes/class-wpbackitup-admin.php:1000
182
  msgid "Please enter your support ticket id"
183
  msgstr "Veuillez saisir l'identifiant de votre ticket de support."
184
 
185
+ #: lib/includes/class-wpbackitup-admin.php:1005
186
  msgid "Please only enter numbers in this field"
187
  msgstr "Veuillez saisir uniquement des chiffres dans ce champ."
188
 
189
+ #: lib/includes/class-wpbackitup-admin.php:1699
190
  msgid "License is invalid."
191
  msgstr "La licence n'est pas valide."
192
 
193
+ #: lib/includes/class-wpbackitup-admin.php:1704
194
  msgid "License has expired."
195
  msgstr "La licence est expirée."
196
 
197
+ #: lib/includes/class-wpbackitup-admin.php:1707
198
+ #, php-format
199
+ msgid ""
200
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
201
+ "now for another year of <strong>product updates</strong> and access to our "
202
+ "<strong>world class support</strong> team."
203
+ msgstr ""
204
+ "Votre licence a expiré. Veuillez la <a href=\"%s\" target=\"blank"
205
+ "\">renouveler</a> maintenant pour une nouvelle année de <strong>mises à "
206
+ "jour</strong> et accéder à notre équipe de <strong>support de classe "
207
+ "mondiale</strong>."
208
+
209
+ #: lib/includes/class-wpbackitup-admin.php:1721
210
+ msgid "License Expired: Scheduled backups are no longer active."
211
+ msgstr ""
212
+ "Licence expirée&nbsp;: Les sauvegardes planifiées ne sont plus actives."
213
+
214
+ #: lib/includes/class-wpbackitup-admin.php:1729
215
  msgid "Activation limit has been reached."
216
  msgstr "La limite d'activation a été atteinte."
217
 
218
+ #: lib/includes/class-wpbackitup-admin.php:1735
219
+ msgid "Your Activation limit has been reached"
220
+ msgstr "Votre limite d'activation a été atteinte."
221
+
222
  #: lib/includes/handler_upload.php:29
223
  msgid "Invalid Nonce"
224
  msgstr "Nonce invalide"
248
  msgstr ""
249
  "Impossible d&rsquo;importer le fichier dans le jeu de sauvegarde WP BackItUp."
250
 
251
+ #: lib/includes/job_backup.php:907
252
+ #, php-format
253
+ msgid ""
254
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
255
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
256
+ "function for <strong>30</strong> days after your license has expired.Please "
257
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
258
+ "of product updates and access to our world class support team.<br/><br/>"
259
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
 
261
+ #: lib/includes/job_backup.php:912
262
  #, php-format
263
  msgid "%s - Backup completed successfully."
264
  msgstr "%s - La sauvegarde a été correctement effectuée."
265
 
266
+ #: lib/includes/job_backup.php:913
267
  msgid "Your backup completed successfully."
268
  msgstr "Votre sauvegarde a été correctement effectuée."
269
 
270
+ #: lib/includes/job_backup.php:916
271
  #, php-format
272
  msgid "%s - Backup did not complete successfully."
273
  msgstr "%s - La sauvegarde n'a pas été correctement effectuée."
274
 
275
+ #: lib/includes/job_backup.php:917
276
  msgid "Your backup did not complete successfully."
277
  msgstr "Votre sauvegarde n'a pas été correctement effectuée."
278
 
279
+ #: lib/includes/job_backup.php:924
280
  #, php-format
281
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
282
  msgstr "Site WordPress&nbsp;: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
283
 
284
+ #: lib/includes/job_backup.php:925
285
  msgid "Backup date:"
286
  msgstr "Date de la sauvegarde&nbsp;:"
287
 
288
+ #: lib/includes/job_backup.php:926
289
  msgid "Number of backups completed with WP BackItUp:"
290
  msgstr "Nombre de sauvegardes effectuées avec WP BackItUp&nbsp;:"
291
 
292
+ #: lib/includes/job_backup.php:928
293
  msgid "Completion Code:"
294
  msgstr "Code de réussite&nbsp;:"
295
 
296
+ #: lib/includes/job_backup.php:929
297
  msgid "WP BackItUp Version:"
298
  msgstr "Version de WP BackItUp&nbsp;:"
299
 
300
+ #: lib/includes/job_backup.php:941
 
 
 
 
301
  #, php-format
302
  msgid "Checkout %s for info about WP BackItUp and our other products."
303
  msgstr ""
304
  "Consultez %s pour en savoir plus sur WP BackItUp et nos autres produits."
305
 
306
+ #: lib/includes/job_backup.php:1117
307
  msgid ""
308
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
309
  "settings of your wp-backitup backup directory"
311
  "(101) Impossible de créer un nouveau répertoire pour la sauvegarde. Veuillez "
312
  "vérifier vos réglages CHMOD de votre répertoire de sauvegarde wp-backitup."
313
 
314
+ #: lib/includes/job_backup.php:1118
315
  msgid ""
316
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
317
  "your wp-backitup plugin directory"
319
  "(102) Impossible de créer le répertoire de sauvegarde. Veuillez vérifier vos "
320
  "réglages CHMOD du répertoire de l'extension wp-backitup."
321
 
322
+ #: lib/includes/job_backup.php:1119
323
  msgid "(103) Unable to backup your files. Please try again"
324
  msgstr "(103) Impossible de sauvegarder vos fichiers. Veuillez réessayer."
325
 
326
+ #: lib/includes/job_backup.php:1120
327
  msgid "(104) Unable to export your database. Please try again"
328
  msgstr ""
329
  "(104) Impossible d'exporter votre base de données. Veuillez réessayer. "
330
 
331
+ #: lib/includes/job_backup.php:1121
332
  msgid "(105) Unable to export site information file. Please try again"
333
  msgstr ""
334
  "(105) Impossible d'exporter le fichier d'informations du site. Veuillez "
335
  "réessayer."
336
 
337
+ #: lib/includes/job_backup.php:1122
338
  msgid "(106) Unable to cleanup your backup directory"
339
  msgstr "(106) Impossible de nettoyer votre répertoire de sauvegarde."
340
 
341
+ #: lib/includes/job_backup.php:1123
342
  msgid "(107) Unable to compress(zip) your backup. Please try again"
343
  msgstr ""
344
  "(107) Impossible de compresser (zip) votre sauvegarde. Veuillez réessayer."
345
 
346
+ #: lib/includes/job_backup.php:1124
347
  msgid "(108) Unable to backup your site data files. Please try again"
348
  msgstr ""
349
  "(108) Impossible de sauvegarder les fichiers de données de votre site. "
350
  "Veuillez réessayer."
351
 
352
+ #: lib/includes/job_backup.php:1125
353
  msgid "(109) Unable to finalize backup. Please try again"
354
  msgstr "(109) Impossible de finaliser la sauvegarde. Veuillez réessayer."
355
 
356
+ #: lib/includes/job_backup.php:1126
357
  msgid ""
358
  "(114) Your database was accessible but an export could not be created. "
359
  "Please contact support by clicking the get support link on the right. Please "
364
  "support sur la droite. Veuillez nous dire quel est votre hébergeur et le "
365
  "moment où vous avez effectué la requête."
366
 
367
+ #: lib/includes/job_backup.php:1127
368
  msgid "(120) Unable to backup your themes. Please try again"
369
  msgstr "(120) Impossible de sauvegarder vos thèmes. Veuillez réessayer."
370
 
371
+ #: lib/includes/job_backup.php:1128
372
  msgid "(121) Unable to backup your plugins. Please try again"
373
  msgstr "(121) Impossible de sauvegarder vos extensions. Veuillez réessayer."
374
 
375
+ #: lib/includes/job_backup.php:1129
376
  msgid "(122) Unable to backup your uploads. Please try again"
377
  msgstr ""
378
  "(122) Impossible de sauvegarder vos pièces jointes. Veuillez réessayer. "
379
 
380
+ #: lib/includes/job_backup.php:1130
381
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
382
  msgstr ""
383
  "(123) Impossible de sauvegarder vos fichiers divers. Veuillez réessayer."
384
 
385
+ #: lib/includes/job_backup.php:1131
386
  msgid ""
387
  "(125) Unable to compress your backup because there is no zip utility "
388
  "available. Please contact support"
390
  "(125) Impossible de compresser votre sauvegarde car il n'y a pas "
391
  "d'utilitaire zip disponible. Veuillez réessayer."
392
 
393
+ #: lib/includes/job_backup.php:1132
394
  msgid "(126) Unable to validate your backup. Please try again"
395
  msgstr "(126) Impossible de valider votre sauvegarde. Veuillez réessayer."
396
 
397
+ #: lib/includes/job_backup.php:1133
398
  msgid "(127) Unable to create inventory of files to backup. Please try again"
399
  msgstr ""
400
  "(127) Impossible de créer l'inventaire des fichiers de sauvegarde. Veuillez "
401
  "réessayer."
402
 
403
+ #: lib/includes/job_backup.php:1134
404
  msgid "(128) Unable to create job control record. Please try again"
405
  msgstr ""
406
  "(128) Impossible de créer une tâche d'enregistrement de contrôle. Veuillez "
407
  "réessayer."
408
 
409
+ #: lib/includes/job_backup.php:1136
410
  msgid ""
411
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
412
  "settings of your wp-backitup backup directory"
415
  "Veuillez vérifier vos réglages CHMOD de votre répertoire de sauvegarde wp-"
416
  "backitup."
417
 
418
+ #: lib/includes/job_backup.php:1137
419
  msgid ""
420
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
421
  "your wp-backitup plugin directory"
423
  "(2102) Impossible de créer le répertoire de sauvegarde. Veuillez vérifier "
424
  "vos réglages CHMOD du répertoire de l'extension wp-backitup."
425
 
426
+ #: lib/includes/job_backup.php:1138
427
  msgid "(2103) Unable to backup your files. Please try again"
428
  msgstr "(2103) Impossible de sauvegarder vos fichiers. Veuillez réessayer. "
429
 
430
+ #: lib/includes/job_backup.php:1139
431
  msgid "(2104) Unable to export your database. Please try again"
432
  msgstr ""
433
  "(2104) Impossible d'exporter votre base de données. Veuillez réessayer."
434
 
435
+ #: lib/includes/job_backup.php:1140
436
  msgid "(2105) Unable to export site information file. Please try again"
437
  msgstr ""
438
  "(2105) Impossible d'exporter le fichier d'informations du site. Veuillez "
439
  "réessayer."
440
 
441
+ #: lib/includes/job_backup.php:1141
442
  msgid "(2106) Unable to cleanup your backup directory"
443
  msgstr "(2106) Impossible de nettoyer votre répertoire de sauvegarde."
444
 
445
+ #: lib/includes/job_backup.php:1142
446
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
447
  msgstr ""
448
  "(2107) Impossible de compresser (zip) votre sauvegarde. Veuillez réessayer."
449
 
450
+ #: lib/includes/job_backup.php:1143
451
  msgid "(2108) Unable to backup your site data files. Please try again"
452
  msgstr ""
453
  "(2108) Impossible de sauvegarder les fichiers de données de votre site. "
454
  "Veuillez réessayer."
455
 
456
+ #: lib/includes/job_backup.php:1144
457
  msgid "(2109) Unable to finalize backup. Please try again"
458
  msgstr "(2109) Impossible de finaliser la sauvegarde. Veuillez réessayer."
459
 
460
+ #: lib/includes/job_backup.php:1145
461
  msgid ""
462
  "(2114) Your database was accessible but an export could not be created. "
463
  "Please contact support by clicking the get support link on the right. Please "
468
  "support sur la droite. Veuillez nous dire quel est votre hébergeur et le "
469
  "moment où vous avez effectué la requête."
470
 
471
+ #: lib/includes/job_backup.php:1146
472
  msgid "(2120) Unable to backup your themes. Please try again"
473
  msgstr "(2120) Impossible de sauvegarder vos thèmes. Veuillez réessayer."
474
 
475
+ #: lib/includes/job_backup.php:1147
476
  msgid "(2121) Unable to backup your plugins. Please try again"
477
  msgstr "(2121) Impossible de sauvegarder vos extensions. Veuillez réessayer."
478
 
479
+ #: lib/includes/job_backup.php:1148
480
  msgid "(2122) Unable to backup your uploads. Please try again"
481
  msgstr ""
482
  "(2122) Impossible de sauvegarder vos pièces jointes. Veuillez réessayer. "
483
 
484
+ #: lib/includes/job_backup.php:1149
485
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
486
  msgstr ""
487
  "(2123) Impossible de sauvegarder vos fichiers divers. Veuillez réessayer."
488
 
489
+ #: lib/includes/job_backup.php:1150
490
  msgid ""
491
  "(2125) Unable to compress your backup because there is no zip utility "
492
  "available. Please contact support"
494
  "(2125) Impossible de compresser votre sauvegarde car il n'y a pas "
495
  "d'utilitaire zip disponible. Veuillez réessayer."
496
 
497
+ #: lib/includes/job_backup.php:1151
498
  msgid "(2126) Unable to validate your backup. Please try again"
499
  msgstr "(2126) Impossible de valider votre sauvegarde. Veuillez réessayer."
500
 
501
+ #: lib/includes/job_backup.php:1152
502
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
503
  msgstr ""
504
  "(2127) Impossible de créer l'inventaire des fichiers de sauvegarde. Veuillez "
505
  "réessayer."
506
 
507
+ #: lib/includes/job_backup.php:1153
508
  msgid "(2128) Unable to create job control record. Please try again"
509
  msgstr ""
510
  "(2128) Impossible de créer une tâche d'enregistrement de contrôle. Veuillez "
511
  "réessayer."
512
 
513
+ #: lib/includes/job_backup.php:1156
514
  msgid "(999) Unexpected error"
515
  msgstr "(999) Erreur inattendue"
516
 
517
  #. TRANSLATORS: %s = plugin name.
518
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
519
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
520
+ #: views/backup.php:17
521
  #, php-format
522
  msgid "%s Dashboard"
523
  msgstr "Tableau de bord de %s"
524
 
525
+ #: views/backup.php:83
526
+ msgid "Dismiss"
527
+ msgstr "Fermer"
528
+
529
+ #: views/backup.php:95
530
  #, php-format
531
  msgid "Backup folder does not exist. Please contact %s for assistance."
532
  msgstr ""
533
  "Le dossier de sauvegarde n'existe pas. Veuillez contacter %s pour de "
534
  "l'assistance."
535
 
536
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
537
  msgid "support"
538
  msgstr "support"
539
 
540
+ #: views/backup.php:98 views/backup.php:104
541
  msgid "Close"
542
  msgstr "Fermer"
543
 
544
+ #: views/backup.php:119
545
  msgid ""
546
  "Click the backup button to create a zipped backup file of this site's "
547
  "database, plugins, themes and settings."
549
  "Cliquez sur le bouton de sauvegarde pour créer un fichier zippé de la base "
550
  "de données, des extensions, thèmes et réglages de votre site."
551
 
552
+ #: views/backup.php:120
553
  msgid ""
554
  "Once your backup file has been created it will appear in the available "
555
  "backups section below. This file may remain on your hosting providers server "
560
  "le serveur de votre hébergement, mais nous vous recommandons de le "
561
  "télécharger et de l'enregistrer dans un endroit sûr."
562
 
563
+ #: views/backup.php:121
564
  msgid ""
565
  "WP BackItUp premium customers can use these backup files to perform an "
566
  "automated restore of their site."
568
  "Les utilisateurs de WP BackItUp Premium peuvent utiliser les fichiers de "
569
  "sauvegarde pour effectuer une restauration automatique de leurs sites."
570
 
571
+ #: views/backup.php:125
572
  msgid "Cancel"
573
  msgstr "Annuler"
574
 
575
+ #: views/backup.php:132
576
  #, php-format
577
  msgid ""
578
  "WP BackItUp lite customers may use these backup files to manually restore "
582
  "sauvegarde pour effectuer une restauration manuelle de leurs sites. Veuillez "
583
  "vous rendre sur %s pour les instructions de restauration."
584
 
585
+ #: views/backup.php:139
586
  msgid "Backup Schedule"
587
  msgstr "Planification de sauvegarde"
588
 
589
+ #: views/backup.php:141
590
  msgid "Select the days of the week you would like your backup to run."
591
  msgstr "Sélectionner les jours de la semaine pour effectuer la sauvegarde."
592
 
593
+ #: views/backup.php:143
594
  msgid ""
595
  "Backup your site once per week or every day, it's up to you. If you have "
596
  "email notifications turned on we'll even send you an email when it's done. "
606
  "d'hébergement, mais nous vous recommandons de télécharger et de "
607
  "l'enregistrer dans un endroit sûr."
608
 
609
+ #: views/backup.php:145
610
  msgid "Please make sure to schedule your backup for at least once per week."
611
  msgstr ""
612
  "Veuillez vous assurer de programmer une sauvegarde au moins une fois par "
613
  "semaine."
614
 
615
+ #: views/backup.php:149
616
  msgid "Monday"
617
  msgstr "lundi"
618
 
619
+ #: views/backup.php:150
620
  msgid "Tuesday"
621
  msgstr "mardi"
622
 
623
+ #: views/backup.php:151
624
  msgid "Wednesday"
625
  msgstr "mercredi"
626
 
627
+ #: views/backup.php:152
628
  msgid "Thursday"
629
  msgstr "jeudi"
630
 
631
+ #: views/backup.php:153
632
  msgid "Friday"
633
  msgstr "vendredi"
634
 
635
+ #: views/backup.php:154
636
  msgid "Saturday"
637
  msgstr "samedi"
638
 
639
+ #: views/backup.php:155
640
  msgid "Sunday"
641
  msgstr "dimanche"
642
 
643
+ #: views/backup.php:158
644
  msgid "Save Schedule"
645
  msgstr "Enregistrer la planification"
646
 
647
+ #: views/backup.php:163
648
  #, php-format
649
  msgid ""
650
  "Scheduled backups are only available to WP BackItUp premium customers. "
654
  "BackItUp premium. Veuillez visiter %s pour obtenir sans risque WP BackItUp "
655
  "pendant 30 jours."
656
 
657
+ #: views/backup.php:170 views/restore.php:95
658
  msgid "Available Backups"
659
  msgstr "Sauvegardes disponibles"
660
 
661
+ #: views/backup.php:190 views/restore.php:100
662
+ msgid "Date"
663
+ msgstr "Date"
664
+
665
+ #: views/backup.php:191
666
+ msgid "Duration"
667
+ msgstr "Durée"
668
+
669
+ #: views/backup.php:214
670
+ msgid "Success"
671
+ msgstr "Réussite"
672
+
673
+ #: views/backup.php:217
674
+ msgid "Active"
675
+ msgstr "Actif"
676
+
677
+ #: views/backup.php:257 views/restore.php:150
678
  msgid "No backup archives found."
679
  msgstr "Aucune archive de sauvegarde trouvée."
680
 
681
+ #: views/backup.php:266
682
  #, php-format
683
  msgid ""
684
  "The automated restore feature is only available to WP BackItUp premium "
688
  "clients WP BackItUp premium. Veuillez visiter %s pour obtenir sans risque WP "
689
  "BackItUp pendant 30 jours."
690
 
691
+ #: views/backup.php:275 views/restore.php:234
692
  msgid "Nothing to report"
693
  msgstr "Rien à signaler"
694
 
695
+ #: views/backup.php:280
696
  msgid "Preparing for backup"
697
  msgstr "Préparation pour la sauvegarde"
698
 
699
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
700
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
701
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
702
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
703
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
704
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
705
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
706
  msgid "Done"
707
  msgstr "Terminé"
708
 
709
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
710
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
711
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
712
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
713
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
714
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
715
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
716
  msgid "Failed"
717
  msgstr "Échoué"
718
 
719
+ #: views/backup.php:281
720
+ msgid "Creating inventory of files to backup"
721
+ msgstr "Création de l'inventaire des fichiers à sauvegarder."
722
+
723
+ #: views/backup.php:282
724
  msgid "Backing up database"
725
  msgstr "Sauvegarde de la base de données"
726
 
727
+ #: views/backup.php:283
728
  msgid "Creating backup information file"
729
  msgstr "Création du fichier de données de sauvegarde."
730
 
731
+ #: views/backup.php:284
732
  msgid "Backing up themes"
733
  msgstr "Sauvegarde des thèmes"
734
 
735
+ #: views/backup.php:285
736
  msgid "Backing up plugins"
737
  msgstr "Sauvegarde des extensions"
738
 
739
+ #: views/backup.php:286
740
  msgid "Backing up uploads"
741
  msgstr "Sauvegarde des pièces jointes"
742
 
743
+ #: views/backup.php:287
744
  msgid "Backing up everything else"
745
  msgstr "Sauvegarde de tout le reste"
746
 
747
+ #: views/backup.php:288
748
  msgid "Validating backup"
749
  msgstr "Validation de la sauvegarde"
750
 
751
+ #: views/backup.php:289
752
  msgid "Finalizing backup"
753
  msgstr "Finalisation de la sauvegarde"
754
 
755
+ #: views/backup.php:299
756
  msgid "Backup completed successfully"
757
  msgstr "La sauvegarde a bien été effectuée."
758
 
759
+ #: views/backup.php:320
760
  msgid "Backups"
761
  msgstr "Sauvegardes"
762
 
763
+ #: views/backup.php:320
764
  msgid "Version "
765
  msgstr "Version "
766
 
767
+ #: views/backup.php:322
768
  msgid "Welcome to WP BackItUp!"
769
  msgstr "Bienvenue dans WP BackItUp !"
770
 
771
+ #: views/backup.php:322
772
  msgid "The simplest way to backup your WordPress site."
773
  msgstr "La manière la plus simple de sauvegarder votre site WordPress."
774
 
775
+ #: views/backup.php:323
776
  msgid ""
777
  "Getting started is easy, just click the backup button on the left side of "
778
  "this page."
780
  "Le démarrage est simple, cliquez sur le bouton de sauvegarde à gauche sur "
781
  "cette page."
782
 
783
+ #: views/backup.php:327
784
  #, php-format
785
  msgid ""
786
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
789
  "Félicitations ! Vous avez bien effectué <span style=\"font-weight:bold;font-"
790
  "size:medium;color: green\">%s</span> sauvegardes."
791
 
792
+ #: views/backup.php:328
793
  msgid "Tips"
794
  msgstr "Astuces"
795
 
796
+ #: views/backup.php:329
797
  msgid "Backup your site at least once per week"
798
  msgstr "Sauvegardez votre site au moins une fois par semaine"
799
 
800
+ #: views/backup.php:330
801
  msgid "Download all your backups and store them somewhere safe"
802
  msgstr ""
803
  "Téléchargez toutes vos sauvegardes et stockez-les dans un endroit sécurisé."
804
 
805
+ #: views/backup.php:331
806
  msgid "Verify your backup files are good by taking a look at what's inside"
807
  msgstr ""
808
  "Vérifiez que vos fichiers de sauvegarde sont bons en regardant attentivement "
809
  "ce qu'il y a dedans."
810
 
811
+ #: views/backup.php:336
812
  #, php-format
813
  msgid "Why not %s and schedule your backups!"
814
  msgstr "Pourquoi ne pas %s et planifier vos sauvegardes&nbsp;!"
815
 
816
+ #: views/backup.php:336
817
  msgid "upgrade"
818
  msgstr "mettre à jour"
819
 
820
+ #: views/backup.php:345
821
  msgid "Register WP BackItUp"
822
  msgstr "Enregistrer WP BackItUp"
823
 
824
+ #: views/backup.php:348
825
  msgid ""
826
  "Enter your name and email address below to receive <b>special offers</b> and "
827
  "access to our world class <b>support</b> team. <br />\n"
833
  "classe mondiale.<br />\n"
834
  "<br />Entrez votre clé de licence ci-dessous pour l'activer sur ce site."
835
 
836
+ #: views/backup.php:350
837
  msgid "name"
838
  msgstr "nom"
839
 
840
+ #: views/backup.php:351
841
  msgid "email address"
842
  msgstr "adresse de messagerie"
843
 
844
+ #: views/backup.php:352
845
  msgid "license key"
846
  msgstr "clé de licence"
847
 
848
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
849
  #, php-format
850
  msgid "%s"
851
  msgstr "%s"
852
 
853
+ #: views/backup.php:353
854
  msgid "Free plugin customers do not need to enter license key."
855
  msgstr ""
856
  "Les utilisateurs de l'extension gratuite n'ont pas besoin de saisir de clé "
857
  "de licence."
858
 
859
+ #: views/backup.php:354
860
  msgid "Register"
861
  msgstr "Inscription"
862
 
863
+ #: views/backup.php:363
864
  msgid "License Info"
865
  msgstr "Info de licence"
866
 
867
+ #: views/backup.php:385
868
  msgid "Name"
869
  msgstr "Nom"
870
 
871
+ #: views/backup.php:386
872
  msgid "Email"
873
  msgstr "E-mail "
874
 
875
+ #: views/backup.php:387
876
  msgid "License Type"
877
  msgstr "Type de licence"
878
 
879
+ #: views/backup.php:388
880
  msgid "Expires"
881
  msgstr "Expire"
882
 
883
+ #: views/backup.php:391
884
  msgid "Enter license key to activate on this site."
885
  msgstr "Saisissez la clé de licence à activer sur ce site."
886
 
887
+ #: views/backup.php:398
888
  msgid "License Active"
889
  msgstr "Licence active"
890
 
891
+ #: views/backup.php:406
892
  msgid "License expired"
893
  msgstr "Licence expirée"
894
 
895
+ #: views/backup.php:410
896
  msgid "Update"
897
  msgstr "Mettre à jour"
898
 
899
+ #: views/backup.php:414
900
  msgid "Activate"
901
  msgstr "Activer"
902
 
903
+ #: views/backup.php:418
904
  #, php-format
905
  msgid "Purchase a %s license using the purchase link above."
906
  msgstr "Achetez une licence %s en utilisant le lien d'achat ci-dessus."
907
 
908
+ #: views/backup.php:418
909
  msgid "no-risk"
910
  msgstr "sans risque"
911
 
912
+ #: views/backup.php:424
913
  #, php-format
914
  msgid ""
915
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
916
+ "<strong>product updates</strong> and access to our <strong>world class "
917
+ "support</strong> team."
918
  msgstr ""
919
+ "Veuillez <a href=\"%s\" target=\"blank\">renouveler</a> maintenant pour une "
920
+ "nouvelle année de <strong>mises à jour</strong> et accéder à notre équipe de "
921
+ "<strong>support de classe mondiale</strong>."
922
 
923
+ #: views/backup.php:435
924
  msgid "Useful Links"
925
  msgstr "Liens utiles"
926
 
927
+ #: views/backup.php:438 views/backup.php:442
928
  msgid "Your account"
929
  msgstr "Votre compte"
930
 
931
+ #: views/backup.php:445
932
  msgid "Documentation"
933
  msgstr "Documentation"
934
 
935
+ #: views/backup.php:448
936
  msgid "Get support"
937
  msgstr "Obtenir du support"
938
 
939
+ #: views/backup.php:451
940
  msgid "Feature request"
941
  msgstr "Demande de fonctionnalité"
942
 
943
+ #: views/backup.php:453
944
+ msgid "Language Translations"
945
+ msgstr "Traductions"
946
+
947
+ #: views/backup.php:455
948
  msgid "Contact"
949
  msgstr "Contact"
950
 
951
+ #: views/backup.php:478 views/backup.php:502
952
  msgid "WP BackItUp Backup Set"
953
  msgstr "Jeu de sauvegarde WP BackItUp"
954
 
955
+ #: views/backup.php:480
956
  msgid ""
957
  "Below are the archive files included in this backup set. Click the link to "
958
  "download."
960
  "Voici les fichiers d'archive inclus dans ce jeu de sauvegarde. Cliquez sur "
961
  "le lien pour télécharger."
962
 
963
+ #: views/backup.php:503
964
  msgid "Please refresh this page to download your new backup files."
965
  msgstr ""
966
  "Veuillez rafraichir cette page pour télécharger vos nouveaux fichiers de "
967
  "sauvegarde."
968
 
969
+ #: views/restore.php:13
970
  #, php-format
971
  msgid "%s Restore"
972
  msgstr "Restaurer %s"
973
 
974
+ #: views/restore.php:60
975
  msgid "Zip Files"
976
  msgstr "Fichiers Zip"
977
 
978
+ #: views/restore.php:75
979
  #, php-format
980
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
981
  msgstr ""
982
  "Erreur&nbsp;: Le dossier de sauvegarde n'existe pas. Veuillez contacter %s "
983
  "pour de l'assistance."
984
 
985
+ #: views/restore.php:82
986
  #, php-format
987
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
988
  msgstr ""
989
  "Erreur&nbsp;: Le dossier de restauration n'existe pas. Veuillez contacter %s "
990
  "pour de l'assistance."
991
 
992
+ #: views/restore.php:166
993
  #, php-format
994
  msgid ""
995
  "<p>* The automated restore feature is only available to licensed customers. "
1001
  "target=\"_blank\">%s</a> pour obtenir sans risque une licence WP BackItUp "
1002
  "pendant 30 jours.</p>"
1003
 
1004
+ #: views/restore.php:178
1005
  msgid "Upload"
1006
  msgstr "Envoyer"
1007
 
1008
+ #: views/restore.php:181
1009
  msgid ""
1010
  "Upload WP BackItUp archive(zip) files to add to your list of available "
1011
  "backups."
1013
  "Mettez en ligne les fichiers d'archive (zip) de WP BackItUp à ajouter à "
1014
  "votre liste de sauvegardes disponibles."
1015
 
1016
+ #: views/restore.php:198
1017
  msgid "WP BackItUp - Upload backup files"
1018
  msgstr "WP BackItUp - Envoi de fichiers de sauvegarde"
1019
 
1020
+ #: views/restore.php:199
1021
  msgid "Backup files may be uploaded into WP BackItUp with this form."
1022
  msgstr ""
1023
  "Les fichiers de sauvegarde peuvent être envoyés dans WP BackItUp via ce "
1024
  "formulaire."
1025
 
1026
+ #: views/restore.php:199
1027
  msgid ""
1028
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
1029
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
1034
  "terminé le chargement de tous les fichiers de sauvegarde rafraîchissez cette "
1035
  "page."
1036
 
1037
+ #: views/restore.php:203
1038
  #, php-format
1039
  msgid "This feature requires %s version %s or later"
1040
  msgstr "Cette fonctionnalité nécessite %s version %s ou plus."
1041
 
1042
+ #: views/restore.php:209
1043
  msgid "Drop backup files here"
1044
  msgstr "Déposez ici vos fichiers de sauvegarde"
1045
 
1046
+ #: views/restore.php:215
1047
  msgid ""
1048
  "* Reload this page when done uploading to see new backups appear in the "
1049
  "Available Backups section above. "
1052
  "apparaître de nouvelles sauvegardes dans la section sauvegardes disponibles "
1053
  "ci-dessus."
1054
 
1055
+ #: views/restore.php:244
1056
  msgid "Preparing for restore"
1057
  msgstr "Préparation pour la restauration"
1058
 
1059
+ #: views/restore.php:245
1060
  msgid "Unzipping backup set"
1061
  msgstr "Décompression du jeu de sauvegardes"
1062
 
1063
+ #: views/restore.php:246
1064
  msgid "Validating backup file"
1065
  msgstr "Validation du fichier de sauvegarde"
1066
 
1067
+ #: views/restore.php:247
1068
  msgid "Deactivating plugins"
1069
  msgstr "Désactivation des extensions"
1070
 
1071
+ #: views/restore.php:248
1072
  msgid "Creating database restore point"
1073
  msgstr "Création du point de restauration de la base de données."
1074
 
1075
+ #: views/restore.php:249
1076
  msgid "Staging content files"
1077
+ msgstr "Organisation des fichiers de contenu."
1078
 
1079
+ #: views/restore.php:250
1080
  msgid "Restoring content files"
1081
  msgstr "Restauration des fichiers de contenu."
1082
 
1083
+ #: views/restore.php:251
1084
  msgid "Restoring database"
1085
  msgstr "Restauration de la base de données."
1086
 
1087
+ #: views/restore.php:252
1088
  msgid "Updating current user info"
1089
  msgstr "Mise à jour des informations de l'utilisateur courant."
1090
 
1091
+ #: views/restore.php:253
1092
  msgid "Updating site URL"
1093
  msgstr "Mise à jour de l'URL du site"
1094
 
1095
+ #: views/restore.php:255
1096
  msgid "Updating permalinks"
1097
  msgstr "Mise à jour des permaliens"
1098
 
1099
+ #: views/restore.php:261
1100
  msgid "Error 201: No file selected"
1101
  msgstr "Erreur 201 : aucun fichier sélectionné."
1102
 
1103
+ #: views/restore.php:262
1104
  msgid "Error 202: Your file could not be uploaded"
1105
  msgstr "Erreur 202&nbsp;: Votre fichier n'a pas pu être mis en ligne."
1106
 
1107
+ #: views/restore.php:263
1108
  msgid "Error 203: Your backup could not be unzipped"
1109
  msgstr "Erreur 203&nbsp;: Votre sauvegarde n'a pas pu être dé-zippée."
1110
 
1111
+ #: views/restore.php:264
1112
  msgid ""
1113
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1114
  "valid backup"
1116
  "Erreur 204&nbsp;: Votre sauvegarde semble ne pas être valide. Veuillez vous "
1117
  "assurer d'en choisir une valide."
1118
 
1119
+ #: views/restore.php:265
1120
  msgid "Error 205: Cannot create restore point"
1121
  msgstr "Erreur 205 : impossible de créer le point de restauration."
1122
 
1123
+ #: views/restore.php:266
1124
  msgid "Error 206: Unable to connect to your database"
1125
  msgstr "Erreur 206 : impossible de se connecter à votre base de données."
1126
 
1127
+ #: views/restore.php:267
1128
  msgid ""
1129
  "Error 207: Unable to get current site URL from database. Please try again"
1130
  msgstr ""
1131
  "Erreur 207&nbsp;: Impossible d'obtenir l'URL actuelle du site depuis la base "
1132
  "de données. Veuillez réessayer."
1133
 
1134
+ #: views/restore.php:268
1135
  msgid ""
1136
  "Error 208: Unable to get current home URL from database. Please try again"
1137
  msgstr ""
1138
  "Erreur 208&nbsp;: Impossible d'obtenir l'URL actuelle de la page d'accueil "
1139
  "depuis la base de données. Veuillez réessayer."
1140
 
1141
+ #: views/restore.php:269
1142
  msgid ""
1143
  "Error 209: Unable to get current user ID from database. Please try again"
1144
  msgstr ""
1145
  "Erreur 209&nbsp;: Impossible d'obtenir l'identifiant de l'utilisateur "
1146
  "courant depuis la base de données. Veuillez réessayer."
1147
 
1148
+ #: views/restore.php:270
1149
  msgid ""
1150
  "Error 210: Unable to get current user password from database. Please try "
1151
  "again"
1153
  "Erreur 210&nbsp;: Impossible d'obtenir le mot de passe de l'utilisateur "
1154
  "courant depuis la base de données. Veuillez réessayer."
1155
 
1156
+ #: views/restore.php:271
1157
  msgid ""
1158
  "Error 211: Unable to get current user email from database. Please try again"
1159
  msgstr ""
1160
  "Erreur 211&nbsp;: Impossible d'obtenir l'e-mail de l'utilisateur courant "
1161
  "depuis la base de données. Veuillez réessayer."
1162
 
1163
+ #: views/restore.php:272
1164
  msgid ""
1165
  "Error 212: Unable to import your database. This may require importing the "
1166
  "file manually"
1168
  "Erreur 212&nbsp;: Impossible d'importer votre base de données. Cela peut "
1169
  "nécessiter l'importation du fichier manuellement."
1170
 
1171
+ #: views/restore.php:273
1172
  msgid ""
1173
  "Warning 213: Unable to update your site URL value. Please check your "
1174
  "WordPress general settings to make sure your Site and WordPress URLs are "
1178
  "votre site. Veuillez vérifier vos paramètres généraux WordPress pour vous "
1179
  "assurer que votre site et les URLs Wordpress sont correctes."
1180
 
1181
+ #: views/restore.php:274
1182
  msgid ""
1183
  "Warning 214: Unable to update your home URL value. Please check your "
1184
  "WordPress general settings to make sure your Site and WordPress URLs are "
1188
  "votre page d'accueil. Veuillez vérifier vos paramètres généraux WordPress "
1189
  "pour vous assurer que votre site et les URLs Wordpress sont corrects."
1190
 
1191
+ #: views/restore.php:275
1192
  msgid ""
1193
  "Warning 215: Unable to update your user information. This may require you to "
1194
  "login with the admin username and password that was used when the backup was "
1199
  "de passe d'administrateur qui a été utilisé lorsque la sauvegarde a été "
1200
  "créée."
1201
 
1202
+ #: views/restore.php:276
1203
  msgid "Error 216: Database not found in backup"
1204
  msgstr "Erreur 216 : base de données introuvable dans la sauvegarde."
1205
 
1206
+ #: views/restore.php:277
1207
  msgid "Warning 217: Unable to remove existing wp-content directory"
1208
  msgstr ""
1209
  "Avertissement 217&nbsp;: Impossible de supprimer le répertoire wp-content "
1210
  "existant."
1211
 
1212
+ #: views/restore.php:278
1213
  msgid ""
1214
  "Error 218: Unable to create new wp-content directory. Please check your "
1215
  "CHMOD settings in /wp-content/"
1217
  "Erreur 218&nbsp;: Impossible de créer le nouveau répertoire wp-content. "
1218
  "Veuillez vérifier vos réglages CHMOD dans /wp-content/."
1219
 
1220
+ #: views/restore.php:279
1221
  msgid "Error 219: Unable to import wp-content. Please try again"
1222
  msgstr ""
1223
  "Erreur 219&nbsp;: Impossible d'importer wp-content. Veuillez réessayer."
1224
 
1225
+ #: views/restore.php:280
1226
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1227
  msgstr ""
1228
  "Avertissement 220&nbsp;: Impossible de nettoyer le répertoire d'import. "
1229
  "Aucune action n'est requise."
1230
 
1231
+ #: views/restore.php:281
1232
  #, php-format
1233
  msgid ""
1234
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1242
  "wpbackitup.com <a href =\"%s\" target=\"_blank\" >FAQ</a> pour plus "
1243
  "d'informations."
1244
 
1245
+ #: views/restore.php:282
1246
  msgid "Error 222: Unable to create restore folder"
1247
  msgstr "Erreur 222 : impossible de créer le répertoire de restauration."
1248
 
1249
+ #: views/restore.php:283
1250
  msgid ""
1251
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1252
  "restore the database to its previous state but were unsuccessful. Please "
1258
  "mais sans succès. Veuillez contacter le support client de WP BackItUp et ne "
1259
  "pas essayer de lancer de nouvelles restaurations."
1260
 
1261
+ #: views/restore.php:284
1262
  msgid ""
1263
  "Error 224: An error occurred during the restore, however, we have "
1264
  "successfully restored your database to the previous state"
1267
  "Cependant, nous avons restauré avec succès votre base de données à son état "
1268
  "précédent."
1269
 
1270
+ #: views/restore.php:285
1271
  msgid ""
1272
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1273
  msgstr ""
1274
  "Erreur 225&nbsp;: L'option de restauration est disponible uniquement aux "
1275
  "utilisateurs WP BackItUp avec licence."
1276
 
1277
+ #: views/restore.php:286
1278
  msgid ""
1279
  "Error 226: Restore cannot proceed because your backup was created using a "
1280
  "different version of WordPress"
1282
  "Erreur 226&nbsp;: La restauration ne peut pas être effectuée parce que votre "
1283
  "sauvegarde a été faite en utilisant une version différente de WordPress."
1284
 
1285
+ #: views/restore.php:287
1286
  msgid ""
1287
  "Error 227: Restore cannot proceed because your backup was created using a "
1288
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1293
  "Veuillez contacter le support WP BackItUp pour aider à convertir cette "
1294
  "sauvegarde vers la version actuelle."
1295
 
1296
+ #: views/restore.php:288
1297
  msgid ""
1298
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1299
  "restore. However, we were able to successfully revert the database back to "
1304
  "de restaurer la base de données dans son état d'origine avec succès. Cette "
1305
  "erreur peut nécessiter d'importer manuellement la base de données."
1306
 
1307
+ #: views/restore.php:289
1308
  msgid ""
1309
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1310
  "utility available. Please contact support"
1312
  "Erreur 235&nbsp;: WP BackItUp ne peut pas continuer car aucun utilitaire zip "
1313
  "n'est disponible. Veuillez contacter le support."
1314
 
1315
+ #: views/restore.php:290
1316
  msgid ""
1317
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1318
  "running. Please wait for the backup to complete and then try again"
1321
  "sauvegarde est en cours. Veuillez attendre la fin de la sauvegarde et "
1322
  "refaire un essai."
1323
 
1324
+ #: views/restore.php:292
1325
  msgid ""
1326
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1327
  "manifest is empty"
1329
  "Erreur 251&nbsp;: WP BackItUp est incapable de commencer la restauration "
1330
  "parce que le manifeste de sauvegarde est vide."
1331
 
1332
+ #: views/restore.php:293
1333
  msgid ""
1334
  "Error 252: At least one zip file is missing from your backup set. Please "
1335
  "make sure to upload all zip files that were part of this backup"
1338
  "sauvegarde. Veuillez vous assurer de mettre en ligne tous les fichiers zip "
1339
  "faisant partie de cette sauvegarde."
1340
 
1341
+ #: views/restore.php:294
1342
  msgid ""
1343
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1344
  "Please make sure to upload only zip files that were part of this backup"
1347
  "présent dans le manifeste. Veuillez vous assurez de faire de mettre en ligne "
1348
  "uniquement les fichiers zip faisant partie de cette sauvegarde."
1349
 
1350
+ #: views/restore.php:296
1351
  msgid ""
1352
  "Warning 300: Unable to restore all WordPress content. Please review your "
1353
  "restore logs to see what WP BackItUp was unable to restore"
1356
  "Veuillez consulter les journaux de restauration pour voir ce que WP BackItUp "
1357
  "n'a pas été capable de restaurer."
1358
 
1359
+ #: views/restore.php:297
1360
  msgid ""
1361
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1362
  "to see what WP BackItUp was unable to restore"
1365
  "Veuillez consulter les journaux de restauration pour voir ce WP BackItUp n'a "
1366
  "pas été capable de restaurer."
1367
 
1368
+ #: views/restore.php:299
1369
  msgid "Error 2001: Unable to prepare site for restore"
1370
  msgstr ""
1371
  "Erreur 2001&nbsp;: Impossible de préparer le site pour la restauration."
1372
 
1373
+ #: views/restore.php:300
1374
  msgid "Error 2002: Unable to unzip backup"
1375
  msgstr "Erreur 2002&nbsp;: Impossible de décompresser la sauvegarde."
1376
 
1377
+ #: views/restore.php:301
1378
  msgid "Error 2003: Unable to validate backup"
1379
  msgstr "Erreur 2003&nbsp;: Impossible de valider la sauvegarde."
1380
 
1381
+ #: views/restore.php:302
1382
  msgid "Error 2004: Unable to create restore point"
1383
  msgstr "Erreur 2004&nbsp;: Impossible de créer le point de restauration."
1384
 
1385
+ #: views/restore.php:303
1386
  msgid "Error 2005: Unable to stage wp-content"
1387
+ msgstr "Erreur 2005&nbsp;: Impossible d'organiser les fichiers de contenu."
1388
 
1389
+ #: views/restore.php:304
1390
  msgid "Error 2006: Unable to restore content files"
1391
  msgstr "Erreur 2006&nbsp;: Impossible de restaurer les fichiers de contenu."
1392
 
1393
+ #: views/restore.php:305
1394
  msgid "Error 2007: Unable to restore database"
1395
  msgstr "Erreur 2007&nbsp;: Impossible de restaurer la base de données."
1396
 
1397
+ #: views/restore.php:306
1398
  msgid "Error 2999: Unexpected error encountered"
1399
  msgstr "Erreur 2999&nbsp;: Une erreur inattendue s'est produite."
1400
 
1401
+ #: views/restore.php:313
1402
  msgid ""
1403
  "Restore completed successfully. If you are prompted to login please do so "
1404
  "with your current username and password"
1407
  "apparaît, veuillez vous connecter avec vos nom d'utilisateur et mot de passe "
1408
  "actuels."
1409
 
1410
+ #: views/settings.php:13
1411
  #, php-format
1412
  msgid "%s Settings"
1413
  msgstr "Réglages de %s"
1414
 
1415
+ #: views/settings.php:40
1416
  msgid "Email Notifications"
1417
  msgstr "Notifications par e-mail"
1418
 
1419
+ #: views/settings.php:41
1420
  msgid ""
1421
  "Please enter your email address if you would like to receive backup email "
1422
  "notifications."
1424
  "Veuillez saisir votre adresse de messagerie si vous souhaitez recevoir par e-"
1425
  "mail les notifications de vos sauvegardes."
1426
 
1427
+ #: views/settings.php:42
1428
  msgid ""
1429
  "Backup email notifications will be sent for every backup and will contain "
1430
  "status information related to the backup."
1432
  "Les e-mails de notification de sauvegarde seront envoyés à chaque sauvegarde "
1433
  "et contiendront des informations sur l'état de la sauvegarde."
1434
 
1435
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1436
+ #: views/settings.php:111
1437
  msgid "Save"
1438
  msgstr "Enregistrer"
1439
 
1440
+ #: views/settings.php:60
1441
  msgid "Backup Retention"
1442
  msgstr "Rétention de sauvegarde"
1443
 
1444
+ #: views/settings.php:61
1445
  msgid ""
1446
  "Enter the number of backup archives that you would like to remain on the "
1447
  "server."
1449
  "Saisissez le nombre d'archives de sauvegarde que vous souhaitez conserver "
1450
  "sur le serveur."
1451
 
1452
+ #: views/settings.php:62
1453
  msgid ""
1454
  "Many hosts limit the amount of space that you can take up on their servers. "
1455
  "This option tells WP BackItUp the maximum number of backup archives that "
1462
  "Ne vous inquiétez pas, nous supprimons toujours les anciennes archives de "
1463
  "sauvegarde en premier."
1464
 
1465
+ #: views/settings.php:81
1466
  msgid "Turn on logging?"
1467
  msgstr "Activer la journalisation&nbsp;?"
1468
 
1469
+ #: views/settings.php:82
1470
  msgid "Yes"
1471
  msgstr "Oui"
1472
 
1473
+ #: views/settings.php:83
1474
  msgid "No"
1475
  msgstr "Non"
1476
 
1477
+ #: views/settings.php:84
1478
  msgid ""
1479
  "This option should only be turned on when troubleshooting issues with "
1480
  "WPBackItUp support."
1482
  "Cette option ne devrait être activée uniquement lors de la résolution des "
1483
  "problèmes avec le suport WPBackItUp."
1484
 
1485
+ #: views/settings.php:89
1486
  msgid "Advanced Settings"
1487
  msgstr "Réglages avancés"
1488
 
1489
+ #: views/settings.php:90
1490
  msgid ""
1491
  "These options should only be changed when working with WP BackItUp support."
1492
  msgstr ""
1493
  "Ces options ne doivent être modifiées uniquement lorsqu'on travaille avec le "
1494
  "suppport WP BackItUp."
1495
 
1496
+ #: views/settings.php:93
1497
  msgid "Plugins Batch Size"
1498
  msgstr "Taille du lot des extensions"
1499
 
1500
+ #: views/settings.php:98
1501
  msgid "Themes Batch Size"
1502
  msgstr "Taille du lot des thèmes"
1503
 
1504
+ #: views/settings.php:103
1505
  msgid "Uploads Batch Size"
1506
  msgstr "Taille du lot des pièces jointes"
1507
 
1508
+ #: views/settings.php:108
1509
  msgid "Others Batch Size"
1510
  msgstr "Taille des autres lots"
1511
 
1512
+ #: views/support.php:13
1513
  #, php-format
1514
  msgid "%s Support"
1515
  msgstr "Support de %s"
1516
 
1517
+ #: views/support.php:32
1518
  msgid "Support email sent successfully!"
1519
  msgstr "Votre e-mail au support a bien été envoyé !"
1520
 
1521
+ #: views/support.php:45
1522
  msgid "Email Logs to Support"
1523
  msgstr "Envoyer au support vos fichiers de logs"
1524
 
1525
+ #: views/support.php:46
1526
  msgid "This form should be used to send log files to support only."
1527
  msgstr ""
1528
  "Ce formulaire doit être utilisé uniquement pour envoyer des fichiers de log "
1529
  "au support."
1530
 
1531
+ #: views/support.php:47
1532
  msgid ""
1533
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1534
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1538
  "sur le <a href=\"https://www.wpbackitup.com/support\" target=\"_blank"
1539
  "\">portail de support </a> avant d'utiliser ce formulaire."
1540
 
1541
+ #: views/support.php:48
1542
  msgid ""
1543
  "The ticket id you receive from your support request should be entered in the "
1544
  "ticket id field below."
1546
  "L'ID du ticket que vous avez reçu du support doit être saisi dans le champ "
1547
  "ID du ticket ci-dessous."
1548
 
1549
+ #: views/support.php:49
1550
  msgid "your email address"
1551
  msgstr "votre adresse e-mail"
1552
 
1553
+ #: views/support.php:59
1554
  msgid "support ticket id"
1555
  msgstr "ID du ticket de support"
1556
 
1557
+ #: views/support.php:69
1558
  msgid "problem description or additional information"
1559
  msgstr "description du problème ou informations supplémentaires"
1560
 
1561
+ #: views/support.php:80
1562
  msgid "Send"
1563
  msgstr "Envoyer"
1564
 
1565
+ #: views/support.php:83
1566
  msgid "Please register your version of WP BackItUp for access to support."
1567
  msgstr ""
1568
  "Veuillez enregistrer votre version de WP BackItUp afin de bénéficier du "
1569
  "support."
1570
 
1571
+ #: views/support.php:87
1572
  msgid "Premium customers receive priority support."
1573
  msgstr "Les clients Premium bénéficient d'un support prioritaire."
1574
 
1575
+ #: wp-backitup.php:98 wp-backitup.php:99
1576
  #, php-format
1577
  msgid "Every %s hours"
1578
  msgstr "Toutes les %s heures"
1579
+
1580
+ #: wp-backitup.php:137
1581
+ msgid "Cleanup"
1582
+ msgstr "Nettoyage"
1583
+
1584
+ #~ msgid "Preparing for backup...Done"
1585
+ #~ msgstr "Préparation pour la sauvegarde... Terminé."
1586
+
1587
+ #~ msgid "Backing up database...Done"
1588
+ #~ msgstr "Sauvegarde de la base de données... Terminé."
1589
+
1590
+ #~ msgid "Creating backup information file...Done"
1591
+ #~ msgstr "Création du fichier d'information de la sauvegarde... Terminé."
1592
+
1593
+ #~ msgid "Backing up themes...Done"
1594
+ #~ msgstr "Sauvegarde des thèmes... Terminé."
1595
+
1596
+ #~ msgid "Backing up plugins...Done"
1597
+ #~ msgstr "Sauvegarde des extensions... Terminé."
1598
+
1599
+ #~ msgid "Backing up uploads...Done"
1600
+ #~ msgstr "Sauvegarde des pièces jointes... Terminé."
1601
+
1602
+ #~ msgid "Backing up miscellaneous files...Done"
1603
+ #~ msgstr "Sauvegarde des fichiers divers... Terminé."
1604
+
1605
+ #~ msgid "Finalizing backup...Done"
1606
+ #~ msgstr "Finalisation de la sauvegarde... Terminé."
1607
+
1608
+ #~ msgid "Validating backup...Done"
1609
+ #~ msgstr "Validation de la sauvegarde... Terminé."
1610
+
1611
+ #~ msgid "Cleaning up...Done"
1612
+ #~ msgstr "Nettoyage... Terminé."
1613
+
1614
+ #~ msgid "Steps Completed"
1615
+ #~ msgstr "Étapes terminées"
languages/wp-backitup-it_IT.mo ADDED
Binary file
languages/wp-backitup-it_IT.po ADDED
@@ -0,0 +1,1610 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Mara Lucia Ferretti <maralucia.ferretti@poste.it>, 2015
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP BackItUp\n"
7
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
8
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
9
+ "Last-Translator: Mara Lucia Ferretti <maralucia.ferretti@poste.it>\n"
10
+ "Language-Team: Italian (Italy) (http://www.transifex.com/wp-translations/wp-"
11
+ "backitup/language/it_IT/)\n"
12
+ "Language: it_IT\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.8.4\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: _;__;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
23
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
24
+ #: wp-backitup.php:109
25
+ msgid "Backup"
26
+ msgstr "Backup"
27
+
28
+ #: lib/includes/class-wpbackitup-admin.php:182
29
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
30
+ #: wp-backitup.php:123
31
+ msgid "Restore"
32
+ msgstr "Ripristino"
33
+
34
+ #: lib/includes/class-wpbackitup-admin.php:186
35
+ msgid "Support"
36
+ msgstr "Assistenza"
37
+
38
+ #: lib/includes/class-wpbackitup-admin.php:189
39
+ msgid "Settings"
40
+ msgstr "Impostazioni"
41
+
42
+ #: lib/includes/class-wpbackitup-admin.php:210
43
+ msgid ""
44
+ "The backup you have selected exceeds what your host allows you to upload."
45
+ msgstr ""
46
+ "Il backup che hai selezionato eccede quanto il tuo host ti permette di "
47
+ "caricare"
48
+
49
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
50
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
51
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
52
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
53
+ msgid "Warning"
54
+ msgstr "Avviso"
55
+
56
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
57
+ #: views/backup.php:220
58
+ msgid "Error"
59
+ msgstr "Errore"
60
+
61
+ #: lib/includes/class-wpbackitup-admin.php:213
62
+ msgid "Response"
63
+ msgstr "Risposta"
64
+
65
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
66
+ #: views/backup.php:271 views/restore.php:230
67
+ msgid "Status"
68
+ msgstr "Stato"
69
+
70
+ #: lib/includes/class-wpbackitup-admin.php:215
71
+ msgid "Download"
72
+ msgstr "Scarica"
73
+
74
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
75
+ #: views/restore.php:132
76
+ msgid "Delete"
77
+ msgstr "Cancella"
78
+
79
+ #: lib/includes/class-wpbackitup-admin.php:218
80
+ msgid "(JS997) Unexpected error"
81
+ msgstr "(JS997) Errore inaspettato"
82
+
83
+ #: lib/includes/class-wpbackitup-admin.php:219
84
+ msgid "(JS998) Unexpected error"
85
+ msgstr "(JS998) Errore inaspettato"
86
+
87
+ #: lib/includes/class-wpbackitup-admin.php:220
88
+ msgid "(JS999) An unexpected error has occurred"
89
+ msgstr "(JS999) Si è verificato un errore inaspettato"
90
+
91
+ #: lib/includes/class-wpbackitup-admin.php:221
92
+ msgid "Scheduled has been saved."
93
+ msgstr "La pianificazione è stata salvata"
94
+
95
+ #: lib/includes/class-wpbackitup-admin.php:222
96
+ msgid "Scheduled was not saved."
97
+ msgstr "La pianificazione non è stata salvata"
98
+
99
+ #: lib/includes/class-wpbackitup-admin.php:223
100
+ msgid "Are you sure you want to restore your site?"
101
+ msgstr "Sei sicuro di voler ripristinare il tuo sito?"
102
+
103
+ #: lib/includes/class-wpbackitup-admin.php:224
104
+ msgid "Are you sure ?"
105
+ msgstr "Sei sicuro?"
106
+
107
+ #: lib/includes/class-wpbackitup-admin.php:225
108
+ msgid "This file cannot be delete!"
109
+ msgstr "Questo file non può essere cancellato!"
110
+
111
+ #: lib/includes/class-wpbackitup-admin.php:226
112
+ msgid "View Log"
113
+ msgstr "Visualizza il registro"
114
+
115
+ #: lib/includes/class-wpbackitup-admin.php:227
116
+ msgid "New Backup!"
117
+ msgstr "Nuovo backup!"
118
+
119
+ #: lib/includes/class-wpbackitup-admin.php:228
120
+ msgid "Uploaded Backup"
121
+ msgstr "Backup caricato"
122
+
123
+ #: lib/includes/class-wpbackitup-admin.php:515
124
+ msgid "Backup Queued"
125
+ msgstr "Backup accodato"
126
+
127
+ #: lib/includes/class-wpbackitup-admin.php:518
128
+ msgid "Backup could not be queued"
129
+ msgstr "Il backup non può essere accodato"
130
+
131
+ #: lib/includes/class-wpbackitup-admin.php:522
132
+ msgid "Job already in queue, please try again later"
133
+ msgstr "Attività già in coda, ti preghiamo di riprovare più tardi"
134
+
135
+ #: lib/includes/class-wpbackitup-admin.php:554
136
+ msgid "No backup file selected."
137
+ msgstr "Nessun file di backup selezionato"
138
+
139
+ #: lib/includes/class-wpbackitup-admin.php:561
140
+ msgid "No user id found."
141
+ msgstr "Nessun utente trovato"
142
+
143
+ #: lib/includes/class-wpbackitup-admin.php:582
144
+ msgid "Restore Queued"
145
+ msgstr "Ripristino accodato"
146
+
147
+ #: lib/includes/class-wpbackitup-admin.php:584
148
+ msgid "Restore could not be queued"
149
+ msgstr "Non si è potuto accodare il ripristino"
150
+
151
+ #: lib/includes/class-wpbackitup-admin.php:588
152
+ msgid "Restore already in queue"
153
+ msgstr "Ripristino già in coda"
154
+
155
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
156
+ msgid "Backup Cancelled"
157
+ msgstr "Backup cancellato"
158
+
159
+ #: lib/includes/class-wpbackitup-admin.php:754
160
+ msgid "No response log found."
161
+ msgstr "Registro di risposta non trovato"
162
+
163
+ #: lib/includes/class-wpbackitup-admin.php:856
164
+ #: lib/includes/class-wpbackitup-admin.php:864
165
+ #: lib/includes/class-wpbackitup-admin.php:893
166
+ #: lib/includes/class-wpbackitup-admin.php:900
167
+ #: lib/includes/class-wpbackitup-admin.php:907
168
+ #: lib/includes/class-wpbackitup-admin.php:914
169
+ msgid "Please enter a number"
170
+ msgstr "Per favore inserire un numero"
171
+
172
+ #: lib/includes/class-wpbackitup-admin.php:885
173
+ #: lib/includes/class-wpbackitup-admin.php:993
174
+ msgid "Please enter a valid email"
175
+ msgstr "Per favore inserire un indirizzo di posta elettronica valido"
176
+
177
+ #: lib/includes/class-wpbackitup-admin.php:1000
178
+ msgid "Please enter your support ticket id"
179
+ msgstr "Per favore inserire il codice della richiesta di assistenza"
180
+
181
+ #: lib/includes/class-wpbackitup-admin.php:1005
182
+ msgid "Please only enter numbers in this field"
183
+ msgstr "Per favore inserire solo numeri in questo campo"
184
+
185
+ #: lib/includes/class-wpbackitup-admin.php:1699
186
+ msgid "License is invalid."
187
+ msgstr "Licenza non valida"
188
+
189
+ #: lib/includes/class-wpbackitup-admin.php:1704
190
+ msgid "License has expired."
191
+ msgstr "Licenza scaduta"
192
+
193
+ #: lib/includes/class-wpbackitup-admin.php:1707
194
+ #, php-format
195
+ msgid ""
196
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
197
+ "now for another year of <strong>product updates</strong> and access to our "
198
+ "<strong>world class support</strong> team."
199
+ msgstr ""
200
+ "La tua licenza è scaduta. Ti preghiamo di <a href=\"%s\" target=\"blank\"> "
201
+ "rinnovarla</a> ora per ottenere un altro anno di <strong>aggiornamenti del "
202
+ "prodotto</strong> e usufruire del nostro team <strong>di assistenza di "
203
+ "livello mondiale</strong> "
204
+
205
+ #: lib/includes/class-wpbackitup-admin.php:1721
206
+ msgid "License Expired: Scheduled backups are no longer active."
207
+ msgstr "La licenza è scaduta: i backup programmati non sono più attivi"
208
+
209
+ #: lib/includes/class-wpbackitup-admin.php:1729
210
+ msgid "Activation limit has been reached."
211
+ msgstr "Limite di attivazioni raggiunto"
212
+
213
+ #: lib/includes/class-wpbackitup-admin.php:1735
214
+ msgid "Your Activation limit has been reached"
215
+ msgstr "Hai raggiunto il tuo limite di attivazioni"
216
+
217
+ #: lib/includes/handler_upload.php:29
218
+ msgid "Invalid Nonce"
219
+ msgstr "Momentaneamente non valido"
220
+
221
+ #: lib/includes/handler_upload.php:39 lib/includes/handler_upload.php:151
222
+ msgid "Upload directory is not writable, or does not exist."
223
+ msgstr "La cartella di upload non è scrivibile o non esiste"
224
+
225
+ #: lib/includes/handler_upload.php:80
226
+ #, php-format
227
+ msgid "Error: %s"
228
+ msgstr "Errore: %s"
229
+
230
+ #: lib/includes/handler_upload.php:80
231
+ msgid "File could not be uploaded"
232
+ msgstr "Il file non può esere caricato"
233
+
234
+ #: lib/includes/handler_upload.php:141
235
+ msgid "Upload does not appear to be a WP BackItUp backup archive file."
236
+ msgstr ""
237
+ "Quanto caricato non sembra essere un file di archivio backup di WP BackItUp"
238
+
239
+ #: lib/includes/handler_upload.php:161
240
+ msgid "Could not import file into WP BackItUp backup set."
241
+ msgstr "Non è possibile importare il file nel set di backup di WP BackItUp"
242
+
243
+ #: lib/includes/job_backup.php:907
244
+ #, php-format
245
+ msgid ""
246
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
247
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
248
+ "function for <strong>30</strong> days after your license has expired.Please "
249
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
250
+ "of product updates and access to our world class support team.<br/><br/>"
251
+ msgstr ""
252
+
253
+ #: lib/includes/job_backup.php:912
254
+ #, php-format
255
+ msgid "%s - Backup completed successfully."
256
+ msgstr "%s - Backup completato con successo"
257
+
258
+ #: lib/includes/job_backup.php:913
259
+ msgid "Your backup completed successfully."
260
+ msgstr "Il tuo backup è stato completato con successo"
261
+
262
+ #: lib/includes/job_backup.php:916
263
+ #, php-format
264
+ msgid "%s - Backup did not complete successfully."
265
+ msgstr "%s - Il backup non è stato completato con successo"
266
+
267
+ #: lib/includes/job_backup.php:917
268
+ msgid "Your backup did not complete successfully."
269
+ msgstr "Il tuo backup non è stato completato con successo"
270
+
271
+ #: lib/includes/job_backup.php:924
272
+ #, php-format
273
+ msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
274
+ msgstr "Sito WordPress: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
275
+
276
+ #: lib/includes/job_backup.php:925
277
+ msgid "Backup date:"
278
+ msgstr "Data del backup:"
279
+
280
+ #: lib/includes/job_backup.php:926
281
+ msgid "Number of backups completed with WP BackItUp:"
282
+ msgstr "Numero di backup completati con WP BackItUp:"
283
+
284
+ #: lib/includes/job_backup.php:928
285
+ msgid "Completion Code:"
286
+ msgstr "Codice di completamento:"
287
+
288
+ #: lib/includes/job_backup.php:929
289
+ msgid "WP BackItUp Version:"
290
+ msgstr "Versione di WP BackItUp:"
291
+
292
+ #: lib/includes/job_backup.php:941
293
+ #, php-format
294
+ msgid "Checkout %s for info about WP BackItUp and our other products."
295
+ msgstr ""
296
+ "Visita %s per avere informazioni su WP BackItUp e sui nostri altri prodotti"
297
+
298
+ #: lib/includes/job_backup.php:1117
299
+ msgid ""
300
+ "(101) Unable to create a new directory for backup. Please check your CHMOD "
301
+ "settings of your wp-backitup backup directory"
302
+ msgstr ""
303
+ "(101) Impossibile creare una nuova directory per il backup. Ti preghiamo di "
304
+ "controllare le impostazioni CHMOD della tua directory di backup di wp-"
305
+ "backitup"
306
+
307
+ #: lib/includes/job_backup.php:1118
308
+ msgid ""
309
+ "(102) Cannot create backup directory. Please check the CHMOD settings of "
310
+ "your wp-backitup plugin directory"
311
+ msgstr ""
312
+ "(102) Non si può creare la directory di backup. Ti preghiamo di controllare "
313
+ "le impostazioni CHMOD della tua directory di plugin di wp-backitup"
314
+
315
+ #: lib/includes/job_backup.php:1119
316
+ msgid "(103) Unable to backup your files. Please try again"
317
+ msgstr ""
318
+ "(103) Impossibile eseguire il backup del tuoi file. Ti preghiamo di riprovare"
319
+
320
+ #: lib/includes/job_backup.php:1120
321
+ msgid "(104) Unable to export your database. Please try again"
322
+ msgstr ""
323
+ "( 104) Impossibile esportare il tuo database. Ti preghiamo di riprovare"
324
+
325
+ #: lib/includes/job_backup.php:1121
326
+ msgid "(105) Unable to export site information file. Please try again"
327
+ msgstr ""
328
+ "(105) Impossibile esportare il file di informazioni del sito. Ti preghiamo "
329
+ "di riprovare"
330
+
331
+ #: lib/includes/job_backup.php:1122
332
+ msgid "(106) Unable to cleanup your backup directory"
333
+ msgstr "(106) Impossibile eseguire la pulizia della tua directory di backup"
334
+
335
+ #: lib/includes/job_backup.php:1123
336
+ msgid "(107) Unable to compress(zip) your backup. Please try again"
337
+ msgstr ""
338
+ "(107) Impossibile eseguire la compressione (zip) del tuo backup. Ti "
339
+ "preghiamo di riprovare"
340
+
341
+ #: lib/includes/job_backup.php:1124
342
+ msgid "(108) Unable to backup your site data files. Please try again"
343
+ msgstr ""
344
+ "(108) Impossibile eseguire il backup dei file di dati del tuo sito. Ti "
345
+ "preghiamo di riprovare"
346
+
347
+ #: lib/includes/job_backup.php:1125
348
+ msgid "(109) Unable to finalize backup. Please try again"
349
+ msgstr "(109) Impossibile concludere il backup. Ti preghiamo di riprovare"
350
+
351
+ #: lib/includes/job_backup.php:1126
352
+ msgid ""
353
+ "(114) Your database was accessible but an export could not be created. "
354
+ "Please contact support by clicking the get support link on the right. Please "
355
+ "let us know who your host is when you submit the request"
356
+ msgstr ""
357
+ "(114) Il tuo database era accessibile, ma non è stato possibile creare "
358
+ "un'esportazione. Ti preghiamo di contattare l'assistenza cliccando il link "
359
+ "sulla destra per la richiesta di aiuto. Ti preghiamo di farci sapere qual è "
360
+ "il tuo host quando sottoporrai la richiesta"
361
+
362
+ #: lib/includes/job_backup.php:1127
363
+ msgid "(120) Unable to backup your themes. Please try again"
364
+ msgstr ""
365
+ "(120) Impossibile eseguire il backup dei tuoi temi. Ti preghiamo di riprovare"
366
+
367
+ #: lib/includes/job_backup.php:1128
368
+ msgid "(121) Unable to backup your plugins. Please try again"
369
+ msgstr ""
370
+ "(121) Impossibile eseguire il backup dei tuoi plugin. Ti preghiamo di "
371
+ "riprovare"
372
+
373
+ #: lib/includes/job_backup.php:1129
374
+ msgid "(122) Unable to backup your uploads. Please try again"
375
+ msgstr ""
376
+ "(122) Impossibile eseguire il backup dei tuoi caricamenti. Ti preghiamo di "
377
+ "riprovare"
378
+
379
+ #: lib/includes/job_backup.php:1130
380
+ msgid "(123) Unable to backup your miscellaneous files. Please try again"
381
+ msgstr ""
382
+ "(123) Impossibile eseguire il backup dei tuoi vari file. Ti preghiamo di "
383
+ "riprovare"
384
+
385
+ #: lib/includes/job_backup.php:1131
386
+ msgid ""
387
+ "(125) Unable to compress your backup because there is no zip utility "
388
+ "available. Please contact support"
389
+ msgstr ""
390
+ "(125) Impossibile comprimere il tuo backup perchè non è disponibile alcuna "
391
+ "utility di compressione. Ti preghiamo di contattare l'assistenza"
392
+
393
+ #: lib/includes/job_backup.php:1132
394
+ msgid "(126) Unable to validate your backup. Please try again"
395
+ msgstr "(126) Impossibile convalidare il tuo backup. Ti preghiamo di riprovare"
396
+
397
+ #: lib/includes/job_backup.php:1133
398
+ msgid "(127) Unable to create inventory of files to backup. Please try again"
399
+ msgstr ""
400
+ "(127) Impossibile creare un inventario di file per il backup. Ti preghiamo "
401
+ "di riprovare"
402
+
403
+ #: lib/includes/job_backup.php:1134
404
+ msgid "(128) Unable to create job control record. Please try again"
405
+ msgstr ""
406
+ "(128) Impossibile creare un registro di controllo del lavoro. Ti preghiamo "
407
+ "di riprovare"
408
+
409
+ #: lib/includes/job_backup.php:1136
410
+ msgid ""
411
+ "(2101) Unable to create a new directory for backup. Please check your CHMOD "
412
+ "settings of your wp-backitup backup directory"
413
+ msgstr ""
414
+ "(2101) Impossibile creare una nuova directory per il backup. Ti preghiamo di "
415
+ "controllare le impostazioni CHMOD della tua directory di backup di wp-"
416
+ "backitup"
417
+
418
+ #: lib/includes/job_backup.php:1137
419
+ msgid ""
420
+ "(2102) Cannot create backup directory. Please check the CHMOD settings of "
421
+ "your wp-backitup plugin directory"
422
+ msgstr ""
423
+ "(2102) Non si può creare la directory di backup. Ti preghiamo di controllare "
424
+ "le impostazioni CHMOD della tua directory di plugin di wp-backitup"
425
+
426
+ #: lib/includes/job_backup.php:1138
427
+ msgid "(2103) Unable to backup your files. Please try again"
428
+ msgstr ""
429
+ "(2103) Impossibile eseguire il backup dei tuoi file. Ti preghiamo di "
430
+ "riprovare"
431
+
432
+ #: lib/includes/job_backup.php:1139
433
+ msgid "(2104) Unable to export your database. Please try again"
434
+ msgstr ""
435
+ "(2104) Impossibile esportare il tuo database. Ti preghiamo di riprovare"
436
+
437
+ #: lib/includes/job_backup.php:1140
438
+ msgid "(2105) Unable to export site information file. Please try again"
439
+ msgstr ""
440
+ "(2105) Impossibile esportare il file di informazioni del sito. Ti preghiamo "
441
+ "di riprovare"
442
+
443
+ #: lib/includes/job_backup.php:1141
444
+ msgid "(2106) Unable to cleanup your backup directory"
445
+ msgstr "(2106) Impossibile eseguire la pulizia della tua directory di backup"
446
+
447
+ #: lib/includes/job_backup.php:1142
448
+ msgid "(2107) Unable to compress(zip) your backup. Please try again"
449
+ msgstr ""
450
+ "(2107) Impossibile eseguire la compressione (zip) del tuo backup. Ti "
451
+ "preghiamo di riprovare"
452
+
453
+ #: lib/includes/job_backup.php:1143
454
+ msgid "(2108) Unable to backup your site data files. Please try again"
455
+ msgstr ""
456
+ "(2108) Impossibile eseguire il backup dei file di dati del tuo sito. Ti "
457
+ "preghiamo di riprovare"
458
+
459
+ #: lib/includes/job_backup.php:1144
460
+ msgid "(2109) Unable to finalize backup. Please try again"
461
+ msgstr "(2109) Impossibile concludere il backup. Ti preghiamo di riprovare"
462
+
463
+ #: lib/includes/job_backup.php:1145
464
+ msgid ""
465
+ "(2114) Your database was accessible but an export could not be created. "
466
+ "Please contact support by clicking the get support link on the right. Please "
467
+ "let us know who your host is when you submit the request"
468
+ msgstr ""
469
+ "(2114) Il tuo database era accessibile, ma non è stato possibile creare "
470
+ "un'esportazione. Ti preghiamo di contattare l'assistenza cliccando il link "
471
+ "sulla destra per la richiesta di aiuto. Ti preghiamo di farci sapere qual è "
472
+ "il tuo host quando sottoporrai la richiesta"
473
+
474
+ #: lib/includes/job_backup.php:1146
475
+ msgid "(2120) Unable to backup your themes. Please try again"
476
+ msgstr ""
477
+ "(2120) Impossibile eseguire il backup dei tuoi temi. Ti preghiamo di "
478
+ "riprovare"
479
+
480
+ #: lib/includes/job_backup.php:1147
481
+ msgid "(2121) Unable to backup your plugins. Please try again"
482
+ msgstr ""
483
+ "(2121) Impossibile eseguire il backup dei tuoi plugin. Ti preghiamo di "
484
+ "riprovare"
485
+
486
+ #: lib/includes/job_backup.php:1148
487
+ msgid "(2122) Unable to backup your uploads. Please try again"
488
+ msgstr ""
489
+ "(2122) Impossibile eseguire il backup dei tuoi caricamenti. Ti preghiamo di "
490
+ "riprovare"
491
+
492
+ #: lib/includes/job_backup.php:1149
493
+ msgid "(2123) Unable to backup your miscellaneous files. Please try again"
494
+ msgstr ""
495
+ "(2123) Impossibile eseguire il backup dei tuoi vari file. Ti preghiamo di "
496
+ "riprovare"
497
+
498
+ #: lib/includes/job_backup.php:1150
499
+ msgid ""
500
+ "(2125) Unable to compress your backup because there is no zip utility "
501
+ "available. Please contact support"
502
+ msgstr ""
503
+ "(2125) Impossibile comprimere il tuo backup perchè non è disponibile alcuna "
504
+ "utility di compressione. Ti preghiamo di contattare l'assistenza"
505
+
506
+ #: lib/includes/job_backup.php:1151
507
+ msgid "(2126) Unable to validate your backup. Please try again"
508
+ msgstr ""
509
+ "(2126) Impossibile convalidare il tuo backup. Ti preghiamo di riprovare"
510
+
511
+ #: lib/includes/job_backup.php:1152
512
+ msgid "(2127) Unable to create inventory of files to backup. Please try again"
513
+ msgstr ""
514
+ "(2127) Impossibile creare un inventario di file per il backup. Ti preghiamo "
515
+ "di riprovare"
516
+
517
+ #: lib/includes/job_backup.php:1153
518
+ msgid "(2128) Unable to create job control record. Please try again"
519
+ msgstr ""
520
+ "(2128) Impossibile creare un registro di controllo del lavoro. Ti preghiamo "
521
+ "di riprovare"
522
+
523
+ #: lib/includes/job_backup.php:1156
524
+ msgid "(999) Unexpected error"
525
+ msgstr "(999) Errore inaspettato"
526
+
527
+ #. TRANSLATORS: %s = plugin name.
528
+ #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
529
+ #. Similar to how WordPress uses the word dashboard at the in the left navigation.
530
+ #: views/backup.php:17
531
+ #, php-format
532
+ msgid "%s Dashboard"
533
+ msgstr "%s Dashboard"
534
+
535
+ #: views/backup.php:83
536
+ msgid "Dismiss"
537
+ msgstr "Rimuovi"
538
+
539
+ #: views/backup.php:95
540
+ #, php-format
541
+ msgid "Backup folder does not exist. Please contact %s for assistance."
542
+ msgstr ""
543
+ "La cartella di backup non esiste. Si prega di contattare %s per l'assistenza"
544
+
545
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
546
+ msgid "support"
547
+ msgstr "Assistenza"
548
+
549
+ #: views/backup.php:98 views/backup.php:104
550
+ msgid "Close"
551
+ msgstr "Chiudi"
552
+
553
+ #: views/backup.php:119
554
+ msgid ""
555
+ "Click the backup button to create a zipped backup file of this site's "
556
+ "database, plugins, themes and settings."
557
+ msgstr ""
558
+ "Clicca il pulsante \"backup\" per creare un file compresso di backup del "
559
+ "database di questo sito, plugin, temi e impostazioni"
560
+
561
+ #: views/backup.php:120
562
+ msgid ""
563
+ "Once your backup file has been created it will appear in the available "
564
+ "backups section below. This file may remain on your hosting providers server "
565
+ "but we recommend that you download and save it somewhere safe."
566
+ msgstr ""
567
+ "Una volta creato, il tuo file di backup apparirà nella sezione dei backup "
568
+ "disponibili qui sotto. Questo file può restare sul server del tuo hosting "
569
+ "provider, ma ti consigliamo di scaricarlo e di salvarlo in una destinazione "
570
+ "sicura"
571
+
572
+ #: views/backup.php:121
573
+ msgid ""
574
+ "WP BackItUp premium customers can use these backup files to perform an "
575
+ "automated restore of their site."
576
+ msgstr ""
577
+ "I clienti premium di WP BackItUp possono usare questi file di backup per "
578
+ "eseguire un ripristino automatico del proprio sito"
579
+
580
+ #: views/backup.php:125
581
+ msgid "Cancel"
582
+ msgstr "Annulla"
583
+
584
+ #: views/backup.php:132
585
+ #, php-format
586
+ msgid ""
587
+ "WP BackItUp lite customers may use these backup files to manually restore "
588
+ "their site. Please visit %s for manual restore instructions."
589
+ msgstr ""
590
+ "I clienti base di WP BackItUp possono usare questi file di backup per "
591
+ "ripristinare manualmente il proprio sito. Vi preghiamo di visitare %s per le "
592
+ "istruzioni sul ripristino manuale"
593
+
594
+ #: views/backup.php:139
595
+ msgid "Backup Schedule"
596
+ msgstr "Pianificazione del backup"
597
+
598
+ #: views/backup.php:141
599
+ msgid "Select the days of the week you would like your backup to run."
600
+ msgstr ""
601
+ "Seleziona i giorni della settimana in cui vuoi che sia eseguito il tuo backup"
602
+
603
+ #: views/backup.php:143
604
+ msgid ""
605
+ "Backup your site once per week or every day, it's up to you. If you have "
606
+ "email notifications turned on we'll even send you an email when it's done. "
607
+ "Once your backup file has been created it will appear in the available "
608
+ "backups section below. This file may remain on your hosting providers server "
609
+ "but we recommend that you download and save it somewhere safe."
610
+ msgstr ""
611
+ "Esegui il backup del tuo sito una volta alla settimana o ogni giorno, come "
612
+ "preferisci. Se hai attivato le notifiche per posta elettronica, ti invieremo "
613
+ "un'email quando sarà completato. Una volta creato, il tuo file di backup "
614
+ "apparirà nella sezione dei backup disponibili qui sotto. Questo file può "
615
+ "restare sul server del tuo hosting provider, ma ti consigliamo di scaricarlo "
616
+ "e di salvarlo in una destinazione sicura"
617
+
618
+ #: views/backup.php:145
619
+ msgid "Please make sure to schedule your backup for at least once per week."
620
+ msgstr ""
621
+ "Ti preghiamo di assicurarti di pianificare il tuo backup almeno una volta "
622
+ "alla settimana"
623
+
624
+ #: views/backup.php:149
625
+ msgid "Monday"
626
+ msgstr "Lunedì"
627
+
628
+ #: views/backup.php:150
629
+ msgid "Tuesday"
630
+ msgstr "Martedì"
631
+
632
+ #: views/backup.php:151
633
+ msgid "Wednesday"
634
+ msgstr "Mercoledì"
635
+
636
+ #: views/backup.php:152
637
+ msgid "Thursday"
638
+ msgstr "Giovedì"
639
+
640
+ #: views/backup.php:153
641
+ msgid "Friday"
642
+ msgstr "Venerdì"
643
+
644
+ #: views/backup.php:154
645
+ msgid "Saturday"
646
+ msgstr "Sabato"
647
+
648
+ #: views/backup.php:155
649
+ msgid "Sunday"
650
+ msgstr "Domenica"
651
+
652
+ #: views/backup.php:158
653
+ msgid "Save Schedule"
654
+ msgstr "Salva la pianificazione"
655
+
656
+ #: views/backup.php:163
657
+ #, php-format
658
+ msgid ""
659
+ "Scheduled backups are only available to WP BackItUp premium customers. "
660
+ "Please visit %s to get WP BackItUp risk free for 30 days."
661
+ msgstr ""
662
+ "I backup pianificati sono disponibili solo per i clienti premium di WP "
663
+ "BackItUp. Vi preghiamo di visitare %s per avere WP BackItUp per 30 giorni "
664
+ "senza rischi"
665
+
666
+ #: views/backup.php:170 views/restore.php:95
667
+ msgid "Available Backups"
668
+ msgstr "Backup disponibili"
669
+
670
+ #: views/backup.php:190 views/restore.php:100
671
+ msgid "Date"
672
+ msgstr "Data"
673
+
674
+ #: views/backup.php:191
675
+ msgid "Duration"
676
+ msgstr "Durata"
677
+
678
+ #: views/backup.php:214
679
+ msgid "Success"
680
+ msgstr "Successo"
681
+
682
+ #: views/backup.php:217
683
+ msgid "Active"
684
+ msgstr "Attivo"
685
+
686
+ #: views/backup.php:257 views/restore.php:150
687
+ msgid "No backup archives found."
688
+ msgstr "Nessun archivio di backup trovato"
689
+
690
+ #: views/backup.php:266
691
+ #, php-format
692
+ msgid ""
693
+ "The automated restore feature is only available to WP BackItUp premium "
694
+ "customers. Please visit %s to get WP BackItUp risk free for 30 days."
695
+ msgstr ""
696
+ "La funzione di ripristino automatico è disponibile solo per i clienti "
697
+ "premium di WP BackItUp. Vi preghiamo di visitare %s per avere WP BackItUp "
698
+ "per 30 giorni senza rischi"
699
+
700
+ #: views/backup.php:275 views/restore.php:234
701
+ msgid "Nothing to report"
702
+ msgstr "Niente da segnalare"
703
+
704
+ #: views/backup.php:280
705
+ msgid "Preparing for backup"
706
+ msgstr "Preparazione per il backup in corso"
707
+
708
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
709
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
710
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
711
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
712
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
713
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
714
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
715
+ msgid "Done"
716
+ msgstr "Fatto"
717
+
718
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
719
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
720
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
721
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
722
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
723
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
724
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
725
+ msgid "Failed"
726
+ msgstr "Fallito"
727
+
728
+ #: views/backup.php:281
729
+ msgid "Creating inventory of files to backup"
730
+ msgstr "Creazione dell'inventario dei file per il backup in corso"
731
+
732
+ #: views/backup.php:282
733
+ msgid "Backing up database"
734
+ msgstr "Backup del database in corso"
735
+
736
+ #: views/backup.php:283
737
+ msgid "Creating backup information file"
738
+ msgstr "Creazione del file di informazione del backup in corso"
739
+
740
+ #: views/backup.php:284
741
+ msgid "Backing up themes"
742
+ msgstr "Backup dei temi in corso"
743
+
744
+ #: views/backup.php:285
745
+ msgid "Backing up plugins"
746
+ msgstr "Backup dei plugin in corso"
747
+
748
+ #: views/backup.php:286
749
+ msgid "Backing up uploads"
750
+ msgstr "Backup dei caricamenti in corso"
751
+
752
+ #: views/backup.php:287
753
+ msgid "Backing up everything else"
754
+ msgstr "Backup di tutto il resto in corso"
755
+
756
+ #: views/backup.php:288
757
+ msgid "Validating backup"
758
+ msgstr "Convalida del backup in corso"
759
+
760
+ #: views/backup.php:289
761
+ msgid "Finalizing backup"
762
+ msgstr "Conclusione del backup in corso"
763
+
764
+ #: views/backup.php:299
765
+ msgid "Backup completed successfully"
766
+ msgstr "Backup completato con successo"
767
+
768
+ #: views/backup.php:320
769
+ msgid "Backups"
770
+ msgstr "I backup"
771
+
772
+ #: views/backup.php:320
773
+ msgid "Version "
774
+ msgstr "Versione"
775
+
776
+ #: views/backup.php:322
777
+ msgid "Welcome to WP BackItUp!"
778
+ msgstr "Benvenuto su WP BackItUp!"
779
+
780
+ #: views/backup.php:322
781
+ msgid "The simplest way to backup your WordPress site."
782
+ msgstr "Il modo più semplice per eseguire il backup del tuo sito WordPress"
783
+
784
+ #: views/backup.php:323
785
+ msgid ""
786
+ "Getting started is easy, just click the backup button on the left side of "
787
+ "this page."
788
+ msgstr ""
789
+ "Iniziare è facile, basta cliccare il pulsante \"backup\" sul lato sinistro "
790
+ "di questa pagina"
791
+
792
+ #: views/backup.php:327
793
+ #, php-format
794
+ msgid ""
795
+ "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
796
+ "medium;color: green\">%s</span> successful backups."
797
+ msgstr ""
798
+ "Complimenti! Hai eseguito con successo i <span style=\"font-weight:bold;font-"
799
+ "size:medium;color: green\">%s</span> backup "
800
+
801
+ #: views/backup.php:328
802
+ msgid "Tips"
803
+ msgstr "Suggerimenti"
804
+
805
+ #: views/backup.php:329
806
+ msgid "Backup your site at least once per week"
807
+ msgstr "Esegui il backup del tuo sito almeno una volta alla settimana"
808
+
809
+ #: views/backup.php:330
810
+ msgid "Download all your backups and store them somewhere safe"
811
+ msgstr "Scarica tutti i backup e conservali in una destinazione sicura"
812
+
813
+ #: views/backup.php:331
814
+ msgid "Verify your backup files are good by taking a look at what's inside"
815
+ msgstr ""
816
+ "Verifica che i tuoi file di backup siano corretti dando un'occhiata a ciò "
817
+ "che c'è dentro"
818
+
819
+ #: views/backup.php:336
820
+ #, php-format
821
+ msgid "Why not %s and schedule your backups!"
822
+ msgstr "Perchè non %s aggiorni e pianifichi i tuoi backup?"
823
+
824
+ #: views/backup.php:336
825
+ msgid "upgrade"
826
+ msgstr "Aggiornamento"
827
+
828
+ #: views/backup.php:345
829
+ msgid "Register WP BackItUp"
830
+ msgstr "Registra WP BackItUp"
831
+
832
+ #: views/backup.php:348
833
+ msgid ""
834
+ "Enter your name and email address below to receive <b>special offers</b> and "
835
+ "access to our world class <b>support</b> team. <br />\n"
836
+ " <br />Enter your license key below to activate it on this "
837
+ "site."
838
+ msgstr ""
839
+ "Inserisci qui sotto il tuo nome e il tuo indirizzo di posta elettronica per "
840
+ "ricevere <b>offerte speciali</b> e usufruire del nostro team di "
841
+ "<b>assistenza</b> di livello mondiale <br/>.\n"
842
+ "<br/> Inserisci qui sotto il tuo codice di licenza per attivarlo su questo "
843
+ "sito"
844
+
845
+ #: views/backup.php:350
846
+ msgid "name"
847
+ msgstr "Nome"
848
+
849
+ #: views/backup.php:351
850
+ msgid "email address"
851
+ msgstr "Indirizzo di posta elettronica"
852
+
853
+ #: views/backup.php:352
854
+ msgid "license key"
855
+ msgstr "Codice di licenza"
856
+
857
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
858
+ #, php-format
859
+ msgid "%s"
860
+ msgstr "%s"
861
+
862
+ #: views/backup.php:353
863
+ msgid "Free plugin customers do not need to enter license key."
864
+ msgstr "I clienti di plugin gratuiti non devono inserire il codice di licenza"
865
+
866
+ #: views/backup.php:354
867
+ msgid "Register"
868
+ msgstr "Registrati"
869
+
870
+ #: views/backup.php:363
871
+ msgid "License Info"
872
+ msgstr "Informazioni sulla licenza"
873
+
874
+ #: views/backup.php:385
875
+ msgid "Name"
876
+ msgstr "Nome"
877
+
878
+ #: views/backup.php:386
879
+ msgid "Email"
880
+ msgstr "Email"
881
+
882
+ #: views/backup.php:387
883
+ msgid "License Type"
884
+ msgstr "Tipo di licenza"
885
+
886
+ #: views/backup.php:388
887
+ msgid "Expires"
888
+ msgstr "Scade"
889
+
890
+ #: views/backup.php:391
891
+ msgid "Enter license key to activate on this site."
892
+ msgstr "Inserisci il codice di licenza per l'attivazione su questo sito"
893
+
894
+ #: views/backup.php:398
895
+ msgid "License Active"
896
+ msgstr "Licenza attiva"
897
+
898
+ #: views/backup.php:406
899
+ msgid "License expired"
900
+ msgstr "Licenza scaduta"
901
+
902
+ #: views/backup.php:410
903
+ msgid "Update"
904
+ msgstr "Aggiorna"
905
+
906
+ #: views/backup.php:414
907
+ msgid "Activate"
908
+ msgstr "Attiva"
909
+
910
+ #: views/backup.php:418
911
+ #, php-format
912
+ msgid "Purchase a %s license using the purchase link above."
913
+ msgstr "Acquista una licenza %s usando il link \"acquista\" qui sopra"
914
+
915
+ #: views/backup.php:418
916
+ msgid "no-risk"
917
+ msgstr "Senza rischi"
918
+
919
+ #: views/backup.php:424
920
+ #, php-format
921
+ msgid ""
922
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
923
+ "<strong>product updates</strong> and access to our <strong>world class "
924
+ "support</strong> team."
925
+ msgstr ""
926
+ "Ti preghiamo di <a href=\"%s\" target=\"blank\">rinnovare</a> ora per "
927
+ "ottenere un altro anno di <strong>aggiornamenti del prodotto</strong> e "
928
+ "usufruire del nostro team di <strong>assistenza di livello mondiale</strong>"
929
+
930
+ #: views/backup.php:435
931
+ msgid "Useful Links"
932
+ msgstr "Link utili"
933
+
934
+ #: views/backup.php:438 views/backup.php:442
935
+ msgid "Your account"
936
+ msgstr "Il tuo account"
937
+
938
+ #: views/backup.php:445
939
+ msgid "Documentation"
940
+ msgstr "Documentazione"
941
+
942
+ #: views/backup.php:448
943
+ msgid "Get support"
944
+ msgstr "Ottieni assistenza"
945
+
946
+ #: views/backup.php:451
947
+ msgid "Feature request"
948
+ msgstr "Specifica richiesta"
949
+
950
+ #: views/backup.php:453
951
+ msgid "Language Translations"
952
+ msgstr "Traduzioni linguistiche"
953
+
954
+ #: views/backup.php:455
955
+ msgid "Contact"
956
+ msgstr "Contatta"
957
+
958
+ #: views/backup.php:478 views/backup.php:502
959
+ msgid "WP BackItUp Backup Set"
960
+ msgstr "Set di backup di WP BackItUp"
961
+
962
+ #: views/backup.php:480
963
+ msgid ""
964
+ "Below are the archive files included in this backup set. Click the link to "
965
+ "download."
966
+ msgstr ""
967
+ "Qui sotto ci sono i file di archivio inclusi in questo set di backup. Clicca "
968
+ "sul link per scaricarli"
969
+
970
+ #: views/backup.php:503
971
+ msgid "Please refresh this page to download your new backup files."
972
+ msgstr ""
973
+ "Ti preghiamo di aggiornare questa pagina per scaricare i file del tuo nuovo "
974
+ "backup"
975
+
976
+ #: views/restore.php:13
977
+ #, php-format
978
+ msgid "%s Restore"
979
+ msgstr "%s Ripristina"
980
+
981
+ #: views/restore.php:60
982
+ msgid "Zip Files"
983
+ msgstr "File compressi"
984
+
985
+ #: views/restore.php:75
986
+ #, php-format
987
+ msgid "Error: Backup folder does not exist. Please contact %s for assistance."
988
+ msgstr ""
989
+ "Errore: la cartella di backup non esiste. Si prega di contattare %s per "
990
+ "l'assistenza"
991
+
992
+ #: views/restore.php:82
993
+ #, php-format
994
+ msgid "Error: Restore folder does not exist. Please contact %s for assistance."
995
+ msgstr ""
996
+ "Errore: la cartella di ripristino non esiste. Si prega di contattare %s per "
997
+ "l'assistenza"
998
+
999
+ #: views/restore.php:166
1000
+ #, php-format
1001
+ msgid ""
1002
+ "<p>* The automated restore feature is only available to licensed customers. "
1003
+ "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP "
1004
+ "BackItUp risk free for 30 days.</p>"
1005
+ msgstr ""
1006
+ "<p>* La funzione di ripristino automatico è disponibile solo per i clienti "
1007
+ "autorizzati. Vi preghiamo di visitare <a href=\"%s\" target=\"_blank\">%s</"
1008
+ "a> per avere la licenza di WP BackItUp per 30 giorni senza rischi.</p>"
1009
+
1010
+ #: views/restore.php:178
1011
+ msgid "Upload"
1012
+ msgstr "Carica"
1013
+
1014
+ #: views/restore.php:181
1015
+ msgid ""
1016
+ "Upload WP BackItUp archive(zip) files to add to your list of available "
1017
+ "backups."
1018
+ msgstr ""
1019
+ "Carica i file di archivio (zip) di WP BackItUp per aggiungerli alla tua "
1020
+ "lista di backup disponibili"
1021
+
1022
+ #: views/restore.php:198
1023
+ msgid "WP BackItUp - Upload backup files"
1024
+ msgstr "WP BackItUp - Carica i file di backup"
1025
+
1026
+ #: views/restore.php:199
1027
+ msgid "Backup files may be uploaded into WP BackItUp with this form."
1028
+ msgstr ""
1029
+ "I file di backup possono essere caricati su WP BackItUp tramite questa form"
1030
+
1031
+ #: views/restore.php:199
1032
+ msgid ""
1033
+ "They may also be uploaded manually into the WP BackItUp directory (wp-"
1034
+ "content/wpbackitup_backups) using FTP. When done uploading all backup files "
1035
+ "refresh this page."
1036
+ msgstr ""
1037
+ "Possono anche essere caricati manualmente sulla directory di WP BackItUp (wp-"
1038
+ "content/wpbackitup_backups) usando FTP. Dopo aver caricato tutti i file di "
1039
+ "backup aggiorna questa pagina."
1040
+
1041
+ #: views/restore.php:203
1042
+ #, php-format
1043
+ msgid "This feature requires %s version %s or later"
1044
+ msgstr "Questa funzione richiede la %s versione %s o la successiva"
1045
+
1046
+ #: views/restore.php:209
1047
+ msgid "Drop backup files here"
1048
+ msgstr "Rilascia qui i file di backup"
1049
+
1050
+ #: views/restore.php:215
1051
+ msgid ""
1052
+ "* Reload this page when done uploading to see new backups appear in the "
1053
+ "Available Backups section above. "
1054
+ msgstr ""
1055
+ "* Una volta completato il caricamento, ricarica questa pagina per vedere "
1056
+ "apparire i nuovi backup nella sezione \"Backup Disponibili\" qui sopra"
1057
+
1058
+ #: views/restore.php:244
1059
+ msgid "Preparing for restore"
1060
+ msgstr "Perparazione per il ripristino in corso"
1061
+
1062
+ #: views/restore.php:245
1063
+ msgid "Unzipping backup set"
1064
+ msgstr "Scompattamento del set di backup in corso"
1065
+
1066
+ #: views/restore.php:246
1067
+ msgid "Validating backup file"
1068
+ msgstr "Convalida del file di backup in corso"
1069
+
1070
+ #: views/restore.php:247
1071
+ msgid "Deactivating plugins"
1072
+ msgstr "Disattivazione dei plugin in corso"
1073
+
1074
+ #: views/restore.php:248
1075
+ msgid "Creating database restore point"
1076
+ msgstr "Creazione di un punto di ripristino del database in corso"
1077
+
1078
+ #: views/restore.php:249
1079
+ msgid "Staging content files"
1080
+ msgstr "Organizzazione dei file di contenuto in corso"
1081
+
1082
+ #: views/restore.php:250
1083
+ msgid "Restoring content files"
1084
+ msgstr "Ripristino dei file di contenuto in corso"
1085
+
1086
+ #: views/restore.php:251
1087
+ msgid "Restoring database"
1088
+ msgstr "Ripristino del database in corso"
1089
+
1090
+ #: views/restore.php:252
1091
+ msgid "Updating current user info"
1092
+ msgstr "Aggiornamento delle informazioni dell'utente corrente in corso"
1093
+
1094
+ #: views/restore.php:253
1095
+ msgid "Updating site URL"
1096
+ msgstr "Aggiornamento della URL del sito in corso"
1097
+
1098
+ #: views/restore.php:255
1099
+ msgid "Updating permalinks"
1100
+ msgstr "Aggiornamento dei permalink in corso"
1101
+
1102
+ #: views/restore.php:261
1103
+ msgid "Error 201: No file selected"
1104
+ msgstr "Errore 201: nessun file selezionato"
1105
+
1106
+ #: views/restore.php:262
1107
+ msgid "Error 202: Your file could not be uploaded"
1108
+ msgstr "Errore 202: il tuo file non può essere caricato"
1109
+
1110
+ #: views/restore.php:263
1111
+ msgid "Error 203: Your backup could not be unzipped"
1112
+ msgstr "Errore 203: il tuo backup non può essere scompattato"
1113
+
1114
+ #: views/restore.php:264
1115
+ msgid ""
1116
+ "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1117
+ "valid backup"
1118
+ msgstr ""
1119
+ "Errore 204: il tuo backup sembra non essere valido. Ti preghiamo di "
1120
+ "accertarti di avere selezionato un backup valido"
1121
+
1122
+ #: views/restore.php:265
1123
+ msgid "Error 205: Cannot create restore point"
1124
+ msgstr "Errore 205: Non è possibile creare un punto di ripristino"
1125
+
1126
+ #: views/restore.php:266
1127
+ msgid "Error 206: Unable to connect to your database"
1128
+ msgstr "Errore 206: Impossibile connettersi al tuo database"
1129
+
1130
+ #: views/restore.php:267
1131
+ msgid ""
1132
+ "Error 207: Unable to get current site URL from database. Please try again"
1133
+ msgstr ""
1134
+ "Errore 207: impossibile ottenere dal database la URL del sito attuale. Ti "
1135
+ "preghiamo di riprovare"
1136
+
1137
+ #: views/restore.php:268
1138
+ msgid ""
1139
+ "Error 208: Unable to get current home URL from database. Please try again"
1140
+ msgstr ""
1141
+ "Errore 208: impossibile ottenere dal database la URL della home attuale. Ti "
1142
+ "preghiamo di riprovare"
1143
+
1144
+ #: views/restore.php:269
1145
+ msgid ""
1146
+ "Error 209: Unable to get current user ID from database. Please try again"
1147
+ msgstr ""
1148
+ "Errore 209: impossibile ottenere dal database lo user ID attuale. Ti "
1149
+ "preghiamo di riprovare"
1150
+
1151
+ #: views/restore.php:270
1152
+ msgid ""
1153
+ "Error 210: Unable to get current user password from database. Please try "
1154
+ "again"
1155
+ msgstr ""
1156
+ "Errore 210: impossibile ottenere dal database la password dello user "
1157
+ "attuale. Ti preghiamo di riprovare"
1158
+
1159
+ #: views/restore.php:271
1160
+ msgid ""
1161
+ "Error 211: Unable to get current user email from database. Please try again"
1162
+ msgstr ""
1163
+ "Errore 211: impossibile ottenere dal database l'email dello user attuale. Ti "
1164
+ "preghiamo di riprovare"
1165
+
1166
+ #: views/restore.php:272
1167
+ msgid ""
1168
+ "Error 212: Unable to import your database. This may require importing the "
1169
+ "file manually"
1170
+ msgstr ""
1171
+ "Errore 212: impossibile importare il tuo database. Potrebbe essere "
1172
+ "necessario importare il file manualmente"
1173
+
1174
+ #: views/restore.php:273
1175
+ msgid ""
1176
+ "Warning 213: Unable to update your site URL value. Please check your "
1177
+ "WordPress general settings to make sure your Site and WordPress URLs are "
1178
+ "correct"
1179
+ msgstr ""
1180
+ "Avviso 213: impossibile aggiornare il valore della URL del tuo sito. Ti "
1181
+ "preghiamo di verificare le impostazioni generali del tuo WordPress per "
1182
+ "assicurarti che le tue URL del sito e di WordPress siano corrette"
1183
+
1184
+ #: views/restore.php:274
1185
+ msgid ""
1186
+ "Warning 214: Unable to update your home URL value. Please check your "
1187
+ "WordPress general settings to make sure your Site and WordPress URLs are "
1188
+ "correct"
1189
+ msgstr ""
1190
+ "Avviso 214: impossibile aggiornare il valore della URL della tua home. Ti "
1191
+ "preghiamo di verificare le impostazioni generali del tuo WordPress per "
1192
+ "assicurarti che le tue URL del sito e di WordPress siano corrette"
1193
+
1194
+ #: views/restore.php:275
1195
+ msgid ""
1196
+ "Warning 215: Unable to update your user information. This may require you to "
1197
+ "login with the admin username and password that was used when the backup was "
1198
+ "created"
1199
+ msgstr ""
1200
+ "Avviso 215: impossibile aggiornare le informazioni del tuo user. Questo può "
1201
+ "richiedere che tu acceda con lo username e la password di amministratore "
1202
+ "usate quando il backup è stato creato"
1203
+
1204
+ #: views/restore.php:276
1205
+ msgid "Error 216: Database not found in backup"
1206
+ msgstr "Errore 216: Database non trovato nel backup"
1207
+
1208
+ #: views/restore.php:277
1209
+ msgid "Warning 217: Unable to remove existing wp-content directory"
1210
+ msgstr "Avviso 217: impossibile eliminare la directory wp-content esistente"
1211
+
1212
+ #: views/restore.php:278
1213
+ msgid ""
1214
+ "Error 218: Unable to create new wp-content directory. Please check your "
1215
+ "CHMOD settings in /wp-content/"
1216
+ msgstr ""
1217
+ "Errore 218: impossibile creare una nuova directory wp-content. Ti preghiamo "
1218
+ "di verificare le tue impostazioni CHMOD in /wp-content/"
1219
+
1220
+ #: views/restore.php:279
1221
+ msgid "Error 219: Unable to import wp-content. Please try again"
1222
+ msgstr ""
1223
+ "Errore 219: impossibile importare il wp-content. Ti preghiamo di riprovare"
1224
+
1225
+ #: views/restore.php:280
1226
+ msgid "Warning 220: Unable to cleanup import directory. No action is required"
1227
+ msgstr ""
1228
+ "Avviso 220: impossibile ripulire la directory delle importazioni. Non è "
1229
+ "richiesta alcuna azione"
1230
+
1231
+ #: views/restore.php:281
1232
+ #, php-format
1233
+ msgid ""
1234
+ "Error 221: Table prefix value in wp-config.php is different from backup. "
1235
+ "This MUST be changed in your wp-config.php file before you will be able to "
1236
+ "restore your site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" "
1237
+ "> FAQs</a> for more info."
1238
+ msgstr ""
1239
+ "Errore 221: il valore del prefisso della tabella in wp-config.php è diverso "
1240
+ "dal backup. Questo DEVE essere cambiato nel tuo file wp-config.php affinchè "
1241
+ "tu possa ripristinare il tuo sito. Per maggiori dettagli vedi le <a href ="
1242
+ "\"%s\" target=\"_blank\" > FAQ</a> su www.wpbackitup.com"
1243
+
1244
+ #: views/restore.php:282
1245
+ msgid "Error 222: Unable to create restore folder"
1246
+ msgstr "Errore 222: impossibile creare una cartella di ripristino"
1247
+
1248
+ #: views/restore.php:283
1249
+ msgid ""
1250
+ "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1251
+ "restore the database to its previous state but were unsuccessful. Please "
1252
+ "contact WP BackItUp customer support and do not attempt to perform any "
1253
+ "further restores"
1254
+ msgstr ""
1255
+ "Errore 223: si è verificato un errore durante il ripristino. WP BackItUp ha "
1256
+ "tentato di riportare il database al suo stato precedente, ma senza successo. "
1257
+ "Ti preghiamo di contattare l'assistenza clienti di WP BackItUp e di non "
1258
+ "tentare di eseguire ulteriori ripristini"
1259
+
1260
+ #: views/restore.php:284
1261
+ msgid ""
1262
+ "Error 224: An error occurred during the restore, however, we have "
1263
+ "successfully restored your database to the previous state"
1264
+ msgstr ""
1265
+ "Errore 224: si è verificato un errore durante il ripristino, comunque "
1266
+ "abbiamo riportato con successo il tuo database allo stato precedente"
1267
+
1268
+ #: views/restore.php:285
1269
+ msgid ""
1270
+ "Error 225: Restore option is only available to licensed WP BackItUp users"
1271
+ msgstr ""
1272
+ "Errore 225: l'opzione ripristino è disponibile soltanto per gli user "
1273
+ "autorizzati di WP BackItUp"
1274
+
1275
+ #: views/restore.php:286
1276
+ msgid ""
1277
+ "Error 226: Restore cannot proceed because your backup was created using a "
1278
+ "different version of WordPress"
1279
+ msgstr ""
1280
+ "Errore 226: il ripristino non può procedere perchè il tuo backup è stato "
1281
+ "creato usando una diversa versione di WordPress "
1282
+
1283
+ #: views/restore.php:287
1284
+ msgid ""
1285
+ "Error 227: Restore cannot proceed because your backup was created using a "
1286
+ "different version of WP BackItUp. Please contact WP BackItUp support to "
1287
+ "help convert this backup to the current version"
1288
+ msgstr ""
1289
+ "Errore 227: il ripristino non può procedere perchè il tuo backup è stato "
1290
+ "creato usando una diversa versione di WP BackItUp. Ti preghiamo di "
1291
+ "contattare l'assistenza di WP BackItUp per avere aiuto nel convertire questo "
1292
+ "backup alla versione attuale"
1293
+
1294
+ #: views/restore.php:288
1295
+ msgid ""
1296
+ "Error 230: WP BackItUp ran into unexpected errors during the database "
1297
+ "restore. However, we were able to successfully revert the database back to "
1298
+ "its original state . This error may require importing the database manually"
1299
+ msgstr ""
1300
+ "Errore 230: WP BackItUp ha incontrato degli errori inattesi durante il "
1301
+ "ripristino del database. Comunque siamo riusciti con successo a riportare il "
1302
+ "database al suo stato originale. Questo errore potrebbe richiedere di dover "
1303
+ "importare il database manualmente"
1304
+
1305
+ #: views/restore.php:289
1306
+ msgid ""
1307
+ "Error 235: WP BackItUp is not able to proceed because there is no zip "
1308
+ "utility available. Please contact support"
1309
+ msgstr ""
1310
+ "Errore 235: WP BackItUp non è in grado di proseguire perchè non c'è "
1311
+ "un'utilità di decompressione disponibile. Ti preghiamo di contattare "
1312
+ "l'assistenza"
1313
+
1314
+ #: views/restore.php:290
1315
+ msgid ""
1316
+ "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1317
+ "running. Please wait for the backup to complete and then try again"
1318
+ msgstr ""
1319
+ "Errore 250: WP BackItUp non è in grado di iniziare il ripristino perchè un "
1320
+ "backup è in corso. Ti preghiamo di attendere che il backup sia completatato "
1321
+ "e quindi di riprovare"
1322
+
1323
+ #: views/restore.php:292
1324
+ msgid ""
1325
+ "Error 251: WP BackItUp is unable to begin the restore because the backup "
1326
+ "manifest is empty"
1327
+ msgstr ""
1328
+ "Errore 251: WP BackItUp non è in grado di iniziare il ripristino perchè il "
1329
+ "manifesto di backup è vuoto"
1330
+
1331
+ #: views/restore.php:293
1332
+ msgid ""
1333
+ "Error 252: At least one zip file is missing from your backup set. Please "
1334
+ "make sure to upload all zip files that were part of this backup"
1335
+ msgstr ""
1336
+ "Errore 252: dal tuo set di backup risulta mancante almeno un file compresso. "
1337
+ "Ti preghiamo di assicurarti di caricare tutti i file compressi che facevano "
1338
+ "parte di questo backup"
1339
+
1340
+ #: views/restore.php:294
1341
+ msgid ""
1342
+ "Error 253: Backup set contains a zip file that is not in the manifest. "
1343
+ "Please make sure to upload only zip files that were part of this backup"
1344
+ msgstr ""
1345
+ "Errore 253: il set di backup contiene un file compresso che non è nel "
1346
+ "manifesto. Ti preghiamo di assicurarti di caricare solo i file compressi che "
1347
+ "facevano parte di questo backup"
1348
+
1349
+ #: views/restore.php:296
1350
+ msgid ""
1351
+ "Warning 300: Unable to restore all WordPress content. Please review your "
1352
+ "restore logs to see what WP BackItUp was unable to restore"
1353
+ msgstr ""
1354
+ "Avviso 300: impossibile ripristinare tutto il contenuto di WordPress. Ti "
1355
+ "preghiamo di riesaminare i tuoi registri di ripristino per vedere cosa WP "
1356
+ "BackItUp non è stato in grado di ripristinare"
1357
+
1358
+ #: views/restore.php:297
1359
+ msgid ""
1360
+ "Warning 305: Unable to restore all plugins. Please review your restore logs "
1361
+ "to see what WP BackItUp was unable to restore"
1362
+ msgstr ""
1363
+ "Avviso 305: impossibile ripristinare tutti i plugin. Ti preghiamo di "
1364
+ "riesaminare i tuoi registri di ripristino per vedere cosa WP BackItUp non è "
1365
+ "stato in grado di ripristinare"
1366
+
1367
+ #: views/restore.php:299
1368
+ msgid "Error 2001: Unable to prepare site for restore"
1369
+ msgstr "Errore 2001: impossibile predisporre il sito per il ripristino"
1370
+
1371
+ #: views/restore.php:300
1372
+ msgid "Error 2002: Unable to unzip backup"
1373
+ msgstr "Errore 2002: impossibile scompattare il backup"
1374
+
1375
+ #: views/restore.php:301
1376
+ msgid "Error 2003: Unable to validate backup"
1377
+ msgstr "Errore 2003: impossibile convalidare il backup"
1378
+
1379
+ #: views/restore.php:302
1380
+ msgid "Error 2004: Unable to create restore point"
1381
+ msgstr "Errore 2004: impossibile creare un punto di ripristino"
1382
+
1383
+ #: views/restore.php:303
1384
+ msgid "Error 2005: Unable to stage wp-content"
1385
+ msgstr "Errore 2005: impossibile organizzare il wp-content"
1386
+
1387
+ #: views/restore.php:304
1388
+ msgid "Error 2006: Unable to restore content files"
1389
+ msgstr "Errore 2006: impossibile ripristinare i file di contenuto"
1390
+
1391
+ #: views/restore.php:305
1392
+ msgid "Error 2007: Unable to restore database"
1393
+ msgstr "Errore 2007: impossibile ripristinare il database"
1394
+
1395
+ #: views/restore.php:306
1396
+ msgid "Error 2999: Unexpected error encountered"
1397
+ msgstr "Errore 2999: si è verificato un errore inaspettato"
1398
+
1399
+ #: views/restore.php:313
1400
+ msgid ""
1401
+ "Restore completed successfully. If you are prompted to login please do so "
1402
+ "with your current username and password"
1403
+ msgstr ""
1404
+ "Ripristino completato con successo. Se ti viene richiesto di fare il login, "
1405
+ "ti preghiamo di farlo con i tuoi attuali username e password "
1406
+
1407
+ #: views/settings.php:13
1408
+ #, php-format
1409
+ msgid "%s Settings"
1410
+ msgstr "%s Impostazioni"
1411
+
1412
+ #: views/settings.php:40
1413
+ msgid "Email Notifications"
1414
+ msgstr "Notifiche via email"
1415
+
1416
+ #: views/settings.php:41
1417
+ msgid ""
1418
+ "Please enter your email address if you would like to receive backup email "
1419
+ "notifications."
1420
+ msgstr ""
1421
+ "Ti preghiamo di inserire il tuo indirizzo di posta elettronica se desideri "
1422
+ "ricevere le notifiche di backup via email"
1423
+
1424
+ #: views/settings.php:42
1425
+ msgid ""
1426
+ "Backup email notifications will be sent for every backup and will contain "
1427
+ "status information related to the backup."
1428
+ msgstr ""
1429
+ "Le notifiche di backup via email saranno inviate per ogni backup e "
1430
+ "conterranno le informazioni di stato relative al backup"
1431
+
1432
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1433
+ #: views/settings.php:111
1434
+ msgid "Save"
1435
+ msgstr "Salva"
1436
+
1437
+ #: views/settings.php:60
1438
+ msgid "Backup Retention"
1439
+ msgstr "Mantenimento del backup"
1440
+
1441
+ #: views/settings.php:61
1442
+ msgid ""
1443
+ "Enter the number of backup archives that you would like to remain on the "
1444
+ "server."
1445
+ msgstr ""
1446
+ "Inserisci il numero degli archivi di backup che desideri rimangano sul server"
1447
+
1448
+ #: views/settings.php:62
1449
+ msgid ""
1450
+ "Many hosts limit the amount of space that you can take up on their servers. "
1451
+ "This option tells WP BackItUp the maximum number of backup archives that "
1452
+ "should remain on your hosts server. Don't worry, we will always remove the "
1453
+ "oldest backup archives first."
1454
+ msgstr ""
1455
+ "Molti host limitano la quantità di spazio che è possibile occupare sui "
1456
+ "propri server. Questa opzione indica a WP BackItUp il numero massimo di "
1457
+ "archivi di backup che dovrebbero restare sull'host server. Non "
1458
+ "preoccuparti, cancelleremo sempre prima gli archivi di backup più vecchi"
1459
+
1460
+ #: views/settings.php:81
1461
+ msgid "Turn on logging?"
1462
+ msgstr "Vuoi attivare la registrazione?"
1463
+
1464
+ #: views/settings.php:82
1465
+ msgid "Yes"
1466
+ msgstr "Si"
1467
+
1468
+ #: views/settings.php:83
1469
+ msgid "No"
1470
+ msgstr "No"
1471
+
1472
+ #: views/settings.php:84
1473
+ msgid ""
1474
+ "This option should only be turned on when troubleshooting issues with "
1475
+ "WPBackItUp support."
1476
+ msgstr ""
1477
+ "Questa opzione deve essere attivata solo in caso di risoluzione dei problemi "
1478
+ "con l'assistenza di WPBackItUp "
1479
+
1480
+ #: views/settings.php:89
1481
+ msgid "Advanced Settings"
1482
+ msgstr "Impostazioni avanzate"
1483
+
1484
+ #: views/settings.php:90
1485
+ msgid ""
1486
+ "These options should only be changed when working with WP BackItUp support."
1487
+ msgstr ""
1488
+ "Queste opzioni devono essere cambiate soltanto quando si lavora con "
1489
+ "l'assistenza di WPBackItUp"
1490
+
1491
+ #: views/settings.php:93
1492
+ msgid "Plugins Batch Size"
1493
+ msgstr "Dimensione del batch dei plugin"
1494
+
1495
+ #: views/settings.php:98
1496
+ msgid "Themes Batch Size"
1497
+ msgstr "Dimensione del batch dei temi"
1498
+
1499
+ #: views/settings.php:103
1500
+ msgid "Uploads Batch Size"
1501
+ msgstr "Dimensione del batch dei caricamenti"
1502
+
1503
+ #: views/settings.php:108
1504
+ msgid "Others Batch Size"
1505
+ msgstr "Dimensione del batch di altri"
1506
+
1507
+ #: views/support.php:13
1508
+ #, php-format
1509
+ msgid "%s Support"
1510
+ msgstr "%s Assistenza"
1511
+
1512
+ #: views/support.php:32
1513
+ msgid "Support email sent successfully!"
1514
+ msgstr "Email per la richiesta di assistenza inviata con successo!"
1515
+
1516
+ #: views/support.php:45
1517
+ msgid "Email Logs to Support"
1518
+ msgstr "Invia i registri all'assistenza per email"
1519
+
1520
+ #: views/support.php:46
1521
+ msgid "This form should be used to send log files to support only."
1522
+ msgstr ""
1523
+ "Questa form deve essere usata per inviare i file di registro soltanto "
1524
+ "all'assistenza"
1525
+
1526
+ #: views/support.php:47
1527
+ msgid ""
1528
+ "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1529
+ "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1530
+ "using this form."
1531
+ msgstr ""
1532
+ "Ti preghiamo di assicurarti di aprire una richiesta di assistenza tramite <a "
1533
+ "href=\"https://www.wpbackitup.com/support\" target=\"_blank\">il portale di "
1534
+ "assistenza</a> di WP BackItUp prima di usare questa form"
1535
+
1536
+ #: views/support.php:48
1537
+ msgid ""
1538
+ "The ticket id you receive from your support request should be entered in the "
1539
+ "ticket id field below."
1540
+ msgstr ""
1541
+ "L'id ricevuto in seguito alla tua richiesta di assistenza deve essere "
1542
+ "inserito nel campo \"id richiesta\" qui sotto"
1543
+
1544
+ #: views/support.php:49
1545
+ msgid "your email address"
1546
+ msgstr "il tuo indirizzo di posta elettronica"
1547
+
1548
+ #: views/support.php:59
1549
+ msgid "support ticket id"
1550
+ msgstr "id della richiesta di assistenza"
1551
+
1552
+ #: views/support.php:69
1553
+ msgid "problem description or additional information"
1554
+ msgstr "descrizione del problema o informazioni aggiuntive"
1555
+
1556
+ #: views/support.php:80
1557
+ msgid "Send"
1558
+ msgstr "Invia"
1559
+
1560
+ #: views/support.php:83
1561
+ msgid "Please register your version of WP BackItUp for access to support."
1562
+ msgstr ""
1563
+ "Ti preghiamo di registrare la tua versione di WP BackItUp per avere accesso "
1564
+ "all'assistenza"
1565
+
1566
+ #: views/support.php:87
1567
+ msgid "Premium customers receive priority support."
1568
+ msgstr "I clienti premium ricevono un'assistenza prioritaria"
1569
+
1570
+ #: wp-backitup.php:98 wp-backitup.php:99
1571
+ #, php-format
1572
+ msgid "Every %s hours"
1573
+ msgstr "Ogni %s ore"
1574
+
1575
+ #: wp-backitup.php:137
1576
+ msgid "Cleanup"
1577
+ msgstr "Pulizia"
1578
+
1579
+ #~ msgid "Preparing for backup...Done"
1580
+ #~ msgstr "Preparazione per il backup in corso... Fatto"
1581
+
1582
+ #~ msgid "Backing up database...Done"
1583
+ #~ msgstr "Backup del database in corso... Fatto"
1584
+
1585
+ #~ msgid "Creating backup information file...Done"
1586
+ #~ msgstr "Creazione del file di informazione del backup in corso... Fatto"
1587
+
1588
+ #~ msgid "Backing up themes...Done"
1589
+ #~ msgstr "Backup dei temi in corso... Fatto"
1590
+
1591
+ #~ msgid "Backing up plugins...Done"
1592
+ #~ msgstr "Backup dei plugin in corso... Fatto"
1593
+
1594
+ #~ msgid "Backing up uploads...Done"
1595
+ #~ msgstr "Backup dei caricamenti in corso... Fatto"
1596
+
1597
+ #~ msgid "Backing up miscellaneous files...Done"
1598
+ #~ msgstr "Backup in corso di vari file... Fatto"
1599
+
1600
+ #~ msgid "Finalizing backup...Done"
1601
+ #~ msgstr "Conclusione del backup... Fatto"
1602
+
1603
+ #~ msgid "Validating backup...Done"
1604
+ #~ msgstr "Convalida del backup in corso... Fatto"
1605
+
1606
+ #~ msgid "Cleaning up...Done"
1607
+ #~ msgstr "Pulizia in corso...Fatto"
1608
+
1609
+ #~ msgid "Steps Completed"
1610
+ #~ msgstr "Passaggi completati"
languages/wp-backitup-ru_RU.mo CHANGED
Binary file
languages/wp-backitup-ru_RU.po CHANGED
@@ -4,8 +4,8 @@
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP BackItUp\n"
7
- "POT-Creation-Date: 2015-08-14 10:30-0400\n"
8
- "PO-Revision-Date: 2015-08-14 10:30-0400\n"
9
  "Last-Translator: Chris Simmons <chris.simmons01@gmail.com>\n"
10
  "Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/wp-"
11
  "backitup/language/ru_RU/)\n"
@@ -21,178 +21,197 @@ msgstr ""
21
  "X-Poedit-KeywordsList: _;__;_e\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
25
- #: views/backup.php:179
 
26
  msgid "Backup"
27
  msgstr "Резервная копия"
28
 
29
- #: lib/includes/class-wpbackitup-admin.php:175
30
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
31
  msgid "Restore"
32
  msgstr "Восстановить"
33
 
34
- #: lib/includes/class-wpbackitup-admin.php:179
35
  msgid "Support"
36
  msgstr "Поддержка"
37
 
38
- #: lib/includes/class-wpbackitup-admin.php:182
39
  msgid "Settings"
40
  msgstr "Настройки"
41
 
42
- #: lib/includes/class-wpbackitup-admin.php:203
43
  msgid ""
44
  "The backup you have selected exceeds what your host allows you to upload."
45
  msgstr ""
46
  "Резервная копия, которую вы указали, больше чем позволяет ваш сервер для "
47
  "загрузки."
48
 
49
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
50
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
51
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
52
- #: views/backup.php:312 views/backup.php:313
53
  msgid "Warning"
54
  msgstr "Внимание"
55
 
56
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
57
  msgid "Error"
58
  msgstr "Ошибка"
59
 
60
- #: lib/includes/class-wpbackitup-admin.php:206
61
  msgid "Response"
62
  msgstr "Ответ"
63
 
64
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
65
- #: views/restore.php:205
66
  msgid "Status"
67
  msgstr "Статус"
68
 
69
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
70
  msgid "Download"
71
  msgstr "Скачать"
72
 
73
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
74
- #: views/restore.php:111
75
  msgid "Delete"
76
  msgstr "Удалить"
77
 
78
- #: lib/includes/class-wpbackitup-admin.php:211
79
  msgid "(JS997) Unexpected error"
80
  msgstr "(JS997) Непредвиденная ошибка"
81
 
82
- #: lib/includes/class-wpbackitup-admin.php:212
83
  msgid "(JS998) Unexpected error"
84
  msgstr "(JS998) Непредвиденная ошибка"
85
 
86
- #: lib/includes/class-wpbackitup-admin.php:213
87
  msgid "(JS999) An unexpected error has occurred"
88
  msgstr "(JS999) Произошла непредвиденная ошибка"
89
 
90
- #: lib/includes/class-wpbackitup-admin.php:214
91
  msgid "Scheduled has been saved."
92
  msgstr ""
93
 
94
- #: lib/includes/class-wpbackitup-admin.php:215
95
  msgid "Scheduled was not saved."
96
  msgstr ""
97
 
98
- #: lib/includes/class-wpbackitup-admin.php:216
99
  msgid "Are you sure you want to restore your site?"
100
  msgstr ""
101
 
102
- #: lib/includes/class-wpbackitup-admin.php:217
103
  msgid "Are you sure ?"
104
  msgstr "Вы уверены?"
105
 
106
- #: lib/includes/class-wpbackitup-admin.php:218
107
  msgid "This file cannot be delete!"
108
  msgstr ""
109
 
110
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
111
  msgid "View Log"
112
  msgstr ""
113
 
114
- #: lib/includes/class-wpbackitup-admin.php:220
115
  msgid "New Backup!"
116
  msgstr ""
117
 
118
- #: lib/includes/class-wpbackitup-admin.php:221
119
  msgid "Uploaded Backup"
120
  msgstr ""
121
 
122
- #: lib/includes/class-wpbackitup-admin.php:480
123
  msgid "Backup Queued"
124
  msgstr ""
125
 
126
- #: lib/includes/class-wpbackitup-admin.php:482
127
  msgid "Backup could not be queued"
128
  msgstr ""
129
 
130
- #: lib/includes/class-wpbackitup-admin.php:485
131
- msgid "Backup already in queue"
132
- msgstr ""
133
-
134
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
135
- msgid "Backup Cancelled"
136
  msgstr ""
137
 
138
- #: lib/includes/class-wpbackitup-admin.php:535
139
  msgid "No backup file selected."
140
  msgstr ""
141
 
142
- #: lib/includes/class-wpbackitup-admin.php:542
143
  msgid "No user id found."
144
  msgstr ""
145
 
146
- #: lib/includes/class-wpbackitup-admin.php:553
147
  msgid "Restore Queued"
148
  msgstr ""
149
 
150
- #: lib/includes/class-wpbackitup-admin.php:555
151
  msgid "Restore could not be queued"
152
  msgstr ""
153
 
154
- #: lib/includes/class-wpbackitup-admin.php:558
155
  msgid "Restore already in queue"
156
  msgstr ""
157
 
158
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
159
  msgid "No response log found."
160
  msgstr ""
161
 
162
- #: lib/includes/class-wpbackitup-admin.php:836
163
- #: lib/includes/class-wpbackitup-admin.php:844
164
- #: lib/includes/class-wpbackitup-admin.php:873
165
- #: lib/includes/class-wpbackitup-admin.php:880
166
- #: lib/includes/class-wpbackitup-admin.php:887
167
- #: lib/includes/class-wpbackitup-admin.php:894
168
  msgid "Please enter a number"
169
  msgstr ""
170
 
171
- #: lib/includes/class-wpbackitup-admin.php:865
172
- #: lib/includes/class-wpbackitup-admin.php:972
173
  msgid "Please enter a valid email"
174
  msgstr ""
175
 
176
- #: lib/includes/class-wpbackitup-admin.php:979
177
  msgid "Please enter your support ticket id"
178
  msgstr ""
179
 
180
- #: lib/includes/class-wpbackitup-admin.php:984
181
  msgid "Please only enter numbers in this field"
182
  msgstr ""
183
 
184
- #: lib/includes/class-wpbackitup-admin.php:1645
185
  msgid "License is invalid."
186
  msgstr ""
187
 
188
- #: lib/includes/class-wpbackitup-admin.php:1650
189
  msgid "License has expired."
190
  msgstr ""
191
 
192
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Activation limit has been reached."
194
  msgstr ""
195
 
 
 
 
 
196
  #: lib/includes/handler_upload.php:29
197
  msgid "Invalid Nonce"
198
  msgstr ""
@@ -218,320 +237,290 @@ msgstr ""
218
  msgid "Could not import file into WP BackItUp backup set."
219
  msgstr ""
220
 
221
- #: lib/includes/job_backup.php:851
222
- msgid "Preparing for backup...Done"
223
- msgstr ""
224
-
225
- #: lib/includes/job_backup.php:852
226
- msgid "Backing up database...Done"
227
- msgstr ""
228
-
229
- #: lib/includes/job_backup.php:853
230
- msgid "Creating backup information file...Done"
231
- msgstr ""
232
-
233
- #: lib/includes/job_backup.php:854
234
- msgid "Backing up themes...Done"
235
- msgstr ""
236
-
237
- #: lib/includes/job_backup.php:855
238
- msgid "Backing up plugins...Done"
239
- msgstr ""
240
-
241
- #: lib/includes/job_backup.php:856
242
- msgid "Backing up uploads...Done"
243
- msgstr ""
244
-
245
- #: lib/includes/job_backup.php:857
246
- msgid "Backing up miscellaneous files...Done"
247
- msgstr ""
248
-
249
- #: lib/includes/job_backup.php:858
250
- msgid "Finalizing backup...Done"
251
- msgstr ""
252
-
253
- #: lib/includes/job_backup.php:859
254
- msgid "Validating backup...Done"
255
- msgstr ""
256
-
257
- #: lib/includes/job_backup.php:860
258
- msgid "Cleaning up...Done"
259
  msgstr ""
260
 
261
- #: lib/includes/job_backup.php:870
262
  #, php-format
263
  msgid "%s - Backup completed successfully."
264
  msgstr ""
265
 
266
- #: lib/includes/job_backup.php:871
267
  msgid "Your backup completed successfully."
268
  msgstr ""
269
 
270
- #: lib/includes/job_backup.php:874
271
  #, php-format
272
  msgid "%s - Backup did not complete successfully."
273
  msgstr ""
274
 
275
- #: lib/includes/job_backup.php:875
276
  msgid "Your backup did not complete successfully."
277
  msgstr ""
278
 
279
- #: lib/includes/job_backup.php:880
280
  #, php-format
281
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
282
  msgstr ""
283
 
284
- #: lib/includes/job_backup.php:881
285
  msgid "Backup date:"
286
  msgstr ""
287
 
288
- #: lib/includes/job_backup.php:882
289
  msgid "Number of backups completed with WP BackItUp:"
290
  msgstr ""
291
 
292
- #: lib/includes/job_backup.php:884
293
  msgid "Completion Code:"
294
  msgstr ""
295
 
296
- #: lib/includes/job_backup.php:885
297
  msgid "WP BackItUp Version:"
298
  msgstr ""
299
 
300
- #: lib/includes/job_backup.php:891
301
- msgid "Steps Completed"
302
- msgstr ""
303
-
304
- #: lib/includes/job_backup.php:912
305
  #, php-format
306
  msgid "Checkout %s for info about WP BackItUp and our other products."
307
  msgstr ""
308
 
309
- #: lib/includes/job_backup.php:1088
310
  msgid ""
311
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
312
  "settings of your wp-backitup backup directory"
313
  msgstr ""
314
 
315
- #: lib/includes/job_backup.php:1089
316
  msgid ""
317
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
318
  "your wp-backitup plugin directory"
319
  msgstr ""
320
 
321
- #: lib/includes/job_backup.php:1090
322
  msgid "(103) Unable to backup your files. Please try again"
323
  msgstr ""
324
 
325
- #: lib/includes/job_backup.php:1091
326
  msgid "(104) Unable to export your database. Please try again"
327
  msgstr ""
328
 
329
- #: lib/includes/job_backup.php:1092
330
  msgid "(105) Unable to export site information file. Please try again"
331
  msgstr ""
332
 
333
- #: lib/includes/job_backup.php:1093
334
  msgid "(106) Unable to cleanup your backup directory"
335
  msgstr ""
336
 
337
- #: lib/includes/job_backup.php:1094
338
  msgid "(107) Unable to compress(zip) your backup. Please try again"
339
  msgstr ""
340
 
341
- #: lib/includes/job_backup.php:1095
342
  msgid "(108) Unable to backup your site data files. Please try again"
343
  msgstr ""
344
 
345
- #: lib/includes/job_backup.php:1096
346
  msgid "(109) Unable to finalize backup. Please try again"
347
  msgstr ""
348
 
349
- #: lib/includes/job_backup.php:1097
350
  msgid ""
351
  "(114) Your database was accessible but an export could not be created. "
352
  "Please contact support by clicking the get support link on the right. Please "
353
  "let us know who your host is when you submit the request"
354
  msgstr ""
355
 
356
- #: lib/includes/job_backup.php:1098
357
  msgid "(120) Unable to backup your themes. Please try again"
358
  msgstr ""
359
 
360
- #: lib/includes/job_backup.php:1099
361
  msgid "(121) Unable to backup your plugins. Please try again"
362
  msgstr ""
363
 
364
- #: lib/includes/job_backup.php:1100
365
  msgid "(122) Unable to backup your uploads. Please try again"
366
  msgstr ""
367
 
368
- #: lib/includes/job_backup.php:1101
369
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
370
  msgstr ""
371
 
372
- #: lib/includes/job_backup.php:1102
373
  msgid ""
374
  "(125) Unable to compress your backup because there is no zip utility "
375
  "available. Please contact support"
376
  msgstr ""
377
 
378
- #: lib/includes/job_backup.php:1103
379
  msgid "(126) Unable to validate your backup. Please try again"
380
  msgstr ""
381
 
382
- #: lib/includes/job_backup.php:1104
383
  msgid "(127) Unable to create inventory of files to backup. Please try again"
384
  msgstr ""
385
 
386
- #: lib/includes/job_backup.php:1105
387
  msgid "(128) Unable to create job control record. Please try again"
388
  msgstr ""
389
 
390
- #: lib/includes/job_backup.php:1107
391
  msgid ""
392
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
393
  "settings of your wp-backitup backup directory"
394
  msgstr ""
395
 
396
- #: lib/includes/job_backup.php:1108
397
  msgid ""
398
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
399
  "your wp-backitup plugin directory"
400
  msgstr ""
401
 
402
- #: lib/includes/job_backup.php:1109
403
  msgid "(2103) Unable to backup your files. Please try again"
404
  msgstr ""
405
 
406
- #: lib/includes/job_backup.php:1110
407
  msgid "(2104) Unable to export your database. Please try again"
408
  msgstr ""
409
 
410
- #: lib/includes/job_backup.php:1111
411
  msgid "(2105) Unable to export site information file. Please try again"
412
  msgstr ""
413
 
414
- #: lib/includes/job_backup.php:1112
415
  msgid "(2106) Unable to cleanup your backup directory"
416
  msgstr ""
417
 
418
- #: lib/includes/job_backup.php:1113
419
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
420
  msgstr ""
421
 
422
- #: lib/includes/job_backup.php:1114
423
  msgid "(2108) Unable to backup your site data files. Please try again"
424
  msgstr ""
425
 
426
- #: lib/includes/job_backup.php:1115
427
  msgid "(2109) Unable to finalize backup. Please try again"
428
  msgstr ""
429
 
430
- #: lib/includes/job_backup.php:1116
431
  msgid ""
432
  "(2114) Your database was accessible but an export could not be created. "
433
  "Please contact support by clicking the get support link on the right. Please "
434
  "let us know who your host is when you submit the request"
435
  msgstr ""
436
 
437
- #: lib/includes/job_backup.php:1117
438
  msgid "(2120) Unable to backup your themes. Please try again"
439
  msgstr ""
440
 
441
- #: lib/includes/job_backup.php:1118
442
  msgid "(2121) Unable to backup your plugins. Please try again"
443
  msgstr ""
444
 
445
- #: lib/includes/job_backup.php:1119
446
  msgid "(2122) Unable to backup your uploads. Please try again"
447
  msgstr ""
448
 
449
- #: lib/includes/job_backup.php:1120
450
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
451
  msgstr ""
452
 
453
- #: lib/includes/job_backup.php:1121
454
  msgid ""
455
  "(2125) Unable to compress your backup because there is no zip utility "
456
  "available. Please contact support"
457
  msgstr ""
458
 
459
- #: lib/includes/job_backup.php:1122
460
  msgid "(2126) Unable to validate your backup. Please try again"
461
  msgstr ""
462
 
463
- #: lib/includes/job_backup.php:1123
464
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
465
  msgstr ""
466
 
467
- #: lib/includes/job_backup.php:1124
468
  msgid "(2128) Unable to create job control record. Please try again"
469
  msgstr ""
470
 
471
- #: lib/includes/job_backup.php:1127
472
  msgid "(999) Unexpected error"
473
  msgstr ""
474
 
475
  #. TRANSLATORS: %s = plugin name.
476
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
477
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
478
- #: views/backup.php:20
479
  #, php-format
480
  msgid "%s Dashboard"
481
  msgstr ""
482
 
483
- #: views/backup.php:150
 
 
 
 
484
  #, php-format
485
  msgid "Backup folder does not exist. Please contact %s for assistance."
486
  msgstr ""
487
 
488
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
489
  msgid "support"
490
  msgstr ""
491
 
492
- #: views/backup.php:153 views/backup.php:159
493
  msgid "Close"
494
  msgstr ""
495
 
496
- #: views/backup.php:174
497
  msgid ""
498
  "Click the backup button to create a zipped backup file of this site's "
499
  "database, plugins, themes and settings."
500
  msgstr ""
501
 
502
- #: views/backup.php:175
503
  msgid ""
504
  "Once your backup file has been created it will appear in the available "
505
  "backups section below. This file may remain on your hosting providers server "
506
  "but we recommend that you download and save it somewhere safe."
507
  msgstr ""
508
 
509
- #: views/backup.php:176
510
  msgid ""
511
  "WP BackItUp premium customers can use these backup files to perform an "
512
  "automated restore of their site."
513
  msgstr ""
514
 
515
- #: views/backup.php:180
516
  msgid "Cancel"
517
  msgstr ""
518
 
519
- #: views/backup.php:187
520
  #, php-format
521
  msgid ""
522
  "WP BackItUp lite customers may use these backup files to manually restore "
523
  "their site. Please visit %s for manual restore instructions."
524
  msgstr ""
525
 
526
- #: views/backup.php:194
527
  msgid "Backup Schedule"
528
  msgstr ""
529
 
530
- #: views/backup.php:196
531
  msgid "Select the days of the week you would like your backup to run."
532
  msgstr ""
533
 
534
- #: views/backup.php:198
535
  msgid ""
536
  "Backup your site once per week or every day, it's up to you. If you have "
537
  "email notifications turned on we'll even send you an email when it's done. "
@@ -540,187 +529,207 @@ msgid ""
540
  "but we recommend that you download and save it somewhere safe."
541
  msgstr ""
542
 
543
- #: views/backup.php:200
544
  msgid "Please make sure to schedule your backup for at least once per week."
545
  msgstr ""
546
 
547
- #: views/backup.php:204
548
  msgid "Monday"
549
  msgstr ""
550
 
551
- #: views/backup.php:205
552
  msgid "Tuesday"
553
  msgstr ""
554
 
555
- #: views/backup.php:206
556
  msgid "Wednesday"
557
  msgstr ""
558
 
559
- #: views/backup.php:207
560
  msgid "Thursday"
561
  msgstr ""
562
 
563
- #: views/backup.php:208
564
  msgid "Friday"
565
  msgstr ""
566
 
567
- #: views/backup.php:209
568
  msgid "Saturday"
569
  msgstr ""
570
 
571
- #: views/backup.php:210
572
  msgid "Sunday"
573
  msgstr ""
574
 
575
- #: views/backup.php:213
576
  msgid "Save Schedule"
577
  msgstr ""
578
 
579
- #: views/backup.php:218
580
  #, php-format
581
  msgid ""
582
  "Scheduled backups are only available to WP BackItUp premium customers. "
583
  "Please visit %s to get WP BackItUp risk free for 30 days."
584
  msgstr ""
585
 
586
- #: views/backup.php:225 views/restore.php:94
587
  msgid "Available Backups"
588
  msgstr ""
589
 
590
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  msgid "No backup archives found."
592
  msgstr ""
593
 
594
- #: views/backup.php:291
595
  #, php-format
596
  msgid ""
597
  "The automated restore feature is only available to WP BackItUp premium "
598
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
599
  msgstr ""
600
 
601
- #: views/backup.php:300 views/restore.php:209
602
  msgid "Nothing to report"
603
  msgstr ""
604
 
605
- #: views/backup.php:305
606
  msgid "Preparing for backup"
607
  msgstr ""
608
 
609
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
610
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
611
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
612
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
613
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
614
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
615
- #: views/restore.php:228 views/restore.php:230
616
  msgid "Done"
617
  msgstr ""
618
 
619
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
620
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
621
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
622
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
623
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
624
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
625
- #: views/restore.php:228 views/restore.php:230
626
  msgid "Failed"
 
 
 
 
627
  msgstr ""
628
 
629
- #: views/backup.php:306
630
  msgid "Backing up database"
631
  msgstr ""
632
 
633
- #: views/backup.php:307
634
  msgid "Creating backup information file"
635
  msgstr ""
636
 
637
- #: views/backup.php:308
638
  msgid "Backing up themes"
639
  msgstr ""
640
 
641
- #: views/backup.php:309
642
  msgid "Backing up plugins"
643
  msgstr ""
644
 
645
- #: views/backup.php:310
646
  msgid "Backing up uploads"
647
  msgstr ""
648
 
649
- #: views/backup.php:311
650
  msgid "Backing up everything else"
651
  msgstr ""
652
 
653
- #: views/backup.php:312
654
  msgid "Validating backup"
655
  msgstr ""
656
 
657
- #: views/backup.php:313
658
  msgid "Finalizing backup"
659
  msgstr ""
660
 
661
- #: views/backup.php:323
662
  msgid "Backup completed successfully"
663
  msgstr ""
664
 
665
- #: views/backup.php:344
666
  msgid "Backups"
667
  msgstr ""
668
 
669
- #: views/backup.php:344
670
  msgid "Version "
671
  msgstr ""
672
 
673
- #: views/backup.php:346
674
  msgid "Welcome to WP BackItUp!"
675
  msgstr ""
676
 
677
- #: views/backup.php:346
678
  msgid "The simplest way to backup your WordPress site."
679
  msgstr ""
680
 
681
- #: views/backup.php:347
682
  msgid ""
683
  "Getting started is easy, just click the backup button on the left side of "
684
  "this page."
685
  msgstr ""
686
 
687
- #: views/backup.php:351
688
  #, php-format
689
  msgid ""
690
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
691
  "medium;color: green\">%s</span> successful backups."
692
  msgstr ""
693
 
694
- #: views/backup.php:352
695
  msgid "Tips"
696
  msgstr ""
697
 
698
- #: views/backup.php:353
699
  msgid "Backup your site at least once per week"
700
  msgstr ""
701
 
702
- #: views/backup.php:354
703
  msgid "Download all your backups and store them somewhere safe"
704
  msgstr ""
705
 
706
- #: views/backup.php:355
707
  msgid "Verify your backup files are good by taking a look at what's inside"
708
  msgstr ""
709
 
710
- #: views/backup.php:360
711
  #, php-format
712
  msgid "Why not %s and schedule your backups!"
713
  msgstr ""
714
 
715
- #: views/backup.php:360
716
  msgid "upgrade"
717
  msgstr ""
718
 
719
- #: views/backup.php:369
720
  msgid "Register WP BackItUp"
721
  msgstr ""
722
 
723
- #: views/backup.php:372
724
  msgid ""
725
  "Enter your name and email address below to receive <b>special offers</b> and "
726
  "access to our world class <b>support</b> team. <br />\n"
@@ -728,145 +737,150 @@ msgid ""
728
  "site."
729
  msgstr ""
730
 
731
- #: views/backup.php:374
732
  msgid "name"
733
  msgstr ""
734
 
735
- #: views/backup.php:375
736
  msgid "email address"
737
  msgstr ""
738
 
739
- #: views/backup.php:376
740
  msgid "license key"
741
  msgstr ""
742
 
743
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
744
  #, php-format
745
  msgid "%s"
746
  msgstr ""
747
 
748
- #: views/backup.php:377
749
  msgid "Free plugin customers do not need to enter license key."
750
  msgstr ""
751
 
752
- #: views/backup.php:378
753
  msgid "Register"
754
  msgstr ""
755
 
756
- #: views/backup.php:387
757
  msgid "License Info"
758
  msgstr ""
759
 
760
- #: views/backup.php:409
761
  msgid "Name"
762
  msgstr ""
763
 
764
- #: views/backup.php:410
765
  msgid "Email"
766
  msgstr ""
767
 
768
- #: views/backup.php:411
769
  msgid "License Type"
770
  msgstr ""
771
 
772
- #: views/backup.php:412
773
  msgid "Expires"
774
  msgstr ""
775
 
776
- #: views/backup.php:415
777
  msgid "Enter license key to activate on this site."
778
  msgstr ""
779
 
780
- #: views/backup.php:422
781
  msgid "License Active"
782
  msgstr ""
783
 
784
- #: views/backup.php:430
785
  msgid "License expired"
786
  msgstr ""
787
 
788
- #: views/backup.php:434
789
  msgid "Update"
790
  msgstr ""
791
 
792
- #: views/backup.php:438
793
  msgid "Activate"
794
  msgstr ""
795
 
796
- #: views/backup.php:442
797
  #, php-format
798
  msgid "Purchase a %s license using the purchase link above."
799
  msgstr ""
800
 
801
- #: views/backup.php:442
802
  msgid "no-risk"
803
  msgstr ""
804
 
805
- #: views/backup.php:448
806
  #, php-format
807
  msgid ""
808
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
809
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
810
  msgstr ""
811
 
812
- #: views/backup.php:459
813
  msgid "Useful Links"
814
  msgstr ""
815
 
816
- #: views/backup.php:462 views/backup.php:466
817
  msgid "Your account"
818
  msgstr ""
819
 
820
- #: views/backup.php:469
821
  msgid "Documentation"
822
- msgstr ""
823
 
824
- #: views/backup.php:472
825
  msgid "Get support"
826
  msgstr ""
827
 
828
- #: views/backup.php:475
829
  msgid "Feature request"
830
  msgstr ""
831
 
832
- #: views/backup.php:477
 
 
 
 
833
  msgid "Contact"
834
  msgstr ""
835
 
836
- #: views/backup.php:497 views/backup.php:518
837
  msgid "WP BackItUp Backup Set"
838
  msgstr ""
839
 
840
- #: views/backup.php:499
841
  msgid ""
842
  "Below are the archive files included in this backup set. Click the link to "
843
  "download."
844
  msgstr ""
845
 
846
- #: views/backup.php:519
847
  msgid "Please refresh this page to download your new backup files."
848
  msgstr ""
849
 
850
- #: views/restore.php:16
851
  #, php-format
852
  msgid "%s Restore"
853
  msgstr ""
854
 
855
- #: views/restore.php:59
856
  msgid "Zip Files"
857
  msgstr ""
858
 
859
- #: views/restore.php:74
860
  #, php-format
861
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
862
  msgstr ""
863
 
864
- #: views/restore.php:81
865
  #, php-format
866
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
867
  msgstr ""
868
 
869
- #: views/restore.php:141
870
  #, php-format
871
  msgid ""
872
  "<p>* The automated restore feature is only available to licensed customers. "
@@ -874,192 +888,192 @@ msgid ""
874
  "BackItUp risk free for 30 days.</p>"
875
  msgstr ""
876
 
877
- #: views/restore.php:153
878
  msgid "Upload"
879
  msgstr ""
880
 
881
- #: views/restore.php:156
882
  msgid ""
883
  "Upload WP BackItUp archive(zip) files to add to your list of available "
884
  "backups."
885
  msgstr ""
886
 
887
- #: views/restore.php:173
888
  msgid "WP BackItUp - Upload backup files"
889
  msgstr ""
890
 
891
- #: views/restore.php:174
892
  msgid "Backup files may be uploaded into WP BackItUp with this form."
893
  msgstr ""
894
 
895
- #: views/restore.php:174
896
  msgid ""
897
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
898
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
899
  "refresh this page."
900
  msgstr ""
901
 
902
- #: views/restore.php:178
903
  #, php-format
904
  msgid "This feature requires %s version %s or later"
905
  msgstr ""
906
 
907
- #: views/restore.php:184
908
  msgid "Drop backup files here"
909
  msgstr ""
910
 
911
- #: views/restore.php:190
912
  msgid ""
913
  "* Reload this page when done uploading to see new backups appear in the "
914
  "Available Backups section above. "
915
  msgstr ""
916
 
917
- #: views/restore.php:219
918
  msgid "Preparing for restore"
919
  msgstr ""
920
 
921
- #: views/restore.php:220
922
  msgid "Unzipping backup set"
923
  msgstr ""
924
 
925
- #: views/restore.php:221
926
  msgid "Validating backup file"
927
  msgstr ""
928
 
929
- #: views/restore.php:222
930
  msgid "Deactivating plugins"
931
  msgstr ""
932
 
933
- #: views/restore.php:223
934
  msgid "Creating database restore point"
935
  msgstr ""
936
 
937
- #: views/restore.php:224
938
  msgid "Staging content files"
939
  msgstr ""
940
 
941
- #: views/restore.php:225
942
  msgid "Restoring content files"
943
  msgstr ""
944
 
945
- #: views/restore.php:226
946
  msgid "Restoring database"
947
  msgstr ""
948
 
949
- #: views/restore.php:227
950
  msgid "Updating current user info"
951
  msgstr ""
952
 
953
- #: views/restore.php:228
954
  msgid "Updating site URL"
955
  msgstr ""
956
 
957
- #: views/restore.php:230
958
  msgid "Updating permalinks"
959
  msgstr ""
960
 
961
- #: views/restore.php:236
962
  msgid "Error 201: No file selected"
963
  msgstr ""
964
 
965
- #: views/restore.php:237
966
  msgid "Error 202: Your file could not be uploaded"
967
  msgstr ""
968
 
969
- #: views/restore.php:238
970
  msgid "Error 203: Your backup could not be unzipped"
971
  msgstr ""
972
 
973
- #: views/restore.php:239
974
  msgid ""
975
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
976
  "valid backup"
977
  msgstr ""
978
 
979
- #: views/restore.php:240
980
  msgid "Error 205: Cannot create restore point"
981
  msgstr ""
982
 
983
- #: views/restore.php:241
984
  msgid "Error 206: Unable to connect to your database"
985
  msgstr ""
986
 
987
- #: views/restore.php:242
988
  msgid ""
989
  "Error 207: Unable to get current site URL from database. Please try again"
990
  msgstr ""
991
 
992
- #: views/restore.php:243
993
  msgid ""
994
  "Error 208: Unable to get current home URL from database. Please try again"
995
  msgstr ""
996
 
997
- #: views/restore.php:244
998
  msgid ""
999
  "Error 209: Unable to get current user ID from database. Please try again"
1000
  msgstr ""
1001
 
1002
- #: views/restore.php:245
1003
  msgid ""
1004
  "Error 210: Unable to get current user password from database. Please try "
1005
  "again"
1006
  msgstr ""
1007
 
1008
- #: views/restore.php:246
1009
  msgid ""
1010
  "Error 211: Unable to get current user email from database. Please try again"
1011
  msgstr ""
1012
 
1013
- #: views/restore.php:247
1014
  msgid ""
1015
  "Error 212: Unable to import your database. This may require importing the "
1016
  "file manually"
1017
  msgstr ""
1018
 
1019
- #: views/restore.php:248
1020
  msgid ""
1021
  "Warning 213: Unable to update your site URL value. Please check your "
1022
  "WordPress general settings to make sure your Site and WordPress URLs are "
1023
  "correct"
1024
  msgstr ""
1025
 
1026
- #: views/restore.php:249
1027
  msgid ""
1028
  "Warning 214: Unable to update your home URL value. Please check your "
1029
  "WordPress general settings to make sure your Site and WordPress URLs are "
1030
  "correct"
1031
  msgstr ""
1032
 
1033
- #: views/restore.php:250
1034
  msgid ""
1035
  "Warning 215: Unable to update your user information. This may require you to "
1036
  "login with the admin username and password that was used when the backup was "
1037
  "created"
1038
  msgstr ""
1039
 
1040
- #: views/restore.php:251
1041
  msgid "Error 216: Database not found in backup"
1042
  msgstr ""
1043
 
1044
- #: views/restore.php:252
1045
  msgid "Warning 217: Unable to remove existing wp-content directory"
1046
  msgstr ""
1047
 
1048
- #: views/restore.php:253
1049
  msgid ""
1050
  "Error 218: Unable to create new wp-content directory. Please check your "
1051
  "CHMOD settings in /wp-content/"
1052
  msgstr ""
1053
 
1054
- #: views/restore.php:254
1055
  msgid "Error 219: Unable to import wp-content. Please try again"
1056
  msgstr ""
1057
 
1058
- #: views/restore.php:255
1059
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1060
  msgstr ""
1061
 
1062
- #: views/restore.php:256
1063
  #, php-format
1064
  msgid ""
1065
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1068,11 +1082,11 @@ msgid ""
1068
  "> FAQs</a> for more info."
1069
  msgstr ""
1070
 
1071
- #: views/restore.php:257
1072
  msgid "Error 222: Unable to create restore folder"
1073
  msgstr ""
1074
 
1075
- #: views/restore.php:258
1076
  msgid ""
1077
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1078
  "restore the database to its previous state but were unsuccessful. Please "
@@ -1080,154 +1094,154 @@ msgid ""
1080
  "further restores"
1081
  msgstr ""
1082
 
1083
- #: views/restore.php:259
1084
  msgid ""
1085
  "Error 224: An error occurred during the restore, however, we have "
1086
  "successfully restored your database to the previous state"
1087
  msgstr ""
1088
 
1089
- #: views/restore.php:260
1090
  msgid ""
1091
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1092
  msgstr ""
1093
 
1094
- #: views/restore.php:261
1095
  msgid ""
1096
  "Error 226: Restore cannot proceed because your backup was created using a "
1097
  "different version of WordPress"
1098
  msgstr ""
1099
 
1100
- #: views/restore.php:262
1101
  msgid ""
1102
  "Error 227: Restore cannot proceed because your backup was created using a "
1103
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1104
  "help convert this backup to the current version"
1105
  msgstr ""
1106
 
1107
- #: views/restore.php:263
1108
  msgid ""
1109
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1110
  "restore. However, we were able to successfully revert the database back to "
1111
  "its original state . This error may require importing the database manually"
1112
  msgstr ""
1113
 
1114
- #: views/restore.php:264
1115
  msgid ""
1116
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1117
  "utility available. Please contact support"
1118
  msgstr ""
1119
 
1120
- #: views/restore.php:265
1121
  msgid ""
1122
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1123
  "running. Please wait for the backup to complete and then try again"
1124
  msgstr ""
1125
 
1126
- #: views/restore.php:267
1127
  msgid ""
1128
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1129
  "manifest is empty"
1130
  msgstr ""
1131
 
1132
- #: views/restore.php:268
1133
  msgid ""
1134
  "Error 252: At least one zip file is missing from your backup set. Please "
1135
  "make sure to upload all zip files that were part of this backup"
1136
  msgstr ""
1137
 
1138
- #: views/restore.php:269
1139
  msgid ""
1140
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1141
  "Please make sure to upload only zip files that were part of this backup"
1142
  msgstr ""
1143
 
1144
- #: views/restore.php:271
1145
  msgid ""
1146
  "Warning 300: Unable to restore all WordPress content. Please review your "
1147
  "restore logs to see what WP BackItUp was unable to restore"
1148
  msgstr ""
1149
 
1150
- #: views/restore.php:272
1151
  msgid ""
1152
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1153
  "to see what WP BackItUp was unable to restore"
1154
  msgstr ""
1155
 
1156
- #: views/restore.php:274
1157
  msgid "Error 2001: Unable to prepare site for restore"
1158
  msgstr ""
1159
 
1160
- #: views/restore.php:275
1161
  msgid "Error 2002: Unable to unzip backup"
1162
  msgstr ""
1163
 
1164
- #: views/restore.php:276
1165
  msgid "Error 2003: Unable to validate backup"
1166
  msgstr ""
1167
 
1168
- #: views/restore.php:277
1169
  msgid "Error 2004: Unable to create restore point"
1170
  msgstr ""
1171
 
1172
- #: views/restore.php:278
1173
  msgid "Error 2005: Unable to stage wp-content"
1174
  msgstr ""
1175
 
1176
- #: views/restore.php:279
1177
  msgid "Error 2006: Unable to restore content files"
1178
  msgstr ""
1179
 
1180
- #: views/restore.php:280
1181
  msgid "Error 2007: Unable to restore database"
1182
  msgstr ""
1183
 
1184
- #: views/restore.php:281
1185
  msgid "Error 2999: Unexpected error encountered"
1186
  msgstr ""
1187
 
1188
- #: views/restore.php:288
1189
  msgid ""
1190
  "Restore completed successfully. If you are prompted to login please do so "
1191
  "with your current username and password"
1192
  msgstr ""
1193
 
1194
- #: views/settings.php:16
1195
  #, php-format
1196
  msgid "%s Settings"
1197
- msgstr ""
1198
 
1199
- #: views/settings.php:43
1200
  msgid "Email Notifications"
1201
  msgstr ""
1202
 
1203
- #: views/settings.php:44
1204
  msgid ""
1205
  "Please enter your email address if you would like to receive backup email "
1206
  "notifications."
1207
  msgstr ""
1208
 
1209
- #: views/settings.php:45
1210
  msgid ""
1211
  "Backup email notifications will be sent for every backup and will contain "
1212
  "status information related to the backup."
1213
  msgstr ""
1214
 
1215
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1216
- #: views/settings.php:114
1217
  msgid "Save"
1218
  msgstr ""
1219
 
1220
- #: views/settings.php:63
1221
  msgid "Backup Retention"
1222
  msgstr ""
1223
 
1224
- #: views/settings.php:64
1225
  msgid ""
1226
  "Enter the number of backup archives that you would like to remain on the "
1227
  "server."
1228
  msgstr ""
1229
 
1230
- #: views/settings.php:65
1231
  msgid ""
1232
  "Many hosts limit the amount of space that you can take up on their servers. "
1233
  "This option tells WP BackItUp the maximum number of backup archives that "
@@ -1235,104 +1249,108 @@ msgid ""
1235
  "oldest backup archives first."
1236
  msgstr ""
1237
 
1238
- #: views/settings.php:84
1239
  msgid "Turn on logging?"
1240
  msgstr ""
1241
 
1242
- #: views/settings.php:85
1243
  msgid "Yes"
1244
  msgstr ""
1245
 
1246
- #: views/settings.php:86
1247
  msgid "No"
1248
  msgstr ""
1249
 
1250
- #: views/settings.php:87
1251
  msgid ""
1252
  "This option should only be turned on when troubleshooting issues with "
1253
  "WPBackItUp support."
1254
  msgstr ""
1255
 
1256
- #: views/settings.php:92
1257
  msgid "Advanced Settings"
1258
  msgstr ""
1259
 
1260
- #: views/settings.php:93
1261
  msgid ""
1262
  "These options should only be changed when working with WP BackItUp support."
1263
  msgstr ""
1264
 
1265
- #: views/settings.php:96
1266
  msgid "Plugins Batch Size"
1267
  msgstr ""
1268
 
1269
- #: views/settings.php:101
1270
  msgid "Themes Batch Size"
1271
  msgstr ""
1272
 
1273
- #: views/settings.php:106
1274
  msgid "Uploads Batch Size"
1275
  msgstr ""
1276
 
1277
- #: views/settings.php:111
1278
  msgid "Others Batch Size"
1279
  msgstr ""
1280
 
1281
- #: views/support.php:16
1282
  #, php-format
1283
  msgid "%s Support"
1284
  msgstr ""
1285
 
1286
- #: views/support.php:35
1287
  msgid "Support email sent successfully!"
1288
  msgstr ""
1289
 
1290
- #: views/support.php:48
1291
  msgid "Email Logs to Support"
1292
  msgstr ""
1293
 
1294
- #: views/support.php:49
1295
  msgid "This form should be used to send log files to support only."
1296
  msgstr ""
1297
 
1298
- #: views/support.php:50
1299
  msgid ""
1300
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1301
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1302
  "using this form."
1303
  msgstr ""
1304
 
1305
- #: views/support.php:51
1306
  msgid ""
1307
  "The ticket id you receive from your support request should be entered in the "
1308
  "ticket id field below."
1309
  msgstr ""
1310
 
1311
- #: views/support.php:52
1312
  msgid "your email address"
1313
  msgstr ""
1314
 
1315
- #: views/support.php:62
1316
  msgid "support ticket id"
1317
  msgstr ""
1318
 
1319
- #: views/support.php:72
1320
  msgid "problem description or additional information"
1321
  msgstr ""
1322
 
1323
- #: views/support.php:83
1324
  msgid "Send"
1325
  msgstr ""
1326
 
1327
- #: views/support.php:86
1328
  msgid "Please register your version of WP BackItUp for access to support."
1329
  msgstr ""
1330
 
1331
- #: views/support.php:90
1332
  msgid "Premium customers receive priority support."
1333
  msgstr ""
1334
 
1335
- #: wp-backitup.php:97 wp-backitup.php:98
1336
  #, php-format
1337
  msgid "Every %s hours"
1338
  msgstr ""
 
 
 
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP BackItUp\n"
7
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
8
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
9
  "Last-Translator: Chris Simmons <chris.simmons01@gmail.com>\n"
10
  "Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/wp-"
11
  "backitup/language/ru_RU/)\n"
21
  "X-Poedit-KeywordsList: _;__;_e\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
25
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
26
+ #: wp-backitup.php:109
27
  msgid "Backup"
28
  msgstr "Резервная копия"
29
 
30
+ #: lib/includes/class-wpbackitup-admin.php:182
31
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
32
+ #: wp-backitup.php:123
33
  msgid "Restore"
34
  msgstr "Восстановить"
35
 
36
+ #: lib/includes/class-wpbackitup-admin.php:186
37
  msgid "Support"
38
  msgstr "Поддержка"
39
 
40
+ #: lib/includes/class-wpbackitup-admin.php:189
41
  msgid "Settings"
42
  msgstr "Настройки"
43
 
44
+ #: lib/includes/class-wpbackitup-admin.php:210
45
  msgid ""
46
  "The backup you have selected exceeds what your host allows you to upload."
47
  msgstr ""
48
  "Резервная копия, которую вы указали, больше чем позволяет ваш сервер для "
49
  "загрузки."
50
 
51
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
52
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
53
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
54
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
55
  msgid "Warning"
56
  msgstr "Внимание"
57
 
58
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
59
+ #: views/backup.php:220
60
  msgid "Error"
61
  msgstr "Ошибка"
62
 
63
+ #: lib/includes/class-wpbackitup-admin.php:213
64
  msgid "Response"
65
  msgstr "Ответ"
66
 
67
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
68
+ #: views/backup.php:271 views/restore.php:230
69
  msgid "Status"
70
  msgstr "Статус"
71
 
72
+ #: lib/includes/class-wpbackitup-admin.php:215
73
  msgid "Download"
74
  msgstr "Скачать"
75
 
76
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
77
+ #: views/restore.php:132
78
  msgid "Delete"
79
  msgstr "Удалить"
80
 
81
+ #: lib/includes/class-wpbackitup-admin.php:218
82
  msgid "(JS997) Unexpected error"
83
  msgstr "(JS997) Непредвиденная ошибка"
84
 
85
+ #: lib/includes/class-wpbackitup-admin.php:219
86
  msgid "(JS998) Unexpected error"
87
  msgstr "(JS998) Непредвиденная ошибка"
88
 
89
+ #: lib/includes/class-wpbackitup-admin.php:220
90
  msgid "(JS999) An unexpected error has occurred"
91
  msgstr "(JS999) Произошла непредвиденная ошибка"
92
 
93
+ #: lib/includes/class-wpbackitup-admin.php:221
94
  msgid "Scheduled has been saved."
95
  msgstr ""
96
 
97
+ #: lib/includes/class-wpbackitup-admin.php:222
98
  msgid "Scheduled was not saved."
99
  msgstr ""
100
 
101
+ #: lib/includes/class-wpbackitup-admin.php:223
102
  msgid "Are you sure you want to restore your site?"
103
  msgstr ""
104
 
105
+ #: lib/includes/class-wpbackitup-admin.php:224
106
  msgid "Are you sure ?"
107
  msgstr "Вы уверены?"
108
 
109
+ #: lib/includes/class-wpbackitup-admin.php:225
110
  msgid "This file cannot be delete!"
111
  msgstr ""
112
 
113
+ #: lib/includes/class-wpbackitup-admin.php:226
114
  msgid "View Log"
115
  msgstr ""
116
 
117
+ #: lib/includes/class-wpbackitup-admin.php:227
118
  msgid "New Backup!"
119
  msgstr ""
120
 
121
+ #: lib/includes/class-wpbackitup-admin.php:228
122
  msgid "Uploaded Backup"
123
  msgstr ""
124
 
125
+ #: lib/includes/class-wpbackitup-admin.php:515
126
  msgid "Backup Queued"
127
  msgstr ""
128
 
129
+ #: lib/includes/class-wpbackitup-admin.php:518
130
  msgid "Backup could not be queued"
131
  msgstr ""
132
 
133
+ #: lib/includes/class-wpbackitup-admin.php:522
134
+ msgid "Job already in queue, please try again later"
 
 
 
 
135
  msgstr ""
136
 
137
+ #: lib/includes/class-wpbackitup-admin.php:554
138
  msgid "No backup file selected."
139
  msgstr ""
140
 
141
+ #: lib/includes/class-wpbackitup-admin.php:561
142
  msgid "No user id found."
143
  msgstr ""
144
 
145
+ #: lib/includes/class-wpbackitup-admin.php:582
146
  msgid "Restore Queued"
147
  msgstr ""
148
 
149
+ #: lib/includes/class-wpbackitup-admin.php:584
150
  msgid "Restore could not be queued"
151
  msgstr ""
152
 
153
+ #: lib/includes/class-wpbackitup-admin.php:588
154
  msgid "Restore already in queue"
155
  msgstr ""
156
 
157
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
158
+ msgid "Backup Cancelled"
159
+ msgstr ""
160
+
161
+ #: lib/includes/class-wpbackitup-admin.php:754
162
  msgid "No response log found."
163
  msgstr ""
164
 
165
+ #: lib/includes/class-wpbackitup-admin.php:856
166
+ #: lib/includes/class-wpbackitup-admin.php:864
167
+ #: lib/includes/class-wpbackitup-admin.php:893
168
+ #: lib/includes/class-wpbackitup-admin.php:900
169
+ #: lib/includes/class-wpbackitup-admin.php:907
170
+ #: lib/includes/class-wpbackitup-admin.php:914
171
  msgid "Please enter a number"
172
  msgstr ""
173
 
174
+ #: lib/includes/class-wpbackitup-admin.php:885
175
+ #: lib/includes/class-wpbackitup-admin.php:993
176
  msgid "Please enter a valid email"
177
  msgstr ""
178
 
179
+ #: lib/includes/class-wpbackitup-admin.php:1000
180
  msgid "Please enter your support ticket id"
181
  msgstr ""
182
 
183
+ #: lib/includes/class-wpbackitup-admin.php:1005
184
  msgid "Please only enter numbers in this field"
185
  msgstr ""
186
 
187
+ #: lib/includes/class-wpbackitup-admin.php:1699
188
  msgid "License is invalid."
189
  msgstr ""
190
 
191
+ #: lib/includes/class-wpbackitup-admin.php:1704
192
  msgid "License has expired."
193
  msgstr ""
194
 
195
+ #: lib/includes/class-wpbackitup-admin.php:1707
196
+ #, php-format
197
+ msgid ""
198
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
199
+ "now for another year of <strong>product updates</strong> and access to our "
200
+ "<strong>world class support</strong> team."
201
+ msgstr ""
202
+
203
+ #: lib/includes/class-wpbackitup-admin.php:1721
204
+ msgid "License Expired: Scheduled backups are no longer active."
205
+ msgstr ""
206
+
207
+ #: lib/includes/class-wpbackitup-admin.php:1729
208
  msgid "Activation limit has been reached."
209
  msgstr ""
210
 
211
+ #: lib/includes/class-wpbackitup-admin.php:1735
212
+ msgid "Your Activation limit has been reached"
213
+ msgstr ""
214
+
215
  #: lib/includes/handler_upload.php:29
216
  msgid "Invalid Nonce"
217
  msgstr ""
237
  msgid "Could not import file into WP BackItUp backup set."
238
  msgstr ""
239
 
240
+ #: lib/includes/job_backup.php:907
241
+ #, php-format
242
+ msgid ""
243
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
244
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
245
+ "function for <strong>30</strong> days after your license has expired.Please "
246
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
247
+ "of product updates and access to our world class support team.<br/><br/>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgstr ""
249
 
250
+ #: lib/includes/job_backup.php:912
251
  #, php-format
252
  msgid "%s - Backup completed successfully."
253
  msgstr ""
254
 
255
+ #: lib/includes/job_backup.php:913
256
  msgid "Your backup completed successfully."
257
  msgstr ""
258
 
259
+ #: lib/includes/job_backup.php:916
260
  #, php-format
261
  msgid "%s - Backup did not complete successfully."
262
  msgstr ""
263
 
264
+ #: lib/includes/job_backup.php:917
265
  msgid "Your backup did not complete successfully."
266
  msgstr ""
267
 
268
+ #: lib/includes/job_backup.php:924
269
  #, php-format
270
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
271
  msgstr ""
272
 
273
+ #: lib/includes/job_backup.php:925
274
  msgid "Backup date:"
275
  msgstr ""
276
 
277
+ #: lib/includes/job_backup.php:926
278
  msgid "Number of backups completed with WP BackItUp:"
279
  msgstr ""
280
 
281
+ #: lib/includes/job_backup.php:928
282
  msgid "Completion Code:"
283
  msgstr ""
284
 
285
+ #: lib/includes/job_backup.php:929
286
  msgid "WP BackItUp Version:"
287
  msgstr ""
288
 
289
+ #: lib/includes/job_backup.php:941
 
 
 
 
290
  #, php-format
291
  msgid "Checkout %s for info about WP BackItUp and our other products."
292
  msgstr ""
293
 
294
+ #: lib/includes/job_backup.php:1117
295
  msgid ""
296
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
297
  "settings of your wp-backitup backup directory"
298
  msgstr ""
299
 
300
+ #: lib/includes/job_backup.php:1118
301
  msgid ""
302
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
303
  "your wp-backitup plugin directory"
304
  msgstr ""
305
 
306
+ #: lib/includes/job_backup.php:1119
307
  msgid "(103) Unable to backup your files. Please try again"
308
  msgstr ""
309
 
310
+ #: lib/includes/job_backup.php:1120
311
  msgid "(104) Unable to export your database. Please try again"
312
  msgstr ""
313
 
314
+ #: lib/includes/job_backup.php:1121
315
  msgid "(105) Unable to export site information file. Please try again"
316
  msgstr ""
317
 
318
+ #: lib/includes/job_backup.php:1122
319
  msgid "(106) Unable to cleanup your backup directory"
320
  msgstr ""
321
 
322
+ #: lib/includes/job_backup.php:1123
323
  msgid "(107) Unable to compress(zip) your backup. Please try again"
324
  msgstr ""
325
 
326
+ #: lib/includes/job_backup.php:1124
327
  msgid "(108) Unable to backup your site data files. Please try again"
328
  msgstr ""
329
 
330
+ #: lib/includes/job_backup.php:1125
331
  msgid "(109) Unable to finalize backup. Please try again"
332
  msgstr ""
333
 
334
+ #: lib/includes/job_backup.php:1126
335
  msgid ""
336
  "(114) Your database was accessible but an export could not be created. "
337
  "Please contact support by clicking the get support link on the right. Please "
338
  "let us know who your host is when you submit the request"
339
  msgstr ""
340
 
341
+ #: lib/includes/job_backup.php:1127
342
  msgid "(120) Unable to backup your themes. Please try again"
343
  msgstr ""
344
 
345
+ #: lib/includes/job_backup.php:1128
346
  msgid "(121) Unable to backup your plugins. Please try again"
347
  msgstr ""
348
 
349
+ #: lib/includes/job_backup.php:1129
350
  msgid "(122) Unable to backup your uploads. Please try again"
351
  msgstr ""
352
 
353
+ #: lib/includes/job_backup.php:1130
354
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
355
  msgstr ""
356
 
357
+ #: lib/includes/job_backup.php:1131
358
  msgid ""
359
  "(125) Unable to compress your backup because there is no zip utility "
360
  "available. Please contact support"
361
  msgstr ""
362
 
363
+ #: lib/includes/job_backup.php:1132
364
  msgid "(126) Unable to validate your backup. Please try again"
365
  msgstr ""
366
 
367
+ #: lib/includes/job_backup.php:1133
368
  msgid "(127) Unable to create inventory of files to backup. Please try again"
369
  msgstr ""
370
 
371
+ #: lib/includes/job_backup.php:1134
372
  msgid "(128) Unable to create job control record. Please try again"
373
  msgstr ""
374
 
375
+ #: lib/includes/job_backup.php:1136
376
  msgid ""
377
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
378
  "settings of your wp-backitup backup directory"
379
  msgstr ""
380
 
381
+ #: lib/includes/job_backup.php:1137
382
  msgid ""
383
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
384
  "your wp-backitup plugin directory"
385
  msgstr ""
386
 
387
+ #: lib/includes/job_backup.php:1138
388
  msgid "(2103) Unable to backup your files. Please try again"
389
  msgstr ""
390
 
391
+ #: lib/includes/job_backup.php:1139
392
  msgid "(2104) Unable to export your database. Please try again"
393
  msgstr ""
394
 
395
+ #: lib/includes/job_backup.php:1140
396
  msgid "(2105) Unable to export site information file. Please try again"
397
  msgstr ""
398
 
399
+ #: lib/includes/job_backup.php:1141
400
  msgid "(2106) Unable to cleanup your backup directory"
401
  msgstr ""
402
 
403
+ #: lib/includes/job_backup.php:1142
404
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
405
  msgstr ""
406
 
407
+ #: lib/includes/job_backup.php:1143
408
  msgid "(2108) Unable to backup your site data files. Please try again"
409
  msgstr ""
410
 
411
+ #: lib/includes/job_backup.php:1144
412
  msgid "(2109) Unable to finalize backup. Please try again"
413
  msgstr ""
414
 
415
+ #: lib/includes/job_backup.php:1145
416
  msgid ""
417
  "(2114) Your database was accessible but an export could not be created. "
418
  "Please contact support by clicking the get support link on the right. Please "
419
  "let us know who your host is when you submit the request"
420
  msgstr ""
421
 
422
+ #: lib/includes/job_backup.php:1146
423
  msgid "(2120) Unable to backup your themes. Please try again"
424
  msgstr ""
425
 
426
+ #: lib/includes/job_backup.php:1147
427
  msgid "(2121) Unable to backup your plugins. Please try again"
428
  msgstr ""
429
 
430
+ #: lib/includes/job_backup.php:1148
431
  msgid "(2122) Unable to backup your uploads. Please try again"
432
  msgstr ""
433
 
434
+ #: lib/includes/job_backup.php:1149
435
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
436
  msgstr ""
437
 
438
+ #: lib/includes/job_backup.php:1150
439
  msgid ""
440
  "(2125) Unable to compress your backup because there is no zip utility "
441
  "available. Please contact support"
442
  msgstr ""
443
 
444
+ #: lib/includes/job_backup.php:1151
445
  msgid "(2126) Unable to validate your backup. Please try again"
446
  msgstr ""
447
 
448
+ #: lib/includes/job_backup.php:1152
449
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
450
  msgstr ""
451
 
452
+ #: lib/includes/job_backup.php:1153
453
  msgid "(2128) Unable to create job control record. Please try again"
454
  msgstr ""
455
 
456
+ #: lib/includes/job_backup.php:1156
457
  msgid "(999) Unexpected error"
458
  msgstr ""
459
 
460
  #. TRANSLATORS: %s = plugin name.
461
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
462
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
463
+ #: views/backup.php:17
464
  #, php-format
465
  msgid "%s Dashboard"
466
  msgstr ""
467
 
468
+ #: views/backup.php:83
469
+ msgid "Dismiss"
470
+ msgstr "Пропустить"
471
+
472
+ #: views/backup.php:95
473
  #, php-format
474
  msgid "Backup folder does not exist. Please contact %s for assistance."
475
  msgstr ""
476
 
477
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
478
  msgid "support"
479
  msgstr ""
480
 
481
+ #: views/backup.php:98 views/backup.php:104
482
  msgid "Close"
483
  msgstr ""
484
 
485
+ #: views/backup.php:119
486
  msgid ""
487
  "Click the backup button to create a zipped backup file of this site's "
488
  "database, plugins, themes and settings."
489
  msgstr ""
490
 
491
+ #: views/backup.php:120
492
  msgid ""
493
  "Once your backup file has been created it will appear in the available "
494
  "backups section below. This file may remain on your hosting providers server "
495
  "but we recommend that you download and save it somewhere safe."
496
  msgstr ""
497
 
498
+ #: views/backup.php:121
499
  msgid ""
500
  "WP BackItUp premium customers can use these backup files to perform an "
501
  "automated restore of their site."
502
  msgstr ""
503
 
504
+ #: views/backup.php:125
505
  msgid "Cancel"
506
  msgstr ""
507
 
508
+ #: views/backup.php:132
509
  #, php-format
510
  msgid ""
511
  "WP BackItUp lite customers may use these backup files to manually restore "
512
  "their site. Please visit %s for manual restore instructions."
513
  msgstr ""
514
 
515
+ #: views/backup.php:139
516
  msgid "Backup Schedule"
517
  msgstr ""
518
 
519
+ #: views/backup.php:141
520
  msgid "Select the days of the week you would like your backup to run."
521
  msgstr ""
522
 
523
+ #: views/backup.php:143
524
  msgid ""
525
  "Backup your site once per week or every day, it's up to you. If you have "
526
  "email notifications turned on we'll even send you an email when it's done. "
529
  "but we recommend that you download and save it somewhere safe."
530
  msgstr ""
531
 
532
+ #: views/backup.php:145
533
  msgid "Please make sure to schedule your backup for at least once per week."
534
  msgstr ""
535
 
536
+ #: views/backup.php:149
537
  msgid "Monday"
538
  msgstr ""
539
 
540
+ #: views/backup.php:150
541
  msgid "Tuesday"
542
  msgstr ""
543
 
544
+ #: views/backup.php:151
545
  msgid "Wednesday"
546
  msgstr ""
547
 
548
+ #: views/backup.php:152
549
  msgid "Thursday"
550
  msgstr ""
551
 
552
+ #: views/backup.php:153
553
  msgid "Friday"
554
  msgstr ""
555
 
556
+ #: views/backup.php:154
557
  msgid "Saturday"
558
  msgstr ""
559
 
560
+ #: views/backup.php:155
561
  msgid "Sunday"
562
  msgstr ""
563
 
564
+ #: views/backup.php:158
565
  msgid "Save Schedule"
566
  msgstr ""
567
 
568
+ #: views/backup.php:163
569
  #, php-format
570
  msgid ""
571
  "Scheduled backups are only available to WP BackItUp premium customers. "
572
  "Please visit %s to get WP BackItUp risk free for 30 days."
573
  msgstr ""
574
 
575
+ #: views/backup.php:170 views/restore.php:95
576
  msgid "Available Backups"
577
  msgstr ""
578
 
579
+ #: views/backup.php:190 views/restore.php:100
580
+ msgid "Date"
581
+ msgstr "Дата"
582
+
583
+ #: views/backup.php:191
584
+ msgid "Duration"
585
+ msgstr "Длительность"
586
+
587
+ #: views/backup.php:214
588
+ msgid "Success"
589
+ msgstr "Успешно"
590
+
591
+ #: views/backup.php:217
592
+ msgid "Active"
593
+ msgstr "Активный"
594
+
595
+ #: views/backup.php:257 views/restore.php:150
596
  msgid "No backup archives found."
597
  msgstr ""
598
 
599
+ #: views/backup.php:266
600
  #, php-format
601
  msgid ""
602
  "The automated restore feature is only available to WP BackItUp premium "
603
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
604
  msgstr ""
605
 
606
+ #: views/backup.php:275 views/restore.php:234
607
  msgid "Nothing to report"
608
  msgstr ""
609
 
610
+ #: views/backup.php:280
611
  msgid "Preparing for backup"
612
  msgstr ""
613
 
614
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
615
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
616
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
617
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
618
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
619
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
620
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
621
  msgid "Done"
622
  msgstr ""
623
 
624
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
625
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
626
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
627
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
628
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
629
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
630
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
631
  msgid "Failed"
632
+ msgstr " Неудачная"
633
+
634
+ #: views/backup.php:281
635
+ msgid "Creating inventory of files to backup"
636
  msgstr ""
637
 
638
+ #: views/backup.php:282
639
  msgid "Backing up database"
640
  msgstr ""
641
 
642
+ #: views/backup.php:283
643
  msgid "Creating backup information file"
644
  msgstr ""
645
 
646
+ #: views/backup.php:284
647
  msgid "Backing up themes"
648
  msgstr ""
649
 
650
+ #: views/backup.php:285
651
  msgid "Backing up plugins"
652
  msgstr ""
653
 
654
+ #: views/backup.php:286
655
  msgid "Backing up uploads"
656
  msgstr ""
657
 
658
+ #: views/backup.php:287
659
  msgid "Backing up everything else"
660
  msgstr ""
661
 
662
+ #: views/backup.php:288
663
  msgid "Validating backup"
664
  msgstr ""
665
 
666
+ #: views/backup.php:289
667
  msgid "Finalizing backup"
668
  msgstr ""
669
 
670
+ #: views/backup.php:299
671
  msgid "Backup completed successfully"
672
  msgstr ""
673
 
674
+ #: views/backup.php:320
675
  msgid "Backups"
676
  msgstr ""
677
 
678
+ #: views/backup.php:320
679
  msgid "Version "
680
  msgstr ""
681
 
682
+ #: views/backup.php:322
683
  msgid "Welcome to WP BackItUp!"
684
  msgstr ""
685
 
686
+ #: views/backup.php:322
687
  msgid "The simplest way to backup your WordPress site."
688
  msgstr ""
689
 
690
+ #: views/backup.php:323
691
  msgid ""
692
  "Getting started is easy, just click the backup button on the left side of "
693
  "this page."
694
  msgstr ""
695
 
696
+ #: views/backup.php:327
697
  #, php-format
698
  msgid ""
699
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
700
  "medium;color: green\">%s</span> successful backups."
701
  msgstr ""
702
 
703
+ #: views/backup.php:328
704
  msgid "Tips"
705
  msgstr ""
706
 
707
+ #: views/backup.php:329
708
  msgid "Backup your site at least once per week"
709
  msgstr ""
710
 
711
+ #: views/backup.php:330
712
  msgid "Download all your backups and store them somewhere safe"
713
  msgstr ""
714
 
715
+ #: views/backup.php:331
716
  msgid "Verify your backup files are good by taking a look at what's inside"
717
  msgstr ""
718
 
719
+ #: views/backup.php:336
720
  #, php-format
721
  msgid "Why not %s and schedule your backups!"
722
  msgstr ""
723
 
724
+ #: views/backup.php:336
725
  msgid "upgrade"
726
  msgstr ""
727
 
728
+ #: views/backup.php:345
729
  msgid "Register WP BackItUp"
730
  msgstr ""
731
 
732
+ #: views/backup.php:348
733
  msgid ""
734
  "Enter your name and email address below to receive <b>special offers</b> and "
735
  "access to our world class <b>support</b> team. <br />\n"
737
  "site."
738
  msgstr ""
739
 
740
+ #: views/backup.php:350
741
  msgid "name"
742
  msgstr ""
743
 
744
+ #: views/backup.php:351
745
  msgid "email address"
746
  msgstr ""
747
 
748
+ #: views/backup.php:352
749
  msgid "license key"
750
  msgstr ""
751
 
752
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
753
  #, php-format
754
  msgid "%s"
755
  msgstr ""
756
 
757
+ #: views/backup.php:353
758
  msgid "Free plugin customers do not need to enter license key."
759
  msgstr ""
760
 
761
+ #: views/backup.php:354
762
  msgid "Register"
763
  msgstr ""
764
 
765
+ #: views/backup.php:363
766
  msgid "License Info"
767
  msgstr ""
768
 
769
+ #: views/backup.php:385
770
  msgid "Name"
771
  msgstr ""
772
 
773
+ #: views/backup.php:386
774
  msgid "Email"
775
  msgstr ""
776
 
777
+ #: views/backup.php:387
778
  msgid "License Type"
779
  msgstr ""
780
 
781
+ #: views/backup.php:388
782
  msgid "Expires"
783
  msgstr ""
784
 
785
+ #: views/backup.php:391
786
  msgid "Enter license key to activate on this site."
787
  msgstr ""
788
 
789
+ #: views/backup.php:398
790
  msgid "License Active"
791
  msgstr ""
792
 
793
+ #: views/backup.php:406
794
  msgid "License expired"
795
  msgstr ""
796
 
797
+ #: views/backup.php:410
798
  msgid "Update"
799
  msgstr ""
800
 
801
+ #: views/backup.php:414
802
  msgid "Activate"
803
  msgstr ""
804
 
805
+ #: views/backup.php:418
806
  #, php-format
807
  msgid "Purchase a %s license using the purchase link above."
808
  msgstr ""
809
 
810
+ #: views/backup.php:418
811
  msgid "no-risk"
812
  msgstr ""
813
 
814
+ #: views/backup.php:424
815
  #, php-format
816
  msgid ""
817
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
818
+ "<strong>product updates</strong> and access to our <strong>world class "
819
+ "support</strong> team."
820
  msgstr ""
821
 
822
+ #: views/backup.php:435
823
  msgid "Useful Links"
824
  msgstr ""
825
 
826
+ #: views/backup.php:438 views/backup.php:442
827
  msgid "Your account"
828
  msgstr ""
829
 
830
+ #: views/backup.php:445
831
  msgid "Documentation"
832
+ msgstr "Документация"
833
 
834
+ #: views/backup.php:448
835
  msgid "Get support"
836
  msgstr ""
837
 
838
+ #: views/backup.php:451
839
  msgid "Feature request"
840
  msgstr ""
841
 
842
+ #: views/backup.php:453
843
+ msgid "Language Translations"
844
+ msgstr ""
845
+
846
+ #: views/backup.php:455
847
  msgid "Contact"
848
  msgstr ""
849
 
850
+ #: views/backup.php:478 views/backup.php:502
851
  msgid "WP BackItUp Backup Set"
852
  msgstr ""
853
 
854
+ #: views/backup.php:480
855
  msgid ""
856
  "Below are the archive files included in this backup set. Click the link to "
857
  "download."
858
  msgstr ""
859
 
860
+ #: views/backup.php:503
861
  msgid "Please refresh this page to download your new backup files."
862
  msgstr ""
863
 
864
+ #: views/restore.php:13
865
  #, php-format
866
  msgid "%s Restore"
867
  msgstr ""
868
 
869
+ #: views/restore.php:60
870
  msgid "Zip Files"
871
  msgstr ""
872
 
873
+ #: views/restore.php:75
874
  #, php-format
875
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
876
  msgstr ""
877
 
878
+ #: views/restore.php:82
879
  #, php-format
880
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
881
  msgstr ""
882
 
883
+ #: views/restore.php:166
884
  #, php-format
885
  msgid ""
886
  "<p>* The automated restore feature is only available to licensed customers. "
888
  "BackItUp risk free for 30 days.</p>"
889
  msgstr ""
890
 
891
+ #: views/restore.php:178
892
  msgid "Upload"
893
  msgstr ""
894
 
895
+ #: views/restore.php:181
896
  msgid ""
897
  "Upload WP BackItUp archive(zip) files to add to your list of available "
898
  "backups."
899
  msgstr ""
900
 
901
+ #: views/restore.php:198
902
  msgid "WP BackItUp - Upload backup files"
903
  msgstr ""
904
 
905
+ #: views/restore.php:199
906
  msgid "Backup files may be uploaded into WP BackItUp with this form."
907
  msgstr ""
908
 
909
+ #: views/restore.php:199
910
  msgid ""
911
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
912
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
913
  "refresh this page."
914
  msgstr ""
915
 
916
+ #: views/restore.php:203
917
  #, php-format
918
  msgid "This feature requires %s version %s or later"
919
  msgstr ""
920
 
921
+ #: views/restore.php:209
922
  msgid "Drop backup files here"
923
  msgstr ""
924
 
925
+ #: views/restore.php:215
926
  msgid ""
927
  "* Reload this page when done uploading to see new backups appear in the "
928
  "Available Backups section above. "
929
  msgstr ""
930
 
931
+ #: views/restore.php:244
932
  msgid "Preparing for restore"
933
  msgstr ""
934
 
935
+ #: views/restore.php:245
936
  msgid "Unzipping backup set"
937
  msgstr ""
938
 
939
+ #: views/restore.php:246
940
  msgid "Validating backup file"
941
  msgstr ""
942
 
943
+ #: views/restore.php:247
944
  msgid "Deactivating plugins"
945
  msgstr ""
946
 
947
+ #: views/restore.php:248
948
  msgid "Creating database restore point"
949
  msgstr ""
950
 
951
+ #: views/restore.php:249
952
  msgid "Staging content files"
953
  msgstr ""
954
 
955
+ #: views/restore.php:250
956
  msgid "Restoring content files"
957
  msgstr ""
958
 
959
+ #: views/restore.php:251
960
  msgid "Restoring database"
961
  msgstr ""
962
 
963
+ #: views/restore.php:252
964
  msgid "Updating current user info"
965
  msgstr ""
966
 
967
+ #: views/restore.php:253
968
  msgid "Updating site URL"
969
  msgstr ""
970
 
971
+ #: views/restore.php:255
972
  msgid "Updating permalinks"
973
  msgstr ""
974
 
975
+ #: views/restore.php:261
976
  msgid "Error 201: No file selected"
977
  msgstr ""
978
 
979
+ #: views/restore.php:262
980
  msgid "Error 202: Your file could not be uploaded"
981
  msgstr ""
982
 
983
+ #: views/restore.php:263
984
  msgid "Error 203: Your backup could not be unzipped"
985
  msgstr ""
986
 
987
+ #: views/restore.php:264
988
  msgid ""
989
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
990
  "valid backup"
991
  msgstr ""
992
 
993
+ #: views/restore.php:265
994
  msgid "Error 205: Cannot create restore point"
995
  msgstr ""
996
 
997
+ #: views/restore.php:266
998
  msgid "Error 206: Unable to connect to your database"
999
  msgstr ""
1000
 
1001
+ #: views/restore.php:267
1002
  msgid ""
1003
  "Error 207: Unable to get current site URL from database. Please try again"
1004
  msgstr ""
1005
 
1006
+ #: views/restore.php:268
1007
  msgid ""
1008
  "Error 208: Unable to get current home URL from database. Please try again"
1009
  msgstr ""
1010
 
1011
+ #: views/restore.php:269
1012
  msgid ""
1013
  "Error 209: Unable to get current user ID from database. Please try again"
1014
  msgstr ""
1015
 
1016
+ #: views/restore.php:270
1017
  msgid ""
1018
  "Error 210: Unable to get current user password from database. Please try "
1019
  "again"
1020
  msgstr ""
1021
 
1022
+ #: views/restore.php:271
1023
  msgid ""
1024
  "Error 211: Unable to get current user email from database. Please try again"
1025
  msgstr ""
1026
 
1027
+ #: views/restore.php:272
1028
  msgid ""
1029
  "Error 212: Unable to import your database. This may require importing the "
1030
  "file manually"
1031
  msgstr ""
1032
 
1033
+ #: views/restore.php:273
1034
  msgid ""
1035
  "Warning 213: Unable to update your site URL value. Please check your "
1036
  "WordPress general settings to make sure your Site and WordPress URLs are "
1037
  "correct"
1038
  msgstr ""
1039
 
1040
+ #: views/restore.php:274
1041
  msgid ""
1042
  "Warning 214: Unable to update your home URL value. Please check your "
1043
  "WordPress general settings to make sure your Site and WordPress URLs are "
1044
  "correct"
1045
  msgstr ""
1046
 
1047
+ #: views/restore.php:275
1048
  msgid ""
1049
  "Warning 215: Unable to update your user information. This may require you to "
1050
  "login with the admin username and password that was used when the backup was "
1051
  "created"
1052
  msgstr ""
1053
 
1054
+ #: views/restore.php:276
1055
  msgid "Error 216: Database not found in backup"
1056
  msgstr ""
1057
 
1058
+ #: views/restore.php:277
1059
  msgid "Warning 217: Unable to remove existing wp-content directory"
1060
  msgstr ""
1061
 
1062
+ #: views/restore.php:278
1063
  msgid ""
1064
  "Error 218: Unable to create new wp-content directory. Please check your "
1065
  "CHMOD settings in /wp-content/"
1066
  msgstr ""
1067
 
1068
+ #: views/restore.php:279
1069
  msgid "Error 219: Unable to import wp-content. Please try again"
1070
  msgstr ""
1071
 
1072
+ #: views/restore.php:280
1073
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1074
  msgstr ""
1075
 
1076
+ #: views/restore.php:281
1077
  #, php-format
1078
  msgid ""
1079
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1082
  "> FAQs</a> for more info."
1083
  msgstr ""
1084
 
1085
+ #: views/restore.php:282
1086
  msgid "Error 222: Unable to create restore folder"
1087
  msgstr ""
1088
 
1089
+ #: views/restore.php:283
1090
  msgid ""
1091
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1092
  "restore the database to its previous state but were unsuccessful. Please "
1094
  "further restores"
1095
  msgstr ""
1096
 
1097
+ #: views/restore.php:284
1098
  msgid ""
1099
  "Error 224: An error occurred during the restore, however, we have "
1100
  "successfully restored your database to the previous state"
1101
  msgstr ""
1102
 
1103
+ #: views/restore.php:285
1104
  msgid ""
1105
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1106
  msgstr ""
1107
 
1108
+ #: views/restore.php:286
1109
  msgid ""
1110
  "Error 226: Restore cannot proceed because your backup was created using a "
1111
  "different version of WordPress"
1112
  msgstr ""
1113
 
1114
+ #: views/restore.php:287
1115
  msgid ""
1116
  "Error 227: Restore cannot proceed because your backup was created using a "
1117
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1118
  "help convert this backup to the current version"
1119
  msgstr ""
1120
 
1121
+ #: views/restore.php:288
1122
  msgid ""
1123
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1124
  "restore. However, we were able to successfully revert the database back to "
1125
  "its original state . This error may require importing the database manually"
1126
  msgstr ""
1127
 
1128
+ #: views/restore.php:289
1129
  msgid ""
1130
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1131
  "utility available. Please contact support"
1132
  msgstr ""
1133
 
1134
+ #: views/restore.php:290
1135
  msgid ""
1136
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1137
  "running. Please wait for the backup to complete and then try again"
1138
  msgstr ""
1139
 
1140
+ #: views/restore.php:292
1141
  msgid ""
1142
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1143
  "manifest is empty"
1144
  msgstr ""
1145
 
1146
+ #: views/restore.php:293
1147
  msgid ""
1148
  "Error 252: At least one zip file is missing from your backup set. Please "
1149
  "make sure to upload all zip files that were part of this backup"
1150
  msgstr ""
1151
 
1152
+ #: views/restore.php:294
1153
  msgid ""
1154
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1155
  "Please make sure to upload only zip files that were part of this backup"
1156
  msgstr ""
1157
 
1158
+ #: views/restore.php:296
1159
  msgid ""
1160
  "Warning 300: Unable to restore all WordPress content. Please review your "
1161
  "restore logs to see what WP BackItUp was unable to restore"
1162
  msgstr ""
1163
 
1164
+ #: views/restore.php:297
1165
  msgid ""
1166
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1167
  "to see what WP BackItUp was unable to restore"
1168
  msgstr ""
1169
 
1170
+ #: views/restore.php:299
1171
  msgid "Error 2001: Unable to prepare site for restore"
1172
  msgstr ""
1173
 
1174
+ #: views/restore.php:300
1175
  msgid "Error 2002: Unable to unzip backup"
1176
  msgstr ""
1177
 
1178
+ #: views/restore.php:301
1179
  msgid "Error 2003: Unable to validate backup"
1180
  msgstr ""
1181
 
1182
+ #: views/restore.php:302
1183
  msgid "Error 2004: Unable to create restore point"
1184
  msgstr ""
1185
 
1186
+ #: views/restore.php:303
1187
  msgid "Error 2005: Unable to stage wp-content"
1188
  msgstr ""
1189
 
1190
+ #: views/restore.php:304
1191
  msgid "Error 2006: Unable to restore content files"
1192
  msgstr ""
1193
 
1194
+ #: views/restore.php:305
1195
  msgid "Error 2007: Unable to restore database"
1196
  msgstr ""
1197
 
1198
+ #: views/restore.php:306
1199
  msgid "Error 2999: Unexpected error encountered"
1200
  msgstr ""
1201
 
1202
+ #: views/restore.php:313
1203
  msgid ""
1204
  "Restore completed successfully. If you are prompted to login please do so "
1205
  "with your current username and password"
1206
  msgstr ""
1207
 
1208
+ #: views/settings.php:13
1209
  #, php-format
1210
  msgid "%s Settings"
1211
+ msgstr "Настройки %s"
1212
 
1213
+ #: views/settings.php:40
1214
  msgid "Email Notifications"
1215
  msgstr ""
1216
 
1217
+ #: views/settings.php:41
1218
  msgid ""
1219
  "Please enter your email address if you would like to receive backup email "
1220
  "notifications."
1221
  msgstr ""
1222
 
1223
+ #: views/settings.php:42
1224
  msgid ""
1225
  "Backup email notifications will be sent for every backup and will contain "
1226
  "status information related to the backup."
1227
  msgstr ""
1228
 
1229
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1230
+ #: views/settings.php:111
1231
  msgid "Save"
1232
  msgstr ""
1233
 
1234
+ #: views/settings.php:60
1235
  msgid "Backup Retention"
1236
  msgstr ""
1237
 
1238
+ #: views/settings.php:61
1239
  msgid ""
1240
  "Enter the number of backup archives that you would like to remain on the "
1241
  "server."
1242
  msgstr ""
1243
 
1244
+ #: views/settings.php:62
1245
  msgid ""
1246
  "Many hosts limit the amount of space that you can take up on their servers. "
1247
  "This option tells WP BackItUp the maximum number of backup archives that "
1249
  "oldest backup archives first."
1250
  msgstr ""
1251
 
1252
+ #: views/settings.php:81
1253
  msgid "Turn on logging?"
1254
  msgstr ""
1255
 
1256
+ #: views/settings.php:82
1257
  msgid "Yes"
1258
  msgstr ""
1259
 
1260
+ #: views/settings.php:83
1261
  msgid "No"
1262
  msgstr ""
1263
 
1264
+ #: views/settings.php:84
1265
  msgid ""
1266
  "This option should only be turned on when troubleshooting issues with "
1267
  "WPBackItUp support."
1268
  msgstr ""
1269
 
1270
+ #: views/settings.php:89
1271
  msgid "Advanced Settings"
1272
  msgstr ""
1273
 
1274
+ #: views/settings.php:90
1275
  msgid ""
1276
  "These options should only be changed when working with WP BackItUp support."
1277
  msgstr ""
1278
 
1279
+ #: views/settings.php:93
1280
  msgid "Plugins Batch Size"
1281
  msgstr ""
1282
 
1283
+ #: views/settings.php:98
1284
  msgid "Themes Batch Size"
1285
  msgstr ""
1286
 
1287
+ #: views/settings.php:103
1288
  msgid "Uploads Batch Size"
1289
  msgstr ""
1290
 
1291
+ #: views/settings.php:108
1292
  msgid "Others Batch Size"
1293
  msgstr ""
1294
 
1295
+ #: views/support.php:13
1296
  #, php-format
1297
  msgid "%s Support"
1298
  msgstr ""
1299
 
1300
+ #: views/support.php:32
1301
  msgid "Support email sent successfully!"
1302
  msgstr ""
1303
 
1304
+ #: views/support.php:45
1305
  msgid "Email Logs to Support"
1306
  msgstr ""
1307
 
1308
+ #: views/support.php:46
1309
  msgid "This form should be used to send log files to support only."
1310
  msgstr ""
1311
 
1312
+ #: views/support.php:47
1313
  msgid ""
1314
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1315
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1316
  "using this form."
1317
  msgstr ""
1318
 
1319
+ #: views/support.php:48
1320
  msgid ""
1321
  "The ticket id you receive from your support request should be entered in the "
1322
  "ticket id field below."
1323
  msgstr ""
1324
 
1325
+ #: views/support.php:49
1326
  msgid "your email address"
1327
  msgstr ""
1328
 
1329
+ #: views/support.php:59
1330
  msgid "support ticket id"
1331
  msgstr ""
1332
 
1333
+ #: views/support.php:69
1334
  msgid "problem description or additional information"
1335
  msgstr ""
1336
 
1337
+ #: views/support.php:80
1338
  msgid "Send"
1339
  msgstr ""
1340
 
1341
+ #: views/support.php:83
1342
  msgid "Please register your version of WP BackItUp for access to support."
1343
  msgstr ""
1344
 
1345
+ #: views/support.php:87
1346
  msgid "Premium customers receive priority support."
1347
  msgstr ""
1348
 
1349
+ #: wp-backitup.php:98 wp-backitup.php:99
1350
  #, php-format
1351
  msgid "Every %s hours"
1352
  msgstr ""
1353
+
1354
+ #: wp-backitup.php:137
1355
+ msgid "Cleanup"
1356
+ msgstr ""
languages/wp-backitup-tl.mo CHANGED
Binary file
languages/wp-backitup-tl.po CHANGED
@@ -5,8 +5,8 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP BackItUp\n"
8
- "POT-Creation-Date: 2015-08-14 10:30-0400\n"
9
- "PO-Revision-Date: 2015-08-14 10:30-0400\n"
10
  "Last-Translator: sheisjeremy\n"
11
  "Language-Team: Tagalog (http://www.transifex.com/wp-translations/wp-backitup/"
12
  "language/tl/)\n"
@@ -20,181 +20,205 @@ msgstr ""
20
  "X-Poedit-KeywordsList: _;__;_e\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
24
- #: views/backup.php:179
 
25
  msgid "Backup"
26
  msgstr "Backup"
27
 
28
- #: lib/includes/class-wpbackitup-admin.php:175
29
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
30
  msgid "Restore"
31
  msgstr "Ibalik sa orihinal"
32
 
33
- #: lib/includes/class-wpbackitup-admin.php:179
34
  msgid "Support"
35
  msgstr "Suport"
36
 
37
- #: lib/includes/class-wpbackitup-admin.php:182
38
  msgid "Settings"
39
  msgstr "Mga Setting"
40
 
41
- #: lib/includes/class-wpbackitup-admin.php:203
42
  msgid ""
43
  "The backup you have selected exceeds what your host allows you to upload."
44
  msgstr ""
45
  "Ang iyong pinili na mga backup ay lumampas sa pinapayagan ng iyong host na "
46
  "dapat i-upload."
47
 
48
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
49
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
50
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
51
- #: views/backup.php:312 views/backup.php:313
52
  msgid "Warning"
53
  msgstr "Babala"
54
 
55
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
56
  msgid "Error"
57
  msgstr "Pagkakamali"
58
 
59
- #: lib/includes/class-wpbackitup-admin.php:206
60
  msgid "Response"
61
  msgstr "Tugon"
62
 
63
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
64
- #: views/restore.php:205
65
  msgid "Status"
66
  msgstr "Kalagayan o Katayuan"
67
 
68
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
69
  msgid "Download"
70
  msgstr "Download"
71
 
72
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
73
- #: views/restore.php:111
74
  msgid "Delete"
75
  msgstr "Burahin"
76
 
77
- #: lib/includes/class-wpbackitup-admin.php:211
78
  msgid "(JS997) Unexpected error"
79
  msgstr "(JS997) hindi inaasahang pagkakamali o hindi inaasahang error"
80
 
81
- #: lib/includes/class-wpbackitup-admin.php:212
82
  msgid "(JS998) Unexpected error"
83
  msgstr "(JS998) hindi inaasahang pagkakamali o hindi inaasahang error"
84
 
85
- #: lib/includes/class-wpbackitup-admin.php:213
86
  msgid "(JS999) An unexpected error has occurred"
87
  msgstr ""
88
  "(JS999) Nangyari ang hindi inaasahang pagkakamali o Nangyari ang hindi "
89
  "inaasahang error"
90
 
91
- #: lib/includes/class-wpbackitup-admin.php:214
92
  msgid "Scheduled has been saved."
93
  msgstr "Ang schedule ay naka-save."
94
 
95
- #: lib/includes/class-wpbackitup-admin.php:215
96
  msgid "Scheduled was not saved."
97
  msgstr "Ang schedule ay hindi naka - save. "
98
 
99
- #: lib/includes/class-wpbackitup-admin.php:216
100
  msgid "Are you sure you want to restore your site?"
101
  msgstr ""
102
  "Ikaw ba ay nakasisiguro na dapat ibalik sa orihinal ang iyong website? "
103
 
104
- #: lib/includes/class-wpbackitup-admin.php:217
105
  msgid "Are you sure ?"
106
  msgstr "Ikaw ba ay nakasisiguro?"
107
 
108
- #: lib/includes/class-wpbackitup-admin.php:218
109
  msgid "This file cannot be delete!"
110
  msgstr "Ang file na ito ay hindi maaaring tanggalin!"
111
 
112
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
113
  msgid "View Log"
114
  msgstr "Tignan ang log files. "
115
 
116
- #: lib/includes/class-wpbackitup-admin.php:220
117
  msgid "New Backup!"
118
  msgstr "Bagong backup!"
119
 
120
- #: lib/includes/class-wpbackitup-admin.php:221
121
  msgid "Uploaded Backup"
122
  msgstr "Na upload na backup"
123
 
124
- #: lib/includes/class-wpbackitup-admin.php:480
125
  msgid "Backup Queued"
126
  msgstr "Mga naka linya para sa backup."
127
 
128
- #: lib/includes/class-wpbackitup-admin.php:482
129
  msgid "Backup could not be queued"
130
  msgstr "Ang backup ay hindi maaaring isama sa mga naka linya"
131
 
132
- #: lib/includes/class-wpbackitup-admin.php:485
133
- msgid "Backup already in queue"
134
- msgstr "Ang backup ay nasa linya na"
135
-
136
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
137
- msgid "Backup Cancelled"
138
- msgstr "Nakansela na backup "
139
 
140
- #: lib/includes/class-wpbackitup-admin.php:535
141
  msgid "No backup file selected."
142
  msgstr "Walang backup file na napili"
143
 
144
- #: lib/includes/class-wpbackitup-admin.php:542
145
  msgid "No user id found."
146
  msgstr "Walang matagpuan na user id"
147
 
148
- #: lib/includes/class-wpbackitup-admin.php:553
149
  msgid "Restore Queued"
150
  msgstr "Mga naka linya na ibabalik sa orihinal"
151
 
152
- #: lib/includes/class-wpbackitup-admin.php:555
153
  msgid "Restore could not be queued"
154
  msgstr "Hindi maaaring isama sa mga naka linya na ibabalik sa orihinal. "
155
 
156
- #: lib/includes/class-wpbackitup-admin.php:558
157
  msgid "Restore already in queue"
158
  msgstr "Ang mga dapat ibalik sa orihinal ay nakalinya na. "
159
 
160
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
161
  msgid "No response log found."
162
  msgstr "Walang makita na response log."
163
 
164
- #: lib/includes/class-wpbackitup-admin.php:836
165
- #: lib/includes/class-wpbackitup-admin.php:844
166
- #: lib/includes/class-wpbackitup-admin.php:873
167
- #: lib/includes/class-wpbackitup-admin.php:880
168
- #: lib/includes/class-wpbackitup-admin.php:887
169
- #: lib/includes/class-wpbackitup-admin.php:894
170
  msgid "Please enter a number"
171
  msgstr "Maglagay ng numero "
172
 
173
- #: lib/includes/class-wpbackitup-admin.php:865
174
- #: lib/includes/class-wpbackitup-admin.php:972
175
  msgid "Please enter a valid email"
176
  msgstr "Ilagay ang tamang email."
177
 
178
- #: lib/includes/class-wpbackitup-admin.php:979
179
  msgid "Please enter your support ticket id"
180
  msgstr "Ilagay ang iyong suport ticket id"
181
 
182
- #: lib/includes/class-wpbackitup-admin.php:984
183
  msgid "Please only enter numbers in this field"
184
  msgstr "Ilagay lamang ang numero"
185
 
186
- #: lib/includes/class-wpbackitup-admin.php:1645
187
  msgid "License is invalid."
188
  msgstr "Ang lisensya ay hindi wasto"
189
 
190
- #: lib/includes/class-wpbackitup-admin.php:1650
191
  msgid "License has expired."
192
  msgstr "Ang lisensya ay wala ng bisa."
193
 
194
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid "Activation limit has been reached."
196
  msgstr "Ang pagtatakda ng aktibasyon ay umabot na sa limitasyon "
197
 
 
 
 
 
198
  #: lib/includes/handler_upload.php:29
199
  msgid "Invalid Nonce"
200
  msgstr "Hindi wastong nonces"
@@ -221,97 +245,63 @@ msgstr "Ang upload ay mistulang hindi WP BackItUp backup archive file."
221
  msgid "Could not import file into WP BackItUp backup set."
222
  msgstr "Hindi ma -import ang file sa backup set ng WP BackItUp"
223
 
224
- #: lib/includes/job_backup.php:851
225
- msgid "Preparing for backup...Done"
226
- msgstr "Paghahanda para sa backup.....Tapos na"
227
-
228
- #: lib/includes/job_backup.php:852
229
- msgid "Backing up database...Done"
230
- msgstr "Pag backup ng database...Tapos na"
231
-
232
- #: lib/includes/job_backup.php:853
233
- msgid "Creating backup information file...Done"
234
- msgstr "Paggawa ng backup information file...Tapos na"
235
-
236
- #: lib/includes/job_backup.php:854
237
- msgid "Backing up themes...Done"
238
- msgstr "Pag backup ng tema ...Tapos na"
239
-
240
- #: lib/includes/job_backup.php:855
241
- msgid "Backing up plugins...Done"
242
- msgstr "Pag backup ng plugins...Tapos na"
243
-
244
- #: lib/includes/job_backup.php:856
245
- msgid "Backing up uploads...Done"
246
- msgstr "Pag backup ng uploads...Tapos na"
247
-
248
- #: lib/includes/job_backup.php:857
249
- msgid "Backing up miscellaneous files...Done"
250
- msgstr "Pag backup ng sari- sari na files...Tapos na"
251
-
252
- #: lib/includes/job_backup.php:858
253
- msgid "Finalizing backup...Done"
254
- msgstr "Pag kumpleto ng backup...Tapos na"
255
-
256
- #: lib/includes/job_backup.php:859
257
- msgid "Validating backup...Done"
258
- msgstr "Pagbibigay bisa sa mga backup...Tapos na"
259
-
260
- #: lib/includes/job_backup.php:860
261
- msgid "Cleaning up...Done"
262
- msgstr "Paglilinis ...Tapos na"
263
 
264
- #: lib/includes/job_backup.php:870
265
  #, php-format
266
  msgid "%s - Backup completed successfully."
267
  msgstr "%s Matagumpay na nakumpleto ang back up "
268
 
269
- #: lib/includes/job_backup.php:871
270
  msgid "Your backup completed successfully."
271
  msgstr "Matagumpay na nakumpleto ang iyong backup"
272
 
273
- #: lib/includes/job_backup.php:874
274
  #, php-format
275
  msgid "%s - Backup did not complete successfully."
276
  msgstr "%s - Ang backup ay hindi matagumpay na nakumpleto"
277
 
278
- #: lib/includes/job_backup.php:875
279
  msgid "Your backup did not complete successfully."
280
  msgstr "Ang iyong backup ay hindi matagumpay na nakumpleto"
281
 
282
- #: lib/includes/job_backup.php:880
283
  #, php-format
284
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
285
  msgstr "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
286
 
287
- #: lib/includes/job_backup.php:881
288
  msgid "Backup date:"
289
  msgstr "Petsa ng backup"
290
 
291
- #: lib/includes/job_backup.php:882
292
  msgid "Number of backups completed with WP BackItUp:"
293
  msgstr "Bilang ng mga nakumpleto na backup sa WP BackItUp "
294
 
295
- #: lib/includes/job_backup.php:884
296
  msgid "Completion Code:"
297
  msgstr "Completion Code:"
298
 
299
- #: lib/includes/job_backup.php:885
300
  msgid "WP BackItUp Version:"
301
  msgstr "Bersyon ng WP BackItUp "
302
 
303
- #: lib/includes/job_backup.php:891
304
- msgid "Steps Completed"
305
- msgstr "Nakumpleto ang bawat hakbang "
306
-
307
- #: lib/includes/job_backup.php:912
308
  #, php-format
309
  msgid "Checkout %s for info about WP BackItUp and our other products."
310
  msgstr ""
311
  "Siyasatin ang %s para sa impormasyon tungkol sa WP BackItUp at ang aming iba "
312
  "pang mga produkto."
313
 
314
- #: lib/includes/job_backup.php:1088
315
  msgid ""
316
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
317
  "settings of your wp-backitup backup directory"
@@ -320,7 +310,7 @@ msgstr ""
320
  "suriin ang setting ng CHMOD ng iyong direktoryo para sa backup ng wp-"
321
  "backitup "
322
 
323
- #: lib/includes/job_backup.php:1089
324
  msgid ""
325
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
326
  "your wp-backitup plugin directory"
@@ -328,37 +318,37 @@ msgstr ""
328
  "(102) Hindi makalikha ng direktoryo para sa backup. Mangyaring suriin ang "
329
  "setting ng CHMOD sa iyong direktoryo ng plugin ng wp-backitup "
330
 
331
- #: lib/includes/job_backup.php:1090
332
  msgid "(103) Unable to backup your files. Please try again"
333
  msgstr "(103) Hindi ma-backup ang iyong mga files. Mangyaring subukan muli"
334
 
335
- #: lib/includes/job_backup.php:1091
336
  msgid "(104) Unable to export your database. Please try again"
337
  msgstr "(104) Hindi ma-export ang iyong database. Mangyaring subukan muli"
338
 
339
- #: lib/includes/job_backup.php:1092
340
  msgid "(105) Unable to export site information file. Please try again"
341
  msgstr ""
342
  "(105) Hindi ma -export ang site information file. Mangyaring subukan muli"
343
 
344
- #: lib/includes/job_backup.php:1093
345
  msgid "(106) Unable to cleanup your backup directory"
346
  msgstr "(106) Hindi malinisan ang iyong direktoryo ng backup"
347
 
348
- #: lib/includes/job_backup.php:1094
349
  msgid "(107) Unable to compress(zip) your backup. Please try again"
350
  msgstr "(107) Hindi masiksik ang iyong backup. Mangyaring subukan muli"
351
 
352
- #: lib/includes/job_backup.php:1095
353
  msgid "(108) Unable to backup your site data files. Please try again"
354
  msgstr ""
355
  "(108) Hindi ma-backup ang iyong site data files .Mangyaring subukan muli"
356
 
357
- #: lib/includes/job_backup.php:1096
358
  msgid "(109) Unable to finalize backup. Please try again"
359
  msgstr "(109) Hindi ma-kumpleto ang backup. Mangyaring subukan muli"
360
 
361
- #: lib/includes/job_backup.php:1097
362
  msgid ""
363
  "(114) Your database was accessible but an export could not be created. "
364
  "Please contact support by clicking the get support link on the right. Please "
@@ -370,25 +360,25 @@ msgstr ""
370
  "ipaalam sa amin kung sino ang iyong host kung kayo ay magpapadala ng "
371
  "kahilingan."
372
 
373
- #: lib/includes/job_backup.php:1098
374
  msgid "(120) Unable to backup your themes. Please try again"
375
  msgstr "(120) Hindi ma-backup ang iyong tema. Mangyaring subukan muli"
376
 
377
- #: lib/includes/job_backup.php:1099
378
  msgid "(121) Unable to backup your plugins. Please try again"
379
  msgstr "(121) Hindi ma-backup ang iyong mga plugins. Mangyaring subukan muli"
380
 
381
- #: lib/includes/job_backup.php:1100
382
  msgid "(122) Unable to backup your uploads. Please try again"
383
  msgstr "(122) Hindi ma-backup ang iyong mga uploads. Mangyaring subukan muli"
384
 
385
- #: lib/includes/job_backup.php:1101
386
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
387
  msgstr ""
388
  "(123) Hindi ma-backup ang iyong sari-sari na mga file. Mangyaring subukan "
389
  "muli"
390
 
391
- #: lib/includes/job_backup.php:1102
392
  msgid ""
393
  "(125) Unable to compress your backup because there is no zip utility "
394
  "available. Please contact support"
@@ -396,21 +386,21 @@ msgstr ""
396
  "(125) Hindi ma- siksik ang iyong backup dahil walang available na zip "
397
  "utility. Mangyaring makipag-ugnayan sa support para sa tulong. "
398
 
399
- #: lib/includes/job_backup.php:1103
400
  msgid "(126) Unable to validate your backup. Please try again"
401
  msgstr "(126) Hindi ma-validate ang iyong backup. Mangyaring subukan muli"
402
 
403
- #: lib/includes/job_backup.php:1104
404
  msgid "(127) Unable to create inventory of files to backup. Please try again"
405
  msgstr ""
406
  "(127) Hindi makalikha ng imbentaryo ng mga files na dapat i- backup. "
407
  "Mangyaring subukan muli"
408
 
409
- #: lib/includes/job_backup.php:1105
410
  msgid "(128) Unable to create job control record. Please try again"
411
  msgstr "(128) Hindi makalikha ng job control record. Mangyaring subukan muli"
412
 
413
- #: lib/includes/job_backup.php:1107
414
  msgid ""
415
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
416
  "settings of your wp-backitup backup directory"
@@ -419,7 +409,7 @@ msgstr ""
419
  "suriin ang setting ng CHMOD ng iyong direktoryo para sa backup ng wp-"
420
  "backitup "
421
 
422
- #: lib/includes/job_backup.php:1108
423
  msgid ""
424
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
425
  "your wp-backitup plugin directory"
@@ -427,38 +417,38 @@ msgstr ""
427
  "(2102) Hindi makalikha ng direktoryo ng backup. Mangyaring suriin ang mga "
428
  "setting ng CHMOD ng inyong direktoryo ng plugin ng wp-backitup "
429
 
430
- #: lib/includes/job_backup.php:1109
431
  msgid "(2103) Unable to backup your files. Please try again"
432
  msgstr "(2103) Hindi ma-backup ang iyong mga files. Mangyaring subukan muli"
433
 
434
- #: lib/includes/job_backup.php:1110
435
  msgid "(2104) Unable to export your database. Please try again"
436
  msgstr "(2104) Hindi ma-export ang iyong database. Mangyaring subukan muli"
437
 
438
- #: lib/includes/job_backup.php:1111
439
  msgid "(2105) Unable to export site information file. Please try again"
440
  msgstr ""
441
  "(2105) Hindi ma-export and site information file. Mangyaring subukan muli"
442
 
443
- #: lib/includes/job_backup.php:1112
444
  msgid "(2106) Unable to cleanup your backup directory"
445
  msgstr "(2106) Hindi malinisan ang iyong direktoryo ng backup"
446
 
447
- #: lib/includes/job_backup.php:1113
448
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
449
  msgstr ""
450
  "(2107) Hindi ma-siksik sa (zip) ang iyong backup. Mangyaring subukan muli"
451
 
452
- #: lib/includes/job_backup.php:1114
453
  msgid "(2108) Unable to backup your site data files. Please try again"
454
  msgstr ""
455
  "(2108) Hindi ma-backup ang iyong site data files. Mangyaring subukan muli"
456
 
457
- #: lib/includes/job_backup.php:1115
458
  msgid "(2109) Unable to finalize backup. Please try again"
459
  msgstr "(2109) Hindi ma-kumpleto ang backup. Mangyaring subukan muli"
460
 
461
- #: lib/includes/job_backup.php:1116
462
  msgid ""
463
  "(2114) Your database was accessible but an export could not be created. "
464
  "Please contact support by clicking the get support link on the right. Please "
@@ -470,25 +460,25 @@ msgstr ""
470
  "ipaalam sa amin kung sino ang iyong host kung kayo ay magpapadala ng "
471
  "kahilingan."
472
 
473
- #: lib/includes/job_backup.php:1117
474
  msgid "(2120) Unable to backup your themes. Please try again"
475
  msgstr "(2120) Hindi ma-backup ang iyong tema. Mangyaring subukan muli"
476
 
477
- #: lib/includes/job_backup.php:1118
478
  msgid "(2121) Unable to backup your plugins. Please try again"
479
  msgstr "(2121) Hindi ma-backup ang iyong mga plugins. Mangyaring subukan muli"
480
 
481
- #: lib/includes/job_backup.php:1119
482
  msgid "(2122) Unable to backup your uploads. Please try again"
483
  msgstr "(2122) Hindi ma-backup ang iyong mga upload. Mangyaring subukan muli"
484
 
485
- #: lib/includes/job_backup.php:1120
486
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
487
  msgstr ""
488
  "(2123) Hindi ma-backup ang iyong mga sari-sari na mga file. Mangyaring "
489
  "subukan muli"
490
 
491
- #: lib/includes/job_backup.php:1121
492
  msgid ""
493
  "(2125) Unable to compress your backup because there is no zip utility "
494
  "available. Please contact support"
@@ -496,48 +486,52 @@ msgstr ""
496
  "(2125) Hindi ma-isiksik ang iyong backup dahil walang magagamit na zip "
497
  "utility. Mangyaring makipag-ugnayan sa suport para sa tulong"
498
 
499
- #: lib/includes/job_backup.php:1122
500
  msgid "(2126) Unable to validate your backup. Please try again"
501
  msgstr "(2126) Hindi ma-validate ang iyong backup. Mangyaring subukan muli"
502
 
503
- #: lib/includes/job_backup.php:1123
504
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
505
  msgstr ""
506
  "(2127) Hindi makalikha ng imbentaryo ng mga files na dapat i- backup. "
507
  "Mangyaring subukan muli"
508
 
509
- #: lib/includes/job_backup.php:1124
510
  msgid "(2128) Unable to create job control record. Please try again"
511
  msgstr "(2128) Hindi makalikha ng job control record. Mangyaring subukan muli"
512
 
513
- #: lib/includes/job_backup.php:1127
514
  msgid "(999) Unexpected error"
515
  msgstr "(999) Hindi inaasahang error o hindi inaasahang pagkakamali"
516
 
517
  #. TRANSLATORS: %s = plugin name.
518
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
519
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
520
- #: views/backup.php:20
521
  #, php-format
522
  msgid "%s Dashboard"
523
  msgstr "%s Dashboard"
524
 
525
- #: views/backup.php:150
 
 
 
 
526
  #, php-format
527
  msgid "Backup folder does not exist. Please contact %s for assistance."
528
  msgstr ""
529
  "Ang backup folder ay hindi umiiral. Makipagugnayan sa %s suport para sa "
530
  "tulong. "
531
 
532
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
533
  msgid "support"
534
  msgstr "Suport"
535
 
536
- #: views/backup.php:153 views/backup.php:159
537
  msgid "Close"
538
  msgstr "Isara"
539
 
540
- #: views/backup.php:174
541
  msgid ""
542
  "Click the backup button to create a zipped backup file of this site's "
543
  "database, plugins, themes and settings."
@@ -545,7 +539,7 @@ msgstr ""
545
  "I-click ang buton na backup upang lumikha ng zip backup file ng database, "
546
  "plugins, mga tema at mga setting ng site database"
547
 
548
- #: views/backup.php:175
549
  msgid ""
550
  "Once your backup file has been created it will appear in the available "
551
  "backups section below. This file may remain on your hosting providers server "
@@ -556,7 +550,7 @@ msgstr ""
556
  "hosting provider server ngunit inirerekumenda namin na iyong i-download at i-"
557
  "save . "
558
 
559
- #: views/backup.php:176
560
  msgid ""
561
  "WP BackItUp premium customers can use these backup files to perform an "
562
  "automated restore of their site."
@@ -565,11 +559,11 @@ msgstr ""
565
  "files upang magsagawa ng awtomatikong pagbalik sa orihinal ng kanilang "
566
  "site. "
567
 
568
- #: views/backup.php:180
569
  msgid "Cancel"
570
  msgstr "Ikansela"
571
 
572
- #: views/backup.php:187
573
  #, php-format
574
  msgid ""
575
  "WP BackItUp lite customers may use these backup files to manually restore "
@@ -579,15 +573,15 @@ msgstr ""
579
  "para mano-manong ibalik sa orihinal ang kanilang site. Mangyaring bisitahin "
580
  "ang %s para sa mga tagubilin."
581
 
582
- #: views/backup.php:194
583
  msgid "Backup Schedule"
584
  msgstr "Backup Iskedyul"
585
 
586
- #: views/backup.php:196
587
  msgid "Select the days of the week you would like your backup to run."
588
  msgstr "Piliin ang mga araw na nais mong magsimula ang iyong backup "
589
 
590
- #: views/backup.php:198
591
  msgid ""
592
  "Backup your site once per week or every day, it's up to you. If you have "
593
  "email notifications turned on we'll even send you an email when it's done. "
@@ -602,45 +596,45 @@ msgstr ""
602
  "Ang file na ito ay maaaring manatili sa iyong hosting provider server ngunit "
603
  "inirerekumenda namin na iyong i-download at i-save."
604
 
605
- #: views/backup.php:200
606
  msgid "Please make sure to schedule your backup for at least once per week."
607
  msgstr ""
608
  "Mangyaring siguraduhin na mag-iskedyul ng iyong mga backup , isang beses sa "
609
  "isang linggo."
610
 
611
- #: views/backup.php:204
612
  msgid "Monday"
613
  msgstr "Lunes"
614
 
615
- #: views/backup.php:205
616
  msgid "Tuesday"
617
  msgstr "Martes"
618
 
619
- #: views/backup.php:206
620
  msgid "Wednesday"
621
  msgstr "Miyerkules"
622
 
623
- #: views/backup.php:207
624
  msgid "Thursday"
625
  msgstr "Huwebes"
626
 
627
- #: views/backup.php:208
628
  msgid "Friday"
629
  msgstr "Biyernes"
630
 
631
- #: views/backup.php:209
632
  msgid "Saturday"
633
  msgstr "Sabado"
634
 
635
- #: views/backup.php:210
636
  msgid "Sunday"
637
  msgstr "Linggo"
638
 
639
- #: views/backup.php:213
640
  msgid "Save Schedule"
641
  msgstr "I-save ang iskedyul "
642
 
643
- #: views/backup.php:218
644
  #, php-format
645
  msgid ""
646
  "Scheduled backups are only available to WP BackItUp premium customers. "
@@ -650,15 +644,31 @@ msgstr ""
650
  "customer. Mangyaring bisitahin ang %s upang makakuha ng WP BackItUp risk "
651
  "free para sa 30 araw. "
652
 
653
- #: views/backup.php:225 views/restore.php:94
654
  msgid "Available Backups"
655
  msgstr "Mayroong Backups "
656
 
657
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
  msgid "No backup archives found."
659
  msgstr "Walang nahanap na backup archive"
660
 
661
- #: views/backup.php:291
662
  #, php-format
663
  msgid ""
664
  "The automated restore feature is only available to WP BackItUp premium "
@@ -668,87 +678,91 @@ msgstr ""
668
  "premium customer. Mangyaring bisitahin ang %s upang makakuha ng WP BackItUp "
669
  "risk free para sa 30 araw."
670
 
671
- #: views/backup.php:300 views/restore.php:209
672
  msgid "Nothing to report"
673
  msgstr "Walang maiulat"
674
 
675
- #: views/backup.php:305
676
  msgid "Preparing for backup"
677
  msgstr "Paghahanda para sa backup"
678
 
679
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
680
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
681
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
682
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
683
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
684
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
685
- #: views/restore.php:228 views/restore.php:230
686
  msgid "Done"
687
  msgstr "Tapos na "
688
 
689
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
690
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
691
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
692
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
693
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
694
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
695
- #: views/restore.php:228 views/restore.php:230
696
  msgid "Failed"
697
  msgstr "Hindi napagtagumpayan "
698
 
699
- #: views/backup.php:306
 
 
 
 
700
  msgid "Backing up database"
701
  msgstr "Pag-back up ng database"
702
 
703
- #: views/backup.php:307
704
  msgid "Creating backup information file"
705
  msgstr "Paglikha ng backup information file "
706
 
707
- #: views/backup.php:308
708
  msgid "Backing up themes"
709
  msgstr "Pag-back up ng tema"
710
 
711
- #: views/backup.php:309
712
  msgid "Backing up plugins"
713
  msgstr "Pag-back up plugins"
714
 
715
- #: views/backup.php:310
716
  msgid "Backing up uploads"
717
  msgstr "Pag-back up uploads"
718
 
719
- #: views/backup.php:311
720
  msgid "Backing up everything else"
721
  msgstr "Pag back up ng lahat ng iba pa"
722
 
723
- #: views/backup.php:312
724
  msgid "Validating backup"
725
  msgstr "Pagpapatunay sa backup "
726
 
727
- #: views/backup.php:313
728
  msgid "Finalizing backup"
729
  msgstr "Pag kumpleto ng backup"
730
 
731
- #: views/backup.php:323
732
  msgid "Backup completed successfully"
733
  msgstr "Matagumpay na nakumpleto ang backup"
734
 
735
- #: views/backup.php:344
736
  msgid "Backups"
737
  msgstr "Backups"
738
 
739
- #: views/backup.php:344
740
  msgid "Version "
741
  msgstr "Bersyon "
742
 
743
- #: views/backup.php:346
744
  msgid "Welcome to WP BackItUp!"
745
  msgstr "Maligayang pagdating sa WP BackItUp!"
746
 
747
- #: views/backup.php:346
748
  msgid "The simplest way to backup your WordPress site."
749
  msgstr "Ang pinakasimpleng paraan upang i- backup ang iyong WordPress site."
750
 
751
- #: views/backup.php:347
752
  msgid ""
753
  "Getting started is easy, just click the backup button on the left side of "
754
  "this page."
@@ -756,7 +770,7 @@ msgstr ""
756
  "Ang pagsisimula ay madali, i-click lamang ang buton ng backup sa kaliwang "
757
  "bahagi ng pahinang ito."
758
 
759
- #: views/backup.php:351
760
  #, php-format
761
  msgid ""
762
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
@@ -765,37 +779,37 @@ msgstr ""
765
  "Pagbati! Ikaw ay nagsagawa ng <span style=\"font-weight:bold;font-size:"
766
  "medium;color: green\">%s</span> matagumpay na backups "
767
 
768
- #: views/backup.php:352
769
  msgid "Tips"
770
  msgstr "Tips"
771
 
772
- #: views/backup.php:353
773
  msgid "Backup your site at least once per week"
774
  msgstr "Mag backup ng iyong site isang beses sa isang linggo"
775
 
776
- #: views/backup.php:354
777
  msgid "Download all your backups and store them somewhere safe"
778
  msgstr "I-download ang lahat ng iyong mga backup at itago saan man ligtas"
779
 
780
- #: views/backup.php:355
781
  msgid "Verify your backup files are good by taking a look at what's inside"
782
  msgstr ""
783
  "Upang mapatunayan na maayos ang iyong mga backup tignan ang nilalaman nito "
784
 
785
- #: views/backup.php:360
786
  #, php-format
787
  msgid "Why not %s and schedule your backups!"
788
  msgstr "Bakit hindi %s at i-iskedyul ang iyong mga backup!"
789
 
790
- #: views/backup.php:360
791
  msgid "upgrade"
792
  msgstr "Upgrade"
793
 
794
- #: views/backup.php:369
795
  msgid "Register WP BackItUp"
796
  msgstr "Magrehistro ng WP BackItUp"
797
 
798
- #: views/backup.php:372
799
  msgid ""
800
  "Enter your name and email address below to receive <b>special offers</b> and "
801
  "access to our world class <b>support</b> team. <br />\n"
@@ -807,121 +821,126 @@ msgstr ""
807
  "> \n"
808
  "Ilagay ang iyong license key upang ma-activate sa site na ito."
809
 
810
- #: views/backup.php:374
811
  msgid "name"
812
  msgstr "Pangalan"
813
 
814
- #: views/backup.php:375
815
  msgid "email address"
816
  msgstr "email address"
817
 
818
- #: views/backup.php:376
819
  msgid "license key"
820
  msgstr "license key"
821
 
822
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
823
  #, php-format
824
  msgid "%s"
825
  msgstr "%s"
826
 
827
- #: views/backup.php:377
828
  msgid "Free plugin customers do not need to enter license key."
829
  msgstr ""
830
  "Ang mga free plugin customers ay hindi na kailangang maglagay ng license "
831
  "key "
832
 
833
- #: views/backup.php:378
834
  msgid "Register"
835
  msgstr "Mag-rehistro"
836
 
837
- #: views/backup.php:387
838
  msgid "License Info"
839
  msgstr "Impormasyon ng Lisensya"
840
 
841
- #: views/backup.php:409
842
  msgid "Name"
843
  msgstr "Pangalan"
844
 
845
- #: views/backup.php:410
846
  msgid "Email"
847
  msgstr "Email"
848
 
849
- #: views/backup.php:411
850
  msgid "License Type"
851
  msgstr "Uri ng Lisensya"
852
 
853
- #: views/backup.php:412
854
  msgid "Expires"
855
  msgstr "Lumipas na"
856
 
857
- #: views/backup.php:415
858
  msgid "Enter license key to activate on this site."
859
  msgstr "Ilagay ang lisensya upang ma-activate sa site na ito"
860
 
861
- #: views/backup.php:422
862
  msgid "License Active"
863
  msgstr "Aktibong Lisensya "
864
 
865
- #: views/backup.php:430
866
  msgid "License expired"
867
  msgstr "Wala ng bisa ang lisensya"
868
 
869
- #: views/backup.php:434
870
  msgid "Update"
871
  msgstr "Update"
872
 
873
- #: views/backup.php:438
874
  msgid "Activate"
875
  msgstr "I-activate"
876
 
877
- #: views/backup.php:442
878
  #, php-format
879
  msgid "Purchase a %s license using the purchase link above."
880
  msgstr "Bumili ng %s lisensiya gamit ang link na nasa itaas. "
881
 
882
- #: views/backup.php:442
883
  msgid "no-risk"
884
  msgstr "no risk "
885
 
886
- #: views/backup.php:448
887
  #, php-format
888
  msgid ""
889
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
890
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
891
  msgstr ""
892
  "<a href=\"%s\" target=\"blank\"> i-renew </a> ang iyong lisensya ngayon "
893
  "para sa isa pang taon ng mga update <strong> ng produkto </strong> at "
894
  "<strong> priority suport. </strong>"
895
 
896
- #: views/backup.php:459
897
  msgid "Useful Links"
898
  msgstr "Kapaki-pakinabang na mga Link"
899
 
900
- #: views/backup.php:462 views/backup.php:466
901
  msgid "Your account"
902
  msgstr "Ang iyong account"
903
 
904
- #: views/backup.php:469
905
  msgid "Documentation"
906
  msgstr "Dokumentasyon"
907
 
908
- #: views/backup.php:472
909
  msgid "Get support"
910
  msgstr "Makipagugnayan sa suport para sa tulong"
911
 
912
- #: views/backup.php:475
913
  msgid "Feature request"
914
  msgstr "Feature request"
915
 
916
- #: views/backup.php:477
 
 
 
 
917
  msgid "Contact"
918
  msgstr "Contact"
919
 
920
- #: views/backup.php:497 views/backup.php:518
921
  msgid "WP BackItUp Backup Set"
922
  msgstr "WP BackItUp BackUp Set"
923
 
924
- #: views/backup.php:499
925
  msgid ""
926
  "Below are the archive files included in this backup set. Click the link to "
927
  "download."
@@ -929,36 +948,36 @@ msgstr ""
929
  "Sa ibaba ay ang mga archive files na kasama sa backup set. I-click ang link "
930
  "upang i-download."
931
 
932
- #: views/backup.php:519
933
  msgid "Please refresh this page to download your new backup files."
934
  msgstr ""
935
  "Mangyaring i-refresh ang pahinang ito upang i-download ang iyong bagong "
936
  "backup file."
937
 
938
- #: views/restore.php:16
939
  #, php-format
940
  msgid "%s Restore"
941
  msgstr "%s Ibalik sa orihinal"
942
 
943
- #: views/restore.php:59
944
  msgid "Zip Files"
945
  msgstr "Zip Files"
946
 
947
- #: views/restore.php:74
948
  #, php-format
949
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
950
  msgstr ""
951
  "Error: Ang backup folder ay hindi umiiral. Mangyaring makipag-ugnayan sa %s "
952
  "para sa tulong."
953
 
954
- #: views/restore.php:81
955
  #, php-format
956
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
957
  msgstr ""
958
  "Error: Ang restore folder ay hindi umiiral. Mangyaring makipag- ugnayan sa "
959
  "%s para sa tulong"
960
 
961
- #: views/restore.php:141
962
  #, php-format
963
  msgid ""
964
  "<p>* The automated restore feature is only available to licensed customers. "
@@ -970,11 +989,11 @@ msgstr ""
970
  "target=\"_blank\">%s</a> upang makakuha ng lisensiya ng WP BackItUp risk "
971
  "free para sa 30 araw</p>"
972
 
973
- #: views/restore.php:153
974
  msgid "Upload"
975
  msgstr "Upload"
976
 
977
- #: views/restore.php:156
978
  msgid ""
979
  "Upload WP BackItUp archive(zip) files to add to your list of available "
980
  "backups."
@@ -982,17 +1001,17 @@ msgstr ""
982
  "Mag-upload ng WP BackItUp archive (zip) file upang idagdag sa iyong listahan "
983
  "ng mga magagamit backup. "
984
 
985
- #: views/restore.php:173
986
  msgid "WP BackItUp - Upload backup files"
987
  msgstr "WP BackItUp - Mag-upload ng backup file"
988
 
989
- #: views/restore.php:174
990
  msgid "Backup files may be uploaded into WP BackItUp with this form."
991
  msgstr ""
992
  "Ang Backup file ay maaaring ma-i -upload sa WP BackItUp sa pamamagitan ng "
993
  "form na ito"
994
 
995
- #: views/restore.php:174
996
  msgid ""
997
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
998
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
@@ -1002,18 +1021,18 @@ msgstr ""
1002
  "BackItUp (wp-content / wp backitup backup) gamit ang FTP. Kapag tapos na ang "
1003
  "pag-upload ng lahat ng backup file, i - refresh ang pahinang ito."
1004
 
1005
- #: views/restore.php:178
1006
  #, php-format
1007
  msgid "This feature requires %s version %s or later"
1008
  msgstr ""
1009
  "Ang feature na ito ay nangangailangan ng %s bersyon %s o mas nauna pang "
1010
  "bersyon "
1011
 
1012
- #: views/restore.php:184
1013
  msgid "Drop backup files here"
1014
  msgstr "Ilagay ang backup files dito"
1015
 
1016
- #: views/restore.php:190
1017
  msgid ""
1018
  "* Reload this page when done uploading to see new backups appear in the "
1019
  "Available Backups section above. "
@@ -1021,63 +1040,63 @@ msgstr ""
1021
  "I-reload ang pahinang ito kapag tapos na ang pag-upload upang makita ang "
1022
  "mga bagong backup sa available section ng backups na nasa itaas. "
1023
 
1024
- #: views/restore.php:219
1025
  msgid "Preparing for restore"
1026
  msgstr "Paghahanda para maibalik sa orihinal "
1027
 
1028
- #: views/restore.php:220
1029
  msgid "Unzipping backup set"
1030
  msgstr "Pag unzip ng backup set"
1031
 
1032
- #: views/restore.php:221
1033
  msgid "Validating backup file"
1034
  msgstr "Pagpapatunay sa backup file"
1035
 
1036
- #: views/restore.php:222
1037
  msgid "Deactivating plugins"
1038
  msgstr "Tanggalin ang pagka-aktibo ng plugin"
1039
 
1040
- #: views/restore.php:223
1041
  msgid "Creating database restore point"
1042
  msgstr "Paglikha ng database restore point"
1043
 
1044
- #: views/restore.php:224
1045
  msgid "Staging content files"
1046
  msgstr "Pagsasaayos ng mga nilalaman na files "
1047
 
1048
- #: views/restore.php:225
1049
  msgid "Restoring content files"
1050
  msgstr "Ipinapanumbalik ang nilalaman na mga file"
1051
 
1052
- #: views/restore.php:226
1053
  msgid "Restoring database"
1054
  msgstr "Ipinapanumbalik ang database"
1055
 
1056
- #: views/restore.php:227
1057
  msgid "Updating current user info"
1058
  msgstr "Ina-update ang mga kasalukuyang impormasyon ng user"
1059
 
1060
- #: views/restore.php:228
1061
  msgid "Updating site URL"
1062
  msgstr "Ina- update ang site URL "
1063
 
1064
- #: views/restore.php:230
1065
  msgid "Updating permalinks"
1066
  msgstr "Ina-update ang permalinks"
1067
 
1068
- #: views/restore.php:236
1069
  msgid "Error 201: No file selected"
1070
  msgstr "Error 201: Walang napiling file"
1071
 
1072
- #: views/restore.php:237
1073
  msgid "Error 202: Your file could not be uploaded"
1074
  msgstr "Error 202: Hindi ma-i- upload ang iyong file"
1075
 
1076
- #: views/restore.php:238
1077
  msgid "Error 203: Your backup could not be unzipped"
1078
  msgstr "Error 203: Ang iyong backup ay hindi mai-unzipped"
1079
 
1080
- #: views/restore.php:239
1081
  msgid ""
1082
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1083
  "valid backup"
@@ -1085,36 +1104,36 @@ msgstr ""
1085
  "Error 204: Ang iyong backup ay hindi wasto. Mangyaring siguraduhin na "
1086
  "pinili mo ang isang tunay na backup."
1087
 
1088
- #: views/restore.php:240
1089
  msgid "Error 205: Cannot create restore point"
1090
  msgstr "Error 205: Hindi makalikha ng restore point"
1091
 
1092
- #: views/restore.php:241
1093
  msgid "Error 206: Unable to connect to your database"
1094
  msgstr "Error 206: Hindi makakonekta sa iyong database"
1095
 
1096
- #: views/restore.php:242
1097
  msgid ""
1098
  "Error 207: Unable to get current site URL from database. Please try again"
1099
  msgstr ""
1100
  "Error 207: Hindi makuha ang kasalukuyang URL site mula sa database. "
1101
  "Mangyaring subukan muli"
1102
 
1103
- #: views/restore.php:243
1104
  msgid ""
1105
  "Error 208: Unable to get current home URL from database. Please try again"
1106
  msgstr ""
1107
  "Error 208: Hindi makuha ang kasalukuyang home URL mula sa database. "
1108
  "Mangyaring subukan muli"
1109
 
1110
- #: views/restore.php:244
1111
  msgid ""
1112
  "Error 209: Unable to get current user ID from database. Please try again"
1113
  msgstr ""
1114
  "Error 209: Hindi makuha ang kasalukuyang user ID mula sa database. "
1115
  "Mangyaring subukan muli"
1116
 
1117
- #: views/restore.php:245
1118
  msgid ""
1119
  "Error 210: Unable to get current user password from database. Please try "
1120
  "again"
@@ -1122,14 +1141,14 @@ msgstr ""
1122
  "Error 210: Hindi makuha ang kasalukuyang user password mula sa database. "
1123
  "Mangyaring subukan muli"
1124
 
1125
- #: views/restore.php:246
1126
  msgid ""
1127
  "Error 211: Unable to get current user email from database. Please try again"
1128
  msgstr ""
1129
  "Error 211: Hindi makuha ang kasalukuyang user email mula sa database. "
1130
  "Mangyaring subukan muli"
1131
 
1132
- #: views/restore.php:247
1133
  msgid ""
1134
  "Error 212: Unable to import your database. This may require importing the "
1135
  "file manually"
@@ -1137,7 +1156,7 @@ msgstr ""
1137
  "Error 212: Hindi ma-import ang iyong database. Maaaring mangailangan ng mano "
1138
  "-mano na pag-import ng file"
1139
 
1140
- #: views/restore.php:248
1141
  msgid ""
1142
  "Warning 213: Unable to update your site URL value. Please check your "
1143
  "WordPress general settings to make sure your Site and WordPress URLs are "
@@ -1147,7 +1166,7 @@ msgstr ""
1147
  "pangkalahatang mga setting ng WordPress upang matiyak na ang iyong site at "
1148
  "WordPress URL ay tama"
1149
 
1150
- #: views/restore.php:249
1151
  msgid ""
1152
  "Warning 214: Unable to update your home URL value. Please check your "
1153
  "WordPress general settings to make sure your Site and WordPress URLs are "
@@ -1157,7 +1176,7 @@ msgstr ""
1157
  "pangkalahatang mga setting ng iyong WordPress upang matiyak na ang iyong "
1158
  "site at WordPress URL ay tama"
1159
 
1160
- #: views/restore.php:250
1161
  msgid ""
1162
  "Warning 215: Unable to update your user information. This may require you to "
1163
  "login with the admin username and password that was used when the backup was "
@@ -1167,15 +1186,15 @@ msgstr ""
1167
  "na ikaw ay mag-login gamit ang admin username at password na ginagamit "
1168
  "kapag nagsasagawa ng backup. "
1169
 
1170
- #: views/restore.php:251
1171
  msgid "Error 216: Database not found in backup"
1172
  msgstr "Error 216: Ang database ay hindi matagpuan sa backup"
1173
 
1174
- #: views/restore.php:252
1175
  msgid "Warning 217: Unable to remove existing wp-content directory"
1176
  msgstr "Babala 217: Hindi matanggal ang umiiral na direktoryo ng wp-content"
1177
 
1178
- #: views/restore.php:253
1179
  msgid ""
1180
  "Error 218: Unable to create new wp-content directory. Please check your "
1181
  "CHMOD settings in /wp-content/"
@@ -1183,17 +1202,17 @@ msgstr ""
1183
  "Error 218: Hindi makalikha ng mga bagong direktoryo ng wp-content. "
1184
  "Mangyaring suriin ang mga setting ng CHMOD sa / wp-content / "
1185
 
1186
- #: views/restore.php:254
1187
  msgid "Error 219: Unable to import wp-content. Please try again"
1188
  msgstr "Error 219: Hindi ma - import ang wp-content. Mangyaring subukan muli "
1189
 
1190
- #: views/restore.php:255
1191
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1192
  msgstr ""
1193
  "Babala 220: Hindi malinisan ang import direktoryo Walang kinakailangang "
1194
  "aksyon"
1195
 
1196
- #: views/restore.php:256
1197
  #, php-format
1198
  msgid ""
1199
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1206,11 +1225,11 @@ msgstr ""
1206
  "ang iyong site. Tignan ang www.wpbackitup.com <a href =\"%s\" target="
1207
  "\"_blank\"> FAQs </a> para sa karagdagang impormasyon."
1208
 
1209
- #: views/restore.php:257
1210
  msgid "Error 222: Unable to create restore folder"
1211
  msgstr "Error 222: Hindi makalikha ng restore folder"
1212
 
1213
- #: views/restore.php:258
1214
  msgid ""
1215
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1216
  "restore the database to its previous state but were unsuccessful. Please "
@@ -1223,7 +1242,7 @@ msgstr ""
1223
  "Mangyaring makipag-ugnayan sa WP BackItUp customer suport para sa tulong at "
1224
  "wag subukin na magsagawa ng anumang karagdagang restores"
1225
 
1226
- #: views/restore.php:259
1227
  msgid ""
1228
  "Error 224: An error occurred during the restore, however, we have "
1229
  "successfully restored your database to the previous state"
@@ -1232,14 +1251,14 @@ msgstr ""
1232
  "gayunpaman, matagumpay na naipanumbalik ang iyong database sa dating estado "
1233
  "nito"
1234
 
1235
- #: views/restore.php:260
1236
  msgid ""
1237
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1238
  msgstr ""
1239
  "Error 225: Ang opsyon na pagbabalik sa orihinal ay magagamit lamang ng mga "
1240
  "lisensiyadong mga gumagamit WP BackItUp"
1241
 
1242
- #: views/restore.php:261
1243
  msgid ""
1244
  "Error 226: Restore cannot proceed because your backup was created using a "
1245
  "different version of WordPress"
@@ -1247,7 +1266,7 @@ msgstr ""
1247
  "Error 226: Ang pagbabalik sa orihinal ay hindi maaaring magpatuloy dahil ang "
1248
  "iyong backup ay nilikha gamit ang ibang bersyon ng WordPress"
1249
 
1250
- #: views/restore.php:262
1251
  msgid ""
1252
  "Error 227: Restore cannot proceed because your backup was created using a "
1253
  "different version of WP BackItUp. Please contact WP BackItUp support to "
@@ -1258,7 +1277,7 @@ msgstr ""
1258
  "sa WP BackItUp suport upang matulungan kayo na ma-i- convert ang backup "
1259
  "na ito sa kasalukuyang bersyon"
1260
 
1261
- #: views/restore.php:263
1262
  msgid ""
1263
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1264
  "restore. However, we were able to successfully revert the database back to "
@@ -1269,7 +1288,7 @@ msgstr ""
1269
  "ang database sa orihinal na katayuan nito. Maaaring mangailangan na mano-"
1270
  "mano na mag -import ng database"
1271
 
1272
- #: views/restore.php:264
1273
  msgid ""
1274
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1275
  "utility available. Please contact support"
@@ -1278,7 +1297,7 @@ msgstr ""
1278
  "available na zip utility. Mangyaring makipag-ugnayan sa suport para sa "
1279
  "tulong"
1280
 
1281
- #: views/restore.php:265
1282
  msgid ""
1283
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1284
  "running. Please wait for the backup to complete and then try again"
@@ -1287,7 +1306,7 @@ msgstr ""
1287
  "orihinal dahil my kasalukuyang backup na nangyayari. Mangyaring maghintay "
1288
  "na makumpleto ang backup at pagkatapos ay subukan ulit"
1289
 
1290
- #: views/restore.php:267
1291
  msgid ""
1292
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1293
  "manifest is empty"
@@ -1295,7 +1314,7 @@ msgstr ""
1295
  "Error 251: Hindi maaaring simulan ng WP BackItUp ang pagbabalik sa "
1296
  "orihinal dahil ang backup manifest ay walang laman"
1297
 
1298
- #: views/restore.php:268
1299
  msgid ""
1300
  "Error 252: At least one zip file is missing from your backup set. Please "
1301
  "make sure to upload all zip files that were part of this backup"
@@ -1303,7 +1322,7 @@ msgstr ""
1303
  "Error 252: Hindi bababa sa isang zip file ay nawawala mula sa iyong backup "
1304
  "set. Pakitiyak na i-upload ang lahat ng zip file na bahagi ng backup na ito"
1305
 
1306
- #: views/restore.php:269
1307
  msgid ""
1308
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1309
  "Please make sure to upload only zip files that were part of this backup"
@@ -1312,7 +1331,7 @@ msgstr ""
1312
  "manifest. Pakitiyak na i-upload lamang ang zip file na bahagi ng backup na "
1313
  "ito "
1314
 
1315
- #: views/restore.php:271
1316
  msgid ""
1317
  "Warning 300: Unable to restore all WordPress content. Please review your "
1318
  "restore logs to see what WP BackItUp was unable to restore"
@@ -1321,7 +1340,7 @@ msgstr ""
1321
  "suriin ang iyong logs ng restore para makita kung ano ang hindi nagawang "
1322
  "ibalik sa orihinal ng WP BackItUp . "
1323
 
1324
- #: views/restore.php:272
1325
  msgid ""
1326
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1327
  "to see what WP BackItUp was unable to restore"
@@ -1330,39 +1349,39 @@ msgstr ""
1330
  "iyong logs sa pagbabalik sa orihinal para makita kung ano ang hindi "
1331
  "nagawang ibalik ng WP BackItUp"
1332
 
1333
- #: views/restore.php:274
1334
  msgid "Error 2001: Unable to prepare site for restore"
1335
  msgstr "Error 2001: Hindi maihanda ang site para maibalik sa orihinal "
1336
 
1337
- #: views/restore.php:275
1338
  msgid "Error 2002: Unable to unzip backup"
1339
  msgstr "Error 2002: Hindi magawang i-unzip ang backup"
1340
 
1341
- #: views/restore.php:276
1342
  msgid "Error 2003: Unable to validate backup"
1343
  msgstr "Error 2003: Hindi ma-validate ang backup"
1344
 
1345
- #: views/restore.php:277
1346
  msgid "Error 2004: Unable to create restore point"
1347
  msgstr "Error 2004: Hindi makalikha ng restore point"
1348
 
1349
- #: views/restore.php:278
1350
  msgid "Error 2005: Unable to stage wp-content"
1351
  msgstr "Error 2005: Hindi magawang mahanda ang wp-content"
1352
 
1353
- #: views/restore.php:279
1354
  msgid "Error 2006: Unable to restore content files"
1355
  msgstr "Error 2006: Hindi maibabalik sa orihinal ang nilalaman na file "
1356
 
1357
- #: views/restore.php:280
1358
  msgid "Error 2007: Unable to restore database"
1359
  msgstr "Error 2007: Hindi nagawang ibalik ang database"
1360
 
1361
- #: views/restore.php:281
1362
  msgid "Error 2999: Unexpected error encountered"
1363
  msgstr "Error 2999: Hindi inaasahang error ang naganap "
1364
 
1365
- #: views/restore.php:288
1366
  msgid ""
1367
  "Restore completed successfully. If you are prompted to login please do so "
1368
  "with your current username and password"
@@ -1371,16 +1390,16 @@ msgstr ""
1371
  "na mag-login mangyaring gawin ito gamit ang iyong kasalukuyang username at "
1372
  "password"
1373
 
1374
- #: views/settings.php:16
1375
  #, php-format
1376
  msgid "%s Settings"
1377
  msgstr "%s Mga Setting"
1378
 
1379
- #: views/settings.php:43
1380
  msgid "Email Notifications"
1381
  msgstr "Abiso mula sa Email"
1382
 
1383
- #: views/settings.php:44
1384
  msgid ""
1385
  "Please enter your email address if you would like to receive backup email "
1386
  "notifications."
@@ -1388,7 +1407,7 @@ msgstr ""
1388
  "Pakilagay ang iyong email address kung nais mong makatanggap ng mga abiso "
1389
  "sa email tungkol sa backup. "
1390
 
1391
- #: views/settings.php:45
1392
  msgid ""
1393
  "Backup email notifications will be sent for every backup and will contain "
1394
  "status information related to the backup."
@@ -1396,22 +1415,22 @@ msgstr ""
1396
  "Magpapadala ng abiso sa email sa bawat backup at naglalaman ito ng "
1397
  "impormasyon na may kaugnayan sa backup."
1398
 
1399
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1400
- #: views/settings.php:114
1401
  msgid "Save"
1402
  msgstr "I-save"
1403
 
1404
- #: views/settings.php:63
1405
  msgid "Backup Retention"
1406
  msgstr "Backup Retention"
1407
 
1408
- #: views/settings.php:64
1409
  msgid ""
1410
  "Enter the number of backup archives that you would like to remain on the "
1411
  "server."
1412
  msgstr "Ilagay ang bilang ng backup archive na nais mong manatili sa server."
1413
 
1414
- #: views/settings.php:65
1415
  msgid ""
1416
  "Many hosts limit the amount of space that you can take up on their servers. "
1417
  "This option tells WP BackItUp the maximum number of backup archives that "
@@ -1424,19 +1443,19 @@ msgstr ""
1424
  "host server. Huwag mag-alala, kami ay palaging nagtatangal muna ng "
1425
  "pinakaluma na backup archives. "
1426
 
1427
- #: views/settings.php:84
1428
  msgid "Turn on logging?"
1429
  msgstr "Mangyaring i -on ang logging ?"
1430
 
1431
- #: views/settings.php:85
1432
  msgid "Yes"
1433
  msgstr "Oo"
1434
 
1435
- #: views/settings.php:86
1436
  msgid "No"
1437
  msgstr "Hindi"
1438
 
1439
- #: views/settings.php:87
1440
  msgid ""
1441
  "This option should only be turned on when troubleshooting issues with "
1442
  "WPBackItUp support."
@@ -1444,53 +1463,53 @@ msgstr ""
1444
  "Ang opsyon na ito ay dapat i- on kapag nag -troubleshoot ng mga isyu sa "
1445
  "WPBackItUp. "
1446
 
1447
- #: views/settings.php:92
1448
  msgid "Advanced Settings"
1449
  msgstr "Advanced na Mga Setting"
1450
 
1451
- #: views/settings.php:93
1452
  msgid ""
1453
  "These options should only be changed when working with WP BackItUp support."
1454
  msgstr ""
1455
  "Ang opsyon na ito ay babaguhin lamang sa tuwing nakikipagugnayan sa WP "
1456
  "BackItUp support."
1457
 
1458
- #: views/settings.php:96
1459
  msgid "Plugins Batch Size"
1460
  msgstr "Sukat ng Pangkat ng Plugins "
1461
 
1462
- #: views/settings.php:101
1463
  msgid "Themes Batch Size"
1464
  msgstr "Sukat ng Pangkat ng Tema"
1465
 
1466
- #: views/settings.php:106
1467
  msgid "Uploads Batch Size"
1468
  msgstr "Sukat ng Pangkat ng Uploads "
1469
 
1470
- #: views/settings.php:111
1471
  msgid "Others Batch Size"
1472
  msgstr "Sukat ng Iba pang Pangkat "
1473
 
1474
- #: views/support.php:16
1475
  #, php-format
1476
  msgid "%s Support"
1477
  msgstr "%s Support"
1478
 
1479
- #: views/support.php:35
1480
  msgid "Support email sent successfully!"
1481
  msgstr "Matagumpay na naipadala ang email sa suport . "
1482
 
1483
- #: views/support.php:48
1484
  msgid "Email Logs to Support"
1485
  msgstr "Mag email ng logs sa suport para sa tulong"
1486
 
1487
- #: views/support.php:49
1488
  msgid "This form should be used to send log files to support only."
1489
  msgstr ""
1490
  "Ang form na ito ay dapat gamitin upang magpadala ng log files sa suport para "
1491
  "sa tulong. "
1492
 
1493
- #: views/support.php:50
1494
  msgid ""
1495
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1496
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
@@ -1500,7 +1519,7 @@ msgstr ""
1500
  "BackItUp <a href=\"https://www.wpbackitup.com/support\" target=\"_blank\"> "
1501
  "suport portal. </a> Bago gamitin ang form na ito."
1502
 
1503
- #: views/support.php:51
1504
  msgid ""
1505
  "The ticket id you receive from your support request should be entered in the "
1506
  "ticket id field below."
@@ -1508,33 +1527,70 @@ msgstr ""
1508
  "Ang mga ticket id na natanggap mo mula sa suport ay dapat na ilagay sa "
1509
  "patlang ng ticket id ."
1510
 
1511
- #: views/support.php:52
1512
  msgid "your email address"
1513
  msgstr "ang iyong email address"
1514
 
1515
- #: views/support.php:62
1516
  msgid "support ticket id"
1517
  msgstr "Suport ticket id"
1518
 
1519
- #: views/support.php:72
1520
  msgid "problem description or additional information"
1521
  msgstr "paglalarawan ng problema o karagdagang impormasyon"
1522
 
1523
- #: views/support.php:83
1524
  msgid "Send"
1525
  msgstr "Ipadala"
1526
 
1527
- #: views/support.php:86
1528
  msgid "Please register your version of WP BackItUp for access to support."
1529
  msgstr ""
1530
  "Mangyaring magrehistro ng iyong bersyon ng WP BackItUp upang ma-access ang "
1531
  "suport para sa tulong."
1532
 
1533
- #: views/support.php:90
1534
  msgid "Premium customers receive priority support."
1535
  msgstr "Ang mga premium customer ay bibigyan ng unang tulong "
1536
 
1537
- #: wp-backitup.php:97 wp-backitup.php:98
1538
  #, php-format
1539
  msgid "Every %s hours"
1540
  msgstr "Kada %s oras "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP BackItUp\n"
8
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
9
+ "PO-Revision-Date: 2015-09-15 11:49-0400\n"
10
  "Last-Translator: sheisjeremy\n"
11
  "Language-Team: Tagalog (http://www.transifex.com/wp-translations/wp-backitup/"
12
  "language/tl/)\n"
20
  "X-Poedit-KeywordsList: _;__;_e\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
24
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
25
+ #: wp-backitup.php:109
26
  msgid "Backup"
27
  msgstr "Backup"
28
 
29
+ #: lib/includes/class-wpbackitup-admin.php:182
30
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
31
+ #: wp-backitup.php:123
32
  msgid "Restore"
33
  msgstr "Ibalik sa orihinal"
34
 
35
+ #: lib/includes/class-wpbackitup-admin.php:186
36
  msgid "Support"
37
  msgstr "Suport"
38
 
39
+ #: lib/includes/class-wpbackitup-admin.php:189
40
  msgid "Settings"
41
  msgstr "Mga Setting"
42
 
43
+ #: lib/includes/class-wpbackitup-admin.php:210
44
  msgid ""
45
  "The backup you have selected exceeds what your host allows you to upload."
46
  msgstr ""
47
  "Ang iyong pinili na mga backup ay lumampas sa pinapayagan ng iyong host na "
48
  "dapat i-upload."
49
 
50
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
51
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
52
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
53
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
54
  msgid "Warning"
55
  msgstr "Babala"
56
 
57
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
58
+ #: views/backup.php:220
59
  msgid "Error"
60
  msgstr "Pagkakamali"
61
 
62
+ #: lib/includes/class-wpbackitup-admin.php:213
63
  msgid "Response"
64
  msgstr "Tugon"
65
 
66
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
67
+ #: views/backup.php:271 views/restore.php:230
68
  msgid "Status"
69
  msgstr "Kalagayan o Katayuan"
70
 
71
+ #: lib/includes/class-wpbackitup-admin.php:215
72
  msgid "Download"
73
  msgstr "Download"
74
 
75
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
76
+ #: views/restore.php:132
77
  msgid "Delete"
78
  msgstr "Burahin"
79
 
80
+ #: lib/includes/class-wpbackitup-admin.php:218
81
  msgid "(JS997) Unexpected error"
82
  msgstr "(JS997) hindi inaasahang pagkakamali o hindi inaasahang error"
83
 
84
+ #: lib/includes/class-wpbackitup-admin.php:219
85
  msgid "(JS998) Unexpected error"
86
  msgstr "(JS998) hindi inaasahang pagkakamali o hindi inaasahang error"
87
 
88
+ #: lib/includes/class-wpbackitup-admin.php:220
89
  msgid "(JS999) An unexpected error has occurred"
90
  msgstr ""
91
  "(JS999) Nangyari ang hindi inaasahang pagkakamali o Nangyari ang hindi "
92
  "inaasahang error"
93
 
94
+ #: lib/includes/class-wpbackitup-admin.php:221
95
  msgid "Scheduled has been saved."
96
  msgstr "Ang schedule ay naka-save."
97
 
98
+ #: lib/includes/class-wpbackitup-admin.php:222
99
  msgid "Scheduled was not saved."
100
  msgstr "Ang schedule ay hindi naka - save. "
101
 
102
+ #: lib/includes/class-wpbackitup-admin.php:223
103
  msgid "Are you sure you want to restore your site?"
104
  msgstr ""
105
  "Ikaw ba ay nakasisiguro na dapat ibalik sa orihinal ang iyong website? "
106
 
107
+ #: lib/includes/class-wpbackitup-admin.php:224
108
  msgid "Are you sure ?"
109
  msgstr "Ikaw ba ay nakasisiguro?"
110
 
111
+ #: lib/includes/class-wpbackitup-admin.php:225
112
  msgid "This file cannot be delete!"
113
  msgstr "Ang file na ito ay hindi maaaring tanggalin!"
114
 
115
+ #: lib/includes/class-wpbackitup-admin.php:226
116
  msgid "View Log"
117
  msgstr "Tignan ang log files. "
118
 
119
+ #: lib/includes/class-wpbackitup-admin.php:227
120
  msgid "New Backup!"
121
  msgstr "Bagong backup!"
122
 
123
+ #: lib/includes/class-wpbackitup-admin.php:228
124
  msgid "Uploaded Backup"
125
  msgstr "Na upload na backup"
126
 
127
+ #: lib/includes/class-wpbackitup-admin.php:515
128
  msgid "Backup Queued"
129
  msgstr "Mga naka linya para sa backup."
130
 
131
+ #: lib/includes/class-wpbackitup-admin.php:518
132
  msgid "Backup could not be queued"
133
  msgstr "Ang backup ay hindi maaaring isama sa mga naka linya"
134
 
135
+ #: lib/includes/class-wpbackitup-admin.php:522
136
+ msgid "Job already in queue, please try again later"
137
+ msgstr "Gawain na nasa queue na,mangyaring subukan ulit mamaya"
 
 
 
 
138
 
139
+ #: lib/includes/class-wpbackitup-admin.php:554
140
  msgid "No backup file selected."
141
  msgstr "Walang backup file na napili"
142
 
143
+ #: lib/includes/class-wpbackitup-admin.php:561
144
  msgid "No user id found."
145
  msgstr "Walang matagpuan na user id"
146
 
147
+ #: lib/includes/class-wpbackitup-admin.php:582
148
  msgid "Restore Queued"
149
  msgstr "Mga naka linya na ibabalik sa orihinal"
150
 
151
+ #: lib/includes/class-wpbackitup-admin.php:584
152
  msgid "Restore could not be queued"
153
  msgstr "Hindi maaaring isama sa mga naka linya na ibabalik sa orihinal. "
154
 
155
+ #: lib/includes/class-wpbackitup-admin.php:588
156
  msgid "Restore already in queue"
157
  msgstr "Ang mga dapat ibalik sa orihinal ay nakalinya na. "
158
 
159
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
160
+ msgid "Backup Cancelled"
161
+ msgstr "Nakansela na backup "
162
+
163
+ #: lib/includes/class-wpbackitup-admin.php:754
164
  msgid "No response log found."
165
  msgstr "Walang makita na response log."
166
 
167
+ #: lib/includes/class-wpbackitup-admin.php:856
168
+ #: lib/includes/class-wpbackitup-admin.php:864
169
+ #: lib/includes/class-wpbackitup-admin.php:893
170
+ #: lib/includes/class-wpbackitup-admin.php:900
171
+ #: lib/includes/class-wpbackitup-admin.php:907
172
+ #: lib/includes/class-wpbackitup-admin.php:914
173
  msgid "Please enter a number"
174
  msgstr "Maglagay ng numero "
175
 
176
+ #: lib/includes/class-wpbackitup-admin.php:885
177
+ #: lib/includes/class-wpbackitup-admin.php:993
178
  msgid "Please enter a valid email"
179
  msgstr "Ilagay ang tamang email."
180
 
181
+ #: lib/includes/class-wpbackitup-admin.php:1000
182
  msgid "Please enter your support ticket id"
183
  msgstr "Ilagay ang iyong suport ticket id"
184
 
185
+ #: lib/includes/class-wpbackitup-admin.php:1005
186
  msgid "Please only enter numbers in this field"
187
  msgstr "Ilagay lamang ang numero"
188
 
189
+ #: lib/includes/class-wpbackitup-admin.php:1699
190
  msgid "License is invalid."
191
  msgstr "Ang lisensya ay hindi wasto"
192
 
193
+ #: lib/includes/class-wpbackitup-admin.php:1704
194
  msgid "License has expired."
195
  msgstr "Ang lisensya ay wala ng bisa."
196
 
197
+ #: lib/includes/class-wpbackitup-admin.php:1707
198
+ #, php-format
199
+ msgid ""
200
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
201
+ "now for another year of <strong>product updates</strong> and access to our "
202
+ "<strong>world class support</strong> team."
203
+ msgstr ""
204
+ "Ang iyong lisensya ay nawalan ng bisa<a href=\"%s\" target=\"blank\"> i-"
205
+ "renew </a> ang iyong lisensya ngayon para sa isa pang taon ng mga update "
206
+ "<strong> ng produkto </strong> at <strong> priority suport. </strong>"
207
+
208
+ #: lib/includes/class-wpbackitup-admin.php:1721
209
+ msgid "License Expired: Scheduled backups are no longer active."
210
+ msgstr ""
211
+ "Ang lisensya ay wala ng bisa: Ang naka iskedyul na mga backup ay hindi na "
212
+ "aktibo. "
213
+
214
+ #: lib/includes/class-wpbackitup-admin.php:1729
215
  msgid "Activation limit has been reached."
216
  msgstr "Ang pagtatakda ng aktibasyon ay umabot na sa limitasyon "
217
 
218
+ #: lib/includes/class-wpbackitup-admin.php:1735
219
+ msgid "Your Activation limit has been reached"
220
+ msgstr "Ang pagtatakda ng aktibasyon ay umabot na sa limitasyon "
221
+
222
  #: lib/includes/handler_upload.php:29
223
  msgid "Invalid Nonce"
224
  msgstr "Hindi wastong nonces"
245
  msgid "Could not import file into WP BackItUp backup set."
246
  msgstr "Hindi ma -import ang file sa backup set ng WP BackItUp"
247
 
248
+ #: lib/includes/job_backup.php:907
249
+ #, php-format
250
+ msgid ""
251
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
252
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
253
+ "function for <strong>30</strong> days after your license has expired.Please "
254
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
255
+ "of product updates and access to our world class support team.<br/><br/>"
256
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
 
258
+ #: lib/includes/job_backup.php:912
259
  #, php-format
260
  msgid "%s - Backup completed successfully."
261
  msgstr "%s Matagumpay na nakumpleto ang back up "
262
 
263
+ #: lib/includes/job_backup.php:913
264
  msgid "Your backup completed successfully."
265
  msgstr "Matagumpay na nakumpleto ang iyong backup"
266
 
267
+ #: lib/includes/job_backup.php:916
268
  #, php-format
269
  msgid "%s - Backup did not complete successfully."
270
  msgstr "%s - Ang backup ay hindi matagumpay na nakumpleto"
271
 
272
+ #: lib/includes/job_backup.php:917
273
  msgid "Your backup did not complete successfully."
274
  msgstr "Ang iyong backup ay hindi matagumpay na nakumpleto"
275
 
276
+ #: lib/includes/job_backup.php:924
277
  #, php-format
278
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
279
  msgstr "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
280
 
281
+ #: lib/includes/job_backup.php:925
282
  msgid "Backup date:"
283
  msgstr "Petsa ng backup"
284
 
285
+ #: lib/includes/job_backup.php:926
286
  msgid "Number of backups completed with WP BackItUp:"
287
  msgstr "Bilang ng mga nakumpleto na backup sa WP BackItUp "
288
 
289
+ #: lib/includes/job_backup.php:928
290
  msgid "Completion Code:"
291
  msgstr "Completion Code:"
292
 
293
+ #: lib/includes/job_backup.php:929
294
  msgid "WP BackItUp Version:"
295
  msgstr "Bersyon ng WP BackItUp "
296
 
297
+ #: lib/includes/job_backup.php:941
 
 
 
 
298
  #, php-format
299
  msgid "Checkout %s for info about WP BackItUp and our other products."
300
  msgstr ""
301
  "Siyasatin ang %s para sa impormasyon tungkol sa WP BackItUp at ang aming iba "
302
  "pang mga produkto."
303
 
304
+ #: lib/includes/job_backup.php:1117
305
  msgid ""
306
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
307
  "settings of your wp-backitup backup directory"
310
  "suriin ang setting ng CHMOD ng iyong direktoryo para sa backup ng wp-"
311
  "backitup "
312
 
313
+ #: lib/includes/job_backup.php:1118
314
  msgid ""
315
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
316
  "your wp-backitup plugin directory"
318
  "(102) Hindi makalikha ng direktoryo para sa backup. Mangyaring suriin ang "
319
  "setting ng CHMOD sa iyong direktoryo ng plugin ng wp-backitup "
320
 
321
+ #: lib/includes/job_backup.php:1119
322
  msgid "(103) Unable to backup your files. Please try again"
323
  msgstr "(103) Hindi ma-backup ang iyong mga files. Mangyaring subukan muli"
324
 
325
+ #: lib/includes/job_backup.php:1120
326
  msgid "(104) Unable to export your database. Please try again"
327
  msgstr "(104) Hindi ma-export ang iyong database. Mangyaring subukan muli"
328
 
329
+ #: lib/includes/job_backup.php:1121
330
  msgid "(105) Unable to export site information file. Please try again"
331
  msgstr ""
332
  "(105) Hindi ma -export ang site information file. Mangyaring subukan muli"
333
 
334
+ #: lib/includes/job_backup.php:1122
335
  msgid "(106) Unable to cleanup your backup directory"
336
  msgstr "(106) Hindi malinisan ang iyong direktoryo ng backup"
337
 
338
+ #: lib/includes/job_backup.php:1123
339
  msgid "(107) Unable to compress(zip) your backup. Please try again"
340
  msgstr "(107) Hindi masiksik ang iyong backup. Mangyaring subukan muli"
341
 
342
+ #: lib/includes/job_backup.php:1124
343
  msgid "(108) Unable to backup your site data files. Please try again"
344
  msgstr ""
345
  "(108) Hindi ma-backup ang iyong site data files .Mangyaring subukan muli"
346
 
347
+ #: lib/includes/job_backup.php:1125
348
  msgid "(109) Unable to finalize backup. Please try again"
349
  msgstr "(109) Hindi ma-kumpleto ang backup. Mangyaring subukan muli"
350
 
351
+ #: lib/includes/job_backup.php:1126
352
  msgid ""
353
  "(114) Your database was accessible but an export could not be created. "
354
  "Please contact support by clicking the get support link on the right. Please "
360
  "ipaalam sa amin kung sino ang iyong host kung kayo ay magpapadala ng "
361
  "kahilingan."
362
 
363
+ #: lib/includes/job_backup.php:1127
364
  msgid "(120) Unable to backup your themes. Please try again"
365
  msgstr "(120) Hindi ma-backup ang iyong tema. Mangyaring subukan muli"
366
 
367
+ #: lib/includes/job_backup.php:1128
368
  msgid "(121) Unable to backup your plugins. Please try again"
369
  msgstr "(121) Hindi ma-backup ang iyong mga plugins. Mangyaring subukan muli"
370
 
371
+ #: lib/includes/job_backup.php:1129
372
  msgid "(122) Unable to backup your uploads. Please try again"
373
  msgstr "(122) Hindi ma-backup ang iyong mga uploads. Mangyaring subukan muli"
374
 
375
+ #: lib/includes/job_backup.php:1130
376
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
377
  msgstr ""
378
  "(123) Hindi ma-backup ang iyong sari-sari na mga file. Mangyaring subukan "
379
  "muli"
380
 
381
+ #: lib/includes/job_backup.php:1131
382
  msgid ""
383
  "(125) Unable to compress your backup because there is no zip utility "
384
  "available. Please contact support"
386
  "(125) Hindi ma- siksik ang iyong backup dahil walang available na zip "
387
  "utility. Mangyaring makipag-ugnayan sa support para sa tulong. "
388
 
389
+ #: lib/includes/job_backup.php:1132
390
  msgid "(126) Unable to validate your backup. Please try again"
391
  msgstr "(126) Hindi ma-validate ang iyong backup. Mangyaring subukan muli"
392
 
393
+ #: lib/includes/job_backup.php:1133
394
  msgid "(127) Unable to create inventory of files to backup. Please try again"
395
  msgstr ""
396
  "(127) Hindi makalikha ng imbentaryo ng mga files na dapat i- backup. "
397
  "Mangyaring subukan muli"
398
 
399
+ #: lib/includes/job_backup.php:1134
400
  msgid "(128) Unable to create job control record. Please try again"
401
  msgstr "(128) Hindi makalikha ng job control record. Mangyaring subukan muli"
402
 
403
+ #: lib/includes/job_backup.php:1136
404
  msgid ""
405
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
406
  "settings of your wp-backitup backup directory"
409
  "suriin ang setting ng CHMOD ng iyong direktoryo para sa backup ng wp-"
410
  "backitup "
411
 
412
+ #: lib/includes/job_backup.php:1137
413
  msgid ""
414
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
415
  "your wp-backitup plugin directory"
417
  "(2102) Hindi makalikha ng direktoryo ng backup. Mangyaring suriin ang mga "
418
  "setting ng CHMOD ng inyong direktoryo ng plugin ng wp-backitup "
419
 
420
+ #: lib/includes/job_backup.php:1138
421
  msgid "(2103) Unable to backup your files. Please try again"
422
  msgstr "(2103) Hindi ma-backup ang iyong mga files. Mangyaring subukan muli"
423
 
424
+ #: lib/includes/job_backup.php:1139
425
  msgid "(2104) Unable to export your database. Please try again"
426
  msgstr "(2104) Hindi ma-export ang iyong database. Mangyaring subukan muli"
427
 
428
+ #: lib/includes/job_backup.php:1140
429
  msgid "(2105) Unable to export site information file. Please try again"
430
  msgstr ""
431
  "(2105) Hindi ma-export and site information file. Mangyaring subukan muli"
432
 
433
+ #: lib/includes/job_backup.php:1141
434
  msgid "(2106) Unable to cleanup your backup directory"
435
  msgstr "(2106) Hindi malinisan ang iyong direktoryo ng backup"
436
 
437
+ #: lib/includes/job_backup.php:1142
438
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
439
  msgstr ""
440
  "(2107) Hindi ma-siksik sa (zip) ang iyong backup. Mangyaring subukan muli"
441
 
442
+ #: lib/includes/job_backup.php:1143
443
  msgid "(2108) Unable to backup your site data files. Please try again"
444
  msgstr ""
445
  "(2108) Hindi ma-backup ang iyong site data files. Mangyaring subukan muli"
446
 
447
+ #: lib/includes/job_backup.php:1144
448
  msgid "(2109) Unable to finalize backup. Please try again"
449
  msgstr "(2109) Hindi ma-kumpleto ang backup. Mangyaring subukan muli"
450
 
451
+ #: lib/includes/job_backup.php:1145
452
  msgid ""
453
  "(2114) Your database was accessible but an export could not be created. "
454
  "Please contact support by clicking the get support link on the right. Please "
460
  "ipaalam sa amin kung sino ang iyong host kung kayo ay magpapadala ng "
461
  "kahilingan."
462
 
463
+ #: lib/includes/job_backup.php:1146
464
  msgid "(2120) Unable to backup your themes. Please try again"
465
  msgstr "(2120) Hindi ma-backup ang iyong tema. Mangyaring subukan muli"
466
 
467
+ #: lib/includes/job_backup.php:1147
468
  msgid "(2121) Unable to backup your plugins. Please try again"
469
  msgstr "(2121) Hindi ma-backup ang iyong mga plugins. Mangyaring subukan muli"
470
 
471
+ #: lib/includes/job_backup.php:1148
472
  msgid "(2122) Unable to backup your uploads. Please try again"
473
  msgstr "(2122) Hindi ma-backup ang iyong mga upload. Mangyaring subukan muli"
474
 
475
+ #: lib/includes/job_backup.php:1149
476
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
477
  msgstr ""
478
  "(2123) Hindi ma-backup ang iyong mga sari-sari na mga file. Mangyaring "
479
  "subukan muli"
480
 
481
+ #: lib/includes/job_backup.php:1150
482
  msgid ""
483
  "(2125) Unable to compress your backup because there is no zip utility "
484
  "available. Please contact support"
486
  "(2125) Hindi ma-isiksik ang iyong backup dahil walang magagamit na zip "
487
  "utility. Mangyaring makipag-ugnayan sa suport para sa tulong"
488
 
489
+ #: lib/includes/job_backup.php:1151
490
  msgid "(2126) Unable to validate your backup. Please try again"
491
  msgstr "(2126) Hindi ma-validate ang iyong backup. Mangyaring subukan muli"
492
 
493
+ #: lib/includes/job_backup.php:1152
494
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
495
  msgstr ""
496
  "(2127) Hindi makalikha ng imbentaryo ng mga files na dapat i- backup. "
497
  "Mangyaring subukan muli"
498
 
499
+ #: lib/includes/job_backup.php:1153
500
  msgid "(2128) Unable to create job control record. Please try again"
501
  msgstr "(2128) Hindi makalikha ng job control record. Mangyaring subukan muli"
502
 
503
+ #: lib/includes/job_backup.php:1156
504
  msgid "(999) Unexpected error"
505
  msgstr "(999) Hindi inaasahang error o hindi inaasahang pagkakamali"
506
 
507
  #. TRANSLATORS: %s = plugin name.
508
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
509
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
510
+ #: views/backup.php:17
511
  #, php-format
512
  msgid "%s Dashboard"
513
  msgstr "%s Dashboard"
514
 
515
+ #: views/backup.php:83
516
+ msgid "Dismiss"
517
+ msgstr "Alisin"
518
+
519
+ #: views/backup.php:95
520
  #, php-format
521
  msgid "Backup folder does not exist. Please contact %s for assistance."
522
  msgstr ""
523
  "Ang backup folder ay hindi umiiral. Makipagugnayan sa %s suport para sa "
524
  "tulong. "
525
 
526
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
527
  msgid "support"
528
  msgstr "Suport"
529
 
530
+ #: views/backup.php:98 views/backup.php:104
531
  msgid "Close"
532
  msgstr "Isara"
533
 
534
+ #: views/backup.php:119
535
  msgid ""
536
  "Click the backup button to create a zipped backup file of this site's "
537
  "database, plugins, themes and settings."
539
  "I-click ang buton na backup upang lumikha ng zip backup file ng database, "
540
  "plugins, mga tema at mga setting ng site database"
541
 
542
+ #: views/backup.php:120
543
  msgid ""
544
  "Once your backup file has been created it will appear in the available "
545
  "backups section below. This file may remain on your hosting providers server "
550
  "hosting provider server ngunit inirerekumenda namin na iyong i-download at i-"
551
  "save . "
552
 
553
+ #: views/backup.php:121
554
  msgid ""
555
  "WP BackItUp premium customers can use these backup files to perform an "
556
  "automated restore of their site."
559
  "files upang magsagawa ng awtomatikong pagbalik sa orihinal ng kanilang "
560
  "site. "
561
 
562
+ #: views/backup.php:125
563
  msgid "Cancel"
564
  msgstr "Ikansela"
565
 
566
+ #: views/backup.php:132
567
  #, php-format
568
  msgid ""
569
  "WP BackItUp lite customers may use these backup files to manually restore "
573
  "para mano-manong ibalik sa orihinal ang kanilang site. Mangyaring bisitahin "
574
  "ang %s para sa mga tagubilin."
575
 
576
+ #: views/backup.php:139
577
  msgid "Backup Schedule"
578
  msgstr "Backup Iskedyul"
579
 
580
+ #: views/backup.php:141
581
  msgid "Select the days of the week you would like your backup to run."
582
  msgstr "Piliin ang mga araw na nais mong magsimula ang iyong backup "
583
 
584
+ #: views/backup.php:143
585
  msgid ""
586
  "Backup your site once per week or every day, it's up to you. If you have "
587
  "email notifications turned on we'll even send you an email when it's done. "
596
  "Ang file na ito ay maaaring manatili sa iyong hosting provider server ngunit "
597
  "inirerekumenda namin na iyong i-download at i-save."
598
 
599
+ #: views/backup.php:145
600
  msgid "Please make sure to schedule your backup for at least once per week."
601
  msgstr ""
602
  "Mangyaring siguraduhin na mag-iskedyul ng iyong mga backup , isang beses sa "
603
  "isang linggo."
604
 
605
+ #: views/backup.php:149
606
  msgid "Monday"
607
  msgstr "Lunes"
608
 
609
+ #: views/backup.php:150
610
  msgid "Tuesday"
611
  msgstr "Martes"
612
 
613
+ #: views/backup.php:151
614
  msgid "Wednesday"
615
  msgstr "Miyerkules"
616
 
617
+ #: views/backup.php:152
618
  msgid "Thursday"
619
  msgstr "Huwebes"
620
 
621
+ #: views/backup.php:153
622
  msgid "Friday"
623
  msgstr "Biyernes"
624
 
625
+ #: views/backup.php:154
626
  msgid "Saturday"
627
  msgstr "Sabado"
628
 
629
+ #: views/backup.php:155
630
  msgid "Sunday"
631
  msgstr "Linggo"
632
 
633
+ #: views/backup.php:158
634
  msgid "Save Schedule"
635
  msgstr "I-save ang iskedyul "
636
 
637
+ #: views/backup.php:163
638
  #, php-format
639
  msgid ""
640
  "Scheduled backups are only available to WP BackItUp premium customers. "
644
  "customer. Mangyaring bisitahin ang %s upang makakuha ng WP BackItUp risk "
645
  "free para sa 30 araw. "
646
 
647
+ #: views/backup.php:170 views/restore.php:95
648
  msgid "Available Backups"
649
  msgstr "Mayroong Backups "
650
 
651
+ #: views/backup.php:190 views/restore.php:100
652
+ msgid "Date"
653
+ msgstr "Petsa"
654
+
655
+ #: views/backup.php:191
656
+ msgid "Duration"
657
+ msgstr "Panahong itinagal"
658
+
659
+ #: views/backup.php:214
660
+ msgid "Success"
661
+ msgstr "Matagumpay! "
662
+
663
+ #: views/backup.php:217
664
+ msgid "Active"
665
+ msgstr "Aktibo: "
666
+
667
+ #: views/backup.php:257 views/restore.php:150
668
  msgid "No backup archives found."
669
  msgstr "Walang nahanap na backup archive"
670
 
671
+ #: views/backup.php:266
672
  #, php-format
673
  msgid ""
674
  "The automated restore feature is only available to WP BackItUp premium "
678
  "premium customer. Mangyaring bisitahin ang %s upang makakuha ng WP BackItUp "
679
  "risk free para sa 30 araw."
680
 
681
+ #: views/backup.php:275 views/restore.php:234
682
  msgid "Nothing to report"
683
  msgstr "Walang maiulat"
684
 
685
+ #: views/backup.php:280
686
  msgid "Preparing for backup"
687
  msgstr "Paghahanda para sa backup"
688
 
689
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
690
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
691
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
692
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
693
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
694
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
695
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
696
  msgid "Done"
697
  msgstr "Tapos na "
698
 
699
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
700
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
701
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
702
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
703
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
704
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
705
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
706
  msgid "Failed"
707
  msgstr "Hindi napagtagumpayan "
708
 
709
+ #: views/backup.php:281
710
+ msgid "Creating inventory of files to backup"
711
+ msgstr "Paglikha ng imbentaryo ng files para i-backup."
712
+
713
+ #: views/backup.php:282
714
  msgid "Backing up database"
715
  msgstr "Pag-back up ng database"
716
 
717
+ #: views/backup.php:283
718
  msgid "Creating backup information file"
719
  msgstr "Paglikha ng backup information file "
720
 
721
+ #: views/backup.php:284
722
  msgid "Backing up themes"
723
  msgstr "Pag-back up ng tema"
724
 
725
+ #: views/backup.php:285
726
  msgid "Backing up plugins"
727
  msgstr "Pag-back up plugins"
728
 
729
+ #: views/backup.php:286
730
  msgid "Backing up uploads"
731
  msgstr "Pag-back up uploads"
732
 
733
+ #: views/backup.php:287
734
  msgid "Backing up everything else"
735
  msgstr "Pag back up ng lahat ng iba pa"
736
 
737
+ #: views/backup.php:288
738
  msgid "Validating backup"
739
  msgstr "Pagpapatunay sa backup "
740
 
741
+ #: views/backup.php:289
742
  msgid "Finalizing backup"
743
  msgstr "Pag kumpleto ng backup"
744
 
745
+ #: views/backup.php:299
746
  msgid "Backup completed successfully"
747
  msgstr "Matagumpay na nakumpleto ang backup"
748
 
749
+ #: views/backup.php:320
750
  msgid "Backups"
751
  msgstr "Backups"
752
 
753
+ #: views/backup.php:320
754
  msgid "Version "
755
  msgstr "Bersyon "
756
 
757
+ #: views/backup.php:322
758
  msgid "Welcome to WP BackItUp!"
759
  msgstr "Maligayang pagdating sa WP BackItUp!"
760
 
761
+ #: views/backup.php:322
762
  msgid "The simplest way to backup your WordPress site."
763
  msgstr "Ang pinakasimpleng paraan upang i- backup ang iyong WordPress site."
764
 
765
+ #: views/backup.php:323
766
  msgid ""
767
  "Getting started is easy, just click the backup button on the left side of "
768
  "this page."
770
  "Ang pagsisimula ay madali, i-click lamang ang buton ng backup sa kaliwang "
771
  "bahagi ng pahinang ito."
772
 
773
+ #: views/backup.php:327
774
  #, php-format
775
  msgid ""
776
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
779
  "Pagbati! Ikaw ay nagsagawa ng <span style=\"font-weight:bold;font-size:"
780
  "medium;color: green\">%s</span> matagumpay na backups "
781
 
782
+ #: views/backup.php:328
783
  msgid "Tips"
784
  msgstr "Tips"
785
 
786
+ #: views/backup.php:329
787
  msgid "Backup your site at least once per week"
788
  msgstr "Mag backup ng iyong site isang beses sa isang linggo"
789
 
790
+ #: views/backup.php:330
791
  msgid "Download all your backups and store them somewhere safe"
792
  msgstr "I-download ang lahat ng iyong mga backup at itago saan man ligtas"
793
 
794
+ #: views/backup.php:331
795
  msgid "Verify your backup files are good by taking a look at what's inside"
796
  msgstr ""
797
  "Upang mapatunayan na maayos ang iyong mga backup tignan ang nilalaman nito "
798
 
799
+ #: views/backup.php:336
800
  #, php-format
801
  msgid "Why not %s and schedule your backups!"
802
  msgstr "Bakit hindi %s at i-iskedyul ang iyong mga backup!"
803
 
804
+ #: views/backup.php:336
805
  msgid "upgrade"
806
  msgstr "Upgrade"
807
 
808
+ #: views/backup.php:345
809
  msgid "Register WP BackItUp"
810
  msgstr "Magrehistro ng WP BackItUp"
811
 
812
+ #: views/backup.php:348
813
  msgid ""
814
  "Enter your name and email address below to receive <b>special offers</b> and "
815
  "access to our world class <b>support</b> team. <br />\n"
821
  "> \n"
822
  "Ilagay ang iyong license key upang ma-activate sa site na ito."
823
 
824
+ #: views/backup.php:350
825
  msgid "name"
826
  msgstr "Pangalan"
827
 
828
+ #: views/backup.php:351
829
  msgid "email address"
830
  msgstr "email address"
831
 
832
+ #: views/backup.php:352
833
  msgid "license key"
834
  msgstr "license key"
835
 
836
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
837
  #, php-format
838
  msgid "%s"
839
  msgstr "%s"
840
 
841
+ #: views/backup.php:353
842
  msgid "Free plugin customers do not need to enter license key."
843
  msgstr ""
844
  "Ang mga free plugin customers ay hindi na kailangang maglagay ng license "
845
  "key "
846
 
847
+ #: views/backup.php:354
848
  msgid "Register"
849
  msgstr "Mag-rehistro"
850
 
851
+ #: views/backup.php:363
852
  msgid "License Info"
853
  msgstr "Impormasyon ng Lisensya"
854
 
855
+ #: views/backup.php:385
856
  msgid "Name"
857
  msgstr "Pangalan"
858
 
859
+ #: views/backup.php:386
860
  msgid "Email"
861
  msgstr "Email"
862
 
863
+ #: views/backup.php:387
864
  msgid "License Type"
865
  msgstr "Uri ng Lisensya"
866
 
867
+ #: views/backup.php:388
868
  msgid "Expires"
869
  msgstr "Lumipas na"
870
 
871
+ #: views/backup.php:391
872
  msgid "Enter license key to activate on this site."
873
  msgstr "Ilagay ang lisensya upang ma-activate sa site na ito"
874
 
875
+ #: views/backup.php:398
876
  msgid "License Active"
877
  msgstr "Aktibong Lisensya "
878
 
879
+ #: views/backup.php:406
880
  msgid "License expired"
881
  msgstr "Wala ng bisa ang lisensya"
882
 
883
+ #: views/backup.php:410
884
  msgid "Update"
885
  msgstr "Update"
886
 
887
+ #: views/backup.php:414
888
  msgid "Activate"
889
  msgstr "I-activate"
890
 
891
+ #: views/backup.php:418
892
  #, php-format
893
  msgid "Purchase a %s license using the purchase link above."
894
  msgstr "Bumili ng %s lisensiya gamit ang link na nasa itaas. "
895
 
896
+ #: views/backup.php:418
897
  msgid "no-risk"
898
  msgstr "no risk "
899
 
900
+ #: views/backup.php:424
901
  #, php-format
902
  msgid ""
903
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
904
+ "<strong>product updates</strong> and access to our <strong>world class "
905
+ "support</strong> team."
906
  msgstr ""
907
  "<a href=\"%s\" target=\"blank\"> i-renew </a> ang iyong lisensya ngayon "
908
  "para sa isa pang taon ng mga update <strong> ng produkto </strong> at "
909
  "<strong> priority suport. </strong>"
910
 
911
+ #: views/backup.php:435
912
  msgid "Useful Links"
913
  msgstr "Kapaki-pakinabang na mga Link"
914
 
915
+ #: views/backup.php:438 views/backup.php:442
916
  msgid "Your account"
917
  msgstr "Ang iyong account"
918
 
919
+ #: views/backup.php:445
920
  msgid "Documentation"
921
  msgstr "Dokumentasyon"
922
 
923
+ #: views/backup.php:448
924
  msgid "Get support"
925
  msgstr "Makipagugnayan sa suport para sa tulong"
926
 
927
+ #: views/backup.php:451
928
  msgid "Feature request"
929
  msgstr "Feature request"
930
 
931
+ #: views/backup.php:453
932
+ msgid "Language Translations"
933
+ msgstr "Pagsasalin ng Wika"
934
+
935
+ #: views/backup.php:455
936
  msgid "Contact"
937
  msgstr "Contact"
938
 
939
+ #: views/backup.php:478 views/backup.php:502
940
  msgid "WP BackItUp Backup Set"
941
  msgstr "WP BackItUp BackUp Set"
942
 
943
+ #: views/backup.php:480
944
  msgid ""
945
  "Below are the archive files included in this backup set. Click the link to "
946
  "download."
948
  "Sa ibaba ay ang mga archive files na kasama sa backup set. I-click ang link "
949
  "upang i-download."
950
 
951
+ #: views/backup.php:503
952
  msgid "Please refresh this page to download your new backup files."
953
  msgstr ""
954
  "Mangyaring i-refresh ang pahinang ito upang i-download ang iyong bagong "
955
  "backup file."
956
 
957
+ #: views/restore.php:13
958
  #, php-format
959
  msgid "%s Restore"
960
  msgstr "%s Ibalik sa orihinal"
961
 
962
+ #: views/restore.php:60
963
  msgid "Zip Files"
964
  msgstr "Zip Files"
965
 
966
+ #: views/restore.php:75
967
  #, php-format
968
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
969
  msgstr ""
970
  "Error: Ang backup folder ay hindi umiiral. Mangyaring makipag-ugnayan sa %s "
971
  "para sa tulong."
972
 
973
+ #: views/restore.php:82
974
  #, php-format
975
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
976
  msgstr ""
977
  "Error: Ang restore folder ay hindi umiiral. Mangyaring makipag- ugnayan sa "
978
  "%s para sa tulong"
979
 
980
+ #: views/restore.php:166
981
  #, php-format
982
  msgid ""
983
  "<p>* The automated restore feature is only available to licensed customers. "
989
  "target=\"_blank\">%s</a> upang makakuha ng lisensiya ng WP BackItUp risk "
990
  "free para sa 30 araw</p>"
991
 
992
+ #: views/restore.php:178
993
  msgid "Upload"
994
  msgstr "Upload"
995
 
996
+ #: views/restore.php:181
997
  msgid ""
998
  "Upload WP BackItUp archive(zip) files to add to your list of available "
999
  "backups."
1001
  "Mag-upload ng WP BackItUp archive (zip) file upang idagdag sa iyong listahan "
1002
  "ng mga magagamit backup. "
1003
 
1004
+ #: views/restore.php:198
1005
  msgid "WP BackItUp - Upload backup files"
1006
  msgstr "WP BackItUp - Mag-upload ng backup file"
1007
 
1008
+ #: views/restore.php:199
1009
  msgid "Backup files may be uploaded into WP BackItUp with this form."
1010
  msgstr ""
1011
  "Ang Backup file ay maaaring ma-i -upload sa WP BackItUp sa pamamagitan ng "
1012
  "form na ito"
1013
 
1014
+ #: views/restore.php:199
1015
  msgid ""
1016
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
1017
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
1021
  "BackItUp (wp-content / wp backitup backup) gamit ang FTP. Kapag tapos na ang "
1022
  "pag-upload ng lahat ng backup file, i - refresh ang pahinang ito."
1023
 
1024
+ #: views/restore.php:203
1025
  #, php-format
1026
  msgid "This feature requires %s version %s or later"
1027
  msgstr ""
1028
  "Ang feature na ito ay nangangailangan ng %s bersyon %s o mas nauna pang "
1029
  "bersyon "
1030
 
1031
+ #: views/restore.php:209
1032
  msgid "Drop backup files here"
1033
  msgstr "Ilagay ang backup files dito"
1034
 
1035
+ #: views/restore.php:215
1036
  msgid ""
1037
  "* Reload this page when done uploading to see new backups appear in the "
1038
  "Available Backups section above. "
1040
  "I-reload ang pahinang ito kapag tapos na ang pag-upload upang makita ang "
1041
  "mga bagong backup sa available section ng backups na nasa itaas. "
1042
 
1043
+ #: views/restore.php:244
1044
  msgid "Preparing for restore"
1045
  msgstr "Paghahanda para maibalik sa orihinal "
1046
 
1047
+ #: views/restore.php:245
1048
  msgid "Unzipping backup set"
1049
  msgstr "Pag unzip ng backup set"
1050
 
1051
+ #: views/restore.php:246
1052
  msgid "Validating backup file"
1053
  msgstr "Pagpapatunay sa backup file"
1054
 
1055
+ #: views/restore.php:247
1056
  msgid "Deactivating plugins"
1057
  msgstr "Tanggalin ang pagka-aktibo ng plugin"
1058
 
1059
+ #: views/restore.php:248
1060
  msgid "Creating database restore point"
1061
  msgstr "Paglikha ng database restore point"
1062
 
1063
+ #: views/restore.php:249
1064
  msgid "Staging content files"
1065
  msgstr "Pagsasaayos ng mga nilalaman na files "
1066
 
1067
+ #: views/restore.php:250
1068
  msgid "Restoring content files"
1069
  msgstr "Ipinapanumbalik ang nilalaman na mga file"
1070
 
1071
+ #: views/restore.php:251
1072
  msgid "Restoring database"
1073
  msgstr "Ipinapanumbalik ang database"
1074
 
1075
+ #: views/restore.php:252
1076
  msgid "Updating current user info"
1077
  msgstr "Ina-update ang mga kasalukuyang impormasyon ng user"
1078
 
1079
+ #: views/restore.php:253
1080
  msgid "Updating site URL"
1081
  msgstr "Ina- update ang site URL "
1082
 
1083
+ #: views/restore.php:255
1084
  msgid "Updating permalinks"
1085
  msgstr "Ina-update ang permalinks"
1086
 
1087
+ #: views/restore.php:261
1088
  msgid "Error 201: No file selected"
1089
  msgstr "Error 201: Walang napiling file"
1090
 
1091
+ #: views/restore.php:262
1092
  msgid "Error 202: Your file could not be uploaded"
1093
  msgstr "Error 202: Hindi ma-i- upload ang iyong file"
1094
 
1095
+ #: views/restore.php:263
1096
  msgid "Error 203: Your backup could not be unzipped"
1097
  msgstr "Error 203: Ang iyong backup ay hindi mai-unzipped"
1098
 
1099
+ #: views/restore.php:264
1100
  msgid ""
1101
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
1102
  "valid backup"
1104
  "Error 204: Ang iyong backup ay hindi wasto. Mangyaring siguraduhin na "
1105
  "pinili mo ang isang tunay na backup."
1106
 
1107
+ #: views/restore.php:265
1108
  msgid "Error 205: Cannot create restore point"
1109
  msgstr "Error 205: Hindi makalikha ng restore point"
1110
 
1111
+ #: views/restore.php:266
1112
  msgid "Error 206: Unable to connect to your database"
1113
  msgstr "Error 206: Hindi makakonekta sa iyong database"
1114
 
1115
+ #: views/restore.php:267
1116
  msgid ""
1117
  "Error 207: Unable to get current site URL from database. Please try again"
1118
  msgstr ""
1119
  "Error 207: Hindi makuha ang kasalukuyang URL site mula sa database. "
1120
  "Mangyaring subukan muli"
1121
 
1122
+ #: views/restore.php:268
1123
  msgid ""
1124
  "Error 208: Unable to get current home URL from database. Please try again"
1125
  msgstr ""
1126
  "Error 208: Hindi makuha ang kasalukuyang home URL mula sa database. "
1127
  "Mangyaring subukan muli"
1128
 
1129
+ #: views/restore.php:269
1130
  msgid ""
1131
  "Error 209: Unable to get current user ID from database. Please try again"
1132
  msgstr ""
1133
  "Error 209: Hindi makuha ang kasalukuyang user ID mula sa database. "
1134
  "Mangyaring subukan muli"
1135
 
1136
+ #: views/restore.php:270
1137
  msgid ""
1138
  "Error 210: Unable to get current user password from database. Please try "
1139
  "again"
1141
  "Error 210: Hindi makuha ang kasalukuyang user password mula sa database. "
1142
  "Mangyaring subukan muli"
1143
 
1144
+ #: views/restore.php:271
1145
  msgid ""
1146
  "Error 211: Unable to get current user email from database. Please try again"
1147
  msgstr ""
1148
  "Error 211: Hindi makuha ang kasalukuyang user email mula sa database. "
1149
  "Mangyaring subukan muli"
1150
 
1151
+ #: views/restore.php:272
1152
  msgid ""
1153
  "Error 212: Unable to import your database. This may require importing the "
1154
  "file manually"
1156
  "Error 212: Hindi ma-import ang iyong database. Maaaring mangailangan ng mano "
1157
  "-mano na pag-import ng file"
1158
 
1159
+ #: views/restore.php:273
1160
  msgid ""
1161
  "Warning 213: Unable to update your site URL value. Please check your "
1162
  "WordPress general settings to make sure your Site and WordPress URLs are "
1166
  "pangkalahatang mga setting ng WordPress upang matiyak na ang iyong site at "
1167
  "WordPress URL ay tama"
1168
 
1169
+ #: views/restore.php:274
1170
  msgid ""
1171
  "Warning 214: Unable to update your home URL value. Please check your "
1172
  "WordPress general settings to make sure your Site and WordPress URLs are "
1176
  "pangkalahatang mga setting ng iyong WordPress upang matiyak na ang iyong "
1177
  "site at WordPress URL ay tama"
1178
 
1179
+ #: views/restore.php:275
1180
  msgid ""
1181
  "Warning 215: Unable to update your user information. This may require you to "
1182
  "login with the admin username and password that was used when the backup was "
1186
  "na ikaw ay mag-login gamit ang admin username at password na ginagamit "
1187
  "kapag nagsasagawa ng backup. "
1188
 
1189
+ #: views/restore.php:276
1190
  msgid "Error 216: Database not found in backup"
1191
  msgstr "Error 216: Ang database ay hindi matagpuan sa backup"
1192
 
1193
+ #: views/restore.php:277
1194
  msgid "Warning 217: Unable to remove existing wp-content directory"
1195
  msgstr "Babala 217: Hindi matanggal ang umiiral na direktoryo ng wp-content"
1196
 
1197
+ #: views/restore.php:278
1198
  msgid ""
1199
  "Error 218: Unable to create new wp-content directory. Please check your "
1200
  "CHMOD settings in /wp-content/"
1202
  "Error 218: Hindi makalikha ng mga bagong direktoryo ng wp-content. "
1203
  "Mangyaring suriin ang mga setting ng CHMOD sa / wp-content / "
1204
 
1205
+ #: views/restore.php:279
1206
  msgid "Error 219: Unable to import wp-content. Please try again"
1207
  msgstr "Error 219: Hindi ma - import ang wp-content. Mangyaring subukan muli "
1208
 
1209
+ #: views/restore.php:280
1210
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1211
  msgstr ""
1212
  "Babala 220: Hindi malinisan ang import direktoryo Walang kinakailangang "
1213
  "aksyon"
1214
 
1215
+ #: views/restore.php:281
1216
  #, php-format
1217
  msgid ""
1218
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1225
  "ang iyong site. Tignan ang www.wpbackitup.com <a href =\"%s\" target="
1226
  "\"_blank\"> FAQs </a> para sa karagdagang impormasyon."
1227
 
1228
+ #: views/restore.php:282
1229
  msgid "Error 222: Unable to create restore folder"
1230
  msgstr "Error 222: Hindi makalikha ng restore folder"
1231
 
1232
+ #: views/restore.php:283
1233
  msgid ""
1234
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1235
  "restore the database to its previous state but were unsuccessful. Please "
1242
  "Mangyaring makipag-ugnayan sa WP BackItUp customer suport para sa tulong at "
1243
  "wag subukin na magsagawa ng anumang karagdagang restores"
1244
 
1245
+ #: views/restore.php:284
1246
  msgid ""
1247
  "Error 224: An error occurred during the restore, however, we have "
1248
  "successfully restored your database to the previous state"
1251
  "gayunpaman, matagumpay na naipanumbalik ang iyong database sa dating estado "
1252
  "nito"
1253
 
1254
+ #: views/restore.php:285
1255
  msgid ""
1256
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1257
  msgstr ""
1258
  "Error 225: Ang opsyon na pagbabalik sa orihinal ay magagamit lamang ng mga "
1259
  "lisensiyadong mga gumagamit WP BackItUp"
1260
 
1261
+ #: views/restore.php:286
1262
  msgid ""
1263
  "Error 226: Restore cannot proceed because your backup was created using a "
1264
  "different version of WordPress"
1266
  "Error 226: Ang pagbabalik sa orihinal ay hindi maaaring magpatuloy dahil ang "
1267
  "iyong backup ay nilikha gamit ang ibang bersyon ng WordPress"
1268
 
1269
+ #: views/restore.php:287
1270
  msgid ""
1271
  "Error 227: Restore cannot proceed because your backup was created using a "
1272
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1277
  "sa WP BackItUp suport upang matulungan kayo na ma-i- convert ang backup "
1278
  "na ito sa kasalukuyang bersyon"
1279
 
1280
+ #: views/restore.php:288
1281
  msgid ""
1282
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1283
  "restore. However, we were able to successfully revert the database back to "
1288
  "ang database sa orihinal na katayuan nito. Maaaring mangailangan na mano-"
1289
  "mano na mag -import ng database"
1290
 
1291
+ #: views/restore.php:289
1292
  msgid ""
1293
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1294
  "utility available. Please contact support"
1297
  "available na zip utility. Mangyaring makipag-ugnayan sa suport para sa "
1298
  "tulong"
1299
 
1300
+ #: views/restore.php:290
1301
  msgid ""
1302
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1303
  "running. Please wait for the backup to complete and then try again"
1306
  "orihinal dahil my kasalukuyang backup na nangyayari. Mangyaring maghintay "
1307
  "na makumpleto ang backup at pagkatapos ay subukan ulit"
1308
 
1309
+ #: views/restore.php:292
1310
  msgid ""
1311
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1312
  "manifest is empty"
1314
  "Error 251: Hindi maaaring simulan ng WP BackItUp ang pagbabalik sa "
1315
  "orihinal dahil ang backup manifest ay walang laman"
1316
 
1317
+ #: views/restore.php:293
1318
  msgid ""
1319
  "Error 252: At least one zip file is missing from your backup set. Please "
1320
  "make sure to upload all zip files that were part of this backup"
1322
  "Error 252: Hindi bababa sa isang zip file ay nawawala mula sa iyong backup "
1323
  "set. Pakitiyak na i-upload ang lahat ng zip file na bahagi ng backup na ito"
1324
 
1325
+ #: views/restore.php:294
1326
  msgid ""
1327
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1328
  "Please make sure to upload only zip files that were part of this backup"
1331
  "manifest. Pakitiyak na i-upload lamang ang zip file na bahagi ng backup na "
1332
  "ito "
1333
 
1334
+ #: views/restore.php:296
1335
  msgid ""
1336
  "Warning 300: Unable to restore all WordPress content. Please review your "
1337
  "restore logs to see what WP BackItUp was unable to restore"
1340
  "suriin ang iyong logs ng restore para makita kung ano ang hindi nagawang "
1341
  "ibalik sa orihinal ng WP BackItUp . "
1342
 
1343
+ #: views/restore.php:297
1344
  msgid ""
1345
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1346
  "to see what WP BackItUp was unable to restore"
1349
  "iyong logs sa pagbabalik sa orihinal para makita kung ano ang hindi "
1350
  "nagawang ibalik ng WP BackItUp"
1351
 
1352
+ #: views/restore.php:299
1353
  msgid "Error 2001: Unable to prepare site for restore"
1354
  msgstr "Error 2001: Hindi maihanda ang site para maibalik sa orihinal "
1355
 
1356
+ #: views/restore.php:300
1357
  msgid "Error 2002: Unable to unzip backup"
1358
  msgstr "Error 2002: Hindi magawang i-unzip ang backup"
1359
 
1360
+ #: views/restore.php:301
1361
  msgid "Error 2003: Unable to validate backup"
1362
  msgstr "Error 2003: Hindi ma-validate ang backup"
1363
 
1364
+ #: views/restore.php:302
1365
  msgid "Error 2004: Unable to create restore point"
1366
  msgstr "Error 2004: Hindi makalikha ng restore point"
1367
 
1368
+ #: views/restore.php:303
1369
  msgid "Error 2005: Unable to stage wp-content"
1370
  msgstr "Error 2005: Hindi magawang mahanda ang wp-content"
1371
 
1372
+ #: views/restore.php:304
1373
  msgid "Error 2006: Unable to restore content files"
1374
  msgstr "Error 2006: Hindi maibabalik sa orihinal ang nilalaman na file "
1375
 
1376
+ #: views/restore.php:305
1377
  msgid "Error 2007: Unable to restore database"
1378
  msgstr "Error 2007: Hindi nagawang ibalik ang database"
1379
 
1380
+ #: views/restore.php:306
1381
  msgid "Error 2999: Unexpected error encountered"
1382
  msgstr "Error 2999: Hindi inaasahang error ang naganap "
1383
 
1384
+ #: views/restore.php:313
1385
  msgid ""
1386
  "Restore completed successfully. If you are prompted to login please do so "
1387
  "with your current username and password"
1390
  "na mag-login mangyaring gawin ito gamit ang iyong kasalukuyang username at "
1391
  "password"
1392
 
1393
+ #: views/settings.php:13
1394
  #, php-format
1395
  msgid "%s Settings"
1396
  msgstr "%s Mga Setting"
1397
 
1398
+ #: views/settings.php:40
1399
  msgid "Email Notifications"
1400
  msgstr "Abiso mula sa Email"
1401
 
1402
+ #: views/settings.php:41
1403
  msgid ""
1404
  "Please enter your email address if you would like to receive backup email "
1405
  "notifications."
1407
  "Pakilagay ang iyong email address kung nais mong makatanggap ng mga abiso "
1408
  "sa email tungkol sa backup. "
1409
 
1410
+ #: views/settings.php:42
1411
  msgid ""
1412
  "Backup email notifications will be sent for every backup and will contain "
1413
  "status information related to the backup."
1415
  "Magpapadala ng abiso sa email sa bawat backup at naglalaman ito ng "
1416
  "impormasyon na may kaugnayan sa backup."
1417
 
1418
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1419
+ #: views/settings.php:111
1420
  msgid "Save"
1421
  msgstr "I-save"
1422
 
1423
+ #: views/settings.php:60
1424
  msgid "Backup Retention"
1425
  msgstr "Backup Retention"
1426
 
1427
+ #: views/settings.php:61
1428
  msgid ""
1429
  "Enter the number of backup archives that you would like to remain on the "
1430
  "server."
1431
  msgstr "Ilagay ang bilang ng backup archive na nais mong manatili sa server."
1432
 
1433
+ #: views/settings.php:62
1434
  msgid ""
1435
  "Many hosts limit the amount of space that you can take up on their servers. "
1436
  "This option tells WP BackItUp the maximum number of backup archives that "
1443
  "host server. Huwag mag-alala, kami ay palaging nagtatangal muna ng "
1444
  "pinakaluma na backup archives. "
1445
 
1446
+ #: views/settings.php:81
1447
  msgid "Turn on logging?"
1448
  msgstr "Mangyaring i -on ang logging ?"
1449
 
1450
+ #: views/settings.php:82
1451
  msgid "Yes"
1452
  msgstr "Oo"
1453
 
1454
+ #: views/settings.php:83
1455
  msgid "No"
1456
  msgstr "Hindi"
1457
 
1458
+ #: views/settings.php:84
1459
  msgid ""
1460
  "This option should only be turned on when troubleshooting issues with "
1461
  "WPBackItUp support."
1463
  "Ang opsyon na ito ay dapat i- on kapag nag -troubleshoot ng mga isyu sa "
1464
  "WPBackItUp. "
1465
 
1466
+ #: views/settings.php:89
1467
  msgid "Advanced Settings"
1468
  msgstr "Advanced na Mga Setting"
1469
 
1470
+ #: views/settings.php:90
1471
  msgid ""
1472
  "These options should only be changed when working with WP BackItUp support."
1473
  msgstr ""
1474
  "Ang opsyon na ito ay babaguhin lamang sa tuwing nakikipagugnayan sa WP "
1475
  "BackItUp support."
1476
 
1477
+ #: views/settings.php:93
1478
  msgid "Plugins Batch Size"
1479
  msgstr "Sukat ng Pangkat ng Plugins "
1480
 
1481
+ #: views/settings.php:98
1482
  msgid "Themes Batch Size"
1483
  msgstr "Sukat ng Pangkat ng Tema"
1484
 
1485
+ #: views/settings.php:103
1486
  msgid "Uploads Batch Size"
1487
  msgstr "Sukat ng Pangkat ng Uploads "
1488
 
1489
+ #: views/settings.php:108
1490
  msgid "Others Batch Size"
1491
  msgstr "Sukat ng Iba pang Pangkat "
1492
 
1493
+ #: views/support.php:13
1494
  #, php-format
1495
  msgid "%s Support"
1496
  msgstr "%s Support"
1497
 
1498
+ #: views/support.php:32
1499
  msgid "Support email sent successfully!"
1500
  msgstr "Matagumpay na naipadala ang email sa suport . "
1501
 
1502
+ #: views/support.php:45
1503
  msgid "Email Logs to Support"
1504
  msgstr "Mag email ng logs sa suport para sa tulong"
1505
 
1506
+ #: views/support.php:46
1507
  msgid "This form should be used to send log files to support only."
1508
  msgstr ""
1509
  "Ang form na ito ay dapat gamitin upang magpadala ng log files sa suport para "
1510
  "sa tulong. "
1511
 
1512
+ #: views/support.php:47
1513
  msgid ""
1514
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1515
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1519
  "BackItUp <a href=\"https://www.wpbackitup.com/support\" target=\"_blank\"> "
1520
  "suport portal. </a> Bago gamitin ang form na ito."
1521
 
1522
+ #: views/support.php:48
1523
  msgid ""
1524
  "The ticket id you receive from your support request should be entered in the "
1525
  "ticket id field below."
1527
  "Ang mga ticket id na natanggap mo mula sa suport ay dapat na ilagay sa "
1528
  "patlang ng ticket id ."
1529
 
1530
+ #: views/support.php:49
1531
  msgid "your email address"
1532
  msgstr "ang iyong email address"
1533
 
1534
+ #: views/support.php:59
1535
  msgid "support ticket id"
1536
  msgstr "Suport ticket id"
1537
 
1538
+ #: views/support.php:69
1539
  msgid "problem description or additional information"
1540
  msgstr "paglalarawan ng problema o karagdagang impormasyon"
1541
 
1542
+ #: views/support.php:80
1543
  msgid "Send"
1544
  msgstr "Ipadala"
1545
 
1546
+ #: views/support.php:83
1547
  msgid "Please register your version of WP BackItUp for access to support."
1548
  msgstr ""
1549
  "Mangyaring magrehistro ng iyong bersyon ng WP BackItUp upang ma-access ang "
1550
  "suport para sa tulong."
1551
 
1552
+ #: views/support.php:87
1553
  msgid "Premium customers receive priority support."
1554
  msgstr "Ang mga premium customer ay bibigyan ng unang tulong "
1555
 
1556
+ #: wp-backitup.php:98 wp-backitup.php:99
1557
  #, php-format
1558
  msgid "Every %s hours"
1559
  msgstr "Kada %s oras "
1560
+
1561
+ #: wp-backitup.php:137
1562
+ msgid "Cleanup"
1563
+ msgstr "Paglilinis"
1564
+
1565
+ #~ msgid "Preparing for backup...Done"
1566
+ #~ msgstr "Paghahanda para sa backup.....Tapos na"
1567
+
1568
+ #~ msgid "Backing up database...Done"
1569
+ #~ msgstr "Pag backup ng database...Tapos na"
1570
+
1571
+ #~ msgid "Creating backup information file...Done"
1572
+ #~ msgstr "Paggawa ng backup information file...Tapos na"
1573
+
1574
+ #~ msgid "Backing up themes...Done"
1575
+ #~ msgstr "Pag backup ng tema ...Tapos na"
1576
+
1577
+ #~ msgid "Backing up plugins...Done"
1578
+ #~ msgstr "Pag backup ng plugins...Tapos na"
1579
+
1580
+ #~ msgid "Backing up uploads...Done"
1581
+ #~ msgstr "Pag backup ng uploads...Tapos na"
1582
+
1583
+ #~ msgid "Backing up miscellaneous files...Done"
1584
+ #~ msgstr "Pag backup ng sari- sari na files...Tapos na"
1585
+
1586
+ #~ msgid "Finalizing backup...Done"
1587
+ #~ msgstr "Pag kumpleto ng backup...Tapos na"
1588
+
1589
+ #~ msgid "Validating backup...Done"
1590
+ #~ msgstr "Pagbibigay bisa sa mga backup...Tapos na"
1591
+
1592
+ #~ msgid "Cleaning up...Done"
1593
+ #~ msgstr "Paglilinis ...Tapos na"
1594
+
1595
+ #~ msgid "Steps Completed"
1596
+ #~ msgstr "Nakumpleto ang bawat hakbang "
languages/wp-backitup.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WPBackItUp\n"
5
- "POT-Creation-Date: 2015-08-14 10:28-0400\n"
6
  "PO-Revision-Date: 2015-08-04 16:26-0400\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WPBackItUp <translations@wpbackitup.com>\n"
@@ -16,176 +16,195 @@ msgstr ""
16
  "X-Poedit-KeywordsList: _;__;_e\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
20
- #: views/backup.php:179
 
21
  msgid "Backup"
22
  msgstr ""
23
 
24
- #: lib/includes/class-wpbackitup-admin.php:175
25
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
 
26
  msgid "Restore"
27
  msgstr ""
28
 
29
- #: lib/includes/class-wpbackitup-admin.php:179
30
  msgid "Support"
31
  msgstr ""
32
 
33
- #: lib/includes/class-wpbackitup-admin.php:182
34
  msgid "Settings"
35
  msgstr ""
36
 
37
- #: lib/includes/class-wpbackitup-admin.php:203
38
  msgid ""
39
  "The backup you have selected exceeds what your host allows you to upload."
40
  msgstr ""
41
 
42
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
43
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
44
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
45
- #: views/backup.php:312 views/backup.php:313
46
  msgid "Warning"
47
  msgstr ""
48
 
49
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
 
50
  msgid "Error"
51
  msgstr ""
52
 
53
- #: lib/includes/class-wpbackitup-admin.php:206
54
  msgid "Response"
55
  msgstr ""
56
 
57
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
58
- #: views/restore.php:205
59
  msgid "Status"
60
  msgstr ""
61
 
62
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
63
  msgid "Download"
64
  msgstr ""
65
 
66
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
67
- #: views/restore.php:111
68
  msgid "Delete"
69
  msgstr ""
70
 
71
- #: lib/includes/class-wpbackitup-admin.php:211
72
  msgid "(JS997) Unexpected error"
73
  msgstr ""
74
 
75
- #: lib/includes/class-wpbackitup-admin.php:212
76
  msgid "(JS998) Unexpected error"
77
  msgstr ""
78
 
79
- #: lib/includes/class-wpbackitup-admin.php:213
80
  msgid "(JS999) An unexpected error has occurred"
81
  msgstr ""
82
 
83
- #: lib/includes/class-wpbackitup-admin.php:214
84
  msgid "Scheduled has been saved."
85
  msgstr ""
86
 
87
- #: lib/includes/class-wpbackitup-admin.php:215
88
  msgid "Scheduled was not saved."
89
  msgstr ""
90
 
91
- #: lib/includes/class-wpbackitup-admin.php:216
92
  msgid "Are you sure you want to restore your site?"
93
  msgstr ""
94
 
95
- #: lib/includes/class-wpbackitup-admin.php:217
96
  msgid "Are you sure ?"
97
  msgstr ""
98
 
99
- #: lib/includes/class-wpbackitup-admin.php:218
100
  msgid "This file cannot be delete!"
101
  msgstr ""
102
 
103
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
104
  msgid "View Log"
105
  msgstr ""
106
 
107
- #: lib/includes/class-wpbackitup-admin.php:220
108
  msgid "New Backup!"
109
  msgstr ""
110
 
111
- #: lib/includes/class-wpbackitup-admin.php:221
112
  msgid "Uploaded Backup"
113
  msgstr ""
114
 
115
- #: lib/includes/class-wpbackitup-admin.php:480
116
  msgid "Backup Queued"
117
  msgstr ""
118
 
119
- #: lib/includes/class-wpbackitup-admin.php:482
120
  msgid "Backup could not be queued"
121
  msgstr ""
122
 
123
- #: lib/includes/class-wpbackitup-admin.php:485
124
- msgid "Backup already in queue"
125
- msgstr ""
126
-
127
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
128
- msgid "Backup Cancelled"
129
  msgstr ""
130
 
131
- #: lib/includes/class-wpbackitup-admin.php:535
132
  msgid "No backup file selected."
133
  msgstr ""
134
 
135
- #: lib/includes/class-wpbackitup-admin.php:542
136
  msgid "No user id found."
137
  msgstr ""
138
 
139
- #: lib/includes/class-wpbackitup-admin.php:553
140
  msgid "Restore Queued"
141
  msgstr ""
142
 
143
- #: lib/includes/class-wpbackitup-admin.php:555
144
  msgid "Restore could not be queued"
145
  msgstr ""
146
 
147
- #: lib/includes/class-wpbackitup-admin.php:558
148
  msgid "Restore already in queue"
149
  msgstr ""
150
 
151
- #: lib/includes/class-wpbackitup-admin.php:743
 
 
 
 
152
  msgid "No response log found."
153
  msgstr ""
154
 
155
- #: lib/includes/class-wpbackitup-admin.php:836
156
- #: lib/includes/class-wpbackitup-admin.php:844
157
- #: lib/includes/class-wpbackitup-admin.php:873
158
- #: lib/includes/class-wpbackitup-admin.php:880
159
- #: lib/includes/class-wpbackitup-admin.php:887
160
- #: lib/includes/class-wpbackitup-admin.php:894
161
  msgid "Please enter a number"
162
  msgstr ""
163
 
164
- #: lib/includes/class-wpbackitup-admin.php:865
165
- #: lib/includes/class-wpbackitup-admin.php:972
166
  msgid "Please enter a valid email"
167
  msgstr ""
168
 
169
- #: lib/includes/class-wpbackitup-admin.php:979
170
  msgid "Please enter your support ticket id"
171
  msgstr ""
172
 
173
- #: lib/includes/class-wpbackitup-admin.php:984
174
  msgid "Please only enter numbers in this field"
175
  msgstr ""
176
 
177
- #: lib/includes/class-wpbackitup-admin.php:1645
178
  msgid "License is invalid."
179
  msgstr ""
180
 
181
- #: lib/includes/class-wpbackitup-admin.php:1650
182
  msgid "License has expired."
183
  msgstr ""
184
 
185
- #: lib/includes/class-wpbackitup-admin.php:1655
 
 
 
 
 
 
 
 
 
 
 
 
186
  msgid "Activation limit has been reached."
187
  msgstr ""
188
 
 
 
 
 
189
  #: lib/includes/handler_upload.php:29
190
  msgid "Invalid Nonce"
191
  msgstr ""
@@ -211,320 +230,290 @@ msgstr ""
211
  msgid "Could not import file into WP BackItUp backup set."
212
  msgstr ""
213
 
214
- #: lib/includes/job_backup.php:851
215
- msgid "Preparing for backup...Done"
216
- msgstr ""
217
-
218
- #: lib/includes/job_backup.php:852
219
- msgid "Backing up database...Done"
220
- msgstr ""
221
-
222
- #: lib/includes/job_backup.php:853
223
- msgid "Creating backup information file...Done"
224
- msgstr ""
225
-
226
- #: lib/includes/job_backup.php:854
227
- msgid "Backing up themes...Done"
228
- msgstr ""
229
-
230
- #: lib/includes/job_backup.php:855
231
- msgid "Backing up plugins...Done"
232
- msgstr ""
233
-
234
- #: lib/includes/job_backup.php:856
235
- msgid "Backing up uploads...Done"
236
- msgstr ""
237
-
238
- #: lib/includes/job_backup.php:857
239
- msgid "Backing up miscellaneous files...Done"
240
- msgstr ""
241
-
242
- #: lib/includes/job_backup.php:858
243
- msgid "Finalizing backup...Done"
244
- msgstr ""
245
-
246
- #: lib/includes/job_backup.php:859
247
- msgid "Validating backup...Done"
248
- msgstr ""
249
-
250
- #: lib/includes/job_backup.php:860
251
- msgid "Cleaning up...Done"
252
  msgstr ""
253
 
254
- #: lib/includes/job_backup.php:870
255
  #, php-format
256
  msgid "%s - Backup completed successfully."
257
  msgstr ""
258
 
259
- #: lib/includes/job_backup.php:871
260
  msgid "Your backup completed successfully."
261
  msgstr ""
262
 
263
- #: lib/includes/job_backup.php:874
264
  #, php-format
265
  msgid "%s - Backup did not complete successfully."
266
  msgstr ""
267
 
268
- #: lib/includes/job_backup.php:875
269
  msgid "Your backup did not complete successfully."
270
  msgstr ""
271
 
272
- #: lib/includes/job_backup.php:880
273
  #, php-format
274
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
275
  msgstr ""
276
 
277
- #: lib/includes/job_backup.php:881
278
  msgid "Backup date:"
279
  msgstr ""
280
 
281
- #: lib/includes/job_backup.php:882
282
  msgid "Number of backups completed with WP BackItUp:"
283
  msgstr ""
284
 
285
- #: lib/includes/job_backup.php:884
286
  msgid "Completion Code:"
287
  msgstr ""
288
 
289
- #: lib/includes/job_backup.php:885
290
  msgid "WP BackItUp Version:"
291
  msgstr ""
292
 
293
- #: lib/includes/job_backup.php:891
294
- msgid "Steps Completed"
295
- msgstr ""
296
-
297
- #: lib/includes/job_backup.php:912
298
  #, php-format
299
  msgid "Checkout %s for info about WP BackItUp and our other products."
300
  msgstr ""
301
 
302
- #: lib/includes/job_backup.php:1088
303
  msgid ""
304
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
305
  "settings of your wp-backitup backup directory"
306
  msgstr ""
307
 
308
- #: lib/includes/job_backup.php:1089
309
  msgid ""
310
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
311
  "your wp-backitup plugin directory"
312
  msgstr ""
313
 
314
- #: lib/includes/job_backup.php:1090
315
  msgid "(103) Unable to backup your files. Please try again"
316
  msgstr ""
317
 
318
- #: lib/includes/job_backup.php:1091
319
  msgid "(104) Unable to export your database. Please try again"
320
  msgstr ""
321
 
322
- #: lib/includes/job_backup.php:1092
323
  msgid "(105) Unable to export site information file. Please try again"
324
  msgstr ""
325
 
326
- #: lib/includes/job_backup.php:1093
327
  msgid "(106) Unable to cleanup your backup directory"
328
  msgstr ""
329
 
330
- #: lib/includes/job_backup.php:1094
331
  msgid "(107) Unable to compress(zip) your backup. Please try again"
332
  msgstr ""
333
 
334
- #: lib/includes/job_backup.php:1095
335
  msgid "(108) Unable to backup your site data files. Please try again"
336
  msgstr ""
337
 
338
- #: lib/includes/job_backup.php:1096
339
  msgid "(109) Unable to finalize backup. Please try again"
340
  msgstr ""
341
 
342
- #: lib/includes/job_backup.php:1097
343
  msgid ""
344
  "(114) Your database was accessible but an export could not be created. "
345
  "Please contact support by clicking the get support link on the right. Please "
346
  "let us know who your host is when you submit the request"
347
  msgstr ""
348
 
349
- #: lib/includes/job_backup.php:1098
350
  msgid "(120) Unable to backup your themes. Please try again"
351
  msgstr ""
352
 
353
- #: lib/includes/job_backup.php:1099
354
  msgid "(121) Unable to backup your plugins. Please try again"
355
  msgstr ""
356
 
357
- #: lib/includes/job_backup.php:1100
358
  msgid "(122) Unable to backup your uploads. Please try again"
359
  msgstr ""
360
 
361
- #: lib/includes/job_backup.php:1101
362
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
363
  msgstr ""
364
 
365
- #: lib/includes/job_backup.php:1102
366
  msgid ""
367
  "(125) Unable to compress your backup because there is no zip utility "
368
  "available. Please contact support"
369
  msgstr ""
370
 
371
- #: lib/includes/job_backup.php:1103
372
  msgid "(126) Unable to validate your backup. Please try again"
373
  msgstr ""
374
 
375
- #: lib/includes/job_backup.php:1104
376
  msgid "(127) Unable to create inventory of files to backup. Please try again"
377
  msgstr ""
378
 
379
- #: lib/includes/job_backup.php:1105
380
  msgid "(128) Unable to create job control record. Please try again"
381
  msgstr ""
382
 
383
- #: lib/includes/job_backup.php:1107
384
  msgid ""
385
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
386
  "settings of your wp-backitup backup directory"
387
  msgstr ""
388
 
389
- #: lib/includes/job_backup.php:1108
390
  msgid ""
391
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
392
  "your wp-backitup plugin directory"
393
  msgstr ""
394
 
395
- #: lib/includes/job_backup.php:1109
396
  msgid "(2103) Unable to backup your files. Please try again"
397
  msgstr ""
398
 
399
- #: lib/includes/job_backup.php:1110
400
  msgid "(2104) Unable to export your database. Please try again"
401
  msgstr ""
402
 
403
- #: lib/includes/job_backup.php:1111
404
  msgid "(2105) Unable to export site information file. Please try again"
405
  msgstr ""
406
 
407
- #: lib/includes/job_backup.php:1112
408
  msgid "(2106) Unable to cleanup your backup directory"
409
  msgstr ""
410
 
411
- #: lib/includes/job_backup.php:1113
412
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
413
  msgstr ""
414
 
415
- #: lib/includes/job_backup.php:1114
416
  msgid "(2108) Unable to backup your site data files. Please try again"
417
  msgstr ""
418
 
419
- #: lib/includes/job_backup.php:1115
420
  msgid "(2109) Unable to finalize backup. Please try again"
421
  msgstr ""
422
 
423
- #: lib/includes/job_backup.php:1116
424
  msgid ""
425
  "(2114) Your database was accessible but an export could not be created. "
426
  "Please contact support by clicking the get support link on the right. Please "
427
  "let us know who your host is when you submit the request"
428
  msgstr ""
429
 
430
- #: lib/includes/job_backup.php:1117
431
  msgid "(2120) Unable to backup your themes. Please try again"
432
  msgstr ""
433
 
434
- #: lib/includes/job_backup.php:1118
435
  msgid "(2121) Unable to backup your plugins. Please try again"
436
  msgstr ""
437
 
438
- #: lib/includes/job_backup.php:1119
439
  msgid "(2122) Unable to backup your uploads. Please try again"
440
  msgstr ""
441
 
442
- #: lib/includes/job_backup.php:1120
443
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
444
  msgstr ""
445
 
446
- #: lib/includes/job_backup.php:1121
447
  msgid ""
448
  "(2125) Unable to compress your backup because there is no zip utility "
449
  "available. Please contact support"
450
  msgstr ""
451
 
452
- #: lib/includes/job_backup.php:1122
453
  msgid "(2126) Unable to validate your backup. Please try again"
454
  msgstr ""
455
 
456
- #: lib/includes/job_backup.php:1123
457
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
458
  msgstr ""
459
 
460
- #: lib/includes/job_backup.php:1124
461
  msgid "(2128) Unable to create job control record. Please try again"
462
  msgstr ""
463
 
464
- #: lib/includes/job_backup.php:1127
465
  msgid "(999) Unexpected error"
466
  msgstr ""
467
 
468
  #. TRANSLATORS: %s = plugin name.
469
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
470
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
471
- #: views/backup.php:20
472
  #, php-format
473
  msgid "%s Dashboard"
474
  msgstr ""
475
 
476
- #: views/backup.php:150
 
 
 
 
477
  #, php-format
478
  msgid "Backup folder does not exist. Please contact %s for assistance."
479
  msgstr ""
480
 
481
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
482
  msgid "support"
483
  msgstr ""
484
 
485
- #: views/backup.php:153 views/backup.php:159
486
  msgid "Close"
487
  msgstr ""
488
 
489
- #: views/backup.php:174
490
  msgid ""
491
  "Click the backup button to create a zipped backup file of this site's "
492
  "database, plugins, themes and settings."
493
  msgstr ""
494
 
495
- #: views/backup.php:175
496
  msgid ""
497
  "Once your backup file has been created it will appear in the available "
498
  "backups section below. This file may remain on your hosting providers server "
499
  "but we recommend that you download and save it somewhere safe."
500
  msgstr ""
501
 
502
- #: views/backup.php:176
503
  msgid ""
504
  "WP BackItUp premium customers can use these backup files to perform an "
505
  "automated restore of their site."
506
  msgstr ""
507
 
508
- #: views/backup.php:180
509
  msgid "Cancel"
510
  msgstr ""
511
 
512
- #: views/backup.php:187
513
  #, php-format
514
  msgid ""
515
  "WP BackItUp lite customers may use these backup files to manually restore "
516
  "their site. Please visit %s for manual restore instructions."
517
  msgstr ""
518
 
519
- #: views/backup.php:194
520
  msgid "Backup Schedule"
521
  msgstr ""
522
 
523
- #: views/backup.php:196
524
  msgid "Select the days of the week you would like your backup to run."
525
  msgstr ""
526
 
527
- #: views/backup.php:198
528
  msgid ""
529
  "Backup your site once per week or every day, it's up to you. If you have "
530
  "email notifications turned on we'll even send you an email when it's done. "
@@ -533,187 +522,207 @@ msgid ""
533
  "but we recommend that you download and save it somewhere safe."
534
  msgstr ""
535
 
536
- #: views/backup.php:200
537
  msgid "Please make sure to schedule your backup for at least once per week."
538
  msgstr ""
539
 
540
- #: views/backup.php:204
541
  msgid "Monday"
542
  msgstr ""
543
 
544
- #: views/backup.php:205
545
  msgid "Tuesday"
546
  msgstr ""
547
 
548
- #: views/backup.php:206
549
  msgid "Wednesday"
550
  msgstr ""
551
 
552
- #: views/backup.php:207
553
  msgid "Thursday"
554
  msgstr ""
555
 
556
- #: views/backup.php:208
557
  msgid "Friday"
558
  msgstr ""
559
 
560
- #: views/backup.php:209
561
  msgid "Saturday"
562
  msgstr ""
563
 
564
- #: views/backup.php:210
565
  msgid "Sunday"
566
  msgstr ""
567
 
568
- #: views/backup.php:213
569
  msgid "Save Schedule"
570
  msgstr ""
571
 
572
- #: views/backup.php:218
573
  #, php-format
574
  msgid ""
575
  "Scheduled backups are only available to WP BackItUp premium customers. "
576
  "Please visit %s to get WP BackItUp risk free for 30 days."
577
  msgstr ""
578
 
579
- #: views/backup.php:225 views/restore.php:94
580
  msgid "Available Backups"
581
  msgstr ""
582
 
583
- #: views/backup.php:283 views/restore.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
584
  msgid "No backup archives found."
585
  msgstr ""
586
 
587
- #: views/backup.php:291
588
  #, php-format
589
  msgid ""
590
  "The automated restore feature is only available to WP BackItUp premium "
591
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
592
  msgstr ""
593
 
594
- #: views/backup.php:300 views/restore.php:209
595
  msgid "Nothing to report"
596
  msgstr ""
597
 
598
- #: views/backup.php:305
599
  msgid "Preparing for backup"
600
  msgstr ""
601
 
602
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
603
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
604
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
605
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
606
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
607
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
608
- #: views/restore.php:228 views/restore.php:230
609
  msgid "Done"
610
  msgstr ""
611
 
612
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
613
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
614
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
615
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
616
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
617
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
618
- #: views/restore.php:228 views/restore.php:230
619
  msgid "Failed"
620
  msgstr ""
621
 
622
- #: views/backup.php:306
 
 
 
 
623
  msgid "Backing up database"
624
  msgstr ""
625
 
626
- #: views/backup.php:307
627
  msgid "Creating backup information file"
628
  msgstr ""
629
 
630
- #: views/backup.php:308
631
  msgid "Backing up themes"
632
  msgstr ""
633
 
634
- #: views/backup.php:309
635
  msgid "Backing up plugins"
636
  msgstr ""
637
 
638
- #: views/backup.php:310
639
  msgid "Backing up uploads"
640
  msgstr ""
641
 
642
- #: views/backup.php:311
643
  msgid "Backing up everything else"
644
  msgstr ""
645
 
646
- #: views/backup.php:312
647
  msgid "Validating backup"
648
  msgstr ""
649
 
650
- #: views/backup.php:313
651
  msgid "Finalizing backup"
652
  msgstr ""
653
 
654
- #: views/backup.php:323
655
  msgid "Backup completed successfully"
656
  msgstr ""
657
 
658
- #: views/backup.php:344
659
  msgid "Backups"
660
  msgstr ""
661
 
662
- #: views/backup.php:344
663
  msgid "Version "
664
  msgstr ""
665
 
666
- #: views/backup.php:346
667
  msgid "Welcome to WP BackItUp!"
668
  msgstr ""
669
 
670
- #: views/backup.php:346
671
  msgid "The simplest way to backup your WordPress site."
672
  msgstr ""
673
 
674
- #: views/backup.php:347
675
  msgid ""
676
  "Getting started is easy, just click the backup button on the left side of "
677
  "this page."
678
  msgstr ""
679
 
680
- #: views/backup.php:351
681
  #, php-format
682
  msgid ""
683
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
684
  "medium;color: green\">%s</span> successful backups."
685
  msgstr ""
686
 
687
- #: views/backup.php:352
688
  msgid "Tips"
689
  msgstr ""
690
 
691
- #: views/backup.php:353
692
  msgid "Backup your site at least once per week"
693
  msgstr ""
694
 
695
- #: views/backup.php:354
696
  msgid "Download all your backups and store them somewhere safe"
697
  msgstr ""
698
 
699
- #: views/backup.php:355
700
  msgid "Verify your backup files are good by taking a look at what's inside"
701
  msgstr ""
702
 
703
- #: views/backup.php:360
704
  #, php-format
705
  msgid "Why not %s and schedule your backups!"
706
  msgstr ""
707
 
708
- #: views/backup.php:360
709
  msgid "upgrade"
710
  msgstr ""
711
 
712
- #: views/backup.php:369
713
  msgid "Register WP BackItUp"
714
  msgstr ""
715
 
716
- #: views/backup.php:372
717
  msgid ""
718
  "Enter your name and email address below to receive <b>special offers</b> and "
719
  "access to our world class <b>support</b> team. <br />\n"
@@ -721,145 +730,150 @@ msgid ""
721
  "site."
722
  msgstr ""
723
 
724
- #: views/backup.php:374
725
  msgid "name"
726
  msgstr ""
727
 
728
- #: views/backup.php:375
729
  msgid "email address"
730
  msgstr ""
731
 
732
- #: views/backup.php:376
733
  msgid "license key"
734
  msgstr ""
735
 
736
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
737
  #, php-format
738
  msgid "%s"
739
  msgstr ""
740
 
741
- #: views/backup.php:377
742
  msgid "Free plugin customers do not need to enter license key."
743
  msgstr ""
744
 
745
- #: views/backup.php:378
746
  msgid "Register"
747
  msgstr ""
748
 
749
- #: views/backup.php:387
750
  msgid "License Info"
751
  msgstr ""
752
 
753
- #: views/backup.php:409
754
  msgid "Name"
755
  msgstr ""
756
 
757
- #: views/backup.php:410
758
  msgid "Email"
759
  msgstr ""
760
 
761
- #: views/backup.php:411
762
  msgid "License Type"
763
  msgstr ""
764
 
765
- #: views/backup.php:412
766
  msgid "Expires"
767
  msgstr ""
768
 
769
- #: views/backup.php:415
770
  msgid "Enter license key to activate on this site."
771
  msgstr ""
772
 
773
- #: views/backup.php:422
774
  msgid "License Active"
775
  msgstr ""
776
 
777
- #: views/backup.php:430
778
  msgid "License expired"
779
  msgstr ""
780
 
781
- #: views/backup.php:434
782
  msgid "Update"
783
  msgstr ""
784
 
785
- #: views/backup.php:438
786
  msgid "Activate"
787
  msgstr ""
788
 
789
- #: views/backup.php:442
790
  #, php-format
791
  msgid "Purchase a %s license using the purchase link above."
792
  msgstr ""
793
 
794
- #: views/backup.php:442
795
  msgid "no-risk"
796
  msgstr ""
797
 
798
- #: views/backup.php:448
799
  #, php-format
800
  msgid ""
801
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
802
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
 
803
  msgstr ""
804
 
805
- #: views/backup.php:459
806
  msgid "Useful Links"
807
  msgstr ""
808
 
809
- #: views/backup.php:462 views/backup.php:466
810
  msgid "Your account"
811
  msgstr ""
812
 
813
- #: views/backup.php:469
814
  msgid "Documentation"
815
  msgstr ""
816
 
817
- #: views/backup.php:472
818
  msgid "Get support"
819
  msgstr ""
820
 
821
- #: views/backup.php:475
822
  msgid "Feature request"
823
  msgstr ""
824
 
825
- #: views/backup.php:477
 
 
 
 
826
  msgid "Contact"
827
  msgstr ""
828
 
829
- #: views/backup.php:497 views/backup.php:518
830
  msgid "WP BackItUp Backup Set"
831
  msgstr ""
832
 
833
- #: views/backup.php:499
834
  msgid ""
835
  "Below are the archive files included in this backup set. Click the link to "
836
  "download."
837
  msgstr ""
838
 
839
- #: views/backup.php:519
840
  msgid "Please refresh this page to download your new backup files."
841
  msgstr ""
842
 
843
- #: views/restore.php:16
844
  #, php-format
845
  msgid "%s Restore"
846
  msgstr ""
847
 
848
- #: views/restore.php:59
849
  msgid "Zip Files"
850
  msgstr ""
851
 
852
- #: views/restore.php:74
853
  #, php-format
854
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
855
  msgstr ""
856
 
857
- #: views/restore.php:81
858
  #, php-format
859
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
860
  msgstr ""
861
 
862
- #: views/restore.php:141
863
  #, php-format
864
  msgid ""
865
  "<p>* The automated restore feature is only available to licensed customers. "
@@ -867,192 +881,192 @@ msgid ""
867
  "BackItUp risk free for 30 days.</p>"
868
  msgstr ""
869
 
870
- #: views/restore.php:153
871
  msgid "Upload"
872
  msgstr ""
873
 
874
- #: views/restore.php:156
875
  msgid ""
876
  "Upload WP BackItUp archive(zip) files to add to your list of available "
877
  "backups."
878
  msgstr ""
879
 
880
- #: views/restore.php:173
881
  msgid "WP BackItUp - Upload backup files"
882
  msgstr ""
883
 
884
- #: views/restore.php:174
885
  msgid "Backup files may be uploaded into WP BackItUp with this form."
886
  msgstr ""
887
 
888
- #: views/restore.php:174
889
  msgid ""
890
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
891
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
892
  "refresh this page."
893
  msgstr ""
894
 
895
- #: views/restore.php:178
896
  #, php-format
897
  msgid "This feature requires %s version %s or later"
898
  msgstr ""
899
 
900
- #: views/restore.php:184
901
  msgid "Drop backup files here"
902
  msgstr ""
903
 
904
- #: views/restore.php:190
905
  msgid ""
906
  "* Reload this page when done uploading to see new backups appear in the "
907
  "Available Backups section above. "
908
  msgstr ""
909
 
910
- #: views/restore.php:219
911
  msgid "Preparing for restore"
912
  msgstr ""
913
 
914
- #: views/restore.php:220
915
  msgid "Unzipping backup set"
916
  msgstr ""
917
 
918
- #: views/restore.php:221
919
  msgid "Validating backup file"
920
  msgstr ""
921
 
922
- #: views/restore.php:222
923
  msgid "Deactivating plugins"
924
  msgstr ""
925
 
926
- #: views/restore.php:223
927
  msgid "Creating database restore point"
928
  msgstr ""
929
 
930
- #: views/restore.php:224
931
  msgid "Staging content files"
932
  msgstr ""
933
 
934
- #: views/restore.php:225
935
  msgid "Restoring content files"
936
  msgstr ""
937
 
938
- #: views/restore.php:226
939
  msgid "Restoring database"
940
  msgstr ""
941
 
942
- #: views/restore.php:227
943
  msgid "Updating current user info"
944
  msgstr ""
945
 
946
- #: views/restore.php:228
947
  msgid "Updating site URL"
948
  msgstr ""
949
 
950
- #: views/restore.php:230
951
  msgid "Updating permalinks"
952
  msgstr ""
953
 
954
- #: views/restore.php:236
955
  msgid "Error 201: No file selected"
956
  msgstr ""
957
 
958
- #: views/restore.php:237
959
  msgid "Error 202: Your file could not be uploaded"
960
  msgstr ""
961
 
962
- #: views/restore.php:238
963
  msgid "Error 203: Your backup could not be unzipped"
964
  msgstr ""
965
 
966
- #: views/restore.php:239
967
  msgid ""
968
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
969
  "valid backup"
970
  msgstr ""
971
 
972
- #: views/restore.php:240
973
  msgid "Error 205: Cannot create restore point"
974
  msgstr ""
975
 
976
- #: views/restore.php:241
977
  msgid "Error 206: Unable to connect to your database"
978
  msgstr ""
979
 
980
- #: views/restore.php:242
981
  msgid ""
982
  "Error 207: Unable to get current site URL from database. Please try again"
983
  msgstr ""
984
 
985
- #: views/restore.php:243
986
  msgid ""
987
  "Error 208: Unable to get current home URL from database. Please try again"
988
  msgstr ""
989
 
990
- #: views/restore.php:244
991
  msgid ""
992
  "Error 209: Unable to get current user ID from database. Please try again"
993
  msgstr ""
994
 
995
- #: views/restore.php:245
996
  msgid ""
997
  "Error 210: Unable to get current user password from database. Please try "
998
  "again"
999
  msgstr ""
1000
 
1001
- #: views/restore.php:246
1002
  msgid ""
1003
  "Error 211: Unable to get current user email from database. Please try again"
1004
  msgstr ""
1005
 
1006
- #: views/restore.php:247
1007
  msgid ""
1008
  "Error 212: Unable to import your database. This may require importing the "
1009
  "file manually"
1010
  msgstr ""
1011
 
1012
- #: views/restore.php:248
1013
  msgid ""
1014
  "Warning 213: Unable to update your site URL value. Please check your "
1015
  "WordPress general settings to make sure your Site and WordPress URLs are "
1016
  "correct"
1017
  msgstr ""
1018
 
1019
- #: views/restore.php:249
1020
  msgid ""
1021
  "Warning 214: Unable to update your home URL value. Please check your "
1022
  "WordPress general settings to make sure your Site and WordPress URLs are "
1023
  "correct"
1024
  msgstr ""
1025
 
1026
- #: views/restore.php:250
1027
  msgid ""
1028
  "Warning 215: Unable to update your user information. This may require you to "
1029
  "login with the admin username and password that was used when the backup was "
1030
  "created"
1031
  msgstr ""
1032
 
1033
- #: views/restore.php:251
1034
  msgid "Error 216: Database not found in backup"
1035
  msgstr ""
1036
 
1037
- #: views/restore.php:252
1038
  msgid "Warning 217: Unable to remove existing wp-content directory"
1039
  msgstr ""
1040
 
1041
- #: views/restore.php:253
1042
  msgid ""
1043
  "Error 218: Unable to create new wp-content directory. Please check your "
1044
  "CHMOD settings in /wp-content/"
1045
  msgstr ""
1046
 
1047
- #: views/restore.php:254
1048
  msgid "Error 219: Unable to import wp-content. Please try again"
1049
  msgstr ""
1050
 
1051
- #: views/restore.php:255
1052
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1053
  msgstr ""
1054
 
1055
- #: views/restore.php:256
1056
  #, php-format
1057
  msgid ""
1058
  "Error 221: Table prefix value in wp-config.php is different from backup. "
@@ -1061,11 +1075,11 @@ msgid ""
1061
  "> FAQs</a> for more info."
1062
  msgstr ""
1063
 
1064
- #: views/restore.php:257
1065
  msgid "Error 222: Unable to create restore folder"
1066
  msgstr ""
1067
 
1068
- #: views/restore.php:258
1069
  msgid ""
1070
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1071
  "restore the database to its previous state but were unsuccessful. Please "
@@ -1073,154 +1087,154 @@ msgid ""
1073
  "further restores"
1074
  msgstr ""
1075
 
1076
- #: views/restore.php:259
1077
  msgid ""
1078
  "Error 224: An error occurred during the restore, however, we have "
1079
  "successfully restored your database to the previous state"
1080
  msgstr ""
1081
 
1082
- #: views/restore.php:260
1083
  msgid ""
1084
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1085
  msgstr ""
1086
 
1087
- #: views/restore.php:261
1088
  msgid ""
1089
  "Error 226: Restore cannot proceed because your backup was created using a "
1090
  "different version of WordPress"
1091
  msgstr ""
1092
 
1093
- #: views/restore.php:262
1094
  msgid ""
1095
  "Error 227: Restore cannot proceed because your backup was created using a "
1096
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1097
  "help convert this backup to the current version"
1098
  msgstr ""
1099
 
1100
- #: views/restore.php:263
1101
  msgid ""
1102
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1103
  "restore. However, we were able to successfully revert the database back to "
1104
  "its original state . This error may require importing the database manually"
1105
  msgstr ""
1106
 
1107
- #: views/restore.php:264
1108
  msgid ""
1109
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1110
  "utility available. Please contact support"
1111
  msgstr ""
1112
 
1113
- #: views/restore.php:265
1114
  msgid ""
1115
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1116
  "running. Please wait for the backup to complete and then try again"
1117
  msgstr ""
1118
 
1119
- #: views/restore.php:267
1120
  msgid ""
1121
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1122
  "manifest is empty"
1123
  msgstr ""
1124
 
1125
- #: views/restore.php:268
1126
  msgid ""
1127
  "Error 252: At least one zip file is missing from your backup set. Please "
1128
  "make sure to upload all zip files that were part of this backup"
1129
  msgstr ""
1130
 
1131
- #: views/restore.php:269
1132
  msgid ""
1133
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1134
  "Please make sure to upload only zip files that were part of this backup"
1135
  msgstr ""
1136
 
1137
- #: views/restore.php:271
1138
  msgid ""
1139
  "Warning 300: Unable to restore all WordPress content. Please review your "
1140
  "restore logs to see what WP BackItUp was unable to restore"
1141
  msgstr ""
1142
 
1143
- #: views/restore.php:272
1144
  msgid ""
1145
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1146
  "to see what WP BackItUp was unable to restore"
1147
  msgstr ""
1148
 
1149
- #: views/restore.php:274
1150
  msgid "Error 2001: Unable to prepare site for restore"
1151
  msgstr ""
1152
 
1153
- #: views/restore.php:275
1154
  msgid "Error 2002: Unable to unzip backup"
1155
  msgstr ""
1156
 
1157
- #: views/restore.php:276
1158
  msgid "Error 2003: Unable to validate backup"
1159
  msgstr ""
1160
 
1161
- #: views/restore.php:277
1162
  msgid "Error 2004: Unable to create restore point"
1163
  msgstr ""
1164
 
1165
- #: views/restore.php:278
1166
  msgid "Error 2005: Unable to stage wp-content"
1167
  msgstr ""
1168
 
1169
- #: views/restore.php:279
1170
  msgid "Error 2006: Unable to restore content files"
1171
  msgstr ""
1172
 
1173
- #: views/restore.php:280
1174
  msgid "Error 2007: Unable to restore database"
1175
  msgstr ""
1176
 
1177
- #: views/restore.php:281
1178
  msgid "Error 2999: Unexpected error encountered"
1179
  msgstr ""
1180
 
1181
- #: views/restore.php:288
1182
  msgid ""
1183
  "Restore completed successfully. If you are prompted to login please do so "
1184
  "with your current username and password"
1185
  msgstr ""
1186
 
1187
- #: views/settings.php:16
1188
  #, php-format
1189
  msgid "%s Settings"
1190
  msgstr ""
1191
 
1192
- #: views/settings.php:43
1193
  msgid "Email Notifications"
1194
  msgstr ""
1195
 
1196
- #: views/settings.php:44
1197
  msgid ""
1198
  "Please enter your email address if you would like to receive backup email "
1199
  "notifications."
1200
  msgstr ""
1201
 
1202
- #: views/settings.php:45
1203
  msgid ""
1204
  "Backup email notifications will be sent for every backup and will contain "
1205
  "status information related to the backup."
1206
  msgstr ""
1207
 
1208
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1209
- #: views/settings.php:114
1210
  msgid "Save"
1211
  msgstr ""
1212
 
1213
- #: views/settings.php:63
1214
  msgid "Backup Retention"
1215
  msgstr ""
1216
 
1217
- #: views/settings.php:64
1218
  msgid ""
1219
  "Enter the number of backup archives that you would like to remain on the "
1220
  "server."
1221
  msgstr ""
1222
 
1223
- #: views/settings.php:65
1224
  msgid ""
1225
  "Many hosts limit the amount of space that you can take up on their servers. "
1226
  "This option tells WP BackItUp the maximum number of backup archives that "
@@ -1228,104 +1242,108 @@ msgid ""
1228
  "oldest backup archives first."
1229
  msgstr ""
1230
 
1231
- #: views/settings.php:84
1232
  msgid "Turn on logging?"
1233
  msgstr ""
1234
 
1235
- #: views/settings.php:85
1236
  msgid "Yes"
1237
  msgstr ""
1238
 
1239
- #: views/settings.php:86
1240
  msgid "No"
1241
  msgstr ""
1242
 
1243
- #: views/settings.php:87
1244
  msgid ""
1245
  "This option should only be turned on when troubleshooting issues with "
1246
  "WPBackItUp support."
1247
  msgstr ""
1248
 
1249
- #: views/settings.php:92
1250
  msgid "Advanced Settings"
1251
  msgstr ""
1252
 
1253
- #: views/settings.php:93
1254
  msgid ""
1255
  "These options should only be changed when working with WP BackItUp support."
1256
  msgstr ""
1257
 
1258
- #: views/settings.php:96
1259
  msgid "Plugins Batch Size"
1260
  msgstr ""
1261
 
1262
- #: views/settings.php:101
1263
  msgid "Themes Batch Size"
1264
  msgstr ""
1265
 
1266
- #: views/settings.php:106
1267
  msgid "Uploads Batch Size"
1268
  msgstr ""
1269
 
1270
- #: views/settings.php:111
1271
  msgid "Others Batch Size"
1272
  msgstr ""
1273
 
1274
- #: views/support.php:16
1275
  #, php-format
1276
  msgid "%s Support"
1277
  msgstr ""
1278
 
1279
- #: views/support.php:35
1280
  msgid "Support email sent successfully!"
1281
  msgstr ""
1282
 
1283
- #: views/support.php:48
1284
  msgid "Email Logs to Support"
1285
  msgstr ""
1286
 
1287
- #: views/support.php:49
1288
  msgid "This form should be used to send log files to support only."
1289
  msgstr ""
1290
 
1291
- #: views/support.php:50
1292
  msgid ""
1293
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1294
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1295
  "using this form."
1296
  msgstr ""
1297
 
1298
- #: views/support.php:51
1299
  msgid ""
1300
  "The ticket id you receive from your support request should be entered in the "
1301
  "ticket id field below."
1302
  msgstr ""
1303
 
1304
- #: views/support.php:52
1305
  msgid "your email address"
1306
  msgstr ""
1307
 
1308
- #: views/support.php:62
1309
  msgid "support ticket id"
1310
  msgstr ""
1311
 
1312
- #: views/support.php:72
1313
  msgid "problem description or additional information"
1314
  msgstr ""
1315
 
1316
- #: views/support.php:83
1317
  msgid "Send"
1318
  msgstr ""
1319
 
1320
- #: views/support.php:86
1321
  msgid "Please register your version of WP BackItUp for access to support."
1322
  msgstr ""
1323
 
1324
- #: views/support.php:90
1325
  msgid "Premium customers receive priority support."
1326
  msgstr ""
1327
 
1328
- #: wp-backitup.php:97 wp-backitup.php:98
1329
  #, php-format
1330
  msgid "Every %s hours"
1331
  msgstr ""
 
 
 
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WPBackItUp\n"
5
+ "POT-Creation-Date: 2015-09-15 11:49-0400\n"
6
  "PO-Revision-Date: 2015-08-04 16:26-0400\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WPBackItUp <translations@wpbackitup.com>\n"
16
  "X-Poedit-KeywordsList: _;__;_e\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: lib/includes/class-wpbackitup-admin.php:178 views/backup.php:118
20
+ #: views/backup.php:124 views/backup.php:189 views/restore.php:99
21
+ #: wp-backitup.php:109
22
  msgid "Backup"
23
  msgstr ""
24
 
25
+ #: lib/includes/class-wpbackitup-admin.php:182
26
+ #: lib/includes/class-wpbackitup-admin.php:217 views/restore.php:137
27
+ #: wp-backitup.php:123
28
  msgid "Restore"
29
  msgstr ""
30
 
31
+ #: lib/includes/class-wpbackitup-admin.php:186
32
  msgid "Support"
33
  msgstr ""
34
 
35
+ #: lib/includes/class-wpbackitup-admin.php:189
36
  msgid "Settings"
37
  msgstr ""
38
 
39
+ #: lib/includes/class-wpbackitup-admin.php:210
40
  msgid ""
41
  "The backup you have selected exceeds what your host allows you to upload."
42
  msgstr ""
43
 
44
+ #: lib/includes/class-wpbackitup-admin.php:211 views/backup.php:280
45
+ #: views/backup.php:281 views/backup.php:282 views/backup.php:283
46
+ #: views/backup.php:284 views/backup.php:285 views/backup.php:286
47
+ #: views/backup.php:287 views/backup.php:288 views/backup.php:289
48
  msgid "Warning"
49
  msgstr ""
50
 
51
+ #: lib/includes/class-wpbackitup-admin.php:212 views/backup.php:94
52
+ #: views/backup.php:220
53
  msgid "Error"
54
  msgstr ""
55
 
56
+ #: lib/includes/class-wpbackitup-admin.php:213
57
  msgid "Response"
58
  msgstr ""
59
 
60
+ #: lib/includes/class-wpbackitup-admin.php:214 views/backup.php:192
61
+ #: views/backup.php:271 views/restore.php:230
62
  msgid "Status"
63
  msgstr ""
64
 
65
+ #: lib/includes/class-wpbackitup-admin.php:215
66
  msgid "Download"
67
  msgstr ""
68
 
69
+ #: lib/includes/class-wpbackitup-admin.php:216 views/backup.php:248
70
+ #: views/restore.php:132
71
  msgid "Delete"
72
  msgstr ""
73
 
74
+ #: lib/includes/class-wpbackitup-admin.php:218
75
  msgid "(JS997) Unexpected error"
76
  msgstr ""
77
 
78
+ #: lib/includes/class-wpbackitup-admin.php:219
79
  msgid "(JS998) Unexpected error"
80
  msgstr ""
81
 
82
+ #: lib/includes/class-wpbackitup-admin.php:220
83
  msgid "(JS999) An unexpected error has occurred"
84
  msgstr ""
85
 
86
+ #: lib/includes/class-wpbackitup-admin.php:221
87
  msgid "Scheduled has been saved."
88
  msgstr ""
89
 
90
+ #: lib/includes/class-wpbackitup-admin.php:222
91
  msgid "Scheduled was not saved."
92
  msgstr ""
93
 
94
+ #: lib/includes/class-wpbackitup-admin.php:223
95
  msgid "Are you sure you want to restore your site?"
96
  msgstr ""
97
 
98
+ #: lib/includes/class-wpbackitup-admin.php:224
99
  msgid "Are you sure ?"
100
  msgstr ""
101
 
102
+ #: lib/includes/class-wpbackitup-admin.php:225
103
  msgid "This file cannot be delete!"
104
  msgstr ""
105
 
106
+ #: lib/includes/class-wpbackitup-admin.php:226
107
  msgid "View Log"
108
  msgstr ""
109
 
110
+ #: lib/includes/class-wpbackitup-admin.php:227
111
  msgid "New Backup!"
112
  msgstr ""
113
 
114
+ #: lib/includes/class-wpbackitup-admin.php:228
115
  msgid "Uploaded Backup"
116
  msgstr ""
117
 
118
+ #: lib/includes/class-wpbackitup-admin.php:515
119
  msgid "Backup Queued"
120
  msgstr ""
121
 
122
+ #: lib/includes/class-wpbackitup-admin.php:518
123
  msgid "Backup could not be queued"
124
  msgstr ""
125
 
126
+ #: lib/includes/class-wpbackitup-admin.php:522
127
+ msgid "Job already in queue, please try again later"
 
 
 
 
128
  msgstr ""
129
 
130
+ #: lib/includes/class-wpbackitup-admin.php:554
131
  msgid "No backup file selected."
132
  msgstr ""
133
 
134
+ #: lib/includes/class-wpbackitup-admin.php:561
135
  msgid "No user id found."
136
  msgstr ""
137
 
138
+ #: lib/includes/class-wpbackitup-admin.php:582
139
  msgid "Restore Queued"
140
  msgstr ""
141
 
142
+ #: lib/includes/class-wpbackitup-admin.php:584
143
  msgid "Restore could not be queued"
144
  msgstr ""
145
 
146
+ #: lib/includes/class-wpbackitup-admin.php:588
147
  msgid "Restore already in queue"
148
  msgstr ""
149
 
150
+ #: lib/includes/class-wpbackitup-admin.php:616 views/backup.php:308
151
+ msgid "Backup Cancelled"
152
+ msgstr ""
153
+
154
+ #: lib/includes/class-wpbackitup-admin.php:754
155
  msgid "No response log found."
156
  msgstr ""
157
 
158
+ #: lib/includes/class-wpbackitup-admin.php:856
159
+ #: lib/includes/class-wpbackitup-admin.php:864
160
+ #: lib/includes/class-wpbackitup-admin.php:893
161
+ #: lib/includes/class-wpbackitup-admin.php:900
162
+ #: lib/includes/class-wpbackitup-admin.php:907
163
+ #: lib/includes/class-wpbackitup-admin.php:914
164
  msgid "Please enter a number"
165
  msgstr ""
166
 
167
+ #: lib/includes/class-wpbackitup-admin.php:885
168
+ #: lib/includes/class-wpbackitup-admin.php:993
169
  msgid "Please enter a valid email"
170
  msgstr ""
171
 
172
+ #: lib/includes/class-wpbackitup-admin.php:1000
173
  msgid "Please enter your support ticket id"
174
  msgstr ""
175
 
176
+ #: lib/includes/class-wpbackitup-admin.php:1005
177
  msgid "Please only enter numbers in this field"
178
  msgstr ""
179
 
180
+ #: lib/includes/class-wpbackitup-admin.php:1699
181
  msgid "License is invalid."
182
  msgstr ""
183
 
184
+ #: lib/includes/class-wpbackitup-admin.php:1704
185
  msgid "License has expired."
186
  msgstr ""
187
 
188
+ #: lib/includes/class-wpbackitup-admin.php:1707
189
+ #, php-format
190
+ msgid ""
191
+ "Your license has expired. Please <a href=\"%s\" target=\"blank\">renew</a> "
192
+ "now for another year of <strong>product updates</strong> and access to our "
193
+ "<strong>world class support</strong> team."
194
+ msgstr ""
195
+
196
+ #: lib/includes/class-wpbackitup-admin.php:1721
197
+ msgid "License Expired: Scheduled backups are no longer active."
198
+ msgstr ""
199
+
200
+ #: lib/includes/class-wpbackitup-admin.php:1729
201
  msgid "Activation limit has been reached."
202
  msgstr ""
203
 
204
+ #: lib/includes/class-wpbackitup-admin.php:1735
205
+ msgid "Your Activation limit has been reached"
206
+ msgstr ""
207
+
208
  #: lib/includes/handler_upload.php:29
209
  msgid "Invalid Nonce"
210
  msgstr ""
230
  msgid "Could not import file into WP BackItUp backup set."
231
  msgstr ""
232
 
233
+ #: lib/includes/job_backup.php:907
234
+ #, php-format
235
+ msgid ""
236
+ "<strong>IMPORTANT NOTICE:</strong> <span style=\"color: #ff0000;\"> Your "
237
+ "license has expired.</span><br/><br/>Scheduled backups will only continue to "
238
+ "function for <strong>30</strong> days after your license has expired.Please "
239
+ "<strong><a href=\"%s\" target=\"blank\">renew</a></strong> for another year "
240
+ "of product updates and access to our world class support team.<br/><br/>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgstr ""
242
 
243
+ #: lib/includes/job_backup.php:912
244
  #, php-format
245
  msgid "%s - Backup completed successfully."
246
  msgstr ""
247
 
248
+ #: lib/includes/job_backup.php:913
249
  msgid "Your backup completed successfully."
250
  msgstr ""
251
 
252
+ #: lib/includes/job_backup.php:916
253
  #, php-format
254
  msgid "%s - Backup did not complete successfully."
255
  msgstr ""
256
 
257
+ #: lib/includes/job_backup.php:917
258
  msgid "Your backup did not complete successfully."
259
  msgstr ""
260
 
261
+ #: lib/includes/job_backup.php:924
262
  #, php-format
263
  msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
264
  msgstr ""
265
 
266
+ #: lib/includes/job_backup.php:925
267
  msgid "Backup date:"
268
  msgstr ""
269
 
270
+ #: lib/includes/job_backup.php:926
271
  msgid "Number of backups completed with WP BackItUp:"
272
  msgstr ""
273
 
274
+ #: lib/includes/job_backup.php:928
275
  msgid "Completion Code:"
276
  msgstr ""
277
 
278
+ #: lib/includes/job_backup.php:929
279
  msgid "WP BackItUp Version:"
280
  msgstr ""
281
 
282
+ #: lib/includes/job_backup.php:941
 
 
 
 
283
  #, php-format
284
  msgid "Checkout %s for info about WP BackItUp and our other products."
285
  msgstr ""
286
 
287
+ #: lib/includes/job_backup.php:1117
288
  msgid ""
289
  "(101) Unable to create a new directory for backup. Please check your CHMOD "
290
  "settings of your wp-backitup backup directory"
291
  msgstr ""
292
 
293
+ #: lib/includes/job_backup.php:1118
294
  msgid ""
295
  "(102) Cannot create backup directory. Please check the CHMOD settings of "
296
  "your wp-backitup plugin directory"
297
  msgstr ""
298
 
299
+ #: lib/includes/job_backup.php:1119
300
  msgid "(103) Unable to backup your files. Please try again"
301
  msgstr ""
302
 
303
+ #: lib/includes/job_backup.php:1120
304
  msgid "(104) Unable to export your database. Please try again"
305
  msgstr ""
306
 
307
+ #: lib/includes/job_backup.php:1121
308
  msgid "(105) Unable to export site information file. Please try again"
309
  msgstr ""
310
 
311
+ #: lib/includes/job_backup.php:1122
312
  msgid "(106) Unable to cleanup your backup directory"
313
  msgstr ""
314
 
315
+ #: lib/includes/job_backup.php:1123
316
  msgid "(107) Unable to compress(zip) your backup. Please try again"
317
  msgstr ""
318
 
319
+ #: lib/includes/job_backup.php:1124
320
  msgid "(108) Unable to backup your site data files. Please try again"
321
  msgstr ""
322
 
323
+ #: lib/includes/job_backup.php:1125
324
  msgid "(109) Unable to finalize backup. Please try again"
325
  msgstr ""
326
 
327
+ #: lib/includes/job_backup.php:1126
328
  msgid ""
329
  "(114) Your database was accessible but an export could not be created. "
330
  "Please contact support by clicking the get support link on the right. Please "
331
  "let us know who your host is when you submit the request"
332
  msgstr ""
333
 
334
+ #: lib/includes/job_backup.php:1127
335
  msgid "(120) Unable to backup your themes. Please try again"
336
  msgstr ""
337
 
338
+ #: lib/includes/job_backup.php:1128
339
  msgid "(121) Unable to backup your plugins. Please try again"
340
  msgstr ""
341
 
342
+ #: lib/includes/job_backup.php:1129
343
  msgid "(122) Unable to backup your uploads. Please try again"
344
  msgstr ""
345
 
346
+ #: lib/includes/job_backup.php:1130
347
  msgid "(123) Unable to backup your miscellaneous files. Please try again"
348
  msgstr ""
349
 
350
+ #: lib/includes/job_backup.php:1131
351
  msgid ""
352
  "(125) Unable to compress your backup because there is no zip utility "
353
  "available. Please contact support"
354
  msgstr ""
355
 
356
+ #: lib/includes/job_backup.php:1132
357
  msgid "(126) Unable to validate your backup. Please try again"
358
  msgstr ""
359
 
360
+ #: lib/includes/job_backup.php:1133
361
  msgid "(127) Unable to create inventory of files to backup. Please try again"
362
  msgstr ""
363
 
364
+ #: lib/includes/job_backup.php:1134
365
  msgid "(128) Unable to create job control record. Please try again"
366
  msgstr ""
367
 
368
+ #: lib/includes/job_backup.php:1136
369
  msgid ""
370
  "(2101) Unable to create a new directory for backup. Please check your CHMOD "
371
  "settings of your wp-backitup backup directory"
372
  msgstr ""
373
 
374
+ #: lib/includes/job_backup.php:1137
375
  msgid ""
376
  "(2102) Cannot create backup directory. Please check the CHMOD settings of "
377
  "your wp-backitup plugin directory"
378
  msgstr ""
379
 
380
+ #: lib/includes/job_backup.php:1138
381
  msgid "(2103) Unable to backup your files. Please try again"
382
  msgstr ""
383
 
384
+ #: lib/includes/job_backup.php:1139
385
  msgid "(2104) Unable to export your database. Please try again"
386
  msgstr ""
387
 
388
+ #: lib/includes/job_backup.php:1140
389
  msgid "(2105) Unable to export site information file. Please try again"
390
  msgstr ""
391
 
392
+ #: lib/includes/job_backup.php:1141
393
  msgid "(2106) Unable to cleanup your backup directory"
394
  msgstr ""
395
 
396
+ #: lib/includes/job_backup.php:1142
397
  msgid "(2107) Unable to compress(zip) your backup. Please try again"
398
  msgstr ""
399
 
400
+ #: lib/includes/job_backup.php:1143
401
  msgid "(2108) Unable to backup your site data files. Please try again"
402
  msgstr ""
403
 
404
+ #: lib/includes/job_backup.php:1144
405
  msgid "(2109) Unable to finalize backup. Please try again"
406
  msgstr ""
407
 
408
+ #: lib/includes/job_backup.php:1145
409
  msgid ""
410
  "(2114) Your database was accessible but an export could not be created. "
411
  "Please contact support by clicking the get support link on the right. Please "
412
  "let us know who your host is when you submit the request"
413
  msgstr ""
414
 
415
+ #: lib/includes/job_backup.php:1146
416
  msgid "(2120) Unable to backup your themes. Please try again"
417
  msgstr ""
418
 
419
+ #: lib/includes/job_backup.php:1147
420
  msgid "(2121) Unable to backup your plugins. Please try again"
421
  msgstr ""
422
 
423
+ #: lib/includes/job_backup.php:1148
424
  msgid "(2122) Unable to backup your uploads. Please try again"
425
  msgstr ""
426
 
427
+ #: lib/includes/job_backup.php:1149
428
  msgid "(2123) Unable to backup your miscellaneous files. Please try again"
429
  msgstr ""
430
 
431
+ #: lib/includes/job_backup.php:1150
432
  msgid ""
433
  "(2125) Unable to compress your backup because there is no zip utility "
434
  "available. Please contact support"
435
  msgstr ""
436
 
437
+ #: lib/includes/job_backup.php:1151
438
  msgid "(2126) Unable to validate your backup. Please try again"
439
  msgstr ""
440
 
441
+ #: lib/includes/job_backup.php:1152
442
  msgid "(2127) Unable to create inventory of files to backup. Please try again"
443
  msgstr ""
444
 
445
+ #: lib/includes/job_backup.php:1153
446
  msgid "(2128) Unable to create job control record. Please try again"
447
  msgstr ""
448
 
449
+ #: lib/includes/job_backup.php:1156
450
  msgid "(999) Unexpected error"
451
  msgstr ""
452
 
453
  #. TRANSLATORS: %s = plugin name.
454
  #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
455
  #. Similar to how WordPress uses the word dashboard at the in the left navigation.
456
+ #: views/backup.php:17
457
  #, php-format
458
  msgid "%s Dashboard"
459
  msgstr ""
460
 
461
+ #: views/backup.php:83
462
+ msgid "Dismiss"
463
+ msgstr ""
464
+
465
+ #: views/backup.php:95
466
  #, php-format
467
  msgid "Backup folder does not exist. Please contact %s for assistance."
468
  msgstr ""
469
 
470
+ #: views/backup.php:95 views/restore.php:75 views/restore.php:82
471
  msgid "support"
472
  msgstr ""
473
 
474
+ #: views/backup.php:98 views/backup.php:104
475
  msgid "Close"
476
  msgstr ""
477
 
478
+ #: views/backup.php:119
479
  msgid ""
480
  "Click the backup button to create a zipped backup file of this site's "
481
  "database, plugins, themes and settings."
482
  msgstr ""
483
 
484
+ #: views/backup.php:120
485
  msgid ""
486
  "Once your backup file has been created it will appear in the available "
487
  "backups section below. This file may remain on your hosting providers server "
488
  "but we recommend that you download and save it somewhere safe."
489
  msgstr ""
490
 
491
+ #: views/backup.php:121
492
  msgid ""
493
  "WP BackItUp premium customers can use these backup files to perform an "
494
  "automated restore of their site."
495
  msgstr ""
496
 
497
+ #: views/backup.php:125
498
  msgid "Cancel"
499
  msgstr ""
500
 
501
+ #: views/backup.php:132
502
  #, php-format
503
  msgid ""
504
  "WP BackItUp lite customers may use these backup files to manually restore "
505
  "their site. Please visit %s for manual restore instructions."
506
  msgstr ""
507
 
508
+ #: views/backup.php:139
509
  msgid "Backup Schedule"
510
  msgstr ""
511
 
512
+ #: views/backup.php:141
513
  msgid "Select the days of the week you would like your backup to run."
514
  msgstr ""
515
 
516
+ #: views/backup.php:143
517
  msgid ""
518
  "Backup your site once per week or every day, it's up to you. If you have "
519
  "email notifications turned on we'll even send you an email when it's done. "
522
  "but we recommend that you download and save it somewhere safe."
523
  msgstr ""
524
 
525
+ #: views/backup.php:145
526
  msgid "Please make sure to schedule your backup for at least once per week."
527
  msgstr ""
528
 
529
+ #: views/backup.php:149
530
  msgid "Monday"
531
  msgstr ""
532
 
533
+ #: views/backup.php:150
534
  msgid "Tuesday"
535
  msgstr ""
536
 
537
+ #: views/backup.php:151
538
  msgid "Wednesday"
539
  msgstr ""
540
 
541
+ #: views/backup.php:152
542
  msgid "Thursday"
543
  msgstr ""
544
 
545
+ #: views/backup.php:153
546
  msgid "Friday"
547
  msgstr ""
548
 
549
+ #: views/backup.php:154
550
  msgid "Saturday"
551
  msgstr ""
552
 
553
+ #: views/backup.php:155
554
  msgid "Sunday"
555
  msgstr ""
556
 
557
+ #: views/backup.php:158
558
  msgid "Save Schedule"
559
  msgstr ""
560
 
561
+ #: views/backup.php:163
562
  #, php-format
563
  msgid ""
564
  "Scheduled backups are only available to WP BackItUp premium customers. "
565
  "Please visit %s to get WP BackItUp risk free for 30 days."
566
  msgstr ""
567
 
568
+ #: views/backup.php:170 views/restore.php:95
569
  msgid "Available Backups"
570
  msgstr ""
571
 
572
+ #: views/backup.php:190 views/restore.php:100
573
+ msgid "Date"
574
+ msgstr ""
575
+
576
+ #: views/backup.php:191
577
+ msgid "Duration"
578
+ msgstr ""
579
+
580
+ #: views/backup.php:214
581
+ msgid "Success"
582
+ msgstr ""
583
+
584
+ #: views/backup.php:217
585
+ msgid "Active"
586
+ msgstr ""
587
+
588
+ #: views/backup.php:257 views/restore.php:150
589
  msgid "No backup archives found."
590
  msgstr ""
591
 
592
+ #: views/backup.php:266
593
  #, php-format
594
  msgid ""
595
  "The automated restore feature is only available to WP BackItUp premium "
596
  "customers. Please visit %s to get WP BackItUp risk free for 30 days."
597
  msgstr ""
598
 
599
+ #: views/backup.php:275 views/restore.php:234
600
  msgid "Nothing to report"
601
  msgstr ""
602
 
603
+ #: views/backup.php:280
604
  msgid "Preparing for backup"
605
  msgstr ""
606
 
607
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
608
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
609
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
610
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
611
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
612
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
613
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
614
  msgid "Done"
615
  msgstr ""
616
 
617
+ #: views/backup.php:280 views/backup.php:281 views/backup.php:282
618
+ #: views/backup.php:283 views/backup.php:284 views/backup.php:285
619
+ #: views/backup.php:286 views/backup.php:287 views/backup.php:288
620
+ #: views/backup.php:289 views/restore.php:244 views/restore.php:245
621
+ #: views/restore.php:246 views/restore.php:247 views/restore.php:248
622
+ #: views/restore.php:249 views/restore.php:250 views/restore.php:251
623
+ #: views/restore.php:252 views/restore.php:253 views/restore.php:255
624
  msgid "Failed"
625
  msgstr ""
626
 
627
+ #: views/backup.php:281
628
+ msgid "Creating inventory of files to backup"
629
+ msgstr ""
630
+
631
+ #: views/backup.php:282
632
  msgid "Backing up database"
633
  msgstr ""
634
 
635
+ #: views/backup.php:283
636
  msgid "Creating backup information file"
637
  msgstr ""
638
 
639
+ #: views/backup.php:284
640
  msgid "Backing up themes"
641
  msgstr ""
642
 
643
+ #: views/backup.php:285
644
  msgid "Backing up plugins"
645
  msgstr ""
646
 
647
+ #: views/backup.php:286
648
  msgid "Backing up uploads"
649
  msgstr ""
650
 
651
+ #: views/backup.php:287
652
  msgid "Backing up everything else"
653
  msgstr ""
654
 
655
+ #: views/backup.php:288
656
  msgid "Validating backup"
657
  msgstr ""
658
 
659
+ #: views/backup.php:289
660
  msgid "Finalizing backup"
661
  msgstr ""
662
 
663
+ #: views/backup.php:299
664
  msgid "Backup completed successfully"
665
  msgstr ""
666
 
667
+ #: views/backup.php:320
668
  msgid "Backups"
669
  msgstr ""
670
 
671
+ #: views/backup.php:320
672
  msgid "Version "
673
  msgstr ""
674
 
675
+ #: views/backup.php:322
676
  msgid "Welcome to WP BackItUp!"
677
  msgstr ""
678
 
679
+ #: views/backup.php:322
680
  msgid "The simplest way to backup your WordPress site."
681
  msgstr ""
682
 
683
+ #: views/backup.php:323
684
  msgid ""
685
  "Getting started is easy, just click the backup button on the left side of "
686
  "this page."
687
  msgstr ""
688
 
689
+ #: views/backup.php:327
690
  #, php-format
691
  msgid ""
692
  "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
693
  "medium;color: green\">%s</span> successful backups."
694
  msgstr ""
695
 
696
+ #: views/backup.php:328
697
  msgid "Tips"
698
  msgstr ""
699
 
700
+ #: views/backup.php:329
701
  msgid "Backup your site at least once per week"
702
  msgstr ""
703
 
704
+ #: views/backup.php:330
705
  msgid "Download all your backups and store them somewhere safe"
706
  msgstr ""
707
 
708
+ #: views/backup.php:331
709
  msgid "Verify your backup files are good by taking a look at what's inside"
710
  msgstr ""
711
 
712
+ #: views/backup.php:336
713
  #, php-format
714
  msgid "Why not %s and schedule your backups!"
715
  msgstr ""
716
 
717
+ #: views/backup.php:336
718
  msgid "upgrade"
719
  msgstr ""
720
 
721
+ #: views/backup.php:345
722
  msgid "Register WP BackItUp"
723
  msgstr ""
724
 
725
+ #: views/backup.php:348
726
  msgid ""
727
  "Enter your name and email address below to receive <b>special offers</b> and "
728
  "access to our world class <b>support</b> team. <br />\n"
730
  "site."
731
  msgstr ""
732
 
733
+ #: views/backup.php:350
734
  msgid "name"
735
  msgstr ""
736
 
737
+ #: views/backup.php:351
738
  msgid "email address"
739
  msgstr ""
740
 
741
+ #: views/backup.php:352
742
  msgid "license key"
743
  msgstr ""
744
 
745
+ #: views/backup.php:352 views/backup.php:402 views/backup.php:406
746
  #, php-format
747
  msgid "%s"
748
  msgstr ""
749
 
750
+ #: views/backup.php:353
751
  msgid "Free plugin customers do not need to enter license key."
752
  msgstr ""
753
 
754
+ #: views/backup.php:354
755
  msgid "Register"
756
  msgstr ""
757
 
758
+ #: views/backup.php:363
759
  msgid "License Info"
760
  msgstr ""
761
 
762
+ #: views/backup.php:385
763
  msgid "Name"
764
  msgstr ""
765
 
766
+ #: views/backup.php:386
767
  msgid "Email"
768
  msgstr ""
769
 
770
+ #: views/backup.php:387
771
  msgid "License Type"
772
  msgstr ""
773
 
774
+ #: views/backup.php:388
775
  msgid "Expires"
776
  msgstr ""
777
 
778
+ #: views/backup.php:391
779
  msgid "Enter license key to activate on this site."
780
  msgstr ""
781
 
782
+ #: views/backup.php:398
783
  msgid "License Active"
784
  msgstr ""
785
 
786
+ #: views/backup.php:406
787
  msgid "License expired"
788
  msgstr ""
789
 
790
+ #: views/backup.php:410
791
  msgid "Update"
792
  msgstr ""
793
 
794
+ #: views/backup.php:414
795
  msgid "Activate"
796
  msgstr ""
797
 
798
+ #: views/backup.php:418
799
  #, php-format
800
  msgid "Purchase a %s license using the purchase link above."
801
  msgstr ""
802
 
803
+ #: views/backup.php:418
804
  msgid "no-risk"
805
  msgstr ""
806
 
807
+ #: views/backup.php:424
808
  #, php-format
809
  msgid ""
810
+ "Please <a href=\"%s\" target=\"blank\">renew</a> now for another year of "
811
+ "<strong>product updates</strong> and access to our <strong>world class "
812
+ "support</strong> team."
813
  msgstr ""
814
 
815
+ #: views/backup.php:435
816
  msgid "Useful Links"
817
  msgstr ""
818
 
819
+ #: views/backup.php:438 views/backup.php:442
820
  msgid "Your account"
821
  msgstr ""
822
 
823
+ #: views/backup.php:445
824
  msgid "Documentation"
825
  msgstr ""
826
 
827
+ #: views/backup.php:448
828
  msgid "Get support"
829
  msgstr ""
830
 
831
+ #: views/backup.php:451
832
  msgid "Feature request"
833
  msgstr ""
834
 
835
+ #: views/backup.php:453
836
+ msgid "Language Translations"
837
+ msgstr ""
838
+
839
+ #: views/backup.php:455
840
  msgid "Contact"
841
  msgstr ""
842
 
843
+ #: views/backup.php:478 views/backup.php:502
844
  msgid "WP BackItUp Backup Set"
845
  msgstr ""
846
 
847
+ #: views/backup.php:480
848
  msgid ""
849
  "Below are the archive files included in this backup set. Click the link to "
850
  "download."
851
  msgstr ""
852
 
853
+ #: views/backup.php:503
854
  msgid "Please refresh this page to download your new backup files."
855
  msgstr ""
856
 
857
+ #: views/restore.php:13
858
  #, php-format
859
  msgid "%s Restore"
860
  msgstr ""
861
 
862
+ #: views/restore.php:60
863
  msgid "Zip Files"
864
  msgstr ""
865
 
866
+ #: views/restore.php:75
867
  #, php-format
868
  msgid "Error: Backup folder does not exist. Please contact %s for assistance."
869
  msgstr ""
870
 
871
+ #: views/restore.php:82
872
  #, php-format
873
  msgid "Error: Restore folder does not exist. Please contact %s for assistance."
874
  msgstr ""
875
 
876
+ #: views/restore.php:166
877
  #, php-format
878
  msgid ""
879
  "<p>* The automated restore feature is only available to licensed customers. "
881
  "BackItUp risk free for 30 days.</p>"
882
  msgstr ""
883
 
884
+ #: views/restore.php:178
885
  msgid "Upload"
886
  msgstr ""
887
 
888
+ #: views/restore.php:181
889
  msgid ""
890
  "Upload WP BackItUp archive(zip) files to add to your list of available "
891
  "backups."
892
  msgstr ""
893
 
894
+ #: views/restore.php:198
895
  msgid "WP BackItUp - Upload backup files"
896
  msgstr ""
897
 
898
+ #: views/restore.php:199
899
  msgid "Backup files may be uploaded into WP BackItUp with this form."
900
  msgstr ""
901
 
902
+ #: views/restore.php:199
903
  msgid ""
904
  "They may also be uploaded manually into the WP BackItUp directory (wp-"
905
  "content/wpbackitup_backups) using FTP. When done uploading all backup files "
906
  "refresh this page."
907
  msgstr ""
908
 
909
+ #: views/restore.php:203
910
  #, php-format
911
  msgid "This feature requires %s version %s or later"
912
  msgstr ""
913
 
914
+ #: views/restore.php:209
915
  msgid "Drop backup files here"
916
  msgstr ""
917
 
918
+ #: views/restore.php:215
919
  msgid ""
920
  "* Reload this page when done uploading to see new backups appear in the "
921
  "Available Backups section above. "
922
  msgstr ""
923
 
924
+ #: views/restore.php:244
925
  msgid "Preparing for restore"
926
  msgstr ""
927
 
928
+ #: views/restore.php:245
929
  msgid "Unzipping backup set"
930
  msgstr ""
931
 
932
+ #: views/restore.php:246
933
  msgid "Validating backup file"
934
  msgstr ""
935
 
936
+ #: views/restore.php:247
937
  msgid "Deactivating plugins"
938
  msgstr ""
939
 
940
+ #: views/restore.php:248
941
  msgid "Creating database restore point"
942
  msgstr ""
943
 
944
+ #: views/restore.php:249
945
  msgid "Staging content files"
946
  msgstr ""
947
 
948
+ #: views/restore.php:250
949
  msgid "Restoring content files"
950
  msgstr ""
951
 
952
+ #: views/restore.php:251
953
  msgid "Restoring database"
954
  msgstr ""
955
 
956
+ #: views/restore.php:252
957
  msgid "Updating current user info"
958
  msgstr ""
959
 
960
+ #: views/restore.php:253
961
  msgid "Updating site URL"
962
  msgstr ""
963
 
964
+ #: views/restore.php:255
965
  msgid "Updating permalinks"
966
  msgstr ""
967
 
968
+ #: views/restore.php:261
969
  msgid "Error 201: No file selected"
970
  msgstr ""
971
 
972
+ #: views/restore.php:262
973
  msgid "Error 202: Your file could not be uploaded"
974
  msgstr ""
975
 
976
+ #: views/restore.php:263
977
  msgid "Error 203: Your backup could not be unzipped"
978
  msgstr ""
979
 
980
+ #: views/restore.php:264
981
  msgid ""
982
  "Error 204: Your backup appears to be invalid. Please ensure you selected a "
983
  "valid backup"
984
  msgstr ""
985
 
986
+ #: views/restore.php:265
987
  msgid "Error 205: Cannot create restore point"
988
  msgstr ""
989
 
990
+ #: views/restore.php:266
991
  msgid "Error 206: Unable to connect to your database"
992
  msgstr ""
993
 
994
+ #: views/restore.php:267
995
  msgid ""
996
  "Error 207: Unable to get current site URL from database. Please try again"
997
  msgstr ""
998
 
999
+ #: views/restore.php:268
1000
  msgid ""
1001
  "Error 208: Unable to get current home URL from database. Please try again"
1002
  msgstr ""
1003
 
1004
+ #: views/restore.php:269
1005
  msgid ""
1006
  "Error 209: Unable to get current user ID from database. Please try again"
1007
  msgstr ""
1008
 
1009
+ #: views/restore.php:270
1010
  msgid ""
1011
  "Error 210: Unable to get current user password from database. Please try "
1012
  "again"
1013
  msgstr ""
1014
 
1015
+ #: views/restore.php:271
1016
  msgid ""
1017
  "Error 211: Unable to get current user email from database. Please try again"
1018
  msgstr ""
1019
 
1020
+ #: views/restore.php:272
1021
  msgid ""
1022
  "Error 212: Unable to import your database. This may require importing the "
1023
  "file manually"
1024
  msgstr ""
1025
 
1026
+ #: views/restore.php:273
1027
  msgid ""
1028
  "Warning 213: Unable to update your site URL value. Please check your "
1029
  "WordPress general settings to make sure your Site and WordPress URLs are "
1030
  "correct"
1031
  msgstr ""
1032
 
1033
+ #: views/restore.php:274
1034
  msgid ""
1035
  "Warning 214: Unable to update your home URL value. Please check your "
1036
  "WordPress general settings to make sure your Site and WordPress URLs are "
1037
  "correct"
1038
  msgstr ""
1039
 
1040
+ #: views/restore.php:275
1041
  msgid ""
1042
  "Warning 215: Unable to update your user information. This may require you to "
1043
  "login with the admin username and password that was used when the backup was "
1044
  "created"
1045
  msgstr ""
1046
 
1047
+ #: views/restore.php:276
1048
  msgid "Error 216: Database not found in backup"
1049
  msgstr ""
1050
 
1051
+ #: views/restore.php:277
1052
  msgid "Warning 217: Unable to remove existing wp-content directory"
1053
  msgstr ""
1054
 
1055
+ #: views/restore.php:278
1056
  msgid ""
1057
  "Error 218: Unable to create new wp-content directory. Please check your "
1058
  "CHMOD settings in /wp-content/"
1059
  msgstr ""
1060
 
1061
+ #: views/restore.php:279
1062
  msgid "Error 219: Unable to import wp-content. Please try again"
1063
  msgstr ""
1064
 
1065
+ #: views/restore.php:280
1066
  msgid "Warning 220: Unable to cleanup import directory. No action is required"
1067
  msgstr ""
1068
 
1069
+ #: views/restore.php:281
1070
  #, php-format
1071
  msgid ""
1072
  "Error 221: Table prefix value in wp-config.php is different from backup. "
1075
  "> FAQs</a> for more info."
1076
  msgstr ""
1077
 
1078
+ #: views/restore.php:282
1079
  msgid "Error 222: Unable to create restore folder"
1080
  msgstr ""
1081
 
1082
+ #: views/restore.php:283
1083
  msgid ""
1084
  "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1085
  "restore the database to its previous state but were unsuccessful. Please "
1087
  "further restores"
1088
  msgstr ""
1089
 
1090
+ #: views/restore.php:284
1091
  msgid ""
1092
  "Error 224: An error occurred during the restore, however, we have "
1093
  "successfully restored your database to the previous state"
1094
  msgstr ""
1095
 
1096
+ #: views/restore.php:285
1097
  msgid ""
1098
  "Error 225: Restore option is only available to licensed WP BackItUp users"
1099
  msgstr ""
1100
 
1101
+ #: views/restore.php:286
1102
  msgid ""
1103
  "Error 226: Restore cannot proceed because your backup was created using a "
1104
  "different version of WordPress"
1105
  msgstr ""
1106
 
1107
+ #: views/restore.php:287
1108
  msgid ""
1109
  "Error 227: Restore cannot proceed because your backup was created using a "
1110
  "different version of WP BackItUp. Please contact WP BackItUp support to "
1111
  "help convert this backup to the current version"
1112
  msgstr ""
1113
 
1114
+ #: views/restore.php:288
1115
  msgid ""
1116
  "Error 230: WP BackItUp ran into unexpected errors during the database "
1117
  "restore. However, we were able to successfully revert the database back to "
1118
  "its original state . This error may require importing the database manually"
1119
  msgstr ""
1120
 
1121
+ #: views/restore.php:289
1122
  msgid ""
1123
  "Error 235: WP BackItUp is not able to proceed because there is no zip "
1124
  "utility available. Please contact support"
1125
  msgstr ""
1126
 
1127
+ #: views/restore.php:290
1128
  msgid ""
1129
  "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1130
  "running. Please wait for the backup to complete and then try again"
1131
  msgstr ""
1132
 
1133
+ #: views/restore.php:292
1134
  msgid ""
1135
  "Error 251: WP BackItUp is unable to begin the restore because the backup "
1136
  "manifest is empty"
1137
  msgstr ""
1138
 
1139
+ #: views/restore.php:293
1140
  msgid ""
1141
  "Error 252: At least one zip file is missing from your backup set. Please "
1142
  "make sure to upload all zip files that were part of this backup"
1143
  msgstr ""
1144
 
1145
+ #: views/restore.php:294
1146
  msgid ""
1147
  "Error 253: Backup set contains a zip file that is not in the manifest. "
1148
  "Please make sure to upload only zip files that were part of this backup"
1149
  msgstr ""
1150
 
1151
+ #: views/restore.php:296
1152
  msgid ""
1153
  "Warning 300: Unable to restore all WordPress content. Please review your "
1154
  "restore logs to see what WP BackItUp was unable to restore"
1155
  msgstr ""
1156
 
1157
+ #: views/restore.php:297
1158
  msgid ""
1159
  "Warning 305: Unable to restore all plugins. Please review your restore logs "
1160
  "to see what WP BackItUp was unable to restore"
1161
  msgstr ""
1162
 
1163
+ #: views/restore.php:299
1164
  msgid "Error 2001: Unable to prepare site for restore"
1165
  msgstr ""
1166
 
1167
+ #: views/restore.php:300
1168
  msgid "Error 2002: Unable to unzip backup"
1169
  msgstr ""
1170
 
1171
+ #: views/restore.php:301
1172
  msgid "Error 2003: Unable to validate backup"
1173
  msgstr ""
1174
 
1175
+ #: views/restore.php:302
1176
  msgid "Error 2004: Unable to create restore point"
1177
  msgstr ""
1178
 
1179
+ #: views/restore.php:303
1180
  msgid "Error 2005: Unable to stage wp-content"
1181
  msgstr ""
1182
 
1183
+ #: views/restore.php:304
1184
  msgid "Error 2006: Unable to restore content files"
1185
  msgstr ""
1186
 
1187
+ #: views/restore.php:305
1188
  msgid "Error 2007: Unable to restore database"
1189
  msgstr ""
1190
 
1191
+ #: views/restore.php:306
1192
  msgid "Error 2999: Unexpected error encountered"
1193
  msgstr ""
1194
 
1195
+ #: views/restore.php:313
1196
  msgid ""
1197
  "Restore completed successfully. If you are prompted to login please do so "
1198
  "with your current username and password"
1199
  msgstr ""
1200
 
1201
+ #: views/settings.php:13
1202
  #, php-format
1203
  msgid "%s Settings"
1204
  msgstr ""
1205
 
1206
+ #: views/settings.php:40
1207
  msgid "Email Notifications"
1208
  msgstr ""
1209
 
1210
+ #: views/settings.php:41
1211
  msgid ""
1212
  "Please enter your email address if you would like to receive backup email "
1213
  "notifications."
1214
  msgstr ""
1215
 
1216
+ #: views/settings.php:42
1217
  msgid ""
1218
  "Backup email notifications will be sent for every backup and will contain "
1219
  "status information related to the backup."
1220
  msgstr ""
1221
 
1222
+ #: views/settings.php:44 views/settings.php:64 views/settings.php:85
1223
+ #: views/settings.php:111
1224
  msgid "Save"
1225
  msgstr ""
1226
 
1227
+ #: views/settings.php:60
1228
  msgid "Backup Retention"
1229
  msgstr ""
1230
 
1231
+ #: views/settings.php:61
1232
  msgid ""
1233
  "Enter the number of backup archives that you would like to remain on the "
1234
  "server."
1235
  msgstr ""
1236
 
1237
+ #: views/settings.php:62
1238
  msgid ""
1239
  "Many hosts limit the amount of space that you can take up on their servers. "
1240
  "This option tells WP BackItUp the maximum number of backup archives that "
1242
  "oldest backup archives first."
1243
  msgstr ""
1244
 
1245
+ #: views/settings.php:81
1246
  msgid "Turn on logging?"
1247
  msgstr ""
1248
 
1249
+ #: views/settings.php:82
1250
  msgid "Yes"
1251
  msgstr ""
1252
 
1253
+ #: views/settings.php:83
1254
  msgid "No"
1255
  msgstr ""
1256
 
1257
+ #: views/settings.php:84
1258
  msgid ""
1259
  "This option should only be turned on when troubleshooting issues with "
1260
  "WPBackItUp support."
1261
  msgstr ""
1262
 
1263
+ #: views/settings.php:89
1264
  msgid "Advanced Settings"
1265
  msgstr ""
1266
 
1267
+ #: views/settings.php:90
1268
  msgid ""
1269
  "These options should only be changed when working with WP BackItUp support."
1270
  msgstr ""
1271
 
1272
+ #: views/settings.php:93
1273
  msgid "Plugins Batch Size"
1274
  msgstr ""
1275
 
1276
+ #: views/settings.php:98
1277
  msgid "Themes Batch Size"
1278
  msgstr ""
1279
 
1280
+ #: views/settings.php:103
1281
  msgid "Uploads Batch Size"
1282
  msgstr ""
1283
 
1284
+ #: views/settings.php:108
1285
  msgid "Others Batch Size"
1286
  msgstr ""
1287
 
1288
+ #: views/support.php:13
1289
  #, php-format
1290
  msgid "%s Support"
1291
  msgstr ""
1292
 
1293
+ #: views/support.php:32
1294
  msgid "Support email sent successfully!"
1295
  msgstr ""
1296
 
1297
+ #: views/support.php:45
1298
  msgid "Email Logs to Support"
1299
  msgstr ""
1300
 
1301
+ #: views/support.php:46
1302
  msgid "This form should be used to send log files to support only."
1303
  msgstr ""
1304
 
1305
+ #: views/support.php:47
1306
  msgid ""
1307
  "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1308
  "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1309
  "using this form."
1310
  msgstr ""
1311
 
1312
+ #: views/support.php:48
1313
  msgid ""
1314
  "The ticket id you receive from your support request should be entered in the "
1315
  "ticket id field below."
1316
  msgstr ""
1317
 
1318
+ #: views/support.php:49
1319
  msgid "your email address"
1320
  msgstr ""
1321
 
1322
+ #: views/support.php:59
1323
  msgid "support ticket id"
1324
  msgstr ""
1325
 
1326
+ #: views/support.php:69
1327
  msgid "problem description or additional information"
1328
  msgstr ""
1329
 
1330
+ #: views/support.php:80
1331
  msgid "Send"
1332
  msgstr ""
1333
 
1334
+ #: views/support.php:83
1335
  msgid "Please register your version of WP BackItUp for access to support."
1336
  msgstr ""
1337
 
1338
+ #: views/support.php:87
1339
  msgid "Premium customers receive priority support."
1340
  msgstr ""
1341
 
1342
+ #: wp-backitup.php:98 wp-backitup.php:99
1343
  #, php-format
1344
  msgid "Every %s hours"
1345
  msgstr ""
1346
+
1347
+ #: wp-backitup.php:137
1348
+ msgid "Cleanup"
1349
+ msgstr ""
languages/wp-backitup_it_IT.mo DELETED
Binary file
languages/wp-backitup_it_IT.po DELETED
@@ -1,1333 +0,0 @@
1
- #
2
- # Translators:
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP BackItUp\n"
6
- "POT-Creation-Date: 2015-08-14 10:31-0400\n"
7
- "PO-Revision-Date: 2015-08-14 10:31-0400\n"
8
- "Last-Translator: Chris Simmons <chris.simmons01@gmail.com>\n"
9
- "Language-Team: Italian (Italy) (http://www.transifex.com/wp-translations/wp-"
10
- "backitup/language/it_IT/)\n"
11
- "Language: it_IT\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 1.8.4\n"
17
- "X-Poedit-Basepath: ..\n"
18
- "X-Poedit-KeywordsList: _;__;_e\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: lib/includes/class-wpbackitup-admin.php:171 views/backup.php:173
22
- #: views/backup.php:179
23
- msgid "Backup"
24
- msgstr ""
25
-
26
- #: lib/includes/class-wpbackitup-admin.php:175
27
- #: lib/includes/class-wpbackitup-admin.php:210 views/restore.php:115
28
- msgid "Restore"
29
- msgstr ""
30
-
31
- #: lib/includes/class-wpbackitup-admin.php:179
32
- msgid "Support"
33
- msgstr ""
34
-
35
- #: lib/includes/class-wpbackitup-admin.php:182
36
- msgid "Settings"
37
- msgstr "Impostazioni"
38
-
39
- #: lib/includes/class-wpbackitup-admin.php:203
40
- msgid ""
41
- "The backup you have selected exceeds what your host allows you to upload."
42
- msgstr ""
43
-
44
- #: lib/includes/class-wpbackitup-admin.php:204 views/backup.php:305
45
- #: views/backup.php:306 views/backup.php:307 views/backup.php:308
46
- #: views/backup.php:309 views/backup.php:310 views/backup.php:311
47
- #: views/backup.php:312 views/backup.php:313
48
- msgid "Warning"
49
- msgstr ""
50
-
51
- #: lib/includes/class-wpbackitup-admin.php:205 views/backup.php:149
52
- msgid "Error"
53
- msgstr "Errore"
54
-
55
- #: lib/includes/class-wpbackitup-admin.php:206
56
- msgid "Response"
57
- msgstr ""
58
-
59
- #: lib/includes/class-wpbackitup-admin.php:207 views/backup.php:296
60
- #: views/restore.php:205
61
- msgid "Status"
62
- msgstr "Stato"
63
-
64
- #: lib/includes/class-wpbackitup-admin.php:208 views/backup.php:265
65
- msgid "Download"
66
- msgstr ""
67
-
68
- #: lib/includes/class-wpbackitup-admin.php:209 views/backup.php:274
69
- #: views/restore.php:111
70
- msgid "Delete"
71
- msgstr "Cancella"
72
-
73
- #: lib/includes/class-wpbackitup-admin.php:211
74
- msgid "(JS997) Unexpected error"
75
- msgstr ""
76
-
77
- #: lib/includes/class-wpbackitup-admin.php:212
78
- msgid "(JS998) Unexpected error"
79
- msgstr ""
80
-
81
- #: lib/includes/class-wpbackitup-admin.php:213
82
- msgid "(JS999) An unexpected error has occurred"
83
- msgstr ""
84
-
85
- #: lib/includes/class-wpbackitup-admin.php:214
86
- msgid "Scheduled has been saved."
87
- msgstr ""
88
-
89
- #: lib/includes/class-wpbackitup-admin.php:215
90
- msgid "Scheduled was not saved."
91
- msgstr ""
92
-
93
- #: lib/includes/class-wpbackitup-admin.php:216
94
- msgid "Are you sure you want to restore your site?"
95
- msgstr ""
96
-
97
- #: lib/includes/class-wpbackitup-admin.php:217
98
- msgid "Are you sure ?"
99
- msgstr ""
100
-
101
- #: lib/includes/class-wpbackitup-admin.php:218
102
- msgid "This file cannot be delete!"
103
- msgstr ""
104
-
105
- #: lib/includes/class-wpbackitup-admin.php:219 views/backup.php:269
106
- msgid "View Log"
107
- msgstr ""
108
-
109
- #: lib/includes/class-wpbackitup-admin.php:220
110
- msgid "New Backup!"
111
- msgstr ""
112
-
113
- #: lib/includes/class-wpbackitup-admin.php:221
114
- msgid "Uploaded Backup"
115
- msgstr ""
116
-
117
- #: lib/includes/class-wpbackitup-admin.php:480
118
- msgid "Backup Queued"
119
- msgstr ""
120
-
121
- #: lib/includes/class-wpbackitup-admin.php:482
122
- msgid "Backup could not be queued"
123
- msgstr ""
124
-
125
- #: lib/includes/class-wpbackitup-admin.php:485
126
- msgid "Backup already in queue"
127
- msgstr ""
128
-
129
- #: lib/includes/class-wpbackitup-admin.php:508 views/backup.php:332
130
- msgid "Backup Cancelled"
131
- msgstr ""
132
-
133
- #: lib/includes/class-wpbackitup-admin.php:535
134
- msgid "No backup file selected."
135
- msgstr ""
136
-
137
- #: lib/includes/class-wpbackitup-admin.php:542
138
- msgid "No user id found."
139
- msgstr ""
140
-
141
- #: lib/includes/class-wpbackitup-admin.php:553
142
- msgid "Restore Queued"
143
- msgstr ""
144
-
145
- #: lib/includes/class-wpbackitup-admin.php:555
146
- msgid "Restore could not be queued"
147
- msgstr ""
148
-
149
- #: lib/includes/class-wpbackitup-admin.php:558
150
- msgid "Restore already in queue"
151
- msgstr ""
152
-
153
- #: lib/includes/class-wpbackitup-admin.php:743
154
- msgid "No response log found."
155
- msgstr ""
156
-
157
- #: lib/includes/class-wpbackitup-admin.php:836
158
- #: lib/includes/class-wpbackitup-admin.php:844
159
- #: lib/includes/class-wpbackitup-admin.php:873
160
- #: lib/includes/class-wpbackitup-admin.php:880
161
- #: lib/includes/class-wpbackitup-admin.php:887
162
- #: lib/includes/class-wpbackitup-admin.php:894
163
- msgid "Please enter a number"
164
- msgstr ""
165
-
166
- #: lib/includes/class-wpbackitup-admin.php:865
167
- #: lib/includes/class-wpbackitup-admin.php:972
168
- msgid "Please enter a valid email"
169
- msgstr ""
170
-
171
- #: lib/includes/class-wpbackitup-admin.php:979
172
- msgid "Please enter your support ticket id"
173
- msgstr ""
174
-
175
- #: lib/includes/class-wpbackitup-admin.php:984
176
- msgid "Please only enter numbers in this field"
177
- msgstr ""
178
-
179
- #: lib/includes/class-wpbackitup-admin.php:1645
180
- msgid "License is invalid."
181
- msgstr ""
182
-
183
- #: lib/includes/class-wpbackitup-admin.php:1650
184
- msgid "License has expired."
185
- msgstr ""
186
-
187
- #: lib/includes/class-wpbackitup-admin.php:1655
188
- msgid "Activation limit has been reached."
189
- msgstr ""
190
-
191
- #: lib/includes/handler_upload.php:29
192
- msgid "Invalid Nonce"
193
- msgstr ""
194
-
195
- #: lib/includes/handler_upload.php:39 lib/includes/handler_upload.php:151
196
- msgid "Upload directory is not writable, or does not exist."
197
- msgstr ""
198
-
199
- #: lib/includes/handler_upload.php:80
200
- #, php-format
201
- msgid "Error: %s"
202
- msgstr ""
203
-
204
- #: lib/includes/handler_upload.php:80
205
- msgid "File could not be uploaded"
206
- msgstr ""
207
-
208
- #: lib/includes/handler_upload.php:141
209
- msgid "Upload does not appear to be a WP BackItUp backup archive file."
210
- msgstr ""
211
-
212
- #: lib/includes/handler_upload.php:161
213
- msgid "Could not import file into WP BackItUp backup set."
214
- msgstr ""
215
-
216
- #: lib/includes/job_backup.php:851
217
- msgid "Preparing for backup...Done"
218
- msgstr ""
219
-
220
- #: lib/includes/job_backup.php:852
221
- msgid "Backing up database...Done"
222
- msgstr ""
223
-
224
- #: lib/includes/job_backup.php:853
225
- msgid "Creating backup information file...Done"
226
- msgstr ""
227
-
228
- #: lib/includes/job_backup.php:854
229
- msgid "Backing up themes...Done"
230
- msgstr ""
231
-
232
- #: lib/includes/job_backup.php:855
233
- msgid "Backing up plugins...Done"
234
- msgstr ""
235
-
236
- #: lib/includes/job_backup.php:856
237
- msgid "Backing up uploads...Done"
238
- msgstr ""
239
-
240
- #: lib/includes/job_backup.php:857
241
- msgid "Backing up miscellaneous files...Done"
242
- msgstr ""
243
-
244
- #: lib/includes/job_backup.php:858
245
- msgid "Finalizing backup...Done"
246
- msgstr ""
247
-
248
- #: lib/includes/job_backup.php:859
249
- msgid "Validating backup...Done"
250
- msgstr ""
251
-
252
- #: lib/includes/job_backup.php:860
253
- msgid "Cleaning up...Done"
254
- msgstr ""
255
-
256
- #: lib/includes/job_backup.php:870
257
- #, php-format
258
- msgid "%s - Backup completed successfully."
259
- msgstr ""
260
-
261
- #: lib/includes/job_backup.php:871
262
- msgid "Your backup completed successfully."
263
- msgstr ""
264
-
265
- #: lib/includes/job_backup.php:874
266
- #, php-format
267
- msgid "%s - Backup did not complete successfully."
268
- msgstr ""
269
-
270
- #: lib/includes/job_backup.php:875
271
- msgid "Your backup did not complete successfully."
272
- msgstr ""
273
-
274
- #: lib/includes/job_backup.php:880
275
- #, php-format
276
- msgid "WordPress Site: <a href=\"%s\" target=\"_blank\"> %s </a><br/>"
277
- msgstr ""
278
-
279
- #: lib/includes/job_backup.php:881
280
- msgid "Backup date:"
281
- msgstr ""
282
-
283
- #: lib/includes/job_backup.php:882
284
- msgid "Number of backups completed with WP BackItUp:"
285
- msgstr ""
286
-
287
- #: lib/includes/job_backup.php:884
288
- msgid "Completion Code:"
289
- msgstr ""
290
-
291
- #: lib/includes/job_backup.php:885
292
- msgid "WP BackItUp Version:"
293
- msgstr ""
294
-
295
- #: lib/includes/job_backup.php:891
296
- msgid "Steps Completed"
297
- msgstr ""
298
-
299
- #: lib/includes/job_backup.php:912
300
- #, php-format
301
- msgid "Checkout %s for info about WP BackItUp and our other products."
302
- msgstr ""
303
-
304
- #: lib/includes/job_backup.php:1088
305
- msgid ""
306
- "(101) Unable to create a new directory for backup. Please check your CHMOD "
307
- "settings of your wp-backitup backup directory"
308
- msgstr ""
309
-
310
- #: lib/includes/job_backup.php:1089
311
- msgid ""
312
- "(102) Cannot create backup directory. Please check the CHMOD settings of "
313
- "your wp-backitup plugin directory"
314
- msgstr ""
315
-
316
- #: lib/includes/job_backup.php:1090
317
- msgid "(103) Unable to backup your files. Please try again"
318
- msgstr ""
319
-
320
- #: lib/includes/job_backup.php:1091
321
- msgid "(104) Unable to export your database. Please try again"
322
- msgstr ""
323
-
324
- #: lib/includes/job_backup.php:1092
325
- msgid "(105) Unable to export site information file. Please try again"
326
- msgstr ""
327
-
328
- #: lib/includes/job_backup.php:1093
329
- msgid "(106) Unable to cleanup your backup directory"
330
- msgstr ""
331
-
332
- #: lib/includes/job_backup.php:1094
333
- msgid "(107) Unable to compress(zip) your backup. Please try again"
334
- msgstr ""
335
-
336
- #: lib/includes/job_backup.php:1095
337
- msgid "(108) Unable to backup your site data files. Please try again"
338
- msgstr ""
339
-
340
- #: lib/includes/job_backup.php:1096
341
- msgid "(109) Unable to finalize backup. Please try again"
342
- msgstr ""
343
-
344
- #: lib/includes/job_backup.php:1097
345
- msgid ""
346
- "(114) Your database was accessible but an export could not be created. "
347
- "Please contact support by clicking the get support link on the right. Please "
348
- "let us know who your host is when you submit the request"
349
- msgstr ""
350
-
351
- #: lib/includes/job_backup.php:1098
352
- msgid "(120) Unable to backup your themes. Please try again"
353
- msgstr ""
354
-
355
- #: lib/includes/job_backup.php:1099
356
- msgid "(121) Unable to backup your plugins. Please try again"
357
- msgstr ""
358
-
359
- #: lib/includes/job_backup.php:1100
360
- msgid "(122) Unable to backup your uploads. Please try again"
361
- msgstr ""
362
-
363
- #: lib/includes/job_backup.php:1101
364
- msgid "(123) Unable to backup your miscellaneous files. Please try again"
365
- msgstr ""
366
-
367
- #: lib/includes/job_backup.php:1102
368
- msgid ""
369
- "(125) Unable to compress your backup because there is no zip utility "
370
- "available. Please contact support"
371
- msgstr ""
372
-
373
- #: lib/includes/job_backup.php:1103
374
- msgid "(126) Unable to validate your backup. Please try again"
375
- msgstr ""
376
-
377
- #: lib/includes/job_backup.php:1104
378
- msgid "(127) Unable to create inventory of files to backup. Please try again"
379
- msgstr ""
380
-
381
- #: lib/includes/job_backup.php:1105
382
- msgid "(128) Unable to create job control record. Please try again"
383
- msgstr ""
384
-
385
- #: lib/includes/job_backup.php:1107
386
- msgid ""
387
- "(2101) Unable to create a new directory for backup. Please check your CHMOD "
388
- "settings of your wp-backitup backup directory"
389
- msgstr ""
390
-
391
- #: lib/includes/job_backup.php:1108
392
- msgid ""
393
- "(2102) Cannot create backup directory. Please check the CHMOD settings of "
394
- "your wp-backitup plugin directory"
395
- msgstr ""
396
-
397
- #: lib/includes/job_backup.php:1109
398
- msgid "(2103) Unable to backup your files. Please try again"
399
- msgstr ""
400
-
401
- #: lib/includes/job_backup.php:1110
402
- msgid "(2104) Unable to export your database. Please try again"
403
- msgstr ""
404
-
405
- #: lib/includes/job_backup.php:1111
406
- msgid "(2105) Unable to export site information file. Please try again"
407
- msgstr ""
408
-
409
- #: lib/includes/job_backup.php:1112
410
- msgid "(2106) Unable to cleanup your backup directory"
411
- msgstr ""
412
-
413
- #: lib/includes/job_backup.php:1113
414
- msgid "(2107) Unable to compress(zip) your backup. Please try again"
415
- msgstr ""
416
-
417
- #: lib/includes/job_backup.php:1114
418
- msgid "(2108) Unable to backup your site data files. Please try again"
419
- msgstr ""
420
-
421
- #: lib/includes/job_backup.php:1115
422
- msgid "(2109) Unable to finalize backup. Please try again"
423
- msgstr ""
424
-
425
- #: lib/includes/job_backup.php:1116
426
- msgid ""
427
- "(2114) Your database was accessible but an export could not be created. "
428
- "Please contact support by clicking the get support link on the right. Please "
429
- "let us know who your host is when you submit the request"
430
- msgstr ""
431
-
432
- #: lib/includes/job_backup.php:1117
433
- msgid "(2120) Unable to backup your themes. Please try again"
434
- msgstr ""
435
-
436
- #: lib/includes/job_backup.php:1118
437
- msgid "(2121) Unable to backup your plugins. Please try again"
438
- msgstr ""
439
-
440
- #: lib/includes/job_backup.php:1119
441
- msgid "(2122) Unable to backup your uploads. Please try again"
442
- msgstr ""
443
-
444
- #: lib/includes/job_backup.php:1120
445
- msgid "(2123) Unable to backup your miscellaneous files. Please try again"
446
- msgstr ""
447
-
448
- #: lib/includes/job_backup.php:1121
449
- msgid ""
450
- "(2125) Unable to compress your backup because there is no zip utility "
451
- "available. Please contact support"
452
- msgstr ""
453
-
454
- #: lib/includes/job_backup.php:1122
455
- msgid "(2126) Unable to validate your backup. Please try again"
456
- msgstr ""
457
-
458
- #: lib/includes/job_backup.php:1123
459
- msgid "(2127) Unable to create inventory of files to backup. Please try again"
460
- msgstr ""
461
-
462
- #: lib/includes/job_backup.php:1124
463
- msgid "(2128) Unable to create job control record. Please try again"
464
- msgstr ""
465
-
466
- #: lib/includes/job_backup.php:1127
467
- msgid "(999) Unexpected error"
468
- msgstr ""
469
-
470
- #. TRANSLATORS: %s = plugin name.
471
- #. This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
472
- #. Similar to how WordPress uses the word dashboard at the in the left navigation.
473
- #: views/backup.php:20
474
- #, php-format
475
- msgid "%s Dashboard"
476
- msgstr ""
477
-
478
- #: views/backup.php:150
479
- #, php-format
480
- msgid "Backup folder does not exist. Please contact %s for assistance."
481
- msgstr ""
482
-
483
- #: views/backup.php:150 views/restore.php:74 views/restore.php:81
484
- msgid "support"
485
- msgstr ""
486
-
487
- #: views/backup.php:153 views/backup.php:159
488
- msgid "Close"
489
- msgstr ""
490
-
491
- #: views/backup.php:174
492
- msgid ""
493
- "Click the backup button to create a zipped backup file of this site's "
494
- "database, plugins, themes and settings."
495
- msgstr ""
496
-
497
- #: views/backup.php:175
498
- msgid ""
499
- "Once your backup file has been created it will appear in the available "
500
- "backups section below. This file may remain on your hosting providers server "
501
- "but we recommend that you download and save it somewhere safe."
502
- msgstr ""
503
-
504
- #: views/backup.php:176
505
- msgid ""
506
- "WP BackItUp premium customers can use these backup files to perform an "
507
- "automated restore of their site."
508
- msgstr ""
509
-
510
- #: views/backup.php:180
511
- msgid "Cancel"
512
- msgstr "Annulla"
513
-
514
- #: views/backup.php:187
515
- #, php-format
516
- msgid ""
517
- "WP BackItUp lite customers may use these backup files to manually restore "
518
- "their site. Please visit %s for manual restore instructions."
519
- msgstr ""
520
-
521
- #: views/backup.php:194
522
- msgid "Backup Schedule"
523
- msgstr ""
524
-
525
- #: views/backup.php:196
526
- msgid "Select the days of the week you would like your backup to run."
527
- msgstr ""
528
-
529
- #: views/backup.php:198
530
- msgid ""
531
- "Backup your site once per week or every day, it's up to you. If you have "
532
- "email notifications turned on we'll even send you an email when it's done. "
533
- "Once your backup file has been created it will appear in the available "
534
- "backups section below. This file may remain on your hosting providers server "
535
- "but we recommend that you download and save it somewhere safe."
536
- msgstr ""
537
-
538
- #: views/backup.php:200
539
- msgid "Please make sure to schedule your backup for at least once per week."
540
- msgstr ""
541
-
542
- #: views/backup.php:204
543
- msgid "Monday"
544
- msgstr ""
545
-
546
- #: views/backup.php:205
547
- msgid "Tuesday"
548
- msgstr ""
549
-
550
- #: views/backup.php:206
551
- msgid "Wednesday"
552
- msgstr ""
553
-
554
- #: views/backup.php:207
555
- msgid "Thursday"
556
- msgstr ""
557
-
558
- #: views/backup.php:208
559
- msgid "Friday"
560
- msgstr ""
561
-
562
- #: views/backup.php:209
563
- msgid "Saturday"
564
- msgstr ""
565
-
566
- #: views/backup.php:210
567
- msgid "Sunday"
568
- msgstr ""
569
-
570
- #: views/backup.php:213
571
- msgid "Save Schedule"
572
- msgstr ""
573
-
574
- #: views/backup.php:218
575
- #, php-format
576
- msgid ""
577
- "Scheduled backups are only available to WP BackItUp premium customers. "
578
- "Please visit %s to get WP BackItUp risk free for 30 days."
579
- msgstr ""
580
-
581
- #: views/backup.php:225 views/restore.php:94
582
- msgid "Available Backups"
583
- msgstr ""
584
-
585
- #: views/backup.php:283 views/restore.php:125
586
- msgid "No backup archives found."
587
- msgstr ""
588
-
589
- #: views/backup.php:291
590
- #, php-format
591
- msgid ""
592
- "The automated restore feature is only available to WP BackItUp premium "
593
- "customers. Please visit %s to get WP BackItUp risk free for 30 days."
594
- msgstr ""
595
-
596
- #: views/backup.php:300 views/restore.php:209
597
- msgid "Nothing to report"
598
- msgstr ""
599
-
600
- #: views/backup.php:305
601
- msgid "Preparing for backup"
602
- msgstr ""
603
-
604
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
605
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
606
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
607
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
608
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
609
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
610
- #: views/restore.php:228 views/restore.php:230
611
- msgid "Done"
612
- msgstr ""
613
-
614
- #: views/backup.php:305 views/backup.php:306 views/backup.php:307
615
- #: views/backup.php:308 views/backup.php:309 views/backup.php:310
616
- #: views/backup.php:311 views/backup.php:312 views/backup.php:313
617
- #: views/restore.php:219 views/restore.php:220 views/restore.php:221
618
- #: views/restore.php:222 views/restore.php:223 views/restore.php:224
619
- #: views/restore.php:225 views/restore.php:226 views/restore.php:227
620
- #: views/restore.php:228 views/restore.php:230
621
- msgid "Failed"
622
- msgstr ""
623
-
624
- #: views/backup.php:306
625
- msgid "Backing up database"
626
- msgstr ""
627
-
628
- #: views/backup.php:307
629
- msgid "Creating backup information file"
630
- msgstr ""
631
-
632
- #: views/backup.php:308
633
- msgid "Backing up themes"
634
- msgstr ""
635
-
636
- #: views/backup.php:309
637
- msgid "Backing up plugins"
638
- msgstr ""
639
-
640
- #: views/backup.php:310
641
- msgid "Backing up uploads"
642
- msgstr ""
643
-
644
- #: views/backup.php:311
645
- msgid "Backing up everything else"
646
- msgstr ""
647
-
648
- #: views/backup.php:312
649
- msgid "Validating backup"
650
- msgstr ""
651
-
652
- #: views/backup.php:313
653
- msgid "Finalizing backup"
654
- msgstr ""
655
-
656
- #: views/backup.php:323
657
- msgid "Backup completed successfully"
658
- msgstr ""
659
-
660
- #: views/backup.php:344
661
- msgid "Backups"
662
- msgstr ""
663
-
664
- #: views/backup.php:344
665
- msgid "Version "
666
- msgstr ""
667
-
668
- #: views/backup.php:346
669
- msgid "Welcome to WP BackItUp!"
670
- msgstr ""
671
-
672
- #: views/backup.php:346
673
- msgid "The simplest way to backup your WordPress site."
674
- msgstr ""
675
-
676
- #: views/backup.php:347
677
- msgid ""
678
- "Getting started is easy, just click the backup button on the left side of "
679
- "this page."
680
- msgstr ""
681
-
682
- #: views/backup.php:351
683
- #, php-format
684
- msgid ""
685
- "Congratulations! You have performed <span style=\"font-weight:bold;font-size:"
686
- "medium;color: green\">%s</span> successful backups."
687
- msgstr ""
688
-
689
- #: views/backup.php:352
690
- msgid "Tips"
691
- msgstr ""
692
-
693
- #: views/backup.php:353
694
- msgid "Backup your site at least once per week"
695
- msgstr ""
696
-
697
- #: views/backup.php:354
698
- msgid "Download all your backups and store them somewhere safe"
699
- msgstr ""
700
-
701
- #: views/backup.php:355
702
- msgid "Verify your backup files are good by taking a look at what's inside"
703
- msgstr ""
704
-
705
- #: views/backup.php:360
706
- #, php-format
707
- msgid "Why not %s and schedule your backups!"
708
- msgstr ""
709
-
710
- #: views/backup.php:360
711
- msgid "upgrade"
712
- msgstr ""
713
-
714
- #: views/backup.php:369
715
- msgid "Register WP BackItUp"
716
- msgstr ""
717
-
718
- #: views/backup.php:372
719
- msgid ""
720
- "Enter your name and email address below to receive <b>special offers</b> and "
721
- "access to our world class <b>support</b> team. <br />\n"
722
- " <br />Enter your license key below to activate it on this "
723
- "site."
724
- msgstr ""
725
-
726
- #: views/backup.php:374
727
- msgid "name"
728
- msgstr ""
729
-
730
- #: views/backup.php:375
731
- msgid "email address"
732
- msgstr ""
733
-
734
- #: views/backup.php:376
735
- msgid "license key"
736
- msgstr ""
737
-
738
- #: views/backup.php:376 views/backup.php:426 views/backup.php:430
739
- #, php-format
740
- msgid "%s"
741
- msgstr ""
742
-
743
- #: views/backup.php:377
744
- msgid "Free plugin customers do not need to enter license key."
745
- msgstr ""
746
-
747
- #: views/backup.php:378
748
- msgid "Register"
749
- msgstr ""
750
-
751
- #: views/backup.php:387
752
- msgid "License Info"
753
- msgstr ""
754
-
755
- #: views/backup.php:409
756
- msgid "Name"
757
- msgstr "Nome"
758
-
759
- #: views/backup.php:410
760
- msgid "Email"
761
- msgstr "Email"
762
-
763
- #: views/backup.php:411
764
- msgid "License Type"
765
- msgstr ""
766
-
767
- #: views/backup.php:412
768
- msgid "Expires"
769
- msgstr ""
770
-
771
- #: views/backup.php:415
772
- msgid "Enter license key to activate on this site."
773
- msgstr ""
774
-
775
- #: views/backup.php:422
776
- msgid "License Active"
777
- msgstr ""
778
-
779
- #: views/backup.php:430
780
- msgid "License expired"
781
- msgstr ""
782
-
783
- #: views/backup.php:434
784
- msgid "Update"
785
- msgstr "Aggiorna"
786
-
787
- #: views/backup.php:438
788
- msgid "Activate"
789
- msgstr "Attivo"
790
-
791
- #: views/backup.php:442
792
- #, php-format
793
- msgid "Purchase a %s license using the purchase link above."
794
- msgstr ""
795
-
796
- #: views/backup.php:442
797
- msgid "no-risk"
798
- msgstr ""
799
-
800
- #: views/backup.php:448
801
- #, php-format
802
- msgid ""
803
- "<a href=\"%s\" target=\"blank\">Renew</a> your license now for another year "
804
- "of <strong>product updates</strong> and <strong>priority support.</strong>"
805
- msgstr ""
806
-
807
- #: views/backup.php:459
808
- msgid "Useful Links"
809
- msgstr ""
810
-
811
- #: views/backup.php:462 views/backup.php:466
812
- msgid "Your account"
813
- msgstr ""
814
-
815
- #: views/backup.php:469
816
- msgid "Documentation"
817
- msgstr "Documentazione"
818
-
819
- #: views/backup.php:472
820
- msgid "Get support"
821
- msgstr ""
822
-
823
- #: views/backup.php:475
824
- msgid "Feature request"
825
- msgstr ""
826
-
827
- #: views/backup.php:477
828
- msgid "Contact"
829
- msgstr ""
830
-
831
- #: views/backup.php:497 views/backup.php:518
832
- msgid "WP BackItUp Backup Set"
833
- msgstr ""
834
-
835
- #: views/backup.php:499
836
- msgid ""
837
- "Below are the archive files included in this backup set. Click the link to "
838
- "download."
839
- msgstr ""
840
-
841
- #: views/backup.php:519
842
- msgid "Please refresh this page to download your new backup files."
843
- msgstr ""
844
-
845
- #: views/restore.php:16
846
- #, php-format
847
- msgid "%s Restore"
848
- msgstr ""
849
-
850
- #: views/restore.php:59
851
- msgid "Zip Files"
852
- msgstr ""
853
-
854
- #: views/restore.php:74
855
- #, php-format
856
- msgid "Error: Backup folder does not exist. Please contact %s for assistance."
857
- msgstr ""
858
-
859
- #: views/restore.php:81
860
- #, php-format
861
- msgid "Error: Restore folder does not exist. Please contact %s for assistance."
862
- msgstr ""
863
-
864
- #: views/restore.php:141
865
- #, php-format
866
- msgid ""
867
- "<p>* The automated restore feature is only available to licensed customers. "
868
- "Please visit <a href=\"%s\" target=\"_blank\">%s</a> to get license WP "
869
- "BackItUp risk free for 30 days.</p>"
870
- msgstr ""
871
-
872
- #: views/restore.php:153
873
- msgid "Upload"
874
- msgstr ""
875
-
876
- #: views/restore.php:156
877
- msgid ""
878
- "Upload WP BackItUp archive(zip) files to add to your list of available "
879
- "backups."
880
- msgstr ""
881
-
882
- #: views/restore.php:173
883
- msgid "WP BackItUp - Upload backup files"
884
- msgstr ""
885
-
886
- #: views/restore.php:174
887
- msgid "Backup files may be uploaded into WP BackItUp with this form."
888
- msgstr ""
889
-
890
- #: views/restore.php:174
891
- msgid ""
892
- "They may also be uploaded manually into the WP BackItUp directory (wp-"
893
- "content/wpbackitup_backups) using FTP. When done uploading all backup files "
894
- "refresh this page."
895
- msgstr ""
896
-
897
- #: views/restore.php:178
898
- #, php-format
899
- msgid "This feature requires %s version %s or later"
900
- msgstr ""
901
-
902
- #: views/restore.php:184
903
- msgid "Drop backup files here"
904
- msgstr ""
905
-
906
- #: views/restore.php:190
907
- msgid ""
908
- "* Reload this page when done uploading to see new backups appear in the "
909
- "Available Backups section above. "
910
- msgstr ""
911
-
912
- #: views/restore.php:219
913
- msgid "Preparing for restore"
914
- msgstr ""
915
-
916
- #: views/restore.php:220
917
- msgid "Unzipping backup set"
918
- msgstr ""
919
-
920
- #: views/restore.php:221
921
- msgid "Validating backup file"
922
- msgstr ""
923
-
924
- #: views/restore.php:222
925
- msgid "Deactivating plugins"
926
- msgstr ""
927
-
928
- #: views/restore.php:223
929
- msgid "Creating database restore point"
930
- msgstr ""
931
-
932
- #: views/restore.php:224
933
- msgid "Staging content files"
934
- msgstr ""
935
-
936
- #: views/restore.php:225
937
- msgid "Restoring content files"
938
- msgstr ""
939
-
940
- #: views/restore.php:226
941
- msgid "Restoring database"
942
- msgstr ""
943
-
944
- #: views/restore.php:227
945
- msgid "Updating current user info"
946
- msgstr ""
947
-
948
- #: views/restore.php:228
949
- msgid "Updating site URL"
950
- msgstr ""
951
-
952
- #: views/restore.php:230
953
- msgid "Updating permalinks"
954
- msgstr ""
955
-
956
- #: views/restore.php:236
957
- msgid "Error 201: No file selected"
958
- msgstr ""
959
-
960
- #: views/restore.php:237
961
- msgid "Error 202: Your file could not be uploaded"
962
- msgstr ""
963
-
964
- #: views/restore.php:238
965
- msgid "Error 203: Your backup could not be unzipped"
966
- msgstr ""
967
-
968
- #: views/restore.php:239
969
- msgid ""
970
- "Error 204: Your backup appears to be invalid. Please ensure you selected a "
971
- "valid backup"
972
- msgstr ""
973
-
974
- #: views/restore.php:240
975
- msgid "Error 205: Cannot create restore point"
976
- msgstr ""
977
-
978
- #: views/restore.php:241
979
- msgid "Error 206: Unable to connect to your database"
980
- msgstr ""
981
-
982
- #: views/restore.php:242
983
- msgid ""
984
- "Error 207: Unable to get current site URL from database. Please try again"
985
- msgstr ""
986
-
987
- #: views/restore.php:243
988
- msgid ""
989
- "Error 208: Unable to get current home URL from database. Please try again"
990
- msgstr ""
991
-
992
- #: views/restore.php:244
993
- msgid ""
994
- "Error 209: Unable to get current user ID from database. Please try again"
995
- msgstr ""
996
-
997
- #: views/restore.php:245
998
- msgid ""
999
- "Error 210: Unable to get current user password from database. Please try "
1000
- "again"
1001
- msgstr ""
1002
-
1003
- #: views/restore.php:246
1004
- msgid ""
1005
- "Error 211: Unable to get current user email from database. Please try again"
1006
- msgstr ""
1007
-
1008
- #: views/restore.php:247
1009
- msgid ""
1010
- "Error 212: Unable to import your database. This may require importing the "
1011
- "file manually"
1012
- msgstr ""
1013
-
1014
- #: views/restore.php:248
1015
- msgid ""
1016
- "Warning 213: Unable to update your site URL value. Please check your "
1017
- "WordPress general settings to make sure your Site and WordPress URLs are "
1018
- "correct"
1019
- msgstr ""
1020
-
1021
- #: views/restore.php:249
1022
- msgid ""
1023
- "Warning 214: Unable to update your home URL value. Please check your "
1024
- "WordPress general settings to make sure your Site and WordPress URLs are "
1025
- "correct"
1026
- msgstr ""
1027
-
1028
- #: views/restore.php:250
1029
- msgid ""
1030
- "Warning 215: Unable to update your user information. This may require you to "
1031
- "login with the admin username and password that was used when the backup was "
1032
- "created"
1033
- msgstr ""
1034
-
1035
- #: views/restore.php:251
1036
- msgid "Error 216: Database not found in backup"
1037
- msgstr ""
1038
-
1039
- #: views/restore.php:252
1040
- msgid "Warning 217: Unable to remove existing wp-content directory"
1041
- msgstr ""
1042
-
1043
- #: views/restore.php:253
1044
- msgid ""
1045
- "Error 218: Unable to create new wp-content directory. Please check your "
1046
- "CHMOD settings in /wp-content/"
1047
- msgstr ""
1048
-
1049
- #: views/restore.php:254
1050
- msgid "Error 219: Unable to import wp-content. Please try again"
1051
- msgstr ""
1052
-
1053
- #: views/restore.php:255
1054
- msgid "Warning 220: Unable to cleanup import directory. No action is required"
1055
- msgstr ""
1056
-
1057
- #: views/restore.php:256
1058
- #, php-format
1059
- msgid ""
1060
- "Error 221: Table prefix value in wp-config.php is different from backup. "
1061
- "This MUST be changed in your wp-config.php file before you will be able to "
1062
- "restore your site. See www.wpbackitup.com <a href =\"%s\" target=\"_blank\" "
1063
- "> FAQs</a> for more info."
1064
- msgstr ""
1065
-
1066
- #: views/restore.php:257
1067
- msgid "Error 222: Unable to create restore folder"
1068
- msgstr ""
1069
-
1070
- #: views/restore.php:258
1071
- msgid ""
1072
- "Error 223: An error occurred during the restore. WP BackItUp attempted to "
1073
- "restore the database to its previous state but were unsuccessful. Please "
1074
- "contact WP BackItUp customer support and do not attempt to perform any "
1075
- "further restores"
1076
- msgstr ""
1077
-
1078
- #: views/restore.php:259
1079
- msgid ""
1080
- "Error 224: An error occurred during the restore, however, we have "
1081
- "successfully restored your database to the previous state"
1082
- msgstr ""
1083
-
1084
- #: views/restore.php:260
1085
- msgid ""
1086
- "Error 225: Restore option is only available to licensed WP BackItUp users"
1087
- msgstr ""
1088
-
1089
- #: views/restore.php:261
1090
- msgid ""
1091
- "Error 226: Restore cannot proceed because your backup was created using a "
1092
- "different version of WordPress"
1093
- msgstr ""
1094
-
1095
- #: views/restore.php:262
1096
- msgid ""
1097
- "Error 227: Restore cannot proceed because your backup was created using a "
1098
- "different version of WP BackItUp. Please contact WP BackItUp support to "
1099
- "help convert this backup to the current version"
1100
- msgstr ""
1101
-
1102
- #: views/restore.php:263
1103
- msgid ""
1104
- "Error 230: WP BackItUp ran into unexpected errors during the database "
1105
- "restore. However, we were able to successfully revert the database back to "
1106
- "its original state . This error may require importing the database manually"
1107
- msgstr ""
1108
-
1109
- #: views/restore.php:264
1110
- msgid ""
1111
- "Error 235: WP BackItUp is not able to proceed because there is no zip "
1112
- "utility available. Please contact support"
1113
- msgstr ""
1114
-
1115
- #: views/restore.php:265
1116
- msgid ""
1117
- "Error 250: WP BackItUp is unable to begin the restore because a backup is "
1118
- "running. Please wait for the backup to complete and then try again"
1119
- msgstr ""
1120
-
1121
- #: views/restore.php:267
1122
- msgid ""
1123
- "Error 251: WP BackItUp is unable to begin the restore because the backup "
1124
- "manifest is empty"
1125
- msgstr ""
1126
-
1127
- #: views/restore.php:268
1128
- msgid ""
1129
- "Error 252: At least one zip file is missing from your backup set. Please "
1130
- "make sure to upload all zip files that were part of this backup"
1131
- msgstr ""
1132
-
1133
- #: views/restore.php:269
1134
- msgid ""
1135
- "Error 253: Backup set contains a zip file that is not in the manifest. "
1136
- "Please make sure to upload only zip files that were part of this backup"
1137
- msgstr ""
1138
-
1139
- #: views/restore.php:271
1140
- msgid ""
1141
- "Warning 300: Unable to restore all WordPress content. Please review your "
1142
- "restore logs to see what WP BackItUp was unable to restore"
1143
- msgstr ""
1144
-
1145
- #: views/restore.php:272
1146
- msgid ""
1147
- "Warning 305: Unable to restore all plugins. Please review your restore logs "
1148
- "to see what WP BackItUp was unable to restore"
1149
- msgstr ""
1150
-
1151
- #: views/restore.php:274
1152
- msgid "Error 2001: Unable to prepare site for restore"
1153
- msgstr ""
1154
-
1155
- #: views/restore.php:275
1156
- msgid "Error 2002: Unable to unzip backup"
1157
- msgstr ""
1158
-
1159
- #: views/restore.php:276
1160
- msgid "Error 2003: Unable to validate backup"
1161
- msgstr ""
1162
-
1163
- #: views/restore.php:277
1164
- msgid "Error 2004: Unable to create restore point"
1165
- msgstr ""
1166
-
1167
- #: views/restore.php:278
1168
- msgid "Error 2005: Unable to stage wp-content"
1169
- msgstr ""
1170
-
1171
- #: views/restore.php:279
1172
- msgid "Error 2006: Unable to restore content files"
1173
- msgstr ""
1174
-
1175
- #: views/restore.php:280
1176
- msgid "Error 2007: Unable to restore database"
1177
- msgstr ""
1178
-
1179
- #: views/restore.php:281
1180
- msgid "Error 2999: Unexpected error encountered"
1181
- msgstr ""
1182
-
1183
- #: views/restore.php:288
1184
- msgid ""
1185
- "Restore completed successfully. If you are prompted to login please do so "
1186
- "with your current username and password"
1187
- msgstr ""
1188
-
1189
- #: views/settings.php:16
1190
- #, php-format
1191
- msgid "%s Settings"
1192
- msgstr ""
1193
-
1194
- #: views/settings.php:43
1195
- msgid "Email Notifications"
1196
- msgstr ""
1197
-
1198
- #: views/settings.php:44
1199
- msgid ""
1200
- "Please enter your email address if you would like to receive backup email "
1201
- "notifications."
1202
- msgstr ""
1203
-
1204
- #: views/settings.php:45
1205
- msgid ""
1206
- "Backup email notifications will be sent for every backup and will contain "
1207
- "status information related to the backup."
1208
- msgstr ""
1209
-
1210
- #: views/settings.php:47 views/settings.php:67 views/settings.php:88
1211
- #: views/settings.php:114
1212
- msgid "Save"
1213
- msgstr ""
1214
-
1215
- #: views/settings.php:63
1216
- msgid "Backup Retention"
1217
- msgstr ""
1218
-
1219
- #: views/settings.php:64
1220
- msgid ""
1221
- "Enter the number of backup archives that you would like to remain on the "
1222
- "server."
1223
- msgstr ""
1224
-
1225
- #: views/settings.php:65
1226
- msgid ""
1227
- "Many hosts limit the amount of space that you can take up on their servers. "
1228
- "This option tells WP BackItUp the maximum number of backup archives that "
1229
- "should remain on your hosts server. Don't worry, we will always remove the "
1230
- "oldest backup archives first."
1231
- msgstr ""
1232
-
1233
- #: views/settings.php:84
1234
- msgid "Turn on logging?"
1235
- msgstr ""
1236
-
1237
- #: views/settings.php:85
1238
- msgid "Yes"
1239
- msgstr "Si"
1240
-
1241
- #: views/settings.php:86
1242
- msgid "No"
1243
- msgstr "No"
1244
-
1245
- #: views/settings.php:87
1246
- msgid ""
1247
- "This option should only be turned on when troubleshooting issues with "
1248
- "WPBackItUp support."
1249
- msgstr ""
1250
-
1251
- #: views/settings.php:92
1252
- msgid "Advanced Settings"
1253
- msgstr ""
1254
-
1255
- #: views/settings.php:93
1256
- msgid ""
1257
- "These options should only be changed when working with WP BackItUp support."
1258
- msgstr ""
1259
-
1260
- #: views/settings.php:96
1261
- msgid "Plugins Batch Size"
1262
- msgstr ""
1263
-
1264
- #: views/settings.php:101
1265
- msgid "Themes Batch Size"
1266
- msgstr ""
1267
-
1268
- #: views/settings.php:106
1269
- msgid "Uploads Batch Size"
1270
- msgstr ""
1271
-
1272
- #: views/settings.php:111
1273
- msgid "Others Batch Size"
1274
- msgstr ""
1275
-
1276
- #: views/support.php:16
1277
- #, php-format
1278
- msgid "%s Support"
1279
- msgstr ""
1280
-
1281
- #: views/support.php:35
1282
- msgid "Support email sent successfully!"
1283
- msgstr ""
1284
-
1285
- #: views/support.php:48
1286
- msgid "Email Logs to Support"
1287
- msgstr ""
1288
-
1289
- #: views/support.php:49
1290
- msgid "This form should be used to send log files to support only."
1291
- msgstr ""
1292
-
1293
- #: views/support.php:50
1294
- msgid ""
1295
- "Please make sure to open a support ticket via WP BackItUp <a href=\"https://"
1296
- "www.wpbackitup.com/support\" target=\"_blank\">support portal.</a> before "
1297
- "using this form."
1298
- msgstr ""
1299
-
1300
- #: views/support.php:51
1301
- msgid ""
1302
- "The ticket id you receive from your support request should be entered in the "
1303
- "ticket id field below."
1304
- msgstr ""
1305
-
1306
- #: views/support.php:52
1307
- msgid "your email address"
1308
- msgstr ""
1309
-
1310
- #: views/support.php:62
1311
- msgid "support ticket id"
1312
- msgstr ""
1313
-
1314
- #: views/support.php:72
1315
- msgid "problem description or additional information"
1316
- msgstr ""
1317
-
1318
- #: views/support.php:83
1319
- msgid "Send"
1320
- msgstr ""
1321
-
1322
- #: views/support.php:86
1323
- msgid "Please register your version of WP BackItUp for access to support."
1324
- msgstr ""
1325
-
1326
- #: views/support.php:90
1327
- msgid "Premium customers receive priority support."
1328
- msgstr ""
1329
-
1330
- #: wp-backitup.php:97 wp-backitup.php:98
1331
- #, php-format
1332
- msgid "Every %s hours"
1333
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lib/includes/class-backup.php CHANGED
@@ -15,6 +15,10 @@ if( !class_exists( 'WPBackItUp_Filesystem' ) ) {
15
  include_once 'class-filesystem.php';
16
  }
17
 
 
 
 
 
18
 
19
 
20
  class WPBackItUp_Backup {
@@ -33,8 +37,8 @@ class WPBackItUp_Backup {
33
  //scheduled,manual,none
34
  public $backup_type;
35
 
36
- private static $lockFileName;
37
- private static $lockFile;
38
 
39
 
40
  //-------------STATIC FUNCTIONS-------------------//
@@ -58,7 +62,6 @@ class WPBackItUp_Backup {
58
 
59
  $this->backup_type=$backup_type;
60
 
61
-
62
  $this->backup_name=$backup_name;
63
  //$this->backup_filename=$backup_name . '.tmp';
64
 
@@ -95,22 +98,26 @@ class WPBackItUp_Backup {
95
  $lockfile_logname='debug_lock';
96
 
97
  try {
98
- self::$lockFileName = WPBACKITUP__PLUGIN_PATH .'logs/wpbackitup_lock.lock';
99
- WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Begin - Lock File:' . self::$lockFileName);
100
 
101
- self::$lockFile = fopen(self::$lockFileName ,"w"); // open it for WRITING ("w")
102
- if (flock( self::$lockFile, LOCK_EX | LOCK_NB)) {
103
- WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Process LOCK acquired');
 
 
 
 
104
  return true;
105
- } else {
106
- WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Process LOCK failed');
107
- return false;
108
- }
109
 
110
  } catch(Exception $e) {
111
  WPBackItUp_LoggerV2::log_error($lockfile_logname,__METHOD__,'Process Lock error: ' .$e);
112
  return false;
113
  }
 
 
114
  }
115
 
116
  /**
@@ -121,8 +128,9 @@ class WPBackItUp_Backup {
121
  //WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin - Unlock File:' . $this->lockFileName);
122
 
123
  try{
 
124
  //WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'LOCK released - backup ending');
125
- flock( self::$lockFile, LOCK_UN); // unlock the file
126
  return true;
127
 
128
  }catch(Exception $e) {
@@ -131,28 +139,28 @@ class WPBackItUp_Backup {
131
  }
132
  }
133
 
134
- /**
135
- * Check lock status
136
- * @return bool
137
- */
138
- public function check_lock_status (){
139
- //Check for 5 minutes then give up
140
- for ($i = 1; $i <= 100; $i++) {
141
- if ($this->start()){
142
- $this->end();
143
- return true;
144
- }
145
- else{
146
- sleep(3); //sleep for 3 seconds
147
- }
148
- }
149
- return false;
150
- }
151
-
152
- public function isScheduled(){
153
-
154
- return true;
155
- }
156
 
157
  public function cleanup_backups_by_prefix($prefix) {
158
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
@@ -168,43 +176,40 @@ class WPBackItUp_Backup {
168
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End' );
169
  }
170
 
171
- public function cleanup_old_backups() {
172
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
 
 
 
 
 
 
173
 
174
  // --PURGE BACKUP FOLDER
175
- //Purge logs in backup older than N days
176
- $backup_root_path=$this->backup_folder_root;
177
- $file_system = new WPBackItUp_FileSystem($this->log_name);
178
-
179
- //check retention limits
180
- $file_system->purge_folders($backup_root_path,'*',$this->backup_retained_number);
181
-
182
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End' );
183
- }
184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
- public function cleanup_unfinished_backups_OLD(){
187
- $dir=$this->backup_folder_root;
188
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin:'.$dir);
189
- $ignore = array('cgi-bin','.','..','._');
190
- if( is_dir($dir) ){
191
- if($dh = opendir($dir)) {
192
- while( ($file = readdir($dh)) !== false ) {
193
- $ext = pathinfo($file, PATHINFO_EXTENSION);
194
- if (!in_array($file, $ignore) && substr($file, 0, 1) != '.' && $ext!="zip" && $ext!="log") { //Check the file is not in the ignore array
195
- if(!is_dir($dir .'/'. $file)) {
196
- unlink($dir .'/'. $file);
197
- } else {
198
- $fileSystem = new WPBackItUp_FileSystem($this->log_name);
199
- $fileSystem->recursive_delete($dir.'/'. $file, $ignore);
200
- }
201
- }
202
- }
203
- }
204
- closedir($dh);
205
- }
206
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
207
- return true;
208
  }
209
 
210
  public function cleanup_current_backup(){
@@ -247,24 +252,6 @@ class WPBackItUp_Backup {
247
  //Purge Zipped logs in logs older than 5 days
248
  $fileSystem->purge_files($logs_path,'*.zip',$this->backup_retained_days);
249
 
250
- //Purge logs in logs older than 5 days
251
- // $fileSystem->purge_files($logs_path,'Backup_*.log',$this->backup_retained_days);
252
-
253
- // //Purge debug logs in logs older than 5 days
254
- // $fileSystem->purge_files($logs_path,'*debug*.log',$this->backup_retained_days);
255
- //
256
- // //Purge upload logs in logs older than 5 days
257
- // $fileSystem->purge_files($logs_path,'*upload*.log',$this->backup_retained_days);
258
- //
259
- // //Purge cleanup logs in logs older than 5 days
260
- // $fileSystem->purge_files($logs_path,'*cleanup*.log',$this->backup_retained_days);
261
- //
262
- // //Purge Zipped logs in logs older than 5 days
263
- // $fileSystem->purge_files($logs_path,'logs_*.zip',$this->backup_retained_days);
264
- //
265
- // //Purge restore logs in logs older than 5 days
266
- // $fileSystem->purge_files($logs_path,'*restore*.log',$this->backup_retained_days);
267
-
268
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
269
 
270
  }
@@ -402,16 +389,6 @@ class WPBackItUp_Backup {
402
  return $plugins_file_list;
403
  }
404
 
405
- //Search array(needle) for value(haystack) starting in position 1
406
- function strposa0($haystack, $needle, $offset=0) {
407
- if(!is_array($needle)) $needle = array($needle);
408
- foreach($needle as $query) {
409
- $pos = strpos($haystack, $query, $offset);
410
- //looking for position 0 - string must start at the beginning
411
- if($pos === 0) return true; // stop on first true result
412
- }
413
- return false;
414
- }
415
 
416
  public function create_job_control($job_id) {
417
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
@@ -464,43 +441,40 @@ class WPBackItUp_Backup {
464
  $batch_counter = 0;
465
  $total_counter=0;
466
  $directory_iterator=new RecursiveDirectoryIterator($root_path, 4096 | 8192 | RecursiveIteratorIterator::CATCH_GET_CHILD);
467
- $item_iterator = new RecursiveIteratorIterator($directory_iterator,RecursiveIteratorIterator::SELF_FIRST);
 
468
 
469
  $datetime1 = new DateTime('now');
470
  $sql="";
471
  $db = new WPBackItUp_DataAccess();
472
 
473
- while ($item_iterator->valid()) {
474
  //Skip the item if its in the exclude array
475
  //This is a string compare starting in position 1
476
 
477
  //Fix the path to use backslash
478
- $file_path = str_replace('\\', "/",$item_iterator->getSubPathname());
479
 
480
  //Remove special characters
481
  $file_path = esc_sql($file_path);
482
 
483
- if ($this->strposa0($file_path, $exclude)===true) {
484
- WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, 'Skip: ' .$file_path);
485
- } else {
486
- if ( $item_iterator->isFile()) {
487
- if ($batch_counter>=$batch_insert_size){
488
- WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, '*Try Write Batch*');
489
- if (! $db->insert_job_items($sql)) {
490
- return false;
491
- }
492
- WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, '*Write Batch SUCCESS*');
493
- $sql="";
494
- $batch_counter=0;
495
  }
496
- $total_counter++;
497
- $batch_counter++;
498
- $file_size=ceil($item_iterator->getSize()/1024);//round up
499
- WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, 'Add File: ' .$batch_counter . ' ' .$file_path);
500
- $sql.= "(".$job_id .", '" .$group_id."', '" .utf8_encode($file_path) ."', ".$file_size .",now() ),";
501
  }
 
 
 
 
 
502
  }
503
- $item_iterator->next();
504
  }
505
 
506
  if ($batch_counter>0) {
@@ -1109,6 +1083,15 @@ class WPBackItUp_Backup {
1109
  return false;
1110
  }
1111
 
 
 
 
 
 
 
 
 
 
1112
  private function add_zip_suffix($batch_id,$zip_file_path){
1113
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
1114
 
15
  include_once 'class-filesystem.php';
16
  }
17
 
18
+ if( !class_exists( 'WPBackItUp_RecursiveFilterIterator' ) ) {
19
+ include_once 'class-recursivefilteriterator.php';
20
+ }
21
+
22
 
23
 
24
  class WPBackItUp_Backup {
37
  //scheduled,manual,none
38
  public $backup_type;
39
 
40
+ //private static $lockFileName;
41
+ // private static $lockFile;
42
 
43
 
44
  //-------------STATIC FUNCTIONS-------------------//
62
 
63
  $this->backup_type=$backup_type;
64
 
 
65
  $this->backup_name=$backup_name;
66
  //$this->backup_filename=$backup_name . '.tmp';
67
 
98
  $lockfile_logname='debug_lock';
99
 
100
  try {
 
 
101
 
102
+ //Locking handled in mutex now.
103
+ // self::$lockFileName = WPBACKITUP__PLUGIN_PATH .'logs/wpbackitup_lock.lock';
104
+ // WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Begin - Lock File:' . self::$lockFileName);
105
+ //
106
+ // self::$lockFile = fopen(self::$lockFileName ,"w"); // open it for WRITING ("w")
107
+ // if (flock( self::$lockFile, LOCK_EX | LOCK_NB)) {
108
+ // WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Process LOCK acquired');
109
  return true;
110
+ // } else {
111
+ // WPBackItUp_LoggerV2::log_info($lockfile_logname,__METHOD__,'Process LOCK failed');
112
+ // return false;
113
+ // }
114
 
115
  } catch(Exception $e) {
116
  WPBackItUp_LoggerV2::log_error($lockfile_logname,__METHOD__,'Process Lock error: ' .$e);
117
  return false;
118
  }
119
+
120
+
121
  }
122
 
123
  /**
128
  //WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin - Unlock File:' . $this->lockFileName);
129
 
130
  try{
131
+ //locking handled in mutex now
132
  //WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'LOCK released - backup ending');
133
+ //flock( self::$lockFile, LOCK_UN); // unlock the file
134
  return true;
135
 
136
  }catch(Exception $e) {
139
  }
140
  }
141
 
142
+ // /**
143
+ // * Check lock status
144
+ // * @return bool
145
+ // */
146
+ // public function check_lock_status (){
147
+ // //Check for 5 minutes then give up
148
+ // for ($i = 1; $i <= 100; $i++) {
149
+ // if ($this->start()){
150
+ // $this->end();
151
+ // return true;
152
+ // }
153
+ // else{
154
+ // sleep(3); //sleep for 3 seconds
155
+ // }
156
+ // }
157
+ // return false;
158
+ // }
159
+
160
+ // public function isScheduled(){
161
+ //
162
+ // return true;
163
+ // }
164
 
165
  public function cleanup_backups_by_prefix($prefix) {
166
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
176
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End' );
177
  }
178
 
179
+ /**
180
+ * Purge backups that don't have job control record
181
+ * - job control records are purged first so orphaned folders should be deleted.
182
+ *
183
+ */
184
+ public function purge_orphaned_backups() {
185
+ $log_name = 'debug_purge_folders';
186
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Begin' );
187
 
188
  // --PURGE BACKUP FOLDER
189
+ $folder_list = glob($this->backup_folder_root . '*', GLOB_ONLYDIR);
190
+ foreach ($folder_list as $key => $folder)
191
+ {
 
 
 
 
 
 
192
 
193
+ //Check for job control record
194
+ $folder_name_parts = explode('_',basename($folder));
195
+ $external_id = end($folder_name_parts);
196
+ $job_control_records = WPBackItUp_Job_v2::get_jobs_by_external_id(WPBackItUp_Job_v2::BACKUP,$external_id);
197
+
198
+ //If no jobs found then purge
199
+ if(false===$job_control_records){
200
+ if (file_exists($folder)) {
201
+ $file_system = new WPBackItUp_FileSystem($log_name);
202
+ if (true===$file_system->recursive_delete($folder)){
203
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Folder Deleted:'.$folder);
204
+ } else{
205
+ WPBackItUp_LoggerV2::log_error($log_name,__METHOD__,'Folder NOT Deleted:'.$folder);
206
+ }
207
+ }
208
+ }
209
+ }
210
 
211
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'End');
212
+ return true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  }
214
 
215
  public function cleanup_current_backup(){
252
  //Purge Zipped logs in logs older than 5 days
253
  $fileSystem->purge_files($logs_path,'*.zip',$this->backup_retained_days);
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
256
 
257
  }
389
  return $plugins_file_list;
390
  }
391
 
 
 
 
 
 
 
 
 
 
 
392
 
393
  public function create_job_control($job_id) {
394
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
441
  $batch_counter = 0;
442
  $total_counter=0;
443
  $directory_iterator=new RecursiveDirectoryIterator($root_path, 4096 | 8192 | RecursiveIteratorIterator::CATCH_GET_CHILD);
444
+ $filter = new WPBackItUp_RecursiveFilterIterator($directory_iterator,$exclude);
445
+ $item_iterator = new RecursiveIteratorIterator($filter,RecursiveIteratorIterator::SELF_FIRST);
446
 
447
  $datetime1 = new DateTime('now');
448
  $sql="";
449
  $db = new WPBackItUp_DataAccess();
450
 
451
+ foreach ($item_iterator as $file) {
452
  //Skip the item if its in the exclude array
453
  //This is a string compare starting in position 1
454
 
455
  //Fix the path to use backslash
456
+ $file_path = str_replace('\\', "/",$file->getSubPathname());
457
 
458
  //Remove special characters
459
  $file_path = esc_sql($file_path);
460
 
461
+
462
+ if ( $file->isFile()) {
463
+ if ($batch_counter>=$batch_insert_size){
464
+ WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, '*Try Write Batch*');
465
+ if (! $db->insert_job_items($sql)) {
466
+ return false;
 
 
 
 
 
 
467
  }
468
+ WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, '*Write Batch SUCCESS*');
469
+ $sql="";
470
+ $batch_counter=0;
 
 
471
  }
472
+ $total_counter++;
473
+ $batch_counter++;
474
+ $file_size=ceil($file->getSize()/1024);//round up
475
+ WPBackItUp_LoggerV2::log_info($inventory_logname,__METHOD__, 'Add File: ' .$batch_counter . ' ' .$file_path);
476
+ $sql.= "(".$job_id .", '" .$group_id."', '" .utf8_encode($file_path) ."', ".$file_size .",now() ),";
477
  }
 
478
  }
479
 
480
  if ($batch_counter>0) {
1083
  return false;
1084
  }
1085
 
1086
+ /**
1087
+ * Get Backup Type
1088
+ *
1089
+ * @return mixed
1090
+ */
1091
+ public function getBackupType() {
1092
+ return $this->backup_type;
1093
+ }
1094
+
1095
  private function add_zip_suffix($batch_id,$zip_file_path){
1096
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
1097
 
lib/includes/class-database.php CHANGED
@@ -154,6 +154,17 @@ class WPBackItUp_DataAccess {
154
  return $this->get_rows($sql_select);
155
  }
156
 
 
 
 
 
 
 
 
 
 
 
 
157
 
158
  /**
159
  *
@@ -288,9 +299,11 @@ class WPBackItUp_DataAccess {
288
  *
289
  * @param $job_id
290
  *
291
- * @return mixed
 
 
292
  */
293
- function delete_job_records($job_id){
294
  global $wpdb;
295
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
296
 
@@ -298,12 +311,13 @@ class WPBackItUp_DataAccess {
298
  "DELETE FROM $wpdb->wpbackitup_job
299
  WHERE
300
  job_id=%d
301
- ",$job_id);
 
302
 
303
  //If no deletes return false else # updated
304
  $sql_rtn = $this->query($sql_update);
305
  if (false=== $sql_rtn || $sql_rtn==0 ) return false;
306
- else return true;
307
 
308
  }
309
 
154
  return $this->get_rows($sql_select);
155
  }
156
 
157
+ /**
158
+ * Fetch a distinct list of job_ids from the job_item table
159
+ *
160
+ * @return mixed
161
+ */
162
+ public function get_job_item_job_list(){
163
+ global $wpdb;
164
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
165
+ $sql_select = "SELECT DISTINCT job_id FROM $wpdb->wpbackitup_job";
166
+ return $this->get_rows($sql_select);
167
+ }
168
 
169
  /**
170
  *
299
  *
300
  * @param $job_id
301
  *
302
+ * @param $limit limit the purge to this number
303
+ *
304
+ * @return mixed - return false on none or error, count on success
305
  */
306
+ function delete_job_items($job_id, $limit){
307
  global $wpdb;
308
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
309
 
311
  "DELETE FROM $wpdb->wpbackitup_job
312
  WHERE
313
  job_id=%d
314
+ LIMIT %d
315
+ ",$job_id,$limit);
316
 
317
  //If no deletes return false else # updated
318
  $sql_rtn = $this->query($sql_update);
319
  if (false=== $sql_rtn || $sql_rtn==0 ) return false;
320
+ else return $sql_rtn;
321
 
322
  }
323
 
lib/includes/class-filesystem.php CHANGED
@@ -48,35 +48,59 @@ class WPBackItUp_FileSystem {
48
  return true;
49
  }
50
 
 
 
 
 
 
 
 
 
 
51
  public function recursive_delete($dir, $ignore = array('') ){
52
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Recursively Delete: ' .$dir);
53
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Ignore:');
54
  WPBackItUp_LoggerV2::log($this->log_name,$ignore);
55
 
 
56
  if( is_dir($dir) ){
57
  //Make sure the folder is not in the ignore array
58
  if (!$this->delete_ignore($dir,$ignore)){
59
- if($dh = opendir($dir)) {
 
60
  while( ($file = readdir($dh)) !== false ) {
61
  if (!$this->delete_ignore($file,$ignore)) { //Check the file is not in the ignore array
62
  if(!is_dir($dir .'/'. $file)) {
63
- unlink($dir .'/'. $file); //delete the file
64
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'File Deleted:' .$dir .'/'. $file);
 
 
 
 
 
65
  } else {
66
  //This is a dir so delete the files first
67
- $this->recursive_delete($dir.'/'. $file, $ignore);
68
  }
69
  }
70
  }
 
 
 
71
  }
72
  //Remove the directory
73
- @rmdir($dir);
74
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Folder Deleted:' .$dir);
 
 
 
 
 
75
  closedir($dh);
76
  }
77
  }
78
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Recursive Delete Completed.');
79
- return true;
80
  }
81
 
82
  public function recursive_copy($dir, $target_path, $ignore = array('') ) {
@@ -311,48 +335,49 @@ class WPBackItUp_FileSystem {
311
  }
312
 
313
 
314
- /**
315
- * Purge the backups that exceed the retained number setting
316
- *
317
- * @param $path
318
- * @param $pattern
319
- * @param $retention_limit
320
- *
321
- * @return bool
322
- */
323
- public function purge_folders($path, $pattern, $retention_limit)
324
- {
325
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge folders retained number:' . $retention_limit);
326
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge folder path:' . $path);
327
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge pattern:' . $pattern);
328
-
329
- //Check Parms
330
- if (empty($path) || empty($pattern) || !is_numeric($retention_limit)){
331
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Invalid Parm values');
332
- return false;
333
- }
334
-
335
- $folder_list = glob($path . $pattern, GLOB_ONLYDIR);
336
-
337
- //Sort by Date Time so oldest is deleted first
338
- //usort($folder_list, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
339
-
340
- $backup_count=0;
341
- foreach (array_reverse($folder_list) as $key => $folder)
342
- {
343
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Folder:'.$folder);
344
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Folder Date Time:'.filemtime($folder));
345
-
346
- ++$backup_count;
347
- if($backup_count>$retention_limit){
348
- if (file_exists($folder)) {
349
- $this->recursive_delete($folder);
350
- }
351
- }
352
- }
353
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
354
- return true;
355
- }
 
356
 
357
  public function delete_files($file_list)
358
  {
48
  return true;
49
  }
50
 
51
+ /**
52
+ * Recursively delete a folder
53
+ * - does not stop on error but will return false if all files and folders could NOT be deleted
54
+ *
55
+ * @param $dir
56
+ * @param array $ignore
57
+ *
58
+ * @return bool false if all files and folders could NOT be deleted
59
+ */
60
  public function recursive_delete($dir, $ignore = array('') ){
61
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Recursively Delete: ' .$dir);
62
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Ignore:');
63
  WPBackItUp_LoggerV2::log($this->log_name,$ignore);
64
 
65
+ $success=true;
66
  if( is_dir($dir) ){
67
  //Make sure the folder is not in the ignore array
68
  if (!$this->delete_ignore($dir,$ignore)){
69
+ $dh = opendir($dir);
70
+ if(false!== $dh) {
71
  while( ($file = readdir($dh)) !== false ) {
72
  if (!$this->delete_ignore($file,$ignore)) { //Check the file is not in the ignore array
73
  if(!is_dir($dir .'/'. $file)) {
74
+ //delete the file
75
+ if (unlink($dir .'/'. $file)){
76
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'File Deleted:' .$dir .'/'. $file);
77
+ } else {
78
+ $success=false;
79
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'File NOT Deleted:' .$dir .'/'. $file);
80
+ }
81
  } else {
82
  //This is a dir so delete the files first
83
+ $success=$this->recursive_delete($dir.'/'. $file, $ignore);
84
  }
85
  }
86
  }
87
+ } else{
88
+ WPBackItUp_LoggerV2::log_error( $this->log_name, __METHOD__, 'Folder could not be opened:' . $dir );
89
+ $success=false;
90
  }
91
  //Remove the directory
92
+ if (true===rmdir($dir)){
93
+ WPBackItUp_LoggerV2::log_info( $this->log_name, __METHOD__, 'Folder Deleted:' . $dir );
94
+ } else{
95
+ WPBackItUp_LoggerV2::log_error( $this->log_name, __METHOD__, 'Folder could not be deleted:' . $dir );
96
+ $success=false;
97
+ }
98
+
99
  closedir($dh);
100
  }
101
  }
102
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Recursive Delete Completed:'.var_export($success,true));
103
+ return $success;
104
  }
105
 
106
  public function recursive_copy($dir, $target_path, $ignore = array('') ) {
335
  }
336
 
337
 
338
+ // /**
339
+ // * Purge the backups that exceed the retained number setting
340
+ // *
341
+ // * @param $path
342
+ // * @param $pattern
343
+ // * @param $retention_limit
344
+ // *
345
+ // * @return bool
346
+ // */
347
+ // public function purge_folders($path, $pattern, $retention_limit)
348
+ // {
349
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge folders retained number:' . $retention_limit);
350
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge folder path:' . $path);
351
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Purge pattern:' . $pattern);
352
+ //
353
+ // //Check Parms
354
+ // if (empty($path) || empty($pattern) || !is_numeric($retention_limit)){
355
+ // WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Invalid Parm values');
356
+ // return false;
357
+ // }
358
+ //
359
+ // $folder_list = glob($path . $pattern, GLOB_ONLYDIR);
360
+ //
361
+ // //Sort by Date Time so newest is on top of array
362
+ // usort($folder_list, create_function('$a,$b', 'return filemtime($a)>filemtime($b);'));
363
+ //
364
+ //
365
+ // $backup_count=0;
366
+ // foreach (array_reverse($folder_list) as $key => $folder)
367
+ // {
368
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Folder:'.$folder);
369
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Folder Date Time:'. date("F d Y H:i:s", filemtime($folder)));
370
+ //
371
+ // ++$backup_count;
372
+ // if($backup_count>$retention_limit){
373
+ // if (file_exists($folder)) {
374
+ // $this->recursive_delete($folder);
375
+ // }
376
+ // }
377
+ // }
378
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
379
+ // return true;
380
+ // }
381
 
382
  public function delete_files($file_list)
383
  {
lib/includes/class-job-v2.php CHANGED
@@ -24,10 +24,10 @@ if( !class_exists( 'WPBackItUp_DataAccess' ) ) {
24
  }
25
 
26
 
27
-
28
  class WPBackItUp_Job_v2 {
29
 
30
  const JOB_TITLE='wpbackitup_job';
 
31
 
32
  //Status values
33
  const ERROR = 'error';
@@ -36,14 +36,31 @@ class WPBackItUp_Job_v2 {
36
  const CANCELLED='cancelled';
37
  const QUEUED = 'queued';
38
  const RESUME = 'resume';
39
-
40
- private $log_name;
41
- private $job_id; //post ID
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  private $instance_id;
43
  private $allocated_task;
44
 
45
- private $job_start_time;
46
- private $job_end_time;
 
 
 
47
 
48
  private $lockFile;
49
  private $lockFilePath;
@@ -53,27 +70,73 @@ class WPBackItUp_Job_v2 {
53
  private $job_info; //getter
54
 
55
  public $job_status;
56
- public $backup_id;
57
 
58
- private function __construct($job) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  try {
60
- $this->log_name = 'debug_jobV2';//default log name
61
 
62
  //Load of the class properties from the post object(see wp_post)
63
- $this->job_id=$job->ID;
 
 
 
 
 
 
 
64
  $this->instance_id=time();
65
- $this->job_status=$job->post_status;
66
- $this->backup_id=$job->post_name;
67
 
68
- //empty array if no job info
69
- $this->job_info = get_post_meta($this->job_id,'job_info',true);
70
 
71
  //Deserialize content
72
- $content = $job->post_content;
73
  if (!empty($content)){
74
- $job_info =maybe_unserialize($content);
75
- if (is_array($job_info)){
76
- $this->job_start_time=$job_info['start_time'];
 
 
 
 
77
  }
78
  }
79
 
@@ -85,7 +148,13 @@ class WPBackItUp_Job_v2 {
85
 
86
  function __destruct() {
87
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
88
- $this->release_lock();
 
 
 
 
 
 
89
  }
90
 
91
  /**
@@ -129,7 +198,7 @@ class WPBackItUp_Job_v2 {
129
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
130
 
131
  try{
132
-
133
  if (null!=$this->mutex) {
134
  $this->mutex->releaseLock();
135
  $this->mutex = null;
@@ -641,7 +710,10 @@ class WPBackItUp_Job_v2 {
641
  private function set_job_start_time() {
642
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
643
 
644
- $this->job_start_time= time();
 
 
 
645
  $job_info = array(
646
  'start_time' => $this->job_start_time,
647
  );
@@ -696,173 +768,328 @@ class WPBackItUp_Job_v2 {
696
 
697
  }
698
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
  /**---------STATICS---------***/
700
 
701
  /**
702
- * Is there at least 1 job queued or active?
703
  *
704
- * @param $job_name
705
  *
706
  * @return bool
707
  */
708
- public static function is_job_queued($job_name) {
709
- $job_logname='debug_job';
710
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Check Job Queue:' . $job_name);
711
 
712
  //Get top 1
713
  $args = array(
714
  'posts_per_page' => 1,
715
- 'post_type' => $job_name,
716
  'post_status' => array(self::QUEUED,self::ACTIVE),
717
  'orderby' => 'post_date',
718
  'order' => 'ASC',
719
  'suppress_filters' => true
720
  );
721
  $jobs = get_posts( $args );
722
- WPBackItUp_LoggerV2::log($job_logname,$jobs);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
 
724
  if (is_array($jobs) && count($jobs)>0) {
725
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Jobs found:' . count($jobs) );
726
  return true;
727
  }
728
 
729
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found:' . $job_name);
730
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
731
  return false;
732
  }
733
 
734
  /**
735
  * get completed jobs
736
- * - complete, cancelled, error
737
  *
738
- * @param $job_name
739
- //* @param int $count
740
  *
741
  * @return bool
742
  */
743
- public static function get_completed_jobs($job_name) {
744
- $job_logname='debug_job';
745
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
746
 
747
  $args = array(
748
  'posts_per_page' => -1,
749
- 'post_type' => $job_name,
750
- 'post_status' => array(self::COMPLETE,self::CANCELLED,self::ERROR),
751
- 'orderby' => 'post_date',
752
  'order' => 'DESC',
753
  'suppress_filters' => true
754
  );
755
- $jobs = get_posts( $args );
756
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Jobs found:' . count($jobs));
757
 
758
- if (is_array($jobs) && count($jobs)>0) {
759
- return $jobs;
 
 
 
760
  }
761
 
762
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found:' . $job_name);
763
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
764
- return false;
765
  }
766
 
767
  /**
768
- * Cancel all queued or active jobs by job_name
769
  *
770
- * @param $job_name
771
  *
772
  * @return bool
773
  */
774
- public static function cancel_all_jobs($job_name) {
775
- $job_logname='debug_job';
776
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Cancel all jobs:'.$job_name);
777
 
778
- while (self::is_job_queued($job_name)){
779
- $job = self::get_current_job($job_name);
780
  if (false!== $job) {
781
  $job->set_job_status_cancelled();
782
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job Cancelled:' . $job->get_job_id());
783
  }
784
  }
785
 
786
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End - All jobs cancelled');
787
  }
788
 
789
  /**
790
- * purge completed jobs
791
- * - complete, cancelled, error
792
  *
793
- * @param $job_name *
794
  *
795
  * @param int $dont_purge - dont purge this many
796
  *
797
  * @return int
798
- * @internal param int $count
799
  */
800
- public static function purge_completed_jobs($job_name,$dont_purge=10) {
801
- $job_logname='debug_job';
802
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Purge Jobs.');
803
 
804
  $jobs_purged=0;
805
- $jobs = self::get_completed_jobs($job_name);
806
- if ($jobs){
807
- $job_count = count($jobs);
808
 
809
- //if ALL delete them all
810
- if ($dont_purge=='ALL'){
811
- $start=0;
812
- }else{
813
- $start=$dont_purge;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  }
 
 
815
 
816
- $purge_count=$job_count-$dont_purge;
817
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Jobs to be purged:' .$purge_count);
818
- //Leave the last n and purge the remaining
819
- for ($i = $start; $i < $job_count; $i++) {
820
- $job= $jobs[$i];
821
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Delete Job:'.$i .':' .$job->ID .':' .$job->post_name .':' .$job->post_type .":" .$job->post_title .':' .$job->post_date);
822
 
823
- //delete job records
824
- $job_id=$job->post_name;
825
- $db = new WPBackItUp_DataAccess();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826
 
827
- if ($db->delete_job_records($job_id)){
828
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job records purged.');
829
  }else {
830
- WPBackItUp_LoggerV2::log_error($job_logname,__METHOD__,'Job records NOT purged.');
831
  }
832
 
833
- wp_delete_post( $job->ID, true );
834
- $jobs_purged+=1;
 
 
 
 
 
 
 
 
 
835
  }
836
  }
837
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End - job purge complete:' .$jobs_purged);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
838
  return $jobs_purged;
839
  }
840
 
841
  /**
842
- * Gets the queued or active job on top of the stack
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
843
  * - set status to active
844
  *
845
- * @param $job_name
846
  *
847
- * @return bool|WPBackItUp_Job
848
  */
849
- public static function get_current_job($job_name) {
850
- $job_logname='debug_job';
851
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Job Name: ' .$job_name);
852
 
853
  //Get backup on top
854
  $args = array(
855
  'posts_per_page' => 1,
856
- 'post_type' => $job_name,
857
  'post_status' => array(self::QUEUED,self::ACTIVE),
858
  'orderby' => 'post_date',
859
  'order' => 'ASC',
860
  );
861
  $jobs = get_posts( $args );
862
- WPBackItUp_LoggerV2::log($job_logname,$jobs);
863
 
864
  if (is_array($jobs) && count($jobs)>0) {
865
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job found:' . count($jobs));
866
 
867
  $backup_job = new WPBackItUp_Job_v2($jobs[0]);
868
  if (self::QUEUED==$backup_job->job_status){
@@ -871,8 +1098,8 @@ class WPBackItUp_Job_v2 {
871
  return $backup_job;
872
  }
873
 
874
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found.');
875
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
876
  return false;
877
  }
878
 
@@ -881,64 +1108,234 @@ class WPBackItUp_Job_v2 {
881
  *
882
  * @param $id
883
  *
884
- * @return bool|WPBackItUp_Job
885
  */
886
  public static function get_job_by_id($id) {
887
- $job_logname='debug_job';
888
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
889
 
890
  $job = get_post( $id, 'OBJECT');
891
- WPBackItUp_LoggerV2::log($job_logname,$job);
892
 
893
  if (null!=$job) {
894
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job found:' .$id);
895
  return new WPBackItUp_Job_v2($job);
896
  }
897
 
898
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No job found with id.' . $id);
899
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
900
  return false;
901
  }
902
 
903
  /**
904
- * Queue a job
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
905
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
  * @param $job_name
 
907
  *
908
- * @param $tasks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
909
  *
 
 
 
 
910
  * @param null $job_info
911
  *
912
- * @return bool|WPBackItUp_Job
913
  */
914
- public static function queue_job($job_name,$tasks,$job_info=null){
915
- $job_logname='debug_job';
916
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Job:'. $job_name);
917
 
918
  $new_job = array(
919
- 'post_title' => self::JOB_TITLE,
920
- 'post_name' => time(),
921
  'post_status' => self::QUEUED,
922
- 'post_type' => $job_name
923
  );
924
 
925
  // Insert the post into the database
926
  $job_id = wp_insert_post($new_job );
927
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job Created:' .$job_id);
928
 
929
- //Add job info is available
930
  if (null!= $job_info){
931
  update_post_meta($job_id, 'job_info',$job_info);
932
  }
933
 
934
  //add the tasks
935
  if ( false === self::create_tasks( $job_id,$tasks ) ) {
936
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job tasks not Created - deleting job:' . $job_id );
937
  wp_delete_post( $job_id, true );
938
  return false;
939
  }
940
 
941
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  return self::get_job_by_id($job_id);
943
  }
944
 
@@ -952,8 +1349,7 @@ class WPBackItUp_Job_v2 {
952
  * @return bool
953
  */
954
  private static function create_tasks($job_id, $tasks){
955
- $job_logname='debug_job';
956
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
957
 
958
  //Create the job tasks
959
  $last_updated_time=time();
@@ -968,13 +1364,13 @@ class WPBackItUp_Job_v2 {
968
  $task_created = update_post_meta( $job_id, $task_name, $task_data );
969
 
970
  if (false===$task_created){
971
- WPBackItUp_LoggerV2::log_error($job_logname,__METHOD__,'Tasks NOT created');
972
  return false;
973
  }
974
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'task created:' . $task_created .':'. $task_name);
975
  }
976
 
977
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
978
  return true;
979
 
980
  }
@@ -997,7 +1393,7 @@ class WPBackItUp_Job_v2 {
997
  * Get Job status
998
  * @return mixed
999
  */
1000
- public function get_job_status() {
1001
  return $this->job_status;
1002
  }
1003
 
@@ -1005,7 +1401,7 @@ class WPBackItUp_Job_v2 {
1005
  * Get job id
1006
  * @return mixed
1007
  */
1008
- public function get_job_id() {
1009
  return $this->job_id;
1010
  }
1011
 
@@ -1037,5 +1433,52 @@ class WPBackItUp_Job_v2 {
1037
  return $job_info;
1038
  }
1039
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1040
  }
1041
 
24
  }
25
 
26
 
 
27
  class WPBackItUp_Job_v2 {
28
 
29
  const JOB_TITLE='wpbackitup_job';
30
+ const DEFAULT_LOG_NAME='debug_jobV2';
31
 
32
  //Status values
33
  const ERROR = 'error';
36
  const CANCELLED='cancelled';
37
  const QUEUED = 'queued';
38
  const RESUME = 'resume';
39
+ const DELETED = 'deleted';
40
+
41
+ //Job types
42
+ const BACKUP = 'backup';
43
+ const RESTORE = 'restore';
44
+ const CLEANUP = 'cleanup';
45
+
46
+ //Job run type
47
+ const SCHEDULED = 'scheduled';
48
+ const MANUAL = 'manual';
49
+
50
+ //Properties
51
+ private $job_id; //Internal Id
52
+ private $job_name;
53
+ private $external_id; //External Unique Id
54
+ private $job_date;
55
+ private $job_type;
56
  private $instance_id;
57
  private $allocated_task;
58
 
59
+
60
+ private $log_name;
61
+
62
+ private $job_start_time=null;
63
+ private $job_end_time=null;
64
 
65
  private $lockFile;
66
  private $lockFilePath;
70
  private $job_info; //getter
71
 
72
  public $job_status;
 
73
 
74
+ // ** JOB TASK CONSTANTS **
75
+ // Task can be defined outside this class.
76
+ // These are added here because they are core tasks
77
+
78
+ //Backup Tasks
79
+ public static $BACKUP_TASKS = array(
80
+ 'task_preparing',
81
+ 'task_inventory_plugins',
82
+ 'task_inventory_themes',
83
+ 'task_inventory_uploads',
84
+ 'task_inventory_others',
85
+ 'task_backup_db' ,
86
+ 'task_backup_siteinfo',
87
+ 'task_backup_themes',
88
+ 'task_backup_plugins',
89
+ 'task_backup_uploads',
90
+ 'task_backup_other',
91
+ 'task_validate_backup',
92
+ 'task_finalize_backup',
93
+ );
94
+
95
+ public static $RESTORE_TASKS = array(
96
+ 'task_preparing',
97
+ 'task_unzip_backup_set',
98
+ 'task_validate_backup',
99
+ 'task_create_checkpoint',
100
+ 'task_stage_wpcontent',
101
+ 'task_restore_wpcontent',
102
+ 'task_restore_database',
103
+ );
104
+
105
+ public static $CLEANUP_TASKS = array(
106
+ 'task_scheduled_cleanup'
107
+ );
108
+
109
+ // ** END JOB TASK CONSTANTS **
110
+
111
+ private function __construct($post) {
112
  try {
113
+ $this->log_name = self::DEFAULT_LOG_NAME;//default log name
114
 
115
  //Load of the class properties from the post object(see wp_post)
116
+ $this->job_id=$post->ID;
117
+ $this->job_name=$post->post_title;
118
+ $this->job_date=$post->post_date;
119
+
120
+ //strip off the namespace
121
+ $post_type_array = explode("_", $post->post_type);
122
+ $this->job_type=end($post_type_array);
123
+
124
  $this->instance_id=time();
125
+ $this->job_status=$post->post_status;
126
+ $this->external_id=$post->post_name;
127
 
128
+ $this->job_info = get_post_meta($this->job_id,'job_info',true);//empty array if no job info
 
129
 
130
  //Deserialize content
131
+ $content = $post->post_content;
132
  if (!empty($content)){
133
+ $job_properties =maybe_unserialize($content);
134
+ if (is_array($job_properties)){
135
+ if (array_key_exists('start_time',$job_properties))
136
+ $this->job_start_time=$job_properties['start_time'];
137
+
138
+ if (array_key_exists('end_time',$job_properties))
139
+ $this->job_end_time=$job_properties['end_time'];
140
  }
141
  }
142
 
148
 
149
  function __destruct() {
150
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
151
+
152
+ //Release lock
153
+ if (true===$this->locked){
154
+ $this->release_lock();
155
+ }
156
+
157
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
158
  }
159
 
160
  /**
198
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
199
 
200
  try{
201
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Mutex:'.var_export($this->mutex,true));
202
  if (null!=$this->mutex) {
203
  $this->mutex->releaseLock();
204
  $this->mutex = null;
710
  private function set_job_start_time() {
711
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
712
 
713
+ if($this->job_start_time == null) {
714
+ $this->job_start_time= time();
715
+ }
716
+
717
  $job_info = array(
718
  'start_time' => $this->job_start_time,
719
  );
768
 
769
  }
770
 
771
+ /**----- private helpers ----***/
772
+ private static function get_post_type_name($post_type){
773
+
774
+ if (is_array($post_type)){
775
+
776
+ // add a prefix to all in array
777
+ foreach ($post_type as &$value) {
778
+ $value = WPBACKITUP__NAMESPACE.'_'.$value;
779
+ }
780
+
781
+ } else {
782
+ $post_type = WPBACKITUP__NAMESPACE.'_'.$post_type;
783
+ }
784
+
785
+ return $post_type;
786
+ }
787
+
788
+
789
  /**---------STATICS---------***/
790
 
791
  /**
792
+ * Is there at least 1 job queued or active for job type?
793
  *
794
+ * @param $job_type
795
  *
796
  * @return bool
797
  */
798
+ public static function is_job_queued($job_type) {
799
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Check Job Queue:' . $job_type);
 
800
 
801
  //Get top 1
802
  $args = array(
803
  'posts_per_page' => 1,
804
+ 'post_type' => self::get_post_type_name($job_type),
805
  'post_status' => array(self::QUEUED,self::ACTIVE),
806
  'orderby' => 'post_date',
807
  'order' => 'ASC',
808
  'suppress_filters' => true
809
  );
810
  $jobs = get_posts( $args );
811
+ WPBackItUp_LoggerV2::log(self::DEFAULT_LOG_NAME,$jobs);
812
+
813
+ if (is_array($jobs) && count($jobs)>0) {
814
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Jobs found:' . count($jobs) );
815
+ return true;
816
+ }
817
+
818
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'No jobs found:' . $job_type);
819
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
820
+ return false;
821
+ }
822
+
823
+ /**
824
+ * Is there at least 1 job queued or active?
825
+ *
826
+ * @return bool
827
+ */
828
+ public static function is_any_job_queued() {
829
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Check Job Queue');
830
+
831
+ //Get top 1
832
+ $args = array(
833
+ 'post_type' => self::get_post_type_name(array(self::BACKUP,self::RESTORE,self::CLEANUP)),
834
+ 'posts_per_page' => 1,
835
+ 'post_status' => array(self::QUEUED,self::ACTIVE),
836
+ 'suppress_filters' => true
837
+ );
838
+ $jobs = get_posts( $args );
839
+ WPBackItUp_LoggerV2::log(self::DEFAULT_LOG_NAME,$jobs);
840
 
841
  if (is_array($jobs) && count($jobs)>0) {
842
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Jobs found:' . count($jobs) );
843
  return true;
844
  }
845
 
846
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'No jobs found');
847
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
848
  return false;
849
  }
850
 
851
  /**
852
  * get completed jobs
853
+ * - complete, cancelled, error, deleted
854
  *
855
+ * @param $job_type
 
856
  *
857
  * @return bool
858
  */
859
+ public static function get_finished_jobs_by_type($job_type) {
860
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin');
 
861
 
862
  $args = array(
863
  'posts_per_page' => -1,
864
+ 'post_type' => self::get_post_type_name($job_type),
865
+ 'post_status' => array(self::COMPLETE,self::CANCELLED,self::ERROR, self::DELETED),
866
+ 'orderby' => 'post_date', //DO NOT CHANGE SORT
867
  'order' => 'DESC',
868
  'suppress_filters' => true
869
  );
870
+ $posts = get_posts( $args );
871
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Jobs found:' . count($posts));
872
 
873
+ $jobs = array();
874
+ if (is_array($posts) && count($posts)>0) {
875
+ foreach ( $posts as $post ) {
876
+ array_push( $jobs, new WPBackItUp_Job_v2( $post ) );
877
+ }
878
  }
879
 
880
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
881
+ return count( $jobs ) > 0 ? $jobs : false;
 
882
  }
883
 
884
  /**
885
+ * Cancel all queued or active jobs by job_type
886
  *
887
+ * @param $job_type
888
  *
889
  * @return bool
890
  */
891
+ public static function cancel_all_jobs($job_type) {
892
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Cancel all jobs:'.$job_type);
 
893
 
894
+ while (self::is_job_queued($job_type)){
895
+ $job = self::get_current_job($job_type);
896
  if (false!== $job) {
897
  $job->set_job_status_cancelled();
898
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job Cancelled:' . $job->getJobId());
899
  }
900
  }
901
 
902
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End - All jobs cancelled');
903
  }
904
 
905
  /**
906
+ * purge job control records by job type
907
+ * - complete, cancelled, error, deleted
908
  *
909
+ * @param $job_type *
910
  *
911
  * @param int $dont_purge - dont purge this many
912
  *
913
  * @return int
 
914
  */
915
+ public static function purge_job_control($job_type,$dont_purge=5) {
916
+ $log_name='debug_purge_job_control';
917
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Begin - Purge Jobs:'.$job_type );
918
 
919
  $jobs_purged=0;
 
 
 
920
 
921
+ //Get all the finished jobs: complete, cancelled, error, deleted
922
+ $jobs = self::get_finished_jobs_by_type($job_type);
923
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Total finished jobs found:' .count($jobs));
924
+
925
+ /* Delete everything but the successfully completed jobs */
926
+ if( $jobs ) {
927
+ foreach ($jobs as $key=>$job){
928
+ //Skip completed
929
+ if(self::COMPLETE === $job->getJobStatus()) {
930
+ continue;
931
+ }
932
+
933
+ //delete post and post meta
934
+ wp_delete_post( $job->getJobId(), true );
935
+ unset($jobs[$key]); //pop this element off the array
936
+ $jobs_purged+=1;
937
+
938
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Deleted Job:');
939
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($job,true));
940
  }
941
+ }
942
+ /*------------------------------------------------------*/
943
 
944
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Remaining Jobs after purging NOT complete status:' .count($jobs));
 
 
 
 
 
945
 
946
+ /* Check all remaining to make sure there is a backup folder associated with each */
947
+ if (is_array($jobs) && count($jobs)>0) {
948
+ foreach ($jobs as $key=>$job){
949
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($job,true));
950
+
951
+ $backups_exist = true; //default to true
952
+
953
+ //get the backup zips
954
+ $zip_files = $job->get_job_meta('backup_zip_files');
955
+ if(is_array($zip_files) && count($zip_files)>0) {
956
+ //check for each file
957
+ foreach ($zip_files as $zip_file_path){
958
+ //error_log($zip_file_path);
959
+ //if any file doesnt exist break out
960
+ if (! file_exists($zip_file_path)) {
961
+ $backups_exist=false;
962
+ break;
963
+ }
964
+ }
965
 
 
 
966
  }else {
967
+ $backups_exist=false;
968
  }
969
 
970
+ //Delete the job control if backups dont exist
971
+ if (false===$backups_exist) {
972
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'No backups found for job:'. $job->getJobId());
973
+
974
+ wp_delete_post( $job->getJobId(), true );
975
+ unset($jobs[$key]); //pop this element off the array
976
+ $jobs_purged+=1;
977
+
978
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Backups Missing - Deleted Job:');
979
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($job,true));
980
+ }
981
  }
982
  }
983
+
984
+ /*------------------------------------------------------*/
985
+
986
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Remaining Jobs After File Check:' .count($jobs));
987
+
988
+ //Now purge the ones that exceed the retention limit
989
+ if (is_array($jobs) && count($jobs)>0) {
990
+
991
+ //if ALL delete them all
992
+ if ('ALL'==$dont_purge){
993
+ $purge_jobs = $jobs;
994
+ }else{
995
+ //Leave the last n and purge the remaining
996
+ $purge_jobs = array_slice( $jobs, $dont_purge);
997
+ }
998
+
999
+ $purge_count=count($purge_jobs);
1000
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Jobs to be purged:' .$purge_count);
1001
+ if ($purge_count>0){
1002
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($jobs,true));
1003
+ foreach ($purge_jobs as $key=>$job){
1004
+
1005
+ wp_delete_post( $job->getJobId(), true );
1006
+ unset($jobs[$key]); //pop this element off the array
1007
+ $jobs_purged+=1;
1008
+
1009
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Deleted Job:');
1010
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($job,true));
1011
+ }
1012
+ }
1013
+
1014
+ }
1015
+
1016
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'End - job purge complete. Jobs Purged:' .$jobs_purged);
1017
+
1018
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Jobs Remaining after ALL Purges complete:' .count($job));
1019
+
1020
  return $jobs_purged;
1021
  }
1022
 
1023
  /**
1024
+ * purge orphaned job item records by wpbackitup_job items
1025
+ *
1026
+ * @param $job_type *
1027
+ *
1028
+ * @param int $limit limit the items purged to this number
1029
+ *
1030
+ * @return int
1031
+ */
1032
+ public static function purge_orphaned_job_items($job_type,$limit=10000) {
1033
+ $log_name='debug_purge_job_items';
1034
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Begin: ' .$job_type);
1035
+
1036
+ //get all the job ids in the item table.
1037
+ $db = new WPBackItUp_DataAccess();
1038
+ $job_item_list=$db->get_job_item_job_list();
1039
+ WPBackItUp_LoggerV2::log_info( $log_name, __METHOD__, 'Job ids found:' .var_export($job_item_list,true));
1040
+
1041
+ $total_purged_recs=0; //default to 0
1042
+ foreach ($job_item_list as $job) {
1043
+ //does this job have a batch control record
1044
+ $job_control_records = self::get_jobs_by_external_id( WPBackItUp_Job_v2::BACKUP, $job->job_id );
1045
+ WPBackItUp_LoggerV2::log_info( $log_name, __METHOD__, 'Job ID:' .$job->job_id);
1046
+ WPBackItUp_LoggerV2::log_info( $log_name, __METHOD__, 'Job controls found:' .var_export($job_control_records,true));
1047
+
1048
+ //If no jobs found then purge
1049
+ if ( false === $job_control_records ) {
1050
+ $db = new WPBackItUp_DataAccess();
1051
+ $purged_recs = $db->delete_job_items( $job->job_id, $limit );
1052
+ if ( false === $purged_recs ) {
1053
+ //Error happened but keep on going
1054
+ WPBackItUp_LoggerV2::log_error( $log_name, __METHOD__, sprintf('Job Items NOT Deleted:%s', $job->job_id ));
1055
+ } else {
1056
+ WPBackItUp_LoggerV2::log_info( $log_name, __METHOD__, sprintf('(%s)Job items Deleted:%s' , $purged_recs,$job->job_id ));
1057
+ $total_purged_recs+=$purged_recs;
1058
+ }
1059
+ }
1060
+
1061
+ //if you hit the limit then get out
1062
+ if ($total_purged_recs>=$limit) break;
1063
+ }
1064
+
1065
+ WPBackItUp_LoggerV2::log_info( $log_name, __METHOD__, 'Total Job items purged:' .$total_purged_recs);
1066
+ return $total_purged_recs;
1067
+ }
1068
+
1069
+ /**
1070
+ * * Gets the queued or active job on top of the stack
1071
  * - set status to active
1072
  *
1073
+ * @param $job_type
1074
  *
1075
+ * @return bool|WPBackItUp_Job_v2
1076
  */
1077
+ public static function get_current_job($job_type) {
1078
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Job Name: ' .$job_type);
 
1079
 
1080
  //Get backup on top
1081
  $args = array(
1082
  'posts_per_page' => 1,
1083
+ 'post_type' => self::get_post_type_name($job_type),
1084
  'post_status' => array(self::QUEUED,self::ACTIVE),
1085
  'orderby' => 'post_date',
1086
  'order' => 'ASC',
1087
  );
1088
  $jobs = get_posts( $args );
1089
+ WPBackItUp_LoggerV2::log(self::DEFAULT_LOG_NAME,$jobs);
1090
 
1091
  if (is_array($jobs) && count($jobs)>0) {
1092
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job found:' . count($jobs));
1093
 
1094
  $backup_job = new WPBackItUp_Job_v2($jobs[0]);
1095
  if (self::QUEUED==$backup_job->job_status){
1098
  return $backup_job;
1099
  }
1100
 
1101
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'No jobs found.');
1102
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1103
  return false;
1104
  }
1105
 
1108
  *
1109
  * @param $id
1110
  *
1111
+ * @return bool|WPBackItUp_Job_v2
1112
  */
1113
  public static function get_job_by_id($id) {
1114
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin');
 
1115
 
1116
  $job = get_post( $id, 'OBJECT');
1117
+ WPBackItUp_LoggerV2::log(self::DEFAULT_LOG_NAME,$job);
1118
 
1119
  if (null!=$job) {
1120
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job found:' .$id);
1121
  return new WPBackItUp_Job_v2($job);
1122
  }
1123
 
1124
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'No job found with id.' . $id);
1125
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1126
  return false;
1127
  }
1128
 
1129
  /**
1130
+ * get jobs by type and status
1131
+ *
1132
+ * @param $job_type
1133
+ * @param $job_status
1134
+ *
1135
+ * @param $count Number of jobs in results, -1 for all
1136
+ *
1137
+ * @return mixed Array of jobs or false when no jobs found
1138
+ */
1139
+ public static function get_jobs_by_status($job_type,$job_status, $count) {
1140
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin');
1141
+
1142
+ $args = array(
1143
+ 'posts_per_page' => $count,
1144
+ 'post_type' => self::get_post_type_name($job_type),
1145
+ 'post_status' => $job_status,
1146
+ 'orderby' => 'post_date',
1147
+ 'order' => 'DESC',
1148
+ 'suppress_filters' => true
1149
+ );
1150
+ $posts = get_posts( $args );
1151
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Jobs found:' . count($posts));
1152
+
1153
+ $jobs = array();
1154
+ if (is_array($posts) && count($posts)>0) {
1155
+ foreach($posts as $post) {
1156
+ array_push($jobs, new WPBackItUp_Job_v2( $post ));
1157
+ }
1158
+ }
1159
+
1160
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1161
+ return count( $jobs ) > 0 ? $jobs : false;
1162
+ }
1163
+
1164
+ /**
1165
+ * Gets a jobs by tpe and external id
1166
  *
1167
+ * @param $job_type
1168
+ * @param $external_id
1169
+ *
1170
+ * @return bool|WPBackItUp_Job_v2 - Returns top 10
1171
+ */
1172
+ public static function get_jobs_by_external_id($job_type,$external_id) {
1173
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,sprintf('Begin:%s-%s',$job_type,$external_id));
1174
+
1175
+ $args = array(
1176
+ 'posts_per_page' => -1,
1177
+ 'post_type' => self::get_post_type_name($job_type),
1178
+ 'post_status' => self::COMPLETE,
1179
+ 'name' => $external_id, //'Dont use post_name
1180
+ 'suppress_filters' => true,
1181
+ );
1182
+
1183
+ $query = new WP_Query($args);
1184
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Query:' .var_export($query,true));
1185
+
1186
+ $jobs = array();
1187
+ if($query->have_posts()){
1188
+ $posts = $query->get_posts();
1189
+ foreach($posts as $post) {
1190
+ array_push($jobs, new WPBackItUp_Job_v2( $post ));
1191
+ }
1192
+ }
1193
+
1194
+ wp_reset_postdata();
1195
+
1196
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1197
+ return count( $jobs ) > 0 ? $jobs : false;
1198
+ }
1199
+
1200
+ /**
1201
+ * Get jobs by type and job name and status
1202
+ *
1203
+ * @param $job_type
1204
  * @param $job_name
1205
+ * @param $job_status
1206
  *
1207
+ * @return array|bool Returns jobs or false when none found
1208
+ */
1209
+ public static function get_jobs_by_job_name($job_type,$job_name, $job_status) {
1210
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,sprintf('Begin:%s-%s',$job_type,$job_name));
1211
+
1212
+ //No search by title on wp_query so must first search for ID's then query
1213
+ global $wpdb;
1214
+ $query = $wpdb->prepare( "select ID from {$wpdb->posts} where post_title = %s", $job_name );
1215
+ $post_ids = $wpdb->get_col($query);
1216
+
1217
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,sprintf('Post Ids:%s',var_export($post_ids,true)));
1218
+ if ( empty( $post_ids ) ) return false; //If none found return false
1219
+
1220
+ $args = array (
1221
+ 'posts_per_page' => -1,
1222
+ 'post_type' => self::get_post_type_name($job_type),
1223
+ 'post_status' => $job_status,
1224
+ 'post__in' => $post_ids,
1225
+ 'suppress_filters' => true,
1226
+ );
1227
+
1228
+ $query = new WP_Query($args);
1229
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Query:' .var_export($query,true));
1230
+
1231
+ $jobs = array();
1232
+ if($query->have_posts()){
1233
+ $posts = $query->get_posts();
1234
+ foreach($posts as $post) {
1235
+ array_push($jobs, new WPBackItUp_Job_v2( $post ));
1236
+ }
1237
+ }
1238
+
1239
+ wp_reset_postdata();
1240
+
1241
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1242
+ return count( $jobs ) > 0 ? $jobs : false;
1243
+ }
1244
+
1245
+
1246
+ /**
1247
+ * Queue a job
1248
  *
1249
+ * @param $job_name
1250
+ * @param $job_external_id
1251
+ * @param $job_type
1252
+ * @param $tasks
1253
  * @param null $job_info
1254
  *
1255
+ * @return bool|WPBackItUp_Job_v2
1256
  */
1257
+ public static function queue_job($job_name, $job_external_id,$job_type,$tasks,$job_info=null){
1258
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Job:'. $job_type);
 
1259
 
1260
  $new_job = array(
1261
+ 'post_title' => $job_name,
1262
+ 'post_name' => $job_external_id,
1263
  'post_status' => self::QUEUED,
1264
+ 'post_type' => self::get_post_type_name($job_type),
1265
  );
1266
 
1267
  // Insert the post into the database
1268
  $job_id = wp_insert_post($new_job );
1269
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job Created:' .$job_id);
1270
 
1271
+ //Add job info if available
1272
  if (null!= $job_info){
1273
  update_post_meta($job_id, 'job_info',$job_info);
1274
  }
1275
 
1276
  //add the tasks
1277
  if ( false === self::create_tasks( $job_id,$tasks ) ) {
1278
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job tasks not Created - deleting job:' . $job_id );
1279
  wp_delete_post( $job_id, true );
1280
  return false;
1281
  }
1282
 
1283
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1284
+ return self::get_job_by_id($job_id);
1285
+ }
1286
+
1287
+ /**
1288
+ * Import a completed
1289
+ *
1290
+ * @param $job_name
1291
+ * @param $job_external_id
1292
+ * @param $job_type
1293
+ * @param $job_date
1294
+ * @param null $job_info
1295
+ *
1296
+ * @return bool|WPBackItUp_Job_v2
1297
+ */
1298
+ public static function import_completed_job($job_name, $job_external_id,$job_type,$job_date,$job_info=null){
1299
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin - Job:'. $job_type);
1300
+
1301
+ //default date to now
1302
+ $post_date = date( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
1303
+
1304
+ $timestamp = strtotime($job_date);
1305
+ if (false!==$timestamp){
1306
+ $post_date = date('Y-m-d H:i:s',$timestamp);
1307
+ }else{
1308
+ //try stripping out the dashes
1309
+ $timestamp = strtotime(str_replace('-','',$job_date));
1310
+ if (false!==$timestamp){
1311
+ $post_date = date('Y-m-d H:i:s',$timestamp);
1312
+ }else{
1313
+ //try unix timestamp
1314
+ $timestamp = strtotime(sprintf('@%s',$job_date));
1315
+ if (false!==$timestamp) {
1316
+ $post_date = date( 'Y-m-d H:i:s', $timestamp );
1317
+ }
1318
+ }
1319
+ }
1320
+
1321
+ $new_job = array(
1322
+ 'post_title' => $job_name,
1323
+ 'post_name' => $job_external_id,
1324
+ 'post_status' => self::COMPLETE,
1325
+ 'post_type' => self::get_post_type_name($job_type),
1326
+ 'post_date' => $post_date
1327
+ );
1328
+
1329
+ // Insert the post into the database
1330
+ $job_id = wp_insert_post($new_job );
1331
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Job Created:' .$job_id);
1332
+
1333
+ //Add job info if available
1334
+ if (null!= $job_info){
1335
+ update_post_meta($job_id, 'job_info',$job_info);
1336
+ }
1337
+
1338
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1339
  return self::get_job_by_id($job_id);
1340
  }
1341
 
1349
  * @return bool
1350
  */
1351
  private static function create_tasks($job_id, $tasks){
1352
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'Begin');
 
1353
 
1354
  //Create the job tasks
1355
  $last_updated_time=time();
1364
  $task_created = update_post_meta( $job_id, $task_name, $task_data );
1365
 
1366
  if (false===$task_created){
1367
+ WPBackItUp_LoggerV2::log_error(self::DEFAULT_LOG_NAME,__METHOD__,'Tasks NOT created');
1368
  return false;
1369
  }
1370
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'task created:' . $task_created .':'. $task_name);
1371
  }
1372
 
1373
+ WPBackItUp_LoggerV2::log_info(self::DEFAULT_LOG_NAME,__METHOD__,'End');
1374
  return true;
1375
 
1376
  }
1393
  * Get Job status
1394
  * @return mixed
1395
  */
1396
+ public function getJobStatus() {
1397
  return $this->job_status;
1398
  }
1399
 
1401
  * Get job id
1402
  * @return mixed
1403
  */
1404
+ public function getJobId() {
1405
  return $this->job_id;
1406
  }
1407
 
1433
  return $job_info;
1434
  }
1435
  }
1436
+
1437
+ /**
1438
+ * Get duration formatted in minutes/seconds
1439
+ *
1440
+ * @return mixed returns false when no end date set
1441
+ */
1442
+ public function get_job_duration_formatted() {
1443
+
1444
+ if (null==$this->job_start_time || null==$this->job_end_time)
1445
+ return false;
1446
+
1447
+ //calculate duration
1448
+ $util = new WPBackItUp_Utility();
1449
+ $total_seconds = $util->timestamp_diff_seconds($this->get_job_start_time(),$this->get_job_end_time());
1450
+
1451
+ $processing_minutes = round($total_seconds / 60);
1452
+ $processing_seconds = $total_seconds % 60;
1453
+
1454
+ return "{$processing_minutes}m {$processing_seconds}s";
1455
+ }
1456
+
1457
+ /**
1458
+ * This is an external ID associated with job
1459
+ * @return mixed
1460
+ */
1461
+ public function getExternalId() {
1462
+ return $this->external_id;
1463
+ }
1464
+
1465
+ /**
1466
+ * Job Date
1467
+ *
1468
+ * @return mixed
1469
+ */
1470
+ public function getJobDate() {
1471
+ return $this->job_date;
1472
+ }
1473
+
1474
+ /**
1475
+ * Job Name
1476
+ * @return mixed
1477
+ */
1478
+ public function getJobName() {
1479
+ return $this->job_name;
1480
+ }
1481
+
1482
+
1483
  }
1484
 
lib/includes/class-job.php DELETED
@@ -1,916 +0,0 @@
1
- <?php if (!defined ('ABSPATH')) die('No direct access allowed');
2
-
3
- /**
4
- * WP BackItUp - Job Class
5
- *
6
- * @package WP BackItUp
7
- * @author Chris Simmons <chris.simmons@wpbackitup.com>
8
- * @link http://www.wpbackitup.com
9
- *
10
- */
11
-
12
-
13
- //Includes
14
- if( !class_exists( 'WPBackItUp_Utility' ) ) {
15
- include_once 'class-utility.php';
16
- }
17
-
18
- class WPBackItUp_Job {
19
-
20
- const JOB_TITLE='wpbackitup_job';
21
-
22
- //job Status values
23
- const ERROR = 'error';
24
- const ACTIVE ='Active';
25
- const COMPLETE ='complete';
26
- const CANCELLED='cancelled';
27
- const QUEUED = 'queued';
28
-
29
- private $log_name;
30
- private $job_id;
31
- private $instance_id;
32
- private $allocated_task;
33
-
34
- public $job_status;
35
- public $backup_id;
36
-
37
- private $job_start_time;
38
- private $job_end_time;
39
-
40
- private $lockFile;
41
- private $lockFilePath;
42
- private $locked;
43
-
44
- static private $backup_tasks = array(
45
- 1=>'task_preparing',
46
- 2=>'task_backup_db' ,
47
- 3=>'task_backup_siteinfo',
48
- 4=>'task_backup_themes',
49
- 5=>'task_backup_plugins',
50
- 6=>'task_backup_uploads',
51
- 7=>'task_backup_other',
52
- 8=>'task_validate_backup',
53
- 9=>'task_finalize_backup',
54
- );
55
-
56
- static private $restore_tasks = array(
57
- 1=>'task_preparing',
58
- 2=>'task_unzip_backup_set',
59
- 3=>'task_validate_backup',
60
- 4=>'task_create_checkpoint',
61
- 5=>'task_stage_wpcontent',
62
- 6=>'task_restore_wpcontent',
63
- 8=>'task_restore_database',
64
- );
65
-
66
- static private $cleanup_tasks = array(
67
- 1=>'task_scheduled_cleanup'
68
- );
69
-
70
- static private $cloud_upload_tasks = array(
71
- 1=>'task_validate_cloud_credentials',
72
- 2=>'task_upload_files_to_cloud',
73
- 3=>'task_update_backup_status'
74
- );
75
-
76
-
77
- function __construct($job) {
78
- try {
79
- $this->log_name = 'debug_job';//default log name
80
-
81
- //Load of the class properties from the post object(see wp_post)
82
- $this->job_id=$job->ID;
83
- $this->instance_id=time();
84
- $this->job_status=$job->post_status;
85
- $this->backup_id=$job->post_name;
86
-
87
- //Deserialize content
88
- $content = $job->post_content;
89
- if (!empty($content)){
90
- $job_info =maybe_unserialize($content);
91
- if (is_array($job_info)){
92
- $this->job_start_time=$job_info['start_time'];
93
- }
94
- }
95
-
96
- } catch(Exception $e) {
97
- error_log($e); //Log to debug
98
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Constructor Exception: ' .$e);
99
- }
100
- }
101
-
102
- function __destruct() {
103
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
104
- if ($this->locked) {
105
- $this->release_lock();
106
- }
107
- }
108
-
109
- /**
110
- * Get lock of possible
111
- *
112
- * @param $lock_file_path
113
- *
114
- * @return bool
115
- */
116
- public function get_lock ($lock_file_path){
117
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin:'.$lock_file_path);
118
-
119
- $this->$lock_file_path = $lock_file_path;
120
- try {
121
- $this->lockFile = fopen($this->$lock_file_path ,"w"); // open it for WRITING ("w")
122
- if (flock( $this->lockFile, LOCK_EX | LOCK_NB)) {
123
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Process LOCK acquired');
124
- $this->locked=true;
125
- } else {
126
- //This is not an error, just means another process has it allocated
127
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Process LOCK Failed');
128
- $this->locked=false;
129
- }
130
-
131
- return $this->locked;
132
-
133
- } catch(Exception $e) {
134
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Process Lock error: ' .$e);
135
- $this->locked=false;
136
- return $this->locked;
137
- }
138
- }
139
-
140
- /**
141
- * Release lock
142
- *
143
- * @return bool
144
- */
145
- public function release_lock (){
146
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
147
-
148
- try{
149
- flock($this->lockFile, LOCK_UN); // unlock the file
150
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Lock released');
151
- $this->locked=false;
152
- }catch(Exception $e) {
153
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Process UNLOCK error: ' .$e);
154
- }
155
- }
156
-
157
- public function is_job_complete() {
158
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' );
159
-
160
- $tasks = get_post_meta( $this->job_id);
161
- foreach($tasks as $key=>$value) {
162
- //Is this a task of job meta data
163
- if (substr($key, 0, 4)!='task') continue;
164
-
165
- $task = get_post_meta($this->job_id,$key);
166
-
167
- //Get Task Properties
168
- $task_id = $task[0]['task_id'];
169
- $task_status = $task[0]['task_status'];
170
- $task_allocated_id = $task[0]['task_allocated_id'];
171
- $task_last_updated = $task[0]['task_last_updated'];
172
-
173
- if ('queued'==$task_status || 'active'==$task_status){
174
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Active or Queued Task found:' . $key );
175
- return false;
176
- }
177
- }
178
-
179
- //No active or queued tasks were found
180
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - No Active or Queued Tasks found' );
181
- return true;
182
-
183
- }
184
- //What is the next task in the stack
185
- public function get_next_task(){
186
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
187
-
188
- $this->allocated_task=null; //Set the current task to null;
189
-
190
- //Get the tasks -- DO I NEED TO SORT?
191
- $tasks = get_post_meta($this->job_id);
192
-
193
- //Enumerate the tasks
194
- foreach ($tasks as $key => $value) {
195
-
196
- //Is this a task of job meta data
197
- if (substr($key, 0, 4)!='task') continue;
198
-
199
- $task = get_post_meta($this->job_id,$key);
200
-
201
- //Get Task Properties
202
- $task_id = $task[0]['task_id'];
203
- $task_status = $task[0]['task_status'];
204
- $task_allocated_id = $task[0]['task_allocated_id'];
205
- $task_last_updated = $task[0]['task_last_updated'];
206
-
207
- //if next task in stack is queued then its time to get to work
208
- switch ($task_status) {
209
- case "queued":
210
- //Try allocate task
211
- $queued_task = $this->allocate_task($this->job_id, $key,$task_id);
212
-
213
- //If task was allocated then update the job status to active
214
- if (false!==$queued_task){
215
- $this->set_job_status_active();
216
- }
217
- return $queued_task[0]['task_id'];
218
-
219
- case "active":
220
- //Error if >= 3 minutes since the last update
221
- if (time()>=$task_last_updated+WPBACKITUP__TASK_TIMEOUT_SECONDS){
222
- $this->update_task_status($this->job_id, $key,$task_id,'error');
223
-
224
- // If timeout error
225
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Job:' . $key . 'Time Out' );
226
-
227
- //Update job to error also
228
- $this->set_job_status_error();
229
- return 'error_' . $task_id ;
230
-
231
- }else {
232
-
233
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Job:' . $key . ' is still active' );
234
- //if its been less than 3 minutes then wait
235
- return false;
236
- }
237
-
238
- case "complete":
239
- //Do nothing - get the next task
240
- break;
241
-
242
- case "error":
243
- //Job should already be error but update if not
244
- //Update job to error also
245
- $this->set_job_status_error();
246
- return 'error_' . $task_id ;
247
- }
248
- }
249
-
250
- //If no more tasks then job must be done
251
- $this->set_job_status_complete();
252
-
253
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - no tasks to allocate');
254
- return false; //no tasks to allocate now but job should be complete next time
255
- }
256
-
257
- /**
258
- * Allocate the task to this job - will set task status to active
259
- *
260
- * @param $job_id
261
- * @param $key
262
- * @param $task_id
263
- *
264
- * @return bool
265
- */
266
- private function allocate_task($job_id, $key,$task_id){
267
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
268
-
269
- //Allocate the task to this process
270
- $process_uid = uniqid();
271
- $this->update_task_status($job_id, $key,$task_id,'active',$process_uid);
272
-
273
- //Get updated task and make sure uid is good
274
- $updated_task = get_post_meta( $this->job_id, $key);
275
- $updated_task_allocated_id = $updated_task[0]['task_allocated_id'];
276
- if ($process_uid==$updated_task_allocated_id) {
277
- $this->allocated_task=$updated_task; // set the jobs allocated task
278
-
279
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Task allocated');
280
- return $updated_task;
281
- }else{
282
- $this->allocated_task=null;
283
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Task was not allocated');
284
- return false;
285
- }
286
- }
287
-
288
-
289
- /**
290
- * Set the allocated task status to queued
291
- */
292
- public function set_task_queued(){
293
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
294
-
295
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Task Info:');
296
- WPBackItUp_LoggerV2::log($this->log_name,$this->allocated_task);
297
-
298
- //Get allocated task Properties
299
- $task_id = $this->allocated_task[0]['task_id'];
300
- $this->update_task_status($this->job_id, $task_id,$task_id,'queued');
301
-
302
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
303
- }
304
-
305
- /**
306
- * Set the allocated task status to complete
307
- */
308
- public function set_task_complete(){
309
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
310
-
311
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Task Info:');
312
- WPBackItUp_LoggerV2::log($this->log_name,$this->allocated_task);
313
-
314
- //Get allocated task Properties
315
- $task_id = $this->allocated_task[0]['task_id'];
316
- $this->update_task_status($this->job_id, $task_id,$task_id,'complete');
317
-
318
-
319
- //Check if this was the last task
320
- if ($this->is_job_complete()){
321
- $this->set_job_status_complete();
322
- }
323
-
324
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
325
- }
326
-
327
- /**
328
- * Set the allocated task status to error
329
- */
330
- public function set_task_error($error_code){
331
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
332
-
333
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Task Info:');
334
- WPBackItUp_LoggerV2::log($this->log_name,$this->allocated_task);
335
-
336
- //Get allocated task Properties
337
- $task_id = $this->allocated_task[0]['task_id'];
338
- $this->update_task_status($this->job_id, $task_id,$task_id,'error','',$error_code);
339
-
340
- $this->set_job_status_error();
341
-
342
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
343
- }
344
-
345
-
346
- private function update_task_status($job_id,$task_name,$task_id, $task_status, $task_allocated_id='', $task_error_code=''){
347
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
348
-
349
- $meta_value = array(
350
- 'task_id' => $task_id,
351
- 'task_status' => $task_status,
352
- 'task_allocated_id' => $task_allocated_id,
353
- 'task_error_code' => $task_error_code,
354
- 'task_last_updated' => time()
355
- );
356
-
357
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Task Updated:' .$job_id .'-'. $task_name .'-'. $task_status);
358
- return update_post_meta( $job_id, $task_name, $meta_value );
359
- }
360
-
361
-
362
- public function update_job_meta($meta_name,$meta_value){
363
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin - Update job meta:' .$this->job_id .'-'. $meta_name);
364
-
365
- //Encode the array values
366
- if (is_array($meta_value)){
367
- array_walk_recursive($meta_value, 'WPBackItUp_Utility::encode_items');
368
- }
369
-
370
- return update_post_meta( $this->job_id, $meta_name,$this->wpb_slash($meta_value));
371
- }
372
-
373
- /**
374
- * Add slashes to a string or array of strings.
375
- *
376
- * This should be used when preparing data for core API that expects slashed data.
377
- * This should not be used to escape data going directly into an SQL query.
378
- *
379
- * @since 3.6.0
380
- *
381
- * @param string|array $value String or array of strings to slash.
382
- * @return string|array Slashed $value
383
- */
384
- private function wpb_slash( $value ) {
385
- //only use on strings and arrays
386
- if(! is_array($value) && ! is_string($value)){
387
- return $value;
388
- }
389
-
390
- //only available 3.6 or later
391
- if (function_exists('wp_slash')) return wp_slash($value);
392
-
393
- if ( is_array( $value ) ) {
394
- foreach ( $value as $k => $v ) {
395
- if ( is_array( $v ) ) {
396
- $value[$k] = $this->wpb_slash( $v );
397
- } else {
398
- $value[ $k ] = addslashes( $v );
399
- }
400
- }
401
- } else {
402
- $value = addslashes( $value );
403
- }
404
-
405
- return $value;
406
- }
407
-
408
- /**
409
- * Remove slashes from a string or array of strings.
410
- *
411
- * This should be used to remove slashes from data passed to core API that
412
- * expects data to be unslashed.
413
- *
414
- * @since 3.6.0
415
- *
416
- * @param string|array $value String or array of strings to unslash.
417
- * @return string|array Unslashed $value
418
- */
419
- function wpb_unslash( $value ) {
420
- return stripslashes_deep( $value );
421
- }
422
-
423
- public function get_job_meta($meta_name){
424
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin' .$this->job_id .'-'. $meta_name);
425
-
426
- $job_meta = get_post_meta($this->job_id,$meta_name,true);
427
-
428
- //Decode the array values
429
- if (is_array($job_meta)){
430
- array_walk_recursive($job_meta, 'WPBackItUp_Utility::decode_items');
431
- }
432
-
433
- return $job_meta;
434
-
435
- }
436
-
437
- /**
438
- * Set job status to active
439
- */
440
- public function set_job_status_active( ) {
441
- $status=self::ACTIVE;
442
- if ($this->update_job_status($status)){
443
- $this->job_status = $status;
444
- }
445
-
446
- //Set job end Time
447
- $this->set_job_start_time();
448
- }
449
-
450
- /**
451
- * Set job status to error
452
- */
453
- public function set_job_status_error( ) {
454
- $status=self::ERROR;
455
- if ($this->update_job_status($status)){
456
- $this->job_status = $status;
457
- }
458
-
459
- //Set job end Time
460
- $this->set_job_end_time();
461
- }
462
-
463
- /**
464
- * Set job status to complete
465
- */
466
- public function set_job_status_complete( ) {
467
- $status=self::COMPLETE;
468
-
469
- if ($this->update_job_status($status)){
470
- $this->job_status = $status;
471
- }
472
-
473
- //Set job end Time
474
- $this->set_job_end_time();
475
- }
476
-
477
- /**
478
- * Set job status to cancelled
479
- */
480
- public function set_job_status_cancelled( ) {
481
- $status=self::CANCELLED;
482
-
483
- if ($this->update_job_status($status)){
484
- $this->job_status = $status;
485
- }
486
-
487
- //Set job end Time
488
- $this->set_job_end_time();
489
- }
490
-
491
-
492
- /**
493
- * Update job status
494
- *
495
- * @param $status
496
- *
497
- * @return bool
498
- */
499
- private function update_job_status($status) {
500
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
501
-
502
- $job = array(
503
- 'ID' => $this->job_id,
504
- 'post_status' => $status
505
- );
506
-
507
- // update the job
508
- $job_id = wp_update_post($job );
509
-
510
- if (0!=$job_id) {
511
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Backup Job status set to:' .$job_id .'-' . $status );
512
- return true;
513
- } else{
514
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'End - Backup Job status NOT set.');
515
- return false;
516
- }
517
-
518
- }
519
-
520
- /**
521
- * Set job start time
522
- *
523
- * @return bool
524
- */
525
- private function set_job_start_time() {
526
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
527
-
528
- $this->job_start_time= time();
529
- $job_info = array(
530
- 'start_time' => $this->job_start_time,
531
- );
532
-
533
- $job = array(
534
- 'ID' => $this->job_id,
535
- 'post_content' => serialize($job_info)
536
- );
537
-
538
- // update the job info
539
- $job_id = wp_update_post($job );
540
-
541
- if (0!=$job_id) {
542
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Backup Job start time set');
543
- return true;
544
- } else{
545
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Backup Job start time NOT set.');
546
- return false;
547
- }
548
-
549
- }
550
-
551
- /**
552
- * Set job end time
553
- *
554
- * @return bool
555
- */
556
- private function set_job_end_time() {
557
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
558
-
559
- $this->job_end_time=time();
560
- $job_info = array(
561
- 'start_time' => $this->job_start_time,
562
- 'end_time' => $this->job_end_time,
563
- );
564
-
565
- $job = array(
566
- 'ID' => $this->job_id,
567
- 'post_content' => serialize($job_info)
568
- );
569
-
570
- // update the job info
571
- $job_id = wp_update_post($job );
572
-
573
- if (0!=$job_id) {
574
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End - Backup Job end time set');
575
- return true;
576
- } else{
577
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'End - Backup Job end time NOT set.');
578
- return false;
579
- }
580
-
581
- }
582
-
583
- /**---------STATICS---------***/
584
-
585
- /**
586
- * Is there at least 1 job queued or active?
587
- *
588
- * @param $job_name
589
- *
590
- * @return bool
591
- */
592
- public static function is_job_queued($job_name) {
593
- $job_logname='debug_job';
594
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Check Job Queue:' . $job_name);
595
-
596
- //Get top 1
597
- $args = array(
598
- 'posts_per_page' => 1,
599
- 'post_type' => $job_name,
600
- 'post_status' => array('queued','active'),
601
- 'orderby' => 'post_date',
602
- 'order' => 'ASC',
603
- 'suppress_filters' => true
604
- );
605
- $jobs = get_posts( $args );
606
- WPBackItUp_LoggerV2::log($job_logname,$jobs);
607
-
608
- if (is_array($jobs) && count($jobs)>0) {
609
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Jobs found:' . count($jobs) );
610
- return true;
611
- }
612
-
613
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found:' . $job_name);
614
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
615
- return false;
616
- }
617
-
618
- /**
619
- * get completed jobs
620
- * - complete, cancelled, error
621
- *
622
- * @param $job_name
623
- * @param int $count
624
- *
625
- * @return bool
626
- */
627
- public static function get_completed_jobs($job_name,$count=25) {
628
- $job_logname='debug_job';
629
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
630
-
631
- $save_last = 10;
632
- $count+=$save_last; //always leave the last n
633
-
634
- $args = array(
635
- 'posts_per_page' => $count,
636
- 'post_type' => $job_name,
637
- 'post_status' => array('complete','cancelled','error'),
638
- 'orderby' => 'post_date',
639
- 'order' => 'ASC',
640
- 'suppress_filters' => true
641
- );
642
- $jobs = get_posts( $args );
643
-
644
- if (is_array($jobs) && count($jobs)>$save_last) {
645
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Jobs found:' . count($jobs));
646
-
647
- $diff=count($jobs)-$save_last;
648
-
649
- //pull off the last N
650
- $rtn_val = array_slice($jobs,0,$diff);
651
- return $rtn_val;
652
- }
653
-
654
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found:' . $job_name);
655
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
656
- return false;
657
- }
658
-
659
- /**
660
- * Cancel all queued or active jobs
661
- *
662
- * @return bool
663
- */
664
- public static function cancel_all_jobs() {
665
- $job_logname='debug_job';
666
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Cancel all jobs.');
667
-
668
- while (self::is_job_queued('backup')){
669
- $backup_job = self::get_job('backup');
670
- if (false!== $backup_job) {
671
- $backup_job->set_job_status_cancelled();
672
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Backup job Cancelled:' . $backup_job->get_job_id());
673
- }
674
- }
675
-
676
- while (self::is_job_queued('cleanup')){
677
- $cleanup_job = self::get_job('cleanup');
678
- if (false!== $cleanup_job) {
679
- $cleanup_job->set_job_status_cancelled();
680
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Cleanup job Cancelled:' . $cleanup_job->get_job_id());
681
- }
682
- }
683
-
684
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End - All jobs cancelled');
685
- }
686
-
687
- /**
688
- * purge old jobs
689
- *
690
- * @param $job_name *
691
- * @param int $count
692
- *
693
- * @return bool
694
- */
695
- public static function purge_old_jobs($job_name,$count=25) {
696
- $job_logname='debug_job';
697
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Purge Jobs.');
698
-
699
- $jobs = self::get_completed_jobs($job_name,$count);
700
- $purge_count=0;
701
- foreach($jobs as $job){
702
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Delete Job:'.$job->ID .':' .$job->post_type .":" .$job->post_title .':' .$job->post_date);
703
- wp_delete_post( $job->ID, true );
704
- $purge_count+=1;
705
- }
706
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End - job purge complete');
707
- return $purge_count;
708
- }
709
-
710
- /**
711
- * Gets the queued or active job on top of the stack
712
- *
713
- * @param $job_name
714
- *
715
- * @return bool|WPBackItUp_Job
716
- */
717
- public static function get_job($job_name) {
718
- $job_logname='debug_job';
719
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Job Name: ' .$job_name);
720
-
721
- //Get backup on top
722
- $args = array(
723
- 'posts_per_page' => 1,
724
- 'post_type' => $job_name,
725
- 'post_status' => array('queued','active'),
726
- 'orderby' => 'post_date',
727
- 'order' => 'ASC',
728
- );
729
- $jobs = get_posts( $args );
730
- WPBackItUp_LoggerV2::log($job_logname,$jobs);
731
-
732
- if (is_array($jobs) && count($jobs)>0) {
733
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job found:' . count($jobs));
734
-
735
- $backup_job = new WPBackItUp_Job($jobs[0]);
736
- if (self::QUEUED==$backup_job->job_status){
737
- $backup_job->set_job_status_active();
738
- }
739
- return $backup_job;
740
- }
741
-
742
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No jobs found.');
743
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
744
- return false;
745
- }
746
-
747
- /**
748
- * Gets a job by id
749
- *
750
- * @param $id
751
- *
752
- * @return bool|WPBackItUp_Job
753
- */
754
- public static function get_job_by_id($id) {
755
- $job_logname='debug_job';
756
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
757
-
758
- $job = get_post( $id, 'OBJECT');
759
- WPBackItUp_LoggerV2::log($job_logname,$job);
760
-
761
- if (null!=$job) {
762
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job found:' .$id);
763
- return new WPBackItUp_Job($job);
764
- }
765
-
766
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'No job found with id.' . $id);
767
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
768
- return false;
769
- }
770
-
771
- /**
772
- * Queue a job
773
- *
774
- * @param $job_name
775
- *
776
- * @return bool|WPBackItUp_Job
777
- */
778
- public static function queue_job($job_name){
779
- $job_logname='debug_job';
780
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin - Job:'. $job_name);
781
-
782
- $new_job = array(
783
- 'post_title' => self::JOB_TITLE,
784
- 'post_name' => time(),
785
- 'post_status' => 'queued',
786
- 'post_type' => $job_name
787
- );
788
-
789
- // Insert the post into the database
790
- $job_id = wp_insert_post($new_job );
791
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job Created:' .$job_id);
792
-
793
- switch ($job_name) {
794
- case "restore":
795
- //add the tasks
796
- if ( false === self::create_tasks( $job_id,self::$restore_tasks ) ) {
797
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Restore tasks not Created - deleting job:' . $job_id );
798
- wp_delete_post( $job_id, true );
799
- return false;
800
- }
801
-
802
- break;
803
-
804
- case "backup":
805
- //add the tasks
806
- if ( false === self::create_tasks( $job_id,self::$backup_tasks ) ) {
807
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Backup tasks not Created - deleting job:' . $job_id );
808
- wp_delete_post( $job_id, true );
809
- return false;
810
- }
811
-
812
- break;
813
-
814
- case "cleanup":
815
- //add the tasks
816
- if ( false === self::create_tasks( $job_id,self::$cleanup_tasks ) ) {
817
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Cleanup tasks not Created - deleting job:' . $job_id );
818
- wp_delete_post( $job_id, true );
819
- return false;
820
- }
821
- break;
822
-
823
- case "cloud_upload":
824
- //add the tasks
825
- if ( false === self::create_tasks( $job_id,self::$cloud_upload_tasks ) ) {
826
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Cloud upload tasks not Created - deleting job:' . $job_id );
827
- wp_delete_post( $job_id, true );
828
- return false;
829
- }
830
- break;
831
-
832
- default://Job type not defined
833
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Job type not defined - deleting job:' . $job_name );
834
- wp_delete_post( $job_id, true );
835
- return false;
836
- }
837
-
838
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
839
- return self::get_job_by_id($job_id);
840
- }
841
-
842
- /**
843
- * Create all the tasks for a job
844
- *
845
- * @param $job_id
846
- *
847
- * @param $tasks
848
- *
849
- * @return bool
850
- */
851
- private static function create_tasks($job_id, $tasks){
852
- $job_logname='debug_job';
853
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'Begin');
854
-
855
- //Create the job tasks
856
- $last_updated_time=time();
857
- foreach ($tasks as $key => $value){
858
- $task_name = $value;
859
- $task_data = array(
860
- 'task_id' => $task_name,
861
- 'task_status' => 'queued',
862
- 'task_allocated_id'=>'',
863
- 'task_last_updated'=>$last_updated_time
864
- );
865
- $task_created = update_post_meta( $job_id, $task_name, $task_data );
866
-
867
- if (false===$task_created){
868
- WPBackItUp_LoggerV2::log_error($job_logname,__METHOD__,'Tasks NOT created');
869
- return false;
870
- }
871
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'task created:' . $task_created .':'. $task_name);
872
- }
873
-
874
- WPBackItUp_LoggerV2::log_info($job_logname,__METHOD__,'End');
875
- return true;
876
-
877
- }
878
-
879
- /**
880
- * @return mixed
881
- */
882
- public function get_job_start_time() {
883
- return $this->job_start_time;
884
- }
885
-
886
- /**
887
- * @return mixed
888
- */
889
- public function get_job_end_time() {
890
- return $this->job_end_time;
891
- }
892
-
893
- /**
894
- * Get Job status
895
- * @return mixed
896
- */
897
- public function get_job_status() {
898
- return $this->job_status;
899
- }
900
-
901
- /**
902
- * Get job id
903
- * @return mixed
904
- */
905
- public function get_job_id() {
906
- return $this->job_id;
907
- }
908
-
909
- /**
910
- * @return int
911
- */
912
- public function getInstanceId() {
913
- return $this->instance_id;
914
- }
915
- }
916
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lib/includes/class-mutex.php CHANGED
@@ -2,16 +2,15 @@
2
 
3
  class WPBackItUp_Mutex {
4
 
5
- private $log_name;
6
  private $writeablePath = '';
7
  private $lockName = '';
8
  private $fileHandle = null;
9
 
10
  public function __construct($lockName, $writeablePath = null){
11
- $this->log_name = 'debug_mutex';
12
-
13
  $this->lockName = preg_replace('/[^a-zA-Z0-9]/', '', $lockName);
14
- if($writeablePath == null){
 
15
  $this->writeablePath = $this->findWriteablePath();
16
  } else {
17
  $this->writeablePath = $writeablePath;
@@ -39,9 +38,9 @@ class WPBackItUp_Mutex {
39
  }
40
 
41
  private function attemptLock(){
42
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
 
43
  if (PHP_OS == 'WINNT'){
44
- $lockFilePath = $this->getLockFilePath();
45
  if(file_exists($lockFilePath)){
46
  $unlinked = @unlink($lockFilePath);
47
  if(!$unlinked) return false; //locked
@@ -91,12 +90,28 @@ class WPBackItUp_Mutex {
91
  return $this->fileHandle;
92
  }
93
 
94
- public function releaseLock(){
95
- flock($this->fileHandle, LOCK_UN);
96
- $success = fclose($this->getFileHandle());
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  unlink($this->getLockFilePath());
98
- $this->fileHandle = null;
99
- return $success;
 
100
  }
101
 
102
  public function getLockFilePath(){
2
 
3
  class WPBackItUp_Mutex {
4
 
5
+ private $log_name= 'debug_mutex';
6
  private $writeablePath = '';
7
  private $lockName = '';
8
  private $fileHandle = null;
9
 
10
  public function __construct($lockName, $writeablePath = null){
 
 
11
  $this->lockName = preg_replace('/[^a-zA-Z0-9]/', '', $lockName);
12
+
13
+ if($writeablePath == null){
14
  $this->writeablePath = $this->findWriteablePath();
15
  } else {
16
  $this->writeablePath = $writeablePath;
38
  }
39
 
40
  private function attemptLock(){
41
+ $lockFilePath = $this->getLockFilePath();
42
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin:' .$lockFilePath);
43
  if (PHP_OS == 'WINNT'){
 
44
  if(file_exists($lockFilePath)){
45
  $unlinked = @unlink($lockFilePath);
46
  if(!$unlinked) return false; //locked
90
  return $this->fileHandle;
91
  }
92
 
93
+ /**
94
+ * release exclusive lock on file
95
+ *
96
+ * @return bool
97
+ */
98
+ public function releaseLock(){
99
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
100
+
101
+ $fh = $this->fileHandle;
102
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'File Handle:' .var_export($fh,true));
103
+
104
+ $flock_rtn = flock($fh, LOCK_UN);
105
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Flock Unlock:' .var_export($flock_rtn,true));
106
+
107
+ $close_rtn = fclose($fh);
108
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Close File:' .var_export($close_rtn,true));
109
+
110
+ //delete file & release reference
111
  unlink($this->getLockFilePath());
112
+ $this->fileHandle = null;
113
+
114
+ return $close_rtn;
115
  }
116
 
117
  public function getLockFilePath(){
lib/includes/class-recursivefilteriterator.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class WPBackItUp_RecursiveFilterIterator extends RecursiveFilterIterator {
5
+
6
+ protected $exclude;
7
+
8
+ /**
9
+ * Constructor that takes an array of folders and files to exclude
10
+ *
11
+ * @param RecursiveIterator $iterator
12
+ * @param array $exclude
13
+ */
14
+ public function __construct($iterator, $exclude)
15
+ {
16
+ if (!is_array($exclude)) {
17
+ $exclude= array(); //empty array
18
+ }
19
+ parent::__construct($iterator);
20
+ $this->exclude = $exclude;
21
+ }
22
+
23
+ /**
24
+ * Filter FILES & FOLDERS contained in exclude array
25
+ * - Folders use wildcard search
26
+ *
27
+ * @return bool
28
+ */
29
+ public function accept()
30
+ {
31
+ //wildcard search only used on folders
32
+ if ($this->isDir()){
33
+ return ! $this->strposa0($this->getFilename(), $this->exclude);
34
+ }
35
+
36
+ //files
37
+ return ! in_array($this->getFilename(), $this->exclude);
38
+
39
+ //Filters folders only
40
+ //return !($this->isDir() && in_array($this->getFilename(), $this->exclude));
41
+ }
42
+
43
+ /**
44
+ * Filter dirs on exclude array
45
+ * @return WPBackItUp_RecursiveFilterIterator
46
+ */
47
+ public function getChildren()
48
+ {
49
+ return new WPBackItUp_RecursiveFilterIterator($this->getInnerIterator()->getChildren(), $this->exclude);
50
+ }
51
+
52
+
53
+ /**
54
+ * Search for item name in exclude array
55
+ * - MUST be in position 0 because we are looking for the folder root, not children
56
+ *
57
+ * @param $item_name
58
+ * @param $exclude_array
59
+ * @param int $offset
60
+ *
61
+ * @return bool
62
+ */
63
+ private function strposa0($item_name, $exclude_array, $offset=0) {
64
+
65
+ foreach($exclude_array as $query) {
66
+ $pos = strpos($item_name, $query, $offset);
67
+ //looking for position 0 - string must start at the beginning
68
+ if($pos === 0) return true; // stop on first true result
69
+ }
70
+ return false;
71
+ }
72
+ }
lib/includes/class-scheduler.php CHANGED
@@ -69,8 +69,14 @@ class WPBackItUp_Scheduler {
69
  try {
70
 
71
  ///ONLY active premium get this feature
72
- if (!$WPBackitup->license_active() || 'expired'== $WPBackitup->license_status()){
73
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'License is not active');
 
 
 
 
 
 
74
  return false;
75
  }
76
 
69
  try {
70
 
71
  ///ONLY active premium get this feature
72
+ if (! $WPBackitup->premium_license()) {
73
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'No premium license.');
74
+ return false;
75
+ }
76
+
77
+ ///ONLY work for 30 days after expiration
78
+ if ($WPBackitup->license_30_days_past_expire()){
79
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'License expired 30 days ago');
80
  return false;
81
  }
82
 
lib/includes/class-sql.php CHANGED
@@ -19,7 +19,7 @@ if( ini_get('safe_mode') ){
19
  class WPBackItUp_SQL {
20
 
21
  private $log_name;
22
- private $connection;
23
 
24
  function __construct($log_name) {
25
  try {
@@ -33,7 +33,7 @@ class WPBackItUp_SQL {
33
  }
34
  }
35
 
36
- $this->connection = $this->get_sqlconnection();
37
 
38
  } catch(Exception $e) {
39
  error_log($e);
@@ -43,7 +43,7 @@ class WPBackItUp_SQL {
43
 
44
  function __destruct() {
45
  // Close the connection
46
- $this->connection->close() ;
47
  }
48
 
49
  public function mysqldump_export($sql_file_path,$with_mysqlpath=false) {
@@ -76,19 +76,33 @@ class WPBackItUp_SQL {
76
 
77
  //If multi-site install then just backup the tables for current install.
78
  $tables='';
79
- if (is_multisite()){
80
- $sql = sprintf('SHOW TABLES like \'%s%%\' ',$wpdb->prefix);
81
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'tables:' . $sql);
82
- $mysqli = $this->connection;
83
- $result = $mysqli->query($sql);
84
- // Cycle through "$result" and put content into an array
85
- while ($row = $result->fetch_row()) {
86
- $tables_list[] = $row[0] ;
87
- }
 
 
 
 
88
 
89
- if (is_array($tables_list)){
90
- $tables = implode( " ", $tables_list);
91
- }
 
 
 
 
 
 
 
 
 
 
92
  }
93
 
94
  $command .=
@@ -145,7 +159,7 @@ class WPBackItUp_SQL {
145
  public function get_table_rows() {
146
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
147
 
148
- $mysqli = $this->connection;
149
  if (false === $mysqli) {
150
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
151
  return false;
@@ -161,6 +175,7 @@ class WPBackItUp_SQL {
161
  $tables[] = array("table_name" => $row[0], 'table_rows' => $row[1]) ;
162
  }
163
 
 
164
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
165
  return $tables;
166
  }
@@ -168,140 +183,154 @@ class WPBackItUp_SQL {
168
  public function manual_export($sql_file_path) {
169
  global $wpdb;
170
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Manually Create SQL Backup File:'.$sql_file_path);
171
-
172
- $mysqli = $this->connection;
173
- $mysqli->set_charset('utf8');
174
 
175
- if (false===$mysqli) {
176
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
177
- return false;
178
- }
 
 
179
 
180
- //open the SQL file
181
- $handle = fopen($sql_file_path,'w+');
182
- if (false===$handle) {
183
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'File could not be opened.');
184
- return false;
185
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
 
 
 
 
187
 
188
- // Script Header Information
189
- $return = '';
190
- $return .= "-- ------------------------------------------------------\n";
191
- $return .= "-- ------------------------------------------------------\n";
192
- $return .= "--\n";
193
- $return .= "-- WP BackItUp Manual Database Backup \n";
194
- $return .= "--\n";
195
- $return .= '-- Created: ' . date("Y/m/d") . ' on ' . date("h:i") . "\n";
196
- $return .= "--\n";
197
- $return .= "-- Database : " . DB_NAME . "\n";
198
- $return .= "--\n";
199
- $return .= "-- ------------------------------------------------------\n";
200
- $return .= "-- ------------------------------------------------------\n";
201
- $return .= 'SET AUTOCOMMIT = 0 ;' ."\n" ;
202
- $return .= 'SET FOREIGN_KEY_CHECKS=0 ;' ."\n" ;
203
- $return .= "\n";
204
- $return .= '/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;' ."\n" ;
205
- $return .= '/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;' ."\n" ;
206
- $return .= '/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;' ."\n" ;
207
- $return .= '/*!40101 SET NAMES utf8 */;' ."\n" ;
208
-
209
- fwrite($handle,$return); //Write to file
210
-
211
- $tables = array() ;
212
-
213
- //If multisite install then just backup the tables for current install.
214
- $sql = 'SHOW TABLES';
215
- if (is_multisite()){
216
- $sql .= sprintf(' like \'%s%%\' ',$wpdb->prefix);
217
- }
218
- $result = $mysqli->query($sql);
219
 
220
- // Cycle through "$result" and put content into an array
221
- while ($row = $result->fetch_row()) {
222
- $tables[] = $row[0] ;
223
- }
224
 
225
- // Cycle through each table
226
- foreach($tables as $table) {
227
- WPBackItUp_LoggerV2::log($this->log_name,$table);
 
 
228
 
229
- // //if multi site install then
230
- // if (is_multisite()){
231
- //
232
- // }
233
-
234
- // Get content of each table
235
- $result = $mysqli->query('SELECT * FROM '. $table) ;
236
-
237
- // Get number of fields (columns) of each table
238
- $num_fields = $mysqli->field_count ;
239
-
240
- // Add table information
241
- $return = "--\n" ;
242
- $return .= '-- Table structure for table `' . $table . '`' . "\n" ;
243
- $return .= "--\n" ;
244
- $return .= 'DROP TABLE IF EXISTS `'.$table.'`;' . "\n" ;
245
-
246
- // Get the table-shema
247
- $shema = $mysqli->query('SHOW CREATE TABLE '.$table) ;
248
-
249
- // Extract table shema
250
- $tableshema = $shema->fetch_row() ;
251
-
252
- // Append table-shema into code
253
- $return.= $tableshema[1].";" . "\n\n" ;
254
-
255
- fwrite($handle,$return); //Write to file
256
-
257
- // Cycle through each table-row
258
- while($rowdata = $result->fetch_row()) {
259
-
260
- $return = 'INSERT INTO '.$table.' VALUES(';
261
- for($j=0; $j<$num_fields; $j++){
262
- $rowdata[$j] = addslashes($rowdata[$j]);
263
- $rowdata[$j] = str_replace("\n","\\n",$rowdata[$j]);
264
-
265
- if (isset($rowdata[$j])) {
266
- $return.= '"'.$rowdata[$j].'"' ;
267
- } else {
268
- if (is_null($rowdata[$j])) {
269
- $return.= 'NULL';//Dont think this is working but not causing issues
270
- } else {
271
- $return.= '""';
272
- }
273
- }
274
-
275
- if ($j<($num_fields-1)) { $return.= ','; }
276
  }
277
- $return.= ");\n";
278
 
 
279
  fwrite($handle,$return); //Write to file
 
 
280
  }
281
 
282
- $return= "\n\n" ;
283
- fwrite($handle,$return); //Write to file
284
- }
285
 
286
- $return .= 'SET FOREIGN_KEY_CHECKS = 1 ; ' . "\n" ;
287
- $return .= 'COMMIT ; ' . "\n" ;
288
- $return .= 'SET AUTOCOMMIT = 1 ; ' . "\n" ;
289
-
290
- //save file
291
- //$handle = fopen($sql_file_path,'w+');
292
- fwrite($handle,$return);
293
- fclose($handle);
294
 
295
- clearstatcache();
296
 
297
- //Did the export work
298
- if (!file_exists($sql_file_path) || filesize($sql_file_path)<=0) {
299
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL Export file was empty or didnt exist.');
300
- return false;
301
- }
 
 
 
302
 
303
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Backup File Created:'.$sql_file_path);
304
- return true;
 
 
305
  }
306
 
307
  public function run_sql_exec($sql_file,$with_mysqlpath=false) {
@@ -375,67 +404,72 @@ class WPBackItUp_SQL {
375
  return true;
376
  }
377
 
378
- public function run_sql_manual_OLD($sql_file) {
379
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Execute:' .$sql_file);
380
-
381
- //Is the backup sql file empty
382
- if (!file_exists($sql_file) || filesize($sql_file)<=0) {
383
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL File was empty:' .$sql_file);
384
- return false;
385
- }
386
-
387
- $query = file_get_contents($sql_file);
388
- if (empty($query)) return false;
389
-
390
- try {
391
-
392
- $mysqli = $this->get_sqlconnection();
393
- $mysqli->set_charset('utf8');
394
-
395
- if (false===$mysqli) {
396
- return false;
397
- }
398
-
399
- $ctr=1;
400
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'0: here ');
401
- if($mysqli->multi_query($query))
402
- {
403
- do {
404
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'1: ' .$ctr++);
405
- /* store first result set */
406
- if($resultSet = $mysqli->store_result())
407
- {
408
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'2: ');
409
-
410
- while($row = $resultSet->fetch_row())
411
- {
412
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'3: ');
413
- }
414
- $resultSet->free();
415
- }
416
-
417
- if (!$mysqli->more_results()) break; //All done
418
-
419
- } while ($mysqli->next_result());
420
-
421
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'4: ');
422
- $mysqli->close();
423
- }
424
-
425
- }catch(Exception $e) {
426
- WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Exception: ' .$e);
427
- return false;
428
- }
429
-
430
- //Success
431
- WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Executed successfully:' .$sql_file);
432
- return true;
433
- }
434
 
435
  function run_sql_manual($sql_file_path, $delimiter = ';')
436
  {
437
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Execute:' .$sql_file_path);
438
 
 
 
 
 
 
439
  //Is the backup sql file empty
440
  if (!file_exists($sql_file_path) || filesize($sql_file_path)<=0) {
441
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL File was empty:' .$sql_file_path);
@@ -451,14 +485,15 @@ class WPBackItUp_SQL {
451
  {
452
  $query = array();
453
 
454
- $mysqli = $this->get_sqlconnection();
455
- $mysqli->set_charset('utf8');
456
- // $mysqli->autocommit(FALSE);
457
- // $mysqli->begin_transaction();
 
458
 
459
- if (false===$mysqli) {
460
- return false;
461
- }
462
 
463
  $error_count=0;
464
  $total_query=0;
@@ -522,7 +557,12 @@ class WPBackItUp_SQL {
522
  return false;
523
  }
524
 
525
- private function get_sqlconnection() {
 
 
 
 
 
526
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Get SQL connection to database.');
527
  $db_name = DB_NAME;
528
  $db_user = DB_USER;
@@ -532,7 +572,15 @@ class WPBackItUp_SQL {
532
 
533
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Host:' . $db_host);
534
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Port:' . $db_port);
535
-
 
 
 
 
 
 
 
 
536
  if (false===$db_port){
537
  $mysqli = new mysqli($db_host , $db_user , $db_pass , $db_name);
538
  }
@@ -544,7 +592,9 @@ class WPBackItUp_SQL {
544
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Cannot connect to database.' . $mysqli->connect_error);
545
  return false;
546
  }
547
- return $mysqli;
 
 
548
  }
549
 
550
  private function get_hostonly($db_host) {
@@ -571,7 +621,14 @@ class WPBackItUp_SQL {
571
  //Get SQL scalar value
572
  public function get_sql_scalar($sql){
573
  $value='';
574
- if ($result = mysqli_query($this->connection, $sql)) {
 
 
 
 
 
 
 
575
  while ($row = mysqli_fetch_row($result)) {
576
  $value = $row[0];
577
  }
@@ -582,7 +639,13 @@ class WPBackItUp_SQL {
582
 
583
  //Run SQL command
584
  public function run_sql_command($sql){
585
- if(!mysqli_query($this->connection, $sql) ) {
 
 
 
 
 
 
586
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Error:SQL Command Failed:' .$sql);
587
  return false;
588
  }
19
  class WPBackItUp_SQL {
20
 
21
  private $log_name;
22
+ private $mysqli; //use getter
23
 
24
  function __construct($log_name) {
25
  try {
33
  }
34
  }
35
 
36
+ $this->mysqli = $this->get_mysqli();
37
 
38
  } catch(Exception $e) {
39
  error_log($e);
43
 
44
  function __destruct() {
45
  // Close the connection
46
+ $this->mysqli->close() ;
47
  }
48
 
49
  public function mysqldump_export($sql_file_path,$with_mysqlpath=false) {
76
 
77
  //If multi-site install then just backup the tables for current install.
78
  $tables='';
79
+ $sql = 'SHOW TABLES';
80
+
81
+ //dont think we should do this
82
+ // if (is_multisite()){
83
+ // $sql = sprintf('SHOW TABLES like \'%s%%\' ',$wpdb->prefix);
84
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'tables:' . $sql);
85
+ // }
86
+
87
+ $mysqli = $this->get_mysqli();
88
+ if (false === $mysqli) {
89
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
90
+ return false;
91
+ }
92
 
93
+ $result = $mysqli->query($sql);
94
+ // Cycle through "$result" and put content into an array
95
+ while ($row = $result->fetch_row()) {
96
+ $table=$row[0];
97
+ $tables_list[] = $table;
98
+ WPBackItUp_LoggerV2::log($this->log_name,$table);
99
+ }
100
+
101
+ if (is_array($tables_list)){
102
+ $tables = implode( " ", $tables_list);
103
+ }else{
104
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No tables found.');
105
+ return false;
106
  }
107
 
108
  $command .=
159
  public function get_table_rows() {
160
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Begin');
161
 
162
+ $mysqli = $this->get_mysqli();
163
  if (false === $mysqli) {
164
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
165
  return false;
175
  $tables[] = array("table_name" => $row[0], 'table_rows' => $row[1]) ;
176
  }
177
 
178
+ mysqli_free_result($result);
179
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'End');
180
  return $tables;
181
  }
183
  public function manual_export($sql_file_path) {
184
  global $wpdb;
185
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Manually Create SQL Backup File:'.$sql_file_path);
 
 
 
186
 
187
+ try{
188
+ $mysqli = $this->get_mysqli();
189
+ if (false===$mysqli) {
190
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
191
+ return false;
192
+ }
193
 
194
+ $mysqli->set_charset('utf8');
195
+ //open the SQL file
196
+ $handle = fopen($sql_file_path,'w+');
197
+ if (false===$handle) {
198
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'File could not be opened.');
199
+ return false;
200
+ }
201
+
202
+
203
+ // Script Header Information
204
+ $return = '';
205
+ $return .= "-- ------------------------------------------------------\n";
206
+ $return .= "-- ------------------------------------------------------\n";
207
+ $return .= "--\n";
208
+ $return .= "-- WP BackItUp Manual Database Backup \n";
209
+ $return .= "--\n";
210
+ $return .= '-- Created: ' . date("Y/m/d") . ' on ' . date("h:i") . "\n";
211
+ $return .= "--\n";
212
+ $return .= "-- Database : " . DB_NAME . "\n";
213
+ $return .= "--\n";
214
+ $return .= "-- ------------------------------------------------------\n";
215
+ $return .= "-- ------------------------------------------------------\n";
216
+ $return .= 'SET AUTOCOMMIT = 0 ;' ."\n" ;
217
+ $return .= 'SET FOREIGN_KEY_CHECKS=0 ;' ."\n" ;
218
+ $return .= "\n";
219
+ $return .= '/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;' ."\n" ;
220
+ $return .= '/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;' ."\n" ;
221
+ $return .= '/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;' ."\n" ;
222
+ $return .= '/*!40101 SET NAMES utf8 */;' ."\n" ;
223
+
224
+ fwrite($handle,$return); //Write to file
225
+
226
+ $tables = array() ;
227
+
228
+ //If multisite install then just backup the tables for current install.
229
+ $sql = 'SHOW TABLES';
230
+
231
+ //DONT THINK WE SHOULD DO THIS
232
+ // if (is_multisite()){
233
+ // $sql .= sprintf(' like \'%s%%\' ',$wpdb->prefix);
234
+ // }
235
+
236
+ $result = $mysqli->query($sql);
237
+ if ($mysqli->error){
238
+ throw new Exception("MySQL error $mysqli->error <br> Query:<br> $sql", $mysqli->errno);
239
+ }
240
+
241
+ // Cycle through "$result" and put content into an array
242
+ while ($row = $result->fetch_row()) {
243
+ //filter out the inventory table, no need to backup
244
+ if (false===strpos($row[0], 'wpbackitup_job')){
245
+ $tables[] = $row[0];
246
+ }
247
+ }
248
+ mysqli_free_result($result);
249
 
250
+ // Cycle through each table
251
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Generate script for each table.');
252
+ foreach($tables as $table) {
253
+ WPBackItUp_LoggerV2::log($this->log_name,$table);
254
 
255
+ // Get content of each table
256
+ $result = $mysqli->query('SELECT * FROM '. $table) ;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
 
258
+ // Get number of fields (columns) of each table
259
+ $num_fields = $mysqli->field_count ;
 
 
260
 
261
+ // Add table information
262
+ $return = "--\n" ;
263
+ $return .= '-- Table structure for table `' . $table . '`' . "\n" ;
264
+ $return .= "--\n" ;
265
+ $return .= 'DROP TABLE IF EXISTS `'.$table.'`;' . "\n" ;
266
 
267
+ // Get the table-shema
268
+ $schema = $mysqli->query('SHOW CREATE TABLE '.$table) ;
269
+
270
+ // Extract table shema
271
+ $tableschema = $schema->fetch_row() ;
272
+ mysqli_free_result($schema);
273
+
274
+ // Append table-shema into code
275
+ $return.= $tableschema[1].";" . "\n\n" ;
276
+
277
+ fwrite($handle,$return); //Write to file
278
+
279
+ // Cycle through each table-row
280
+ while($rowdata = $result->fetch_row()) {
281
+
282
+ $return = 'INSERT INTO '.$table.' VALUES(';
283
+ for($j=0; $j<$num_fields; $j++){
284
+ $rowdata[$j] = addslashes($rowdata[$j]);
285
+ $rowdata[$j] = str_replace("\n","\\n",$rowdata[$j]);
286
+
287
+ if (isset($rowdata[$j])) {
288
+ $return.= '"'.$rowdata[$j].'"' ;
289
+ } else {
290
+ if (is_null($rowdata[$j])) {
291
+ $return.= 'NULL';//Dont think this is working but not causing issues
292
+ } else {
293
+ $return.= '""';
294
+ }
295
+ }
296
+
297
+ if ($j<($num_fields-1)) { $return.= ','; }
298
+ }
299
+ $return.= ");\n";
300
+
301
+ fwrite($handle,$return); //Write to file
 
 
 
 
 
 
 
 
 
 
 
 
302
  }
 
303
 
304
+ $return= "\n\n" ;
305
  fwrite($handle,$return); //Write to file
306
+
307
+ mysqli_free_result($result);
308
  }
309
 
310
+ $return .= 'SET FOREIGN_KEY_CHECKS = 1 ; ' . "\n" ;
311
+ $return .= 'COMMIT ; ' . "\n" ;
312
+ $return .= 'SET AUTOCOMMIT = 1 ; ' . "\n" ;
313
 
314
+ //save file
315
+ //$handle = fopen($sql_file_path,'w+');
316
+ fwrite($handle,$return);
317
+ fclose($handle);
 
 
 
 
318
 
319
+ clearstatcache();
320
 
321
+ //Did the export work
322
+ if (!file_exists($sql_file_path) || filesize($sql_file_path)<=0) {
323
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL Export file was empty or didnt exist.');
324
+ return false;
325
+ }
326
+
327
+ WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Backup File Created:'.$sql_file_path);
328
+ return true;
329
 
330
+ }catch(Exception $e) {
331
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Exception: ' .$e);
332
+ return false;
333
+ }
334
  }
335
 
336
  public function run_sql_exec($sql_file,$with_mysqlpath=false) {
404
  return true;
405
  }
406
 
407
+ // public function run_sql_manual_OLD($sql_file) {
408
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Execute:' .$sql_file);
409
+ //
410
+ // //Is the backup sql file empty
411
+ // if (!file_exists($sql_file) || filesize($sql_file)<=0) {
412
+ // WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL File was empty:' .$sql_file);
413
+ // return false;
414
+ // }
415
+ //
416
+ // $query = file_get_contents($sql_file);
417
+ // if (empty($query)) return false;
418
+ //
419
+ // try {
420
+ //
421
+ // $mysqli = $this->get_mysqli();
422
+ // $mysqli->set_charset('utf8');
423
+ //
424
+ // if (false===$mysqli) {
425
+ // return false;
426
+ // }
427
+ //
428
+ // $ctr=1;
429
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'0: here ');
430
+ // if($mysqli->multi_query($query))
431
+ // {
432
+ // do {
433
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'1: ' .$ctr++);
434
+ // /* store first result set */
435
+ // if($resultSet = $mysqli->store_result())
436
+ // {
437
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'2: ');
438
+ //
439
+ // while($row = $resultSet->fetch_row())
440
+ // {
441
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'3: ');
442
+ // }
443
+ // $resultSet->free();
444
+ // }
445
+ //
446
+ // if (!$mysqli->more_results()) break; //All done
447
+ //
448
+ // } while ($mysqli->next_result());
449
+ //
450
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'4: ');
451
+ // $mysqli->close();
452
+ // }
453
+ //
454
+ // }catch(Exception $e) {
455
+ // WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Exception: ' .$e);
456
+ // return false;
457
+ // }
458
+ //
459
+ // //Success
460
+ // WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Executed successfully:' .$sql_file);
461
+ // return true;
462
+ // }
463
 
464
  function run_sql_manual($sql_file_path, $delimiter = ';')
465
  {
466
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'SQL Execute:' .$sql_file_path);
467
 
468
+ // Assuming set time limit don't directly work for class file.
469
+ if(!ini_get('safe_mode')){
470
+ @set_time_limit(0);
471
+ }
472
+
473
  //Is the backup sql file empty
474
  if (!file_exists($sql_file_path) || filesize($sql_file_path)<=0) {
475
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Failure: SQL File was empty:' .$sql_file_path);
485
  {
486
  $query = array();
487
 
488
+ $mysqli = $this->get_mysqli();
489
+ if (false === $mysqli) {
490
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
491
+ return false;
492
+ }
493
 
494
+ $mysqli->set_charset('utf8');
495
+ // $mysqli->autocommit(FALSE);
496
+ // $mysqli->begin_transaction();
497
 
498
  $error_count=0;
499
  $total_query=0;
557
  return false;
558
  }
559
 
560
+ /**
561
+ * Fetch active connection or create a new one
562
+ *
563
+ * @return bool|mysqli
564
+ */
565
+ private function get_mysqli() {
566
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Get SQL connection to database.');
567
  $db_name = DB_NAME;
568
  $db_user = DB_USER;
572
 
573
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Host:' . $db_host);
574
  WPBackItUp_LoggerV2::log_info($this->log_name,__METHOD__,'Port:' . $db_port);
575
+
576
+ //is the connection an object & responds to a ping
577
+ if (is_object($this->mysqli)){
578
+ if (true === $this->mysqli->ping()) {
579
+ return $this->mysqli;
580
+ }
581
+ }
582
+
583
+ //create a new connection
584
  if (false===$db_port){
585
  $mysqli = new mysqli($db_host , $db_user , $db_pass , $db_name);
586
  }
592
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Cannot connect to database.' . $mysqli->connect_error);
593
  return false;
594
  }
595
+
596
+ $this->mysqli = $mysqli;
597
+ return $this->mysqli;
598
  }
599
 
600
  private function get_hostonly($db_host) {
621
  //Get SQL scalar value
622
  public function get_sql_scalar($sql){
623
  $value='';
624
+
625
+ $mysqli = $this->get_mysqli();
626
+ if (false === $mysqli) {
627
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
628
+ return false;
629
+ }
630
+
631
+ if ($result = mysqli_query($mysqli, $sql)) {
632
  while ($row = mysqli_fetch_row($result)) {
633
  $value = $row[0];
634
  }
639
 
640
  //Run SQL command
641
  public function run_sql_command($sql){
642
+ $mysqli = $this->get_mysqli();
643
+ if (false === $mysqli) {
644
+ WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'No SQL Connection');
645
+ return false;
646
+ }
647
+
648
+ if(!mysqli_query($mysqli, $sql) ) {
649
  WPBackItUp_LoggerV2::log_error($this->log_name,__METHOD__,'Error:SQL Command Failed:' .$sql);
650
  return false;
651
  }
lib/includes/class-wpbackitup-admin.php CHANGED
@@ -16,26 +16,26 @@ class WPBackitup_Admin {
16
  public $friendly_name = WPBACKITUP__FRIENDLY_NAME;
17
  public $version = WPBACKITUP__VERSION;
18
 
19
- const DB_VERSION = 1;
20
 
21
  private static $instance = false;
22
 
23
  //Use Getters
24
- private $license_key;//Loaded in getter
25
  private $license_type; //Loaded in getter
26
- private $license_expires;
27
 
28
- private $license_active;//Loaded in getter
29
- private $license_status;//Loaded in getter
30
- private $license_status_message;//Loaded in getter
31
  private $license_type_description; //Getter will load
32
 
33
  private $backup_retained_number; //Getter will load
34
- private $notification_email;//Getter will load
35
- private $logging;//Getter will load
36
 
37
- private $backup_count; //getter will load
38
- private $successful_backup_count;
39
 
40
  public $backup_type;
41
 
@@ -104,7 +104,11 @@ class WPBackitup_Admin {
104
  private function _add_hooks() {
105
 
106
  // Options page for configuration
107
- add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
 
 
 
 
108
 
109
  // Route requests for form processing
110
  add_action( 'admin_init', array( &$this, 'route' ) );
@@ -118,6 +122,9 @@ class WPBackitup_Admin {
118
  //Update
119
  add_action( 'plugins_loaded', array( $this, 'maybe_update' ), 1 );
120
 
 
 
 
121
  //Load the backup action
122
  add_action('wp_ajax_wp-backitup_backup', array( &$this, 'ajax_queue_backup' ));
123
 
@@ -163,7 +170,7 @@ class WPBackitup_Admin {
163
  *
164
  */
165
  public function admin_menu() {
166
-
167
  // add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
168
  add_menu_page( $this->friendly_name, $this->friendly_name, 'administrator', $this->namespace, array( &$this, 'admin_backup_page' ), WPBACKITUP__PLUGIN_URL .'/images/icon.png', 77);
169
 
@@ -171,7 +178,7 @@ class WPBackitup_Admin {
171
  add_submenu_page( $this->namespace, __('Backup', WPBACKITUP__NAMESPACE), __('Backup',WPBACKITUP__NAMESPACE), 'administrator', $this->namespace.'-backup', array( &$this, 'admin_backup_page' ) );
172
 
173
  //Add Restore Menu Nav IF licensed
174
- if ($this->license_type()!=0) {
175
  add_submenu_page( $this->namespace, __('Restore', WPBACKITUP__NAMESPACE), __('Restore',WPBACKITUP__NAMESPACE), 'administrator', $this->namespace.'-restore', array( &$this, 'admin_restore_page' ) );
176
  }
177
 
@@ -366,6 +373,7 @@ class WPBackitup_Admin {
366
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-logger.php' );
367
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-loggerV2.php' );
368
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-job-v2.php' );
 
369
 
370
  $languages_path = dirname(dirname(dirname( plugin_basename( __FILE__ )))) . '/languages/';
371
 
@@ -376,6 +384,9 @@ class WPBackitup_Admin {
376
  );
377
  }
378
 
 
 
 
379
  public function wpbackitup_queue_scheduled_jobs(){
380
  $scheduled_jobs_logname = 'debug_scheduled_jobs';
381
  WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Begin');
@@ -389,13 +400,25 @@ class WPBackitup_Admin {
389
  }
390
 
391
  //Include Job class
392
- if( !class_exists( 'WPBackItUp_Job' ) ) {
393
- include_once 'class-job.php';
394
  }
395
 
 
 
 
 
 
 
 
 
 
 
 
 
396
 
397
- //If any jobs are queued or active then just exit
398
- if (WPBackItUp_Job::is_job_queued('backup')) {
399
 
400
  if(!wp_next_scheduled( 'wpbackitup_run_backup_tasks' ) ) {
401
  wp_schedule_single_event( time(), 'wpbackitup_run_backup_tasks' );
@@ -405,8 +428,8 @@ class WPBackitup_Admin {
405
  exit;
406
  }
407
 
408
- //Check cleanup jobs
409
- if (WPBackItUp_Job::is_job_queued('cleanup')) {
410
 
411
  if(!wp_next_scheduled( 'wpbackitup_run_cleanup_tasks' ) ) {
412
  wp_schedule_single_event( time(), 'wpbackitup_run_cleanup_tasks' );
@@ -416,42 +439,49 @@ class WPBackitup_Admin {
416
  exit;
417
  }
418
 
419
- //If any jobs are queued or active then just exit
420
- if (WPBackItUp_Job::is_job_queued('restore')) {
421
- WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Restore Job already Queued');
422
- exit;
423
- }
424
 
425
  WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'No jobs already queued.');
426
 
427
- //Is it time for a backup?
428
- //Check scheduler and queue tasks that need to be run
429
  $scheduler = new WPBackItUp_Scheduler();
430
- if ( $scheduler->isTaskScheduled( 'backup' ) ) {
431
 
432
- $backup_job = WPBackItUp_Job::queue_job( 'backup' );
 
 
 
 
 
 
 
 
433
 
434
  //Setup the job run event
435
  if(!wp_next_scheduled( 'wpbackitup_run_backup_tasks' ) ) {
436
  wp_schedule_single_event( time(), 'wpbackitup_run_backup_tasks' );
437
  }
438
 
439
- WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Backup job queued to run.');
440
  exit( 0 ); //success - don't schedule anything else
441
  }
442
 
443
- //Is it time for a cleanup
444
- //Check scheduler and queue tasks that need to be run
445
- if ( $scheduler->isTaskScheduled( 'cleanup' ) && !WPBackItUp_Job::is_job_queued('backup') ) {
446
 
447
- $cleanup_job = WPBackItUp_Job::queue_job( 'cleanup' );
 
 
 
 
 
 
448
 
449
  //Setup the job run event
450
  if(!wp_next_scheduled( 'wpbackitup_run_cleanup_tasks' ) ) {
451
  wp_schedule_single_event( time(), 'wpbackitup_run_cleanup_tasks' );
452
  }
453
 
454
- WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Cleanup job queued to run.');
455
  exit( 0 ); //success - don't schedule anything else
456
  }
457
 
@@ -460,7 +490,10 @@ class WPBackitup_Admin {
460
  exit(0); //success nothing to schedule
461
  }
462
 
463
- //Run queue manual backup
 
 
 
464
  public function ajax_queue_backup() {
465
  // Check permissions
466
  if (! self::is_authorized()) exit('Access denied.');
@@ -469,20 +502,24 @@ class WPBackitup_Admin {
469
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'Begin');
470
 
471
  //Include Job class
472
- if( !class_exists( 'WPBackItUp_Job' ) ) {
473
- include_once 'class-job.php';
474
  }
475
 
476
  $rtnData = new stdClass();
477
- //If no backup queued already then queue one
478
- if (!WPBackItUp_Job::is_job_queued('backup')){
479
- if (WPBackItUp_Job::queue_job('backup')){
 
 
480
  $rtnData->message = __('Backup Queued', WPBACKITUP__NAMESPACE);
481
  }else {
 
482
  $rtnData->message = __('Backup could not be queued', WPBACKITUP__NAMESPACE);
483
  }
484
  }else{
485
- $rtnData->message = __('Backup already in queue', WPBACKITUP__NAMESPACE);
 
486
  }
487
 
488
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'RtnData:' .$rtnData->message);
@@ -491,30 +528,11 @@ class WPBackitup_Admin {
491
  exit;
492
  }
493
 
494
- //Run queue cancel backup backup
495
- public function ajax_queue_cancel_backup() {
496
- // Check permissions
497
- if (! self::is_authorized()) exit('Access denied.');
498
-
499
- $events_logname='debug_events';
500
- WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'Begin');
501
-
502
- $rtnData = new stdClass();
503
- // Cancel all backup
504
- WPBackItUp_Job_v2::cancel_all_jobs('backup');
505
- // Set status for ui
506
- include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/job_backup_cancelled.php' );
507
-
508
- $rtnData->message = __('Backup Cancelled', WPBACKITUP__NAMESPACE);
509
-
510
- WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'RtnData:' .$rtnData->message);
511
- WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'End');
512
- echo json_encode($rtnData);
513
- exit;
514
- }
515
-
516
- //Run queue manual restore
517
- public function ajax_queue_restore() {
518
  $rtnData = new stdClass();
519
 
520
  // Check permissions
@@ -524,9 +542,10 @@ class WPBackitup_Admin {
524
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'Begin');
525
 
526
  //Include Job class
527
- if( !class_exists( 'WPBackItUp_Job' ) ) {
528
- include_once 'class-job.php';
529
- }
 
530
 
531
  $validation_error=false;
532
  //Get posted values
@@ -544,19 +563,30 @@ class WPBackitup_Admin {
544
  }
545
 
546
  //If no job queued already then queue one
547
- if (! $validation_error){
548
- if (! WPBackItUp_Job::is_job_queued('restore')){
549
- $job=WPBackItUp_Job::queue_job('restore');
550
- if ($job!== false){
551
- $job->update_job_meta('backup_name',$backup_file_name);
552
- $job->update_job_meta('user_id',$user_id);
553
- $rtnData->message = __('Restore Queued', WPBACKITUP__NAMESPACE);
554
- }else {
555
- $rtnData->message = __('Restore could not be queued', WPBACKITUP__NAMESPACE);
556
- }
557
- }else{
558
- $rtnData->message = __('Restore already in queue', WPBACKITUP__NAMESPACE);
559
- }
 
 
 
 
 
 
 
 
 
 
 
560
  }
561
 
562
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'RtnData:' .$rtnData->message);
@@ -565,66 +595,64 @@ class WPBackitup_Admin {
565
  exit;
566
  }
567
 
568
- //Run scheduled backup tasks
569
- function wpbackitup_run_backup_tasks(){
 
 
570
 
571
- // Check permissions
572
- if (! self::is_authorized()) exit('Access denied.');
573
 
574
- $process_id = uniqid();
 
575
 
576
- $events_logname = 'debug_events';
577
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Begin');
 
578
 
579
- //Try Run Next Backup Tasks
580
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Try Run Backup Task');
581
 
582
- $this->backup_type='scheduled';
583
- include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/job_backup.php' );
 
584
 
585
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'End Try Run Backup Task');
 
 
 
586
 
587
- exit(0);
588
- }
589
 
590
- //Run scheduled backup tasks
591
- function wpbackitup_run_cleanup_tasks(){
 
 
 
592
  // Check permissions
593
  if (! self::is_authorized()) exit('Access denied.');
594
 
595
- $process_id = uniqid();
596
-
597
- $events_logname='debug_events';
598
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Begin');
599
-
600
- //Try Run Next Backup Tasks
601
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Try Run cleanup Task');
602
 
603
- $this->backup_type='scheduled';
604
- include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/job_cleanup.php' );
605
-
606
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'End Try Run cleanup Task');
607
-
608
- exit;
609
  }
610
 
 
 
 
 
611
 
612
- // public function ajax_get_restore_status() {
613
- // // Check permissions
614
- // if (! self::is_authorized()) exit('Access denied.');
615
- //
616
- // $log = WPBACKITUP__PLUGIN_PATH .'/logs/restore_status.log';
617
- // if(file_exists($log) ) {
618
- // readfile($log);
619
- // }
620
- // exit;
621
- // }
622
 
 
 
 
623
 
624
  /**
625
- * Return the backup status and try run tasks
 
626
  */
627
  public function ajax_get_backup_status() {
 
 
628
  // Check permissions
629
  if (! self::is_authorized()) exit('Access denied.');
630
 
@@ -633,35 +661,22 @@ class WPBackitup_Admin {
633
 
634
  //Check permissions
635
  if ( current_user_can( 'manage_options' ) ) {
636
- //echo('RUNNING BACKUP');
637
-
638
- $process_id = uniqid();
639
-
640
-
641
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Begin');
642
 
643
- //Try Run Next Backup Tasks
644
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Try Run Backup Task');
645
-
646
- $this->backup_type='manual';
647
- include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/job_backup.php' );
648
-
649
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'End Try Run Backup Task');
650
 
651
  //return status
652
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/backup_status.log';
653
  if(file_exists($log) ) {
654
  //Probably should use the database instead now.
655
  readfile($log);
656
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Status sent to browser.');
657
  }
658
  }
659
 
660
- exit;
661
  }
662
 
663
  /**
664
- * Return the restore status and try run tasks
 
665
  */
666
  public function ajax_get_restore_status() {
667
  //@session_start();
@@ -675,43 +690,39 @@ class WPBackitup_Admin {
675
 
676
  //Check permissions
677
  if ( current_user_can( 'manage_options' ) ) {
678
- global $restore_job,$process_id;
679
- $process_id = uniqid();
680
-
681
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Begin');
682
- $this->backup_type='manual';
683
-
684
- //Is there a restore job available and is it already running
685
- $restore_job = WPBackItUp_Job_v2::get_current_job('restore');
686
- if (false!==$restore_job && $restore_job->get_lock('restore-lock')) {
687
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Job Lock Acquired.');
688
-
689
- //Try Run Next Backup Tasks
690
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Try Run restore task');
691
- include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/job_restore.php' );
692
- $restore_job->release_lock();
693
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'End Try Run Backup Task');
694
- }else{
695
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Job Lock NOT Acquired.');
696
- }
697
 
698
- //return status
 
699
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/restore_status.log';
700
  if(file_exists($log) ) {
701
  //Probably should use the database instead now.
702
  readfile($log);
703
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'Status sent to browser.');
704
  }
705
  }
706
 
707
- WPBackItUp_LoggerV2::log_info($events_logname,$process_id, 'End');
708
- exit(0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  }
710
 
711
  public function plupload_action() {
712
  // Check permissions
713
  if (! self::is_authorized()) exit('Access denied.');
714
 
 
715
  include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/handler_upload.php' );
716
  }
717
 
@@ -754,6 +765,7 @@ class WPBackitup_Admin {
754
  $delete_logname='debug_delete';
755
 
756
  $backup_folder_name = str_replace('deleteRow', '', $_POST['filed']);
 
757
 
758
  $backup_folder_path = WPBACKITUP__BACKUP_PATH .'/' . $backup_folder_name;
759
  $DLT_backup_folder_path = WPBACKITUP__BACKUP_PATH .'/DLT_' . $backup_folder_name .'_' . current_time( 'timestamp' );
@@ -761,8 +773,16 @@ class WPBackitup_Admin {
761
  WPBackItUp_LoggerV2::log_info($delete_logname,__METHOD__, 'From:'.$backup_folder_path );
762
  WPBackItUp_LoggerV2::log_info($delete_logname,__METHOD__, 'To:'.$DLT_backup_folder_path );
763
 
 
 
 
 
 
 
 
 
764
  //Mark the folder deleted so cleanup will handle
765
- if (file_exists ($backup_folder_path)){
766
 
767
  if( !class_exists( 'WPBackItUp_FileSystem' ) ) {
768
  include_once 'class-filesystem.php';
@@ -944,6 +964,7 @@ class WPBackitup_Admin {
944
  *
945
  */
946
  public function _admin_send_support_request() {
 
947
  // Verify submission for processing using wp_nonce
948
 
949
  $url= str_replace('&s=1','',$_REQUEST['_wp_http_referer']);
@@ -1047,6 +1068,8 @@ class WPBackitup_Admin {
1047
 
1048
  $site_info = 'WordPress Site: <a href="' . home_url() . '" target="_blank">' . home_url() .'</a><br/>';
1049
  $site_info .="WordPress Version: " . get_bloginfo( 'version') .' <br />';
 
 
1050
  $site_info .="WP BackItUp License Type: " . $this->license_type_description() .' <br />';
1051
  $site_info .="WP BackItUp Version: " . $this->version .' <br />';
1052
 
@@ -1197,28 +1220,6 @@ class WPBackitup_Admin {
1197
 
1198
  }
1199
 
1200
-
1201
- /**
1202
- * Getter - license key
1203
- */
1204
- public function license_key(){
1205
- return $this->get('license_key');
1206
- }
1207
-
1208
- /**
1209
- * Getter - license status message
1210
- */
1211
- public function license_status_message(){
1212
- return $this->get('license_status_message');
1213
- }
1214
-
1215
- /**
1216
- * Getter - license expires
1217
- */
1218
- public function license_expires(){
1219
- return $this->get('license_expires');
1220
- }
1221
-
1222
  /**
1223
  * Getter - notification email
1224
  */
@@ -1259,32 +1260,67 @@ class WPBackitup_Admin {
1259
  return $this->get('backup_others_batch_size');
1260
  }
1261
 
 
 
 
 
 
 
1262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
 
1264
  /**
1265
  * Getter - license active - derived property
 
 
 
1266
  */
1267
  public function license_active(){
1268
- //echo('</br>license Active Value1:' .$this->license_active);
1269
-
1270
- if (empty($this->license_active)) {
1271
- //echo('</br>SET PROP');
1272
 
1273
- $this->license_active = false;//default
1274
 
1275
- $license_key = $this->license_key();
1276
  $license_status = $this->license_status();
1277
 
1278
- //Allow expired licenses to be active for now
1279
- if(false !== $license_key && false !== $license_status) {
1280
- if ('valid'== $license_status || 'expired'== $license_status) {
1281
- $this->license_active= true;
1282
- }
1283
- }
1284
- }
1285
 
1286
- //echo('</br>license Active Value2:' .$this->license_active);
1287
- return $this->license_active;
1288
  }
1289
 
1290
  /**
@@ -1302,6 +1338,21 @@ class WPBackitup_Admin {
1302
  return $this->get('license_type');
1303
  }
1304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1305
  /**
1306
  * Getter - license type description - derived property
1307
  */
@@ -1513,25 +1564,25 @@ class WPBackitup_Admin {
1513
  */
1514
  public function check_license($force_check=false){
1515
  $license_key=$this->license_key();
1516
- //echo "</br>License Key:" .$license_key;
1517
 
1518
  $license_last_check_date=$this->get_option('license_last_check_date');
1519
 
1520
  //Validate License once per day
1521
  $license_last_check_date = new DateTime($license_last_check_date);
1522
- //echo($license_last_check_date->format('Y-m-d H:i:s') .'</br>');
1523
 
1524
  $now = new DateTime('now');//Get NOW
1525
  $yesterday = $now->modify('-1 day');//subtract a day
1526
  //$yesterday = $now->sub(new DateInterval('P1D'));//subtract a day PHP 3.0 only
1527
- //echo($yesterday->format('Y-m-d H:i:s') .'</br>');
1528
 
1529
  //Validate License
 
1530
  if ($license_last_check_date<$yesterday || $force_check)
1531
  {
1532
- //echo "Validate License";
1533
  $this->update_license_options($license_key);
1534
- //$this->update_stats($license_key);
1535
  }
1536
  }
1537
 
@@ -1640,6 +1691,9 @@ class WPBackitup_Admin {
1640
  }
1641
  }
1642
 
 
 
 
1643
  //EDD sends back expired in the error
1644
  if (($license_data->license=='invalid')) {
1645
  $data['license_status_message'] = __('License is invalid.', WPBACKITUP__NAMESPACE);
@@ -1648,12 +1702,43 @@ class WPBackitup_Admin {
1648
  if ($license_data->error == 'expired') {
1649
  $data['license_status'] = 'expired';
1650
  $data['license_status_message'] = __('License has expired.', WPBACKITUP__NAMESPACE);
1651
- WPBackItUp_LoggerV2::log_info($activation_logname,__METHOD__, 'Expire License.' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1652
  }
1653
 
1654
  if ( ( $license_data->error == 'no_activations_left' ) ) {
1655
  $data['license_status_message'] = __('Activation limit has been reached.', WPBACKITUP__NAMESPACE);
 
 
 
 
 
 
 
 
1656
  }
 
 
 
1657
  }
1658
  }
1659
 
@@ -1846,6 +1931,85 @@ class WPBackitup_Admin {
1846
 
1847
  /* --------------------- PRIVATES -----------------------------------------*/
1848
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1849
  /**
1850
  * Update statistics
1851
  */
16
  public $friendly_name = WPBACKITUP__FRIENDLY_NAME;
17
  public $version = WPBACKITUP__VERSION;
18
 
19
+ const DB_VERSION = WPBACKITUP__DB_VERSION;
20
 
21
  private static $instance = false;
22
 
23
  //Use Getters
24
+ //private $license_key;//Loaded in getter
25
  private $license_type; //Loaded in getter
26
+ //private $license_expires;
27
 
28
+ //private $license_active;//Loaded in getter
29
+ //private $license_status;//Loaded in getter
30
+ //private $license_status_message;//Loaded in getter
31
  private $license_type_description; //Getter will load
32
 
33
  private $backup_retained_number; //Getter will load
34
+ //private $notification_email;//Getter will load
35
+ //private $logging;//Getter will load
36
 
37
+ //private $backup_count; //getter will load
38
+ //private $successful_backup_count;
39
 
40
  public $backup_type;
41
 
104
  private function _add_hooks() {
105
 
106
  // Options page for configuration
107
+ if( is_multisite() ) {
108
+ add_action( 'network_admin_menu', array( &$this, 'admin_menu' ) );
109
+ } else {
110
+ add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
111
+ }
112
 
113
  // Route requests for form processing
114
  add_action( 'admin_init', array( &$this, 'route' ) );
122
  //Update
123
  add_action( 'plugins_loaded', array( $this, 'maybe_update' ), 1 );
124
 
125
+ // delete transient
126
+ add_action('wp_ajax_wp-backitup_delete_transient', array( &$this,'ajax_queue_delete_transient'));
127
+
128
  //Load the backup action
129
  add_action('wp_ajax_wp-backitup_backup', array( &$this, 'ajax_queue_backup' ));
130
 
170
  *
171
  */
172
  public function admin_menu() {
173
+
174
  // add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
175
  add_menu_page( $this->friendly_name, $this->friendly_name, 'administrator', $this->namespace, array( &$this, 'admin_backup_page' ), WPBACKITUP__PLUGIN_URL .'/images/icon.png', 77);
176
 
178
  add_submenu_page( $this->namespace, __('Backup', WPBACKITUP__NAMESPACE), __('Backup',WPBACKITUP__NAMESPACE), 'administrator', $this->namespace.'-backup', array( &$this, 'admin_backup_page' ) );
179
 
180
  //Add Restore Menu Nav IF licensed
181
+ if (true===$this->license_active()) {
182
  add_submenu_page( $this->namespace, __('Restore', WPBACKITUP__NAMESPACE), __('Restore',WPBACKITUP__NAMESPACE), 'administrator', $this->namespace.'-restore', array( &$this, 'admin_restore_page' ) );
183
  }
184
 
373
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-logger.php' );
374
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-loggerV2.php' );
375
  require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-job-v2.php' );
376
+ require_once( WPBACKITUP__PLUGIN_PATH . '/lib/includes/class-task.php' );
377
 
378
  $languages_path = dirname(dirname(dirname( plugin_basename( __FILE__ )))) . '/languages/';
379
 
384
  );
385
  }
386
 
387
+ /**
388
+ * Queue scheduled jobs
389
+ */
390
  public function wpbackitup_queue_scheduled_jobs(){
391
  $scheduled_jobs_logname = 'debug_scheduled_jobs';
392
  WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Begin');
400
  }
401
 
402
  //Include Job class
403
+ if( !class_exists( 'WPBackItUp_Job_v2' ) ) {
404
+ include_once 'class-job-v2.php';
405
  }
406
 
407
+ //Include Job class
408
+ if( !class_exists( 'WPBackItUp_Backup' ) ) {
409
+ include_once 'class-backup.php';
410
+ }
411
+
412
+ //If any restore jobs are queued or active then just exit
413
+
414
+ //RESTORE
415
+ if (WPBackItUp_Job_v2::is_job_queued(WPBackItUp_Job_v2::RESTORE)){
416
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Restore Job already Queued');
417
+ exit;
418
+ }
419
 
420
+ //BACKUP
421
+ if (WPBackItUp_Job_v2::is_job_queued(WPBackItUp_Job_v2::BACKUP)){
422
 
423
  if(!wp_next_scheduled( 'wpbackitup_run_backup_tasks' ) ) {
424
  wp_schedule_single_event( time(), 'wpbackitup_run_backup_tasks' );
428
  exit;
429
  }
430
 
431
+ //CLEANUP
432
+ if (WPBackItUp_Job_v2::is_job_queued(WPBackItUp_Job_v2::CLEANUP)){
433
 
434
  if(!wp_next_scheduled( 'wpbackitup_run_cleanup_tasks' ) ) {
435
  wp_schedule_single_event( time(), 'wpbackitup_run_cleanup_tasks' );
439
  exit;
440
  }
441
 
 
 
 
 
 
442
 
443
  WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'No jobs already queued.');
444
 
445
+
446
+ //Check Scheduler
447
  $scheduler = new WPBackItUp_Scheduler();
 
448
 
449
+ //BACKUP
450
+ if ( $scheduler->isTaskScheduled(WPBackItUp_Job_v2::BACKUP) ) {
451
+ $job_id=time();
452
+ $job_name = sprintf('Backup_%s',$job_id);
453
+ if (WPBackItUp_Job_v2::queue_job($job_name,$job_id, WPBackItUp_Job_v2::BACKUP, WPBackItUp_Job_v2::$BACKUP_TASKS)){
454
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Scheduled backup queued.');
455
+ }else {
456
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Scheduled Backup could not be queued');
457
+ }
458
 
459
  //Setup the job run event
460
  if(!wp_next_scheduled( 'wpbackitup_run_backup_tasks' ) ) {
461
  wp_schedule_single_event( time(), 'wpbackitup_run_backup_tasks' );
462
  }
463
 
464
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Backup scheduled to run.');
465
  exit( 0 ); //success - don't schedule anything else
466
  }
467
 
468
+ //CLEANUP
469
+ if ( $scheduler->isTaskScheduled(WPBackItUp_Job_v2::CLEANUP)){
 
470
 
471
+ $job_id=time();
472
+ $job_name = sprintf('Cleanup_%s',$job_id);
473
+ if (WPBackItUp_Job_v2::queue_job($job_name,$job_id, WPBackItUp_Job_v2::CLEANUP, WPBackItUp_Job_v2::$CLEANUP_TASKS)){
474
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Scheduled cleanup queued.');
475
+ }else {
476
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Scheduled cleanup could not be queued');
477
+ }
478
 
479
  //Setup the job run event
480
  if(!wp_next_scheduled( 'wpbackitup_run_cleanup_tasks' ) ) {
481
  wp_schedule_single_event( time(), 'wpbackitup_run_cleanup_tasks' );
482
  }
483
 
484
+ WPBackItUp_LoggerV2::log_info($scheduled_jobs_logname,__METHOD__,'Cleanup scheduled to run.');
485
  exit( 0 ); //success - don't schedule anything else
486
  }
487
 
490
  exit(0); //success nothing to schedule
491
  }
492
 
493
+ /**
494
+ * Queue backup job - manual
495
+ *
496
+ */
497
  public function ajax_queue_backup() {
498
  // Check permissions
499
  if (! self::is_authorized()) exit('Access denied.');
502
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'Begin');
503
 
504
  //Include Job class
505
+ if( !class_exists( 'WPBackItUp_Backup' ) ) {
506
+ include_once 'class-backup.php';
507
  }
508
 
509
  $rtnData = new stdClass();
510
+ //If no jobs queued then queue one - dont want to run backup until others are done
511
+ if (!WPBackItUp_Job_v2::is_any_job_queued()){
512
+ $job_id=time();
513
+ $job_name = sprintf('Backup_%s',$job_id);
514
+ if (WPBackItUp_Job_v2::queue_job($job_name,$job_id, WPBackItUp_Job_v2::BACKUP, WPBackItUp_Job_v2::$BACKUP_TASKS)){
515
  $rtnData->message = __('Backup Queued', WPBACKITUP__NAMESPACE);
516
  }else {
517
+ //UI need to show this message
518
  $rtnData->message = __('Backup could not be queued', WPBACKITUP__NAMESPACE);
519
  }
520
  }else{
521
+ //UI needs to show this message
522
+ $rtnData->message = __('Job already in queue, please try again later', WPBACKITUP__NAMESPACE);
523
  }
524
 
525
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'RtnData:' .$rtnData->message);
528
  exit;
529
  }
530
 
531
+ /**
532
+ * Queue restore job - manual
533
+ *
534
+ */
535
+ public function ajax_queue_restore() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
536
  $rtnData = new stdClass();
537
 
538
  // Check permissions
542
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'Begin');
543
 
544
  //Include Job class
545
+ //Include Job class
546
+ if( !class_exists( 'WPBackItUp_Backup' ) ) {
547
+ include_once 'class-backup.php';
548
+ }
549
 
550
  $validation_error=false;
551
  //Get posted values
563
  }
564
 
565
  //If no job queued already then queue one
566
+ if (! $validation_error) {
567
+
568
+ //Cancel other jobs if already running
569
+ if (WPBackItUp_Job_v2::is_any_job_queued()) {
570
+ WPBackItUp_Job_v2::cancel_all_jobs( WPBackItUp_Job_v2::BACKUP );
571
+ WPBackItUp_Job_v2::cancel_all_jobs( WPBackItUp_Job_v2::CLEANUP );
572
+ }
573
+
574
+ //Check to see if restore queued
575
+ if (!WPBackItUp_Job_v2::is_job_queued(WPBackItUp_Job_v2::RESTORE) ) {
576
+ $job_id = time();
577
+ $job_name = sprintf( 'Restore_%s', $job_id );
578
+ $job = WPBackItUp_Job_v2::queue_job( $job_name, $job_id, WPBackItUp_Job_v2::RESTORE, WPBackItUp_Job_v2::$RESTORE_TASKS );
579
+ if ( false !== $job ) {
580
+ $job->update_job_meta( 'backup_name', $backup_file_name );
581
+ $job->update_job_meta( 'user_id', $user_id );
582
+ $rtnData->message = __( 'Restore Queued', WPBACKITUP__NAMESPACE );
583
+ } else {
584
+ $rtnData->message = __( 'Restore could not be queued', WPBACKITUP__NAMESPACE );
585
+ }
586
+
587
+ }else{
588
+ $rtnData->message = __('Restore already in queue', WPBACKITUP__NAMESPACE);
589
+ }
590
  }
591
 
592
  WPBackItUp_LoggerV2::log_info($events_logname,__METHOD__,'RtnData:' .$rtnData->message);
595
  exit;
596
  }
597
 
598
+ //Run queue cancel backup backup
599
+ public function ajax_queue_cancel_backup() {
600
+ // Check permissions
601
+ if (! self::is_authorized()) exit('Access denied.');
602
 
603
+ $process_id = uniqid();
604
+ $job_type=WPBackItUp_Job_v2::BACKUP;
605
 
606
+ $events_logname=sprintf('debug_%s_tasks',$job_type); //Set Log name
607
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) Begin Cancel Backup',$job_type));
608
 
609
+ $current_job = WPBackItUp_Job_v2::get_current_job($job_type);
610
+ if (false!==$current_job) {
611
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) Job found:',var_export($current_job,true)));
612
 
613
+ $current_job->set_job_status_cancelled();
 
614
 
615
+ $rtnData = new stdClass();
616
+ $rtnData->message = __('Backup Cancelled', WPBACKITUP__NAMESPACE);
617
+ echo json_encode($rtnData);
618
 
619
+ } else{
620
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) No jobs found.',$job_type));
621
+ }
622
+ }
623
 
 
 
624
 
625
+ /**
626
+ * Run cleanup tasks - scheduled
627
+ *
628
+ */
629
+ function wpbackitup_run_cleanup_tasks() {
630
  // Check permissions
631
  if (! self::is_authorized()) exit('Access denied.');
632
 
633
+ $this->run_tasks(WPBackItUp_Job_v2::CLEANUP,WPBackItUp_Job_v2::SCHEDULED);
 
 
 
 
 
 
634
 
 
 
 
 
 
 
635
  }
636
 
637
+ /**
638
+ * Run backup tasks - scheduled
639
+ */
640
+ function wpbackitup_run_backup_tasks(){
641
 
642
+ // Check permissions
643
+ if (! self::is_authorized()) exit('Access denied.');
 
 
 
 
 
 
 
 
644
 
645
+ $this->run_tasks(WPBackItUp_Job_v2::BACKUP,WPBackItUp_Job_v2::SCHEDULED);
646
+
647
+ }
648
 
649
  /**
650
+ * Run backup tasks and return status - manual
651
+ *
652
  */
653
  public function ajax_get_backup_status() {
654
+ @session_write_close();
655
+
656
  // Check permissions
657
  if (! self::is_authorized()) exit('Access denied.');
658
 
661
 
662
  //Check permissions
663
  if ( current_user_can( 'manage_options' ) ) {
 
 
 
 
 
 
664
 
665
+ $this->run_tasks(WPBackItUp_Job_v2::BACKUP,WPBackItUp_Job_v2::MANUAL);
 
 
 
 
 
 
666
 
667
  //return status
668
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/backup_status.log';
669
  if(file_exists($log) ) {
670
  //Probably should use the database instead now.
671
  readfile($log);
 
672
  }
673
  }
674
 
 
675
  }
676
 
677
  /**
678
+ * Run restore tasks and return status - manual
679
+ *
680
  */
681
  public function ajax_get_restore_status() {
682
  //@session_start();
690
 
691
  //Check permissions
692
  if ( current_user_can( 'manage_options' ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
 
694
+ $this->run_tasks(WPBackItUp_Job_v2::RESTORE,WPBackItUp_Job_v2::MANUAL);
695
+
696
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/restore_status.log';
697
  if(file_exists($log) ) {
698
  //Probably should use the database instead now.
699
  readfile($log);
 
700
  }
701
  }
702
 
703
+ }
704
+
705
+ /*
706
+ * Notification widget : delete
707
+ */
708
+ public function ajax_queue_delete_transient(){
709
+ $admin_notices = get_transient( 'wpbackitup_admin_notices' );
710
+ if( !(false === $admin_notices) ){
711
+ array_shift($admin_notices);
712
+ delete_transient( 'wpbackitup_admin_notices' );
713
+ set_transient( 'wpbackitup_admin_notices', $admin_notices , DAY_IN_SECONDS);
714
+ $admin_next_message = reset($admin_notices);
715
+ wp_send_json($admin_next_message);
716
+ }else{
717
+ wp_send_json(false);
718
+ }
719
  }
720
 
721
  public function plupload_action() {
722
  // Check permissions
723
  if (! self::is_authorized()) exit('Access denied.');
724
 
725
+ include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/class-filesystem.php' );
726
  include_once( WPBACKITUP__PLUGIN_PATH.'/lib/includes/handler_upload.php' );
727
  }
728
 
765
  $delete_logname='debug_delete';
766
 
767
  $backup_folder_name = str_replace('deleteRow', '', $_POST['filed']);
768
+ $post_id = isset($_POST['post_id']) ? intval($_POST['post_id']) : 0;
769
 
770
  $backup_folder_path = WPBACKITUP__BACKUP_PATH .'/' . $backup_folder_name;
771
  $DLT_backup_folder_path = WPBACKITUP__BACKUP_PATH .'/DLT_' . $backup_folder_name .'_' . current_time( 'timestamp' );
773
  WPBackItUp_LoggerV2::log_info($delete_logname,__METHOD__, 'From:'.$backup_folder_path );
774
  WPBackItUp_LoggerV2::log_info($delete_logname,__METHOD__, 'To:'.$DLT_backup_folder_path );
775
 
776
+ if($post_id) {
777
+ $post = array(
778
+ 'ID' => $post_id,
779
+ 'post_status' => 'deleted'
780
+ );
781
+ wp_update_post($post);
782
+ }
783
+
784
  //Mark the folder deleted so cleanup will handle
785
+ if (file_exists ($backup_folder_path)) {
786
 
787
  if( !class_exists( 'WPBackItUp_FileSystem' ) ) {
788
  include_once 'class-filesystem.php';
964
  *
965
  */
966
  public function _admin_send_support_request() {
967
+ global $wpdb;
968
  // Verify submission for processing using wp_nonce
969
 
970
  $url= str_replace('&s=1','',$_REQUEST['_wp_http_referer']);
1068
 
1069
  $site_info = 'WordPress Site: <a href="' . home_url() . '" target="_blank">' . home_url() .'</a><br/>';
1070
  $site_info .="WordPress Version: " . get_bloginfo( 'version') .' <br />';
1071
+ $site_info .="PHP Version: " . phpversion() .' <br />';
1072
+ $site_info .="MySQL Version: " . $wpdb->db_version() .' <br />';
1073
  $site_info .="WP BackItUp License Type: " . $this->license_type_description() .' <br />';
1074
  $site_info .="WP BackItUp Version: " . $this->version .' <br />';
1075
 
1220
 
1221
  }
1222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1223
  /**
1224
  * Getter - notification email
1225
  */
1260
  return $this->get('backup_others_batch_size');
1261
  }
1262
 
1263
+ /**
1264
+ * Getter - license key
1265
+ */
1266
+ public function license_key(){
1267
+ return $this->get('license_key');
1268
+ }
1269
 
1270
+ /**
1271
+ * Getter - license status message
1272
+ */
1273
+ public function license_status_message(){
1274
+ return $this->get('license_status_message');
1275
+ }
1276
+
1277
+ /**
1278
+ * Getter - license expires
1279
+ */
1280
+ public function license_expires(){
1281
+ return $this->get('license_expires');
1282
+ }
1283
+
1284
+
1285
+ /**
1286
+ * Is premium plugin and license 30 days past expiration
1287
+ *
1288
+ * @return bool
1289
+ */
1290
+ public function license_30_days_past_expire(){
1291
+
1292
+ //if premium customer
1293
+ if ($this->premium_license()) {
1294
+ $expiration_date = $this->license_expires();
1295
+ $expiration_plus_30 = date( 'Y-m-d', strtotime( "+30 days", strtotime( $expiration_date ) ) );
1296
+ $today = date( 'Y-m-d', time() );
1297
+
1298
+ if ( $today > $expiration_plus_30 ) {
1299
+ return true;
1300
+ }
1301
+ }
1302
+
1303
+ return false;
1304
+ }
1305
 
1306
  /**
1307
  * Getter - license active - derived property
1308
+ * - license key will be empty for unregistered lite customers
1309
+ * - license key will contain free for lite user license status
1310
+ *
1311
  */
1312
  public function license_active(){
 
 
 
 
1313
 
1314
+ $rtn_value = false;//default
1315
 
1316
+ $license_key=$this->license_key();
1317
  $license_status = $this->license_status();
1318
 
1319
+ if (! empty($license_key) && 'valid'==$license_status ) {
1320
+ $rtn_value = true;
1321
+ }
 
 
 
 
1322
 
1323
+ return $rtn_value;
 
1324
  }
1325
 
1326
  /**
1338
  return $this->get('license_type');
1339
  }
1340
 
1341
+
1342
+ /**
1343
+ * Customer has premium license
1344
+ *
1345
+ * @return bool
1346
+ */
1347
+ public function premium_license(){
1348
+
1349
+ if ($this->get('license_type')>0){
1350
+ return true;
1351
+ }
1352
+
1353
+ return false;
1354
+ }
1355
+
1356
  /**
1357
  * Getter - license type description - derived property
1358
  */
1564
  */
1565
  public function check_license($force_check=false){
1566
  $license_key=$this->license_key();
1567
+ //error_log("License Key:" .$license_key);
1568
 
1569
  $license_last_check_date=$this->get_option('license_last_check_date');
1570
 
1571
  //Validate License once per day
1572
  $license_last_check_date = new DateTime($license_last_check_date);
1573
+ //error_log('Last License Check:' . $license_last_check_date->format('Y-m-d H:i:s'));
1574
 
1575
  $now = new DateTime('now');//Get NOW
1576
  $yesterday = $now->modify('-1 day');//subtract a day
1577
  //$yesterday = $now->sub(new DateInterval('P1D'));//subtract a day PHP 3.0 only
1578
+ //error_log('Yesterday:' .$yesterday->format('Y-m-d H:i:s'));
1579
 
1580
  //Validate License
1581
+ //error_log('Check:' . ($license_last_check_date<$yesterday || $force_check?'true' :'false') );
1582
  if ($license_last_check_date<$yesterday || $force_check)
1583
  {
1584
+ //error_log('Checking license...');
1585
  $this->update_license_options($license_key);
 
1586
  }
1587
  }
1588
 
1691
  }
1692
  }
1693
 
1694
+ // admin notices
1695
+ $admin_notices = array();
1696
+
1697
  //EDD sends back expired in the error
1698
  if (($license_data->license=='invalid')) {
1699
  $data['license_status_message'] = __('License is invalid.', WPBACKITUP__NAMESPACE);
1702
  if ($license_data->error == 'expired') {
1703
  $data['license_status'] = 'expired';
1704
  $data['license_status_message'] = __('License has expired.', WPBACKITUP__NAMESPACE);
1705
+
1706
+ $renew_link = esc_url(sprintf('%s/checkout?edd_license_key=%s&download_id=679&nocache=true&utm_medium=plugin&utm_source=wp-backitup&utm_campaign=premium&utm_content=license&utm_term=license+expired', WPBACKITUP__SECURESITE_URL,$license));
1707
+ $license_expired_notice = sprintf( __('Your license has expired. Please <a href="%s" target="blank">renew</a> now for another year of <strong>product updates</strong> and access to our <strong>world class support</strong> team.',WPBACKITUP__NAMESPACE),$renew_link);
1708
+
1709
+ // adding license expired notice
1710
+ array_push($admin_notices,
1711
+ array(
1712
+ 'message_type' => 'error',
1713
+ 'message' =>$license_expired_notice
1714
+ )
1715
+ );
1716
+
1717
+ // add scheduler stoped
1718
+ array_push($admin_notices,
1719
+ array(
1720
+ 'message_type' => 'warning',
1721
+ 'message' => __('License Expired: Scheduled backups are no longer active.', WPBACKITUP__NAMESPACE)
1722
+ )
1723
+ );
1724
+
1725
+ WPBackItUp_LoggerV2::log_info($activation_logname,__METHOD__, 'Expire License.' );
1726
  }
1727
 
1728
  if ( ( $license_data->error == 'no_activations_left' ) ) {
1729
  $data['license_status_message'] = __('Activation limit has been reached.', WPBACKITUP__NAMESPACE);
1730
+
1731
+ // adding activation limit exceed notice
1732
+ array_push($admin_notices,
1733
+ array(
1734
+ 'message_type' => 'warning',
1735
+ 'message' => __('Your Activation limit has been reached', WPBACKITUP__NAMESPACE)
1736
+ )
1737
+ );
1738
  }
1739
+
1740
+ // Setting transient for notification widget
1741
+ set_transient( 'wpbackitup_admin_notices', $admin_notices , DAY_IN_SECONDS);
1742
  }
1743
  }
1744
 
1931
 
1932
  /* --------------------- PRIVATES -----------------------------------------*/
1933
 
1934
+ /**
1935
+ * Run tasks for a job type
1936
+ * - tasks are handled by include file like:
1937
+ *
1938
+ * job_backup.php
1939
+ * job_cleanup.php
1940
+ * job_restore.php
1941
+ *
1942
+ * @param $job_type Job type (constants in job class)
1943
+ * @param $job_run_type manual or scheduled
1944
+ */
1945
+ private function run_tasks($job_type,$job_run_type){
1946
+ @session_write_close();
1947
+
1948
+ global $current_job,$process_id,$events_logname;
1949
+ $process_id = uniqid();
1950
+
1951
+ $events_logname=sprintf('debug_%s_tasks',$job_type); //Set Log name
1952
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) Begin:%s',$job_type,$job_type));
1953
+
1954
+ //Is there a job available and if it is already running
1955
+ $current_job = WPBackItUp_Job_v2::get_current_job($job_type);
1956
+ if (false!==$current_job) {
1957
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) Job found:',var_export($current_job,true)));
1958
+
1959
+ //schedule next check
1960
+ if(WPBackItUp_Job_v2::SCHEDULED==$job_run_type){
1961
+ $hook = sprintf($hook = 'wpbackitup_run_%s_tasks',$job_type);
1962
+ wp_schedule_single_event( time() + 30,$hook );
1963
+ }
1964
+
1965
+ //if job lock aquired run tasks
1966
+ if (true===$current_job->get_lock('job_lock')) {
1967
+ WPBackItUp_LoggerV2::log_info( $events_logname, $process_id, sprintf('(%s) Job Lock Acquired.',$job_type));
1968
+
1969
+ //Try Run Next Task in stack
1970
+ $current_task = $current_job->get_next_task();
1971
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id,sprintf('(%s) TASK INFO:',$job_type));
1972
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id,var_export($current_task,true));
1973
+ if (null!= $current_task && false!==$current_task){
1974
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id,sprintf('(%s) Available Task Found: %s',$job_type,$current_task->getId()));
1975
+ $current_task->increment_retry_count();
1976
+
1977
+ //Was there an error on the previous task
1978
+ if (WPBackItUp_Job_v2::ERROR==$current_task->getStatus()){
1979
+ //Log error but error handling should happen in include
1980
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,sprintf('(%s) Error Found Previous run: %s',$job_type,$current_task->getId()));
1981
+ }
1982
+
1983
+ //Run the task
1984
+ WPBackItUp_LoggerV2::log_info( $events_logname, $process_id, sprintf('(%s) Try Run Task: %s',$job_type,$current_task->getId()));
1985
+
1986
+ $this->backup_type=$job_run_type;
1987
+ $job_include_path = sprintf(WPBACKITUP__PLUGIN_PATH . '/lib/includes/job_%s.php',$job_type);
1988
+
1989
+ include_once( $job_include_path ); //Run tasks
1990
+
1991
+ WPBackItUp_LoggerV2::log_info( $events_logname, $process_id, sprintf('(%s) End Try Run Task:%s',$job_type,$current_task->getId()));
1992
+
1993
+
1994
+ }else{
1995
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id ,sprintf('(%s)No available tasks found.',$job_type));
1996
+ return;
1997
+ }
1998
+
1999
+ $current_job->release_lock();
2000
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id ,sprintf('(%s)Lock Released.',$job_type));
2001
+
2002
+ } else {
2003
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) Job Lock NOT Acquired.',$job_type));
2004
+ }
2005
+
2006
+ } else{
2007
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) No jobs found.',$job_type));
2008
+ }
2009
+
2010
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id, sprintf('(%s) End',$job_type));
2011
+ }
2012
+
2013
  /**
2014
  * Update statistics
2015
  */
lib/includes/handler_download.php CHANGED
@@ -33,7 +33,8 @@ if ( isset($_REQUEST['_wpnonce']) && !empty($_REQUEST['_wpnonce'])
33
  WPBackItUp_LoggerV2::log_info($download_logname,__METHOD__,'nonce verified' );
34
 
35
  //strip off the suffix IF one exists
36
- $folder_name = rtrim( $_REQUEST['backup_file'], '.zip' );;
 
37
  if ( ( $str_pos = strpos( $folder_name, '-main-' ) ) !== false ) {
38
  $suffix = substr( $folder_name, $str_pos );
39
  $folder_name = str_replace( $suffix, '', $folder_name );
33
  WPBackItUp_LoggerV2::log_info($download_logname,__METHOD__,'nonce verified' );
34
 
35
  //strip off the suffix IF one exists
36
+ $folder_name = rtrim( $_REQUEST['backup_file'], '.zip' );
37
+
38
  if ( ( $str_pos = strpos( $folder_name, '-main-' ) ) !== false ) {
39
  $suffix = substr( $folder_name, $str_pos );
40
  $folder_name = str_replace( $suffix, '', $folder_name );
lib/includes/handler_upload.php CHANGED
@@ -160,6 +160,43 @@
160
  WPBackItUp_LoggerV2::log_error($upload_logname,__METHOD__,'Cant move zip file to backup folder');
161
  echo json_encode( array( 'error' => sprintf( __( "Could not import file into WP BackItUp backup set.",WPBACKITUP__NAMESPACE ) ) ) );
162
  exit;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  }
164
  }
165
  }
160
  WPBackItUp_LoggerV2::log_error($upload_logname,__METHOD__,'Cant move zip file to backup folder');
161
  echo json_encode( array( 'error' => sprintf( __( "Could not import file into WP BackItUp backup set.",WPBACKITUP__NAMESPACE ) ) ) );
162
  exit;
163
+ } else {
164
+
165
+ WPBackItUp_LoggerV2::log($upload_logname,'Import Backup To Post Table Started');
166
+ $folder_prefix = substr($folder_name,0,4);
167
+ $folder_name_parts = explode('_',$folder_name);
168
+
169
+ if ('TMP_'!= strtoupper($folder_prefix) && 'DLT_'!= strtoupper($folder_prefix)){
170
+ //Add to post table
171
+ $external_id = end($folder_name_parts);
172
+
173
+ //does job already exist
174
+ $jobs = WPBackItUp_Job_v2::get_jobs_by_job_name(WPBackItUp_Job_v2::BACKUP,$folder_name,WPBackItUp_Job_v2::COMPLETE);
175
+
176
+ $job = false;
177
+ if ( false === $jobs ) {
178
+ WPBackItUp_LoggerV2::log($upload_logname,'Import job');
179
+ $job = WPBackItUp_Job_v2::import_completed_job( $folder_name, $external_id, WPBackItUp_Job_v2::BACKUP, $external_id );
180
+
181
+ } else {
182
+ WPBackItUp_LoggerV2::log($upload_logname,'Selecting Existing Post.');
183
+ $job = isset($jobs[0]) ? $jobs[0] : false;
184
+ }
185
+
186
+ WPBackItUp_LoggerV2::log($upload_logname,$job);
187
+
188
+ if ( false !== $job ) {
189
+ WPBackItUp_LoggerV2::log($upload_logname,'### Update Zip Files ###');
190
+
191
+ $file_system = new WPBackItUp_FileSystem($upload_logname);
192
+ $zip_files = $file_system->get_fileonly_list($backup_archive_folder, 'zip');
193
+
194
+ WPBackItUp_LoggerV2::log($upload_logname,$zip_files);
195
+ $job->update_job_meta('backup_zip_files' , $zip_files ); //list of zip files
196
+
197
+ WPBackItUp_LoggerV2::log_info($upload_logname,__METHOD__,'Job Imported:' .$folder_name);
198
+ }
199
+ }
200
  }
201
  }
202
  }
lib/includes/job_backup.php CHANGED
@@ -40,11 +40,6 @@ if( !class_exists( 'WPBackItUp_Filesystem' ) ) {
40
  include_once 'class-filesystem.php';
41
  }
42
 
43
-
44
- if( !class_exists( 'WPBackItUp_Job' ) ) {
45
- include_once 'class-job.php';
46
- }
47
-
48
  if( !class_exists( 'WPBackItUp_DataAccess' ) ) {
49
  include_once 'class-database.php';
50
  }
@@ -64,6 +59,7 @@ $success=99;
64
  global $status_array;
65
  $status_array = array(
66
  'preparing' =>$inactive,
 
67
  'backupdb' =>$inactive ,
68
  'infofile'=>$inactive,
69
  'backup_themes'=>$inactive,
@@ -74,81 +70,33 @@ $status_array = array(
74
  'finalize_backup'=>$inactive,
75
  );
76
 
 
 
 
77
 
78
- //**************************//
79
- // SINGLE THREAD BACKUPS //
80
- //**************************//
81
- $process_id = uniqid();
82
-
83
- //Make sure backup is NOT already running before you run the current task
84
-
85
- //Scheduled the next check
86
- if ('scheduled'==$this->backup_type){
87
- wp_schedule_single_event( time()+30, 'wpbackitup_run_backup_tasks');
88
  }
89
 
90
- $backup_task_log = 'debug_backup_tasks';
91
- if (!WPBackItUp_Backup::start()) {
92
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id ,'Backup job cant acquire job lock.');
93
- return; //nothing to do
94
- }else{
95
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'Backup job lock acquired.');
96
  }
97
- //**************************//
98
 
99
-
100
- //**************************//
101
- // Task Handling //
102
- //**************************//
103
- global $backup_job;
104
- $backup_job=null;
105
- $current_task= null;
106
-
107
- $backup_error=false;
108
- $backup_job = WPBackItUp_Job::get_job('backup');
109
-
110
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'Check for available backup job');
111
- if ($backup_job){
112
-
113
- //Get the next task in the stack
114
- $next_task = $backup_job->get_next_task();
115
- if (false!==$next_task){
116
- $backup_id=$backup_job->backup_id;
117
- $current_task=$next_task;
118
-
119
- //If task contains error then timeout has occurred
120
- if (strpos($current_task,'error') !== false){
121
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'Backup Error Found:' .$current_task);
122
- $backup_error=true;
123
- }
124
-
125
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'Available Task Found:' . $current_task);
126
-
127
- }else{
128
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'No available tasks found.');
129
- WPBackItUp_Backup::end(); //release lock
130
- return;
131
- }
132
- }else {
133
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'No backup job available.');
134
-
135
- wp_clear_scheduled_hook( 'wpbackitup_run_backup_tasks');
136
- WPBackItUp_Backup::end(); //release lock
137
- return;
138
- }
139
-
140
- //Should only get here when there is a task to run
141
- WPBackItUp_LoggerV2::log_info($backup_task_log,$process_id,'Run Backup task:' .$current_task);
142
 
143
  //*************************//
144
  //*** MAIN BACKUP CODE ***//
145
  //*************************//
146
  global $backup_logname;
147
  //Get the backup ID
148
- $backup_name = get_backup_name($backup_job->backup_id);
149
- $backup_logname = $backup_name;
150
 
151
- $log_function='job_backup::'.$current_task;
152
 
153
  global $wp_backup;
154
  $wp_backup = new WPBackItUp_Backup($backup_logname,$backup_name,$WPBackitup->backup_type);
@@ -158,23 +106,33 @@ $wp_backup = new WPBackItUp_Backup($backup_logname,$backup_name,$WPBackitup->bac
158
  //*** BACKUP TASKS ***//
159
  //*************************//
160
 
 
 
161
  //An error has occurred on the previous tasks
162
- if ($backup_error) {
163
- $error_task = substr($current_task,6);
164
- WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Fatal error on previous task:'. $error_task);
165
 
166
  //Fetch last wordpress error(might not be related to timeout)
167
  //error type constants: http://php.net/manual/en/errorfunc.constants.php
168
- WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Last Error: ' .var_export(error_get_last(),true));
169
 
170
  //Check for error type
171
- switch ($error_task) {
172
  case "task_preparing":
173
  set_status('preparing',$active,true);
174
  write_fatal_error_status('2101');
175
  end_backup(2101, false);
176
  break;
177
 
 
 
 
 
 
 
 
 
 
178
  case "task_backup_db":
179
  set_status( 'backupdb', $active, true );
180
  write_fatal_error_status( '2104' );
@@ -223,27 +181,23 @@ if ($backup_error) {
223
  end_backup( 2109, false );
224
  break;
225
 
226
- // case "task_cleanup_current": //Dont end backup on this error
227
- // set_status( 'cleanup', $active, true );
228
- // write_warning_status( '2106' );
229
- // break;
230
-
231
  default:
232
  write_warning_status( '2999' );
233
  end_backup( 2999, false );
234
  break;
235
  }
236
 
 
 
237
  }
238
 
239
- //Cleanup Task
240
- if ('task_preparing'==$current_task) {
241
 
242
  //Init
243
  WPBackItUp_LoggerV2::log($backup_logname,'***BEGIN BACKUP***');
244
  WPBackItUp_LoggerV2::log_sysinfo($backup_logname);
245
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'BACKUP TYPE:' .$wp_backup->backup_type);
246
- WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'BACKUP ID:' .$backup_job->backup_id);
247
 
248
  $WPBackitup->increment_backup_count();
249
  //End Init
@@ -259,9 +213,10 @@ if ('task_preparing'==$current_task) {
259
  //*** Check Dependencies ***
260
  if (!WPBackItUp_Zip::zip_utility_exists()) {
261
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Zip Util does not exist.' );
262
- $backup_job->set_task_error('125');
263
  write_fatal_error_status( '125' );
264
  end_backup( 125, false );
 
265
  }
266
 
267
  //*** END Check Dependencies ***
@@ -269,64 +224,128 @@ if ('task_preparing'==$current_task) {
269
 
270
  //Make sure wpbackitup_backups exists
271
  if (! $wp_backup->backup_root_folder_exists() ){
272
- $backup_job->set_task_error('101');
273
 
274
  write_fatal_error_status('101');
275
  end_backup(101, false);
 
276
  }
277
 
278
  //Create the root folder for the current backup
279
  if (! $wp_backup->create_current_backup_folder()){
280
- $backup_job->set_task_error('101');
281
 
282
  write_fatal_error_status('101');
283
  end_backup(101, false);
 
284
  }
285
 
286
  //Check to see if the directory exists and is writeable
287
  if (! $wp_backup->backup_folder_exists()){
288
- $backup_job->set_task_error('102');
289
 
290
  write_fatal_error_status('102');
291
  end_backup(102,false);
 
292
  }
293
 
294
- // ** Generate the list of files to be backed up **
295
-
296
  //Create a job control record
297
- if ( ! $wp_backup->create_job_control($backup_job->backup_id)){
298
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Cant create batch record');
299
- $backup_job->set_task_error('128');
300
 
301
  write_fatal_error_status('128');
302
  end_backup(128,false);
 
303
  };
304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  $global_exclude = explode(',', WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST);
306
 
307
- $plugin_exclude = array_merge (
 
 
 
 
308
  $global_exclude,
309
  array(
310
  "wp-backitup",
311
  )
312
  );
313
- if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$backup_job->backup_id,'plugins',WPBACKITUP__PLUGINS_ROOT_PATH,$plugin_exclude)){
314
- WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Plugins Inventory Error.');
315
- $backup_job->set_task_error('127');
316
 
317
- write_fatal_error_status('127');
318
- end_backup(127,false);
 
 
 
 
 
 
319
  };
320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  $theme_exclude = WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST;
322
- if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$backup_job->backup_id,'themes',WPBACKITUP__THEMES_ROOT_PATH,$theme_exclude)){
 
323
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Themes Inventory Error.');
324
- $backup_job->set_task_error('127');
325
 
326
  write_fatal_error_status('127');
327
  end_backup(127,false);
 
328
  };
329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  $upload_exclude = array_merge (
331
  $global_exclude,
332
  array(
@@ -336,54 +355,79 @@ if ('task_preparing'==$current_task) {
336
 
337
  $upload_array = wp_upload_dir();
338
  $uploads_root_path = $upload_array['basedir'];
339
- if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$backup_job->backup_id,'uploads',$uploads_root_path,$upload_exclude)){
340
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Uploads Inventory Error.');
341
- $backup_job->set_task_error('127');
342
 
343
  write_fatal_error_status('127');
344
  end_backup(127,false);
 
345
  };
346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  $other_exclude = array_merge (
348
  $global_exclude,
349
  array(
350
- "debug.log",
351
- "plugins",
352
- "themes",
353
- "uploads",
354
- "wpbackitup_backups",
355
- "wpbackitup_restore",
356
- "backup",
357
- "w3tc-config",
358
- "updraft",
359
- "wp-clone",
360
- "backwpup",
361
- "backupwordpress",
362
- "cache",
363
- "backupcreator",
364
- "backupbuddy",
365
- "wptouch-data",
366
- "ai1wm-backups",
367
- "sedlex",
368
- ));
369
-
370
- if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$backup_job->backup_id,'others',WPBACKITUP__CONTENT_PATH,$other_exclude)){
 
371
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Other Inventory Error.');
372
- $backup_job->set_task_error('127');
373
 
374
  write_fatal_error_status('127');
375
  end_backup(127,false);
 
376
  };
377
 
378
- set_status('preparing',$complete,false);
379
- $backup_job->set_task_complete();
380
 
381
- WPBackItUp_LoggerV2::log($backup_logname,'**END CLEANUP**');
 
 
 
 
382
  return;
 
383
  }
384
 
 
385
  //Backup the database
386
- if ('task_backup_db'==$current_task) {
387
  WPBackItUp_LoggerV2::log($backup_logname,'**BEGIN SQL EXPORT**');
388
  write_response_processing( "Create database export" );
389
  set_status( 'backupdb', $active, true );
@@ -391,17 +435,18 @@ if ('task_backup_db'==$current_task) {
391
  $export_database = $wp_backup->export_database();
392
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Export Database return:' .var_export($export_database,true));
393
  if ( ! $export_database ) {
394
- $backup_job->set_task_error('104');
395
 
396
  write_fatal_error_status( '104' );
397
  //cleanup_on_failure( $wp_backup->backup_project_path );
398
  end_backup( 104, false );
 
399
  }
400
 
401
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Database Export complete.');
402
 
403
  set_status('backupdb',$complete,false);
404
- $backup_job->set_task_complete();
405
 
406
  WPBackItUp_LoggerV2::log($backup_logname,'**END SQL EXPORT**');
407
  return;
@@ -411,7 +456,7 @@ if ('task_backup_db'==$current_task) {
411
 
412
 
413
  //Extract the site info
414
- if ('task_backup_siteinfo'==$current_task) {
415
  WPBackItUp_LoggerV2::log($backup_logname,'**SITE INFO**' );
416
  write_response_processing( "Retrieve Site Info" );
417
  set_status( 'infofile', $active, true );
@@ -427,26 +472,28 @@ if ('task_backup_siteinfo'==$current_task) {
427
  $site_data_files = $file_system->get_fileonly_list($wp_backup->backup_project_path, 'txt|sql');
428
  $site_data_complete = $wp_backup->backup_file_list( $source_site_data_root, $target_site_data_root, $suffix, $site_data_files, WPBACKITUP__OTHERS_BATCH_SIZE );
429
  if ( $site_data_complete == 'error' ) {
430
- $backup_job->set_task_error('105');
431
 
432
  write_fatal_error_status( '105' );
433
  //cleanup_on_failure( $wp_backup->backup_project_path );
434
  end_backup( 105, false );
 
435
  }
436
  } else {
437
  //Site data could be extracted
438
- $backup_job->set_task_error('105');
439
 
440
  write_fatal_error_status( '105' );
441
  //cleanup_on_failure( $wp_backup->backup_project_path );
442
  end_backup( 105, false );
 
443
  }
444
 
445
  //get rid of the SQL and sitedata file - will check again at end in cleanup
446
  $wp_backup->cleanup_current_backup();
447
 
448
  set_status( 'infofile', $complete, false );
449
- $backup_job->set_task_complete();
450
 
451
  WPBackItUp_LoggerV2::log($backup_logname,'**END SITE INFO**' );
452
  return;
@@ -454,31 +501,32 @@ if ('task_backup_siteinfo'==$current_task) {
454
  }
455
 
456
  //Backup the themes
457
- if ('task_backup_themes'==$current_task) {
458
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP THEMES TASK**' );
459
  write_response_processing( "Backup themes " );
460
  set_status( 'backup_themes', $active, true );
461
 
462
- $themes_remaining_files_count = $wp_backup->backup_files($backup_job->backup_id,WPBACKITUP__THEMES_ROOT_PATH,'themes');
463
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Themes remaining:' .$themes_remaining_files_count);
464
  if ($themes_remaining_files_count===false) {
465
  //ERROR
466
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up themes.');
467
- $backup_job->set_task_error('120');
468
  write_fatal_error_status( '120' );
469
  //cleanup_on_failure( $wp_backup->backup_project_path );
470
  end_backup( 120, false );
 
471
  }else{
472
  if ($themes_remaining_files_count>0){
473
  //CONTINUE
474
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up themes.');
475
- $backup_job->set_task_queued();
476
  }else{
477
  //COMPLETE
478
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Complete - All themes backed up.');
479
 
480
  set_status( 'backup_themes', $complete, false );
481
- $backup_job->set_task_complete();
482
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP THEMES TASK**');
483
  }
484
  }
@@ -488,31 +536,32 @@ if ('task_backup_themes'==$current_task) {
488
 
489
 
490
  //Backup the plugins
491
- if ('task_backup_plugins'==$current_task) {
492
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP PLUGINS TASK**' );
493
  write_response_processing( "Backup plugins " );
494
  set_status( 'backup_plugins', $active, true );
495
 
496
- $plugins_remaining_files_count = $wp_backup->backup_files($backup_job->backup_id,WPBACKITUP__PLUGINS_ROOT_PATH,'plugins');
497
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Plugins remaining:' .$plugins_remaining_files_count);
498
  if ($plugins_remaining_files_count===false) {
499
  //ERROR
500
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up plugins.');
501
 
502
- $backup_job->set_task_error('121');
503
  write_fatal_error_status( '121' );
504
  //cleanup_on_failure( $wp_backup->backup_project_path );
505
  end_backup( 121, false );
 
506
  } else {
507
  if ($plugins_remaining_files_count>0){
508
  //CONTINUE
509
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up plugins.');
510
- $backup_job->set_task_queued();
511
  } else{
512
  //COMPLETE
513
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Complete - All plugins backed up.');
514
  set_status( 'backup_plugins', $complete, false );
515
- $backup_job->set_task_complete();
516
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP PLUGINS TASK**');
517
  }
518
  }
@@ -521,7 +570,7 @@ if ('task_backup_plugins'==$current_task) {
521
  }
522
 
523
  //Backup the uploads
524
- if ('task_backup_uploads'==$current_task) {
525
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP UPLOADS TASK**' );
526
  write_response_processing( "Backup uploads " );
527
  set_status( 'backup_uploads', $active, true );
@@ -530,25 +579,26 @@ if ('task_backup_uploads'==$current_task) {
530
  $source_uploads_root = $upload_array['basedir'];
531
 
532
  //exclude zip files from backup
533
- $uploads_remaining_files_count = $wp_backup->backup_files($backup_job->backup_id,$source_uploads_root,'uploads');
534
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Uploads remaining:' .$uploads_remaining_files_count);
535
  if ( $uploads_remaining_files_count ===false) {
536
  //ERROR
537
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up uploads.' );
538
- $backup_job->set_task_error( '122' );
539
  write_fatal_error_status( '122' );
540
  end_backup( 122, false );
 
541
  } else {
542
  if ( $uploads_remaining_files_count > 0 ) {
543
  //CONTINUE
544
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up uploads.' );
545
- $backup_job->set_task_queued();
546
 
547
  } else {
548
  //COMPLETE
549
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All uploads backed up.' );
550
  set_status( 'backup_uploads', $complete, false );
551
- $backup_job->set_task_complete();
552
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP UPLOADS TASK**' );
553
  }
554
  }
@@ -557,32 +607,33 @@ if ('task_backup_uploads'==$current_task) {
557
  }
558
 
559
  //Backup all the other content in the wp-content root
560
- if ('task_backup_other'==$current_task) {
561
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP OTHER TASK**' );
562
  write_response_processing( "Backup other files " );
563
  set_status( 'backup_other', $active, true );
564
 
565
- $others_remaining_files_count = $wp_backup->backup_files($backup_job->backup_id,WPBACKITUP__CONTENT_PATH,'others');
566
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Others remaining:' .$others_remaining_files_count);
567
  if ( $others_remaining_files_count ===false) {
568
  //ERROR
569
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up others.' );
570
- $backup_job->set_task_error( '123' );
571
 
572
  write_fatal_error_status( '123' );
573
  //cleanup_on_failure( $wp_backup->backup_project_path );
574
  end_backup( 123, false );
 
575
  } else {
576
  if ( $others_remaining_files_count > 0 ) {
577
  //CONTINUE
578
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up others.' );
579
- $backup_job->set_task_queued();
580
  } else {
581
  //COMPLETE
582
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All others backed up.' );
583
 
584
  set_status( 'backup_other', $complete, false );
585
- $backup_job->set_task_complete();
586
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP OTHER TASK**' );
587
  }
588
 
@@ -597,7 +648,7 @@ if ('task_backup_other'==$current_task) {
597
  //db backup
598
 
599
  //Validate the backup IF logging is turned on - reporting only
600
- if ('task_validate_backup'==$current_task) {
601
  //Validate the content if logging is on
602
  WPBackItUp_LoggerV2::log($backup_logname,'**VALIDATE CONTENT**');
603
 
@@ -608,10 +659,10 @@ if ('task_validate_backup'==$current_task) {
608
  $set_validate_backup_job_queue = true;
609
  $db = new WPBackItUp_DataAccess();
610
 
611
- $plugin_validation_meta = $backup_job->get_job_meta('task_multistep_validate_plugins');
612
- $theme_validation_meta = $backup_job->get_job_meta('task_multistep_validate_themes');
613
- $upload_validation_meta = $backup_job->get_job_meta('task_multistep_validate_uploads');
614
- $other_validation_meta = $backup_job->get_job_meta('task_multistep_validate_others');
615
 
616
  $validation_meta=false;
617
  $validation_task=false;
@@ -633,7 +684,7 @@ if ('task_validate_backup'==$current_task) {
633
 
634
  if( $validation_meta !==false ) {
635
  $meta_task = sprintf( 'task_multistep_validate_%s', $validation_task );
636
- $batch_ids = $db->get_batch_ids( $backup_job->backup_id, $validation_task );
637
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Batch Ids: %s',$validation_task,var_export( $batch_ids, true )));
638
  //$plugin_validation_batch_ids will never be empty
639
 
@@ -646,16 +697,16 @@ if ('task_validate_backup'==$current_task) {
646
 
647
  if ( array_key_exists( $array_index, $batch_ids ) ) {
648
  $batch_id = $batch_ids[ $array_index ];//get batch ID
649
- $validate_result = $wp_backup->validate_backup_files_by_batch_id( $backup_job->backup_id, $validation_task, $batch_id );
650
  if ( $validate_result === false ) {
651
  $set_validate_backup_error = true;
652
  } else {
653
- $backup_job->update_job_meta( $meta_task, $array_index );
654
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Content, Batch ID: %s Validated Successfully!',$validation_task,$batch_id ));
655
  }
656
  } else {
657
  //task is done
658
- $backup_job->update_job_meta( $meta_task, 'completed' );
659
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Content Validated Successfully!',$validation_task));
660
  }
661
  }
@@ -664,10 +715,11 @@ if ('task_validate_backup'==$current_task) {
664
  if($set_validate_backup_error) {
665
  //ERROR
666
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Content Validation ERROR.' );
667
- $backup_job->set_task_error( '126' );
668
 
669
  write_fatal_error_status( '126' );
670
  end_backup( 123, false );
 
671
  } elseif($set_validate_backup_job_queue === false) {
672
  //validation completed, delete all options
673
  $keys = array (
@@ -677,35 +729,36 @@ if ('task_validate_backup'==$current_task) {
677
  'task_multistep_validate_others'
678
  );
679
  foreach ($keys as $key) {
680
- delete_post_meta($backup_job->get_job_id(),$key);
681
  }
682
  //set backup status to success
683
  set_status( 'validate_backup', $complete, false );
684
- $backup_job->set_task_complete();
685
 
686
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All Content Validated Successfully!' );
687
  WPBackItUp_LoggerV2::log($backup_logname,'**END VALIDATE CONTENT**' );
688
 
689
  } elseif ($set_validate_backup_job_queue === true) {
690
- $backup_job->set_task_queued();
691
  }
692
 
693
  return;
694
  }
695
 
696
  //Zip up the backup folder
697
- if ('task_finalize_backup'==$current_task) {
698
  WPBackItUp_LoggerV2::log($backup_logname,'**FINALIZE BACKUP**' );
699
  write_response_processing( "Compress Backup " );
700
  set_status( 'finalize_backup', $active, true );
701
 
702
  //Generate manifest
703
  if ( ! $wp_backup->create_backup_manifest()) {
704
- $backup_job->set_task_error('109');
705
 
706
  write_fatal_error_status( '109' );
707
  //cleanup_on_failure( $wp_backup->backup_project_path );
708
  end_backup( 109, false );
 
709
  }
710
 
711
  if ( ! $wp_backup->cleanup_current_backup() ) {
@@ -715,24 +768,29 @@ if ('task_finalize_backup'==$current_task) {
715
 
716
  //Rename backup folder
717
  if ( ! $wp_backup->rename_backup_folder()) {
718
- $backup_job->set_task_error('109');
719
 
720
  write_fatal_error_status( '109' );
721
  //cleanup_on_failure( $wp_backup->backup_project_path );
722
  end_backup( 109, false );
 
723
  }
724
 
725
  //Take an inventory of the zip files created
726
 
727
  $file_system = new WPBackItUp_FileSystem($backup_logname);
728
  $zip_files = $file_system->get_fileonly_list($wp_backup->backup_project_path, 'zip');
729
- $wp_backup->save_file_list_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$backup_job->backup_id,'backups',$wp_backup->backup_project_path,$zip_files);
 
730
 
731
- //Combine the zip files into one file
732
- // $zip_remaining_files_count = $wp_backup->backup_files( $backup_job->backup_id, $wp_backup->backup_project_path, 'backup-files', 'combined' );
 
 
 
733
 
734
  set_status( 'finalize_backup', $complete, false );
735
- $backup_job->set_task_complete();
736
 
737
  WPBackItUp_LoggerV2::log($backup_logname,'**END FINALIZE BACKUP**' );
738
 
@@ -743,10 +801,10 @@ if ('task_finalize_backup'==$current_task) {
743
  $wp_backup->set_final_backup_path();
744
 
745
 
746
- if ($backup_job->get_job_status()=='complete') {
747
  //SUCCESS- End Job!
748
 
749
- $wp_backup->update_job_control_complete($backup_job->backup_id);
750
 
751
  //write response file first to make sure it is there
752
  write_response_file_success();
@@ -754,39 +812,28 @@ if ($backup_job->get_job_status()=='complete') {
754
 
755
  $WPBackitup->increment_successful_backup_count();
756
  end_backup( null, true );
 
757
  }
758
 
759
  exit();
760
  /******************/
761
  /*** Functions ***/
762
  /******************/
763
- function get_backup_name($timestamp){
764
-
765
- $url = home_url();
766
- $url = str_replace('http://','',$url);
767
- $url = str_replace('https://','',$url);
768
- $url = str_replace('/','-',$url);
769
- $fileUTCDateTime=$timestamp;//current_time( 'timestamp' );
770
- $localDateTime = date_i18n('Y-m-d-His',$fileUTCDateTime);
771
- $backup_name = 'Backup_' . $url .'_' .$localDateTime;
772
-
773
- return $backup_name;
774
 
775
- }
776
  function end_backup($err=null, $success=null){
777
- global $WPBackitup,$wp_backup,$backup_logname,$backup_job;
778
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Begin');
779
 
780
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Zip up all the logs.');
781
  //Zip up all the logs in the log folder
782
  $logs_path = WPBACKITUP__PLUGIN_PATH .'logs';
783
- $zip_file_path = $wp_backup->backup_project_path .'logs_' .$backup_job->backup_id . '.zip';
784
 
785
  //copy WP debug file
786
  $wpdebug_file_path = WPBACKITUP__CONTENT_PATH . '/debug.log';
787
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Save WP Debug: ' .$wpdebug_file_path);
788
  if (file_exists($wpdebug_file_path)) {
789
- $debug_log = sprintf('%s/wpdebug_%s.log',$logs_path,$backup_job->backup_id);
790
  copy( $wpdebug_file_path, $debug_log );
791
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'WP Debug file saved: ' .$debug_log);
792
  }else{
@@ -794,7 +841,7 @@ function end_backup($err=null, $success=null){
794
  }
795
 
796
  $zip = new WPBackItUp_Zip($backup_logname,$zip_file_path);
797
- $zip->zip_files_in_folder($logs_path,$backup_job->backup_id,'*.log');
798
  $zip->close();
799
 
800
  WPBackItUp_Backup::end(); //Release the lock
@@ -803,7 +850,7 @@ function end_backup($err=null, $success=null){
803
 
804
 
805
  $util = new WPBackItUp_Utility($backup_logname);
806
- $seconds = $util->timestamp_diff_seconds($backup_job->get_job_start_time(),$backup_job->get_job_end_time());
807
 
808
  $processing_minutes = round($seconds / 60);
809
  $processing_seconds = $seconds % 60;
@@ -831,15 +878,14 @@ function end_backup($err=null, $success=null){
831
 
832
  WPBackItUp_LoggerV2::close($backup_logname);
833
  echo('Backup has completed');
834
- exit(0);
835
  }
836
 
837
  function send_backup_notification_email($err, $success,$logs=array()) {
838
- global $WPBackitup, $wp_backup, $backup_logname,$status_array,$backup_job;
839
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Begin');
840
 
841
- $start_timestamp = $backup_job->get_job_start_time();
842
- $end_timestamp = $backup_job->get_job_end_time();
843
 
844
  $utility = new WPBackItUp_Utility($backup_logname);
845
  $seconds = $utility->timestamp_diff_seconds($start_timestamp,$end_timestamp);
@@ -847,19 +893,7 @@ function send_backup_notification_email($err, $success,$logs=array()) {
847
  $processing_minutes = round($seconds / 60);
848
  $processing_seconds = $seconds % 60;
849
 
850
- $status_description = array(
851
- 'preparing'=> __('Preparing for backup...Done', WPBACKITUP__NAMESPACE),
852
- 'backupdb'=> __('Backing up database...Done', WPBACKITUP__NAMESPACE),
853
- 'infofile'=> __('Creating backup information file...Done',WPBACKITUP__NAMESPACE),
854
- 'backup_themes'=> __('Backing up themes...Done', WPBACKITUP__NAMESPACE),
855
- 'backup_plugins'=> __('Backing up plugins...Done', WPBACKITUP__NAMESPACE),
856
- 'backup_uploads'=> __('Backing up uploads...Done', WPBACKITUP__NAMESPACE),
857
- 'backup_other'=> __('Backing up miscellaneous files...Done', WPBACKITUP__NAMESPACE),
858
- 'finalize_backup'=> __('Finalizing backup...Done', WPBACKITUP__NAMESPACE),
859
- 'validate_backup'=> __('Validating backup...Done', WPBACKITUP__NAMESPACE),
860
- 'cleanup'=> __('Cleaning up...Done', WPBACKITUP__NAMESPACE)
861
- );
862
-
863
  if($success)
864
  {
865
  //Don't send logs on success unless debug is on.
@@ -867,41 +901,36 @@ function send_backup_notification_email($err, $success,$logs=array()) {
867
  $logs=array();
868
  }
869
 
 
 
 
 
 
 
 
 
870
  $subject = sprintf(__('%s - Backup completed successfully.', WPBACKITUP__NAMESPACE), get_bloginfo());
871
- $message = '<b>' . __('Your backup completed successfully.', WPBACKITUP__NAMESPACE) . '</b><br/><br/>';
872
 
873
  } else {
874
  $subject = sprintf(__('%s - Backup did not complete successfully.', WPBACKITUP__NAMESPACE), get_bloginfo());
875
- $message = '<b>' . __('Your backup did not complete successfully.', WPBACKITUP__NAMESPACE) . '</b><br/><br/>';
876
  }
877
 
 
878
  $local_start_datetime = get_date_from_gmt(date( 'Y-m-d H:i:s',$start_timestamp));
879
  $local_end_datetime = get_date_from_gmt(date( 'Y-m-d H:i:s',$end_timestamp));
 
880
  $message .= sprintf(__('WordPress Site: <a href="%s" target="_blank"> %s </a><br/>', WPBACKITUP__NAMESPACE), home_url(), home_url());
881
  $message .= __('Backup date:', WPBACKITUP__NAMESPACE) . ' ' . $local_start_datetime . '<br/>';
882
  $message .= __('Number of backups completed with WP BackItUp:', WPBACKITUP__NAMESPACE) . ' ' . $WPBackitup->backup_count() . '<br/>';
883
 
884
- $message .= __('Completion Code:', WPBACKITUP__NAMESPACE) . ' ' . $backup_job->backup_id .'-'. $processing_minutes .'-' .$processing_seconds .'<br/>';
885
  $message .= __('WP BackItUp Version:', WPBACKITUP__NAMESPACE) . ' ' . WPBACKITUP__VERSION . '<br/>';
886
  $message .= '<br/>';
887
 
888
-
889
  //Add the completed steps on success
890
- if($success) {
891
- $message .='<b>' . __('Steps Completed', WPBACKITUP__NAMESPACE) . '</b><br/>';
892
-
893
- //Add the completed statuses
894
- foreach ($status_array as $status_key => $status_value) {
895
- if ($status_value==2) {
896
- foreach ($status_description as $msg_key => $msg_value) {
897
- if ($status_key==$msg_key) {
898
- $message .= $msg_value . '<br/>';
899
- break;
900
- }
901
- }
902
- }
903
- }
904
- } else {
905
  //Error occurred
906
  $message .= '<br/>';
907
  $message .= 'Errors:<br/>' . get_error_message($err);
40
  include_once 'class-filesystem.php';
41
  }
42
 
 
 
 
 
 
43
  if( !class_exists( 'WPBackItUp_DataAccess' ) ) {
44
  include_once 'class-database.php';
45
  }
59
  global $status_array;
60
  $status_array = array(
61
  'preparing' =>$inactive,
62
+ 'create_inventory' =>$inactive,
63
  'backupdb' =>$inactive ,
64
  'infofile'=>$inactive,
65
  'backup_themes'=>$inactive,
70
  'finalize_backup'=>$inactive,
71
  );
72
 
73
+ //*****************//
74
+ //*** MAIN CODE ***//
75
+ //*****************//
76
 
77
+ if (! is_object ($current_job)){
78
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current job not object:');
79
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_job));
80
+ return false;
 
 
 
 
 
 
81
  }
82
 
83
+ if (! is_object ($current_task)){
84
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current task not object');
85
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_task));
86
+ return false;
 
 
87
  }
 
88
 
89
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id ,'Run task:' .$current_task->getId());
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
  //*************************//
92
  //*** MAIN BACKUP CODE ***//
93
  //*************************//
94
  global $backup_logname;
95
  //Get the backup ID
96
+ $backup_name = $current_job->getJobName();
97
+ $backup_logname = sprintf('JobLog_%s',$current_job->getJobName());
98
 
99
+ $log_function='job_backup::'.$current_task->getId();
100
 
101
  global $wp_backup;
102
  $wp_backup = new WPBackItUp_Backup($backup_logname,$backup_name,$WPBackitup->backup_type);
106
  //*** BACKUP TASKS ***//
107
  //*************************//
108
 
109
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function ,'Run task:' .$current_task->getId());
110
+
111
  //An error has occurred on the previous tasks
112
+ if (WPBackItUp_Job_v2::ERROR==$current_task->getStatus()){
113
+ WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Fatal error on previous task:'. $current_task->getId());
 
114
 
115
  //Fetch last wordpress error(might not be related to timeout)
116
  //error type constants: http://php.net/manual/en/errorfunc.constants.php
117
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Last Error: ' .var_export(error_get_last(),true));
118
 
119
  //Check for error type
120
+ switch ($current_task->getId()) {
121
  case "task_preparing":
122
  set_status('preparing',$active,true);
123
  write_fatal_error_status('2101');
124
  end_backup(2101, false);
125
  break;
126
 
127
+ case "task_inventory_plugins":
128
+ case "task_inventory_themes":
129
+ case "task_inventory_uploads":
130
+ case "task_inventory_others":
131
+ set_status('create_inventory',$active,true);
132
+ write_fatal_error_status('2127');
133
+ end_backup(2127, false);
134
+ break;
135
+
136
  case "task_backup_db":
137
  set_status( 'backupdb', $active, true );
138
  write_fatal_error_status( '2104' );
181
  end_backup( 2109, false );
182
  break;
183
 
 
 
 
 
 
184
  default:
185
  write_warning_status( '2999' );
186
  end_backup( 2999, false );
187
  break;
188
  }
189
 
190
+ return false;
191
+
192
  }
193
 
194
+ if ('task_preparing'==$current_task->getId()) {
 
195
 
196
  //Init
197
  WPBackItUp_LoggerV2::log($backup_logname,'***BEGIN BACKUP***');
198
  WPBackItUp_LoggerV2::log_sysinfo($backup_logname);
199
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'BACKUP TYPE:' .$wp_backup->backup_type);
200
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'BACKUP ID:' .$current_job->getExternalId());
201
 
202
  $WPBackitup->increment_backup_count();
203
  //End Init
213
  //*** Check Dependencies ***
214
  if (!WPBackItUp_Zip::zip_utility_exists()) {
215
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Zip Util does not exist.' );
216
+ $current_job->set_task_error('125');
217
  write_fatal_error_status( '125' );
218
  end_backup( 125, false );
219
+ return false;
220
  }
221
 
222
  //*** END Check Dependencies ***
224
 
225
  //Make sure wpbackitup_backups exists
226
  if (! $wp_backup->backup_root_folder_exists() ){
227
+ $current_job->set_task_error('101');
228
 
229
  write_fatal_error_status('101');
230
  end_backup(101, false);
231
+ return false;
232
  }
233
 
234
  //Create the root folder for the current backup
235
  if (! $wp_backup->create_current_backup_folder()){
236
+ $current_job->set_task_error('101');
237
 
238
  write_fatal_error_status('101');
239
  end_backup(101, false);
240
+ return false;
241
  }
242
 
243
  //Check to see if the directory exists and is writeable
244
  if (! $wp_backup->backup_folder_exists()){
245
+ $current_job->set_task_error('102');
246
 
247
  write_fatal_error_status('102');
248
  end_backup(102,false);
249
+ return false;
250
  }
251
 
 
 
252
  //Create a job control record
253
+ if ( ! $wp_backup->create_job_control($current_job->getExternalId())){
254
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Cant create batch record');
255
+ $current_job->set_task_error('128');
256
 
257
  write_fatal_error_status('128');
258
  end_backup(128,false);
259
+ return false;
260
  };
261
 
262
+ set_status('preparing',$complete,false);
263
+ $current_job->set_task_complete();
264
+
265
+ WPBackItUp_LoggerV2::log($backup_logname,'**END CLEANUP**');
266
+ return;
267
+ }
268
+
269
+
270
+ if ('task_inventory_plugins'==$current_task->getId()) {
271
+ WPBackItUp_LoggerV2::log( $backup_logname, '**INVENTORY PLUGINS**' );
272
+
273
+ write_response_processing( "Create inventory" );
274
+ set_status( 'create_inventory', $active, true );
275
+
276
  $global_exclude = explode(',', WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST);
277
 
278
+ // WARNING
279
+ // Remember these are wildcard searches(FOLDERS ONLY) so any folders containing these values will be excluded from inventory
280
+ // ie. backup and backups will be excluded because "backup" was contained in the array
281
+ // This is a deep filter as well so ANY occurrence of these will be excluded no matter how deep in the tree
282
+ $plugin_exclude = array_merge(
283
  $global_exclude,
284
  array(
285
  "wp-backitup",
286
  )
287
  );
 
 
 
288
 
289
+ if ( ! $wp_backup->save_folder_inventory( WPBACKITUP__SQL_BULK_INSERT_SIZE, $current_job->getExternalId(), 'plugins', WPBACKITUP__PLUGINS_ROOT_PATH, $plugin_exclude ) ) {
290
+ WPBackItUp_LoggerV2::log_error( $backup_logname, $log_function, 'Plugins Inventory Error.' );
291
+ $current_job->set_task_error( '127' );
292
+
293
+ write_fatal_error_status( '127' );
294
+ end_backup( 127, false );
295
+
296
+ return false;
297
  };
298
 
299
+
300
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Plugin Inventory complete.');
301
+
302
+ //set_status('inventory',$complete,false);
303
+ $current_job->set_task_complete();
304
+
305
+ WPBackItUp_LoggerV2::log($backup_logname,'**INVENTORY PLUGINS**');
306
+ return;
307
+
308
+ }
309
+
310
+
311
+ if ('task_inventory_themes'==$current_task->getId()) {
312
+ WPBackItUp_LoggerV2::log( $backup_logname, '**INVENTORY THEMES**' );
313
+
314
+ $global_exclude = explode(',', WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST);
315
+
316
+ // WARNING
317
+ // Remember these are wildcard searches(FOLDERS ONLY) so any folders containing these values will be excluded from inventory
318
+ // ie. backup and backups will be excluded because "backup" was contained in the array
319
+ // This is a deep filter as well so ANY occurrence of these will be excluded no matter how deep in the tree
320
  $theme_exclude = WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST;
321
+
322
+ if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$current_job->getExternalId(),'themes',WPBACKITUP__THEMES_ROOT_PATH,$theme_exclude)){
323
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Themes Inventory Error.');
324
+ $current_job->set_task_error('127');
325
 
326
  write_fatal_error_status('127');
327
  end_backup(127,false);
328
+ return false;
329
  };
330
 
331
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Theme Inventory complete.');
332
+
333
+ $current_job->set_task_complete();
334
+
335
+ WPBackItUp_LoggerV2::log($backup_logname,'**INVENTORY THEMES**');
336
+ return;
337
+
338
+ }
339
+
340
+ if ('task_inventory_uploads'==$current_task->getId()) {
341
+ WPBackItUp_LoggerV2::log( $backup_logname, '**INVENTORY UPLOADS**' );
342
+
343
+ $global_exclude = explode(',', WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST);
344
+
345
+ // WARNING
346
+ // Remember these are wildcard searches(FOLDERS ONLY) so any folders containing these values will be excluded from inventory
347
+ // ie. backup and backups will be excluded because "backup" was contained in the array
348
+ // This is a deep filter as well so ANY occurrence of these will be excluded no matter how deep in the tree
349
  $upload_exclude = array_merge (
350
  $global_exclude,
351
  array(
355
 
356
  $upload_array = wp_upload_dir();
357
  $uploads_root_path = $upload_array['basedir'];
358
+ if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$current_job->getExternalId(),'uploads',$uploads_root_path,$upload_exclude)){
359
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Uploads Inventory Error.');
360
+ $current_job->set_task_error('127');
361
 
362
  write_fatal_error_status('127');
363
  end_backup(127,false);
364
+ return false;
365
  };
366
 
367
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Uploads Inventory complete.');
368
+ $current_job->set_task_complete();
369
+
370
+ WPBackItUp_LoggerV2::log($backup_logname,'**INVENTORY UPLOADS**');
371
+ return;
372
+
373
+ }
374
+
375
+ if ('task_inventory_others'==$current_task->getId()) {
376
+ WPBackItUp_LoggerV2::log( $backup_logname, '**INVENTORY OTHERS**' );
377
+
378
+ $global_exclude = explode(',', WPBACKITUP__BACKUP_GLOBAL_IGNORE_LIST);
379
+
380
+ // WARNING
381
+ // Remember these are wildcard searches(FOLDERS ONLY) so any folders containing these values will be excluded from inventory
382
+ // ie. backup and backups will be excluded because "backup" was contained in the array
383
+ // This is a deep filter as well so ANY occurrence of these will be excluded no matter how deep in the tree
384
  $other_exclude = array_merge (
385
  $global_exclude,
386
  array(
387
+ "debug.log",
388
+ "backup",
389
+ "plugins",
390
+ "themes",
391
+ "uploads",
392
+ "wpbackitup_backups",
393
+ "wpbackitup_restore",
394
+ "backup",
395
+ "w3tc-config",
396
+ "updraft",
397
+ "wp-clone",
398
+ "backwpup",
399
+ "backupwordpress",
400
+ "cache",
401
+ "backupcreator",
402
+ "backupbuddy",
403
+ "wptouch-data",
404
+ "ai1wm-backups",
405
+ "sedlex",
406
+ ));
407
+
408
+ if (! $wp_backup->save_folder_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$current_job->getExternalId(),'others',WPBACKITUP__CONTENT_PATH,$other_exclude)){
409
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Other Inventory Error.');
410
+ $current_job->set_task_error('127');
411
 
412
  write_fatal_error_status('127');
413
  end_backup(127,false);
414
+ return false;
415
  };
416
 
417
+ WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Others Inventory complete.');
 
418
 
419
+ //when others is done then update the task as completed
420
+ set_status('create_inventory',$complete,false);
421
+ $current_job->set_task_complete();
422
+
423
+ WPBackItUp_LoggerV2::log($backup_logname,'**INVENTORY OTHERS**');
424
  return;
425
+
426
  }
427
 
428
+
429
  //Backup the database
430
+ if ('task_backup_db'==$current_task->getId()) {
431
  WPBackItUp_LoggerV2::log($backup_logname,'**BEGIN SQL EXPORT**');
432
  write_response_processing( "Create database export" );
433
  set_status( 'backupdb', $active, true );
435
  $export_database = $wp_backup->export_database();
436
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Export Database return:' .var_export($export_database,true));
437
  if ( ! $export_database ) {
438
+ $current_job->set_task_error('104');
439
 
440
  write_fatal_error_status( '104' );
441
  //cleanup_on_failure( $wp_backup->backup_project_path );
442
  end_backup( 104, false );
443
+ return false;
444
  }
445
 
446
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Database Export complete.');
447
 
448
  set_status('backupdb',$complete,false);
449
+ $current_job->set_task_complete();
450
 
451
  WPBackItUp_LoggerV2::log($backup_logname,'**END SQL EXPORT**');
452
  return;
456
 
457
 
458
  //Extract the site info
459
+ if ('task_backup_siteinfo'==$current_task->getId()) {
460
  WPBackItUp_LoggerV2::log($backup_logname,'**SITE INFO**' );
461
  write_response_processing( "Retrieve Site Info" );
462
  set_status( 'infofile', $active, true );
472
  $site_data_files = $file_system->get_fileonly_list($wp_backup->backup_project_path, 'txt|sql');
473
  $site_data_complete = $wp_backup->backup_file_list( $source_site_data_root, $target_site_data_root, $suffix, $site_data_files, WPBACKITUP__OTHERS_BATCH_SIZE );
474
  if ( $site_data_complete == 'error' ) {
475
+ $current_job->set_task_error('105');
476
 
477
  write_fatal_error_status( '105' );
478
  //cleanup_on_failure( $wp_backup->backup_project_path );
479
  end_backup( 105, false );
480
+ return false;
481
  }
482
  } else {
483
  //Site data could be extracted
484
+ $current_job->set_task_error('105');
485
 
486
  write_fatal_error_status( '105' );
487
  //cleanup_on_failure( $wp_backup->backup_project_path );
488
  end_backup( 105, false );
489
+ return false;
490
  }
491
 
492
  //get rid of the SQL and sitedata file - will check again at end in cleanup
493
  $wp_backup->cleanup_current_backup();
494
 
495
  set_status( 'infofile', $complete, false );
496
+ $current_job->set_task_complete();
497
 
498
  WPBackItUp_LoggerV2::log($backup_logname,'**END SITE INFO**' );
499
  return;
501
  }
502
 
503
  //Backup the themes
504
+ if ('task_backup_themes'==$current_task->getId()) {
505
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP THEMES TASK**' );
506
  write_response_processing( "Backup themes " );
507
  set_status( 'backup_themes', $active, true );
508
 
509
+ $themes_remaining_files_count = $wp_backup->backup_files($current_job->getExternalId(),WPBACKITUP__THEMES_ROOT_PATH,'themes');
510
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Themes remaining:' .$themes_remaining_files_count);
511
  if ($themes_remaining_files_count===false) {
512
  //ERROR
513
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up themes.');
514
+ $current_job->set_task_error('120');
515
  write_fatal_error_status( '120' );
516
  //cleanup_on_failure( $wp_backup->backup_project_path );
517
  end_backup( 120, false );
518
+ return false;
519
  }else{
520
  if ($themes_remaining_files_count>0){
521
  //CONTINUE
522
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up themes.');
523
+ $current_job->set_task_queued();
524
  }else{
525
  //COMPLETE
526
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Complete - All themes backed up.');
527
 
528
  set_status( 'backup_themes', $complete, false );
529
+ $current_job->set_task_complete();
530
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP THEMES TASK**');
531
  }
532
  }
536
 
537
 
538
  //Backup the plugins
539
+ if ('task_backup_plugins'==$current_task->getId()) {
540
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP PLUGINS TASK**' );
541
  write_response_processing( "Backup plugins " );
542
  set_status( 'backup_plugins', $active, true );
543
 
544
+ $plugins_remaining_files_count = $wp_backup->backup_files($current_job->getExternalId(),WPBACKITUP__PLUGINS_ROOT_PATH,'plugins');
545
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Plugins remaining:' .$plugins_remaining_files_count);
546
  if ($plugins_remaining_files_count===false) {
547
  //ERROR
548
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up plugins.');
549
 
550
+ $current_job->set_task_error('121');
551
  write_fatal_error_status( '121' );
552
  //cleanup_on_failure( $wp_backup->backup_project_path );
553
  end_backup( 121, false );
554
+ return false;
555
  } else {
556
  if ($plugins_remaining_files_count>0){
557
  //CONTINUE
558
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up plugins.');
559
+ $current_job->set_task_queued();
560
  } else{
561
  //COMPLETE
562
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Complete - All plugins backed up.');
563
  set_status( 'backup_plugins', $complete, false );
564
+ $current_job->set_task_complete();
565
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP PLUGINS TASK**');
566
  }
567
  }
570
  }
571
 
572
  //Backup the uploads
573
+ if ('task_backup_uploads'==$current_task->getId()) {
574
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP UPLOADS TASK**' );
575
  write_response_processing( "Backup uploads " );
576
  set_status( 'backup_uploads', $active, true );
579
  $source_uploads_root = $upload_array['basedir'];
580
 
581
  //exclude zip files from backup
582
+ $uploads_remaining_files_count = $wp_backup->backup_files($current_job->getExternalId(),$source_uploads_root,'uploads');
583
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Uploads remaining:' .$uploads_remaining_files_count);
584
  if ( $uploads_remaining_files_count ===false) {
585
  //ERROR
586
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up uploads.' );
587
+ $current_job->set_task_error( '122' );
588
  write_fatal_error_status( '122' );
589
  end_backup( 122, false );
590
+ return false;
591
  } else {
592
  if ( $uploads_remaining_files_count > 0 ) {
593
  //CONTINUE
594
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up uploads.' );
595
+ $current_job->set_task_queued();
596
 
597
  } else {
598
  //COMPLETE
599
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All uploads backed up.' );
600
  set_status( 'backup_uploads', $complete, false );
601
+ $current_job->set_task_complete();
602
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP UPLOADS TASK**' );
603
  }
604
  }
607
  }
608
 
609
  //Backup all the other content in the wp-content root
610
+ if ('task_backup_other'==$current_task->getId()) {
611
  WPBackItUp_LoggerV2::log($backup_logname,'**BACKUP OTHER TASK**' );
612
  write_response_processing( "Backup other files " );
613
  set_status( 'backup_other', $active, true );
614
 
615
+ $others_remaining_files_count = $wp_backup->backup_files($current_job->getExternalId(),WPBACKITUP__CONTENT_PATH,'others');
616
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Others remaining:' .$others_remaining_files_count);
617
  if ( $others_remaining_files_count ===false) {
618
  //ERROR
619
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Error backing up others.' );
620
+ $current_job->set_task_error( '123' );
621
 
622
  write_fatal_error_status( '123' );
623
  //cleanup_on_failure( $wp_backup->backup_project_path );
624
  end_backup( 123, false );
625
+ return false;
626
  } else {
627
  if ( $others_remaining_files_count > 0 ) {
628
  //CONTINUE
629
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'Continue backing up others.' );
630
+ $current_job->set_task_queued();
631
  } else {
632
  //COMPLETE
633
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All others backed up.' );
634
 
635
  set_status( 'backup_other', $complete, false );
636
+ $current_job->set_task_complete();
637
  WPBackItUp_LoggerV2::log($backup_logname,'**END BACKUP OTHER TASK**' );
638
  }
639
 
648
  //db backup
649
 
650
  //Validate the backup IF logging is turned on - reporting only
651
+ if ('task_validate_backup'==$current_task->getId()) {
652
  //Validate the content if logging is on
653
  WPBackItUp_LoggerV2::log($backup_logname,'**VALIDATE CONTENT**');
654
 
659
  $set_validate_backup_job_queue = true;
660
  $db = new WPBackItUp_DataAccess();
661
 
662
+ $plugin_validation_meta = $current_job->get_job_meta('task_multistep_validate_plugins');
663
+ $theme_validation_meta = $current_job->get_job_meta('task_multistep_validate_themes');
664
+ $upload_validation_meta = $current_job->get_job_meta('task_multistep_validate_uploads');
665
+ $other_validation_meta = $current_job->get_job_meta('task_multistep_validate_others');
666
 
667
  $validation_meta=false;
668
  $validation_task=false;
684
 
685
  if( $validation_meta !==false ) {
686
  $meta_task = sprintf( 'task_multistep_validate_%s', $validation_task );
687
+ $batch_ids = $db->get_batch_ids( $current_job->getExternalId(), $validation_task );
688
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Batch Ids: %s',$validation_task,var_export( $batch_ids, true )));
689
  //$plugin_validation_batch_ids will never be empty
690
 
697
 
698
  if ( array_key_exists( $array_index, $batch_ids ) ) {
699
  $batch_id = $batch_ids[ $array_index ];//get batch ID
700
+ $validate_result = $wp_backup->validate_backup_files_by_batch_id( $current_job->getExternalId(), $validation_task, $batch_id );
701
  if ( $validate_result === false ) {
702
  $set_validate_backup_error = true;
703
  } else {
704
+ $current_job->update_job_meta( $meta_task, $array_index );
705
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Content, Batch ID: %s Validated Successfully!',$validation_task,$batch_id ));
706
  }
707
  } else {
708
  //task is done
709
+ $current_job->update_job_meta( $meta_task, 'completed' );
710
  WPBackItUp_LoggerV2::log_info( $backup_logname, $log_function, sprintf('%s Content Validated Successfully!',$validation_task));
711
  }
712
  }
715
  if($set_validate_backup_error) {
716
  //ERROR
717
  WPBackItUp_LoggerV2::log_error($backup_logname,$log_function,'Content Validation ERROR.' );
718
+ $current_job->set_task_error( '126' );
719
 
720
  write_fatal_error_status( '126' );
721
  end_backup( 123, false );
722
+ return false;
723
  } elseif($set_validate_backup_job_queue === false) {
724
  //validation completed, delete all options
725
  $keys = array (
729
  'task_multistep_validate_others'
730
  );
731
  foreach ($keys as $key) {
732
+ delete_post_meta($current_job->getJobId(),$key);
733
  }
734
  //set backup status to success
735
  set_status( 'validate_backup', $complete, false );
736
+ $current_job->set_task_complete();
737
 
738
  WPBackItUp_LoggerV2::log_info($backup_logname,$log_function,'All Content Validated Successfully!' );
739
  WPBackItUp_LoggerV2::log($backup_logname,'**END VALIDATE CONTENT**' );
740
 
741
  } elseif ($set_validate_backup_job_queue === true) {
742
+ $current_job->set_task_queued();
743
  }
744
 
745
  return;
746
  }
747
 
748
  //Zip up the backup folder
749
+ if ('task_finalize_backup'==$current_task->getId()) {
750
  WPBackItUp_LoggerV2::log($backup_logname,'**FINALIZE BACKUP**' );
751
  write_response_processing( "Compress Backup " );
752
  set_status( 'finalize_backup', $active, true );
753
 
754
  //Generate manifest
755
  if ( ! $wp_backup->create_backup_manifest()) {
756
+ $current_job->set_task_error('109');
757
 
758
  write_fatal_error_status( '109' );
759
  //cleanup_on_failure( $wp_backup->backup_project_path );
760
  end_backup( 109, false );
761
+ return false;
762
  }
763
 
764
  if ( ! $wp_backup->cleanup_current_backup() ) {
768
 
769
  //Rename backup folder
770
  if ( ! $wp_backup->rename_backup_folder()) {
771
+ $current_job->set_task_error('109');
772
 
773
  write_fatal_error_status( '109' );
774
  //cleanup_on_failure( $wp_backup->backup_project_path );
775
  end_backup( 109, false );
776
+ return false;
777
  }
778
 
779
  //Take an inventory of the zip files created
780
 
781
  $file_system = new WPBackItUp_FileSystem($backup_logname);
782
  $zip_files = $file_system->get_fileonly_list($wp_backup->backup_project_path, 'zip');
783
+ $wp_backup->save_file_list_inventory(WPBACKITUP__SQL_BULK_INSERT_SIZE,$current_job->getExternalId(),'backups',$wp_backup->backup_project_path,$zip_files);
784
+
785
 
786
+ //Save all backup job meta
787
+ $current_job->update_job_meta('backup_zip_files' , $zip_files ); //list of zip files
788
+
789
+ // Combine the zip files into one file
790
+ // $zip_remaining_files_count = $wp_backup->backup_files( $current_job->getExternalId(), $wp_backup->backup_project_path, 'backup-files', 'combined' );
791
 
792
  set_status( 'finalize_backup', $complete, false );
793
+ $current_job->set_task_complete();
794
 
795
  WPBackItUp_LoggerV2::log($backup_logname,'**END FINALIZE BACKUP**' );
796
 
801
  $wp_backup->set_final_backup_path();
802
 
803
 
804
+ if ($current_job->getJobStatus()==WPBackItUp_Job_v2::COMPLETE) {
805
  //SUCCESS- End Job!
806
 
807
+ $wp_backup->update_job_control_complete($current_job->getExternalId());
808
 
809
  //write response file first to make sure it is there
810
  write_response_file_success();
812
 
813
  $WPBackitup->increment_successful_backup_count();
814
  end_backup( null, true );
815
+ return true;
816
  }
817
 
818
  exit();
819
  /******************/
820
  /*** Functions ***/
821
  /******************/
 
 
 
 
 
 
 
 
 
 
 
822
 
 
823
  function end_backup($err=null, $success=null){
824
+ global $WPBackitup,$wp_backup,$backup_logname,$current_job;
825
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Begin');
826
 
827
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Zip up all the logs.');
828
  //Zip up all the logs in the log folder
829
  $logs_path = WPBACKITUP__PLUGIN_PATH .'logs';
830
+ $zip_file_path = $wp_backup->backup_project_path .'logs_' .$current_job->getExternalId() . '.zip';
831
 
832
  //copy WP debug file
833
  $wpdebug_file_path = WPBACKITUP__CONTENT_PATH . '/debug.log';
834
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Save WP Debug: ' .$wpdebug_file_path);
835
  if (file_exists($wpdebug_file_path)) {
836
+ $debug_log = sprintf('%s/wpdebug_%s.log',$logs_path,$current_job->getExternalId());
837
  copy( $wpdebug_file_path, $debug_log );
838
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'WP Debug file saved: ' .$debug_log);
839
  }else{
841
  }
842
 
843
  $zip = new WPBackItUp_Zip($backup_logname,$zip_file_path);
844
+ $zip->zip_files_in_folder($logs_path,$current_job->getExternalId(),'*.log');
845
  $zip->close();
846
 
847
  WPBackItUp_Backup::end(); //Release the lock
850
 
851
 
852
  $util = new WPBackItUp_Utility($backup_logname);
853
+ $seconds = $util->timestamp_diff_seconds($current_job->get_job_start_time(),$current_job->get_job_end_time());
854
 
855
  $processing_minutes = round($seconds / 60);
856
  $processing_seconds = $seconds % 60;
878
 
879
  WPBackItUp_LoggerV2::close($backup_logname);
880
  echo('Backup has completed');
 
881
  }
882
 
883
  function send_backup_notification_email($err, $success,$logs=array()) {
884
+ global $WPBackitup, $wp_backup, $backup_logname,$status_array,$current_job;
885
  WPBackItUp_LoggerV2::log_info($backup_logname,__METHOD__,'Begin');
886
 
887
+ $start_timestamp = $current_job->get_job_start_time();
888
+ $end_timestamp = $current_job->get_job_end_time();
889
 
890
  $utility = new WPBackItUp_Utility($backup_logname);
891
  $seconds = $utility->timestamp_diff_seconds($start_timestamp,$end_timestamp);
893
  $processing_minutes = round($seconds / 60);
894
  $processing_seconds = $seconds % 60;
895
 
896
+ $message="";
 
 
 
 
 
 
 
 
 
 
 
 
897
  if($success)
898
  {
899
  //Don't send logs on success unless debug is on.
901
  $logs=array();
902
  }
903
 
904
+ //If this is a scheduled backup and the license is expired
905
+ if ($WPBackitup->premium_license() && 'expired'===$WPBackitup->license_status()){
906
+ //send an email to customer letting them know their license
907
+ $message .= sprintf( __('<strong>IMPORTANT NOTICE:</strong> <span style="color: #ff0000;"> Your license has expired.</span><br/><br/>Scheduled backups will only continue to function for <strong>30</strong> days after your license has expired.Please <strong><a href="%s" target="blank">renew</a></strong> for another year of product updates and access to our world class support team.<br/><br/>',WPBACKITUP__NAMESPACE),
908
+ esc_url(sprintf('%s/checkout?edd_license_key=%s&download_id=679&nocache=true&utm_medium=plugin&utm_source=wp-backitup&utm_campaign=premium&utm_content=license&utm_term=scheduled+backups', WPBACKITUP__SECURESITE_URL,$WPBackitup->license_key())));
909
+ }
910
+
911
+
912
  $subject = sprintf(__('%s - Backup completed successfully.', WPBACKITUP__NAMESPACE), get_bloginfo());
913
+ $message .= '<b>' . __('Your backup completed successfully.', WPBACKITUP__NAMESPACE) . '</b><br/><br/>';
914
 
915
  } else {
916
  $subject = sprintf(__('%s - Backup did not complete successfully.', WPBACKITUP__NAMESPACE), get_bloginfo());
917
+ $message .= '<b>' . __('Your backup did not complete successfully.', WPBACKITUP__NAMESPACE) . '</b><br/><br/>';
918
  }
919
 
920
+
921
  $local_start_datetime = get_date_from_gmt(date( 'Y-m-d H:i:s',$start_timestamp));
922
  $local_end_datetime = get_date_from_gmt(date( 'Y-m-d H:i:s',$end_timestamp));
923
+
924
  $message .= sprintf(__('WordPress Site: <a href="%s" target="_blank"> %s </a><br/>', WPBACKITUP__NAMESPACE), home_url(), home_url());
925
  $message .= __('Backup date:', WPBACKITUP__NAMESPACE) . ' ' . $local_start_datetime . '<br/>';
926
  $message .= __('Number of backups completed with WP BackItUp:', WPBACKITUP__NAMESPACE) . ' ' . $WPBackitup->backup_count() . '<br/>';
927
 
928
+ $message .= __('Completion Code:', WPBACKITUP__NAMESPACE) . ' ' . $current_job->getExternalId() .'-'. $processing_minutes .'-' .$processing_seconds .'<br/>';
929
  $message .= __('WP BackItUp Version:', WPBACKITUP__NAMESPACE) . ' ' . WPBACKITUP__VERSION . '<br/>';
930
  $message .= '<br/>';
931
 
 
932
  //Add the completed steps on success
933
+ if(! $success) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
934
  //Error occurred
935
  $message .= '<br/>';
936
  $message .= 'Errors:<br/>' . get_error_message($err);
lib/includes/job_backup_cancelled.php DELETED
@@ -1,118 +0,0 @@
1
- <?php if (!defined ('ABSPATH')) die('No direct access allowed');
2
-
3
- // Checking safe mode is on/off and set time limit
4
- if( ini_get('safe_mode') ){
5
- @ini_set('max_execution_time', WPBACKITUP__SCRIPT_TIMEOUT_SECONDS);
6
- }else{
7
- @set_time_limit(WPBACKITUP__SCRIPT_TIMEOUT_SECONDS);
8
- }
9
-
10
- /**
11
- * WP BackItUp - Backup Cancelled Job
12
- *
13
- * @package WP BackItUp
14
- * @author Md. Al-Amin <alamin.opu10@gmail.com>
15
- * @link http://www.wpbackitup.com
16
- *
17
- */
18
-
19
- /*** Includes ***/
20
-
21
- if( !class_exists( 'WPBackItUp_Filesystem' ) ) {
22
- include_once 'class-filesystem.php';
23
- }
24
-
25
- if( !class_exists( 'WPBackItUp_Job' ) ) {
26
- include_once 'class-job.php';
27
- }
28
-
29
- /*** Globals ***/
30
- global $WPBackitup;
31
-
32
- global $status_array,$inactive,$active,$complete,$failure,$warning,$success,$cancelled;
33
- $inactive=0;
34
- $active=1;
35
- $complete=2;
36
- $failure=-1;
37
- $warning=-2;
38
- $success=99;
39
- $cancelled=-99;
40
-
41
-
42
- //setup the status array
43
- global $status_array;
44
- $status_array = array(
45
- 'preparing' =>$inactive,
46
- 'backupdb' =>$inactive ,
47
- 'infofile'=>$inactive,
48
- 'backup_themes'=>$inactive,
49
- 'backup_plugins'=>$inactive,
50
- 'backup_uploads'=>$inactive,
51
- 'backup_other'=>$inactive,
52
- 'validate_backup'=>$inactive,
53
- 'finalize_backup'=>$inactive,
54
- );
55
-
56
- global $backup_job;
57
- $backup_job=null;
58
-
59
- $backup_job = WPBackItUp_Job::get_job('backup');
60
-
61
- //Get the backup ID
62
- $backup_name = get_backup_name($backup_job->backup_id);
63
- $backup_logname = $backup_name;
64
-
65
- // Setting status cancelled
66
- set_status_cancelled();
67
-
68
- /******************/
69
- /*** Functions ***/
70
- /******************/
71
- function get_backup_name($timestamp){
72
-
73
- $url = home_url();
74
- $url = str_replace('http://','',$url);
75
- $url = str_replace('https://','',$url);
76
- $url = str_replace('/','-',$url);
77
- $fileUTCDateTime=$timestamp;//current_time( 'timestamp' );
78
- $localDateTime = date_i18n('Y-m-d-His',$fileUTCDateTime);
79
- $backup_name = 'Backup_' . $url .'_' .$localDateTime;
80
-
81
- return $backup_name;
82
-
83
- }
84
-
85
-
86
- function write_status() {
87
- global $status_array;
88
- $fh=getStatusLog();
89
-
90
- foreach ($status_array as $key => $value) {
91
- fwrite($fh, '<div class="' . $key . '">' . $value .'</div>');
92
- }
93
-
94
- fclose($fh);
95
- }
96
-
97
- // Set Status Cancelled
98
- function set_status_cancelled(){
99
- global $status_array,$cancelled;
100
-
101
- //Mark all the cancelled and flush
102
- foreach ($status_array as $key => $value) {
103
- $status_array[$key]=$cancelled;
104
- }
105
-
106
- $status_array['finalinfo']=$cancelled;
107
- write_status();
108
- }
109
-
110
- //Get Status Log
111
- function getStatusLog(){
112
- global $backup_logname;
113
-
114
- $status_file_path = WPBACKITUP__PLUGIN_PATH .'/logs/backup_status.log';
115
- $filesystem = new WPBackItUp_FileSystem($backup_logname);
116
- return $filesystem->get_file_handle($status_file_path);
117
-
118
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lib/includes/job_cleanup.php CHANGED
@@ -46,11 +46,6 @@ if( !class_exists( 'WPBackItUp_Filesystem' ) ) {
46
  include_once 'class-filesystem.php';
47
  }
48
 
49
- // include job class
50
- if( !class_exists( 'WPBackItUp_Job' ) ) {
51
- include_once 'class-job.php';
52
- }
53
-
54
  /*** Globals ***/
55
  global $WPBackitup;
56
 
@@ -62,97 +57,104 @@ $failure=-1;
62
  $warning=-2;
63
  $success=99;
64
 
 
 
 
65
 
66
- //**************************//
67
- // SINGLE THREAD BACKUPS //
68
- //**************************//
69
- $tasks_logname='debug_tasks';
70
- $backup_process_id = uniqid();
71
-
72
- //If there is a queued or active job then add a resume check
73
- if ('scheduled'==$this->backup_type){
74
- wp_schedule_single_event( time()+30, 'wpbackitup_run_cleanup_tasks');
75
  }
76
 
77
- //Make sure backup is NOT already running before you run the current task
78
- if (!WPBackItUp_Backup::start()) {
79
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'Cleanup job cant acquire job lock.');
80
- return; //nothing to do
81
- }else{
82
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'Cleanup job lock acquired.');
83
- }
84
- //**************************//
85
-
86
- //**************************//
87
- // Task Handling //
88
- //**************************//
89
- global $cleanup_job;
90
- $cleanup_job=null;
91
- $current_task= null;
92
-
93
- $backup_error=false;
94
-
95
-
96
- $cleanup_job = WPBackItUp_Job::get_job('cleanup');
97
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'Check for available job');
98
- if ($cleanup_job){
99
-
100
- //Get the next task in the stack
101
- $next_task = $cleanup_job->get_next_task();
102
- if (false!==$next_task){
103
- $backup_id=$cleanup_job->backup_id;
104
- $current_task=$next_task;
105
-
106
- //If task contains error then timeout has occurred
107
- if (strpos($current_task,'error') !== false){
108
- $backup_error=true;
109
- }
110
-
111
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'Available Task Found:' . $current_task);
112
-
113
- }else{
114
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'No available tasks found.');
115
- WPBackItUp_Backup::end(); //release lock
116
- return;
117
- }
118
- }else {
119
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'No backup job available.');
120
- wp_clear_scheduled_hook( 'wpbackitup_run_cleanup_tasks');
121
- WPBackItUp_Backup::end(); //release lock
122
- return;
123
  }
124
 
 
125
 
126
- //Should only get here when there is a task to run
127
- WPBackItUp_LoggerV2::log_info($tasks_logname,$backup_process_id ,'Run cleanup task:' .$current_task);
128
 
129
  //*************************//
130
- //*** MAIN BACKUP CODE ***//
131
  //*************************//
132
 
133
- //Get the backup ID
134
- $job_name = get_job_name($cleanup_job->backup_id);
135
-
136
  global $cleanup_logname;
137
- $cleanup_logname=$job_name;
 
138
 
139
  global $wp_backup;
140
  $wp_backup = new WPBackItUp_Backup($cleanup_logname,$job_name,$WPBackitup->backup_type);
141
 
142
- //*** SCHEDULED TASKS ***//
 
 
 
143
 
144
  //Run cleanup task
145
- if ('task_scheduled_cleanup'==$current_task) {
 
 
 
 
146
 
147
- //Init
148
  WPBackItUp_LoggerV2::log($cleanup_logname,'***BEGIN JOB***');
149
  WPBackItUp_LoggerV2::log_sysinfo($cleanup_logname);
150
 
 
 
 
151
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CHECK LICENSE**');
152
  do_action( 'wpbackitup_check_license');
153
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CHECK LICENSE**');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
 
 
 
 
 
 
 
 
 
 
 
155
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN UNFINISHED BACKUPS**' );
 
156
  //cleanup any folders that have the TMP_ prefix
157
  $wp_backup->cleanup_backups_by_prefix('TMP_');
158
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN UNFINISHED BACKUPS**' );
@@ -160,25 +162,46 @@ if ('task_scheduled_cleanup'==$current_task) {
160
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN DELETED BACKUPS**' );
161
  //cleanup any folders that have the DLT_ prefix
162
  $wp_backup->cleanup_backups_by_prefix('DLT_');
 
163
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN DELETED BACKUPS**' );
 
 
164
 
 
 
 
 
165
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN OLD BACKUPS**' );
166
- //Cleanup any folders that exceed retention limit
167
- $wp_backup->cleanup_old_backups();
168
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN OLD BACKUPS**' );
169
 
 
 
170
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN OLD RESTORES**' );
171
  //Cleanup any folders that exceed retention limit
172
  $wp_restore = new WPBackItUp_Restore($cleanup_logname,$job_name,null);
173
  $wp_restore->delete_restore_folder();
174
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN OLD RESTORES**' );
 
 
175
 
 
 
 
176
  WPBackItUp_LoggerV2::log($cleanup_logname,'**PURGE OLD FILES**' );
 
 
177
  $wp_backup->purge_old_files();
 
178
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END PURGE OLD FILES**' );
 
 
179
 
 
 
 
 
180
  WPBackItUp_LoggerV2::log($cleanup_logname,'**SECURE FOLDERS**' );
181
- //Make sure backup folder is secured
182
  $file_system = new WPBackItUp_FileSystem($cleanup_logname);
183
 
184
  //Make sure backup folder is secured
@@ -192,46 +215,33 @@ if ('task_scheduled_cleanup'==$current_task) {
192
  //Make sure logs folder is secured
193
  $logs_dir = WPBACKITUP__PLUGIN_PATH .'/logs/';
194
  $file_system->secure_folder( $logs_dir);
 
195
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END SECURE FOLDERS**' );
 
196
 
197
- WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEANUP OLD JOBS**' );
198
- $backup_job_purge_count = WPBackItUp_Job_v2::purge_completed_jobs('backup');
199
- WPBackItUp_LoggerV2::log($cleanup_logname,'Backup job records purged:' .$backup_job_purge_count );
200
 
201
- $cleanup_job_purge_count = WPBackItUp_Job_v2::purge_completed_jobs('cleanup');
202
- WPBackItUp_LoggerV2::log_info($cleanup_logname,__METHOD__,'Cleanup job records purged:' .$cleanup_job_purge_count );
203
- WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEANUP OLD JOBS**' );
204
 
205
- $cleanup_job->set_task_complete();
 
206
  }
207
 
208
  end_job(null,true);
 
209
 
210
  //*** END SCHEDULED TASKS ***//
211
 
212
  /******************/
213
  /*** Functions ***/
214
  /******************/
215
- function get_job_name($timestamp){
216
-
217
- $fileUTCDateTime=$timestamp;//current_time( 'timestamp' );
218
- $localDateTime = date_i18n('Y-m-d-His',$fileUTCDateTime);
219
- $job_name = 'cleanup_' .$localDateTime;
220
-
221
- return $job_name;
222
-
223
- }
224
-
225
  function end_job($err=null, $success=null){
226
- global $WPBackitup, $cleanup_logname, $cleanup_job;
227
  WPBackItUp_LoggerV2::log_info($cleanup_logname,__METHOD__,'Begin');
228
 
229
- WPBackItUp_Backup::end(); //Release the lock
230
  $current_datetime = current_time( 'timestamp' );
231
  $WPBackitup->set_cleanup_lastrun_date($current_datetime);
232
 
233
  $util = new WPBackItUp_Utility($cleanup_logname);
234
- $seconds = $util->timestamp_diff_seconds($cleanup_job->get_job_start_time(),$cleanup_job->get_job_end_time());
235
 
236
  $processing_minutes = round($seconds / 60);
237
  $processing_seconds = $seconds % 60;
@@ -243,6 +253,5 @@ function end_job($err=null, $success=null){
243
  WPBackItUp_LoggerV2::log($cleanup_logname,'*** END JOB ***');
244
 
245
  echo('cleanup has completed');
246
- exit(0);
247
  }
248
 
46
  include_once 'class-filesystem.php';
47
  }
48
 
 
 
 
 
 
49
  /*** Globals ***/
50
  global $WPBackitup;
51
 
57
  $warning=-2;
58
  $success=99;
59
 
60
+ //*************************//
61
+ //*** MAIN CODE ***//
62
+ //*************************//
63
 
64
+ if (! is_object ($current_job)){
65
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current job not object:');
66
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_job));
67
+ return false;
 
 
 
 
 
68
  }
69
 
70
+ if (! is_object ($current_task)){
71
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current task not object');
72
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_task));
73
+ return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
 
76
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id ,'Run task:' .$current_task->getId());
77
 
 
 
78
 
79
  //*************************//
80
+ //*** CLEANUP TASKS ***//
81
  //*************************//
82
 
 
 
 
83
  global $cleanup_logname;
84
+ $job_name = $current_job->getJobName();
85
+ $cleanup_logname = sprintf('JobLog_%s',$current_job->getJobName());
86
 
87
  global $wp_backup;
88
  $wp_backup = new WPBackItUp_Backup($cleanup_logname,$job_name,$WPBackitup->backup_type);
89
 
90
+ $backup_retention = $WPBackitup->backup_retained_number();
91
+
92
+
93
+ //TODO: Break this up into multiple tasks
94
 
95
  //Run cleanup task
96
+ if ('task_scheduled_cleanup'==$current_task->getId()) {
97
+
98
+ /* -----------------------------------------------------------------------*/
99
+ /* ** INIT **
100
+ /* -----------------------------------------------------------------------*/
101
 
 
102
  WPBackItUp_LoggerV2::log($cleanup_logname,'***BEGIN JOB***');
103
  WPBackItUp_LoggerV2::log_sysinfo($cleanup_logname);
104
 
105
+ WPBackItUp_LoggerV2::log($cleanup_logname,'Backup Retention:' .$backup_retention);
106
+
107
+ //Check License
108
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CHECK LICENSE**');
109
  do_action( 'wpbackitup_check_license');
110
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CHECK LICENSE**');
111
+ /* -----------------------------------------------------------------------*/
112
+
113
+
114
+ /* -----------------------------------------------------------------------*/
115
+ /* ** PURGE: JOB CONTROL **
116
+ /* -----------------------------------------------------------------------*/
117
+
118
+ // Purge post and post meta
119
+ WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEANUP JOB CONTROL RECORDS**' );
120
+
121
+ $backup_job_purge_count = WPBackItUp_Job_v2::purge_job_control( WPBackItUp_Job_v2::BACKUP,$backup_retention);
122
+ WPBackItUp_LoggerV2::log($cleanup_logname,'Backup job control records purged:' .$backup_job_purge_count );
123
+
124
+ $cleanup_job_purge_count = WPBackItUp_Job_v2::purge_job_control( WPBackItUp_Job_v2::CLEANUP,3);
125
+ WPBackItUp_LoggerV2::log_info($cleanup_logname,__METHOD__,'Cleanup job control records purged:' .$cleanup_job_purge_count );
126
+
127
+ WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEANUP JOB CONTROL RECORDS**' );
128
+ /* -----------------------------------------------------------------------*/
129
+
130
+
131
+
132
+ /* -----------------------------------------------------------------------*/
133
+ /* ** PURGE: JOB INVENTORY **
134
+ /* -----------------------------------------------------------------------*/
135
+
136
+ //purge all the orphaned job items 10,000 at a time
137
+ WPBackItUp_LoggerV2::log($cleanup_logname,'**PURGE ORPHANED JOB ITEMS**' );
138
+
139
+ $backup_job_items_purge_count = WPBackItUp_Job_v2::purge_orphaned_job_items( WPBackItUp_Job_v2::BACKUP);
140
+ WPBackItUp_LoggerV2::log_info($cleanup_logname,__METHOD__,'Backup job items purged:' .$backup_job_items_purge_count );
141
+
142
+ WPBackItUp_LoggerV2::log($cleanup_logname,'**END PURGE ORPHANED JOB ITEMS**' );
143
+
144
+ /* -----------------------------------------------------------------------*/
145
 
146
+
147
+
148
+
149
+
150
+
151
+ /* -----------------------------------------------------------------------*/
152
+ /* ** PURGE: PREFIXED FOLDERS/FILES **
153
+ /* -----------------------------------------------------------------------*/
154
+
155
+ // Purge all folders if they have temp prefix
156
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN UNFINISHED BACKUPS**' );
157
+
158
  //cleanup any folders that have the TMP_ prefix
159
  $wp_backup->cleanup_backups_by_prefix('TMP_');
160
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN UNFINISHED BACKUPS**' );
162
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN DELETED BACKUPS**' );
163
  //cleanup any folders that have the DLT_ prefix
164
  $wp_backup->cleanup_backups_by_prefix('DLT_');
165
+
166
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN DELETED BACKUPS**' );
167
+ /* -----------------------------------------------------------------------*/
168
+
169
 
170
+ /* -----------------------------------------------------------------------*/
171
+ /* ** PURGE: BACKUP/RESTORE FOLDERS/FILES ** */
172
+ /* -----------------------------------------------------------------------*/
173
+ //Purge orphaned backup folders - folders with no job control record
174
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN OLD BACKUPS**' );
175
+ $wp_backup->purge_orphaned_backups();
 
176
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN OLD BACKUPS**' );
177
 
178
+
179
+ //remove all the old restore folders
180
  WPBackItUp_LoggerV2::log($cleanup_logname,'**CLEAN OLD RESTORES**' );
181
  //Cleanup any folders that exceed retention limit
182
  $wp_restore = new WPBackItUp_Restore($cleanup_logname,$job_name,null);
183
  $wp_restore->delete_restore_folder();
184
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END CLEAN OLD RESTORES**' );
185
+ /* -----------------------------------------------------------------------*/
186
+
187
 
188
+ /* -----------------------------------------------------------------------*/
189
+ /* ** PURGE OLD FILES ** */
190
+ /* -----------------------------------------------------------------------*/
191
  WPBackItUp_LoggerV2::log($cleanup_logname,'**PURGE OLD FILES**' );
192
+
193
+ // purge old files from the backup and logs folders - this is NOT for backups
194
  $wp_backup->purge_old_files();
195
+
196
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END PURGE OLD FILES**' );
197
+ /* -----------------------------------------------------------------------*/
198
+
199
 
200
+
201
+ /* -----------------------------------------------------------------------*/
202
+ /* ** SECURE FOLDERS ** */
203
+ /* -----------------------------------------------------------------------*/
204
  WPBackItUp_LoggerV2::log($cleanup_logname,'**SECURE FOLDERS**' );
 
205
  $file_system = new WPBackItUp_FileSystem($cleanup_logname);
206
 
207
  //Make sure backup folder is secured
215
  //Make sure logs folder is secured
216
  $logs_dir = WPBACKITUP__PLUGIN_PATH .'/logs/';
217
  $file_system->secure_folder( $logs_dir);
218
+
219
  WPBackItUp_LoggerV2::log($cleanup_logname,'**END SECURE FOLDERS**' );
220
+ /* -----------------------------------------------------------------------*/
221
 
 
 
 
222
 
 
 
 
223
 
224
+
225
+ $current_job->set_task_complete();
226
  }
227
 
228
  end_job(null,true);
229
+ return true;
230
 
231
  //*** END SCHEDULED TASKS ***//
232
 
233
  /******************/
234
  /*** Functions ***/
235
  /******************/
 
 
 
 
 
 
 
 
 
 
236
  function end_job($err=null, $success=null){
237
+ global $WPBackitup, $cleanup_logname, $current_job;
238
  WPBackItUp_LoggerV2::log_info($cleanup_logname,__METHOD__,'Begin');
239
 
 
240
  $current_datetime = current_time( 'timestamp' );
241
  $WPBackitup->set_cleanup_lastrun_date($current_datetime);
242
 
243
  $util = new WPBackItUp_Utility($cleanup_logname);
244
+ $seconds = $util->timestamp_diff_seconds($current_job->get_job_start_time(),$current_job->get_job_end_time());
245
 
246
  $processing_minutes = round($seconds / 60);
247
  $processing_seconds = $seconds % 60;
253
  WPBackItUp_LoggerV2::log($cleanup_logname,'*** END JOB ***');
254
 
255
  echo('cleanup has completed');
 
256
  }
257
 
lib/includes/job_restore.php CHANGED
@@ -73,86 +73,62 @@ $status_array = array(
73
  'update_permalinks'=>$inactive,
74
  );
75
 
76
- //**************************//
77
- // SINGLE THREAD RESTORE //
78
- //**************************//
79
- $process_id = uniqid();
80
- $restore_task_log = 'debug_restore_tasks';
81
-
82
- //**************************//
83
- // Task Handling //
84
- //**************************//
85
- $current_task= null;
86
-
87
- $restore_error=false;
88
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'Check for available job');
89
- if ($restore_job){
90
-
91
- //Get the next task in the stack
92
- $current_task = $restore_job->get_next_task();
93
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'TASK Info:'.var_export($current_task,true));
94
- if (null!= $current_task && false!==$current_task){
95
- $restore_id=$restore_job->get_job_id();
96
- $current_task->increment_retry_count();
97
-
98
- //Was there an error on the previous task
99
- if (WPBackItUp_Job_v2::ERROR==$current_task->getStatus()){
100
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'Restore Error Found:' .$current_task->getId());
101
- $restore_error=true;
102
- }
103
-
104
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'Available Task Found:' . $current_task->getId());
105
-
106
- }else{
107
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'No available tasks found.');
108
- //WPBackItUp_Backup::end(); //release lock
109
- return;
110
- }
111
- }else {
112
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'No job available.');
113
 
114
- //wp_clear_scheduled_hook( 'wpbackitup_run_restore_tasks');
115
- //WPBackItUp_Backup::end(); //release lock
116
- return;
 
117
  }
118
 
119
- //Should only get here when there is a task to run
120
- WPBackItUp_LoggerV2::log_info($restore_task_log,$process_id,'Run Restore task:' .$current_task->getId());
 
 
 
121
 
 
122
 
123
- //*****************//
124
- //*** MAIN CODE ***//
125
- //*****************//
126
 
127
  //Get the job name
128
- $job_log_name = get_job_log_name($restore_job->get_job_id());
129
 
130
  $restore_logname = $job_log_name;
131
  $log_function='job_restore::'.$current_task->getId();
132
 
133
- $backup_name = $restore_job->get_job_meta('backup_name');
134
  if( empty($backup_name)) {
135
  WPBackItUp_LoggerV2::log_error($restore_logname,$log_function,'Backup name not found in job meta.');
136
  write_fatal_error_status('error201');
137
  end_restore();
 
138
  }
139
 
140
  //Get user ID
141
- $user_id = $restore_job->get_job_meta('user_id');
142
  if( empty($user_id)) {
143
  WPBackItUp_LoggerV2::log_error($restore_logname,$log_function,'User Id not found in job meta.');
144
  write_fatal_error_status('error201');
145
  end_restore();
 
146
  }
147
 
148
  global $wp_restore; //Eventually everything will be migrated to this class
149
- $wp_restore = new WPBackItUp_Restore($restore_logname,$backup_name,$restore_job->get_job_id());
150
 
151
  //*************************//
152
  //*** RESTORE TASKS ***//
153
  //*************************//
154
- //An error has occurred on the previous tasks
155
- if ($restore_error) {
 
 
 
 
 
 
156
 
157
  //Check for error type
158
  switch ( $current_task->getId() ) {
@@ -188,6 +164,8 @@ if ($restore_error) {
188
  fatal_error( 'unknown', '2999', 'Task ended in error:'.$current_task->getId() );
189
  break;
190
  }
 
 
191
  }
192
 
193
  //Cleanup Task
@@ -205,28 +183,33 @@ if ('task_preparing'==$current_task->getId()) {
205
  //which is a valid condition.
206
  if (! $this->license_active()){
207
  fatal_error($task,'225','Restore is not available because license is not active.');
 
208
  }
209
 
210
  //PREPARE TASK
211
  if (! class_exists('ZipArchive')){
212
  fatal_error($task,'235','Zip Archive Class is not available.');
 
213
  }
214
 
215
  WPBackItUp_LoggerV2::log($restore_logname,'*DELETE RESTORE FOLDER*');
216
  if ( ! $wp_restore->delete_restore_folder()){
217
  fatal_error($task,'222','Restore folder could not be deleted.');
 
218
  }
219
  WPBackItUp_LoggerV2::log($restore_logname,'*END DELETE RESTORE FOLDER*');
220
 
221
  WPBackItUp_LoggerV2::log($restore_logname,'*CREATE ROOT RESTORE FOLDER*');
222
  if ( ! $wp_restore->create_restore_root_folder()){
223
  fatal_error($task,'222','Root Restore folder could not be created.');
 
224
  }
225
  WPBackItUp_LoggerV2::log($restore_logname,'*END CREATE RESTORE FOLDER*');
226
 
227
  WPBackItUp_LoggerV2::log($restore_logname,'*DELETE STAGED FOLDER*');
228
  if ( ! $wp_restore->delete_staged_folders()){
229
  fatal_error($task, '222','Staged folders could not be deleted.');
 
230
  }
231
  WPBackItUp_LoggerV2::log($restore_logname,'*END DELETE STAGED FOLDER*');
232
 
@@ -236,10 +219,11 @@ if ('task_preparing'==$current_task->getId()) {
236
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Fetch backups pattern:' .$backup_path_pattern);
237
  $backup_set = glob( $backup_path_pattern);
238
  if ( is_array($backup_set) && count($backup_set)>0){
239
- $restore_job->update_job_meta('backup_set',$backup_set);
240
- $restore_job->update_job_meta('backup_set_remaining',$backup_set);
241
  }else{
242
  fatal_error($task,'222','No zip files found (pattern):' . $backup_path_pattern);
 
243
  }
244
  WPBackItUp_LoggerV2::log($restore_logname,'*END UPDATE ZIP JOB META*');
245
 
@@ -248,42 +232,47 @@ if ('task_preparing'==$current_task->getId()) {
248
  $siteurl = $wp_restore->get_siteurl();
249
  if (false===$siteurl){
250
  fatal_error($task,'207','Unable to fetch site url.');
 
251
  }else {
252
- $restore_job->update_job_meta('current_siteurl',$siteurl);
253
  }
254
 
255
  $homeurl = $wp_restore->get_homeurl();
256
  if (false===$homeurl){
257
  fatal_error($task, '208','Unable to fetch home url.');
 
258
  }else{
259
- $restore_job->update_job_meta('current_homeurl',$homeurl);
260
  }
261
 
262
  $user_login = $wp_restore->get_user_login( $user_id );
263
  if (false===$user_login) {
264
  fatal_error($task,'209','Unable to fetch user login.');
 
265
  }else{
266
- $restore_job->update_job_meta('current_user_login',$user_login);
267
  }
268
 
269
  $user_pass = $wp_restore->get_user_pass( $user_id );
270
  if (false===$user_pass){
271
  fatal_error($task,'210','Unable to fetch user password.');
 
272
  }else{
273
- $restore_job->update_job_meta('current_user_pass_hash',$user_pass);
274
  }
275
 
276
  $user_email = $wp_restore->get_user_email( $user_id );
277
  if (false===$user_email){
278
  fatal_error($task,'211','Unable to fetch user email.');
 
279
  } else{
280
- $restore_job->update_job_meta('current_user_email',$user_email);
281
  }
282
 
283
  WPBackItUp_LoggerV2::log($restore_logname,'*END UPDATE SITE VALUES META*' );
284
 
285
  end_status($task);
286
- $restore_job->set_task_complete();
287
  WPBackItUp_LoggerV2::log($restore_logname,'**END PREPARING FOR RESTORE**');
288
 
289
  return;
@@ -297,25 +286,26 @@ if ('task_unzip_backup_set'==$current_task->getId()) {
297
  start_status($task );
298
 
299
  //get the list of plugins zips in folder
300
- $backup_set_list=$restore_job->get_job_meta('backup_set_remaining');
301
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Begin - Backup set list:');
302
  WPBackItUp_LoggerV2::log($restore_logname,$backup_set_list);
303
  if ( ! $wp_restore->unzip_archive_file( $backup_set_list) ) {
304
  fatal_error($task,'203','Unable to unzip archive.');
 
305
  } else {
306
 
307
  array_shift( $backup_set_list ); //remove from list
308
- $restore_job->update_job_meta('backup_set_remaining',$backup_set_list);
309
 
310
  if (is_array($backup_set_list) && count($backup_set_list)>0){
311
  //CONTINUE
312
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Continue unzipping backup set.');
313
- $restore_job->set_task_queued();
314
  } else{
315
  //COMPLETE
316
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Complete - All archives restored.');
317
  end_status( $task);
318
- $restore_job->set_task_complete();
319
  WPBackItUp_LoggerV2::log($restore_logname,'**END UNZIP BACKUP**' );
320
  }
321
 
@@ -336,25 +326,30 @@ if ('task_validate_backup'==$current_task->getId()) {
336
 
337
  if ( ! $wp_restore->validate_restore_folder( )){
338
  fatal_error($task,'204','Restore directory INVALID.');
 
339
  }
340
 
341
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE MANIFEST*' );
342
- $backup_set_list=$restore_job->get_job_meta('backup_set');
343
  if ( $wp_restore->validate_manifest_file($backup_set_list,$error_code)===false){
344
  if ($error_code==1){
345
  fatal_error($task,'251','Empty manifest.');
 
346
  }
347
 
348
  if ($error_code==2){
349
  fatal_error($task,'252','Missing zip file.');
 
350
  }
351
 
352
  if ($error_code==3){
353
  fatal_error($task,'253','Zip file not in manifest.');
 
354
  }
355
 
356
  //shouldnt get here
357
  fatal_error($task,'999','Unexpected error code:' . $error_code);
 
358
 
359
  }
360
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE MANIFEST*' );
@@ -364,15 +359,17 @@ if ('task_validate_backup'==$current_task->getId()) {
364
  $site_info = $wp_restore->validate_siteinfo_file();
365
  if ( $site_info===false){
366
  fatal_error($task,'204','Site Data file INVALID.');
 
367
  }else{
368
  //save restore info to meta
369
- $restore_job->update_job_meta('restore_site_info',$site_info);
370
  }
371
 
372
  //Check table prefix values FATAL - need to add link to article
373
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Site table Prefix:' . $table_prefix);
374
  if ( $table_prefix != $site_info['restore_table_prefix'] ) {
375
  fatal_error($task,'221','Table prefix different from restore.');
 
376
  }
377
 
378
  //Check wordpress version
@@ -383,6 +380,7 @@ if ('task_validate_backup'==$current_task->getId()) {
383
  if ( ! WPBackItUp_Utility::version_compare($site_wordpress_version, $backup_wordpress_version )) {
384
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE SITEDATA FILE*' );
385
  fatal_error($task,'226','Backup was created using different version of wordpress');
 
386
  }
387
 
388
 
@@ -392,6 +390,7 @@ if ('task_validate_backup'==$current_task->getId()) {
392
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'WP BackItUp backup Version:' . $restore_wpbackitup_version);
393
  if (! WPBackItUp_Utility::version_compare($restore_wpbackitup_version, $current_wpbackitup_version )){
394
  fatal_error($task,'227','Backup was created using different version of WP BackItUp');
 
395
  }
396
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE SITEDATA FILE*' );
397
 
@@ -399,6 +398,7 @@ if ('task_validate_backup'==$current_task->getId()) {
399
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE SQL FILE EXISTS*' );
400
  if ( ! $wp_restore->validate_SQL_exists( )){
401
  fatal_error($task,'216','NO Database backups in backup.');
 
402
  }
403
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE SQL FILE EXISTS*' );
404
  end_status($task);
@@ -410,7 +410,7 @@ if ('task_validate_backup'==$current_task->getId()) {
410
  end_status($task);
411
  WPBackItUp_LoggerV2::log($restore_logname,'*END DEACTIVATE ACTIVE PLUGINS*');
412
 
413
- $restore_job->set_task_complete();
414
  WPBackItUp_LoggerV2::log($restore_logname,'**END VALIDATE BACKUP**' );
415
 
416
  return;
@@ -426,9 +426,10 @@ if ('task_create_checkpoint'==$current_task->getId()) {
426
 
427
  if ( ! $wp_restore->export_database()){
428
  fatal_error($task,'205','Cant backup database.');
 
429
  }
430
 
431
- $restore_job->set_task_complete();
432
  end_status($task);
433
  WPBackItUp_LoggerV2::log($restore_logname,'**END CREATE RESTORE POINT**');
434
 
@@ -455,6 +456,7 @@ if ('task_stage_wpcontent'==$current_task->getId()) {
455
  fatal_error($task,'219','Cant stage themes.',false);
456
  $wp_restore->delete_staged_folders();
457
  end_restore();
 
458
  }
459
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE THEMES*');
460
 
@@ -467,6 +469,7 @@ if ('task_stage_wpcontent'==$current_task->getId()) {
467
  fatal_error($task,'219','Cant stage uploads.',false);
468
  $wp_restore->delete_staged_folders();
469
  end_restore();
 
470
  }
471
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE UPLOADS*');
472
 
@@ -478,12 +481,13 @@ if ('task_stage_wpcontent'==$current_task->getId()) {
478
  fatal_error($task,'219','Cant stage other.',false);
479
  $wp_restore->delete_staged_folders();
480
  end_restore();
 
481
  }
482
  }
483
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE OTHER FOLDERS*');
484
  end_status($task);
485
 
486
- $restore_job->set_task_complete();
487
 
488
  WPBackItUp_LoggerV2::log($restore_logname,'**END STAGE WP-CONTENT**');
489
 
@@ -516,7 +520,7 @@ if ('task_restore_wpcontent'==$current_task->getId()) {
516
 
517
  WPBackItUp_LoggerV2::log($restore_logname,'*END RESTORE PLUGINS*');
518
 
519
- $restore_job->set_task_complete();
520
  end_status($task);
521
  WPBackItUp_LoggerV2::log($restore_logname,'**END RESTORE WPCONTENT**');
522
 
@@ -533,13 +537,13 @@ if ('task_restore_database'==$current_task->getId()) {
533
  //grab the license before the database is restored
534
  $license_key = $this->license_key();
535
 
536
- $current_siteurl= $restore_job->get_job_meta('current_siteurl');
537
- $current_homeurl= $restore_job->get_job_meta('current_homeurl');
538
 
539
- $current_user_id=$restore_job->get_job_meta('user_id');
540
- $current_user_login=$restore_job->get_job_meta('current_user_login');
541
- $current_user_pass_hash= $restore_job->get_job_meta('current_user_pass_hash');
542
- $current_user_email=$restore_job->get_job_meta('current_user_email');
543
 
544
  $user_full_name='';
545
  $current_user = get_user_by('id',$current_user_id);
@@ -550,6 +554,7 @@ if ('task_restore_database'==$current_task->getId()) {
550
  //Not going to use the restore Point SQL because IF the import failed then DB may be intact
551
  if ( ! $wp_restore->restore_database()) {
552
  fatal_error($task,'212','Database NOT restored.');
 
553
  //Do we want to recover the DB ?
554
  }
555
 
@@ -615,15 +620,16 @@ if ('task_restore_database'==$current_task->getId()) {
615
  WPBackItUp_LoggerV2::log($restore_logname,'***END RESTORE***');
616
 
617
  end_restore(null,true);
 
618
 
619
  /******************/
620
  /*** Functions ***/
621
  /******************/
622
  function fatal_error($process,$error_code,$error_message, $end=true){
623
- global $restore_job, $failure, $restore_logname;
624
 
625
  WPBackItUp_LoggerV2::log_error($restore_logname,__METHOD__,$error_message);
626
- $restore_job->set_task_error($error_code);
627
  write_response_file_error($error_code,$error_message);
628
 
629
  set_status($process,$failure,true);
@@ -779,7 +785,7 @@ function set_status_success(){
779
  }
780
 
781
  function end_restore($err=null, $success=null){
782
- global $restore_job, $restore_logname;
783
 
784
  if (true===$success) WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Restore completed: SUCCESS');
785
  if (false===$success) WPBackItUp_LoggerV2::log_error($restore_logname,__METHOD__,'Restore completed: ERROR');
@@ -789,7 +795,7 @@ function end_restore($err=null, $success=null){
789
  $wpdebug_file_path = WPBACKITUP__CONTENT_PATH . '/debug.log';
790
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Copy WP Debug: ' .$wpdebug_file_path);
791
  if (file_exists($wpdebug_file_path)) {
792
- $debug_log = sprintf('%s/wpdebug_%s.log',$logs_path,$restore_job->get_job_id());
793
  copy( $wpdebug_file_path, $debug_log );
794
  }
795
 
@@ -798,7 +804,7 @@ function end_restore($err=null, $success=null){
798
 
799
  //Close the logger
800
  WPBackItUp_LoggerV2::close($restore_logname);
801
- $restore_job->release_lock();
802
 
803
  //response back the status file since this method will end processing
804
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/restore_status.log';
@@ -806,5 +812,4 @@ function end_restore($err=null, $success=null){
806
  readfile($log);
807
  }
808
 
809
- exit(0);
810
  }
73
  'update_permalinks'=>$inactive,
74
  );
75
 
76
+ //*****************//
77
+ //*** MAIN CODE ***//
78
+ //*****************//
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
 
80
+ if (! is_object ($current_job)){
81
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current job not object:');
82
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_job));
83
+ return false;
84
  }
85
 
86
+ if (! is_object ($current_task)){
87
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,'Current task not object');
88
+ WPBackItUp_LoggerV2::log_error($events_logname,$process_id,var_export($current_task));
89
+ return false;
90
+ }
91
 
92
+ WPBackItUp_LoggerV2::log_info($events_logname,$process_id ,'Run task:' .$current_task->getId());
93
 
 
 
 
94
 
95
  //Get the job name
96
+ $job_log_name = sprintf('JobLog_%s',$current_job->getJobName());
97
 
98
  $restore_logname = $job_log_name;
99
  $log_function='job_restore::'.$current_task->getId();
100
 
101
+ $backup_name = $current_job->get_job_meta('backup_name');
102
  if( empty($backup_name)) {
103
  WPBackItUp_LoggerV2::log_error($restore_logname,$log_function,'Backup name not found in job meta.');
104
  write_fatal_error_status('error201');
105
  end_restore();
106
+ return false;
107
  }
108
 
109
  //Get user ID
110
+ $user_id = $current_job->get_job_meta('user_id');
111
  if( empty($user_id)) {
112
  WPBackItUp_LoggerV2::log_error($restore_logname,$log_function,'User Id not found in job meta.');
113
  write_fatal_error_status('error201');
114
  end_restore();
115
+ return false;
116
  }
117
 
118
  global $wp_restore; //Eventually everything will be migrated to this class
119
+ $wp_restore = new WPBackItUp_Restore($restore_logname,$backup_name,$current_job->getJobId());
120
 
121
  //*************************//
122
  //*** RESTORE TASKS ***//
123
  //*************************//
124
+ //An error has occurred on the previous run
125
+ if (WPBackItUp_Job_v2::ERROR==$current_task->getStatus()){
126
+
127
+ WPBackItUp_LoggerV2::log_error($restore_logname,$log_function,'Fatal error on previous task:'. $current_task->getId());
128
+
129
+ //Fetch last wordpress error(might not be related to timeout)
130
+ //error type constants: http://php.net/manual/en/errorfunc.constants.php
131
+ WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Last Error: ' .var_export(error_get_last(),true));
132
 
133
  //Check for error type
134
  switch ( $current_task->getId() ) {
164
  fatal_error( 'unknown', '2999', 'Task ended in error:'.$current_task->getId() );
165
  break;
166
  }
167
+
168
+ return false;
169
  }
170
 
171
  //Cleanup Task
183
  //which is a valid condition.
184
  if (! $this->license_active()){
185
  fatal_error($task,'225','Restore is not available because license is not active.');
186
+ return false;
187
  }
188
 
189
  //PREPARE TASK
190
  if (! class_exists('ZipArchive')){
191
  fatal_error($task,'235','Zip Archive Class is not available.');
192
+ return false;
193
  }
194
 
195
  WPBackItUp_LoggerV2::log($restore_logname,'*DELETE RESTORE FOLDER*');
196
  if ( ! $wp_restore->delete_restore_folder()){
197
  fatal_error($task,'222','Restore folder could not be deleted.');
198
+ return false;
199
  }
200
  WPBackItUp_LoggerV2::log($restore_logname,'*END DELETE RESTORE FOLDER*');
201
 
202
  WPBackItUp_LoggerV2::log($restore_logname,'*CREATE ROOT RESTORE FOLDER*');
203
  if ( ! $wp_restore->create_restore_root_folder()){
204
  fatal_error($task,'222','Root Restore folder could not be created.');
205
+ return false;
206
  }
207
  WPBackItUp_LoggerV2::log($restore_logname,'*END CREATE RESTORE FOLDER*');
208
 
209
  WPBackItUp_LoggerV2::log($restore_logname,'*DELETE STAGED FOLDER*');
210
  if ( ! $wp_restore->delete_staged_folders()){
211
  fatal_error($task, '222','Staged folders could not be deleted.');
212
+ return false;
213
  }
214
  WPBackItUp_LoggerV2::log($restore_logname,'*END DELETE STAGED FOLDER*');
215
 
219
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Fetch backups pattern:' .$backup_path_pattern);
220
  $backup_set = glob( $backup_path_pattern);
221
  if ( is_array($backup_set) && count($backup_set)>0){
222
+ $current_job->update_job_meta('backup_set',$backup_set);
223
+ $current_job->update_job_meta('backup_set_remaining',$backup_set);
224
  }else{
225
  fatal_error($task,'222','No zip files found (pattern):' . $backup_path_pattern);
226
+ return false;
227
  }
228
  WPBackItUp_LoggerV2::log($restore_logname,'*END UPDATE ZIP JOB META*');
229
 
232
  $siteurl = $wp_restore->get_siteurl();
233
  if (false===$siteurl){
234
  fatal_error($task,'207','Unable to fetch site url.');
235
+ return false;
236
  }else {
237
+ $current_job->update_job_meta('current_siteurl',$siteurl);
238
  }
239
 
240
  $homeurl = $wp_restore->get_homeurl();
241
  if (false===$homeurl){
242
  fatal_error($task, '208','Unable to fetch home url.');
243
+ return false;
244
  }else{
245
+ $current_job->update_job_meta('current_homeurl',$homeurl);
246
  }
247
 
248
  $user_login = $wp_restore->get_user_login( $user_id );
249
  if (false===$user_login) {
250
  fatal_error($task,'209','Unable to fetch user login.');
251
+ return false;
252
  }else{
253
+ $current_job->update_job_meta('current_user_login',$user_login);
254
  }
255
 
256
  $user_pass = $wp_restore->get_user_pass( $user_id );
257
  if (false===$user_pass){
258
  fatal_error($task,'210','Unable to fetch user password.');
259
+ return false;
260
  }else{
261
+ $current_job->update_job_meta('current_user_pass_hash',$user_pass);
262
  }
263
 
264
  $user_email = $wp_restore->get_user_email( $user_id );
265
  if (false===$user_email){
266
  fatal_error($task,'211','Unable to fetch user email.');
267
+ return false;
268
  } else{
269
+ $current_job->update_job_meta('current_user_email',$user_email);
270
  }
271
 
272
  WPBackItUp_LoggerV2::log($restore_logname,'*END UPDATE SITE VALUES META*' );
273
 
274
  end_status($task);
275
+ $current_job->set_task_complete();
276
  WPBackItUp_LoggerV2::log($restore_logname,'**END PREPARING FOR RESTORE**');
277
 
278
  return;
286
  start_status($task );
287
 
288
  //get the list of plugins zips in folder
289
+ $backup_set_list=$current_job->get_job_meta('backup_set_remaining');
290
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Begin - Backup set list:');
291
  WPBackItUp_LoggerV2::log($restore_logname,$backup_set_list);
292
  if ( ! $wp_restore->unzip_archive_file( $backup_set_list) ) {
293
  fatal_error($task,'203','Unable to unzip archive.');
294
+ return false;
295
  } else {
296
 
297
  array_shift( $backup_set_list ); //remove from list
298
+ $current_job->update_job_meta('backup_set_remaining',$backup_set_list);
299
 
300
  if (is_array($backup_set_list) && count($backup_set_list)>0){
301
  //CONTINUE
302
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Continue unzipping backup set.');
303
+ $current_job->set_task_queued();
304
  } else{
305
  //COMPLETE
306
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Complete - All archives restored.');
307
  end_status( $task);
308
+ $current_job->set_task_complete();
309
  WPBackItUp_LoggerV2::log($restore_logname,'**END UNZIP BACKUP**' );
310
  }
311
 
326
 
327
  if ( ! $wp_restore->validate_restore_folder( )){
328
  fatal_error($task,'204','Restore directory INVALID.');
329
+ return false;
330
  }
331
 
332
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE MANIFEST*' );
333
+ $backup_set_list=$current_job->get_job_meta('backup_set');
334
  if ( $wp_restore->validate_manifest_file($backup_set_list,$error_code)===false){
335
  if ($error_code==1){
336
  fatal_error($task,'251','Empty manifest.');
337
+ return false;
338
  }
339
 
340
  if ($error_code==2){
341
  fatal_error($task,'252','Missing zip file.');
342
+ return false;
343
  }
344
 
345
  if ($error_code==3){
346
  fatal_error($task,'253','Zip file not in manifest.');
347
+ return false;
348
  }
349
 
350
  //shouldnt get here
351
  fatal_error($task,'999','Unexpected error code:' . $error_code);
352
+ return false;
353
 
354
  }
355
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE MANIFEST*' );
359
  $site_info = $wp_restore->validate_siteinfo_file();
360
  if ( $site_info===false){
361
  fatal_error($task,'204','Site Data file INVALID.');
362
+ return false;
363
  }else{
364
  //save restore info to meta
365
+ $current_job->update_job_meta('restore_site_info',$site_info);
366
  }
367
 
368
  //Check table prefix values FATAL - need to add link to article
369
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'Site table Prefix:' . $table_prefix);
370
  if ( $table_prefix != $site_info['restore_table_prefix'] ) {
371
  fatal_error($task,'221','Table prefix different from restore.');
372
+ return false;
373
  }
374
 
375
  //Check wordpress version
380
  if ( ! WPBackItUp_Utility::version_compare($site_wordpress_version, $backup_wordpress_version )) {
381
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE SITEDATA FILE*' );
382
  fatal_error($task,'226','Backup was created using different version of wordpress');
383
+ return false;
384
  }
385
 
386
 
390
  WPBackItUp_LoggerV2::log_info($restore_logname,$log_function,'WP BackItUp backup Version:' . $restore_wpbackitup_version);
391
  if (! WPBackItUp_Utility::version_compare($restore_wpbackitup_version, $current_wpbackitup_version )){
392
  fatal_error($task,'227','Backup was created using different version of WP BackItUp');
393
+ return false;
394
  }
395
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE SITEDATA FILE*' );
396
 
398
  WPBackItUp_LoggerV2::log($restore_logname,'*VALIDATE SQL FILE EXISTS*' );
399
  if ( ! $wp_restore->validate_SQL_exists( )){
400
  fatal_error($task,'216','NO Database backups in backup.');
401
+ return false;
402
  }
403
  WPBackItUp_LoggerV2::log($restore_logname,'*END VALIDATE SQL FILE EXISTS*' );
404
  end_status($task);
410
  end_status($task);
411
  WPBackItUp_LoggerV2::log($restore_logname,'*END DEACTIVATE ACTIVE PLUGINS*');
412
 
413
+ $current_job->set_task_complete();
414
  WPBackItUp_LoggerV2::log($restore_logname,'**END VALIDATE BACKUP**' );
415
 
416
  return;
426
 
427
  if ( ! $wp_restore->export_database()){
428
  fatal_error($task,'205','Cant backup database.');
429
+ return false;
430
  }
431
 
432
+ $current_job->set_task_complete();
433
  end_status($task);
434
  WPBackItUp_LoggerV2::log($restore_logname,'**END CREATE RESTORE POINT**');
435
 
456
  fatal_error($task,'219','Cant stage themes.',false);
457
  $wp_restore->delete_staged_folders();
458
  end_restore();
459
+ return false;
460
  }
461
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE THEMES*');
462
 
469
  fatal_error($task,'219','Cant stage uploads.',false);
470
  $wp_restore->delete_staged_folders();
471
  end_restore();
472
+ return false;
473
  }
474
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE UPLOADS*');
475
 
481
  fatal_error($task,'219','Cant stage other.',false);
482
  $wp_restore->delete_staged_folders();
483
  end_restore();
484
+ return false;
485
  }
486
  }
487
  WPBackItUp_LoggerV2::log($restore_logname,'*END STAGE OTHER FOLDERS*');
488
  end_status($task);
489
 
490
+ $current_job->set_task_complete();
491
 
492
  WPBackItUp_LoggerV2::log($restore_logname,'**END STAGE WP-CONTENT**');
493
 
520
 
521
  WPBackItUp_LoggerV2::log($restore_logname,'*END RESTORE PLUGINS*');
522
 
523
+ $current_job->set_task_complete();
524
  end_status($task);
525
  WPBackItUp_LoggerV2::log($restore_logname,'**END RESTORE WPCONTENT**');
526
 
537
  //grab the license before the database is restored
538
  $license_key = $this->license_key();
539
 
540
+ $current_siteurl= $current_job->get_job_meta('current_siteurl');
541
+ $current_homeurl= $current_job->get_job_meta('current_homeurl');
542
 
543
+ $current_user_id=$current_job->get_job_meta('user_id');
544
+ $current_user_login=$current_job->get_job_meta('current_user_login');
545
+ $current_user_pass_hash= $current_job->get_job_meta('current_user_pass_hash');
546
+ $current_user_email=$current_job->get_job_meta('current_user_email');
547
 
548
  $user_full_name='';
549
  $current_user = get_user_by('id',$current_user_id);
554
  //Not going to use the restore Point SQL because IF the import failed then DB may be intact
555
  if ( ! $wp_restore->restore_database()) {
556
  fatal_error($task,'212','Database NOT restored.');
557
+ return false;
558
  //Do we want to recover the DB ?
559
  }
560
 
620
  WPBackItUp_LoggerV2::log($restore_logname,'***END RESTORE***');
621
 
622
  end_restore(null,true);
623
+ return true;
624
 
625
  /******************/
626
  /*** Functions ***/
627
  /******************/
628
  function fatal_error($process,$error_code,$error_message, $end=true){
629
+ global $current_job, $failure, $restore_logname;
630
 
631
  WPBackItUp_LoggerV2::log_error($restore_logname,__METHOD__,$error_message);
632
+ $current_job->set_task_error($error_code);
633
  write_response_file_error($error_code,$error_message);
634
 
635
  set_status($process,$failure,true);
785
  }
786
 
787
  function end_restore($err=null, $success=null){
788
+ global $current_job, $restore_logname;
789
 
790
  if (true===$success) WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Restore completed: SUCCESS');
791
  if (false===$success) WPBackItUp_LoggerV2::log_error($restore_logname,__METHOD__,'Restore completed: ERROR');
795
  $wpdebug_file_path = WPBACKITUP__CONTENT_PATH . '/debug.log';
796
  WPBackItUp_LoggerV2::log_info($restore_logname,__METHOD__,'Copy WP Debug: ' .$wpdebug_file_path);
797
  if (file_exists($wpdebug_file_path)) {
798
+ $debug_log = sprintf('%s/wpdebug_%s.log',$logs_path,$current_job->getJobId());
799
  copy( $wpdebug_file_path, $debug_log );
800
  }
801
 
804
 
805
  //Close the logger
806
  WPBackItUp_LoggerV2::close($restore_logname);
807
+ $current_job->release_lock();
808
 
809
  //response back the status file since this method will end processing
810
  $log = WPBACKITUP__PLUGIN_PATH .'/logs/restore_status.log';
812
  readfile($log);
813
  }
814
 
 
815
  }
lib/includes/update_database.php CHANGED
@@ -7,6 +7,11 @@ if( ini_get('safe_mode') ){
7
  @set_time_limit(0);
8
  }
9
 
 
 
 
 
 
10
  /**
11
  * Run the incremental updates one by one.
12
  *
@@ -18,6 +23,8 @@ if( ini_get('safe_mode') ){
18
  *
19
  */
20
  function wpbackitup_update_database() {
 
 
21
 
22
  // this is the current database schema version number
23
  $current_db_ver = get_option( 'wp-backitup_db_version',0 );
@@ -59,7 +66,11 @@ function wpbackitup_update_database() {
59
  function wpbackitup_update_database_routine_1(){
60
  global $wpdb;
61
 
62
- $charset_collate = $wpdb->get_charset_collate();
 
 
 
 
63
  $table_name = $wpdb->prefix . "wpbackitup_job";
64
 
65
  $sql = "CREATE TABLE $table_name (
@@ -79,4 +90,111 @@ function wpbackitup_update_database_routine_1(){
79
 
80
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
81
  dbDelta( $sql );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  }
7
  @set_time_limit(0);
8
  }
9
 
10
+ if( !class_exists( 'WPBackItUp_Filesystem' ) ) {
11
+ include_once 'class-filesystem.php';
12
+ }
13
+
14
+
15
  /**
16
  * Run the incremental updates one by one.
17
  *
23
  *
24
  */
25
  function wpbackitup_update_database() {
26
+ // no PHP timeout for running updates
27
+ set_time_limit( 0 );
28
 
29
  // this is the current database schema version number
30
  $current_db_ver = get_option( 'wp-backitup_db_version',0 );
66
  function wpbackitup_update_database_routine_1(){
67
  global $wpdb;
68
 
69
+ $charset_collate = 'DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci'; //default value
70
+ if (method_exists($wpdb,'get_charset_collate')){
71
+ $charset_collate = $wpdb->get_charset_collate();
72
+ }
73
+
74
  $table_name = $wpdb->prefix . "wpbackitup_job";
75
 
76
  $sql = "CREATE TABLE $table_name (
90
 
91
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
92
  dbDelta( $sql );
93
+ }
94
+
95
+ /**
96
+ * DB version 1 to 2 update
97
+ * - migrate backups from file system to post table
98
+ *
99
+ */
100
+ function wpbackitup_update_database_routine_2() {
101
+ $log_name = 'upgrade_database_2';
102
+ $backup_folder_root = WPBACKITUP__BACKUP_PATH;
103
+
104
+ //get all the folders in the backup path
105
+ $work_folder_list = glob($backup_folder_root. '/*', GLOB_ONLYDIR);
106
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,var_export($work_folder_list,true));
107
+
108
+ //MUST register status or query will not work - activate is called before init
109
+ // register_post_status( 'complete', array(
110
+ // 'public' => false,
111
+ // 'exclude_from_search' => false,
112
+ // 'show_in_admin_all_list' => false,
113
+ // 'show_in_admin_status_list' => true,
114
+ // ));
115
+
116
+ //if not TMP and DLT add to post table
117
+ foreach($work_folder_list as $folder) {
118
+ $folder_name= basename($folder);
119
+ $folder_prefix = substr($folder_name,0,4);
120
+ $folder_name_parts = explode('_',$folder_name);
121
+
122
+ if ('TMP_'!= strtoupper($folder_prefix) && 'DLT_'!= strtoupper($folder_prefix)){
123
+ //Add to post table
124
+ $external_id = end($folder_name_parts);
125
+
126
+ //does job already exist
127
+ $jobs = WPBackItUp_Job_v2::get_jobs_by_external_id(WPBackItUp_Job_v2::BACKUP,$external_id);
128
+ if (false===$jobs){
129
+ $job = WPBackItUp_Job_v2::import_completed_job($folder_name,$external_id,WPBackItUp_Job_v2::BACKUP,$external_id);
130
+ if (false!== $job){
131
+ $file_system = new WPBackItUp_FileSystem($log_name);
132
+ $zip_files = $file_system->get_fileonly_list($folder, 'zip');
133
+ $job->update_job_meta('backup_zip_files' , $zip_files ); //list of zip files
134
+
135
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Job Imported:' .$folder_name);
136
+ }
137
+ }else {
138
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'Job already exists, not imported:' .$folder_name);
139
+ }
140
+ }
141
+ }
142
+
143
+ //Get rid of all the old jobs because they were not used as batch control records
144
+ global $wpdb;
145
+
146
+ $job_type=WPBackItUp_Job_v2::BACKUP;
147
+ $sql = $wpdb->prepare(
148
+ "UPDATE $wpdb->posts
149
+ SET
150
+ post_type=%s,
151
+ post_status=%s
152
+ where
153
+ post_type=%s"
154
+ ,sprintf('%s_%s',WPBACKITUP__NAMESPACE,$job_type),WPBackItUp_Job_v2::DELETED,$job_type);
155
+ error_log('BACKUP SQL:' .$sql);
156
+
157
+ $wpdb_result = $wpdb->query($sql);
158
+ $last_error = $wpdb->last_error;
159
+ if ($wpdb_result === FALSE && !empty($last_error)) {
160
+ error_log('Last Error:' .var_export( $last_error,true ) );
161
+ }
162
+
163
+ $job_type=WPBackItUp_Job_v2::CLEANUP;
164
+ $sql = $wpdb->prepare(
165
+ "UPDATE $wpdb->posts
166
+ SET
167
+ post_type=%s,
168
+ post_status=%s
169
+ where
170
+ post_type=%s"
171
+ ,sprintf('%s_%s',WPBACKITUP__NAMESPACE,$job_type),WPBackItUp_Job_v2::DELETED,$job_type);
172
+ error_log('CLEANUP SQL:' .$sql);
173
+
174
+ $wpdb_result = $wpdb->query($sql);
175
+ $last_error = $wpdb->last_error;
176
+ if ($wpdb_result === FALSE && !empty($last_error)) {
177
+ error_log('Last Error:' .var_export( $last_error,true ) );
178
+ }
179
+
180
+ $job_type=WPBackItUp_Job_v2::RESTORE;
181
+ $sql = $wpdb->prepare(
182
+ "UPDATE $wpdb->posts
183
+ SET
184
+ post_type=%s,
185
+ post_status=%s
186
+ where
187
+ post_type=%s"
188
+ ,sprintf('%s_%s',WPBACKITUP__NAMESPACE,$job_type),WPBackItUp_Job_v2::DELETED,$job_type);
189
+ error_log('RESTORE:' .$sql);
190
+
191
+ $wpdb_result = $wpdb->query($sql);
192
+ $last_error = $wpdb->last_error;
193
+ if ($wpdb_result === FALSE && !empty($last_error)) {
194
+ error_log('Last Error:' .var_export( $last_error,true ) );
195
+ }
196
+
197
+
198
+ WPBackItUp_LoggerV2::log_info($log_name,__METHOD__,'End' );
199
+ return true;
200
  }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: cssimmon,alaminopu,zikubd,wpbackitup
3
  Donate link: http://www.wpbackitup.com
4
  Tags: backup, back up, backups, backup wordpress, backup database, backup plugin, backup and restore, database, database backup, database restore, db, db backup, db restore, download database, full backup, mysql backup, restore, restore database,restore wordpress, restore wordpress backup,restoring wordpress, website backup, wordpress backup, wordpress restore, plugin, backup buddy
5
  Requires at least: 3.8.0
6
- Tested up to: 4.2.4
7
- Stable tag: 1.10.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -64,8 +64,12 @@ Please review our [FAQ’s](http://wordpress.org/plugins/wp-backitup/faq/) or as
64
 
65
  WP BackItUp has been translated into the following languages:
66
 
 
67
  * Français (French (France)),
 
 
68
  * Tagalog (Philippines)
 
69
 
70
  Thanks to all the WP-Translations Team Members for helping translate WP BackItUp.
71
 
@@ -162,6 +166,34 @@ Our online documentation and full list of FAQs can be found at [www.wpbackitup.c
162
 
163
 
164
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  = 1.10.9 =
166
  *Release Date - August 14, 2015*
167
 
3
  Donate link: http://www.wpbackitup.com
4
  Tags: backup, back up, backups, backup wordpress, backup database, backup plugin, backup and restore, database, database backup, database restore, db, db backup, db restore, download database, full backup, mysql backup, restore, restore database,restore wordpress, restore wordpress backup,restoring wordpress, website backup, wordpress backup, wordpress restore, plugin, backup buddy
5
  Requires at least: 3.8.0
6
+ Tested up to: 4.3.1
7
+ Stable tag: 1.10.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
64
 
65
  WP BackItUp has been translated into the following languages:
66
 
67
+ * Español (Spanish (Spain)),
68
  * Français (French (France)),
69
+ * Deutsch (German),
70
+ * Italiano (Italian),
71
  * Tagalog (Philippines)
72
+ * বাংলা (Bengali)
73
 
74
  Thanks to all the WP-Translations Team Members for helping translate WP BackItUp.
75
 
166
 
167
 
168
  == Changelog ==
169
+ = 1.11.0 =
170
+ *Release Date - September 15, 2015*
171
+
172
+ * FIX : Add default collation value for WordPress version <= 3.4
173
+ * FIX : Add try catch & set_time_limit(0) to manual database export
174
+ * FEATURE : WP BackItUp now officially supports WordPress multisite - WP BackItUp will now only be available on network admin site.
175
+ * UPDATE : Add translation link to useful links widget
176
+ * UPDATE : Added php & MySQL version info to log email
177
+ * UPDATE : Add new job class - jobs will now be stored in the database instead of file system
178
+ * FEATURE : New availability grid - displays backup duration and active jobs
179
+ * UPDATE : Updates to support WordPress 4.3.1
180
+ * UPDATE : Enhancements to cleanup processes
181
+ * FEATURE : New Languages Added: Bengali, French, German, Italian, Spanish, Tagalog, Russian
182
+ * FEATURE : Add notification bar to top of WP BackItUp dashboard.
183
+ * UPDATE : Use filter iterator for file inventory to improve performance
184
+ * UPDATE : Add ajax call to fetch next message in stack on dismiss
185
+ * UPDATE : Add additional filters to folder ignore list
186
+ * UPDATE : Add wildcard search for to folder ignore list
187
+ * UPDATE : Free resources on manual database export to reduce memory footprint
188
+ * UPDATE : Add additional error handling and logging to manual database export
189
+ * UPDATE : Add connection check on manual export
190
+ * Fix : Cleanup was not purging all job control records properly
191
+ * Fix : Correct job locking(flock) warning message
192
+ * Fix : Fix issue with multi-site form post
193
+ * Fix : Update multi-site database export to backup all tables in database
194
+ * UPDATE : Add expiration information to email notifications
195
+ * Fix : Update uninstall to remove job table
196
+
197
  = 1.10.9 =
198
  *Release Date - August 14, 2015*
199
 
uninstall.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Uninstall WP BackItUp
4
+ *
5
+ * @package WP BackItUp
6
+ * @subpackage Uninstall
7
+ * @copyright Copyright (c) 2015, Chris Simmmons
8
+ * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
9
+ */
10
+
11
+ // Exit if accessed directly
12
+ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit;
13
+
14
+ include_once( 'wp-backitup.php' );
15
+
16
+ global $wpdb, $wp_roles;
17
+
18
+ $delete_all = (bool) get_option(WPBACKITUP__NAMESPACE .'_delete_all');
19
+
20
+ if( true===$delete_all ) {
21
+
22
+ error_log('wp-backitup remove cron events.');
23
+
24
+ /** Cleanup Cron Events */
25
+ wp_clear_scheduled_hook( 'wpbackitup_queue_scheduled_jobs');
26
+
27
+
28
+ /** Delete All the Custom Post Types */
29
+ $wpbackitup_post_types = array(
30
+ WPBACKITUP__NAMESPACE.'_backup',
31
+ WPBACKITUP__NAMESPACE.'_restore',
32
+ WPBACKITUP__NAMESPACE.'_cleanup'
33
+ );
34
+
35
+ error_log('wp-backitup remove custom post types.');
36
+ foreach ( $wpbackitup_post_types as $post_type ) {
37
+
38
+ $items = get_posts( array( 'post_type' => $post_type, 'post_status' => 'any', 'numberposts' => -1, 'fields' => 'ids' ) );
39
+
40
+ if ( $items ) {
41
+ foreach ( $items as $item ) {
42
+ wp_delete_post( $item, true);
43
+ }
44
+ }
45
+ }
46
+
47
+
48
+ /** Delete all the Plugin Options */
49
+ error_log('wp-backitup remove all settings');
50
+ $wpdb->query( "DELETE FROM " . $wpdb->options . " WHERE option_name like '" .WPBACKITUP__NAMESPACE ."_%' " );
51
+
52
+ /** Remove all database tables **/
53
+ error_log('wp-backitup remove custom tables.');
54
+ $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "wpbackitup_job" );
55
+
56
+
57
+
58
+ error_log('wp-backitup uninstall end');
59
+ }
views/backup.php CHANGED
@@ -10,9 +10,6 @@
10
  */
11
  require_once( WPBACKITUP__PLUGIN_PATH .'/lib/includes/class-filesystem.php' );
12
 
13
- //Check the license
14
- do_action( 'wpbackitup_check_license');
15
-
16
  $namespace = $this->namespace;
17
  ///TRANSLATORS: %s = plugin name.
18
  /// This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
@@ -45,7 +42,6 @@
45
 
46
  // get retention number set
47
  $number_retained_archives = $this->backup_retained_number();
48
-
49
  $license_customer_name = $this->license_customer_name();
50
  $license_customer_email = $this->license_customer_email();
51
  $is_lite_registered = $this->is_lite_registered();
@@ -58,7 +54,7 @@
58
  }
59
 
60
 
61
- //Make sure backup folder exists
62
  $backup_dir = WPBACKITUP__CONTENT_PATH . '/' . WPBACKITUP__BACKUP_FOLDER;
63
  $backup_folder_exists=false;
64
  if( !is_dir($backup_dir) ) {
@@ -69,79 +65,28 @@
69
  $backup_folder_exists=true;
70
  }
71
 
72
- //Cleanup old backups - this can be removed in a few months.
73
- //Get Zip File List
74
- $file_system = new WPBackItUp_FileSystem($debug_backup_view_log);
75
- $file_list = $file_system->get_fileonly_list($backup_folder_root, 'zip|log');
76
-
77
- //If there are zip files then move them into their own folders
78
- WPBackItUp_LoggerV2::log_info($debug_backup_view_log,__METHOD__,'Files in backup folder: ' .var_export($file_list,true));
79
- WPBackItUp_LoggerV2::log_info($debug_backup_view_log,__METHOD__,'Last Error: ' .var_export(error_get_last(),true));
80
-
81
- if (null != $file_list) {
82
- foreach ( $file_list as $file ) {
83
-
84
- //remove the suffix
85
- $file_name = substr( basename( $file ), 0, - 4 );
86
-
87
- //strip off the suffix IF one exists
88
- $folder_name = $file_name;
89
- if ( ( $str_pos = strpos( $folder_name, '-main-' ) ) !== false ) {
90
- $suffix = substr( $folder_name, $str_pos );
91
- $folder_name = str_replace( $suffix, '', $folder_name );
92
- }
93
-
94
- if ( ( $str_pos = strpos( $folder_name, '-others-' ) ) !== false ) {
95
- $suffix = substr( $folder_name, $str_pos );
96
- $folder_name = str_replace( $suffix, '', $folder_name );
97
- }
98
-
99
- if ( ( $str_pos = strpos( $folder_name, '-plugins-' ) ) !== false ) {
100
- $suffix = substr( $folder_name, $str_pos );
101
- $folder_name = str_replace( $suffix, '', $folder_name );
102
- }
103
-
104
- if ( ( $str_pos = strpos( $folder_name, '-themes-' ) ) !== false ) {
105
- $suffix = substr( $folder_name, $str_pos );
106
- $folder_name = str_replace( $suffix, '', $folder_name );
107
- }
108
-
109
- if ( ( $str_pos = strpos( $folder_name, '-uploads-' ) ) !== false ) {
110
- $suffix = substr( $folder_name, $str_pos );
111
- $folder_name = str_replace( $suffix, '', $folder_name );
112
- }
113
-
114
- //Does folder exist
115
- $backup_archive_folder = $backup_dir . '/' . $folder_name;
116
- if ( ! is_dir( $backup_archive_folder ) ) {
117
- if ( mkdir( $backup_archive_folder, 0755 ) ) {
118
- //print_r( "Folder Create.." );
119
- } else {
120
- //print_r( "Create Failed.." );
121
- }
122
- }
123
-
124
- //make sure it exists before you move it
125
- if ( is_dir( $backup_archive_folder ) ) {
126
- //move the file to the archive folder
127
- $target_file = $backup_archive_folder . "/" . basename( $file );
128
- if ( rename( $file, $target_file ) ) {
129
- //print_r( "File Moved.." );
130
- } else {
131
- //print_r( "Move Failed.." );
132
- }
133
-
134
- } else {
135
- //print_r( "NO FOLDER" );
136
- }
137
-
138
- }
139
- }
140
-
141
- $backup_list = $this->get_backup_list();
142
 
143
  ?>
144
 
 
145
  <?php //Add Notification to UI
146
  if (!$backup_folder_exists) {
147
  echo(
@@ -198,7 +143,7 @@ if (!$backup_folder_exists) {
198
  <p><?php _e('Backup your site once per week or every day, it\'s up to you. If you have email notifications turned on we\'ll even send you an email when it\'s done. Once your backup file has been created it will appear in the available backups section below. This file may remain on your hosting providers server but we recommend that you download and save it somewhere safe.', $namespace) ?></p>
199
  <p>
200
  <b><?php _e('Please make sure to schedule your backup for at least once per week.', $namespace) ?></b>
201
- <form action="admin-post.php" method="post" id="<?php echo $namespace; ?>-save_schedule_form">
202
  <?php wp_nonce_field($namespace . '-update-schedule',$namespace . '_nonce-update-schedule'); ?>
203
 
204
  <input <?php echo($schedule_style_disabled); ?> type="checkbox" name="dow" <?php echo (false!==strpos($backup_schedule,'1'))? 'checked' :''; ?> value="1"><?php _e('Monday',$namespace) ?><br>
@@ -225,53 +170,82 @@ if (!$backup_folder_exists) {
225
  <h3><i class="fa fa-cloud-download"></i> <?php _e('Available Backups', $namespace); ?></h3>
226
 
227
  <!--View Log Form-->
228
- <form id = "viewlog" name = "viewlog" action="admin-post.php" method="post">
229
  <input type="hidden" name="action" value="viewlog">
230
  <input type="hidden" id="backup_name" name="backup_name" value="">
231
  <?php wp_nonce_field($this->namespace . "-viewlog"); ?>
232
  </form>
233
 
234
 
235
- <form id = "download_backup" name = "download_backup" action="admin-post.php" method="post">
236
  <input type="hidden" name="action" value="download_backup">
237
  <input type="hidden" id="backup_file" name="backup_file" value="">
238
  <?php wp_nonce_field($this->namespace . "-download_backup"); ?>
239
  </form>
240
 
241
  <table class="widefat" id="datatable">
 
 
 
 
 
 
 
 
 
 
242
  <?php
243
 
244
- if ($backup_list!=false)
245
  {
246
  $i = 0;
247
- foreach ($backup_list as $file)
248
  {
249
 
250
  //Only show the number in the retained list
251
- if($i >= $number_retained_archives ) break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
 
253
- $backup_name = $file["backup_name"];
254
- $file_datetime = get_date_from_gmt(date('Y-m-d H:i:s', $file["date_time"]), 'Y-m-d g:i a');
255
- $log_exists = $file["log_exists"];
256
 
257
  $class = $i % 2 == 0 ? 'class="alternate"' : '';
258
  ?>
259
 
260
  <tr <?php echo $class ?> id="row<?php echo $i; ?>">
261
- <td><?php echo $backup_name ?></td>
262
-
263
- <!--Download Link-->
264
  <td>
265
- <a href="#TB_inline?width=600&height=550&inlineId=<?php echo preg_replace('/[^A-Za-z0-9\-]/', '', $backup_name) ?>" class="thickbox" title="<?php echo $backup_name ?>"><?php _e('Download', $namespace) ?></a>
 
 
 
 
 
 
 
 
266
  </td>
267
 
268
- <?php if (($log_exists)):?>
269
- <td><a class='viewloglink' href="<?php echo $backup_name ?>"><?php _e('View Log', $namespace) ?></a></td>
270
- <?php else: ?>
271
- <td>&nbsp;</td>
272
- <?php endif; ?>
273
 
274
- <td><a href="#" title="<?php echo $backup_name; ?>" class="deleteRow" id="deleteRow<?php echo $i; ?>"><?php _e('Delete', $namespace) ?></a></td>
 
 
 
 
275
  </tr>
276
 
277
  <?php
@@ -283,6 +257,7 @@ if (!$backup_folder_exists) {
283
  echo '<tr id="nofiles"><td colspan="3">' . __('No backup archives found.',$namespace). '</td></tr>';
284
  }
285
  ?>
 
286
  </table>
287
 
288
  <?php
@@ -303,6 +278,7 @@ if (!$backup_folder_exists) {
303
  <!--backup status messages-->
304
  <ul class="backup-status">
305
  <li class="preparing"><?php _e('Preparing for backup', $namespace); ?>...<span class='status-icon'><img class="preparing-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
 
306
  <li class='backupdb'><?php _e('Backing up database', $namespace); ?>...<span class='status-icon'><img class="backupdb-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
307
  <li class='infofile'><?php _e('Creating backup information file', $namespace); ?>...<span class='status-icon'><img class="infofile-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
308
  <li class='backup_themes'><?php _e('Backing up themes', $namespace); ?>...<span class='status-icon'><img class="backup_themes-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
@@ -363,8 +339,8 @@ if (!$backup_folder_exists) {
363
 
364
 
365
  <!-- Display opt-in form if the user is unregistered -->
366
- <?php if (!$license_active) : ?>
367
- <?php if (!$is_lite_registered) : ?>
368
  <div class="widget">
369
  <h3 class="promo"><span><?php _e('Register WP BackItUp', $namespace); ?></span></h3>
370
  <form action="" method="post" id="<?php echo $namespace; ?>-form">
@@ -381,7 +357,7 @@ if (!$backup_folder_exists) {
381
  <?php endif ?>
382
  <?php endif; ?>
383
 
384
- <?php if ($license_active || $is_lite_registered) : ?>
385
  <!-- Display license key widget -->
386
  <div class="widget">
387
  <h3 class="promo"><span><?php _e('License Info', $namespace); ?></span><span style="float: right"></h3></h3>
@@ -445,7 +421,7 @@ if (!$backup_folder_exists) {
445
  <?php if ($license_status=='expired'): ?>
446
  <div>
447
  <?php
448
- printf( __('<a href="%s" target="blank">Renew</a> your license now for another year of <strong>product updates</strong> and <strong>priority support.</strong>',$namespace),
449
  esc_url(sprintf('%s/checkout?edd_license_key=%s&download_id=679&nocache=true&utm_medium=plugin&utm_source=wp-backitup&utm_campaign=premium&utm_content=license&utm_term=license+expired', WPBACKITUP__SECURESITE_URL,$license_key)))?>
450
  </div>
451
  <?php endif; ?>
@@ -473,7 +449,9 @@ if (!$backup_folder_exists) {
473
  <?php endif; ?>
474
 
475
  <li><?php echo($this->get_anchor_with_utm(__('Feature request',$namespace),'contact' ,'useful+links','feature+request'))?></li>
476
-
 
 
477
  <li><?php echo($this->get_anchor_with_utm(__('Contact',$namespace) ,'contact','useful+links','contact'))?></li>
478
 
479
  </ul>
@@ -487,10 +465,13 @@ if (!$backup_folder_exists) {
487
  <span class="hidden">
488
  <?php add_thickbox(); ?>
489
  <!--File download lists-->
490
- <?php if ($backup_list!=false) : ?>
491
- <?php foreach ($backup_list as $folder) :
492
- $backup_name = $folder["backup_name"];
493
- $zip_files = $folder["zip_files"];
 
 
 
494
  $count=0;
495
  ?>
496
  <div id="<?php echo preg_replace('/[^A-Za-z0-9\-]/', '', $backup_name) ?>" style="display:none;">
@@ -499,20 +480,23 @@ if (!$backup_folder_exists) {
499
  <p><?php _e('Below are the archive files included in this backup set. Click the link to download.', $namespace) ?></p>
500
  <table id="datatable" class="widefat">
501
  <tbody>
502
- <?php foreach ($zip_files as $file) :
503
- ++$count;
504
- $class = $count % 2 == 0 ? '' : 'alternate';
505
- $row_id="row".$count;
506
- $zip_file = basename($file);
507
- ?>
508
- <tr id="<?php echo $row_id ?>" class="<?php echo $class ?>">
509
- <td><a href="<?php echo $zip_file ?>" class="downloadbackuplink"><?php echo $zip_file ?></a></td>
510
- </tr>
511
- <?php endforeach; ?>
 
 
512
  </tbody>
513
  </table>
514
- <?php endforeach; ?>
515
- </div>
 
516
  <?php endif; ?>
517
  <div id="new_backup" style="display:none;">
518
  <h2><?php _e('WP BackItUp Backup Set', $namespace) ?></h2>
10
  */
11
  require_once( WPBACKITUP__PLUGIN_PATH .'/lib/includes/class-filesystem.php' );
12
 
 
 
 
13
  $namespace = $this->namespace;
14
  ///TRANSLATORS: %s = plugin name.
15
  /// This string is in the header of one of my pages and looks like this: WP BackItUp Dashboard
42
 
43
  // get retention number set
44
  $number_retained_archives = $this->backup_retained_number();
 
45
  $license_customer_name = $this->license_customer_name();
46
  $license_customer_email = $this->license_customer_email();
47
  $is_lite_registered = $this->is_lite_registered();
54
  }
55
 
56
 
57
+ //Make sure backup folder exists - should this be in activation?
58
  $backup_dir = WPBACKITUP__CONTENT_PATH . '/' . WPBACKITUP__BACKUP_FOLDER;
59
  $backup_folder_exists=false;
60
  if( !is_dir($backup_dir) ) {
65
  $backup_folder_exists=true;
66
  }
67
 
68
+ $backup_list_size=10;
69
+ $backup_job_list = WPBackItUp_Job_v2::get_jobs_by_status(WPBackItUp_Job_v2::BACKUP,array(WPBackItUp_Job_v2::ACTIVE,WPBackItUp_Job_v2::COMPLETE,WPBackItUp_Job_v2::ERROR),$backup_list_size);
70
+ ?>
71
+
72
+ <?php // Notification Widget
73
+ $admin_notices = get_transient( 'wpbackitup_admin_notices' );
74
+
75
+ if( !(false === $admin_notices) && count($admin_notices)>0){
76
+
77
+ echo(
78
+ '<div style="overflow: hidden;" class="notice-'.$admin_notices[0]['message_type'].' notice" id="wp-backitup-notification-widget">
79
+ <div style="float:left;" id="wp-backitup-notification-widget-message" >
80
+ <p>'. __($admin_notices[0]['message'],$namespace) .'</p>
81
+ </div>');
82
+
83
+ echo('<div style="float:right;"><p><a id="wp-backitup-notification-widget-close"><i style="float:right" class="fa fa-close"> ' . __('Dismiss', $namespace) . '</i></a></p></div>
84
+ </div>');
85
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  ?>
88
 
89
+
90
  <?php //Add Notification to UI
91
  if (!$backup_folder_exists) {
92
  echo(
143
  <p><?php _e('Backup your site once per week or every day, it\'s up to you. If you have email notifications turned on we\'ll even send you an email when it\'s done. Once your backup file has been created it will appear in the available backups section below. This file may remain on your hosting providers server but we recommend that you download and save it somewhere safe.', $namespace) ?></p>
144
  <p>
145
  <b><?php _e('Please make sure to schedule your backup for at least once per week.', $namespace) ?></b>
146
+ <form action="<?php echo get_admin_url(),"admin-post.php"; ?>" method="post" id="<?php echo $namespace; ?>-save_schedule_form">
147
  <?php wp_nonce_field($namespace . '-update-schedule',$namespace . '_nonce-update-schedule'); ?>
148
 
149
  <input <?php echo($schedule_style_disabled); ?> type="checkbox" name="dow" <?php echo (false!==strpos($backup_schedule,'1'))? 'checked' :''; ?> value="1"><?php _e('Monday',$namespace) ?><br>
170
  <h3><i class="fa fa-cloud-download"></i> <?php _e('Available Backups', $namespace); ?></h3>
171
 
172
  <!--View Log Form-->
173
+ <form id = "viewlog" name = "viewlog" action="<?php echo get_admin_url(),"admin-post.php"; ?>" method="post">
174
  <input type="hidden" name="action" value="viewlog">
175
  <input type="hidden" id="backup_name" name="backup_name" value="">
176
  <?php wp_nonce_field($this->namespace . "-viewlog"); ?>
177
  </form>
178
 
179
 
180
+ <form id = "download_backup" name = "download_backup" action="<?php echo get_admin_url(),"admin-post.php"; ?>" method="post">
181
  <input type="hidden" name="action" value="download_backup">
182
  <input type="hidden" id="backup_file" name="backup_file" value="">
183
  <?php wp_nonce_field($this->namespace . "-download_backup"); ?>
184
  </form>
185
 
186
  <table class="widefat" id="datatable">
187
+ <thead>
188
+ <tr>
189
+ <th><?php _e('Backup', $namespace) ?></th>
190
+ <th><?php _e('Date', $namespace) ?></th>
191
+ <th><?php _e('Duration', $namespace) ?></th>
192
+ <th><?php _e('Status', $namespace) ?></th>
193
+ <th>&nbsp;</th>
194
+ </tr>
195
+ </thead>
196
+ <tbody>
197
  <?php
198
 
199
+ if ($backup_job_list!=false)
200
  {
201
  $i = 0;
202
+ foreach ($backup_job_list as $job)
203
  {
204
 
205
  //Only show the number in the retained list
206
+ if($i >= $backup_list_size ) break;
207
+
208
+ $backup_name = $job->getJobName();
209
+ $file_datetime= $job->getJobDate();
210
+
211
+
212
+ switch ($job->getJobStatus()) {
213
+ case WPBackItUp_Job_v2::COMPLETE:
214
+ $status = __("Success", $namespace);
215
+ break;
216
+ case WPBackItUp_Job_v2::ACTIVE:
217
+ $status = __("Active", $namespace);
218
+ break;
219
+ default:
220
+ $status = __("Error", $namespace);
221
+
222
+ }
223
 
 
 
 
224
 
225
  $class = $i % 2 == 0 ? 'class="alternate"' : '';
226
  ?>
227
 
228
  <tr <?php echo $class ?> id="row<?php echo $i; ?>">
 
 
 
229
  <td>
230
+ <?php
231
+ $zip_files = $job->get_job_meta('backup_zip_files');
232
+ if(is_array($zip_files) && count($zip_files)>0) { ?>
233
+ <a href="#TB_inline?width=600&height=550&inlineId=<?php echo preg_replace('/[^A-Za-z0-9\-]/', '', $backup_name) ?>" class="thickbox" title="<?php echo $backup_name ?>">
234
+ <?php echo $backup_name ?>
235
+ </a>
236
+ <?php } else {
237
+ echo $backup_name;
238
+ } ?>
239
  </td>
240
 
241
+ <!--date-->
242
+ <td><?php echo $file_datetime ?></td>
 
 
 
243
 
244
+ <td><?php echo $job->get_job_duration_formatted() ?></td>
245
+
246
+ <td><?php echo $status ?></td>
247
+
248
+ <td><a href="#" title="<?php echo $backup_name; ?>" data-id="<?php echo $job->getJobId() ?>" class="deleteRow" id="deleteRow<?php echo $i; ?>"><?php _e('Delete', $namespace) ?></a></td>
249
  </tr>
250
 
251
  <?php
257
  echo '<tr id="nofiles"><td colspan="3">' . __('No backup archives found.',$namespace). '</td></tr>';
258
  }
259
  ?>
260
+ </tbody>
261
  </table>
262
 
263
  <?php
278
  <!--backup status messages-->
279
  <ul class="backup-status">
280
  <li class="preparing"><?php _e('Preparing for backup', $namespace); ?>...<span class='status-icon'><img class="preparing-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
281
+ <li class='create_inventory'><?php _e('Creating inventory of files to backup', $namespace); ?>...<span class='status-icon'><img class="create_inventory-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
282
  <li class='backupdb'><?php _e('Backing up database', $namespace); ?>...<span class='status-icon'><img class="backupdb-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
283
  <li class='infofile'><?php _e('Creating backup information file', $namespace); ?>...<span class='status-icon'><img class="infofile-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
284
  <li class='backup_themes'><?php _e('Backing up themes', $namespace); ?>...<span class='status-icon'><img class="backup_themes-icon" src="<?php echo WPBACKITUP__PLUGIN_URL . "/images/loader.gif"; ?>" height="16" width="16" /></span><span class='status'><?php _e('Done', $namespace); ?></span><span class='fail error'><?php _e('Failed', $namespace); ?></span><span class='wpbackitup-warning'><?php _e('Warning', $namespace); ?></span></li>
339
 
340
 
341
  <!-- Display opt-in form if the user is unregistered -->
342
+ <?php if (false===$license_active) : ?>
343
+ <?php if (false===$is_lite_registered) : ?>
344
  <div class="widget">
345
  <h3 class="promo"><span><?php _e('Register WP BackItUp', $namespace); ?></span></h3>
346
  <form action="" method="post" id="<?php echo $namespace; ?>-form">
357
  <?php endif ?>
358
  <?php endif; ?>
359
 
360
+ <?php if (true===$license_active || true===$is_lite_registered) : ?>
361
  <!-- Display license key widget -->
362
  <div class="widget">
363
  <h3 class="promo"><span><?php _e('License Info', $namespace); ?></span><span style="float: right"></h3></h3>
421
  <?php if ($license_status=='expired'): ?>
422
  <div>
423
  <?php
424
+ printf( __('Please <a href="%s" target="blank">renew</a> now for another year of <strong>product updates</strong> and access to our <strong>world class support</strong> team.',$namespace),
425
  esc_url(sprintf('%s/checkout?edd_license_key=%s&download_id=679&nocache=true&utm_medium=plugin&utm_source=wp-backitup&utm_campaign=premium&utm_content=license&utm_term=license+expired', WPBACKITUP__SECURESITE_URL,$license_key)))?>
426
  </div>
427
  <?php endif; ?>
449
  <?php endif; ?>
450
 
451
  <li><?php echo($this->get_anchor_with_utm(__('Feature request',$namespace),'contact' ,'useful+links','feature+request'))?></li>
452
+
453
+ <li><?php echo($this->get_anchor_with_utm(__('Language Translations',$namespace),'documentation/faqs/language-translations' ,'useful+links','translations'))?></li>
454
+
455
  <li><?php echo($this->get_anchor_with_utm(__('Contact',$namespace) ,'contact','useful+links','contact'))?></li>
456
 
457
  </ul>
465
  <span class="hidden">
466
  <?php add_thickbox(); ?>
467
  <!--File download lists-->
468
+ <?php if ($backup_job_list!=false) : ?>
469
+ <?php foreach ($backup_job_list as $job) :
470
+ if($job->getJobStatus() == WPBackItUp_Job_v2::ERROR) {
471
+ continue;
472
+ }
473
+ $backup_name =$job->getJobName();
474
+ $zip_files = $job->get_job_meta('backup_zip_files');
475
  $count=0;
476
  ?>
477
  <div id="<?php echo preg_replace('/[^A-Za-z0-9\-]/', '', $backup_name) ?>" style="display:none;">
480
  <p><?php _e('Below are the archive files included in this backup set. Click the link to download.', $namespace) ?></p>
481
  <table id="datatable" class="widefat">
482
  <tbody>
483
+ <?php
484
+ if (is_array($zip_files) && count($zip_files)>0) {
485
+ foreach ($zip_files as $zip_file) {
486
+ ++$count;
487
+ $class = $count % 2 == 0 ? '' : 'alternate';
488
+ $row_id="row".$count;
489
+ $zip_file_name = basename($zip_file);
490
+ ?>
491
+ <tr id="<?php echo $row_id ?>" class="<?php echo $class ?>">
492
+ <td><a href="<?php echo $zip_file_name ?>" class="downloadbackuplink"><?php echo $zip_file_name ?></a></td>
493
+ </tr>
494
+ <?php }} ?>
495
  </tbody>
496
  </table>
497
+ </div>
498
+ <?php endforeach; ?>
499
+
500
  <?php endif; ?>
501
  <div id="new_backup" style="display:none;">
502
  <h2><?php _e('WP BackItUp Backup Set', $namespace) ?></h2>
views/restore.php CHANGED
@@ -9,9 +9,6 @@
9
  *
10
  */
11
 
12
- //Check the license
13
- do_action( 'wpbackitup_check_license');
14
-
15
  $namespace = $this->namespace;
16
  $page_title = sprintf(__('%s Restore', $namespace), $this->friendly_name );
17
 
@@ -42,11 +39,15 @@
42
  $restore_folder_exists=true;
43
  }
44
 
45
- $backup_list = $this->get_backup_list();
 
 
 
 
46
 
47
 
48
- $chunk_size = min(wp_max_upload_size()-1024, 1024*1024*2);
49
- $plupload_config = array(
50
  'runtimes' => 'html5,flash,silverlight,html4',
51
  'browse_button' => 'plupload-browse-button',
52
  'container' => 'plupload-upload-ui',
@@ -93,28 +94,52 @@ if (!$restore_folder_exists) {
93
  <div class="widget">
94
  <h3><i class="fa fa-cloud-download"></i> <?php _e('Available Backups', $namespace); ?></h3>
95
  <table class="widefat" id="datatable">
 
 
 
 
 
 
 
 
 
96
  <?php
97
 
98
- if ($backup_list!=false)
99
  {
100
  $i = 0;
101
- foreach ($backup_list as $file)
102
  {
103
- $backup_name = $file["backup_name"];
104
- $backup_datetime = get_date_from_gmt(date('Y-m-d H:i:s', $file["date_time"]), 'Y-m-d g:i a'); //Local Date Time
105
- $log_exists = $file["log_exists"];
 
 
 
 
 
 
 
 
106
  $class = $i % 2 == 0 ? 'class="alternate"' : '';
107
  ?>
108
  <tr <?php echo $class ?> id="row<?php echo $i; ?>">
109
- <td><?php echo $backup_name ?></td>
110
- <td>&nbsp;</td>
111
- <td><a href="#" title="<?php echo $backup_name; ?>" class="deleteRow" id="deleteRow<?php echo $i; ?>"><?php _e('Delete', $namespace) ?></a></td>
112
- <?php
113
- if ($this->license_active())
114
- {
115
- echo '<td><a href="#" title="' . $backup_name . '" class="restoreRow" id="restoreRow' . $i . '">' . __('Restore', $namespace) . '</a></td>';
116
- }
117
- ?>
 
 
 
 
 
 
 
118
  </tr>
119
  <?php
120
  $i++;
@@ -127,7 +152,7 @@ if (!$restore_folder_exists) {
127
  ?>
128
  </table>
129
 
130
- <form id="restore-form" method="post" action="admin-post.php">
131
  <?php global $current_user; ?>
132
  <input type="hidden" name="user_id" value="<?php echo $current_user->ID; ?>" />
133
  <input type="hidden" name="is_selected" id="is_selected" value="0" />
9
  *
10
  */
11
 
 
 
 
12
  $namespace = $this->namespace;
13
  $page_title = sprintf(__('%s Restore', $namespace), $this->friendly_name );
14
 
39
  $restore_folder_exists=true;
40
  }
41
 
42
+ // get retention number set
43
+ $number_retained_archives = $this->backup_retained_number();
44
+
45
+ $restore_list_size = 10;
46
+ $backup_job_list = WPBackItUp_Job_v2::get_jobs_by_status(WPBackItUp_Job_v2::BACKUP,array(WPBackItUp_Job_v2::COMPLETE,WPBackItUp_Job_v2::ERROR),$restore_list_size);
47
 
48
 
49
+ $chunk_size = min(wp_max_upload_size()-1024, 1024*1024*2);
50
+ $plupload_config = array(
51
  'runtimes' => 'html5,flash,silverlight,html4',
52
  'browse_button' => 'plupload-browse-button',
53
  'container' => 'plupload-upload-ui',
94
  <div class="widget">
95
  <h3><i class="fa fa-cloud-download"></i> <?php _e('Available Backups', $namespace); ?></h3>
96
  <table class="widefat" id="datatable">
97
+ <thead>
98
+ <tr>
99
+ <th><?php _e('Backup', $namespace) ?></th>
100
+ <th><?php _e('Date', $namespace) ?></th>
101
+ <th>&nbsp;</th>
102
+ <th>&nbsp;</th>
103
+ </tr>
104
+ </thead>
105
+ <tbody>
106
  <?php
107
 
108
+ if ($backup_job_list != false)
109
  {
110
  $i = 0;
111
+ foreach ($backup_job_list as $job)
112
  {
113
+ //Only show the number in the retained list
114
+ if($i >= $restore_list_size ) break;
115
+ $zip_files = $job->get_job_meta('backup_zip_files');
116
+ if($zip_files == "" ) {
117
+ continue;
118
+ }
119
+ if($job->getJobStatus() != WPBackItUp_Job_v2::COMPLETE) {
120
+ continue;
121
+ }
122
+ $backup_name = $job->getJobName();
123
+ $file_datetime = $job->getJobDate();
124
  $class = $i % 2 == 0 ? 'class="alternate"' : '';
125
  ?>
126
  <tr <?php echo $class ?> id="row<?php echo $i; ?>">
127
+ <td><?php echo $backup_name; ?></td>
128
+
129
+ <!--date-->
130
+ <td><?php echo $file_datetime ?></td>
131
+
132
+ <td><a href="#" title="<?php echo $backup_name; ?>" data-id="<?php echo $job->getJobId() ?>" class="deleteRow" id="deleteRow<?php echo $i; ?>"><?php _e('Delete', $namespace) ?></a></td>
133
+ <td>
134
+ <?php
135
+ if ($this->license_active())
136
+ {
137
+ echo '<a href="#" title="' . $backup_name . '" class="restoreRow" id="restoreRow' . $i . '">' . __('Restore', $namespace) . '</a>';
138
+ } else {
139
+ echo "&nbsp;";
140
+ }
141
+ ?>
142
+ </td>
143
  </tr>
144
  <?php
145
  $i++;
152
  ?>
153
  </table>
154
 
155
+ <form id="restore-form" method="post" action="<?php echo get_admin_url(),"admin-post.php"; ?>">
156
  <?php global $current_user; ?>
157
  <input type="hidden" name="user_id" value="<?php echo $current_user->ID; ?>" />
158
  <input type="hidden" name="is_selected" id="is_selected" value="0" />
views/settings.php CHANGED
@@ -9,9 +9,6 @@
9
  *
10
  */
11
 
12
- //Check the license
13
- do_action( 'wpbackitup_check_license');
14
-
15
  $namespace = $this->namespace;
16
  $page_title = sprintf(__('%s Settings', $namespace), $this->friendly_name );
17
 
@@ -37,7 +34,7 @@
37
 
38
 
39
  <!-- Display Settings widget -->
40
- <form action="admin-post.php" method="post" id="<?php echo $namespace; ?>-form">
41
  <?php wp_nonce_field($namespace . "-update-options"); ?>
42
  <div class="widget">
43
  <h3 class="promo"><i class="fa fa-envelope"></i> <?php _e('Email Notifications', $namespace) ?></h3>
9
  *
10
  */
11
 
 
 
 
12
  $namespace = $this->namespace;
13
  $page_title = sprintf(__('%s Settings', $namespace), $this->friendly_name );
14
 
34
 
35
 
36
  <!-- Display Settings widget -->
37
+ <form action="<?php echo get_admin_url(),"admin-post.php"; ?>" method="post" id="<?php echo $namespace; ?>-form">
38
  <?php wp_nonce_field($namespace . "-update-options"); ?>
39
  <div class="widget">
40
  <h3 class="promo"><i class="fa fa-envelope"></i> <?php _e('Email Notifications', $namespace) ?></h3>
views/support.php CHANGED
@@ -9,9 +9,6 @@
9
  *
10
  */
11
 
12
- //Check the license
13
- do_action( 'wpbackitup_check_license');
14
-
15
  $namespace = $this->namespace;
16
  $page_title = sprintf(__("%s Support", $namespace), $this->friendly_name );
17
 
@@ -42,7 +39,7 @@
42
 
43
 
44
  <!-- Display Settings widget -->
45
- <form action="admin-post.php" method="post" id="<?php echo $namespace; ?>-support-form">
46
  <?php wp_nonce_field($namespace . "-support-form"); ?>
47
  <div class="widget">
48
  <h3 class="promo"><i class="fa fa-envelope"></i> <?php _e('Email Logs to Support', $namespace) ?></h3>
9
  *
10
  */
11
 
 
 
 
12
  $namespace = $this->namespace;
13
  $page_title = sprintf(__("%s Support", $namespace), $this->friendly_name );
14
 
39
 
40
 
41
  <!-- Display Settings widget -->
42
+ <form action="<?php echo get_admin_url(),"admin-post.php"; ?>" method="post" id="<?php echo $namespace; ?>-support-form">
43
  <?php wp_nonce_field($namespace . "-support-form"); ?>
44
  <div class="widget">
45
  <h3 class="promo"><i class="fa fa-envelope"></i> <?php _e('Email Logs to Support', $namespace) ?></h3>
wp-backitup.php CHANGED
@@ -13,7 +13,7 @@
13
  Plugin Name: WP Backitup
14
  Plugin URI: http://www.wpbackitup.com
15
  Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
16
- Version: 1.10.9
17
  Author: Chris Simmons
18
  Author URI: http://www.wpbackitup.com
19
  License: GPL3
@@ -36,10 +36,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
36
 
37
  define( 'WPBACKITUP__NAMESPACE', 'wp-backitup' );
38
  define( 'WPBACKITUP__MAJOR_VERSION', 1);
39
- define( 'WPBACKITUP__MINOR_VERSION', 10);
40
- define( 'WPBACKITUP__MAINTENANCE_VERSION', 9);
41
  define( 'WPBACKITUP__BUILD_VERSION', 0);
42
  define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
 
43
  define( 'WPBACKITUP__DEBUG', false );
44
  define( 'WPBACKITUP__MINIMUM_WP_VERSION', '3.0' );
45
  define( 'WPBACKITUP__ITEM_NAME', 'WP Backitup' );
@@ -101,7 +102,57 @@ function wpbackitup_modify_cron_schedules($schedules) {
101
 
102
  add_filter('cron_schedules', 'wpbackitup_modify_cron_schedules', 30);
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  function wpbackitup_custom_post_status(){
 
105
  register_post_status( 'queued', array(
106
  'public' => false,
107
  'exclude_from_search' => false,
@@ -137,8 +188,15 @@ function wpbackitup_custom_post_status(){
137
  'show_in_admin_status_list' => true,
138
  ));
139
 
 
 
 
 
 
 
 
140
  }
141
- add_action( 'init', 'wpbackitup_custom_post_status' );
142
 
143
  // Admin class will not be instantiate if any of these conditions are met
144
  if (!is_admin()
13
  Plugin Name: WP Backitup
14
  Plugin URI: http://www.wpbackitup.com
15
  Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
16
+ Version: 1.11.0
17
  Author: Chris Simmons
18
  Author URI: http://www.wpbackitup.com
19
  License: GPL3
36
 
37
  define( 'WPBACKITUP__NAMESPACE', 'wp-backitup' );
38
  define( 'WPBACKITUP__MAJOR_VERSION', 1);
39
+ define( 'WPBACKITUP__MINOR_VERSION', 11);
40
+ define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
41
  define( 'WPBACKITUP__BUILD_VERSION', 0);
42
  define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
43
+ define( 'WPBACKITUP__DB_VERSION', 2);
44
  define( 'WPBACKITUP__DEBUG', false );
45
  define( 'WPBACKITUP__MINIMUM_WP_VERSION', '3.0' );
46
  define( 'WPBACKITUP__ITEM_NAME', 'WP Backitup' );
102
 
103
  add_filter('cron_schedules', 'wpbackitup_modify_cron_schedules', 30);
104
 
105
+
106
+ function wpbackitup_register_post_types() {
107
+
108
+ $backup_args = array(
109
+ 'labels' => array( 'name' => __( 'Backup', WPBACKITUP__NAMESPACE ) ),
110
+ 'public' => false,
111
+ 'exclude_from_search' => true,
112
+ 'publicly_queryable' => false,
113
+ 'show_ui' => false,
114
+ 'query_var' => false,
115
+ 'rewrite' => false,
116
+ 'capability_type' => 'post',
117
+ 'supports' => array( 'title', 'editor' ),
118
+ 'can_export' => true
119
+ );
120
+ register_post_type( WPBACKITUP__NAMESPACE.'_backup', $backup_args );
121
+
122
+ $restore_args = array(
123
+ 'labels' => array( 'name' => __( 'Restore', WPBACKITUP__NAMESPACE ) ),
124
+ 'public' => false,
125
+ 'exclude_from_search' => true,
126
+ 'publicly_queryable' => false,
127
+ 'show_ui' => false,
128
+ 'query_var' => false,
129
+ 'rewrite' => false,
130
+ 'capability_type' => 'post',
131
+ 'supports' => array( 'title', 'editor' ),
132
+ 'can_export' => true
133
+ );
134
+ register_post_type( WPBACKITUP__NAMESPACE.'_restore', $restore_args );
135
+
136
+ $cleanup_args = array(
137
+ 'labels' => array( 'name' => __( 'Cleanup', WPBACKITUP__NAMESPACE ) ),
138
+ 'public' => false,
139
+ 'exclude_from_search' => true,
140
+ 'publicly_queryable' => false,
141
+ 'show_ui' => false,
142
+ 'query_var' => false,
143
+ 'rewrite' => false,
144
+ 'capability_type' => 'post',
145
+ 'supports' => array( 'title', 'editor' ),
146
+ 'can_export' => true
147
+ );
148
+ register_post_type( WPBACKITUP__NAMESPACE.'_cleanup', $cleanup_args );
149
+
150
+ }
151
+
152
+ add_action( 'init', 'wpbackitup_register_post_types',1 );
153
+
154
  function wpbackitup_custom_post_status(){
155
+
156
  register_post_status( 'queued', array(
157
  'public' => false,
158
  'exclude_from_search' => false,
188
  'show_in_admin_status_list' => true,
189
  ));
190
 
191
+ register_post_status( 'deleted', array(
192
+ 'public' => false,
193
+ 'exclude_from_search' => false,
194
+ 'show_in_admin_all_list' => false,
195
+ 'show_in_admin_status_list' => true,
196
+ ));
197
+
198
  }
199
+ add_action( 'init', 'wpbackitup_custom_post_status',1);
200
 
201
  // Admin class will not be instantiate if any of these conditions are met
202
  if (!is_admin()