BackWPup – WordPress Backup Plugin - Version 2.0.2

Version Description

  • fixed bug Class 'ZipArchive' not found now
  • ficed bug in chnge logfile folder
  • replase spaces bei _ in dropboxfolder
  • some more bug fixes
Download this release

Release Info

Developer danielhuesken
Plugin Icon 128x128 BackWPup – WordPress Backup Plugin
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

backwpup-functions.php CHANGED
@@ -165,17 +165,17 @@ function backwpup_api($active=false) {
165
  $active='Y';
166
  else
167
  $active='N';
168
- $ch=curl_init();
169
- curl_setopt($ch,CURLOPT_URL,BACKWPUP_API_URL);
170
- curl_setopt($ch,CURLOPT_POST,true);
171
- curl_setopt($ch,CURLOPT_POSTFIELDS,array('URL'=>get_option('siteurl'),'EMAIL'=>get_option('admin_email'),'WP_VER'=>$wp_version,'BACKWPUP_VER'=>BACKWPUP_VERSION,'ACTIVE'=>$active));
172
- curl_setopt($ch,CURLOPT_USERAGENT,'BackWPup '.BACKWPUP_VERSION);
173
- curl_setopt($ch,CURLOPT_RETURNTRANSFER,false);
174
- curl_setopt($ch,CURLOPT_FORBID_REUSE,true);
175
- curl_setopt($ch,CURLOPT_FRESH_CONNECT,true);
176
- curl_setopt($ch,CURLOPT_TIMEOUT,0.01);
177
- curl_exec($ch);
178
- curl_close($ch);
179
  }
180
 
181
  //add edit setting to plugins page
@@ -385,7 +385,10 @@ function backwpup_dashboard_activejobs() {
385
  foreach ($jobsids as $jobid) {
386
  $jobs[$jobid]=backwpup_get_job_vars($jobid);
387
  }
388
- }
 
 
 
389
  $runningfile=backwpup_get_working_file();
390
  $tmp = Array();
391
  foreach($jobs as &$ma)
@@ -1033,7 +1036,7 @@ function backwpup_get_job_vars($jobid='',$jobnewsettings='') {
1033
 
1034
  if (!isset($jobsettings['dropedir']) or !is_string($jobsettings['dropedir']) or $jobsettings['dropedir']=='/')
1035
  $jobsettings['dropedir']='';
1036
- $jobsettings['dropedir']=trailingslashit(str_replace('//','/',str_replace('\\','/',trim($jobsettings['dropedir']))));
1037
  if (substr($jobsettings['dropedir'],0,1)=='/')
1038
  $jobsettings['dropedir']=substr($jobsettings['dropedir'],1);
1039
 
165
  $active='Y';
166
  else
167
  $active='N';
168
+ $ch=@curl_init();
169
+ @curl_setopt($ch,CURLOPT_URL,BACKWPUP_API_URL);
170
+ @curl_setopt($ch,CURLOPT_POST,true);
171
+ @curl_setopt($ch,CURLOPT_POSTFIELDS,array('URL'=>get_option('siteurl'),'EMAIL'=>get_option('admin_email'),'WP_VER'=>$wp_version,'BACKWPUP_VER'=>BACKWPUP_VERSION,'ACTIVE'=>$active));
172
+ @curl_setopt($ch,CURLOPT_USERAGENT,'BackWPup '.BACKWPUP_VERSION);
173
+ @curl_setopt($ch,CURLOPT_RETURNTRANSFER,false);
174
+ @curl_setopt($ch,CURLOPT_FORBID_REUSE,true);
175
+ @curl_setopt($ch,CURLOPT_FRESH_CONNECT,true);
176
+ @curl_setopt($ch,CURLOPT_TIMEOUT,0.01);
177
+ @curl_exec($ch);
178
+ @curl_close($ch);
179
  }
180
 
181
  //add edit setting to plugins page
385
  foreach ($jobsids as $jobid) {
386
  $jobs[$jobid]=backwpup_get_job_vars($jobid);
387
  }
388
+ } else {
389
+ echo '<ul><li><i>'.__('none','backwpup').'</i></li></ul>';
390
+ return;
391
+ }
392
  $runningfile=backwpup_get_working_file();
393
  $tmp = Array();
394
  foreach($jobs as &$ma)
1036
 
1037
  if (!isset($jobsettings['dropedir']) or !is_string($jobsettings['dropedir']) or $jobsettings['dropedir']=='/')
1038
  $jobsettings['dropedir']='';
1039
+ $jobsettings['dropedir']=trailingslashit(str_replace('//','/',str_replace('\\','/',str_replace(' ','_',trim($jobsettings['dropedir'])))));
1040
  if (substr($jobsettings['dropedir'],0,1)=='/')
1041
  $jobsettings['dropedir']=substr($jobsettings['dropedir'],1);
1042
 
backwpup.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackWPup
4
  Plugin URI: http://backwpup.com
5
  Description: Wordpress Backup and more...
6
  Author: Daniel H&uuml;sken
7
- Version: 2.0.1
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -39,7 +39,7 @@ if (!defined('ABSPATH')) {
39
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
40
  define('BACKWPUP_PLUGIN_BASEURL',plugins_url('',__FILE__));
41
  //Set Plugin Version
42
- define('BACKWPUP_VERSION', '2.0.1');
43
  //Set Min Wordpress Version
44
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.2');
45
  //Set User Capability
4
  Plugin URI: http://backwpup.com
5
  Description: Wordpress Backup and more...
6
  Author: Daniel H&uuml;sken
7
+ Version: 2.0.2
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
39
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
40
  define('BACKWPUP_PLUGIN_BASEURL',plugins_url('',__FILE__));
41
  //Set Plugin Version
42
+ define('BACKWPUP_VERSION', '2.0.2');
43
  //Set Min Wordpress Version
44
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.2');
45
  //Set User Capability
job/backup_create.php CHANGED
@@ -13,7 +13,7 @@ function backup_create() {
13
  $_SESSION['WORKING']['STEPDONE']=0;
14
 
15
  if (strtolower($_SESSION['JOB']['fileformart'])==".zip") { //Zip files
16
- if (!class_exists('ZipArchive')) { //use php zip lib
17
  trigger_error($_SESSION['WORKING']['BACKUP_CREATE']['STEP_TRY'].'. '.__('Try to create backup zip file...','backwpup'),E_USER_NOTICE);
18
  $zip = new ZipArchive();
19
  if ($res=$zip->open($_SESSION['JOB']['backupdir'].$_SESSION['STATIC']['backupfile'],ZIPARCHIVE::CREATE) === TRUE) {
@@ -37,11 +37,12 @@ function backup_create() {
37
  if (is_array($_SESSION['WORKING']['FILELIST'][0])) {
38
  trigger_error($_SESSION['WORKING']['BACKUP_CREATE']['STEP_TRY'].'. '.__('Try to create backup zip (PclZip) file...','backwpup'),E_USER_NOTICE);
39
  $zipbackupfile = new PclZip($_SESSION['JOB']['backupdir'].$_SESSION['STATIC']['backupfile']);
40
- need_free_memory(10485760); //10MB free memory for zip
41
  for ($i=0;$i<count($_SESSION['WORKING']['FILELIST']);$i++) {
42
  $files[$i][79001]=$_SESSION['WORKING']['FILELIST'][$i]['FILE'];
43
  $files[$i][79003]=$_SESSION['WORKING']['FILELIST'][$i]['OUTFILE'];
44
  }
 
45
  @set_time_limit($_SESSION['CFG']['jobscriptruntimelong']);
46
  if (0==$zipbackupfile->create($files,PCLZIP_OPT_ADD_TEMP_FILE_ON)) {
47
  trigger_error(__('Zip file create:','backwpup').' '.$zipbackupfile->errorInfo(true),E_USER_ERROR);
13
  $_SESSION['WORKING']['STEPDONE']=0;
14
 
15
  if (strtolower($_SESSION['JOB']['fileformart'])==".zip") { //Zip files
16
+ if (class_exists('ZipArchive')) { //use php zip lib
17
  trigger_error($_SESSION['WORKING']['BACKUP_CREATE']['STEP_TRY'].'. '.__('Try to create backup zip file...','backwpup'),E_USER_NOTICE);
18
  $zip = new ZipArchive();
19
  if ($res=$zip->open($_SESSION['JOB']['backupdir'].$_SESSION['STATIC']['backupfile'],ZIPARCHIVE::CREATE) === TRUE) {
37
  if (is_array($_SESSION['WORKING']['FILELIST'][0])) {
38
  trigger_error($_SESSION['WORKING']['BACKUP_CREATE']['STEP_TRY'].'. '.__('Try to create backup zip (PclZip) file...','backwpup'),E_USER_NOTICE);
39
  $zipbackupfile = new PclZip($_SESSION['JOB']['backupdir'].$_SESSION['STATIC']['backupfile']);
40
+ need_free_memory(2097152); //free memory for file list
41
  for ($i=0;$i<count($_SESSION['WORKING']['FILELIST']);$i++) {
42
  $files[$i][79001]=$_SESSION['WORKING']['FILELIST'][$i]['FILE'];
43
  $files[$i][79003]=$_SESSION['WORKING']['FILELIST'][$i]['OUTFILE'];
44
  }
45
+ need_free_memory(11534336); //11MB free memory for zip
46
  @set_time_limit($_SESSION['CFG']['jobscriptruntimelong']);
47
  if (0==$zipbackupfile->create($files,PCLZIP_OPT_ADD_TEMP_FILE_ON)) {
48
  trigger_error(__('Zip file create:','backwpup').' '.$zipbackupfile->errorInfo(true),E_USER_ERROR);
job/file_list.php CHANGED
@@ -112,7 +112,7 @@ function _file_list( $folder = '', $levels = 100, $excludedirs=array()) {
112
 
113
  function _get_exclude_dirs($folder) {
114
  $excludedir=array();
115
- $excludedir[]=rtrim(str_replace('\\','/',sys_get_temp_dir()),'/').'/'; //exclude temp
116
  $excludedir[]=$_SESSION['CFG']['dirlogs'];
117
  if (false !== strpos($_SESSION['WP']['ABSPATH'],$folder) and $_SESSION['WP']['ABSPATH']!=$folder)
118
  $excludedir[]=$_SESSION['WP']['ABSPATH'];
@@ -125,10 +125,9 @@ function _get_exclude_dirs($folder) {
125
  if (false !== strpos($_SESSION['WP']['WP_UPLOAD_DIR'],$folder) and $_SESSION['WP']['WP_UPLOAD_DIR']!=$folder)
126
  $excludedir[]=$_SESSION['WP']['WP_UPLOAD_DIR'];
127
  //Exclude Backup dirs
128
- $jobs=(array)get_option('backwpup_jobs');
129
- foreach($jobs as $jobsvale) {
130
- if (!empty($jobsvale['backupdir']) and $jobsvale['backupdir']!='/')
131
- $excludedir[]=$jobsvale['backupdir'];
132
  }
133
  return $excludedir;
134
  }
112
 
113
  function _get_exclude_dirs($folder) {
114
  $excludedir=array();
115
+ $excludedir[]=get_working_dir(); //exclude working dir
116
  $excludedir[]=$_SESSION['CFG']['dirlogs'];
117
  if (false !== strpos($_SESSION['WP']['ABSPATH'],$folder) and $_SESSION['WP']['ABSPATH']!=$folder)
118
  $excludedir[]=$_SESSION['WP']['ABSPATH'];
125
  if (false !== strpos($_SESSION['WP']['WP_UPLOAD_DIR'],$folder) and $_SESSION['WP']['WP_UPLOAD_DIR']!=$folder)
126
  $excludedir[]=$_SESSION['WP']['WP_UPLOAD_DIR'];
127
  //Exclude Backup dirs
128
+ foreach((array)get_option('backwpup_jobs') as $jobsvalue) {
129
+ if (!empty($jobsvalue['backupdir']) and $jobsvalue['backupdir']!='/')
130
+ $excludedir[]=$jobsvalue['backupdir'];
 
131
  }
132
  return $excludedir;
133
  }
job/job_start.php CHANGED
@@ -83,6 +83,15 @@ function backwpup_jobstart($jobid='') {
83
  $_SESSION['BACKWPUP']['SUGARSYNC_PRIVATEACCESSKEY']=BACKWPUP_SUGARSYNC_PRIVATEACCESSKEY;
84
  //Set config data
85
  $_SESSION['CFG']=get_option('backwpup');
 
 
 
 
 
 
 
 
 
86
  //Set job data
87
  $_SESSION['JOB']=backwpup_get_job_vars($jobid);
88
  //STATIC data
83
  $_SESSION['BACKWPUP']['SUGARSYNC_PRIVATEACCESSKEY']=BACKWPUP_SUGARSYNC_PRIVATEACCESSKEY;
84
  //Set config data
85
  $_SESSION['CFG']=get_option('backwpup');
86
+ //Check working times
87
+ if (empty($_SESSION['CFG']['jobstepretry']) or !is_int($_SESSION['CFG']['jobstepretry']) or $_SESSION['CFG']['jobstepretry']>100)
88
+ $_SESSION['CFG']['jobstepretry']=3;
89
+ if (empty($_SESSION['CFG']['jobscriptretry']) or !is_int($_SESSION['CFG']['jobscriptretry']) or $_SESSION['CFG']['jobscriptretry']>100)
90
+ $_SESSION['CFG']['jobscriptretry']=5;
91
+ if (empty($_SESSION['CFG']['jobscriptruntime']) or !is_int($_SESSION['CFG']['jobscriptruntime']) or $_SESSION['CFG']['jobscriptruntime']>100)
92
+ $_SESSION['CFG']['jobscriptruntime']=30;
93
+ if (empty($_SESSION['CFG']['jobscriptruntimelong']) or !is_int($_SESSION['CFG']['jobscriptruntimelong']) or $_SESSION['CFG']['jobscriptruntimelong']>1000)
94
+ $_SESSION['CFG']['jobscriptruntimelong']=300;
95
  //Set job data
96
  $_SESSION['JOB']=backwpup_get_job_vars($jobid);
97
  //STATIC data
lang/backwpup-de_DE.mo CHANGED
Binary file
lang/backwpup-de_DE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: BackWPup 2.0 Branch\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tags/backwpup\n"
5
  "POT-Creation-Date: 2010-06-23 17:08+0000\n"
6
- "PO-Revision-Date: 2011-07-05 21:59+0100\n"
7
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
8
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -19,27 +19,27 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ backwpup
22
- #: job/job_functions.php:260
23
  msgid "[WARNING]"
24
  msgstr "[WARNUNG]"
25
 
26
  #@ backwpup
27
- #: job/job_functions.php:266
28
  msgid "[ERROR]"
29
  msgstr "[FEHLER]"
30
 
31
  #@ backwpup
32
- #: job/job_functions.php:270
33
  msgid "[DEPRECATED]"
34
  msgstr "[VERALTET]"
35
 
36
  #@ backwpup
37
- #: job/job_functions.php:273
38
  msgid "[STRICT NOTICE]"
39
  msgstr "[STRENGER HINWEIS]"
40
 
41
  #@ backwpup
42
- #: job/job_functions.php:276
43
  msgid "[RECOVERABLE ERROR]"
44
  msgstr "[L&Ouml;SBARER FEHLER]"
45
 
@@ -177,17 +177,16 @@ msgstr "Keine Dateien f&uuml;r die Datensicherung"
177
 
178
  #@ backwpup
179
  #: job/backup_create.php:22
180
- #: job/backup_create.php:43
181
  msgid "Can not add File to ZIP file:"
182
  msgstr "Datei kann dem ZIP-Paket nicht hinzugef&uuml;gt werden:"
183
 
184
  #@ backwpup
185
- #: job/backup_create.php:48
186
  msgid "Backup Zip file create done!"
187
  msgstr "Erstellung der Datensicherungs-ZIP-Datei fertig!"
188
 
189
  #@ backwpup
190
- #: job/backup_create.php:168
191
  msgid "Backup Archive file create done!"
192
  msgstr "Datensicherungs-Archivdatei wurde erstellt!"
193
 
@@ -313,29 +312,29 @@ msgid "S3 Bucket not exists:"
313
  msgstr "S3 Bucket existiert nicht:"
314
 
315
  #@ backwpup
316
- #: job/job_functions.php:349
317
  #, php-format
318
  msgid "Job done in %1s sec."
319
  msgstr "Auftrag ausgef&uuml;hrt in %1s Sekunden."
320
 
321
  #@ backwpup
322
- #: job/job_functions.php:447
323
  msgid "Jobname:"
324
  msgstr "Auftragsname:"
325
 
326
  #@ backwpup
327
- #: job/job_functions.php:448
328
  msgid "Jobtype:"
329
  msgstr "Auftragstyp:"
330
 
331
  #@ backwpup
332
- #: job/job_functions.php:450
333
  #: pages/page_backwpupworking.php:34
334
  msgid "Errors:"
335
  msgstr "Fehler:"
336
 
337
  #@ backwpup
338
- #: job/job_functions.php:452
339
  #: pages/page_backwpupworking.php:30
340
  msgid "Warnings:"
341
  msgstr "Warnungen:"
@@ -345,7 +344,7 @@ msgstr "Warnungen:"
345
  #. translators: plugin header field 'Name'
346
  #: backwpup-functions.php:10
347
  #: backwpup-functions.php:204
348
- #: backwpup-functions.php:429
349
  #: backwpup.php:0
350
  msgid "BackWPup"
351
  msgstr "BackWPup"
@@ -474,13 +473,13 @@ msgstr "Datenbanktabellen checken"
474
 
475
  #@ backwpup
476
  #: backwpup-functions.php:355
477
- #: backwpup-functions.php:410
478
  #: pages/page_backwpupsettings.php:61
479
  msgid "none"
480
  msgstr "nichts"
481
 
482
  #@ backwpup
483
- #: backwpup-functions.php:403
484
  msgid "Edit Job"
485
  msgstr "Auftrag bearbeiten"
486
 
@@ -545,57 +544,57 @@ msgstr "Auftragsplanung"
545
  msgid "Activate scheduling"
546
  msgstr "Planung aktiv?"
547
 
548
- #@ default
549
  #: pages/func_backwpupeditjob.php:139
550
  msgid "January"
551
  msgstr "Januar"
552
 
553
- #@ default
554
  #: pages/func_backwpupeditjob.php:140
555
  msgid "February"
556
  msgstr "Februar"
557
 
558
- #@ default
559
  #: pages/func_backwpupeditjob.php:141
560
  msgid "March"
561
  msgstr "M&auml;rz"
562
 
563
- #@ default
564
  #: pages/func_backwpupeditjob.php:142
565
  msgid "April"
566
  msgstr "April"
567
 
568
- #@ default
569
  #: pages/func_backwpupeditjob.php:143
570
  msgid "May"
571
  msgstr "Mai"
572
 
573
- #@ default
574
  #: pages/func_backwpupeditjob.php:144
575
  msgid "June"
576
  msgstr "Juni"
577
 
578
- #@ default
579
  #: pages/func_backwpupeditjob.php:145
580
  msgid "July"
581
  msgstr "Juli"
582
 
583
- #@ default
584
  #: pages/func_backwpupeditjob.php:147
585
  msgid "September"
586
  msgstr "September"
587
 
588
- #@ default
589
  #: pages/func_backwpupeditjob.php:148
590
  msgid "October"
591
  msgstr "Oktober"
592
 
593
- #@ default
594
  #: pages/func_backwpupeditjob.php:149
595
  msgid "November"
596
  msgstr "November"
597
 
598
- #@ default
599
  #: pages/func_backwpupeditjob.php:150
600
  msgid "December"
601
  msgstr "Dezember"
@@ -706,21 +705,21 @@ msgid "Max. File Size for sending Backups with mail:"
706
  msgstr "Maximale Dateigr&ouml;&szlig;e zum Senden von Datensicherungen via E-Mail:"
707
 
708
  #@ backwpup
709
- #: backwpup-functions.php:418
710
  #: pages/page_backwpuplogs.php:10
711
  msgid "BackWPup Logs"
712
  msgstr "BackWPup Protokolle"
713
 
714
  #@ backwpup
715
  #: backwpup-functions.php:11
716
- #: backwpup-functions.php:432
717
  #: pages/page_backwpupsettings.php:103
718
  msgid "Jobs"
719
  msgstr "Auftr&auml;ge"
720
 
721
  #@ backwpup
722
  #: backwpup-functions.php:17
723
- #: backwpup-functions.php:433
724
  #: pages/header_backwpupbackups.php:361
725
  #: pages/header_backwpuplogs.php:63
726
  #: pages/page_backwpupsettings.php:81
@@ -952,12 +951,12 @@ msgstr "BackWPup-Datensicherungen verwalten"
952
 
953
  #@ backwpup
954
  #: backwpup-functions.php:19
955
- #: backwpup-functions.php:434
956
  msgid "Backups"
957
  msgstr "Datensicherungen"
958
 
959
  #@ backwpup
960
- #: backwpup-functions.php:761
961
  msgid "New"
962
  msgstr "Neu"
963
 
@@ -988,17 +987,17 @@ msgid "No Containerss found!"
988
  msgstr "Keine Container gefunden!"
989
 
990
  #@ backwpup
991
- #: backwpup-functions.php:700
992
  msgid "- Logs Folder not writeable:"
993
  msgstr "- Protokolldateien-Ordner ist nicht beschreibbar:"
994
 
995
  #@ backwpup
996
- #: backwpup-functions.php:705
997
  msgid "- Please Check Scheduling time for Job:"
998
  msgstr "- Bitte &uuml;berpr&uuml;fen Sie die Zeitplanung f&uuml;r den Auftrag (Scheduling):"
999
 
1000
  #@ backwpup
1001
- #: backwpup-functions.php:708
1002
  msgid "- WP-Cron don't working please check it!"
1003
  msgstr "- WP-Cron arbeitet nicht, bitte &uuml;berpr&uuml;fen Sie die Funktion!"
1004
 
@@ -1013,22 +1012,22 @@ msgid "Information"
1013
  msgstr "Information"
1014
 
1015
  #@ backwpup
1016
- #: pages/func_backwpup.php:239
1017
  msgid "Files Size:"
1018
  msgstr "Gr&ouml;&szlig;e der Dateien:"
1019
 
1020
  #@ backwpup
1021
- #: pages/func_backwpup.php:241
1022
  msgid "Files count:"
1023
  msgstr "Dateiz&auml;hler:"
1024
 
1025
  #@ backwpup
1026
- #: pages/func_backwpup.php:256
1027
  msgid "DB Tables:"
1028
  msgstr "Datenbank-Tabellen:"
1029
 
1030
  #@ backwpup
1031
- #: pages/func_backwpup.php:257
1032
  msgid "DB Rows:"
1033
  msgstr "Datenbank-Zeilen:"
1034
 
@@ -1082,48 +1081,48 @@ msgstr "Alle (*)"
1082
  msgid "Hours:"
1083
  msgstr "Stunden:"
1084
 
1085
- #@ default
1086
  #: pages/func_backwpupeditjob.php:146
1087
  msgid "Augest"
1088
  msgstr "August"
1089
 
1090
- #@ default
1091
  #: pages/func_backwpupeditjob.php:159
1092
  #: pages/func_backwpupeditjob.php:195
1093
  msgid "Sunday"
1094
  msgstr "Sonntag"
1095
 
1096
- #@ default
1097
  #: pages/func_backwpupeditjob.php:160
1098
  #: pages/func_backwpupeditjob.php:196
1099
  msgid "Monday"
1100
  msgstr "Montag"
1101
 
1102
- #@ default
1103
  #: pages/func_backwpupeditjob.php:161
1104
  #: pages/func_backwpupeditjob.php:197
1105
  msgid "Tuesday"
1106
  msgstr "Dienstag"
1107
 
1108
- #@ default
1109
  #: pages/func_backwpupeditjob.php:162
1110
  #: pages/func_backwpupeditjob.php:198
1111
  msgid "Wednesday"
1112
  msgstr "Mittwoch"
1113
 
1114
- #@ default
1115
  #: pages/func_backwpupeditjob.php:163
1116
  #: pages/func_backwpupeditjob.php:199
1117
  msgid "Thursday"
1118
  msgstr "Donnerstag"
1119
 
1120
- #@ default
1121
  #: pages/func_backwpupeditjob.php:164
1122
  #: pages/func_backwpupeditjob.php:200
1123
  msgid "Friday"
1124
  msgstr "Freitag"
1125
 
1126
- #@ default
1127
  #: pages/func_backwpupeditjob.php:165
1128
  #: pages/func_backwpupeditjob.php:201
1129
  msgid "Saturday"
@@ -1342,7 +1341,7 @@ msgid "Amazon S3 API:"
1342
  msgstr "Amazon S3 API (Schnittstelle):"
1343
 
1344
  #@ backwpup
1345
- #: job/job_functions.php:457
1346
  msgid "BackWPup Log from"
1347
  msgstr "BackWPup Protokolldaten von"
1348
 
@@ -1520,17 +1519,17 @@ msgid "Access Key:"
1520
  msgstr "Zugangsschl&uuml;ssel (Access Key):"
1521
 
1522
  #@ backwpup
1523
- #: job/dest_dropbox.php:50
1524
  msgid "Can not transfere Backup file to DropBox:"
1525
  msgstr "Datensicherungsdatei kann nicht zu Dropbox &uuml;bertragen werden:"
1526
 
1527
  #@ backwpup
1528
- #: job/dest_dropbox.php:74
1529
  msgid "files deleted on DropBox Folder!"
1530
  msgstr "Dateien gel&ouml;scht im Dropbox-Ordner!"
1531
 
1532
  #@ backwpup
1533
- #: job/dest_dropbox.php:78
1534
  msgid "DropBox API:"
1535
  msgstr "Dropbox-API (Schnittstelle):"
1536
 
@@ -1545,17 +1544,17 @@ msgid "Create Account"
1545
  msgstr "Konto erstellen"
1546
 
1547
  #@ backwpup
1548
- #: job/dest_dropbox.php:29
1549
  msgid "Authed to DropBox from "
1550
  msgstr "Authentifiziert mit Dropbox von "
1551
 
1552
  #@ backwpup
1553
- #: job/dest_dropbox.php:34
1554
  msgid "No free space left on DropBox!!!"
1555
  msgstr "Kein freier Speicherplatz mehr &uuml;brig auf Dropbox!!!"
1556
 
1557
  #@ backwpup
1558
- #: job/dest_dropbox.php:38
1559
  msgid "Free Space on DropBox: "
1560
  msgstr "Freier Speicherplatz auf Dropbox: "
1561
 
@@ -1637,7 +1636,7 @@ msgid "Copy SQL file to blog root folder to use for a restoration."
1637
  msgstr "Die SQL-Datei in den root-Ordner Ihrer Webseite (bzw. WordPress-Installation) kopieren, damit die Datei f&uuml;r eine Wiederherstellung genutzt werden kann."
1638
 
1639
  #@ backwpup
1640
- #: backwpup-functions.php:697
1641
  msgid "- Logs Folder not exists:"
1642
  msgstr "- Der Protokolldateien-Ordner existiert nicht:"
1643
 
@@ -1742,45 +1741,45 @@ msgid "How many of the lastes logs would you like to display?"
1742
  msgstr "Wieviele der letzten Protokolle wollen Sie anzeigen lassen?"
1743
 
1744
  #@ backwpup
1745
- #: backwpup-functions.php:396
1746
  #, php-format
1747
  msgid "working since %d sec."
1748
  msgstr "in Arbeit seit %d Sek."
1749
 
1750
  #@ backwpup
1751
- #: backwpup-functions.php:397
1752
  #: pages/func_backwpup.php:113
1753
  msgid "View!"
1754
  msgstr "Ansehen!"
1755
 
1756
  #@ backwpup
1757
- #: backwpup-functions.php:398
1758
  #: pages/func_backwpup.php:114
1759
  msgid "Abort!"
1760
  msgstr "Abbrechen!"
1761
 
1762
  #@ backwpup
1763
- #: backwpup-functions.php:419
1764
  msgid "BackWPup Aktive Jobs"
1765
  msgstr "BackWPup aktive Auftr&auml;ge"
1766
 
1767
  #@ backwpup
1768
- #: backwpup-functions.php:678
1769
  msgid "- PHP 5.2.4 or higher needed!"
1770
  msgstr "- PHP 5.2.4 oder h&ouml;her ist erforderlich!"
1771
 
1772
  #@ backwpup
1773
- #: backwpup-functions.php:682
1774
  msgid "- Multiseite Blogs not allowed!"
1775
  msgstr "- Multisite-Installationen sind nicht m&ouml;glich!"
1776
 
1777
  #@ backwpup
1778
- #: backwpup-functions.php:686
1779
  msgid "- curl is needed!"
1780
  msgstr "- CURL ist erforderlich!"
1781
 
1782
  #@ backwpup
1783
- #: backwpup-functions.php:690
1784
  msgid "- PHP sessions needed!"
1785
  msgstr "- PHP-Sessions sind erforderlich!"
1786
 
@@ -1805,32 +1804,32 @@ msgid "Try to create backup zip (PclZip) file..."
1805
  msgstr "Versuche Datensicherungs-ZIP-Dateie (PcLZip) zu erstellen..."
1806
 
1807
  #@ backwpup
1808
- #: job/backup_create.php:62
1809
  msgid "Can not create tar backup file"
1810
  msgstr "Tar Datensicherungsdatei kann nicht erstellt werden"
1811
 
1812
  #@ backwpup
1813
- #: job/backup_create.php:65
1814
  msgid "Try to create backup archive file..."
1815
  msgstr "Versuche Datensicherungs-Archivdatei zu erstellen..."
1816
 
1817
  #@ backwpup
1818
- #: job/backup_create.php:74
1819
  msgid "File not readable:"
1820
  msgstr "Datei nicht lesbar:"
1821
 
1822
  #@ backwpup
1823
- #: job/backup_create.php:89
1824
  msgid "File name to long to save corectly in tar backup archive:"
1825
  msgstr "Dateiname ist zu lang, um die Datei korrekt im Tar Datensicherungsarchiv speichern zu k&ouml;nnen:"
1826
 
1827
  #@ backwpup
1828
- #: job/backup_create.php:91
1829
  msgid "File path to long to save corectly in tar backup archive:"
1830
  msgstr "Dateipfad ist zu lang um die Datei korrekt im Tar Datensicherungsarchiv speichern zu k&ouml;nnen:"
1831
 
1832
  #@ backwpup
1833
- #: job/backup_create.php:172
1834
  #, php-format
1835
  msgid "Backup archive file size is %1s"
1836
  msgstr "Datensicherungsarchiv-Dateigr&ouml;&szlig;e ist %1s"
@@ -1861,7 +1860,7 @@ msgid "Try to sending backup file to DropBox..."
1861
  msgstr "Versuche Datensicherungsdatei an die Dropbox zu senden..."
1862
 
1863
  #@ backwpup
1864
- #: job/dest_dropbox.php:43
1865
  msgid "Upload to DropBox now started ... "
1866
  msgstr "Hochladen in die Dropbox hat begonnen ... "
1867
 
@@ -1986,17 +1985,17 @@ msgid "Links not followed:"
1986
  msgstr "Links nicht gefolgt:"
1987
 
1988
  #@ backwpup
1989
- #: job/job_functions.php:345
1990
  msgid " old Log files deleted!!!"
1991
  msgstr " alte Protokolldateien gel&ouml;scht!!!"
1992
 
1993
  #@ backwpup
1994
- #: job/job_functions.php:483
1995
  msgid "To many restarts...."
1996
  msgstr "Zu viele Neustarts..."
1997
 
1998
  #@ backwpup
1999
- #: job/job_functions.php:521
2000
  msgid "Script stop! Will started again now!"
2001
  msgstr "Skript-Stop! Wird jetzt wieder neu gestartet!"
2002
 
@@ -2016,12 +2015,12 @@ msgid "Can not find job step file:"
2016
  msgstr "Kann Datei mit Abarbeitungsschritten f&uuml;r den Auftrag nicht finden:"
2017
 
2018
  #@ backwpup
2019
- #: job/job_run.php:111
2020
  msgid "Step arborted has too many trys!!!"
2021
  msgstr "Arbeitsschritt abgebrochen - hat zu viele Versuche!!!"
2022
 
2023
  #@ backwpup
2024
- #: job/job_run.php:113
2025
  msgid "Can not find job step function:"
2026
  msgstr "Kann Funktion f&uuml;r den Arbeitsschritt des Auftrages nicht finden:"
2027
 
@@ -2277,12 +2276,12 @@ msgid "BackWPup Working"
2277
  msgstr "BackWPup arbeitet"
2278
 
2279
  #@ backwpup
2280
- #: backwpup-functions.php:431
2281
  msgid "See Working!"
2282
  msgstr "Siehe unter 'In Bearbeitung'!"
2283
 
2284
  #@ backwpup
2285
- #: backwpup-functions.php:436
2286
  msgid "BackWPup Job"
2287
  msgstr "BackWPup Auftrag"
2288
 
@@ -2303,7 +2302,7 @@ msgid "Show BackWPup Links in Admin Bar."
2303
  msgstr "BackWPup-Links in der Adminbar anzeigen."
2304
 
2305
  #@ backwpup
2306
- #: backwpup-functions.php:674
2307
  #, php-format
2308
  msgid "- WordPress %d or heiger needed!"
2309
  msgstr "- WordPress %d oder h&ouml;her erforderlich!"
@@ -2494,7 +2493,7 @@ msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and yo
2494
  msgstr "BackWPup erhalten Sie OHNE JEDWEDE GARANTIE. Dies ist freie Software (quelloffen, im Sinne von Open Source) und Sie sind eingeladen, sie unter bestimmten Bedingungen weiterzugeben."
2495
 
2496
  #@ backwpup
2497
- #: job/dest_dropbox.php:48
2498
  msgid "Backup File transferred to DropBox://"
2499
  msgstr "Datensicherungdatei zur Dropbox:// &uuml;bertragen"
2500
 
@@ -2524,22 +2523,22 @@ msgid "[INFO]: PHP ver.:"
2524
  msgstr "[INFO]: PHP-Version:"
2525
 
2526
  #@ backwpup
2527
- #: job/job_run.php:86
2528
  msgid "[INFO]: MySQL ver.:"
2529
  msgstr "[INFO]: MySQL-Version:"
2530
 
2531
  #@ backwpup
2532
- #: job/job_run.php:88
2533
  msgid "[INFO]: curl ver.:"
2534
  msgstr "[INFO]: cURL-Version:"
2535
 
2536
  #@ backwpup
2537
- #: job/job_run.php:89
2538
  msgid "[INFO]: Temp folder is:"
2539
  msgstr "[INFO]: Temp-Ordner ist:"
2540
 
2541
  #@ backwpup
2542
- #: job/job_run.php:91
2543
  msgid "[INFO]: Backup file is:"
2544
  msgstr "[INFO]: Datensicherungsdatei ist:"
2545
 
@@ -2623,6 +2622,16 @@ msgstr "WordPress-Datensicherung und mehr ..."
2623
  #@ backwpup
2624
  #. translators: plugin header field 'Version'
2625
  #: backwpup.php:0
2626
- msgid "2.0"
2627
- msgstr "2.0"
 
 
 
 
 
 
 
 
 
 
2628
 
3
  "Project-Id-Version: BackWPup 2.0 Branch\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tags/backwpup\n"
5
  "POT-Creation-Date: 2010-06-23 17:08+0000\n"
6
+ "PO-Revision-Date: 2011-07-06 22:41+0100\n"
7
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
8
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ backwpup
22
+ #: job/job_functions.php:265
23
  msgid "[WARNING]"
24
  msgstr "[WARNUNG]"
25
 
26
  #@ backwpup
27
+ #: job/job_functions.php:271
28
  msgid "[ERROR]"
29
  msgstr "[FEHLER]"
30
 
31
  #@ backwpup
32
+ #: job/job_functions.php:275
33
  msgid "[DEPRECATED]"
34
  msgstr "[VERALTET]"
35
 
36
  #@ backwpup
37
+ #: job/job_functions.php:278
38
  msgid "[STRICT NOTICE]"
39
  msgstr "[STRENGER HINWEIS]"
40
 
41
  #@ backwpup
42
+ #: job/job_functions.php:281
43
  msgid "[RECOVERABLE ERROR]"
44
  msgstr "[L&Ouml;SBARER FEHLER]"
45
 
177
 
178
  #@ backwpup
179
  #: job/backup_create.php:22
 
180
  msgid "Can not add File to ZIP file:"
181
  msgstr "Datei kann dem ZIP-Paket nicht hinzugef&uuml;gt werden:"
182
 
183
  #@ backwpup
184
+ #: job/backup_create.php:49
185
  msgid "Backup Zip file create done!"
186
  msgstr "Erstellung der Datensicherungs-ZIP-Datei fertig!"
187
 
188
  #@ backwpup
189
+ #: job/backup_create.php:173
190
  msgid "Backup Archive file create done!"
191
  msgstr "Datensicherungs-Archivdatei wurde erstellt!"
192
 
312
  msgstr "S3 Bucket existiert nicht:"
313
 
314
  #@ backwpup
315
+ #: job/job_functions.php:354
316
  #, php-format
317
  msgid "Job done in %1s sec."
318
  msgstr "Auftrag ausgef&uuml;hrt in %1s Sekunden."
319
 
320
  #@ backwpup
321
+ #: job/job_functions.php:452
322
  msgid "Jobname:"
323
  msgstr "Auftragsname:"
324
 
325
  #@ backwpup
326
+ #: job/job_functions.php:453
327
  msgid "Jobtype:"
328
  msgstr "Auftragstyp:"
329
 
330
  #@ backwpup
331
+ #: job/job_functions.php:455
332
  #: pages/page_backwpupworking.php:34
333
  msgid "Errors:"
334
  msgstr "Fehler:"
335
 
336
  #@ backwpup
337
+ #: job/job_functions.php:457
338
  #: pages/page_backwpupworking.php:30
339
  msgid "Warnings:"
340
  msgstr "Warnungen:"
344
  #. translators: plugin header field 'Name'
345
  #: backwpup-functions.php:10
346
  #: backwpup-functions.php:204
347
+ #: backwpup-functions.php:433
348
  #: backwpup.php:0
349
  msgid "BackWPup"
350
  msgstr "BackWPup"
473
 
474
  #@ backwpup
475
  #: backwpup-functions.php:355
476
+ #: backwpup-functions.php:414
477
  #: pages/page_backwpupsettings.php:61
478
  msgid "none"
479
  msgstr "nichts"
480
 
481
  #@ backwpup
482
+ #: backwpup-functions.php:407
483
  msgid "Edit Job"
484
  msgstr "Auftrag bearbeiten"
485
 
544
  msgid "Activate scheduling"
545
  msgstr "Planung aktiv?"
546
 
547
+ #@ backwpup
548
  #: pages/func_backwpupeditjob.php:139
549
  msgid "January"
550
  msgstr "Januar"
551
 
552
+ #@ backwpup
553
  #: pages/func_backwpupeditjob.php:140
554
  msgid "February"
555
  msgstr "Februar"
556
 
557
+ #@ backwpup
558
  #: pages/func_backwpupeditjob.php:141
559
  msgid "March"
560
  msgstr "M&auml;rz"
561
 
562
+ #@ backwpup
563
  #: pages/func_backwpupeditjob.php:142
564
  msgid "April"
565
  msgstr "April"
566
 
567
+ #@ backwpup
568
  #: pages/func_backwpupeditjob.php:143
569
  msgid "May"
570
  msgstr "Mai"
571
 
572
+ #@ backwpup
573
  #: pages/func_backwpupeditjob.php:144
574
  msgid "June"
575
  msgstr "Juni"
576
 
577
+ #@ backwpup
578
  #: pages/func_backwpupeditjob.php:145
579
  msgid "July"
580
  msgstr "Juli"
581
 
582
+ #@ backwpup
583
  #: pages/func_backwpupeditjob.php:147
584
  msgid "September"
585
  msgstr "September"
586
 
587
+ #@ backwpup
588
  #: pages/func_backwpupeditjob.php:148
589
  msgid "October"
590
  msgstr "Oktober"
591
 
592
+ #@ backwpup
593
  #: pages/func_backwpupeditjob.php:149
594
  msgid "November"
595
  msgstr "November"
596
 
597
+ #@ backwpup
598
  #: pages/func_backwpupeditjob.php:150
599
  msgid "December"
600
  msgstr "Dezember"
705
  msgstr "Maximale Dateigr&ouml;&szlig;e zum Senden von Datensicherungen via E-Mail:"
706
 
707
  #@ backwpup
708
+ #: backwpup-functions.php:422
709
  #: pages/page_backwpuplogs.php:10
710
  msgid "BackWPup Logs"
711
  msgstr "BackWPup Protokolle"
712
 
713
  #@ backwpup
714
  #: backwpup-functions.php:11
715
+ #: backwpup-functions.php:436
716
  #: pages/page_backwpupsettings.php:103
717
  msgid "Jobs"
718
  msgstr "Auftr&auml;ge"
719
 
720
  #@ backwpup
721
  #: backwpup-functions.php:17
722
+ #: backwpup-functions.php:437
723
  #: pages/header_backwpupbackups.php:361
724
  #: pages/header_backwpuplogs.php:63
725
  #: pages/page_backwpupsettings.php:81
951
 
952
  #@ backwpup
953
  #: backwpup-functions.php:19
954
+ #: backwpup-functions.php:438
955
  msgid "Backups"
956
  msgstr "Datensicherungen"
957
 
958
  #@ backwpup
959
+ #: backwpup-functions.php:765
960
  msgid "New"
961
  msgstr "Neu"
962
 
987
  msgstr "Keine Container gefunden!"
988
 
989
  #@ backwpup
990
+ #: backwpup-functions.php:704
991
  msgid "- Logs Folder not writeable:"
992
  msgstr "- Protokolldateien-Ordner ist nicht beschreibbar:"
993
 
994
  #@ backwpup
995
+ #: backwpup-functions.php:709
996
  msgid "- Please Check Scheduling time for Job:"
997
  msgstr "- Bitte &uuml;berpr&uuml;fen Sie die Zeitplanung f&uuml;r den Auftrag (Scheduling):"
998
 
999
  #@ backwpup
1000
+ #: backwpup-functions.php:712
1001
  msgid "- WP-Cron don't working please check it!"
1002
  msgstr "- WP-Cron arbeitet nicht, bitte &uuml;berpr&uuml;fen Sie die Funktion!"
1003
 
1012
  msgstr "Information"
1013
 
1014
  #@ backwpup
1015
+ #: pages/func_backwpup.php:237
1016
  msgid "Files Size:"
1017
  msgstr "Gr&ouml;&szlig;e der Dateien:"
1018
 
1019
  #@ backwpup
1020
+ #: pages/func_backwpup.php:239
1021
  msgid "Files count:"
1022
  msgstr "Dateiz&auml;hler:"
1023
 
1024
  #@ backwpup
1025
+ #: pages/func_backwpup.php:254
1026
  msgid "DB Tables:"
1027
  msgstr "Datenbank-Tabellen:"
1028
 
1029
  #@ backwpup
1030
+ #: pages/func_backwpup.php:255
1031
  msgid "DB Rows:"
1032
  msgstr "Datenbank-Zeilen:"
1033
 
1081
  msgid "Hours:"
1082
  msgstr "Stunden:"
1083
 
1084
+ #@ backwpup
1085
  #: pages/func_backwpupeditjob.php:146
1086
  msgid "Augest"
1087
  msgstr "August"
1088
 
1089
+ #@ backwpup
1090
  #: pages/func_backwpupeditjob.php:159
1091
  #: pages/func_backwpupeditjob.php:195
1092
  msgid "Sunday"
1093
  msgstr "Sonntag"
1094
 
1095
+ #@ backwpup
1096
  #: pages/func_backwpupeditjob.php:160
1097
  #: pages/func_backwpupeditjob.php:196
1098
  msgid "Monday"
1099
  msgstr "Montag"
1100
 
1101
+ #@ backwpup
1102
  #: pages/func_backwpupeditjob.php:161
1103
  #: pages/func_backwpupeditjob.php:197
1104
  msgid "Tuesday"
1105
  msgstr "Dienstag"
1106
 
1107
+ #@ backwpup
1108
  #: pages/func_backwpupeditjob.php:162
1109
  #: pages/func_backwpupeditjob.php:198
1110
  msgid "Wednesday"
1111
  msgstr "Mittwoch"
1112
 
1113
+ #@ backwpup
1114
  #: pages/func_backwpupeditjob.php:163
1115
  #: pages/func_backwpupeditjob.php:199
1116
  msgid "Thursday"
1117
  msgstr "Donnerstag"
1118
 
1119
+ #@ backwpup
1120
  #: pages/func_backwpupeditjob.php:164
1121
  #: pages/func_backwpupeditjob.php:200
1122
  msgid "Friday"
1123
  msgstr "Freitag"
1124
 
1125
+ #@ backwpup
1126
  #: pages/func_backwpupeditjob.php:165
1127
  #: pages/func_backwpupeditjob.php:201
1128
  msgid "Saturday"
1341
  msgstr "Amazon S3 API (Schnittstelle):"
1342
 
1343
  #@ backwpup
1344
+ #: job/job_functions.php:462
1345
  msgid "BackWPup Log from"
1346
  msgstr "BackWPup Protokolldaten von"
1347
 
1519
  msgstr "Zugangsschl&uuml;ssel (Access Key):"
1520
 
1521
  #@ backwpup
1522
+ #: job/dest_dropbox.php:49
1523
  msgid "Can not transfere Backup file to DropBox:"
1524
  msgstr "Datensicherungsdatei kann nicht zu Dropbox &uuml;bertragen werden:"
1525
 
1526
  #@ backwpup
1527
+ #: job/dest_dropbox.php:73
1528
  msgid "files deleted on DropBox Folder!"
1529
  msgstr "Dateien gel&ouml;scht im Dropbox-Ordner!"
1530
 
1531
  #@ backwpup
1532
+ #: job/dest_dropbox.php:77
1533
  msgid "DropBox API:"
1534
  msgstr "Dropbox-API (Schnittstelle):"
1535
 
1544
  msgstr "Konto erstellen"
1545
 
1546
  #@ backwpup
1547
+ #: job/dest_dropbox.php:28
1548
  msgid "Authed to DropBox from "
1549
  msgstr "Authentifiziert mit Dropbox von "
1550
 
1551
  #@ backwpup
1552
+ #: job/dest_dropbox.php:33
1553
  msgid "No free space left on DropBox!!!"
1554
  msgstr "Kein freier Speicherplatz mehr &uuml;brig auf Dropbox!!!"
1555
 
1556
  #@ backwpup
1557
+ #: job/dest_dropbox.php:37
1558
  msgid "Free Space on DropBox: "
1559
  msgstr "Freier Speicherplatz auf Dropbox: "
1560
 
1636
  msgstr "Die SQL-Datei in den root-Ordner Ihrer Webseite (bzw. WordPress-Installation) kopieren, damit die Datei f&uuml;r eine Wiederherstellung genutzt werden kann."
1637
 
1638
  #@ backwpup
1639
+ #: backwpup-functions.php:701
1640
  msgid "- Logs Folder not exists:"
1641
  msgstr "- Der Protokolldateien-Ordner existiert nicht:"
1642
 
1741
  msgstr "Wieviele der letzten Protokolle wollen Sie anzeigen lassen?"
1742
 
1743
  #@ backwpup
1744
+ #: backwpup-functions.php:400
1745
  #, php-format
1746
  msgid "working since %d sec."
1747
  msgstr "in Arbeit seit %d Sek."
1748
 
1749
  #@ backwpup
1750
+ #: backwpup-functions.php:401
1751
  #: pages/func_backwpup.php:113
1752
  msgid "View!"
1753
  msgstr "Ansehen!"
1754
 
1755
  #@ backwpup
1756
+ #: backwpup-functions.php:402
1757
  #: pages/func_backwpup.php:114
1758
  msgid "Abort!"
1759
  msgstr "Abbrechen!"
1760
 
1761
  #@ backwpup
1762
+ #: backwpup-functions.php:423
1763
  msgid "BackWPup Aktive Jobs"
1764
  msgstr "BackWPup aktive Auftr&auml;ge"
1765
 
1766
  #@ backwpup
1767
+ #: backwpup-functions.php:682
1768
  msgid "- PHP 5.2.4 or higher needed!"
1769
  msgstr "- PHP 5.2.4 oder h&ouml;her ist erforderlich!"
1770
 
1771
  #@ backwpup
1772
+ #: backwpup-functions.php:686
1773
  msgid "- Multiseite Blogs not allowed!"
1774
  msgstr "- Multisite-Installationen sind nicht m&ouml;glich!"
1775
 
1776
  #@ backwpup
1777
+ #: backwpup-functions.php:690
1778
  msgid "- curl is needed!"
1779
  msgstr "- CURL ist erforderlich!"
1780
 
1781
  #@ backwpup
1782
+ #: backwpup-functions.php:694
1783
  msgid "- PHP sessions needed!"
1784
  msgstr "- PHP-Sessions sind erforderlich!"
1785
 
1804
  msgstr "Versuche Datensicherungs-ZIP-Dateie (PcLZip) zu erstellen..."
1805
 
1806
  #@ backwpup
1807
+ #: job/backup_create.php:67
1808
  msgid "Can not create tar backup file"
1809
  msgstr "Tar Datensicherungsdatei kann nicht erstellt werden"
1810
 
1811
  #@ backwpup
1812
+ #: job/backup_create.php:70
1813
  msgid "Try to create backup archive file..."
1814
  msgstr "Versuche Datensicherungs-Archivdatei zu erstellen..."
1815
 
1816
  #@ backwpup
1817
+ #: job/backup_create.php:79
1818
  msgid "File not readable:"
1819
  msgstr "Datei nicht lesbar:"
1820
 
1821
  #@ backwpup
1822
+ #: job/backup_create.php:94
1823
  msgid "File name to long to save corectly in tar backup archive:"
1824
  msgstr "Dateiname ist zu lang, um die Datei korrekt im Tar Datensicherungsarchiv speichern zu k&ouml;nnen:"
1825
 
1826
  #@ backwpup
1827
+ #: job/backup_create.php:96
1828
  msgid "File path to long to save corectly in tar backup archive:"
1829
  msgstr "Dateipfad ist zu lang um die Datei korrekt im Tar Datensicherungsarchiv speichern zu k&ouml;nnen:"
1830
 
1831
  #@ backwpup
1832
+ #: job/backup_create.php:177
1833
  #, php-format
1834
  msgid "Backup archive file size is %1s"
1835
  msgstr "Datensicherungsarchiv-Dateigr&ouml;&szlig;e ist %1s"
1860
  msgstr "Versuche Datensicherungsdatei an die Dropbox zu senden..."
1861
 
1862
  #@ backwpup
1863
+ #: job/dest_dropbox.php:42
1864
  msgid "Upload to DropBox now started ... "
1865
  msgstr "Hochladen in die Dropbox hat begonnen ... "
1866
 
1985
  msgstr "Links nicht gefolgt:"
1986
 
1987
  #@ backwpup
1988
+ #: job/job_functions.php:350
1989
  msgid " old Log files deleted!!!"
1990
  msgstr " alte Protokolldateien gel&ouml;scht!!!"
1991
 
1992
  #@ backwpup
1993
+ #: job/job_functions.php:488
1994
  msgid "To many restarts...."
1995
  msgstr "Zu viele Neustarts..."
1996
 
1997
  #@ backwpup
1998
+ #: job/job_functions.php:526
1999
  msgid "Script stop! Will started again now!"
2000
  msgstr "Skript-Stop! Wird jetzt wieder neu gestartet!"
2001
 
2015
  msgstr "Kann Datei mit Abarbeitungsschritten f&uuml;r den Auftrag nicht finden:"
2016
 
2017
  #@ backwpup
2018
+ #: job/job_run.php:113
2019
  msgid "Step arborted has too many trys!!!"
2020
  msgstr "Arbeitsschritt abgebrochen - hat zu viele Versuche!!!"
2021
 
2022
  #@ backwpup
2023
+ #: job/job_run.php:115
2024
  msgid "Can not find job step function:"
2025
  msgstr "Kann Funktion f&uuml;r den Arbeitsschritt des Auftrages nicht finden:"
2026
 
2276
  msgstr "BackWPup arbeitet"
2277
 
2278
  #@ backwpup
2279
+ #: backwpup-functions.php:435
2280
  msgid "See Working!"
2281
  msgstr "Siehe unter 'In Bearbeitung'!"
2282
 
2283
  #@ backwpup
2284
+ #: backwpup-functions.php:440
2285
  msgid "BackWPup Job"
2286
  msgstr "BackWPup Auftrag"
2287
 
2302
  msgstr "BackWPup-Links in der Adminbar anzeigen."
2303
 
2304
  #@ backwpup
2305
+ #: backwpup-functions.php:678
2306
  #, php-format
2307
  msgid "- WordPress %d or heiger needed!"
2308
  msgstr "- WordPress %d oder h&ouml;her erforderlich!"
2493
  msgstr "BackWPup erhalten Sie OHNE JEDWEDE GARANTIE. Dies ist freie Software (quelloffen, im Sinne von Open Source) und Sie sind eingeladen, sie unter bestimmten Bedingungen weiterzugeben."
2494
 
2495
  #@ backwpup
2496
+ #: job/dest_dropbox.php:47
2497
  msgid "Backup File transferred to DropBox://"
2498
  msgstr "Datensicherungdatei zur Dropbox:// &uuml;bertragen"
2499
 
2523
  msgstr "[INFO]: PHP-Version:"
2524
 
2525
  #@ backwpup
2526
+ #: job/job_run.php:88
2527
  msgid "[INFO]: MySQL ver.:"
2528
  msgstr "[INFO]: MySQL-Version:"
2529
 
2530
  #@ backwpup
2531
+ #: job/job_run.php:90
2532
  msgid "[INFO]: curl ver.:"
2533
  msgstr "[INFO]: cURL-Version:"
2534
 
2535
  #@ backwpup
2536
+ #: job/job_run.php:91
2537
  msgid "[INFO]: Temp folder is:"
2538
  msgstr "[INFO]: Temp-Ordner ist:"
2539
 
2540
  #@ backwpup
2541
+ #: job/job_run.php:93
2542
  msgid "[INFO]: Backup file is:"
2543
  msgstr "[INFO]: Datensicherungsdatei ist:"
2544
 
2622
  #@ backwpup
2623
  #. translators: plugin header field 'Version'
2624
  #: backwpup.php:0
2625
+ msgid "2.0.1"
2626
+ msgstr "2.0.1"
2627
+
2628
+ #@ backwpup
2629
+ #: job/backup_create.php:47
2630
+ msgid "Zip file create:"
2631
+ msgstr "ZIP-Datei erstellen:"
2632
+
2633
+ #@ backwpup
2634
+ #: job/job_run.php:87
2635
+ msgid "[INFO]: PHP Safe mode is ON!"
2636
+ msgstr "[INFO]: PHP-Safemode ist AKTIV!"
2637
 
pages/header_backwpup.php CHANGED
@@ -63,7 +63,7 @@ if (!empty($doaction)) {
63
  check_admin_referer('abort-job');
64
  $runningfile=backwpup_get_working_file();
65
  unlink(backwpup_get_working_dir().'/.running'); //delete runnig file
66
- file_put_contents($runningfile['LOGFILE'], "<span class=\"timestamp\">".date('Y-m-d H:i.s').":</span> <span class=\"error\">[ERROR]".__('Aborted by user!!!','backwpup')."</span><br />\n", FILE_APPEND);
67
  //write new log header
68
  $runningfile['ERROR']++;
69
  $fd=fopen($runningfile['LOGFILE'],'r+');
63
  check_admin_referer('abort-job');
64
  $runningfile=backwpup_get_working_file();
65
  unlink(backwpup_get_working_dir().'/.running'); //delete runnig file
66
+ file_put_contents($runningfile['LOGFILE'], "<span class=\"timestamp\">".date_i18n('Y-m-d H:i.s').":</span> <span class=\"error\">[ERROR]".__('Aborted by user!!!','backwpup')."</span><br />\n", FILE_APPEND);
67
  //write new log header
68
  $runningfile['ERROR']++;
69
  $fd=fopen($runningfile['LOGFILE'],'r+');
pages/header_backwpupeditjob.php CHANGED
@@ -112,7 +112,7 @@ if ((isset($_POST['submit']) or isset($_POST['dropboxauth']) or isset($_POST['dr
112
  $jobvalues['backupdir']=isset($_POST['backupdir']) ? stripslashes($_POST['backupdir']) : '';
113
  $jobvalues['maxbackups']=isset($_POST['maxbackups']) ? (int)$_POST['maxbackups'] : 0;
114
  $jobvalues['ftphost']=isset($_POST['ftphost']) ? $_POST['ftphost'] : '';
115
- $jobvalues['ftphostport']=!empty($_POST['ftphostport']) ? $_POST['ftphostport'] : 21;
116
  $jobvalues['ftpuser']=isset($_POST['ftpuser']) ? $_POST['ftpuser'] : '';
117
  $jobvalues['ftppass']=isset($_POST['ftppass']) ? base64_encode($_POST['ftppass']) : '';
118
  $jobvalues['ftpdir']=isset($_POST['ftpdir']) ? stripslashes($_POST['ftpdir']) : '';
112
  $jobvalues['backupdir']=isset($_POST['backupdir']) ? stripslashes($_POST['backupdir']) : '';
113
  $jobvalues['maxbackups']=isset($_POST['maxbackups']) ? (int)$_POST['maxbackups'] : 0;
114
  $jobvalues['ftphost']=isset($_POST['ftphost']) ? $_POST['ftphost'] : '';
115
+ $jobvalues['ftphostport']=!empty($_POST['ftphostport']) ? (int)$_POST['ftphostport'] : 21;
116
  $jobvalues['ftpuser']=isset($_POST['ftpuser']) ? $_POST['ftpuser'] : '';
117
  $jobvalues['ftppass']=isset($_POST['ftppass']) ? base64_encode($_POST['ftppass']) : '';
118
  $jobvalues['ftpdir']=isset($_POST['ftpdir']) ? stripslashes($_POST['ftpdir']) : '';
pages/header_backwpupsettings.php CHANGED
@@ -14,7 +14,7 @@ if (isset($_POST['submit']) and isset($_POST['action']) and $_POST['action']=='u
14
  $cfg['mailsendmail']=untrailingslashit(str_replace('//','/',str_replace('\\','/',stripslashes($_POST['mailsendmail']))));
15
  $cfg['mailsecure']=$_POST['mailsecure'];
16
  $cfg['mailhost']=$_POST['mailhost'];
17
- $cfg['mailhostport']=empty($_POST['mailhostport']) ? 25 : $_POST['mailhostport'];
18
  $cfg['mailuser']=$_POST['mailuser'];
19
  $cfg['mailpass']=base64_encode($_POST['mailpass']);
20
  $cfg['disablewpcron']=isset($_POST['disablewpcron']) ? true : false;
@@ -39,7 +39,7 @@ if (isset($_POST['submit']) and isset($_POST['action']) and $_POST['action']=='u
39
  $cfg['gzlogs']=isset($_POST['gzlogs']) ? true : false;
40
  $cfg['dirlogs']=trailingslashit(str_replace('//','/',str_replace('\\','/',stripslashes(trim($_POST['dirlogs'])))));
41
  //set def. folders
42
- if (!isset($cfg['dirlogs']) or !is_dir($cfg['dirlogs']) or $cfg['dirlogs']=='/' or empty($cfg['dirlogs'])) {
43
  $rand = substr( md5( md5( SECURE_AUTH_KEY ) ), -5 );
44
  $cfg['dirlogs']=str_replace('\\','/',trailingslashit(WP_CONTENT_DIR)).'backwpup-'.$rand.'-logs/';
45
  }
14
  $cfg['mailsendmail']=untrailingslashit(str_replace('//','/',str_replace('\\','/',stripslashes($_POST['mailsendmail']))));
15
  $cfg['mailsecure']=$_POST['mailsecure'];
16
  $cfg['mailhost']=$_POST['mailhost'];
17
+ $cfg['mailhostport']=empty($_POST['mailhostport']) ? 25 : (int)$_POST['mailhostport'];
18
  $cfg['mailuser']=$_POST['mailuser'];
19
  $cfg['mailpass']=base64_encode($_POST['mailpass']);
20
  $cfg['disablewpcron']=isset($_POST['disablewpcron']) ? true : false;
39
  $cfg['gzlogs']=isset($_POST['gzlogs']) ? true : false;
40
  $cfg['dirlogs']=trailingslashit(str_replace('//','/',str_replace('\\','/',stripslashes(trim($_POST['dirlogs'])))));
41
  //set def. folders
42
+ if (!isset($cfg['dirlogs']) or $cfg['dirlogs']=='/' or empty($cfg['dirlogs'])) {
43
  $rand = substr( md5( md5( SECURE_AUTH_KEY ) ), -5 );
44
  $cfg['dirlogs']=str_replace('\\','/',trailingslashit(WP_CONTENT_DIR)).'backwpup-'.$rand.'-logs/';
45
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mail%
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, Rackspace, Cloud, Azure, DropBox, SugarSync, Google, Storage
5
  Requires at least: 3.2
6
  Tested up to: 3.2
7
- Stable tag: 2.0.1
8
 
9
  Backup your WordPress Database and Files, and more!
10
 
@@ -127,6 +127,12 @@ Destinations are:
127
  4. Backups Manage Page
128
 
129
  == Changelog ==
 
 
 
 
 
 
130
  = 2.0.1 =
131
  * Zip file creation now faster agin but no stat output
132
  * serverl bug fixes
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, Rackspace, Cloud, Azure, DropBox, SugarSync, Google, Storage
5
  Requires at least: 3.2
6
  Tested up to: 3.2
7
+ Stable tag: 2.0.2
8
 
9
  Backup your WordPress Database and Files, and more!
10
 
127
  4. Backups Manage Page
128
 
129
  == Changelog ==
130
+ = 2.0.2 =
131
+ * fixed bug Class 'ZipArchive' not found now
132
+ * ficed bug in chnge logfile folder
133
+ * replase spaces bei _ in dropboxfolder
134
+ * some more bug fixes
135
+
136
  = 2.0.1 =
137
  * Zip file creation now faster agin but no stat output
138
  * serverl bug fixes