BackWPup – WordPress Backup Plugin - Version 2.1.2

Version Description

  • removed http class, makes to many problems
Download this release

Release Info

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

Code changes from version 2.1.1 to 2.1.2

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üsken
7
- Version: 2.1.1
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -32,7 +32,7 @@ Domain Path: /lang/
32
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
33
  define('BACKWPUP_PLUGIN_BASEURL',plugins_url('',__FILE__));
34
  //Set Plugin Version
35
- define('BACKWPUP_VERSION', '2.1.1');
36
  //Set Min Wordpress Version
37
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.1');
38
  //Set User Capability
4
  Plugin URI: http://backwpup.com
5
  Description: Wordpress Backup and more...
6
  Author: Daniel Hüsken
7
+ Version: 2.1.2
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
32
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
33
  define('BACKWPUP_PLUGIN_BASEURL',plugins_url('',__FILE__));
34
  //Set Plugin Version
35
+ define('BACKWPUP_VERSION', '2.1.2');
36
  //Set Min Wordpress Version
37
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.1');
38
  //Set User Capability
job/db_dump.php CHANGED
@@ -15,7 +15,6 @@ function db_dump() {
15
  $tabelstobackup[]=$data[0];
16
  }
17
  $WORKING['STEPTODO']=count($tabelstobackup);
18
-
19
  //Set maintenance
20
  maintenance_mode(true);
21
 
15
  $tabelstobackup[]=$data[0];
16
  }
17
  $WORKING['STEPTODO']=count($tabelstobackup);
 
18
  //Set maintenance
19
  maintenance_mode(true);
20
 
job/job_functions.php CHANGED
@@ -528,19 +528,47 @@ function job_shutdown($signal='') {
528
  file_put_contents($STATIC['LOGFILE'], "<span class=\"timestamp\" title=\"[Line: ".__LINE__."|File: ".basename(__FILE__)."|Mem: ".formatbytes(@memory_get_usage(true))."|Mem Max: ".formatbytes(@memory_get_peak_usage(true))."|Mem Limit: ".ini_get('memory_limit')."|PID: ".getmypid()."]\">".date('Y/m/d H:i.s',time()+$STATIC['WP']['TIMEDIFF']).":</span> <span>".$WORKING['RESTART'].'. '.__('Script stop! Will started again now!','backwpup')."</span><br />\n", FILE_APPEND);
529
  update_working_file(true);
530
  if (!empty($STATIC['JOBRUNURL'])) {
531
- require_once(dirname(__FILE__).'/../libs/class.http.php');
532
- $http = new Http();
533
- $http->setMethod('POST');
534
- $http->setCookiepath($STATIC['TEMPDIR']);
535
- $http->followRedirects(false);
536
- if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword']))
537
- $http->setAuth($STATIC['CFG']['httpauthuser'], base64_decode($STATIC['CFG']['httpauthpassword']));
538
- $http->addParam('BackWPupJobTemp', $STATIC['TEMPDIR']);
539
- $http->addParam('nonce',$WORKING['NONCE']);
540
- $http->addParam('type', 'restart');
541
- $http->setUseragent('BackWPup');
542
- $http->setTimeout(0.01);
543
- $http->execute($STATIC['JOBRUNURL']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
  }
545
  exit;
546
  }
528
  file_put_contents($STATIC['LOGFILE'], "<span class=\"timestamp\" title=\"[Line: ".__LINE__."|File: ".basename(__FILE__)."|Mem: ".formatbytes(@memory_get_usage(true))."|Mem Max: ".formatbytes(@memory_get_peak_usage(true))."|Mem Limit: ".ini_get('memory_limit')."|PID: ".getmypid()."]\">".date('Y/m/d H:i.s',time()+$STATIC['WP']['TIMEDIFF']).":</span> <span>".$WORKING['RESTART'].'. '.__('Script stop! Will started again now!','backwpup')."</span><br />\n", FILE_APPEND);
529
  update_working_file(true);
530
  if (!empty($STATIC['JOBRUNURL'])) {
531
+ if (function_exists('curl_exec')) {
532
+ $ch = curl_init();
533
+ curl_setopt($ch, CURLOPT_URL, $STATIC['JOBRUNURL']);
534
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
535
+ curl_setopt($ch, CURLOPT_POST, true);
536
+ curl_setopt($ch, CURLOPT_POSTFIELDS, array('BackWPupJobTemp'=>$STATIC['TEMPDIR'],'nonce'=>$WORKING['NONCE'],'type'=>'restart'));
537
+ curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
538
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
539
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
540
+ curl_setopt($ch, CURLOPT_USERAGENT, 'BackWPup');
541
+ if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword'])) {
542
+ curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
543
+ curl_setopt($ch, CURLOPT_USERPWD, $STATIC['CFG']['httpauthuser'].':'.base64_decode($STATIC['CFG']['httpauthpassword']));
544
+ }
545
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0.01);
546
+ curl_exec($ch);
547
+ } else {
548
+ //use fopen if no curl
549
+ $urlParsed=parse_url($STATIC['JOBRUNURL']);
550
+ if ($urlParsed['scheme'] == 'https') {
551
+ $host = 'ssl://' . $urlParsed['host'];
552
+ $port = (!empty($urlParsed['port'])) ? $urlParsed['port'] : 443;
553
+ } else {
554
+ $host = $urlParsed['host'];
555
+ $port = (!empty($urlParsed['port'])) ? $urlParsed['port'] : 80;
556
+ }
557
+ $query=http_build_query(array('BackWPupJobTemp'=>$STATIC['TEMPDIR'],'nonce'=>$WORKING['NONCE'],'type'=>'restart'));
558
+ $path=(isset($urlParsed['path']) ? $urlParsed['path'] : '/').(isset($urlParsed['query']) ? '?' . $urlParsed['query'] : '');
559
+ $header = "POST ".$path." HTTP/1.1\r\n";
560
+ $header.= "Host: ".$urlParsed['host']."\r\n";
561
+ $header.= "User-Agent: BackWPup\r\n";
562
+ $header.= "Content-Type: application/x-www-form-urlencoded\r\n";
563
+ $header.= "Content-Length: ".strlen($query)."\r\n";
564
+ if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword']))
565
+ $header.= "Authorization: Basic ".base64_encode($STATIC['CFG']['httpauthuser'].':'.base64_decode($STATIC['CFG']['httpauthpassword']))."\r\n";
566
+ $header.= "Connection: Close\r\n\r\n";
567
+ $header.=$query;
568
+ $fp=fsockopen($host, $port, $errno, $errstr, 0.01);
569
+ fwrite($fp,$header);
570
+ fclose($fp);
571
+ }
572
  }
573
  exit;
574
  }
job/job_run.php CHANGED
@@ -81,7 +81,6 @@ $WORKING['PID']=getmypid();
81
  register_shutdown_function('job_shutdown');
82
  if (function_exists('pcntl_signal')) {
83
  pcntl_signal(SIGTERM, 'job_shutdown');
84
- pcntl_signal(SIGKILL, 'job_shutdown');
85
  }
86
  //disable safe mode
87
  @ini_set('safe_mode','0');
81
  register_shutdown_function('job_shutdown');
82
  if (function_exists('pcntl_signal')) {
83
  pcntl_signal(SIGTERM, 'job_shutdown');
 
84
  }
85
  //disable safe mode
86
  @ini_set('safe_mode','0');
job/wp_export.php CHANGED
@@ -1,34 +1,82 @@
1
  <?PHP
 
 
 
 
 
 
2
  function wp_export() {
3
  global $WORKING,$STATIC;
4
  $WORKING['STEPTODO']=1;
5
  trigger_error(sprintf(__('%d. try for wordpress export to XML file...','backwpup'),$WORKING['WP_EXPORT']['STEP_TRY']),E_USER_NOTICE);
6
  need_free_memory(10485760); //10MB free memory
7
-
8
- require_once(dirname(__FILE__).'/../libs/class.http.php');
9
- $http = new Http();
10
- $http->setMethod('POST');
11
- $http->setCookiepath($STATIC['TEMPDIR']);
12
- $http->followRedirects(false);
13
- if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword']))
14
- $http->setAuth($STATIC['CFG']['httpauthuser'], base64_decode($STATIC['CFG']['httpauthpassword']));
15
- $http->addParam('BackWPupJobTemp', $STATIC['TEMPDIR']);
16
- $http->addParam('nonce',$WORKING['NONCE']);
17
- $http->addParam('type', 'getxmlexport');
18
- $http->setUseragent('BackWPup');
19
- $http->setTimeout(300);
20
- $http->setProgressFunction('curl_progresscallback');
21
- @set_time_limit($STATIC['CFG']['jobscriptruntimelong']);
22
- $return=$http->execute(substr($STATIC['JOBRUNURL'],0,-11).'wp_export_generate.php');
23
- $status=$http->getStatus();
24
- $error=$http->getError();
25
-
26
- if ($status>=300 or $status<200 or !empty($error)) {
27
- trigger_error(sprintf(__('XML Export (%1$d) %2$s','backwpup'),$status,$error),E_USER_ERROR);
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  } else {
29
- file_put_contents($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml', $return);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
-
32
  //add XML file to backupfiles
33
  if (is_readable($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml')) {
34
  $filestat=stat($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml');
1
  <?PHP
2
+ if (!defined('BACKWPUP_JOBRUN_FOLDER')) {
3
+ header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
4
+ header("Status: 404 Not Found");
5
+ die();
6
+ }
7
+
8
  function wp_export() {
9
  global $WORKING,$STATIC;
10
  $WORKING['STEPTODO']=1;
11
  trigger_error(sprintf(__('%d. try for wordpress export to XML file...','backwpup'),$WORKING['WP_EXPORT']['STEP_TRY']),E_USER_NOTICE);
12
  need_free_memory(10485760); //10MB free memory
13
+ if (function_exists('curl_exec')) {
14
+ $ch = curl_init();
15
+ curl_setopt($ch, CURLOPT_URL, substr($STATIC['JOBRUNURL'],0,-11).'wp_export_generate.php');
16
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
17
+ curl_setopt($ch, CURLOPT_POST, true);
18
+ curl_setopt($ch, CURLOPT_POSTFIELDS, array('BackWPupJobTemp'=>$STATIC['TEMPDIR'],'nonce'=>$WORKING['NONCE'],'type'=>'getxmlexport'));
19
+ curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
20
+ curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
21
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
22
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
23
+ curl_setopt($ch, CURLOPT_USERAGENT, 'BackWPup');
24
+ if (defined('CURLOPT_PROGRESSFUNCTION')) {
25
+ curl_setopt($ch, CURLOPT_NOPROGRESS, false);
26
+ curl_setopt($ch, CURLOPT_PROGRESSFUNCTION, 'curl_progresscallback');
27
+ curl_setopt($ch, CURLOPT_BUFFERSIZE, 512);
28
+ } else {
29
+ @set_time_limit($STATIC['CFG']['jobscriptruntimelong']);
30
+ }
31
+ if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword'])) {
32
+ curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
33
+ curl_setopt($ch, CURLOPT_USERPWD, $STATIC['CFG']['httpauthuser'].':'.base64_decode($STATIC['CFG']['httpauthpassword']));
34
+ }
35
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
36
+ $return=curl_exec($ch);
37
+ $status=curl_getinfo($ch);
38
+ if ($status['http_code']>=300 or $status['http_code']<200 or curl_errno($ch)>0) {
39
+ if (0!=curl_errno($ch))
40
+ trigger_error(__('cURL:','backwpup').' ('.curl_errno($ch).') '.curl_error($ch),E_USER_ERROR);
41
+ else
42
+ trigger_error(__('cURL:','backwpup').' ('.$status['http_code'].') Invalid response.',E_USER_ERROR);
43
+ } else {
44
+ file_put_contents($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml', $return);
45
+ }
46
+ curl_close($ch);
47
  } else {
48
+ //use fopen if no curl
49
+ $urlParsed=parse_url(substr($STATIC['JOBRUNURL'],0,-11).'wp_export_generate.php');
50
+ if ($urlParsed['scheme'] == 'https') {
51
+ $host = 'ssl://' . $urlParsed['host'];
52
+ $port = (!empty($urlParsed['port'])) ? $urlParsed['port'] : 443;
53
+ } else {
54
+ $host = $urlParsed['host'];
55
+ $port = (!empty($urlParsed['port'])) ? $urlParsed['port'] : 80;
56
+ }
57
+ $query=http_build_query(array('BackWPupJobTemp'=>$STATIC['TEMPDIR'],'nonce'=>$WORKING['NONCE'],'type'=>'getxmlexport'));
58
+ $path=(isset($urlParsed['path']) ? $urlParsed['path'] : '/').(isset($urlParsed['query']) ? '?' . $urlParsed['query'] : '');
59
+ $header = "POST ".$path." HTTP/1.1\r\n";
60
+ $header.= "Host: ".$urlParsed['host']."\r\n";
61
+ $header.= "User-Agent: BackWPup\r\n";
62
+ $header.= "Content-Type: application/x-www-form-urlencoded\r\n";
63
+ $header.= "Content-Length: ".strlen($query)."\r\n";
64
+ if (!empty($STATIC['CFG']['httpauthuser']) and !empty($STATIC['CFG']['httpauthpassword']))
65
+ $header.= "Authorization: Basic ".base64_encode($STATIC['CFG']['httpauthuser'].':'.base64_decode($STATIC['CFG']['httpauthpassword']))."\r\n";
66
+ $header.= "Connection: Close\r\n\r\n";
67
+ $header.=$query;
68
+ $fp=fsockopen($host, $port, $errno, $errstr, 300);
69
+ fwrite($fp,$header);
70
+ $responseHeader='';
71
+ do {
72
+ $responseHeader.= fread($fp, 1);
73
+ } while (!preg_match('/\\r\\n\\r\\n$/', $responseHeader));
74
+ while (!feof($fp)) {
75
+ update_working_file();
76
+ file_put_contents($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml', fgets($fp, 256), FILE_APPEND);
77
+ }
78
+ fclose($fp);
79
  }
 
80
  //add XML file to backupfiles
81
  if (is_readable($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml')) {
82
  $filestat=stat($STATIC['TEMPDIR'].preg_replace( '/[^a-z0-9_\-]/', '', strtolower($STATIC['WP']['BLOGNAME'])).'.wordpress.'.date( 'Y-m-d' ).'.xml');
lang/backwpup-de_DE.mo CHANGED
Binary file
lang/backwpup-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: BackWPup 2.0 Branch\n"
4
  "Report-Msgid-Bugs-To: http://backwpup.com/forum/\n"
5
  "POT-Creation-Date: 2010-06-23 17:08+0000\n"
6
- "PO-Revision-Date: 2011-07-23 21:12+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,287 +19,287 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ backwpup
22
- #: job/job_functions.php:280
23
  msgid "[WARNING]"
24
  msgstr "[WARNUNG]"
25
 
26
  #@ backwpup
27
- #: job/job_functions.php:286
28
  msgid "[ERROR]"
29
  msgstr "[FEHLER]"
30
 
31
  #@ backwpup
32
- #: job/job_functions.php:290
33
  msgid "[DEPRECATED]"
34
  msgstr "[VERALTET]"
35
 
36
  #@ backwpup
37
- #: job/job_functions.php:293
38
  msgid "[STRICT NOTICE]"
39
  msgstr "[STRENGER HINWEIS]"
40
 
41
  #@ backwpup
42
- #: job/job_functions.php:296
43
  msgid "[RECOVERABLE ERROR]"
44
  msgstr "[L&Ouml;SBARER FEHLER]"
45
 
46
  #@ backwpup
47
- #: job/job_functions.php:134
48
  #, php-format
49
  msgid "Memory increased from %1$s to %2$s"
50
  msgstr "Speicher(limit) erh&ouml;ht von %1$s auf %2$s"
51
 
52
  #@ backwpup
53
- #: job/db_check.php:28
54
- #: job/db_check.php:30
55
- #: job/db_check.php:32
56
  #, php-format
57
  msgid "Result of table check for %1$s is: %2$s"
58
  msgstr "Ergebnis f&uuml;r den Tabellencheck f&uuml;r %1$s, ist %2$s"
59
 
60
  #@ backwpup
61
- #: pages/tools/db_restore.php:70
62
- #: pages/tools/db_restore.php:81
63
- #: pages/tools/db_restore.php:84
64
- #: pages/tools/db_restore.php:87
65
- #: pages/tools/db_restore.php:92
66
  #, php-format
67
  msgid "BackWPup database error %1$s for query %2$s"
68
  msgstr "BackWPup-Datenbankfehler %1$s f&uuml;r die Anfrage %2$s"
69
 
70
  #@ backwpup
71
- #: job/db_check.php:43
72
- #: job/db_check.php:45
73
- #: job/db_check.php:47
74
  #, php-format
75
  msgid "Result of table repair for %1$s is: %2$s"
76
  msgstr "Ergebnis der Tabellenreparatur f&uuml;r %1$s ist: %2$s"
77
 
78
  #@ backwpup
79
- #: job/db_check.php:53
80
  msgid "Database check done!"
81
  msgstr "Datenbank-Check fertig!"
82
 
83
  #@ backwpup
84
- #: job/db_optimize.php:28
85
- #: job/db_optimize.php:30
86
- #: job/db_optimize.php:32
87
  #, php-format
88
  msgid "Result of table optimize for %1$s is: %2$s"
89
  msgstr "Ergebnis der Tabellenoptimierung f&uuml;r %1$s ist: %2$s"
90
 
91
  #@ backwpup
92
- #: job/db_optimize.php:34
93
  msgid "Database optimize done!"
94
  msgstr "Datenbankoptimierung fertig!"
95
 
96
  #@ backwpup
97
- #: job/dest_ftp.php:68
98
  msgid "Can not Entering Passive Mode"
99
  msgstr "Einstieg in den passiven Modus nicht m&ouml;glich"
100
 
101
  #@ backwpup
102
- #: job/dest_mail.php:28
103
  msgid "Send mail with SMTP"
104
  msgstr "E-Mail senden mit SMTP"
105
 
106
  #@ backwpup
107
- #: job/dest_mail.php:32
108
  msgid "Send mail with Sendmail"
109
  msgstr "E-Mail senden mit Sendmail"
110
 
111
  #@ backwpup
112
- #: job/dest_mail.php:35
113
  msgid "Send mail with PHP mail"
114
  msgstr "E-Mail senden mit PHP mail"
115
 
116
  #@ backwpup
117
- #: job/dest_mail.php:38
118
  msgid "Creating mail"
119
  msgstr "E-Mail erstellen"
120
 
121
  #@ backwpup
122
- #: job/dest_mail.php:61
123
  msgid "Send mail...."
124
  msgstr "E-Mail wird gesendet ..."
125
 
126
  #@ backwpup
127
- #: job/dest_mail.php:67
128
  msgid "Mail send!!!"
129
  msgstr "E-Mail wurde gesendet!!!"
130
 
131
  #@ backwpup
132
- #: pages/page_backwpupworking.php:35
133
  msgid "Errors:"
134
  msgstr "Fehler:"
135
 
136
  #@ backwpup
137
- #: pages/page_backwpupworking.php:31
138
  msgid "Warnings:"
139
  msgstr "Warnungen:"
140
 
141
  #@ backwpup
142
  #@ textdomain
143
  #. translators: plugin header field 'Name'
144
- #: backwpup-functions.php:10
145
- #: backwpup-functions.php:264
146
- #: backwpup-functions.php:484
147
  #: backwpup.php:0
148
  msgid "BackWPup"
149
  msgstr "BackWPup"
150
 
151
  #@ backwpup
152
- #: pages/func_backwpuplogs.php:86
153
  msgid "Job"
154
  msgstr "Auftrag"
155
 
156
  #@ backwpup
157
- #: pages/func_backwpup.php:63
158
- #: pages/func_backwpupeditjob.php:177
159
- #: pages/func_backwpuplogs.php:87
160
  msgid "Type"
161
  msgstr "Typ"
162
 
163
  #@ backwpup
164
- #: pages/func_backwpuplogs.php:88
165
  msgid "Backup/Log Date/Time"
166
  msgstr "Datensicherung/Protokoll Datum/Zeit"
167
 
168
  #@ backwpup
169
- #: pages/func_backwpuplogs.php:89
170
  msgid "Status"
171
  msgstr "Status"
172
 
173
  #@ backwpup
174
- #: pages/func_backwpupbackups.php:190
175
- #: pages/func_backwpuplogs.php:90
176
  msgid "Size"
177
  msgstr "Gr&ouml;&szlig;e"
178
 
179
  #@ backwpup
180
- #: pages/func_backwpuplogs.php:91
181
  msgid "Runtime"
182
  msgstr "Laufzeit"
183
 
184
  #@ backwpup
185
- #: pages/func_backwpup.php:61
186
  msgid "ID"
187
  msgstr "ID"
188
 
189
  #@ backwpup
190
- #: pages/func_backwpup.php:62
191
  msgid "Job Name"
192
  msgstr "Auftragsname"
193
 
194
  #@ backwpup
195
- #: pages/func_backwpup.php:65
196
  msgid "Next Run"
197
  msgstr "N&auml;chster Durchlauf"
198
 
199
  #@ backwpup
200
- #: pages/func_backwpup.php:66
201
  msgid "Last Run"
202
  msgstr "Letzter Durchlauf"
203
 
204
  #@ backwpup
205
- #: backwpup-functions.php:101
206
- #: backwpup-functions.php:256
207
  msgid "Support"
208
  msgstr "Hilfe + Unterst&uuml;tzung (Support)"
209
 
210
  #@ backwpup
211
- #: backwpup-functions.php:102
212
- #: backwpup-functions.php:255
213
  msgid "FAQ"
214
  msgstr "FAQ"
215
 
216
  #@ backwpup
217
- #: backwpup-functions.php:103
218
  msgid "Plugin Homepage"
219
  msgstr "Plugin Homepage"
220
 
221
  #@ backwpup
222
- #: backwpup-functions.php:105
223
- #: backwpup-functions.php:257
224
  msgid "Donate"
225
  msgstr "Spenden"
226
 
227
  #@ backwpup
228
- #: backwpup-functions.php:245
229
  msgid "Go to Settings Page"
230
  msgstr "Gehe zur Einstellungsseite"
231
 
232
  #@ backwpup
233
- #: backwpup-functions.php:23
234
- #: backwpup-functions.php:245
235
  msgid "Settings"
236
  msgstr "Einstellungen"
237
 
238
  #@ backwpup
239
- #: backwpup-functions.php:316
240
  msgid "WP XML Export"
241
  msgstr "WP XML Export"
242
 
243
  #@ backwpup
244
- #: backwpup-functions.php:322
245
  msgid "Database Backup"
246
  msgstr "Datenbank-Sicherung"
247
 
248
  #@ backwpup
249
- #: backwpup-functions.php:319
250
  #: pages/page_backwpupeditjob.php:78
251
  msgid "File Backup"
252
  msgstr "Dateien-Sicherung"
253
 
254
  #@ backwpup
255
- #: backwpup-functions.php:325
256
  msgid "Optimize Database Tables"
257
  msgstr "Datenbanktabellen optimieren"
258
 
259
  #@ backwpup
260
- #: backwpup-functions.php:328
261
  msgid "Check Database Tables"
262
  msgstr "Datenbanktabellen checken"
263
 
264
  #@ backwpup
265
- #: backwpup-functions.php:407
266
- #: backwpup-functions.php:437
267
- #: backwpup-functions.php:465
268
- #: pages/page_backwpupsettings.php:61
269
  msgid "none"
270
  msgstr "nichts"
271
 
272
  #@ backwpup
273
- #: backwpup-functions.php:458
274
  msgid "Edit Job"
275
  msgstr "Auftrag bearbeiten"
276
 
277
  #@ backwpup
278
- #: pages/func_backwpup.php:134
279
  msgid "Running since:"
280
  msgstr "L&auml;uft seit:"
281
 
282
  #@ backwpup
283
- #: pages/func_backwpup.php:134
284
- #: pages/func_backwpup.php:150
285
- #: pages/func_backwpuplogs.php:159
286
- #: pages/page_backwpupsettings.php:127
287
- #: pages/page_backwpupsettings.php:133
288
  msgid "sec."
289
  msgstr "Sek."
290
 
291
  #@ backwpup
292
- #: pages/page_backwpupeditjob.php:29
293
  msgid "BackWPup Job Settings"
294
  msgstr "BackWPup Auftragseinstellungen"
295
 
296
  #@ backwpup
297
- #: pages/page_backwpupeditjob.php:11
298
  msgid "Job Type"
299
  msgstr "Auftrags-Typ"
300
 
301
  #@ backwpup
302
- #: pages/func_backwpupeditjob.php:31
303
  msgid ""
304
  "You are about to delete this Job. \n"
305
  " 'Cancel' to stop, 'OK' to delete."
@@ -309,94 +309,94 @@ msgstr ""
309
 
310
  #@ default
311
  #@ backwpup
312
- #: pages/func_backwpup.php:53
313
- #: pages/func_backwpup.php:109
314
- #: pages/func_backwpupbackups.php:136
315
- #: pages/func_backwpupbackups.php:233
316
- #: pages/func_backwpupeditjob.php:31
317
- #: pages/func_backwpuplogs.php:79
318
- #: pages/func_backwpuplogs.php:133
319
  msgid "Delete"
320
  msgstr "L&ouml;schen"
321
 
322
  #@ backwpup
323
- #: pages/func_backwpupeditjob.php:14
324
- #: pages/func_backwpupeditjob.php:34
325
  msgid "Save Changes"
326
  msgstr "&Auml;nderungen speichern"
327
 
328
  #@ backwpup
329
- #: pages/page_backwpupeditjob.php:12
330
  msgid "Job Schedule"
331
  msgstr "Auftragsplanung"
332
 
333
  #@ backwpup
334
- #: pages/func_backwpupeditjob.php:97
335
  msgid "Activate scheduling"
336
  msgstr "Planung aktiv?"
337
 
338
  #@ backwpup
339
- #: pages/func_backwpupeditjob.php:141
340
  msgid "January"
341
  msgstr "Januar"
342
 
343
  #@ backwpup
344
- #: pages/func_backwpupeditjob.php:142
345
  msgid "February"
346
  msgstr "Februar"
347
 
348
  #@ backwpup
349
- #: pages/func_backwpupeditjob.php:143
350
  msgid "March"
351
  msgstr "M&auml;rz"
352
 
353
  #@ backwpup
354
- #: pages/func_backwpupeditjob.php:144
355
  msgid "April"
356
  msgstr "April"
357
 
358
  #@ backwpup
359
- #: pages/func_backwpupeditjob.php:145
360
  msgid "May"
361
  msgstr "Mai"
362
 
363
  #@ backwpup
364
- #: pages/func_backwpupeditjob.php:146
365
  msgid "June"
366
  msgstr "Juni"
367
 
368
  #@ backwpup
369
- #: pages/func_backwpupeditjob.php:147
370
  msgid "July"
371
  msgstr "Juli"
372
 
373
  #@ backwpup
374
- #: pages/func_backwpupeditjob.php:149
375
  msgid "September"
376
  msgstr "September"
377
 
378
  #@ backwpup
379
- #: pages/func_backwpupeditjob.php:150
380
  msgid "October"
381
  msgstr "Oktober"
382
 
383
  #@ backwpup
384
- #: pages/func_backwpupeditjob.php:151
385
  msgid "November"
386
  msgstr "November"
387
 
388
  #@ backwpup
389
- #: pages/func_backwpupeditjob.php:152
390
  msgid "December"
391
  msgstr "Dezember"
392
 
393
  #@ backwpup
394
- #: pages/header_backwpupeditjob.php:249
395
  msgid "Send log"
396
  msgstr "Sende Protokoll"
397
 
398
  #@ backwpup
399
- #: pages/func_backwpupeditjob.php:66
400
  msgid "E-Mail-Adress:"
401
  msgstr "E-Mail-Adresse:"
402
 
@@ -437,103 +437,105 @@ msgid "Exclude Files/Folders from Backup:"
437
  msgstr "Dateien/ Ordner von der Sicherung ausschlie&szlig;en:"
438
 
439
  #@ backwpup
440
- #: pages/func_backwpupeditjob.php:230
441
- #: pages/page_backwpupsettings.php:92
442
  msgid "(Oldest files will deleted first.)"
443
  msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
444
 
445
  #@ backwpup
446
- #: pages/header_backwpupeditjob.php:251
447
  msgid "Backup to FTP Server"
448
  msgstr "Datensicherung zum FTP-Server"
449
 
450
  #@ backwpup
451
- #: pages/func_backwpupeditjob.php:236
452
  msgid "Hostname:"
453
  msgstr "Hostname:"
454
 
455
  #@ backwpup
456
- #: pages/func_backwpupeditjob.php:240
457
- #: pages/func_backwpupeditjob.php:331
 
458
  msgid "Username:"
459
  msgstr "Benutzername:"
460
 
461
  #@ backwpup
462
- #: pages/func_backwpupeditjob.php:242
463
- #: pages/func_backwpupeditjob.php:388
 
464
  msgid "Password:"
465
  msgstr "Passwort:"
466
 
467
  #@ backwpup
468
- #: pages/header_backwpupeditjob.php:257
469
  msgid "Backup to Amazon S3"
470
  msgstr "Datensicherung zu Amazon S3"
471
 
472
  #@ backwpup
473
- #: pages/func_backwpupeditjob.php:256
474
  msgid "Access Key ID:"
475
  msgstr "Access Key ID (Zugangsschl&uuml;ssel-ID):"
476
 
477
  #@ backwpup
478
- #: pages/func_backwpupeditjob.php:258
479
  msgid "Secret Access Key:"
480
  msgstr "Secret Access Key (Geheimer Schl&uuml;ssel):"
481
 
482
  #@ backwpup
483
- #: pages/func_backwpupeditjob.php:260
484
- #: pages/func_backwpupeditjob.php:285
485
  msgid "Bucket:"
486
  msgstr "Bucket:"
487
 
488
  #@ backwpup
489
- #: pages/page_backwpupeditjob.php:14
490
  msgid "Backup to E-Mail"
491
  msgstr "Datensicherung via E-Mail"
492
 
493
  #@ backwpup
494
- #: pages/func_backwpupeditjob.php:409
495
  msgid "Max. File Size for sending Backups with mail:"
496
  msgstr "Maximale Dateigr&ouml;&szlig;e zum Senden von Datensicherungen via E-Mail:"
497
 
498
  #@ backwpup
499
- #: backwpup-functions.php:473
500
- #: pages/page_backwpuplogs.php:10
501
  msgid "BackWPup Logs"
502
  msgstr "BackWPup Protokolle"
503
 
504
  #@ backwpup
505
- #: backwpup-functions.php:11
506
- #: backwpup-functions.php:487
507
- #: pages/page_backwpupsettings.php:103
508
  msgid "Jobs"
509
  msgstr "Auftr&auml;ge"
510
 
511
  #@ backwpup
512
- #: backwpup-functions.php:17
513
- #: backwpup-functions.php:488
514
- #: pages/header_backwpupbackups.php:361
515
- #: pages/header_backwpuplogs.php:63
516
- #: pages/page_backwpupsettings.php:81
517
  msgid "Logs"
518
  msgstr "Protokolldateien"
519
 
520
  #@ backwpup
521
- #: backwpup-functions.php:21
522
  msgid "Tools"
523
  msgstr "Werkzeuge"
524
 
525
  #@ backwpup
526
- #: pages/func_backwpuplogs.php:130
527
  msgid "View log"
528
  msgstr "Protokoll ansehen"
529
 
530
  #@ backwpup
531
- #: pages/func_backwpuplogs.php:132
532
  msgid "View"
533
  msgstr "Ansehen"
534
 
535
  #@ backwpup
536
- #: pages/func_backwpuplogs.php:153
537
  msgid "only Log"
538
  msgstr "nur Protokoll"
539
 
@@ -543,286 +545,257 @@ msgid "Settings saved"
543
  msgstr "Einstellungen gespeichert"
544
 
545
  #@ backwpup
546
- #: pages/header_backwpup.php:37
547
  msgid "Copy of"
548
  msgstr "Kopie von"
549
 
550
  #@ backwpup
551
- #: pages/page_backwpupsettings.php:12
552
  msgid "BackWPup Settings"
553
  msgstr "BackWPup-Einstellungen"
554
 
555
  #@ backwpup
556
- #: pages/page_backwpupsettings.php:19
557
  msgid "Send Mail"
558
  msgstr "Send Mail"
559
 
560
  #@ backwpup
561
- #: pages/page_backwpupsettings.php:36
562
  msgid "PHP: mail()"
563
  msgstr "PHP: mail()"
564
 
565
  #@ backwpup
566
- #: pages/page_backwpupsettings.php:37
567
  msgid "Sendmail"
568
  msgstr "Sendmail"
569
 
570
  #@ backwpup
571
- #: pages/page_backwpupsettings.php:38
572
  msgid "SMTP"
573
  msgstr "SMTP"
574
 
575
  #@ backwpup
576
- #: pages/page_backwpupsettings.php:161
577
- #: pages/page_backwpupsettings.php:162
578
  msgid "Disable WP-Cron"
579
  msgstr "WP-Cron deaktivieren"
580
 
581
  #@ backwpup
582
- #: pages/page_backwpuptools.php:10
583
  msgid "BackWPup Tools"
584
  msgstr "BackWPup-Werkzeuge"
585
 
586
  #@ backwpup
587
- #: pages/page_backwpuptools.php:17
588
  msgid "Database restore"
589
  msgstr "Datenbank wiederherstellen"
590
 
591
  #@ backwpup
592
- #: pages/page_backwpuptools.php:23
593
- #: pages/page_backwpuptools.php:42
594
  msgid "Restore"
595
  msgstr "Wiederherstellen"
596
 
597
  #@ backwpup
598
- #: pages/page_backwpuptools.php:39
599
  msgid "SQL File to restore:"
600
  msgstr "SQL-Datei zur Wiederherstellung:"
601
 
602
  #@ backwpup
603
- #: backwpup-functions.php:13
604
- #: pages/page_backwpup.php:10
 
605
  msgid "Add New"
606
  msgstr "Neuer Auftrag"
607
 
608
  #@ backwpup
609
- #: pages/func_backwpup.php:103
610
  msgid "Edit:"
611
  msgstr "Bearbeiten:"
612
 
613
  #@ default
614
- #: pages/func_backwpup.php:106
615
  msgid "Edit"
616
  msgstr "Bearbeiten"
617
 
618
  #@ backwpup
619
- #: pages/func_backwpup.php:107
620
  msgid "Copy"
621
  msgstr "Kopieren"
622
 
623
  #@ backwpup
624
- #: pages/func_backwpup.php:110
625
  msgid "Run Now"
626
  msgstr "Jetzt starten"
627
 
628
  #@ backwpup
629
- #: pages/func_backwpup.php:138
630
  msgid "Inactive"
631
  msgstr "Inaktiv"
632
 
633
  #@ backwpup
634
- #: pages/func_backwpup.php:150
635
  msgid "Runtime:"
636
  msgstr "Laufzeit:"
637
 
638
  #@ backwpup
639
- #: pages/func_backwpup.php:152
640
  msgid "None"
641
  msgstr "Nichts"
642
 
643
  #@ backwpup
644
- #: pages/tools/db_restore.php:36
645
- #: pages/tools/db_restore.php:55
646
- #: pages/tools/db_restore.php:70
647
- #: pages/tools/db_restore.php:81
648
- #: pages/tools/db_restore.php:84
649
- #: pages/tools/db_restore.php:87
650
- #: pages/tools/db_restore.php:92
651
  msgid "ERROR:"
652
  msgstr "FEHLER:"
653
 
654
  #@ backwpup
655
- #: pages/tools/db_restore.php:36
656
  #, php-format
657
  msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
658
  msgstr "Bitte setzen Sie <i>$table_prefix = '%1$s';</i> innerhalb der Datei wp-config.php"
659
 
660
  #@ backwpup
661
- #: pages/tools/db_restore.php:55
662
  #, php-format
663
  msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
664
  msgstr "Bitte setzen Sie <i>define('DB_CHARSET', '%1$s');</i> in der Datei wp-config.php"
665
 
666
  #@ backwpup
667
- #: pages/tools/db_restore.php:76
668
  #, php-format
669
  msgid "%1$s Database Querys done."
670
  msgstr "%1$s Datenbankabfragen fertig."
671
 
672
  #@ backwpup
673
- #: pages/tools/db_restore.php:77
674
  msgid "Make changes for Blogurl and ABSPATH if needed."
675
  msgstr "Machen Sie &Auml;nderungen an der Blogurl und bei ABSPATH, falls notwendig."
676
 
677
  #@ backwpup
678
- #: pages/tools/db_restore.php:94
679
- msgid "Restore Done. Please delete the SQL file after Restore."
680
- msgstr "Wiederherstellung abgeschlossen. Bitte l&ouml;schen Sie die SQL-Datei nach der Wiederherstellung."
681
-
682
- #@ backwpup
683
- #: job/wp_export.php:33
684
- #: job/wp_export.php:35
685
  msgid "cURL:"
686
  msgstr "cURL:"
687
 
688
  #@ backwpup
689
- #: job/dest_rsc.php:19
690
  msgid "Connected to Rackspase ..."
691
  msgstr "Verbunden mit Rackspace ..."
692
 
693
  #@ backwpup
694
- #: job/dest_rsc.php:35
695
- #: job/dest_rsc.php:69
696
- #: job/dest_rsc.php:98
697
  msgid "Rackspase Cloud API:"
698
  msgstr "Rackspace Cloud API (Schnittstelle):"
699
 
700
  #@ backwpup
701
- #: job/dest_rsc.php:40
702
  msgid "Rackspase Cloud Container not exists:"
703
  msgstr "Rackspace Cloud Container existiert nicht:"
704
 
705
  #@ backwpup
706
- #: job/dest_rsc.php:63
707
  msgid "Backup File transferred to RSC://"
708
  msgstr "Datensicherungsdatei &uuml;bertragen zu RSC://"
709
 
710
  #@ backwpup
711
- #: job/dest_rsc.php:66
712
  msgid "Can not transfer backup to RSC."
713
  msgstr "Datensicherung kann nicht zu RSC &uuml;bertragen werden."
714
 
715
  #@ backwpup
716
- #: job/dest_rsc.php:91
717
  msgid "Can not delete file on RSC://"
718
  msgstr "Datei kann nicht gel&ouml;scht werden auf RSC://"
719
 
720
  #@ backwpup
721
- #: pages/page_backwpupbackups.php:10
722
  msgid "BackWPup Manage Backups"
723
  msgstr "BackWPup-Datensicherungen verwalten"
724
 
725
  #@ backwpup
726
- #: backwpup-functions.php:19
727
- #: backwpup-functions.php:489
728
  msgid "Backups"
729
  msgstr "Datensicherungen"
730
 
731
  #@ backwpup
732
- #: backwpup-functions.php:790
733
  msgid "New"
734
  msgstr "Neu"
735
 
736
  #@ backwpup
737
- #: pages/func_backwpupeditjob.php:500
738
- msgid "Missing Access Key ID!"
739
- msgstr "Access Key ID wird vermisst!"
740
-
741
- #@ backwpup
742
- #: pages/func_backwpupeditjob.php:507
743
- msgid "Missing Secret Access Key!"
744
- msgstr "Secret Access Key wird vermisst!"
745
-
746
- #@ backwpup
747
- #: pages/func_backwpupeditjob.php:617
748
- #: pages/func_backwpupeditjob.php:746
749
  msgid "Missing Username!"
750
  msgstr "Falscher Benutzername!"
751
 
752
  #@ backwpup
753
- #: pages/func_backwpupeditjob.php:624
754
  msgid "Missing API Key!"
755
  msgstr "API-Schl&uuml;ssel wird vermisst!"
756
 
757
  #@ backwpup
758
- #: pages/func_backwpupeditjob.php:645
759
  msgid "No Containerss found!"
760
  msgstr "Keine Container gefunden!"
761
 
762
  #@ backwpup
763
- #: backwpup-functions.php:723
764
- msgid "- Logs Folder not writeable:"
765
- msgstr "- Protokolldateien-Ordner ist nicht beschreibbar:"
766
-
767
- #@ backwpup
768
- #: backwpup-functions.php:732
769
- msgid "- Please Check Scheduling time for Job:"
770
- msgstr "- Bitte &uuml;berpr&uuml;fen Sie die Zeitplanung f&uuml;r den Auftrag (Scheduling):"
771
-
772
- #@ backwpup
773
- #: backwpup-functions.php:737
774
- msgid "- WP-Cron don't working please check it!"
775
- msgstr "- WP-Cron arbeitet nicht, bitte &uuml;berpr&uuml;fen Sie die Funktion!"
776
-
777
- #@ backwpup
778
- #: pages/func_backwpup.php:47
779
  msgid "No Jobs."
780
  msgstr "Keine Auftr&auml;ge."
781
 
782
  #@ backwpup
783
- #: pages/func_backwpup.php:64
784
  msgid "Information"
785
  msgstr "Information"
786
 
787
  #@ backwpup
788
- #: pages/func_backwpup.php:253
789
  msgid "Files Size:"
790
  msgstr "Gr&ouml;&szlig;e der Dateien:"
791
 
792
  #@ backwpup
793
- #: pages/func_backwpup.php:255
794
  msgid "Files count:"
795
  msgstr "Dateiz&auml;hler:"
796
 
797
  #@ backwpup
798
- #: pages/func_backwpup.php:247
799
  msgid "DB Tables:"
800
  msgstr "Datenbank-Tabellen:"
801
 
802
  #@ backwpup
803
- #: pages/func_backwpup.php:248
804
  msgid "DB Rows:"
805
  msgstr "Datenbank-Zeilen:"
806
 
807
  #@ backwpup
808
- #: pages/func_backwpup.php:141
809
  msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
810
  msgstr "<a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
811
 
812
  #@ backwpup
813
- #: pages/func_backwpuplogs.php:74
814
  msgid "No Logs."
815
  msgstr "Keine Protokolldateien."
816
 
817
  #@ backwpup
818
- #: pages/func_backwpup.php:155
819
- #: pages/func_backwpupbackups.php:234
820
- #: pages/func_backwpuplogs.php:134
821
  msgid "Download"
822
  msgstr "Herunterladen"
823
 
824
  #@ backwpup
825
- #: pages/func_backwpupbackups.php:233
826
  msgid ""
827
  "You are about to delete this Backup Archive. \n"
828
  " 'Cancel' to stop, 'OK' to delete."
@@ -831,121 +804,121 @@ msgstr ""
831
  " 'Abbrechen' um zu stoppen, 'OK' um zu l&ouml;schen."
832
 
833
  #@ backwpup
834
- #: pages/func_backwpupbackups.php:248
835
  msgid "?"
836
  msgstr "?"
837
 
838
  #@ backwpup
839
- #: pages/func_backwpupeditjob.php:103
840
  msgid "Minutes: "
841
  msgstr "Minuten: "
842
 
843
  #@ backwpup
844
- #: pages/func_backwpupeditjob.php:105
845
- #: pages/func_backwpupeditjob.php:117
846
- #: pages/func_backwpupeditjob.php:128
847
- #: pages/func_backwpupeditjob.php:139
848
- #: pages/func_backwpupeditjob.php:159
849
  msgid "Any (*)"
850
  msgstr "Alle (*)"
851
 
852
  #@ backwpup
853
- #: pages/func_backwpupeditjob.php:114
854
  msgid "Hours:"
855
  msgstr "Stunden:"
856
 
857
  #@ backwpup
858
- #: pages/func_backwpupeditjob.php:148
859
  msgid "Augest"
860
  msgstr "August"
861
 
862
  #@ backwpup
863
- #: pages/func_backwpupeditjob.php:161
864
- #: pages/func_backwpupeditjob.php:197
865
  msgid "Sunday"
866
  msgstr "Sonntag"
867
 
868
  #@ backwpup
869
- #: pages/func_backwpupeditjob.php:162
870
- #: pages/func_backwpupeditjob.php:198
871
  msgid "Monday"
872
  msgstr "Montag"
873
 
874
  #@ backwpup
875
- #: pages/func_backwpupeditjob.php:163
876
- #: pages/func_backwpupeditjob.php:199
877
  msgid "Tuesday"
878
  msgstr "Dienstag"
879
 
880
  #@ backwpup
881
- #: pages/func_backwpupeditjob.php:164
882
- #: pages/func_backwpupeditjob.php:200
883
  msgid "Wednesday"
884
  msgstr "Mittwoch"
885
 
886
  #@ backwpup
887
- #: pages/func_backwpupeditjob.php:165
888
- #: pages/func_backwpupeditjob.php:201
889
  msgid "Thursday"
890
  msgstr "Donnerstag"
891
 
892
  #@ backwpup
893
- #: pages/func_backwpupeditjob.php:166
894
- #: pages/func_backwpupeditjob.php:202
895
  msgid "Friday"
896
  msgstr "Freitag"
897
 
898
  #@ backwpup
899
- #: pages/func_backwpupeditjob.php:167
900
- #: pages/func_backwpupeditjob.php:203
901
  msgid "Saturday"
902
  msgstr "Samstag"
903
 
904
  #@ backwpup
905
- #: pages/func_backwpupeditjob.php:456
906
  msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
907
  msgstr "Arbeiten nach der <a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>-Auftragsplanung:"
908
 
909
  #@ backwpup
910
- #: pages/func_backwpupeditjob.php:474
911
  msgid "Next runtime:"
912
  msgstr "N&auml;chster Durchlauf:"
913
 
914
  #@ backwpup
915
- #: pages/header_backwpupeditjob.php:248
916
  msgid "Backup File"
917
  msgstr "Datensicherungsdatei"
918
 
919
  #@ backwpup
920
- #: pages/func_backwpupeditjob.php:44
921
  msgid "File Prefix:"
922
  msgstr "Datei-Vorsilbe:"
923
 
924
  #@ backwpup
925
- #: pages/func_backwpupeditjob.php:46
926
  msgid "File Formart:"
927
  msgstr "Dateiformat:"
928
 
929
  #@ backwpup
930
- #: pages/func_backwpupeditjob.php:49
931
- #: pages/func_backwpupeditjob.php:51
932
  msgid "Zip"
933
  msgstr "Zip"
934
 
935
  #@ backwpup
936
- #: pages/func_backwpupeditjob.php:52
937
  msgid "Tar"
938
  msgstr "Tar"
939
 
940
  #@ backwpup
941
- #: pages/func_backwpupeditjob.php:54
942
- #: pages/func_backwpupeditjob.php:56
943
  msgid "Tar GZip"
944
  msgstr "Tar GZip"
945
 
946
  #@ backwpup
947
- #: pages/func_backwpupeditjob.php:58
948
- #: pages/func_backwpupeditjob.php:60
949
  msgid "Tar BZip2"
950
  msgstr "Tar BZip2"
951
 
@@ -984,80 +957,80 @@ msgid "Blog Uploads"
984
  msgstr "Blog-Uploads"
985
 
986
  #@ backwpup
987
- #: pages/func_backwpupeditjob.php:263
988
  msgid "Bucket Region"
989
  msgstr "Bucket Region"
990
 
991
  #@ backwpup
992
- #: pages/func_backwpupeditjob.php:267
993
  msgid "Save Backups with reduced redundancy!"
994
  msgstr "Sichere Datensicherungen mit reduzierter Redundanz!"
995
 
996
  #@ backwpup
997
- #: pages/header_backwpupeditjob.php:263
998
  msgid "Backup to Rackspace Cloud"
999
  msgstr "Datensicherung in die Rackspace Cloud"
1000
 
1001
  #@ backwpup
1002
- #: pages/func_backwpupeditjob.php:333
1003
  msgid "API Key:"
1004
  msgstr "API-Schl&uuml;ssel"
1005
 
1006
  #@ backwpup
1007
- #: pages/func_backwpupeditjob.php:312
1008
- #: pages/func_backwpupeditjob.php:335
1009
  msgid "Container:"
1010
  msgstr "Container:"
1011
 
1012
  #@ backwpup
1013
- #: pages/func_backwpupeditjob.php:315
1014
- #: pages/func_backwpupeditjob.php:338
1015
  msgid "Create Container:"
1016
  msgstr "Erstelle Container:"
1017
 
1018
  #@ backwpup
1019
- #: pages/header_backwpupeditjob.php:236
1020
  #, php-format
1021
  msgid "Job '%1' changes saved."
1022
  msgstr "Auftrag '%1' Ver&auml;nderungen gepeichert."
1023
 
1024
  #@ backwpup
1025
- #: pages/header_backwpupeditjob.php:236
1026
  msgid "Jobs overview."
1027
  msgstr "Auftrags&uuml;berblick"
1028
 
1029
  #@ backwpup
1030
- #: pages/func_backwpupeditjob.php:249
1031
  msgid "Use FTP Passiv mode."
1032
  msgstr "FTP-Passiv-Modus benutzen."
1033
 
1034
  #@ backwpup
1035
- #: job/dest_ftp.php:66
1036
  msgid "Entering Passive Mode"
1037
  msgstr "Passivmodus wird betreten"
1038
 
1039
  #@ backwpup
1040
- #: job/dest_ftp.php:71
1041
  msgid "Entering Normal Mode"
1042
  msgstr "Normalmodus wird betreten"
1043
 
1044
  #@ backwpup
1045
- #: job/dest_ftp.php:73
1046
  msgid "Can not Entering Normal Mode"
1047
  msgstr "Normalmodus kann nicht betreten werden"
1048
 
1049
  #@ backwpup
1050
- #: job/dest_ftp.php:81
1051
  msgid "Error getting SYSTYPE"
1052
  msgstr "Fehler, SYSTYPE wird angezeigt"
1053
 
1054
  #@ backwpup
1055
- #: pages/func_backwpupeditjob.php:248
1056
  msgid "Use SSL-FTP Connection."
1057
  msgstr "Benutze SSL-FTP-Verbindung."
1058
 
1059
  #@ backwpup
1060
- #: pages/header_backwpupeditjob.php:253
1061
  msgid "Backup to Dropbox"
1062
  msgstr "Datensicherung in die Dropbox"
1063
 
@@ -1075,174 +1048,173 @@ msgstr "http://danielhuesken.de/"
1075
 
1076
  #@ default
1077
  #@ backwpup
1078
- #: pages/func_backwpup.php:52
1079
- #: pages/func_backwpup.php:108
1080
  msgid "Export"
1081
  msgstr "Export"
1082
 
1083
  #@ backwpup
1084
- #: pages/func_backwpup.php:155
1085
  msgid "Download last Backup"
1086
  msgstr "Letzte Datensicherung herunterladen"
1087
 
1088
  #@ backwpup
1089
- #: pages/func_backwpup.php:157
1090
  msgid "View last Log"
1091
  msgstr "Letztes Protokoll ansehen"
1092
 
1093
  #@ backwpup
1094
- #: pages/func_backwpup.php:157
1095
  msgid "Log"
1096
  msgstr "Protokoll"
1097
 
1098
  #@ backwpup
1099
- #: pages/func_backwpupeditjob.php:263
1100
  msgid "US-East (Northern Virginia)"
1101
  msgstr "US-Ost (Nord-Virginia)"
1102
 
1103
  #@ backwpup
1104
- #: pages/func_backwpupeditjob.php:263
1105
  msgid "US-West (Northern California)"
1106
  msgstr "US-West (Nordkalifornien)"
1107
 
1108
  #@ backwpup
1109
- #: pages/func_backwpupeditjob.php:263
1110
  msgid "EU (Ireland)"
1111
  msgstr "EU (Irland)"
1112
 
1113
  #@ backwpup
1114
- #: pages/func_backwpupeditjob.php:263
1115
  msgid "Asia Pacific (Singapore)"
1116
  msgstr "Asien/ Pazifik (Singapur)"
1117
 
1118
  #@ backwpup
1119
- #: pages/page_backwpupsettings.php:99
1120
  msgid "Gzip Log files!"
1121
  msgstr "Gzip Protokolldateien!"
1122
 
1123
  #@ backwpup
1124
- #: pages/page_backwpuptools.php:53
1125
  msgid "Import Jobs settings"
1126
  msgstr "Auftrags-Import-Einstellungen"
1127
 
1128
  #@ backwpup
1129
- #: pages/page_backwpuptools.php:58
1130
- #: pages/page_backwpuptools.php:63
1131
  msgid "Upload"
1132
  msgstr "Hochladen"
1133
 
1134
  #@ backwpup
1135
- #: pages/page_backwpuptools.php:68
1136
  msgid "Import Type"
1137
  msgstr "Import-Typ"
1138
 
1139
  #@ backwpup
1140
- #: pages/page_backwpuptools.php:68
1141
  msgid "No Import"
1142
  msgstr "Kein Import"
1143
 
1144
  #@ backwpup
1145
- #: pages/page_backwpuptools.php:70
1146
  msgid "Overwrite"
1147
  msgstr "&Uuml;berschreiben"
1148
 
1149
  #@ backwpup
1150
- #: pages/page_backwpuptools.php:70
1151
  msgid "Append"
1152
  msgstr "Anh&auml;ngen"
1153
 
1154
  #@ backwpup
1155
- #: pages/page_backwpuptools.php:72
 
1156
  #: pages/page_backwpuptools.php:77
1157
- #: pages/page_backwpuptools.php:79
1158
- #: pages/page_backwpuptools.php:80
1159
  msgid "Import"
1160
  msgstr "Import"
1161
 
1162
  #@ backwpup
1163
- #: pages/page_backwpuptools.php:116
1164
  msgid "Jobs imported!"
1165
  msgstr "Auftr&auml;ge importiert!"
1166
 
1167
  #@ backwpup
1168
- #: pages/func_backwpupeditjob.php:680
1169
  msgid "Missing Hostname!"
1170
  msgstr "Hostname (Server) nicht angegeben!"
1171
 
1172
  #@ backwpup
1173
- #: pages/func_backwpupeditjob.php:687
1174
  msgid "Missing Account Name!"
1175
  msgstr "Kontoname (Benutzername) nicht angegeben!"
1176
 
1177
  #@ backwpup
1178
- #: pages/func_backwpupeditjob.php:558
1179
- #: pages/func_backwpupeditjob.php:694
1180
  msgid "Missing Access Key!"
1181
  msgstr "Zugangsschl&uuml;ssel (Access Key) nicht angegeben!"
1182
 
1183
  #@ backwpup
1184
- #: pages/func_backwpupeditjob.php:711
1185
  msgid "No Container found!"
1186
  msgstr "Kein Container gefunden!"
1187
 
1188
  #@ backwpup
1189
- #: pages/func_backwpupeditjob.php:263
1190
  msgid "Asia Pacific (Japan)"
1191
  msgstr "Asien Pazifik (Japan)"
1192
 
1193
  #@ backwpup
1194
- #: pages/header_backwpupeditjob.php:261
1195
  msgid "Backup to Micosoft Azure (Blob)"
1196
  msgstr "Datensicherung zu Microsoft Azure (Blob)"
1197
 
1198
  #@ backwpup
1199
- #: pages/func_backwpupeditjob.php:306
1200
  msgid "Host:"
1201
  msgstr "Host (Server):"
1202
 
1203
  #@ backwpup
1204
- #: pages/func_backwpupeditjob.php:307
1205
  msgid "Normely: blob.core.windows.net"
1206
  msgstr "Normalerweise: blob.core.windows.net"
1207
 
1208
  #@ backwpup
1209
- #: pages/func_backwpupeditjob.php:308
1210
  msgid "Account Name:"
1211
  msgstr "Kontoname/ Benutzername:"
1212
 
1213
  #@ backwpup
1214
- #: pages/func_backwpupeditjob.php:281
1215
- #: pages/func_backwpupeditjob.php:310
1216
  msgid "Access Key:"
1217
  msgstr "Zugangsschl&uuml;ssel (Access Key):"
1218
 
1219
  #@ backwpup
1220
- #: pages/func_backwpupeditjob.php:270
1221
- #: pages/func_backwpupeditjob.php:294
1222
- #: pages/func_backwpupeditjob.php:321
1223
- #: pages/func_backwpupeditjob.php:344
1224
- #: pages/func_backwpupeditjob.php:376
1225
- #: pages/func_backwpupeditjob.php:398
1226
  msgid "Create Account"
1227
  msgstr "Konto erstellen"
1228
 
1229
  #@ backwpup
1230
- #: job/dest_dropbox.php:38
1231
  msgid "No free space left on DropBox!!!"
1232
  msgstr "Kein freier Speicherplatz mehr &uuml;brig auf Dropbox!!!"
1233
 
1234
  #@ backwpup
1235
- #: pages/func_backwpupeditjob.php:126
1236
  msgid "Day of Month:"
1237
  msgstr "Tag des Monats:"
1238
 
1239
  #@ backwpup
1240
- #: pages/func_backwpupeditjob.php:157
1241
  msgid "Day of Week:"
1242
  msgstr "Wochentag:"
1243
 
1244
  #@ backwpup
1245
- #: pages/func_backwpupeditjob.php:68
1246
  msgid "Only send an e-mail if there are errors."
1247
  msgstr "Eine E-Mail nur senden, wenn Fehler auftraten."
1248
 
@@ -1252,121 +1224,101 @@ msgid "Use short INSERTs instead of full (with keys)"
1252
  msgstr "Kurze INSERTs benutzen, statt kompletter (mit Schl&uuml;ssel)"
1253
 
1254
  #@ backwpup
1255
- #: pages/func_backwpupeditjob.php:247
1256
- #: pages/func_backwpupeditjob.php:266
1257
- #: pages/func_backwpupeditjob.php:291
1258
- #: pages/func_backwpupeditjob.php:318
1259
- #: pages/func_backwpupeditjob.php:341
1260
- #: pages/func_backwpupeditjob.php:373
1261
- #: pages/func_backwpupeditjob.php:395
1262
  msgid "(Oldest files will be deleted first.)"
1263
  msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
1264
 
1265
  #@ backwpup
1266
- #: pages/func_backwpupeditjob.php:355
1267
  msgid "Login:"
1268
  msgstr "Login:"
1269
 
1270
  #@ backwpup
1271
- #: pages/func_backwpupeditjob.php:357
1272
  msgid "Not authenticated!"
1273
  msgstr "Nicht authentifiziert!"
1274
 
1275
  #@ backwpup
1276
- #: pages/func_backwpupeditjob.php:357
1277
  msgid "Authenticate!"
1278
  msgstr "Authentifizieren!"
1279
 
1280
  #@ backwpup
1281
- #: pages/func_backwpupeditjob.php:359
1282
  msgid "Authenticated!"
1283
  msgstr "Authentifiziert!"
1284
 
1285
  #@ backwpup
1286
- #: pages/func_backwpupeditjob.php:359
1287
  msgid "Delete!"
1288
  msgstr "L&ouml;schen!"
1289
 
1290
  #@ backwpup
1291
- #: pages/func_backwpupeditjob.php:386
1292
- #: pages/func_backwpupeditjob.php:406
1293
  msgid "E-mail address:"
1294
  msgstr "E-Mail-Adresse:"
1295
 
1296
  #@ backwpup
1297
- #: pages/header_backwpupeditjob.php:212
1298
  msgid "Dropbox authentication deleted!"
1299
  msgstr "Dropbox-Authentifizierung gel&ouml;scht!"
1300
 
1301
  #@ backwpup
1302
- #: pages/page_backwpupsettings.php:164
1303
  msgid "Use your host's Cron Job and disable WP-Cron"
1304
  msgstr "Den Cron-Job Ihres Webhosters/ -Servers benutzen und WP-Cron deaktivieren"
1305
 
1306
  #@ backwpup
1307
- #: pages/page_backwpuptools.php:45
1308
- msgid "Copy SQL file to blog root folder to use for a restoration."
1309
- 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."
1310
-
1311
- #@ backwpup
1312
- #: backwpup-functions.php:720
1313
- msgid "- Logs Folder not exists:"
1314
- msgstr "- Der Protokolldateien-Ordner existiert nicht:"
1315
-
1316
- #@ backwpup
1317
- #: pages/header_backwpupeditjob.php:255
1318
  msgid "Backup to SugarSync"
1319
  msgstr "Datensicherung zu SugarSync"
1320
 
1321
  #@ backwpup
1322
- #: job/dest_sugarsync.php:25
1323
  msgid "No free space left on SugarSync!!!"
1324
  msgstr "Sie haben keinen freien Speicherplatz mehr &uuml;brig bei SugarSync!!!"
1325
 
1326
  #@ backwpup
1327
- #: pages/func_backwpupeditjob.php:366
1328
- #: pages/func_backwpupeditjob.php:390
1329
  msgid "Root:"
1330
  msgstr "Root:"
1331
 
1332
  #@ backwpup
1333
- #: pages/func_backwpupeditjob.php:753
1334
  msgid "Missing Password!"
1335
  msgstr "Passwort fehlt!"
1336
 
1337
  #@ backwpup
1338
- #: pages/func_backwpupeditjob.php:773
1339
  msgid "No Syncfolders found!"
1340
  msgstr "Keine Sync-Ordner gefunden!"
1341
 
1342
  #@ backwpup
1343
- #: pages/header_backwpupeditjob.php:26
1344
  msgid "Dropbox authentication complete!"
1345
  msgstr "Dropbox-Authentifizierung vollst&auml;ndig!"
1346
 
1347
  #@ backwpup
1348
- #: pages/header_backwpupeditjob.php:28
1349
- msgid "Wrong Token for Dropbox authentication reseved!"
1350
- msgstr "Falscher Token f&uuml;r Dropbox-Authentifizierung reserviert!"
1351
-
1352
- #@ backwpup
1353
- #: pages/header_backwpupeditjob.php:31
1354
- msgid "No Dropbox authentication reseved!"
1355
- msgstr "Keine Dropbox-Authentifizierung reserviert!"
1356
-
1357
- #@ backwpup
1358
- #: backwpup-functions.php:15
1359
  msgid "Working"
1360
  msgstr "In Bearbeitung"
1361
 
1362
  #@ backwpup
1363
- #: backwpup-functions.php:393
1364
  msgid "View Log:"
1365
  msgstr "Protokoll ansehen:"
1366
 
1367
  #@ backwpup
1368
- #: backwpup-functions.php:395
1369
- #: pages/func_backwpuplogs.php:141
1370
  #, php-format
1371
  msgid "%d ERROR"
1372
  msgid_plural "%d ERRORS"
@@ -1374,8 +1326,8 @@ msgstr[0] "%d FEHLER"
1374
  msgstr[1] "%d FEHLER"
1375
 
1376
  #@ backwpup
1377
- #: backwpup-functions.php:397
1378
- #: pages/func_backwpuplogs.php:143
1379
  #, php-format
1380
  msgid "%d WARNING"
1381
  msgid_plural "%d WARNINGS"
@@ -1383,183 +1335,173 @@ msgstr[0] "%d WARNUNG"
1383
  msgstr[1] "%d WARNUNGEN"
1384
 
1385
  #@ backwpup
1386
- #: backwpup-functions.php:399
1387
- #: pages/func_backwpuplogs.php:145
1388
  msgid "O.K."
1389
  msgstr "O.K."
1390
 
1391
  #@ backwpup
1392
- #: backwpup-functions.php:425
1393
  msgid "How many of the lastes logs would you like to display?"
1394
  msgstr "Wieviele der letzten Protokolle wollen Sie anzeigen lassen?"
1395
 
1396
  #@ backwpup
1397
- #: backwpup-functions.php:451
1398
  #, php-format
1399
  msgid "working since %d sec."
1400
  msgstr "in Arbeit seit %d Sek."
1401
 
1402
  #@ backwpup
1403
- #: backwpup-functions.php:452
1404
- #: pages/func_backwpup.php:113
1405
  msgid "View!"
1406
  msgstr "Ansehen!"
1407
 
1408
  #@ backwpup
1409
- #: backwpup-functions.php:453
1410
- #: pages/func_backwpup.php:114
1411
  msgid "Abort!"
1412
  msgstr "Abbrechen!"
1413
 
1414
  #@ backwpup
1415
- #: backwpup-functions.php:474
1416
  msgid "BackWPup Aktive Jobs"
1417
  msgstr "BackWPup aktive Auftr&auml;ge"
1418
 
1419
  #@ backwpup
1420
- #: backwpup-functions.php:713
1421
- msgid "- PHP 5.2.4 or higher needed!"
1422
- msgstr "- PHP 5.2.4 oder h&ouml;her ist erforderlich!"
1423
-
1424
- #@ backwpup
1425
- #: job/dest_ftp.php:99
1426
  msgid "Upload to FTP now started ... "
1427
  msgstr "Hochladen ins FTP-Verzeichnis hat begonnen ... "
1428
 
1429
  #@ backwpup
1430
- #: job/dest_rsc.php:10
1431
  msgid "Try to sending backup file to Rackspace Cloud..."
1432
  msgstr "Versuche Datensicherungsdatei an die Rackspace Cloud zu senden..."
1433
 
1434
  #@ backwpup
1435
- #: job/dest_rsc.php:59
1436
  msgid "Upload to RSC now started ... "
1437
  msgstr "Hochladen zu RSC hat begonnen ... "
1438
 
1439
  #@ backwpup
1440
- #: job/job_functions.php:512
1441
  msgid "To many restarts...."
1442
  msgstr "Zu viele Neustarts..."
1443
 
1444
  #@ backwpup
1445
- #: job/job_functions.php:549
1446
  msgid "Script stop! Will started again now!"
1447
  msgstr "Skript-Stop! Wird jetzt wieder neu gestartet!"
1448
 
1449
  #@ backwpup
1450
- #: job/job_start.php:22
1451
  msgid "A job already running!"
1452
  msgstr "Es l&auml;uft bereits ein Auftrag!"
1453
 
1454
  #@ backwpup
1455
- #: job/job_start.php:36
1456
  msgid "Temp dir not writeable"
1457
  msgstr "Temp-Verzeichnis nicht beschreibbar"
1458
 
1459
  #@ backwpup
1460
- #: job/job_start.php:149
1461
  msgid "Log folder not writeable!"
1462
  msgstr "Protokolldateien-Ordner nicht beschreibbar!"
1463
 
1464
  #@ backwpup
1465
- #: job/job_start.php:218
1466
  msgid "Backup folder not writeable!"
1467
  msgstr "Datensicherungs-Ordner nicht beschreibbar!"
1468
 
1469
  #@ backwpup
1470
- #: pages/func_backwpupbackups.php:131
1471
  msgid "No Files found."
1472
  msgstr "Keine Dateien gefunden."
1473
 
1474
  #@ backwpup
1475
- #: pages/func_backwpupbackups.php:151
1476
  msgid "Change Destination"
1477
  msgstr "Ziel &auml;ndern"
1478
 
1479
  #@ backwpup
1480
- #: pages/func_backwpupbackups.php:188
1481
  msgid "File"
1482
  msgstr "Datei"
1483
 
1484
  #@ backwpup
1485
- #: pages/func_backwpupbackups.php:189
1486
- #: pages/func_backwpupbackups.php:191
1487
  msgid "Folder"
1488
  msgstr "Ordner"
1489
 
1490
  #@ backwpup
1491
- #: pages/func_backwpupbackups.php:192
1492
  msgid "Time"
1493
  msgstr "Zeit"
1494
 
1495
  #@ backwpup
1496
- #: pages/func_backwpupbackups.php:505
1497
- #: pages/header_backwpupbackups.php:149
1498
  msgid "Login failure!"
1499
  msgstr "Anmeldung fehlgeschlagen!"
1500
 
1501
  #@ backwpup
1502
- #: pages/func_backwpupeditjob.php:137
1503
  msgid "Month:"
1504
  msgstr "Monat:"
1505
 
1506
  #@ backwpup
1507
- #: pages/func_backwpupeditjob.php:283
1508
  msgid "Secret:"
1509
  msgstr "Geheimnis (secret):"
1510
 
1511
  #@ backwpup
1512
- #: pages/func_backwpupeditjob.php:368
1513
  msgid "dropbox"
1514
  msgstr "dropbox"
1515
 
1516
  #@ backwpup
1517
- #: pages/func_backwpupeditjob.php:369
1518
  msgid "sandbox (disabled by DropBox)"
1519
  msgstr "sandbox (deaktiviert von Dropbox)"
1520
 
1521
  #@ backwpup
1522
- #: pages/func_backwpupeditjob.php:565
1523
- msgid "Missing Secret!"
1524
- msgstr "Geheimnis (secret) fehlt noch!"
1525
-
1526
- #@ backwpup
1527
- #: pages/header_backwpup.php:81
1528
  msgid "Job will be terminated."
1529
  msgstr "Auftrag wird beendet."
1530
 
1531
  #@ backwpup
1532
- #: pages/header_backwpup.php:84
1533
  msgid "Process killed with PID:"
1534
  msgstr "Prozess abgew&uuml;rgt mit PID:"
1535
 
1536
  #@ backwpup
1537
- #: pages/header_backwpup.php:99
1538
  msgid "Can't kill process with PID:"
1539
  msgstr "Prozess mit PID kann nicht abgew&uuml;rgt werden:"
1540
 
1541
  #@ backwpup
1542
- #: pages/header_backwpupeditjob.php:259
1543
  msgid "Backup to Google storage"
1544
  msgstr "Datensicherung zu Google Storage"
1545
 
1546
  #@ backwpup
1547
- #: pages/header_backwpupworking.php:14
1548
  msgid "A job alredy running!!! Pleace try again if its done."
1549
  msgstr "Ein Auftrag l&auml;uft gegenw&auml;rtig!!! Bitte versuchen Sie es noch einmal, wenn dieser abgeschlossen ist."
1550
 
1551
  #@ backwpup
1552
- #: pages/header_backwpupworking.php:26
1553
  msgid "A job is running!!!"
1554
  msgstr "Ein Auftr&auml;g l&auml;uft gegenw&auml;rtig!!!"
1555
 
1556
  #@ backwpup
1557
- #: pages/header_backwpupworking.php:30
1558
  msgid "Nothing..."
1559
  msgstr "Nichts derzeit ..."
1560
 
1561
  #@ backwpup
1562
- #: pages/page_backwpup.php:10
1563
  msgid "BackWPup Jobs"
1564
  msgstr "BackWPup Auftr&auml;ge"
1565
 
@@ -1569,108 +1511,93 @@ msgid "Database tables to use:"
1569
  msgstr "Datenbanktabellen, die benutzt werden:"
1570
 
1571
  #@ backwpup
1572
- #: pages/page_backwpupsettings.php:23
1573
  msgid "Sender email"
1574
  msgstr "Absender-E-Mail-Adresse"
1575
 
1576
  #@ backwpup
1577
- #: pages/page_backwpupsettings.php:28
1578
  msgid "Sender name"
1579
  msgstr "Absendername"
1580
 
1581
  #@ backwpup
1582
- #: pages/page_backwpupsettings.php:32
1583
  msgid "Send mail method"
1584
  msgstr "E-Mail-Versandmethode"
1585
 
1586
  #@ backwpup
1587
- #: pages/page_backwpupsettings.php:44
1588
  msgid "Sendmail path"
1589
  msgstr "Sendmail-Pfad"
1590
 
1591
  #@ backwpup
1592
- #: pages/page_backwpupsettings.php:51
1593
  msgid "SMTP hostname"
1594
  msgstr "SMTP Hostname"
1595
 
1596
  #@ backwpup
1597
- #: pages/page_backwpupsettings.php:58
1598
  msgid "SMTP secure connection"
1599
  msgstr "SMTP Sichere Verbindung"
1600
 
1601
  #@ backwpup
1602
- #: pages/page_backwpupsettings.php:68
1603
  msgid "SMTP username"
1604
  msgstr "SMTP-Benutzername"
1605
 
1606
  #@ backwpup
1607
- #: pages/page_backwpupsettings.php:74
1608
  msgid "SMTP password"
1609
  msgstr "SMTP-Passwort"
1610
 
1611
  #@ backwpup
1612
- #: pages/page_backwpupsettings.php:82
1613
- msgid "Here you can set Logfile related things."
1614
- msgstr "Hier k&ouml;nnen Sie alles zu den Protokolldateien einstellen."
1615
-
1616
- #@ backwpup
1617
- #: pages/page_backwpupsettings.php:85
1618
  msgid "Log file Folder"
1619
  msgstr "Protokolldateien-Ordner"
1620
 
1621
  #@ backwpup
1622
- #: pages/page_backwpupsettings.php:90
1623
  msgid "Max. Log Files in Folder"
1624
  msgstr "Max. Protokolldateien im Ordner"
1625
 
1626
  #@ backwpup
1627
- #: pages/page_backwpupsettings.php:96
1628
- #: pages/page_backwpupsettings.php:97
1629
  msgid "Compression"
1630
  msgstr "Komprimierung"
1631
 
1632
  #@ backwpup
1633
- #: pages/page_backwpupsettings.php:104
1634
- msgid "Here you can set Job related things."
1635
- msgstr "Hier k&ouml;nnen Sie auftragsbezogene Dinge einstellen."
1636
-
1637
- #@ backwpup
1638
- #: pages/page_backwpupsettings.php:107
1639
  msgid "Max. retrys for job steps"
1640
  msgstr "Max. Wiederholungsversuche f&uuml;r Abarbeitungsschritte bei Auftr&auml;gen"
1641
 
1642
  #@ backwpup
1643
- #: pages/page_backwpupsettings.php:112
1644
- msgid "Max. retrys for job script restarts"
1645
- msgstr "Max. Wiederholungsversuche f&uuml;r Neustarts des Auftrags-Skriptes"
1646
-
1647
- #@ backwpup
1648
- #: pages/page_backwpupsettings.php:157
1649
  msgid "WP-Cron"
1650
  msgstr "WP-Cron"
1651
 
1652
  #@ backwpup
1653
- #: pages/page_backwpuptools.php:20
1654
  msgid "DB Restore"
1655
  msgstr "DB-Wiederherstellung"
1656
 
1657
  #@ backwpup
1658
- #: pages/page_backwpuptools.php:56
1659
  msgid "Select file to import:"
1660
  msgstr "Datei zum Importieren ausw&auml;hlen:"
1661
 
1662
  #@ backwpup
1663
- #: pages/page_backwpuptools.php:64
1664
  msgid "Select jobs to import"
1665
  msgstr "Auftr&auml;ge zum Importieren ausw&auml;hlen"
1666
 
1667
  #@ backwpup
1668
- #: pages/page_backwpupworking.php:11
1669
  msgid "BackWPup Working"
1670
  msgstr "BackWPup arbeitet"
1671
 
1672
  #@ backwpup
1673
- #: backwpup-functions.php:486
1674
  msgid "See Working!"
1675
  msgstr "Siehe unter 'In Bearbeitung'!"
1676
 
@@ -1680,294 +1607,278 @@ msgid "BackWPup Job"
1680
  msgstr "BackWPup Auftrag"
1681
 
1682
  #@ backwpup
1683
- #: pages/page_backwpupsettings.php:145
1684
  msgid "WP Admin Bar"
1685
  msgstr "WordPress Adminbar"
1686
 
1687
  #@ backwpup
1688
- #: pages/page_backwpupsettings.php:149
1689
- #: pages/page_backwpupsettings.php:150
1690
  msgid "Admin Bar"
1691
  msgstr "Adminbar"
1692
 
1693
  #@ backwpup
1694
- #: pages/page_backwpupsettings.php:152
1695
  msgid "Show BackWPup Links in Admin Bar."
1696
  msgstr "BackWPup-Links in der Adminbar anzeigen."
1697
 
1698
  #@ backwpup
1699
- #: backwpup-functions.php:709
1700
- #, php-format
1701
- msgid "- WordPress %d or heiger needed!"
1702
- msgstr "- WordPress %d oder h&ouml;her erforderlich!"
1703
-
1704
- #@ backwpup
1705
- #: pages/func_backwpupeditjob.php:61
1706
  msgid "Preview:"
1707
  msgstr "Vorschau:"
1708
 
1709
  #@ backwpup
1710
- #: pages/func_backwpupeditjob.php:227
1711
  msgid "Full Path to folder for Backup Files:"
1712
  msgstr "Kompletter Pfad zum Ordner f&uuml;r Datensicherungsdateien:"
1713
 
1714
  #@ backwpup
1715
- #: pages/func_backwpupeditjob.php:229
1716
  msgid "Your WordPress dir is:"
1717
  msgstr "Ihr WordPress-Verzeichnis ist:"
1718
 
1719
  #@ backwpup
1720
- #: pages/func_backwpupeditjob.php:230
1721
- #: pages/func_backwpupeditjob.php:395
1722
  msgid "Max. backup files in folder:"
1723
  msgstr "Max. Anzahl von Dateien im Ordner:"
1724
 
1725
  #@ backwpup
1726
- #: pages/func_backwpupeditjob.php:244
1727
  msgid "Folder on Server:"
1728
  msgstr "Ordner auf dem Server:"
1729
 
1730
  #@ backwpup
1731
- #: pages/func_backwpupeditjob.php:247
1732
  msgid "Max. backup files in FTP folder:"
1733
  msgstr "Max. Anzahl von Dateien im FTP-Ordner:"
1734
 
1735
  #@ backwpup
1736
- #: pages/func_backwpupeditjob.php:263
1737
- #: pages/func_backwpupeditjob.php:288
1738
  msgid "Create bucket:"
1739
  msgstr "Bucket erstellen:"
1740
 
1741
  #@ backwpup
1742
- #: pages/func_backwpupeditjob.php:264
1743
- #: pages/func_backwpupeditjob.php:289
1744
  msgid "Folder in bucket:"
1745
  msgstr "Ordner im Bucket:"
1746
 
1747
  #@ backwpup
1748
- #: pages/func_backwpupeditjob.php:266
1749
- #: pages/func_backwpupeditjob.php:291
1750
  msgid "Max. backup files in bucket folder:"
1751
  msgstr "Max. Anzahl Datensicherungsdateien im Bucket-Ordner:"
1752
 
1753
  #@ backwpup
1754
- #: pages/func_backwpupeditjob.php:271
1755
- #: pages/func_backwpupeditjob.php:295
1756
  msgid "Find Keys"
1757
  msgstr "Schl&uuml;ssel (Keys) finden"
1758
 
1759
  #@ backwpup
1760
- #: pages/func_backwpupeditjob.php:272
1761
- #: pages/func_backwpupeditjob.php:296
1762
- #: pages/func_backwpupeditjob.php:346
1763
- #: pages/func_backwpupeditjob.php:377
1764
- #: pages/func_backwpupeditjob.php:399
1765
  msgid "Webinterface"
1766
  msgstr "Web-Oberfl&auml;che"
1767
 
1768
  #@ backwpup
1769
- #: pages/func_backwpupeditjob.php:316
1770
  msgid "Folder in Container:"
1771
  msgstr "Ordner im Container:"
1772
 
1773
  #@ backwpup
1774
- #: pages/func_backwpupeditjob.php:318
1775
- #: pages/func_backwpupeditjob.php:341
1776
  msgid "Max. backup files in container folder:"
1777
  msgstr "Max. Anzahl von Dateien im Container-Ordner:"
1778
 
1779
  #@ backwpup
1780
- #: pages/func_backwpupeditjob.php:322
1781
- #: pages/func_backwpupeditjob.php:345
1782
  msgid "Find Key"
1783
  msgstr "Schl&uuml;ssel (Key) finden"
1784
 
1785
  #@ backwpup
1786
- #: pages/func_backwpupeditjob.php:339
1787
  msgid "Folder in container:"
1788
  msgstr "Ordner im Container:"
1789
 
1790
  #@ backwpup
1791
- #: pages/func_backwpupeditjob.php:371
1792
- #: pages/func_backwpupeditjob.php:393
1793
  msgid "Folder:"
1794
  msgstr "Ordner:"
1795
 
1796
  #@ backwpup
1797
- #: pages/func_backwpupeditjob.php:373
1798
  msgid "Max. backup files in Dropbox folder:"
1799
  msgstr "Max. Anzahl von Dateien im Dropbox-Ordner:"
1800
 
1801
  #@ backwpup
1802
- #: pages/func_backwpupeditjob.php:462
1803
  #, php-format
1804
  msgid "ATTENTION: Job runs every %d mins.!!!"
1805
  msgstr "ACHTUNG: Auftrag l&auml;uft alle %d Minuten!"
1806
 
1807
  #@ backwpup
1808
- #: pages/func_backwpupeditjob.php:468
1809
  #, php-format
1810
  msgid "ATTENTION: Job runs every %d houers.!!!"
1811
  msgstr "ACHTUNG: Auftrag l&auml;uft alle %d Stunden!"
1812
 
1813
  #@ backwpup
1814
- #: pages/page_backwpupeditjob.php:13
1815
  msgid "Backup to Folder"
1816
  msgstr "Datensicherung in Ordner"
1817
 
1818
  #@ backwpup
1819
- #: pages/page_backwpupsettings.php:126
1820
  msgid "Max. normal script runtime:"
1821
  msgstr "Max. regul&auml;re Skript-Laufzeit:"
1822
 
1823
  #@ backwpup
1824
- #: pages/page_backwpupsettings.php:128
1825
  msgid "Script runtime will reset on many job functions. You can only set it if safemode off. Default runtime is 30 sec. Your ini setting is in sec.:"
1826
  msgstr "Die Skript-Laufzeit wird sich bei vielen Auftrags-Funktionen zur&uuml;cksetzen. Sie k&ouml;nnen sie nur festlegen, wenn PHP <code>safe_mode</code> ausgeschaltet (off) ist. Die Standardlaufzeit sind 30 Sekunden. Ihre (PHP-) ini-Einstellung in Sekunden ist: "
1827
 
1828
  #@ backwpup
1829
- #: pages/page_backwpupsettings.php:132
1830
  msgid "Max. long script runtime:"
1831
  msgstr "Max. lange Skript-Laufzeit:"
1832
 
1833
  #@ backwpup
1834
- #: pages/page_backwpupsettings.php:134
1835
- msgid "Script runtime for loong operations withaut responce to script. You can only set it if safemode off. Default runtime is 300 sec.(Max. on most webservers.)"
1836
- msgstr "Die Skript-Laufzeit f&uuml;r sehr lange Operationen ohne Antwort vom Skript. Sie k&ouml;nnen sie nur festlegen, wenn PHP <code>safe_mode</code> ausgeschaltet (off) ist. Die Standardlaufzeit ist 300 Sekunden (das Maximum auf den meisten Webservern)."
1837
-
1838
- #@ backwpup
1839
- #: pages/func_backwpupeditjob.php:238
1840
- #: pages/page_backwpupsettings.php:54
1841
  msgid "Port:"
1842
  msgstr "Port:"
1843
 
1844
  #@ backwpup
1845
- #: backwpup-functions.php:100
1846
  msgid "For more information:"
1847
  msgstr "F&uuml;r weitere Informationen:"
1848
 
1849
  #@ backwpup
1850
- #: backwpup-functions.php:106
1851
  msgid "Flattr"
1852
  msgstr "Flattr"
1853
 
1854
  #@ backwpup
1855
- #: pages/header_backwpup.php:67
1856
  msgid "Aborted by user!!!"
1857
  msgstr "Abgebrochen vom Benutzer!!!"
1858
 
1859
  #@ backwpup
1860
- #: pages/header_backwpuplogs.php:61
1861
- msgid "Here you can mange the log files of the jobs. You can download, view or delete them."
1862
- msgstr "Hier k&ouml;nnen Sie die Protokolle der einzelnen Auftr&auml;ge verwalten. Diese k&ouml;nnen angesehen, heruntergeladen oder gel&ouml;scht werden."
1863
-
1864
- #@ backwpup
1865
- #: pages/header_backwpupworking.php:35
1866
  msgid "Here you see working jobs or logfiles"
1867
  msgstr "Hier k&ouml;nnen Sie gerade aktive Auftr&auml;ge oder Protokolle einsehen."
1868
 
1869
  #@ backwpup
1870
- #: pages/page_backwpupsettings.php:146
1871
  msgid "Will you see BackWPup in the WordPress Admin Bar?"
1872
  msgstr "M&ouml;chten Sie BackWPup-Men&uuml;punkte in der WordPress-Adminbar sehen?"
1873
 
1874
  #@ backwpup
1875
- #: pages/page_backwpupsettings.php:158
1876
  msgid "If you would use the cron job of your hoster you must point it to the url:"
1877
  msgstr "Wenn Sie den Cronjob Ihres Webhosting-Anbieters nutzen m&ouml;chten, m&uuml;ssen Sie diesen zu dieser URL verweisen:"
1878
 
1879
  #@ backwpup
1880
- #: backwpup-functions.php:107
1881
  msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1882
  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."
1883
 
1884
  #@ backwpup
1885
- #: job/job_run.php:96
1886
  msgid "[INFO]: BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1887
  msgstr "[INFO]: 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."
1888
 
1889
  #@ backwpup
1890
- #: job/job_run.php:97
1891
  msgid "[INFO]: BackWPup job:"
1892
  msgstr "[INFO]: BackWPup Auftrag:"
1893
 
1894
  #@ backwpup
1895
- #: job/job_run.php:99
1896
  msgid "[INFO]: BackWPup cron:"
1897
  msgstr "[INFO]: BackWPup-Planung (Cron):"
1898
 
1899
  #@ backwpup
1900
- #: job/job_run.php:104
1901
  msgid "[INFO]: PHP ver.:"
1902
  msgstr "[INFO]: PHP-Version:"
1903
 
1904
  #@ backwpup
1905
- #: job/job_run.php:107
1906
  msgid "[INFO]: MySQL ver.:"
1907
  msgstr "[INFO]: MySQL-Version:"
1908
 
1909
  #@ backwpup
1910
- #: job/job_run.php:110
1911
  msgid "[INFO]: curl ver.:"
1912
  msgstr "[INFO]: cURL-Version:"
1913
 
1914
  #@ backwpup
1915
- #: job/job_run.php:112
1916
  msgid "[INFO]: Temp folder is:"
1917
  msgstr "[INFO]: Temp-Ordner ist:"
1918
 
1919
  #@ backwpup
1920
- #: job/job_run.php:114
1921
  msgid "[INFO]: Backup file is:"
1922
  msgstr "[INFO]: Datensicherungsdatei ist:"
1923
 
1924
  #@ backwpup
1925
- #: pages/func_backwpupeditjob.php:98
1926
  msgid "advanced"
1927
  msgstr "erweitert"
1928
 
1929
  #@ backwpup
1930
- #: pages/func_backwpupeditjob.php:99
1931
  msgid "basic"
1932
  msgstr "einfach"
1933
 
1934
  #@ backwpup
1935
- #: pages/func_backwpupeditjob.php:182
1936
  msgid "Hour"
1937
  msgstr "Stunde"
1938
 
1939
  #@ backwpup
1940
- #: pages/func_backwpupeditjob.php:185
1941
  msgid "Minute"
1942
  msgstr "Minute"
1943
 
1944
  #@ backwpup
1945
- #: pages/func_backwpupeditjob.php:189
1946
  msgid "monthly"
1947
  msgstr "monatlich"
1948
 
1949
  #@ backwpup
1950
- #: pages/func_backwpupeditjob.php:190
1951
  msgid "on"
1952
  msgstr "am"
1953
 
1954
  #@ backwpup
1955
- #: pages/func_backwpupeditjob.php:195
1956
  msgid "weekly"
1957
  msgstr "w&ouml;chentl."
1958
 
1959
  #@ backwpup
1960
- #: pages/func_backwpupeditjob.php:209
1961
  msgid "daily"
1962
  msgstr "t&auml;glich"
1963
 
1964
  #@ backwpup
1965
- #: pages/func_backwpupeditjob.php:215
1966
  msgid "hourly"
1967
  msgstr "st&uuml;ndlich"
1968
 
1969
  #@ backwpup
1970
- #: pages/func_backwpupeditjob.php:472
1971
  msgid "ATTENTION: Can't calculate cron!!!"
1972
  msgstr "ACHTUNG: Cron (Auftragsplanung) kann nicht berechnet werden!!!"
1973
 
@@ -1977,15 +1888,10 @@ msgid "Here is the job overview with some information. You can see some further
1977
  msgstr "Hier ist der Auftrags&uuml;berblick mit einigen Informationen. Sie k&ouml;nnen einige Informationen zu den Auftr&auml;gen einsehen, wieviele, kann &uuml;ber den Ansehen-Button ge&auml;ndert werden. Sie k&ouml;nnen auch die Auftr&auml;ge verwalten oder aktive Auftr&auml;ge abbrechen. Einige Links wurden hinzugef&uuml;gt, damit Sie direkt auf das letzte Protokoll oder die letzte Datensicherungsdatei via Download zugreifen k&ouml;nnen."
1978
 
1979
  #@ backwpup
1980
- #: pages/header_backwpupbackups.php:359
1981
  msgid "Here you see a list of backup files. Change the destionation to jobname:destination to become a list of backups from other destinations and jobs. Then you kann delete or download backup files."
1982
  msgstr "Hier sehen Sie eine Liste der Datensicherungsdateien. Ver&auml;ndern Sie das Ziel via Auftragsname:Ziel, um eine entsprechende Liste der Datensicherungen, Ziele und Auftr&auml;ge zu erhalten. Dann k&ouml;nnen Sie Datensicherungsdateien l&ouml;schen oder herunterladen."
1983
 
1984
- #@ backwpup
1985
- #: pages/page_backwpupsettings.php:20
1986
- msgid "Here you can set special things for Mail sending. The settings will be used in jobs for sending backups via email or for sending log files."
1987
- msgstr "Hier k&ouml;nnen Sie die Protokolle der einzelnen Auftr&auml;ge verwalten. Diese k&ouml;nnen angesehen, heruntergeladen oder gel&ouml;scht werden."
1988
-
1989
  #@ backwpup
1990
  #. translators: plugin header field 'PluginURI'
1991
  #: backwpup.php:0
@@ -1999,288 +1905,280 @@ msgid "Wordpress Backup and more..."
1999
  msgstr "WordPress-Datensicherung und mehr ..."
2000
 
2001
  #@ backwpup
2002
- #: pages/func_backwpup.php:245
2003
  msgid "DB Size:"
2004
  msgstr "Datenbankgr&ouml;&szlig;e:"
2005
 
2006
  #@ backwpup
2007
- #: backwpup-functions.php:104
2008
  msgid "Plugin on WordPress.org"
2009
  msgstr "Plugin bei WordPress.org"
2010
 
2011
  #@ backwpup
2012
- #: backwpup-functions.php:726
2013
- msgid "- Logs Folder in open_basedir path:"
2014
- msgstr "- Protokolldateien-Ordner in open_basedir path:"
2015
-
2016
- #@ backwpup
2017
- #: job/backup_create.php:19
2018
  #, php-format
2019
  msgid "%d. try to create backup zip archive..."
2020
  msgstr "%d. Versuche ein Datensicherungs-ZIP-Archiv zu erstellen ..."
2021
 
2022
  #@ backwpup
2023
- #: job/backup_create.php:24
2024
  #, php-format
2025
  msgid "Can not add \"%s\" to zip archive!"
2026
  msgstr "\"%s\" kann dem ZIP-Archiv nicht hinzugef&uuml;gt werden!"
2027
 
2028
  #@ backwpup
2029
- #: job/backup_create.php:31
2030
  msgid "(4) ER_SEEK"
2031
  msgstr "(4) ER_SEEK"
2032
 
2033
  #@ backwpup
2034
- #: job/backup_create.php:33
2035
  msgid "(5) ER_READ"
2036
  msgstr "(5) ER_READ"
2037
 
2038
  #@ backwpup
2039
- #: job/backup_create.php:35
2040
  msgid "(9) ER_NOENT"
2041
  msgstr "(9) ER_NOENT"
2042
 
2043
  #@ backwpup
2044
- #: job/backup_create.php:37
2045
  msgid "(10) ER_EXISTS"
2046
  msgstr "(10) ER_EXISTS"
2047
 
2048
  #@ backwpup
2049
- #: job/backup_create.php:39
2050
  msgid "(11) ER_OPEN"
2051
  msgstr "(11) ER_OPEN"
2052
 
2053
  #@ backwpup
2054
- #: job/backup_create.php:41
2055
  msgid "(14) ER_MEMORY"
2056
  msgstr "(14) ER_MEMORY"
2057
 
2058
  #@ backwpup
2059
- #: job/backup_create.php:43
2060
  msgid "(18) ER_INVAL"
2061
  msgstr "(18) ER_INVAL"
2062
 
2063
  #@ backwpup
2064
- #: job/backup_create.php:45
2065
  msgid "(19) ER_NOZIP"
2066
  msgstr "(19) ER_NOZIP"
2067
 
2068
  #@ backwpup
2069
- #: job/backup_create.php:47
2070
  msgid "(21) ER_INCONS"
2071
  msgstr "(21) ER_INCONS"
2072
 
2073
  #@ backwpup
2074
- #: job/backup_create.php:48
2075
  #, php-format
2076
  msgid "Zip returns status: %s"
2077
  msgstr "ZIP liefert Status zur&uuml;ck: %s"
2078
 
2079
  #@ backwpup
2080
- #: job/backup_create.php:52
2081
  msgid "Backup zip archive create done!"
2082
  msgstr "Datensicherungs-ZIP-Archiv wurde erstellt!"
2083
 
2084
  #@ backwpup
2085
- #: job/backup_create.php:55
2086
  msgid "Can not create backup zip archive $s!"
2087
  msgstr "Datensicherungs-ZIP-Archiv kann nicht erstellt werden $s!"
2088
 
2089
  #@ backwpup
2090
- #: job/backup_create.php:62
2091
  #, php-format
2092
  msgid "%d. try to create backup zip (PclZip) archive..."
2093
  msgstr "%d. Versuche Datensicherungs-Zip-Archiv (PclZip) zu erstellen ..."
2094
 
2095
  #@ backwpup
2096
- #: job/backup_create.php:71
2097
  #, php-format
2098
  msgid "Zip archive create error: %s"
2099
  msgstr "ZIP-Archiv Erstellungsfehler: %s"
2100
 
2101
  #@ backwpup
2102
- #: job/backup_create.php:75
2103
  msgid "Backup zip archive create done"
2104
  msgstr "Datensicherungs-ZIP-Archiv wurde erstellt"
2105
 
2106
  #@ backwpup
2107
- #: job/backup_create.php:90
2108
  msgid "Can not create tar arcive file!"
2109
  msgstr "TAR-Archivdatei konnte nicht erstellt werden!"
2110
 
2111
  #@ backwpup
2112
- #: job/backup_create.php:93
2113
  #, php-format
2114
  msgid "%1$d. try to create %2$s archive file..."
2115
  msgstr "%1$d. Versuche %2$s Archivdatei zu erstellen ..."
2116
 
2117
  #@ backwpup
2118
- #: job/backup_create.php:101
2119
  #, php-format
2120
  msgid "File \"%s\" not readable!"
2121
  msgstr "Datei \"%s\" nicht lesbar!"
2122
 
2123
  #@ backwpup
2124
- #: job/backup_create.php:116
2125
  #, php-format
2126
  msgid "File name \"%1$s\" to long to save corectly in %2$s archive!"
2127
  msgstr "Dateiname \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern!"
2128
 
2129
  #@ backwpup
2130
- #: job/backup_create.php:118
2131
  #, php-format
2132
  msgid "File path \"%1$s\" to long to save corectly in %2$s archive!"
2133
  msgstr "Dateipfad \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern!"
2134
 
2135
  #@ backwpup
2136
- #: job/backup_create.php:195
2137
  #, php-format
2138
  msgid "%s archive creation done"
2139
  msgstr "%s Archiverstellung fertig"
2140
 
2141
  #@ backwpup
2142
- #: job/backup_create.php:199
2143
  #, php-format
2144
  msgid "Archive size is %s"
2145
  msgstr "Archivgr&ouml;&szlig;e ist %s"
2146
 
2147
  #@ backwpup
2148
- #: job/backup_create.php:206
2149
  #, php-format
2150
  msgid "PCL ZIP Error \"%1$s\" on file %2$s!"
2151
  msgstr "PCL ZIP Fehler \"%1$s\" bei der Datei %2$s!"
2152
 
2153
  #@ backwpup
2154
- #: job/db_check.php:10
2155
  #, php-format
2156
  msgid "%d. try for database check..."
2157
  msgstr "%d. Versuche Datenbank zu checken ..."
2158
 
2159
  #@ backwpup
2160
- #: job/db_check.php:23
2161
- #: job/db_check.php:38
2162
- #: job/db_dump.php:21
2163
- #: job/db_dump.php:106
2164
- #: job/db_dump.php:116
2165
- #: job/db_optimize.php:21
2166
- #: job/job_functions.php:56
2167
- #: job/job_functions.php:69
 
 
 
2168
  #, php-format
2169
  msgid "Database error %1$s for query %2$s"
2170
  msgstr "Datenbankfehler %1$s f&uuml;r die Abfrage (query) %2$s"
2171
 
2172
  #@ backwpup
2173
- #: job/db_check.php:55
2174
  msgid "No tables to check"
2175
  msgstr "Keine Tabellen zum checken"
2176
 
2177
  #@ backwpup
2178
- #: job/db_dump.php:11
2179
  #, php-format
2180
  msgid "%d. try for database dump..."
2181
  msgstr "%d. Versuche Datenbank-Dump ..."
2182
 
2183
  #@ backwpup
2184
- #: job/db_dump.php:54
2185
  #, php-format
2186
  msgid "Dump database table \"%s\""
2187
  msgstr "Dumpe Datenbanktabelle \"%s\""
2188
 
2189
  #@ backwpup
2190
- #: job/db_dump.php:71
2191
  msgid "Database dump done!"
2192
  msgstr "Datenbank-Dump fertig!"
2193
 
2194
  #@ backwpup
2195
- #: job/db_dump.php:73
2196
  msgid "Can not create database dump!"
2197
  msgstr "Datenbank-Dump kann nicht erstellt werden!"
2198
 
2199
  #@ backwpup
2200
- #: job/db_dump.php:76
2201
  msgid "No tables to dump"
2202
  msgstr "Es gibt keine Tabellen zum dumpen"
2203
 
2204
  #@ backwpup
2205
- #: job/db_dump.php:82
2206
  #, php-format
2207
  msgid "Add database dump \"%1$s\" with %2$s to backup file list"
2208
  msgstr "F&uuml;ge Datenbank-Dump \"%1$s\" mit %2$s der Datensicherungsdateiliste hinzu"
2209
 
2210
  #@ backwpup
2211
- #: job/db_optimize.php:10
2212
  #, php-format
2213
  msgid "%d. try for database optimize..."
2214
  msgstr "%d. Versuche die Datenbank zu optimieren ..."
2215
 
2216
  #@ backwpup
2217
- #: job/db_optimize.php:37
2218
  msgid "No tables to optimize"
2219
  msgstr "Es gibt keine Datenbanktabellen zum Optimieren"
2220
 
2221
  #@ backwpup
2222
- #: job/dest_dropbox.php:12
2223
  #, php-format
2224
  msgid "%d. Try to sending backup file to DropBox..."
2225
  msgstr "%d. Versuche Datensicherungsdatei zur Dropbox zu senden ..."
2226
 
2227
  #@ backwpup
2228
- #: job/dest_dropbox.php:21
2229
- #: job/dest_dropbox.php:24
2230
  #, php-format
2231
  msgid "oAuth sign method for DropBox is %s"
2232
  msgstr "oAuth Sign-Methode f&uuml;r Dropbox ist %s"
2233
 
2234
  #@ backwpup
2235
- #: job/dest_dropbox.php:21
2236
- #: pages/func_backwpupeditjob.php:364
2237
  msgid "PLAINTEXT"
2238
  msgstr "PLAINTEXT"
2239
 
2240
  #@ backwpup
2241
- #: job/dest_dropbox.php:24
2242
- #: pages/func_backwpupeditjob.php:363
2243
  msgid "HMAC-SHA1"
2244
  msgstr "HMAC-SHA1"
2245
 
2246
  #@ backwpup
2247
- #: job/dest_dropbox.php:33
2248
  #, php-format
2249
  msgid "Authed with DropBox from %s"
2250
  msgstr "Authentifiziert mit Dropbox von %s"
2251
 
2252
  #@ backwpup
2253
- #: job/dest_dropbox.php:42
2254
  #, php-format
2255
  msgid "%s free on DropBox"
2256
  msgstr "%s frei in der Dropbox"
2257
 
2258
  #@ backwpup
2259
- #: job/dest_dropbox.php:47
2260
  msgid "Upload to DropBox now started... "
2261
  msgstr "Hochladen zur Dropbox hat begonnen ... "
2262
 
2263
  #@ backwpup
2264
- #: job/dest_dropbox.php:54
2265
- #, php-format
2266
- msgid "Backup transferred to DropBox://%s"
2267
- msgstr "Datensicherungsdatei &uuml;bertragen zu Dropbox://%s"
2268
-
2269
- #@ backwpup
2270
- #: job/dest_dropbox.php:56
2271
  #, php-format
2272
  msgid "Error on transfere backup to DropBox: %s"
2273
  msgstr "Fehler beim &Uuml;bertragen der Datensicherungsdatei zur Dropbox: %s"
2274
 
2275
  #@ backwpup
2276
- #: job/dest_dropbox.php:62
2277
- #: job/dest_dropbox.php:87
2278
  #, php-format
2279
  msgid "DropBox API: %s"
2280
  msgstr "Dropbox-API: %s"
2281
 
2282
  #@ backwpup
2283
- #: job/dest_dropbox.php:83
2284
  #, php-format
2285
  msgid "One file deleted on DropBox"
2286
  msgid_plural "%d files deleted on DropBox"
@@ -2288,7 +2186,7 @@ msgstr[0] "Eine Datei in der Dropbox gel&ouml;scht"
2288
  msgstr[1] "%d Dateien in der Dropbox gel&ouml;scht"
2289
 
2290
  #@ backwpup
2291
- #: job/dest_folder.php:31
2292
  #, php-format
2293
  msgid "One backup file deleted"
2294
  msgid_plural "%d backup files deleted"
@@ -2296,94 +2194,94 @@ msgstr[0] "Eine Datensicherungsdatei gel&ouml;scht"
2296
  msgstr[1] "%d Datensicherungsdateien gel&ouml;scht"
2297
 
2298
  #@ backwpup
2299
- #: job/dest_ftp.php:15
2300
  #, php-format
2301
  msgid "%d. try to sending backup file to a FTP Server..."
2302
  msgstr "%d. Versuche Datensicherungsdatei zu einem FTP-Server zu senden ..."
2303
 
2304
  #@ backwpup
2305
- #: job/dest_ftp.php:23
2306
  #, php-format
2307
  msgid "Connected by SSL-FTP to Server: %s"
2308
  msgstr "Verbunden via SSL-FTP mit dem Server: %s"
2309
 
2310
  #@ backwpup
2311
- #: job/dest_ftp.php:25
2312
  #, php-format
2313
  msgid "Can not connect by SSL-FTP to Server: %s"
2314
  msgstr "Kann nicht via SSL-FTP mit dem Server verbinden: %s"
2315
 
2316
  #@ backwpup
2317
- #: job/dest_ftp.php:29
2318
  msgid "PHP function to connect with SSL-FTP to server not exists!"
2319
  msgstr "PHP-Funktion, um mit SSL-FTP zum Server zu verbinden, existiert nicht!"
2320
 
2321
  #@ backwpup
2322
- #: job/dest_ftp.php:35
2323
  #, php-format
2324
  msgid "Connected to FTP server: %s"
2325
  msgstr "Verbunden mit dem FTP-Server: %s"
2326
 
2327
  #@ backwpup
2328
- #: job/dest_ftp.php:37
2329
  #, php-format
2330
  msgid "Can not connect to FTP server: %s"
2331
  msgstr "Kann nicht mit dem FTP-Server verbinden: %s"
2332
 
2333
  #@ backwpup
2334
- #: job/dest_ftp.php:44
2335
- #: job/dest_ftp.php:51
2336
- #: job/dest_ftp.php:63
2337
- #: job/dest_ftp.php:76
2338
  #, php-format
2339
  msgid "FTP Client command: %s"
2340
  msgstr "FTP-Client-Kommando: %s"
2341
 
2342
  #@ backwpup
2343
- #: job/dest_ftp.php:46
2344
- #: job/dest_ftp.php:49
2345
- #: job/dest_ftp.php:53
2346
- #: job/dest_ftp.php:66
2347
- #: job/dest_ftp.php:68
2348
- #: job/dest_ftp.php:71
 
2349
  #: job/dest_ftp.php:73
2350
- #: job/dest_ftp.php:79
2351
- #: job/dest_ftp.php:81
2352
  #, php-format
2353
  msgid "FTP Server reply: %s"
2354
  msgstr "FTP-Server Antwort: %s"
2355
 
2356
  #@ backwpup
2357
- #: job/dest_ftp.php:91
2358
  #, php-format
2359
  msgid "FTP Folder \"%s\" created!"
2360
  msgstr "FTP-Ordner \"%s\" erstellt!"
2361
 
2362
  #@ backwpup
2363
- #: job/dest_ftp.php:94
2364
  #, php-format
2365
  msgid "FTP Folder \"%s\" can not created!"
2366
  msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!"
2367
 
2368
  #@ backwpup
2369
- #: job/dest_ftp.php:103
2370
  #, php-format
2371
  msgid "Backup transferred to FTP server: %s"
2372
  msgstr "Datensicherungsdatei &uuml;bertragen zum FTP-Server: %s"
2373
 
2374
  #@ backwpup
2375
- #: job/dest_ftp.php:106
2376
  msgid "Can not transfer backup to FTP server!"
2377
  msgstr "Datensicherungsdatei kann nicht zum FTP-Server &uuml;bertragen werden!"
2378
 
2379
  #@ backwpup
2380
- #: job/dest_ftp.php:123
2381
  #, php-format
2382
  msgid "Can not delete \"%s\" on FTP server!"
2383
  msgstr "Kann \"%s\" nicht l&ouml;schen auf dem FTP-Server!"
2384
 
2385
  #@ backwpup
2386
- #: job/dest_ftp.php:126
2387
  #, php-format
2388
  msgid "One file deleted on FTP Server"
2389
  msgid_plural "%d files deleted on FTP Server"
@@ -2391,125 +2289,75 @@ msgstr[0] "Eine Datei auf dem FTP-Server gel&ouml;scht"
2391
  msgstr[1] "%d Dateien auf dem FTP-Server gel&ouml;scht"
2392
 
2393
  #@ backwpup
2394
- #: job/dest_gstorage.php:12
2395
  #, php-format
2396
  msgid "%d. try sending backup to Google Storage..."
2397
  msgstr "%d. Versuche Datensicherungsdatei zu Google Storage zu senden ..."
2398
 
2399
  #@ backwpup
2400
- #: job/dest_gstorage.php:20
2401
- #, php-format
2402
- msgid "Connected to Google storage bucket: %s"
2403
- msgstr "Verbunden mit Google Storage Bucket: %s"
2404
-
2405
- #@ backwpup
2406
- #: job/dest_gstorage.php:31
2407
- msgid "Upload to Google storage now started..."
2408
- msgstr "Hochladen zu Google Storage hat jetzt begonnen ..."
2409
-
2410
- #@ backwpup
2411
- #: job/dest_gstorage.php:36
2412
- #, php-format
2413
- msgid "Backup transferred to GSTORAGE://%s"
2414
- msgstr "Datensicherungsdatei &uuml;bertragen zu GSTORAGE://%s"
2415
-
2416
- #@ backwpup
2417
- #: job/dest_gstorage.php:39
2418
- #, php-format
2419
- msgid "Error \"%s\" on transfer backup to Google storage!"
2420
- msgstr "Fehler \"%s\" bei der &Uuml;bertragung der Datensicherung zu Google Storage!"
2421
-
2422
- #@ backwpup
2423
- #: job/dest_gstorage.php:42
2424
- #, php-format
2425
- msgid "Error \"%s\" on connect to Google Storage bucket"
2426
- msgstr "Fehler \"%s\" beim Verbinden zu Google Storage Bucket"
2427
-
2428
- #@ backwpup
2429
- #: job/dest_gstorage.php:45
2430
- #: job/dest_gstorage.php:72
2431
- #, php-format
2432
- msgid "Google Storage API: %s"
2433
- msgstr "Google Storage API: %s"
2434
-
2435
- #@ backwpup
2436
- #: job/dest_gstorage.php:67
2437
- #, php-format
2438
- msgid "One file deleted on Google Storage bucket"
2439
- msgid_plural "%d files deleted on Google Storage bucket"
2440
- msgstr[0] "Eine Datei im Google Storage Bucket gel&ouml;scht"
2441
- msgstr[1] "%d Dateien im Google Storage Bucket gel&ouml;scht"
2442
-
2443
- #@ backwpup
2444
- #: job/dest_mail.php:12
2445
  #, php-format
2446
  msgid "%d. try to sending backup with mail..."
2447
  msgstr "%d. Versuche Datensicherung via E-Mail zu senden ..."
2448
 
2449
  #@ backwpup
2450
- #: job/dest_mail.php:42
2451
  #, php-format
2452
  msgid "BackWPup archive from %1$s: %2$s"
2453
  msgstr "BackWPup-Archiv vom %1$s: %2$s"
2454
 
2455
  #@ backwpup
2456
- #: job/dest_mail.php:44
2457
  #, php-format
2458
  msgid "Backup archive: %s"
2459
  msgstr "Datensicherungsarchiv: %s"
2460
 
2461
  #@ backwpup
2462
- #: job/dest_mail.php:50
2463
  msgid "Backup archive too big for sending by mail!"
2464
  msgstr "Das Datensicherungsarchiv ist zu gro&szlig; zum Senden via E-Mail!"
2465
 
2466
  #@ backwpup
2467
- #: job/dest_mail.php:57
2468
  msgid "Adding backup archive to mail"
2469
  msgstr "Datensicherungsarchiv wird der E-Mail hinzugef&uuml;gt"
2470
 
2471
  #@ backwpup
2472
- #: job/dest_mail.php:64
2473
  #, php-format
2474
  msgid "Error \"%s\" on sending mail!"
2475
  msgstr "Fehler \"%s\" beim Mailversand!"
2476
 
2477
  #@ backwpup
2478
- #: job/dest_msazure.php:11
2479
  #, php-format
2480
  msgid "%d. try sending backup to a Microsoft Azure (Blob)..."
2481
  msgstr "%d. Versuche Datensicherung zu Microsoft Azure (Blob) zu senden ..."
2482
 
2483
  #@ backwpup
2484
- #: job/dest_msazure.php:20
2485
  #, php-format
2486
  msgid "Microsoft Azure container \"%s\" not exists!"
2487
  msgstr "Microsoft Azure Container \"%s\" existiert nicht!"
2488
 
2489
  #@ backwpup
2490
- #: job/dest_msazure.php:23
2491
  #, php-format
2492
  msgid "Connected to Microsoft Azure container \"%s\""
2493
  msgstr "Verbunden mit Microsoft Azure Container \"%s\""
2494
 
2495
  #@ backwpup
2496
- #: job/dest_msazure.php:26
2497
  msgid "Upload to MS Azure now started... "
2498
  msgstr "Hochladen zu MS Azure hat begonnen ... "
2499
 
2500
  #@ backwpup
2501
- #: job/dest_msazure.php:32
2502
- #, php-format
2503
- msgid "Backup transferred to azure://%s"
2504
- msgstr "Datensicherungsdatei &uuml;bertragen zu MS Azure://%s"
2505
-
2506
- #@ backwpup
2507
- #: job/dest_msazure.php:35
2508
  msgid "Can not transfer backup to Microsoft Azure!"
2509
  msgstr "Kann Datensicherung nicht Microsoft Azure &uuml;bertragen!"
2510
 
2511
  #@ backwpup
2512
- #: job/dest_msazure.php:56
2513
  #, php-format
2514
  msgid "One file deleted on Microsoft Azure container"
2515
  msgid_plural "%d files deleted on Microsoft Azure container"
@@ -2517,13 +2365,13 @@ msgstr[0] "Eine Datei im Microsoft Azure Container gel&ouml;scht"
2517
  msgstr[1] "%d Dateien im Microsoft Azure Container gel&ouml;scht"
2518
 
2519
  #@ backwpup
2520
- #: job/dest_msazure.php:61
2521
  #, php-format
2522
  msgid "Microsoft Azure API: %s"
2523
  msgstr "Microsoft Azure API: %s"
2524
 
2525
  #@ backwpup
2526
- #: job/dest_rsc.php:94
2527
  #, php-format
2528
  msgid "One file deleted on RSC container"
2529
  msgid_plural "%d files deleted on RSC container"
@@ -2531,54 +2379,43 @@ msgstr[0] "Eine Datei im RSC-Container gel&ouml;scht"
2531
  msgstr[1] "%d Dateien im RSC-Container gel&ouml;scht"
2532
 
2533
  #@ backwpup
2534
- #: job/dest_s3.php:10
2535
  #, php-format
2536
  msgid "%d. try sending backup file to Amazon S3..."
2537
  msgstr "%d. Versuche Datensicherungsdatei zu Amazon S3 zu senden ..."
2538
 
2539
  #@ backwpup
2540
- #: job/dest_s3.php:20
2541
  #, php-format
2542
  msgid "Connected to S3 Bucket: %s"
2543
  msgstr "Verbunden mit dem S3 Bucket: %s"
2544
 
2545
  #@ backwpup
2546
- #: job/dest_s3.php:32
2547
  msgid "Upload to Amazon S3 now started... "
2548
- msgstr "Hochladen zu Amazon S3 hat begonnen ..."
2549
-
2550
- #@ backwpup
2551
- #: job/dest_s3.php:35
2552
- #, php-format
2553
- msgid "Backup transferred to S3://%s"
2554
- msgstr "Datensicherungsdatei &uuml;bertragen zu Amazon S3://%s"
2555
 
2556
  #@ backwpup
2557
  #: job/dest_s3.php:38
2558
- msgid "Can not transfer backup to S3!"
2559
- msgstr "Kann Datensicherung nicht zu Amazon S3 &uuml;bertragen!"
2560
-
2561
- #@ backwpup
2562
- #: job/dest_s3.php:41
2563
  #, php-format
2564
  msgid "S3 Bucket \"%s\" not exists!"
2565
  msgstr "Amazon S3 Bucket \"%s\" existiert nicht!"
2566
 
2567
  #@ backwpup
2568
- #: job/dest_s3.php:44
2569
- #: job/dest_s3.php:73
2570
  #, php-format
2571
  msgid "Amazon API: %s"
2572
  msgstr "Amazon S3 API: %s"
2573
 
2574
  #@ backwpup
2575
- #: job/dest_s3.php:65
2576
  #, php-format
2577
  msgid "Can not delete backup on S3://%s"
2578
  msgstr "Datensicherung kann nicht gel&ouml;scht werden bei Amazon S3://%s"
2579
 
2580
  #@ backwpup
2581
- #: job/dest_s3.php:68
2582
  #, php-format
2583
  msgid "One file deleted on S3 Bucket"
2584
  msgid_plural "%d files deleted on S3 Bucket"
@@ -2586,41 +2423,35 @@ msgstr[0] "Eine Datei im Amazon S3 Bucket gel&ouml;scht"
2586
  msgstr[1] "%d Dateien im Amazon S3 Bucket gel&ouml;scht"
2587
 
2588
  #@ backwpup
2589
- #: job/dest_sugarsync.php:12
2590
  #, php-format
2591
  msgid "%d. try sending backup to SugarSync..."
2592
  msgstr "%d. Versuche Datensicherung zu SugarSync zu senden ..."
2593
 
2594
  #@ backwpup
2595
- #: job/dest_sugarsync.php:21
2596
  #, php-format
2597
  msgid "Authed to SugarSync with Nick %s"
2598
  msgstr "Authentifiziert mit SugarSync, mit dem Namen %s"
2599
 
2600
  #@ backwpup
2601
- #: job/dest_sugarsync.php:30
2602
  #, php-format
2603
  msgid "%s free on SugarSync"
2604
  msgstr "%s frei bei SugarSync"
2605
 
2606
  #@ backwpup
2607
- #: job/dest_sugarsync.php:37
2608
  msgid "Upload to SugarSync now started... "
2609
  msgstr "Hochladen zu SugarSync hat begonnen ... "
2610
 
2611
  #@ backwpup
2612
- #: job/dest_sugarsync.php:43
2613
- #, php-format
2614
- msgid "Backup transferred to SugarSync://%s"
2615
- msgstr "Datensicherungsdatei &uuml;bertragen zu SugarSync://%s"
2616
-
2617
- #@ backwpup
2618
- #: job/dest_sugarsync.php:45
2619
  msgid "Can not transfer backup to SugarSync!"
2620
  msgstr "Datensicherung kann nicht zu SugarSync &uuml;bertragen werden!"
2621
 
2622
  #@ backwpup
2623
- #: job/dest_sugarsync.php:68
2624
  #, php-format
2625
  msgid "One file deleted on SugarSync folder"
2626
  msgid_plural "%d files deleted on SugarSync folder"
@@ -2628,87 +2459,87 @@ msgstr[0] "Eine Datei im SugarSync-Ordner gel&ouml;scht"
2628
  msgstr[1] "%d Dateien im SugarSync-Ordner gel&ouml;scht"
2629
 
2630
  #@ backwpup
2631
- #: job/dest_sugarsync.php:72
2632
  #, php-format
2633
  msgid "SugarSync API: %s"
2634
  msgstr "SugarSync API: %s"
2635
 
2636
  #@ backwpup
2637
- #: job/file_list.php:12
2638
  #, php-format
2639
  msgid "%d. try for make list of files to backup...."
2640
  msgstr "%d. Versuche Liste von Dateien zur Datensicherung zu erstellen ..."
2641
 
2642
  #@ backwpup
2643
- #: job/file_list.php:69
2644
  msgid "No files to backup"
2645
  msgstr "Keine Dateien zur Datensicherung vorhanden"
2646
 
2647
  #@ backwpup
2648
- #: job/file_list.php:71
2649
  #, php-format
2650
  msgid "%1$d files with %2$s to backup"
2651
  msgstr "%1$d Dateien mit %2$s zum Sichern"
2652
 
2653
  #@ backwpup
2654
- #: job/file_list.php:94
2655
  #, php-format
2656
  msgid "File or folder \"%s\" is not readable!"
2657
  msgstr "Datei oder Ordner \"%s\" ist nicht lesbar!"
2658
 
2659
  #@ backwpup
2660
- #: job/file_list.php:96
2661
  #, php-format
2662
  msgid "Link \"%s\" not followed"
2663
  msgstr "Link \"%s\" ist nicht erlaubt"
2664
 
2665
  #@ backwpup
2666
- #: job/file_list.php:102
2667
  #, php-format
2668
  msgid "\"%s\" is not a file or directory"
2669
  msgstr "\"%s\" ist keine Datei oder ein Verzeichnis"
2670
 
2671
  #@ backwpup
2672
- #: job/job_functions.php:107
2673
  #, php-format
2674
  msgid "PHP Safe mode is on!!! Can not increase memory limit is %s"
2675
  msgstr "PHP-Safemode ist an!!! Das PHP-Speicherlimit kann nicht erh&ouml;ht werden, es betr&auml;gt derzeit %s"
2676
 
2677
  #@ backwpup
2678
- #: job/job_functions.php:136
2679
  #, php-format
2680
  msgid "Can not increase memory limit is %1$s"
2681
  msgstr "Das PHP-Speicherlimit kann nicht erh&ouml;ht werden, es betr&auml;gt derzeit %s"
2682
 
2683
  #@ backwpup
2684
- #: job/job_functions.php:146
2685
  msgid "Set Blog to maintenance mode"
2686
  msgstr "Webseite/ Blog in den Wartungsmodus versetzen"
2687
 
2688
  #@ backwpup
2689
- #: job/job_functions.php:160
2690
  msgid "Cannot set Blog to maintenance mode! Root folder is not writeable!"
2691
  msgstr "Webseite/ Blog kann nicht in den Wartungsmodus versetzt werden! Der Root-Ordner ist nicht beschreibbar!"
2692
 
2693
  #@ backwpup
2694
- #: job/job_functions.php:163
2695
  msgid "Set Blog to normal mode"
2696
  msgstr "Setze Webseite/ Blog zur&uuml;ck in den Normalmodus"
2697
 
2698
  #@ backwpup
2699
- #: job/job_functions.php:241
2700
  #, php-format
2701
  msgid "No MySQL connection: %s"
2702
  msgstr "Keine MySQL-Verbindung: %s"
2703
 
2704
  #@ backwpup
2705
- #: job/job_functions.php:256
2706
  #, php-format
2707
  msgid "No MySQL connection to database: %s"
2708
  msgstr "Keine MySQL-Verbindung zur Datenbank: %s"
2709
 
2710
  #@ backwpup
2711
- #: job/job_functions.php:373
2712
  #, php-format
2713
  msgid "One old log deleted"
2714
  msgid_plural "%d old logs deleted"
@@ -2716,115 +2547,115 @@ msgstr[0] "Eine alte Protokolldatei gel&ouml;scht"
2716
  msgstr[1] "%d alte Protokolldateien gel&ouml;scht"
2717
 
2718
  #@ backwpup
2719
- #: job/job_functions.php:377
2720
  #, php-format
2721
  msgid "Job done in %s sec."
2722
  msgstr "Auftrag erledigt in %s Sekunden."
2723
 
2724
  #@ backwpup
2725
- #: job/job_functions.php:477
2726
  #, php-format
2727
  msgid "Jobname: %s"
2728
  msgstr "Auftragsname: %s"
2729
 
2730
  #@ backwpup
2731
- #: job/job_functions.php:478
2732
  #, php-format
2733
  msgid "Jobtype: %s"
2734
  msgstr "Auftragstyp: %s"
2735
 
2736
  #@ backwpup
2737
- #: job/job_functions.php:480
2738
  #, php-format
2739
  msgid "Errors: %d"
2740
  msgstr "Fehler: %d"
2741
 
2742
  #@ backwpup
2743
- #: job/job_functions.php:482
2744
  #, php-format
2745
  msgid "Warnings: %d"
2746
  msgstr "Warnungen: %d"
2747
 
2748
  #@ backwpup
2749
- #: job/job_functions.php:487
2750
  #, php-format
2751
  msgid "BackWPup log from %1$s: %2$s"
2752
  msgstr "BackWPup-Protokoll vom %1$s: %2$s"
2753
 
2754
  #@ backwpup
2755
- #: job/job_run.php:56
2756
  msgid "Job restart terminated, bcause old job runs again!"
2757
  msgstr "Auftragsneustart verschoben, weil der alte/ bisherige Auftrag noch l&auml;uft!"
2758
 
2759
  #@ backwpup
2760
- #: job/job_run.php:59
2761
  msgid "Job restarted, bcause inactivity!"
2762
  msgstr "Auftrag neu gestartet, wegen Inaktivit&auml;t!"
2763
 
2764
  #@ backwpup
2765
- #: job/job_run.php:61
2766
  #, php-format
2767
  msgid "Second Prozess is running, bcause old job runs! Start type is %s"
2768
  msgstr "Ein zweiter Prozess l&auml;uft, weil alte/ bisherige Auftr&auml;ge laufen! Startzeit ist %s"
2769
 
2770
  #@ backwpup
2771
- #: job/job_run.php:87
2772
  #, php-format
2773
  msgid "Can not find job step file: %s"
2774
  msgstr "Datei mit Abarbeitungsschritten kann nicht gefunden werden: %s"
2775
 
2776
  #@ backwpup
2777
- #: job/job_run.php:101
2778
  msgid "[INFO]: BackWPup job strated by cron"
2779
  msgstr "[INFO]: BackWPup-Auftrag via Cron gestartet"
2780
 
2781
  #@ backwpup
2782
- #: job/job_run.php:103
2783
  msgid "[INFO]: BackWPup job strated manualy"
2784
  msgstr "[INFO]: BackWPup-Auftrag manuell gestartet"
2785
 
2786
  #@ backwpup
2787
- #: job/job_run.php:106
2788
  #, php-format
2789
  msgid "[INFO]: PHP Safe mode is ON! Maximum script execution time is %1$d sec."
2790
  msgstr "[INFO]: PHP-Safemode ist AN! Die maximale Skriptausf&uuml;hrzeit ist %1$d Sekunden"
2791
 
2792
  #@ backwpup
2793
- #: job/job_run.php:125
2794
  msgid "No destination defineid for backup!!! Please correct job settings"
2795
  msgstr "Kein Zielort f&uuml;r die Datensicherung festgelegt!!! Bitte korrigieren Sie die Auftragseinstellungen."
2796
 
2797
  #@ backwpup
2798
- #: job/job_run.php:147
2799
  msgid "Step arborted has too many trys!"
2800
  msgstr "Schritt wurde abgebrochen - hat zuviele Versuche!"
2801
 
2802
  #@ backwpup
2803
- #: job/job_run.php:149
2804
  #, php-format
2805
  msgid "Can not find job step function %s!"
2806
  msgstr "Funktion f&uuml;r die Auftragsschritte kann nicht gefunden werden %s!"
2807
 
2808
  #@ backwpup
2809
- #: job/job_start.php:31
2810
  #, php-format
2811
  msgid "Can not create temp folder: %s"
2812
  msgstr "Temp-Ordner kann nicht erstellt werden: %s"
2813
 
2814
  #@ backwpup
2815
- #: job/job_start.php:134
2816
  #, php-format
2817
  msgid "Can not create folder for log files: %s"
2818
  msgstr "Ordner f&uuml;r Protokolldateien kann nicht erstellt werden: %s"
2819
 
2820
  #@ backwpup
2821
- #: job/job_start.php:173
2822
  #, php-format
2823
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2824
  msgstr "BackWPup-Protokoll f&uuml;r %1$s von %2$s am %3$s"
2825
 
2826
  #@ backwpup
2827
- #: job/job_start.php:201
2828
  #, php-format
2829
  msgid "Can not create folder for backups: %1$s"
2830
  msgstr "Ordner f&uuml;r Datensicherungen kann nicht erstellt werden: %1$s"
@@ -2836,56 +2667,237 @@ msgid "%d. try for wordpress export to XML file..."
2836
  msgstr "%d. Versuche WordPress-XML-Datei zu exportieren ..."
2837
 
2838
  #@ backwpup
2839
- #: job/wp_export.php:44
2840
  #, php-format
2841
  msgid "Add XML export \"%1$s\" to backup list with %2$s"
2842
  msgstr "F&uuml;ge XML-Export \"%1$s\" der Datensicherungs-Liste hinzu, mit %2$s"
2843
 
2844
  #@ backwpup
2845
- #: pages/func_backwpupeditjob.php:23
2846
  msgid "PHP curl functions not available! Most backup destinations deaktivated!"
2847
  msgstr "PHP cURL-Funktionen nicht verf&uuml;gbar! Daher werden die meisten Datensicherungsziele deaktiviert!"
2848
 
2849
  #@ backwpup
2850
- #: pages/func_backwpupeditjob.php:361
2851
  msgid "oAuth sign method:"
2852
  msgstr "oAuth Sign-Methode:"
2853
 
2854
  #@ backwpup
2855
- #: pages/page_backwpupsettings.php:137
2856
  msgid "PHP zip class"
2857
  msgstr "PHP ZIP-Klasse"
2858
 
2859
  #@ backwpup
2860
- #: pages/page_backwpupsettings.php:138
2861
  msgid "PHP zip"
2862
  msgstr "PHP-ZIP"
2863
 
2864
  #@ backwpup
2865
- #: pages/page_backwpupsettings.php:140
2866
  msgid "Use PHP zip class if available! Normaly PCL Zip class will used."
2867
  msgstr "Benutze die PHP ZIP-Klasse, falls verf&uuml;gbar! Normalerweise wird die PCL ZIP-Klasse benutzt."
2868
 
2869
- #@ backwpup
2870
- #: pages/page_backwpupsettings.php:168
2871
- #: pages/page_backwpupsettings.php:169
2872
- msgid "Use corn service of backwpup.com"
2873
- msgstr "Benutze den Cron-Dienst von backwpup.com"
2874
-
2875
- #@ backwpup
2876
- #: pages/page_backwpupsettings.php:171
2877
- msgid "If you check this than the job Schedule will submited too backwpup.com. Backwpup.com will call your blog wp-cron.php to start. <em>Use this service only if you have not a cron service of your hoster, or a blog that have less visits.</em> Pelase make a littel donaten for the plugin if you use this servcie. The service can every time removed by me without a massage."
2878
- msgstr "Wenn Sie diese Einstellung setzen, wird Ihre Auftragsplanung an BackWPup.com &uuml;bermittelt. BackWPup.com wird die Datei wp-cron.php von Ihrer Webseite/ Ihrem Blog aufrufen, um den Auftrag zu starten. <em>Benutzen Sie diesen Dienst nur, wenn Ihr Webhoster keinen Cron-Dienst anbietet, oder Ihre Webseite/ Ihr Blog nur wenige Besucher hat.</em> Bitte spenden Sie doch einen kleinen Betrag, falls Sie diesen Cron-Dienst nutzen. - Wichtiger Hinweis: Dieser externe Service kann jederzeit wieder geschlossen werden, auch ohne Benachrichtigung!"
2879
-
2880
  #@ default
2881
- #: job/job_run.php:95
2882
  #, php-format
2883
  msgid "[INFO]: BackWPup version %1$s, WordPress version %4$s Copyright &copy; %2$s %3$s"
2884
  msgstr "[INFO]: BackWPup Version %1$s, WordPress Version %4$s Urheberrecht &copy; %2$s %3$s"
2885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2886
  #@ backwpup
2887
  #. translators: plugin header field 'Version'
2888
  #: backwpup.php:0
2889
- msgid "2.1.0"
2890
- msgstr "2.1.0"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2891
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: BackWPup 2.x Branch\n"
4
  "Report-Msgid-Bugs-To: http://backwpup.com/forum/\n"
5
  "POT-Creation-Date: 2010-06-23 17:08+0000\n"
6
+ "PO-Revision-Date: 2011-07-31 16:26+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:255
23
  msgid "[WARNING]"
24
  msgstr "[WARNUNG]"
25
 
26
  #@ backwpup
27
+ #: job/job_functions.php:261
28
  msgid "[ERROR]"
29
  msgstr "[FEHLER]"
30
 
31
  #@ backwpup
32
+ #: job/job_functions.php:265
33
  msgid "[DEPRECATED]"
34
  msgstr "[VERALTET]"
35
 
36
  #@ backwpup
37
+ #: job/job_functions.php:268
38
  msgid "[STRICT NOTICE]"
39
  msgstr "[STRENGER HINWEIS]"
40
 
41
  #@ backwpup
42
+ #: job/job_functions.php:271
43
  msgid "[RECOVERABLE ERROR]"
44
  msgstr "[L&Ouml;SBARER FEHLER]"
45
 
46
  #@ backwpup
47
+ #: job/job_functions.php:112
48
  #, php-format
49
  msgid "Memory increased from %1$s to %2$s"
50
  msgstr "Speicher(limit) erh&ouml;ht von %1$s auf %2$s"
51
 
52
  #@ backwpup
53
+ #: job/db_check.php:33
54
+ #: job/db_check.php:35
55
+ #: job/db_check.php:37
56
  #, php-format
57
  msgid "Result of table check for %1$s is: %2$s"
58
  msgstr "Ergebnis f&uuml;r den Tabellencheck f&uuml;r %1$s, ist %2$s"
59
 
60
  #@ backwpup
61
+ #: pages/tools/db_restore.php:68
62
+ #: pages/tools/db_restore.php:79
63
+ #: pages/tools/db_restore.php:82
64
+ #: pages/tools/db_restore.php:85
65
+ #: pages/tools/db_restore.php:90
66
  #, php-format
67
  msgid "BackWPup database error %1$s for query %2$s"
68
  msgstr "BackWPup-Datenbankfehler %1$s f&uuml;r die Anfrage %2$s"
69
 
70
  #@ backwpup
71
+ #: job/db_check.php:48
72
+ #: job/db_check.php:50
73
+ #: job/db_check.php:52
74
  #, php-format
75
  msgid "Result of table repair for %1$s is: %2$s"
76
  msgstr "Ergebnis der Tabellenreparatur f&uuml;r %1$s ist: %2$s"
77
 
78
  #@ backwpup
79
+ #: job/db_check.php:58
80
  msgid "Database check done!"
81
  msgstr "Datenbank-Check fertig!"
82
 
83
  #@ backwpup
84
+ #: job/db_optimize.php:34
85
+ #: job/db_optimize.php:36
86
+ #: job/db_optimize.php:38
87
  #, php-format
88
  msgid "Result of table optimize for %1$s is: %2$s"
89
  msgstr "Ergebnis der Tabellenoptimierung f&uuml;r %1$s ist: %2$s"
90
 
91
  #@ backwpup
92
+ #: job/db_optimize.php:40
93
  msgid "Database optimize done!"
94
  msgstr "Datenbankoptimierung fertig!"
95
 
96
  #@ backwpup
97
+ #: job/dest_ftp.php:62
98
  msgid "Can not Entering Passive Mode"
99
  msgstr "Einstieg in den passiven Modus nicht m&ouml;glich"
100
 
101
  #@ backwpup
102
+ #: job/dest_mail.php:22
103
  msgid "Send mail with SMTP"
104
  msgstr "E-Mail senden mit SMTP"
105
 
106
  #@ backwpup
107
+ #: job/dest_mail.php:26
108
  msgid "Send mail with Sendmail"
109
  msgstr "E-Mail senden mit Sendmail"
110
 
111
  #@ backwpup
112
+ #: job/dest_mail.php:29
113
  msgid "Send mail with PHP mail"
114
  msgstr "E-Mail senden mit PHP mail"
115
 
116
  #@ backwpup
117
+ #: job/dest_mail.php:32
118
  msgid "Creating mail"
119
  msgstr "E-Mail erstellen"
120
 
121
  #@ backwpup
122
+ #: job/dest_mail.php:55
123
  msgid "Send mail...."
124
  msgstr "E-Mail wird gesendet ..."
125
 
126
  #@ backwpup
127
+ #: job/dest_mail.php:61
128
  msgid "Mail send!!!"
129
  msgstr "E-Mail wurde gesendet!!!"
130
 
131
  #@ backwpup
132
+ #: pages/page_backwpupworking.php:33
133
  msgid "Errors:"
134
  msgstr "Fehler:"
135
 
136
  #@ backwpup
137
+ #: pages/page_backwpupworking.php:29
138
  msgid "Warnings:"
139
  msgstr "Warnungen:"
140
 
141
  #@ backwpup
142
  #@ textdomain
143
  #. translators: plugin header field 'Name'
144
+ #: backwpup-functions.php:4
145
+ #: backwpup-functions.php:262
146
+ #: backwpup-functions.php:485
147
  #: backwpup.php:0
148
  msgid "BackWPup"
149
  msgstr "BackWPup"
150
 
151
  #@ backwpup
152
+ #: pages/func_backwpuplogs.php:80
153
  msgid "Job"
154
  msgstr "Auftrag"
155
 
156
  #@ backwpup
157
+ #: pages/func_backwpup.php:57
158
+ #: pages/func_backwpupeditjob.php:171
159
+ #: pages/func_backwpuplogs.php:81
160
  msgid "Type"
161
  msgstr "Typ"
162
 
163
  #@ backwpup
164
+ #: pages/func_backwpuplogs.php:82
165
  msgid "Backup/Log Date/Time"
166
  msgstr "Datensicherung/Protokoll Datum/Zeit"
167
 
168
  #@ backwpup
169
+ #: pages/func_backwpuplogs.php:83
170
  msgid "Status"
171
  msgstr "Status"
172
 
173
  #@ backwpup
174
+ #: pages/func_backwpupbackups.php:184
175
+ #: pages/func_backwpuplogs.php:84
176
  msgid "Size"
177
  msgstr "Gr&ouml;&szlig;e"
178
 
179
  #@ backwpup
180
+ #: pages/func_backwpuplogs.php:85
181
  msgid "Runtime"
182
  msgstr "Laufzeit"
183
 
184
  #@ backwpup
185
+ #: pages/func_backwpup.php:55
186
  msgid "ID"
187
  msgstr "ID"
188
 
189
  #@ backwpup
190
+ #: pages/func_backwpup.php:56
191
  msgid "Job Name"
192
  msgstr "Auftragsname"
193
 
194
  #@ backwpup
195
+ #: pages/func_backwpup.php:59
196
  msgid "Next Run"
197
  msgstr "N&auml;chster Durchlauf"
198
 
199
  #@ backwpup
200
+ #: pages/func_backwpup.php:60
201
  msgid "Last Run"
202
  msgstr "Letzter Durchlauf"
203
 
204
  #@ backwpup
205
+ #: backwpup-functions.php:95
206
+ #: backwpup-functions.php:254
207
  msgid "Support"
208
  msgstr "Hilfe + Unterst&uuml;tzung (Support)"
209
 
210
  #@ backwpup
211
+ #: backwpup-functions.php:96
212
+ #: backwpup-functions.php:253
213
  msgid "FAQ"
214
  msgstr "FAQ"
215
 
216
  #@ backwpup
217
+ #: backwpup-functions.php:97
218
  msgid "Plugin Homepage"
219
  msgstr "Plugin Homepage"
220
 
221
  #@ backwpup
222
+ #: backwpup-functions.php:99
223
+ #: backwpup-functions.php:255
224
  msgid "Donate"
225
  msgstr "Spenden"
226
 
227
  #@ backwpup
228
+ #: backwpup-functions.php:243
229
  msgid "Go to Settings Page"
230
  msgstr "Gehe zur Einstellungsseite"
231
 
232
  #@ backwpup
233
+ #: backwpup-functions.php:17
234
+ #: backwpup-functions.php:243
235
  msgid "Settings"
236
  msgstr "Einstellungen"
237
 
238
  #@ backwpup
239
+ #: backwpup-functions.php:317
240
  msgid "WP XML Export"
241
  msgstr "WP XML Export"
242
 
243
  #@ backwpup
244
+ #: backwpup-functions.php:323
245
  msgid "Database Backup"
246
  msgstr "Datenbank-Sicherung"
247
 
248
  #@ backwpup
249
+ #: backwpup-functions.php:320
250
  #: pages/page_backwpupeditjob.php:78
251
  msgid "File Backup"
252
  msgstr "Dateien-Sicherung"
253
 
254
  #@ backwpup
255
+ #: backwpup-functions.php:326
256
  msgid "Optimize Database Tables"
257
  msgstr "Datenbanktabellen optimieren"
258
 
259
  #@ backwpup
260
+ #: backwpup-functions.php:329
261
  msgid "Check Database Tables"
262
  msgstr "Datenbanktabellen checken"
263
 
264
  #@ backwpup
265
+ #: backwpup-functions.php:408
266
+ #: backwpup-functions.php:438
267
+ #: backwpup-functions.php:466
268
+ #: pages/page_backwpupsettings.php:59
269
  msgid "none"
270
  msgstr "nichts"
271
 
272
  #@ backwpup
273
+ #: backwpup-functions.php:459
274
  msgid "Edit Job"
275
  msgstr "Auftrag bearbeiten"
276
 
277
  #@ backwpup
278
+ #: pages/func_backwpup.php:128
279
  msgid "Running since:"
280
  msgstr "L&auml;uft seit:"
281
 
282
  #@ backwpup
283
+ #: pages/func_backwpup.php:128
284
+ #: pages/func_backwpup.php:144
285
+ #: pages/func_backwpuplogs.php:153
286
+ #: pages/page_backwpupsettings.php:125
287
+ #: pages/page_backwpupsettings.php:131
288
  msgid "sec."
289
  msgstr "Sek."
290
 
291
  #@ backwpup
292
+ #: pages/page_backwpupeditjob.php:28
293
  msgid "BackWPup Job Settings"
294
  msgstr "BackWPup Auftragseinstellungen"
295
 
296
  #@ backwpup
297
+ #: pages/page_backwpupeditjob.php:9
298
  msgid "Job Type"
299
  msgstr "Auftrags-Typ"
300
 
301
  #@ backwpup
302
+ #: pages/func_backwpupeditjob.php:25
303
  msgid ""
304
  "You are about to delete this Job. \n"
305
  " 'Cancel' to stop, 'OK' to delete."
309
 
310
  #@ default
311
  #@ backwpup
312
+ #: pages/func_backwpup.php:47
313
+ #: pages/func_backwpup.php:103
314
+ #: pages/func_backwpupbackups.php:130
315
+ #: pages/func_backwpupbackups.php:227
316
+ #: pages/func_backwpupeditjob.php:25
317
+ #: pages/func_backwpuplogs.php:73
318
+ #: pages/func_backwpuplogs.php:127
319
  msgid "Delete"
320
  msgstr "L&ouml;schen"
321
 
322
  #@ backwpup
323
+ #: pages/func_backwpupeditjob.php:8
324
+ #: pages/func_backwpupeditjob.php:28
325
  msgid "Save Changes"
326
  msgstr "&Auml;nderungen speichern"
327
 
328
  #@ backwpup
329
+ #: pages/page_backwpupeditjob.php:10
330
  msgid "Job Schedule"
331
  msgstr "Auftragsplanung"
332
 
333
  #@ backwpup
334
+ #: pages/func_backwpupeditjob.php:91
335
  msgid "Activate scheduling"
336
  msgstr "Planung aktiv?"
337
 
338
  #@ backwpup
339
+ #: pages/func_backwpupeditjob.php:135
340
  msgid "January"
341
  msgstr "Januar"
342
 
343
  #@ backwpup
344
+ #: pages/func_backwpupeditjob.php:136
345
  msgid "February"
346
  msgstr "Februar"
347
 
348
  #@ backwpup
349
+ #: pages/func_backwpupeditjob.php:137
350
  msgid "March"
351
  msgstr "M&auml;rz"
352
 
353
  #@ backwpup
354
+ #: pages/func_backwpupeditjob.php:138
355
  msgid "April"
356
  msgstr "April"
357
 
358
  #@ backwpup
359
+ #: pages/func_backwpupeditjob.php:139
360
  msgid "May"
361
  msgstr "Mai"
362
 
363
  #@ backwpup
364
+ #: pages/func_backwpupeditjob.php:140
365
  msgid "June"
366
  msgstr "Juni"
367
 
368
  #@ backwpup
369
+ #: pages/func_backwpupeditjob.php:141
370
  msgid "July"
371
  msgstr "Juli"
372
 
373
  #@ backwpup
374
+ #: pages/func_backwpupeditjob.php:143
375
  msgid "September"
376
  msgstr "September"
377
 
378
  #@ backwpup
379
+ #: pages/func_backwpupeditjob.php:144
380
  msgid "October"
381
  msgstr "Oktober"
382
 
383
  #@ backwpup
384
+ #: pages/func_backwpupeditjob.php:145
385
  msgid "November"
386
  msgstr "November"
387
 
388
  #@ backwpup
389
+ #: pages/func_backwpupeditjob.php:146
390
  msgid "December"
391
  msgstr "Dezember"
392
 
393
  #@ backwpup
394
+ #: pages/header_backwpupeditjob.php:262
395
  msgid "Send log"
396
  msgstr "Sende Protokoll"
397
 
398
  #@ backwpup
399
+ #: pages/func_backwpupeditjob.php:60
400
  msgid "E-Mail-Adress:"
401
  msgstr "E-Mail-Adresse:"
402
 
437
  msgstr "Dateien/ Ordner von der Sicherung ausschlie&szlig;en:"
438
 
439
  #@ backwpup
440
+ #: pages/func_backwpupeditjob.php:224
441
+ #: pages/page_backwpupsettings.php:90
442
  msgid "(Oldest files will deleted first.)"
443
  msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
444
 
445
  #@ backwpup
446
+ #: pages/header_backwpupeditjob.php:264
447
  msgid "Backup to FTP Server"
448
  msgstr "Datensicherung zum FTP-Server"
449
 
450
  #@ backwpup
451
+ #: pages/func_backwpupeditjob.php:230
452
  msgid "Hostname:"
453
  msgstr "Hostname:"
454
 
455
  #@ backwpup
456
+ #: pages/func_backwpupeditjob.php:234
457
+ #: pages/func_backwpupeditjob.php:325
458
+ #: pages/page_backwpupsettings.php:159
459
  msgid "Username:"
460
  msgstr "Benutzername:"
461
 
462
  #@ backwpup
463
+ #: pages/func_backwpupeditjob.php:236
464
+ #: pages/func_backwpupeditjob.php:382
465
+ #: pages/page_backwpupsettings.php:164
466
  msgid "Password:"
467
  msgstr "Passwort:"
468
 
469
  #@ backwpup
470
+ #: pages/header_backwpupeditjob.php:270
471
  msgid "Backup to Amazon S3"
472
  msgstr "Datensicherung zu Amazon S3"
473
 
474
  #@ backwpup
475
+ #: pages/func_backwpupeditjob.php:250
476
  msgid "Access Key ID:"
477
  msgstr "Access Key ID (Zugangsschl&uuml;ssel-ID):"
478
 
479
  #@ backwpup
480
+ #: pages/func_backwpupeditjob.php:252
481
  msgid "Secret Access Key:"
482
  msgstr "Secret Access Key (Geheimer Schl&uuml;ssel):"
483
 
484
  #@ backwpup
485
+ #: pages/func_backwpupeditjob.php:254
486
+ #: pages/func_backwpupeditjob.php:279
487
  msgid "Bucket:"
488
  msgstr "Bucket:"
489
 
490
  #@ backwpup
491
+ #: pages/page_backwpupeditjob.php:12
492
  msgid "Backup to E-Mail"
493
  msgstr "Datensicherung via E-Mail"
494
 
495
  #@ backwpup
496
+ #: pages/func_backwpupeditjob.php:403
497
  msgid "Max. File Size for sending Backups with mail:"
498
  msgstr "Maximale Dateigr&ouml;&szlig;e zum Senden von Datensicherungen via E-Mail:"
499
 
500
  #@ backwpup
501
+ #: backwpup-functions.php:474
502
+ #: pages/page_backwpuplogs.php:8
503
  msgid "BackWPup Logs"
504
  msgstr "BackWPup Protokolle"
505
 
506
  #@ backwpup
507
+ #: backwpup-functions.php:5
508
+ #: backwpup-functions.php:488
509
+ #: pages/page_backwpupsettings.php:101
510
  msgid "Jobs"
511
  msgstr "Auftr&auml;ge"
512
 
513
  #@ backwpup
514
+ #: backwpup-functions.php:11
515
+ #: backwpup-functions.php:489
516
+ #: pages/header_backwpupbackups.php:330
517
+ #: pages/header_backwpuplogs.php:61
518
+ #: pages/page_backwpupsettings.php:79
519
  msgid "Logs"
520
  msgstr "Protokolldateien"
521
 
522
  #@ backwpup
523
+ #: backwpup-functions.php:15
524
  msgid "Tools"
525
  msgstr "Werkzeuge"
526
 
527
  #@ backwpup
528
+ #: pages/func_backwpuplogs.php:124
529
  msgid "View log"
530
  msgstr "Protokoll ansehen"
531
 
532
  #@ backwpup
533
+ #: pages/func_backwpuplogs.php:126
534
  msgid "View"
535
  msgstr "Ansehen"
536
 
537
  #@ backwpup
538
+ #: pages/func_backwpuplogs.php:147
539
  msgid "only Log"
540
  msgstr "nur Protokoll"
541
 
545
  msgstr "Einstellungen gespeichert"
546
 
547
  #@ backwpup
548
+ #: pages/header_backwpup.php:35
549
  msgid "Copy of"
550
  msgstr "Kopie von"
551
 
552
  #@ backwpup
553
+ #: pages/page_backwpupsettings.php:10
554
  msgid "BackWPup Settings"
555
  msgstr "BackWPup-Einstellungen"
556
 
557
  #@ backwpup
558
+ #: pages/page_backwpupsettings.php:17
559
  msgid "Send Mail"
560
  msgstr "Send Mail"
561
 
562
  #@ backwpup
563
+ #: pages/page_backwpupsettings.php:34
564
  msgid "PHP: mail()"
565
  msgstr "PHP: mail()"
566
 
567
  #@ backwpup
568
+ #: pages/page_backwpupsettings.php:35
569
  msgid "Sendmail"
570
  msgstr "Sendmail"
571
 
572
  #@ backwpup
573
+ #: pages/page_backwpupsettings.php:36
574
  msgid "SMTP"
575
  msgstr "SMTP"
576
 
577
  #@ backwpup
578
+ #: pages/page_backwpupsettings.php:173
579
+ #: pages/page_backwpupsettings.php:174
580
  msgid "Disable WP-Cron"
581
  msgstr "WP-Cron deaktivieren"
582
 
583
  #@ backwpup
584
+ #: pages/page_backwpuptools.php:8
585
  msgid "BackWPup Tools"
586
  msgstr "BackWPup-Werkzeuge"
587
 
588
  #@ backwpup
589
+ #: pages/page_backwpuptools.php:15
590
  msgid "Database restore"
591
  msgstr "Datenbank wiederherstellen"
592
 
593
  #@ backwpup
594
+ #: pages/page_backwpuptools.php:21
595
+ #: pages/page_backwpuptools.php:40
596
  msgid "Restore"
597
  msgstr "Wiederherstellen"
598
 
599
  #@ backwpup
600
+ #: pages/page_backwpuptools.php:37
601
  msgid "SQL File to restore:"
602
  msgstr "SQL-Datei zur Wiederherstellung:"
603
 
604
  #@ backwpup
605
+ #: backwpup-functions.php:7
606
+ #: pages/page_backwpup.php:8
607
+ #: pages/page_backwpupeditjob.php:28
608
  msgid "Add New"
609
  msgstr "Neuer Auftrag"
610
 
611
  #@ backwpup
612
+ #: pages/func_backwpup.php:97
613
  msgid "Edit:"
614
  msgstr "Bearbeiten:"
615
 
616
  #@ default
617
+ #: pages/func_backwpup.php:100
618
  msgid "Edit"
619
  msgstr "Bearbeiten"
620
 
621
  #@ backwpup
622
+ #: pages/func_backwpup.php:101
623
  msgid "Copy"
624
  msgstr "Kopieren"
625
 
626
  #@ backwpup
627
+ #: pages/func_backwpup.php:104
628
  msgid "Run Now"
629
  msgstr "Jetzt starten"
630
 
631
  #@ backwpup
632
+ #: pages/func_backwpup.php:132
633
  msgid "Inactive"
634
  msgstr "Inaktiv"
635
 
636
  #@ backwpup
637
+ #: pages/func_backwpup.php:144
638
  msgid "Runtime:"
639
  msgstr "Laufzeit:"
640
 
641
  #@ backwpup
642
+ #: pages/func_backwpup.php:146
643
  msgid "None"
644
  msgstr "Nichts"
645
 
646
  #@ backwpup
647
+ #: pages/tools/db_restore.php:34
648
+ #: pages/tools/db_restore.php:53
649
+ #: pages/tools/db_restore.php:68
650
+ #: pages/tools/db_restore.php:79
651
+ #: pages/tools/db_restore.php:82
652
+ #: pages/tools/db_restore.php:85
653
+ #: pages/tools/db_restore.php:90
654
  msgid "ERROR:"
655
  msgstr "FEHLER:"
656
 
657
  #@ backwpup
658
+ #: pages/tools/db_restore.php:34
659
  #, php-format
660
  msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
661
  msgstr "Bitte setzen Sie <i>$table_prefix = '%1$s';</i> innerhalb der Datei wp-config.php"
662
 
663
  #@ backwpup
664
+ #: pages/tools/db_restore.php:53
665
  #, php-format
666
  msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
667
  msgstr "Bitte setzen Sie <i>define('DB_CHARSET', '%1$s');</i> in der Datei wp-config.php"
668
 
669
  #@ backwpup
670
+ #: pages/tools/db_restore.php:74
671
  #, php-format
672
  msgid "%1$s Database Querys done."
673
  msgstr "%1$s Datenbankabfragen fertig."
674
 
675
  #@ backwpup
676
+ #: pages/tools/db_restore.php:75
677
  msgid "Make changes for Blogurl and ABSPATH if needed."
678
  msgstr "Machen Sie &Auml;nderungen an der Blogurl und bei ABSPATH, falls notwendig."
679
 
680
  #@ backwpup
681
+ #: job/wp_export.php:40
682
+ #: job/wp_export.php:42
 
 
 
 
 
683
  msgid "cURL:"
684
  msgstr "cURL:"
685
 
686
  #@ backwpup
687
+ #: job/dest_rsc.php:13
688
  msgid "Connected to Rackspase ..."
689
  msgstr "Verbunden mit Rackspace ..."
690
 
691
  #@ backwpup
692
+ #: job/dest_rsc.php:29
693
+ #: job/dest_rsc.php:63
694
+ #: job/dest_rsc.php:92
695
  msgid "Rackspase Cloud API:"
696
  msgstr "Rackspace Cloud API (Schnittstelle):"
697
 
698
  #@ backwpup
699
+ #: job/dest_rsc.php:34
700
  msgid "Rackspase Cloud Container not exists:"
701
  msgstr "Rackspace Cloud Container existiert nicht:"
702
 
703
  #@ backwpup
704
+ #: job/dest_rsc.php:57
705
  msgid "Backup File transferred to RSC://"
706
  msgstr "Datensicherungsdatei &uuml;bertragen zu RSC://"
707
 
708
  #@ backwpup
709
+ #: job/dest_rsc.php:60
710
  msgid "Can not transfer backup to RSC."
711
  msgstr "Datensicherung kann nicht zu RSC &uuml;bertragen werden."
712
 
713
  #@ backwpup
714
+ #: job/dest_rsc.php:85
715
  msgid "Can not delete file on RSC://"
716
  msgstr "Datei kann nicht gel&ouml;scht werden auf RSC://"
717
 
718
  #@ backwpup
719
+ #: pages/page_backwpupbackups.php:8
720
  msgid "BackWPup Manage Backups"
721
  msgstr "BackWPup-Datensicherungen verwalten"
722
 
723
  #@ backwpup
724
+ #: backwpup-functions.php:13
725
+ #: backwpup-functions.php:490
726
  msgid "Backups"
727
  msgstr "Datensicherungen"
728
 
729
  #@ backwpup
730
+ #: backwpup-functions.php:781
731
  msgid "New"
732
  msgstr "Neu"
733
 
734
  #@ backwpup
735
+ #: pages/func_backwpupeditjob.php:627
736
+ #: pages/func_backwpupeditjob.php:756
 
 
 
 
 
 
 
 
 
 
737
  msgid "Missing Username!"
738
  msgstr "Falscher Benutzername!"
739
 
740
  #@ backwpup
741
+ #: pages/func_backwpupeditjob.php:634
742
  msgid "Missing API Key!"
743
  msgstr "API-Schl&uuml;ssel wird vermisst!"
744
 
745
  #@ backwpup
746
+ #: pages/func_backwpupeditjob.php:655
747
  msgid "No Containerss found!"
748
  msgstr "Keine Container gefunden!"
749
 
750
  #@ backwpup
751
+ #: pages/func_backwpup.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
  msgid "No Jobs."
753
  msgstr "Keine Auftr&auml;ge."
754
 
755
  #@ backwpup
756
+ #: pages/func_backwpup.php:58
757
  msgid "Information"
758
  msgstr "Information"
759
 
760
  #@ backwpup
761
+ #: pages/func_backwpup.php:248
762
  msgid "Files Size:"
763
  msgstr "Gr&ouml;&szlig;e der Dateien:"
764
 
765
  #@ backwpup
766
+ #: pages/func_backwpup.php:250
767
  msgid "Files count:"
768
  msgstr "Dateiz&auml;hler:"
769
 
770
  #@ backwpup
771
+ #: pages/func_backwpup.php:242
772
  msgid "DB Tables:"
773
  msgstr "Datenbank-Tabellen:"
774
 
775
  #@ backwpup
776
+ #: pages/func_backwpup.php:243
777
  msgid "DB Rows:"
778
  msgstr "Datenbank-Zeilen:"
779
 
780
  #@ backwpup
781
+ #: pages/func_backwpup.php:135
782
  msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
783
  msgstr "<a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
784
 
785
  #@ backwpup
786
+ #: pages/func_backwpuplogs.php:68
787
  msgid "No Logs."
788
  msgstr "Keine Protokolldateien."
789
 
790
  #@ backwpup
791
+ #: pages/func_backwpup.php:149
792
+ #: pages/func_backwpupbackups.php:228
793
+ #: pages/func_backwpuplogs.php:128
794
  msgid "Download"
795
  msgstr "Herunterladen"
796
 
797
  #@ backwpup
798
+ #: pages/func_backwpupbackups.php:227
799
  msgid ""
800
  "You are about to delete this Backup Archive. \n"
801
  " 'Cancel' to stop, 'OK' to delete."
804
  " 'Abbrechen' um zu stoppen, 'OK' um zu l&ouml;schen."
805
 
806
  #@ backwpup
807
+ #: pages/func_backwpupbackups.php:242
808
  msgid "?"
809
  msgstr "?"
810
 
811
  #@ backwpup
812
+ #: pages/func_backwpupeditjob.php:97
813
  msgid "Minutes: "
814
  msgstr "Minuten: "
815
 
816
  #@ backwpup
817
+ #: pages/func_backwpupeditjob.php:99
818
+ #: pages/func_backwpupeditjob.php:111
819
+ #: pages/func_backwpupeditjob.php:122
820
+ #: pages/func_backwpupeditjob.php:133
821
+ #: pages/func_backwpupeditjob.php:153
822
  msgid "Any (*)"
823
  msgstr "Alle (*)"
824
 
825
  #@ backwpup
826
+ #: pages/func_backwpupeditjob.php:108
827
  msgid "Hours:"
828
  msgstr "Stunden:"
829
 
830
  #@ backwpup
831
+ #: pages/func_backwpupeditjob.php:142
832
  msgid "Augest"
833
  msgstr "August"
834
 
835
  #@ backwpup
836
+ #: pages/func_backwpupeditjob.php:155
837
+ #: pages/func_backwpupeditjob.php:191
838
  msgid "Sunday"
839
  msgstr "Sonntag"
840
 
841
  #@ backwpup
842
+ #: pages/func_backwpupeditjob.php:156
843
+ #: pages/func_backwpupeditjob.php:192
844
  msgid "Monday"
845
  msgstr "Montag"
846
 
847
  #@ backwpup
848
+ #: pages/func_backwpupeditjob.php:157
849
+ #: pages/func_backwpupeditjob.php:193
850
  msgid "Tuesday"
851
  msgstr "Dienstag"
852
 
853
  #@ backwpup
854
+ #: pages/func_backwpupeditjob.php:158
855
+ #: pages/func_backwpupeditjob.php:194
856
  msgid "Wednesday"
857
  msgstr "Mittwoch"
858
 
859
  #@ backwpup
860
+ #: pages/func_backwpupeditjob.php:159
861
+ #: pages/func_backwpupeditjob.php:195
862
  msgid "Thursday"
863
  msgstr "Donnerstag"
864
 
865
  #@ backwpup
866
+ #: pages/func_backwpupeditjob.php:160
867
+ #: pages/func_backwpupeditjob.php:196
868
  msgid "Friday"
869
  msgstr "Freitag"
870
 
871
  #@ backwpup
872
+ #: pages/func_backwpupeditjob.php:161
873
+ #: pages/func_backwpupeditjob.php:197
874
  msgid "Saturday"
875
  msgstr "Samstag"
876
 
877
  #@ backwpup
878
+ #: pages/func_backwpupeditjob.php:450
879
  msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
880
  msgstr "Arbeiten nach der <a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>-Auftragsplanung:"
881
 
882
  #@ backwpup
883
+ #: pages/func_backwpupeditjob.php:468
884
  msgid "Next runtime:"
885
  msgstr "N&auml;chster Durchlauf:"
886
 
887
  #@ backwpup
888
+ #: pages/header_backwpupeditjob.php:261
889
  msgid "Backup File"
890
  msgstr "Datensicherungsdatei"
891
 
892
  #@ backwpup
893
+ #: pages/func_backwpupeditjob.php:38
894
  msgid "File Prefix:"
895
  msgstr "Datei-Vorsilbe:"
896
 
897
  #@ backwpup
898
+ #: pages/func_backwpupeditjob.php:40
899
  msgid "File Formart:"
900
  msgstr "Dateiformat:"
901
 
902
  #@ backwpup
903
+ #: pages/func_backwpupeditjob.php:43
904
+ #: pages/func_backwpupeditjob.php:45
905
  msgid "Zip"
906
  msgstr "Zip"
907
 
908
  #@ backwpup
909
+ #: pages/func_backwpupeditjob.php:46
910
  msgid "Tar"
911
  msgstr "Tar"
912
 
913
  #@ backwpup
914
+ #: pages/func_backwpupeditjob.php:48
915
+ #: pages/func_backwpupeditjob.php:50
916
  msgid "Tar GZip"
917
  msgstr "Tar GZip"
918
 
919
  #@ backwpup
920
+ #: pages/func_backwpupeditjob.php:52
921
+ #: pages/func_backwpupeditjob.php:54
922
  msgid "Tar BZip2"
923
  msgstr "Tar BZip2"
924
 
957
  msgstr "Blog-Uploads"
958
 
959
  #@ backwpup
960
+ #: pages/func_backwpupeditjob.php:257
961
  msgid "Bucket Region"
962
  msgstr "Bucket Region"
963
 
964
  #@ backwpup
965
+ #: pages/func_backwpupeditjob.php:261
966
  msgid "Save Backups with reduced redundancy!"
967
  msgstr "Sichere Datensicherungen mit reduzierter Redundanz!"
968
 
969
  #@ backwpup
970
+ #: pages/header_backwpupeditjob.php:276
971
  msgid "Backup to Rackspace Cloud"
972
  msgstr "Datensicherung in die Rackspace Cloud"
973
 
974
  #@ backwpup
975
+ #: pages/func_backwpupeditjob.php:327
976
  msgid "API Key:"
977
  msgstr "API-Schl&uuml;ssel"
978
 
979
  #@ backwpup
980
+ #: pages/func_backwpupeditjob.php:306
981
+ #: pages/func_backwpupeditjob.php:329
982
  msgid "Container:"
983
  msgstr "Container:"
984
 
985
  #@ backwpup
986
+ #: pages/func_backwpupeditjob.php:309
987
+ #: pages/func_backwpupeditjob.php:332
988
  msgid "Create Container:"
989
  msgstr "Erstelle Container:"
990
 
991
  #@ backwpup
992
+ #: pages/header_backwpupeditjob.php:249
993
  #, php-format
994
  msgid "Job '%1' changes saved."
995
  msgstr "Auftrag '%1' Ver&auml;nderungen gepeichert."
996
 
997
  #@ backwpup
998
+ #: pages/header_backwpupeditjob.php:249
999
  msgid "Jobs overview."
1000
  msgstr "Auftrags&uuml;berblick"
1001
 
1002
  #@ backwpup
1003
+ #: pages/func_backwpupeditjob.php:243
1004
  msgid "Use FTP Passiv mode."
1005
  msgstr "FTP-Passiv-Modus benutzen."
1006
 
1007
  #@ backwpup
1008
+ #: job/dest_ftp.php:60
1009
  msgid "Entering Passive Mode"
1010
  msgstr "Passivmodus wird betreten"
1011
 
1012
  #@ backwpup
1013
+ #: job/dest_ftp.php:65
1014
  msgid "Entering Normal Mode"
1015
  msgstr "Normalmodus wird betreten"
1016
 
1017
  #@ backwpup
1018
+ #: job/dest_ftp.php:67
1019
  msgid "Can not Entering Normal Mode"
1020
  msgstr "Normalmodus kann nicht betreten werden"
1021
 
1022
  #@ backwpup
1023
+ #: job/dest_ftp.php:75
1024
  msgid "Error getting SYSTYPE"
1025
  msgstr "Fehler, SYSTYPE wird angezeigt"
1026
 
1027
  #@ backwpup
1028
+ #: pages/func_backwpupeditjob.php:242
1029
  msgid "Use SSL-FTP Connection."
1030
  msgstr "Benutze SSL-FTP-Verbindung."
1031
 
1032
  #@ backwpup
1033
+ #: pages/header_backwpupeditjob.php:266
1034
  msgid "Backup to Dropbox"
1035
  msgstr "Datensicherung in die Dropbox"
1036
 
1048
 
1049
  #@ default
1050
  #@ backwpup
1051
+ #: pages/func_backwpup.php:46
1052
+ #: pages/func_backwpup.php:102
1053
  msgid "Export"
1054
  msgstr "Export"
1055
 
1056
  #@ backwpup
1057
+ #: pages/func_backwpup.php:149
1058
  msgid "Download last Backup"
1059
  msgstr "Letzte Datensicherung herunterladen"
1060
 
1061
  #@ backwpup
1062
+ #: pages/func_backwpup.php:151
1063
  msgid "View last Log"
1064
  msgstr "Letztes Protokoll ansehen"
1065
 
1066
  #@ backwpup
1067
+ #: pages/func_backwpup.php:151
1068
  msgid "Log"
1069
  msgstr "Protokoll"
1070
 
1071
  #@ backwpup
1072
+ #: pages/func_backwpupeditjob.php:257
1073
  msgid "US-East (Northern Virginia)"
1074
  msgstr "US-Ost (Nord-Virginia)"
1075
 
1076
  #@ backwpup
1077
+ #: pages/func_backwpupeditjob.php:257
1078
  msgid "US-West (Northern California)"
1079
  msgstr "US-West (Nordkalifornien)"
1080
 
1081
  #@ backwpup
1082
+ #: pages/func_backwpupeditjob.php:257
1083
  msgid "EU (Ireland)"
1084
  msgstr "EU (Irland)"
1085
 
1086
  #@ backwpup
1087
+ #: pages/func_backwpupeditjob.php:257
1088
  msgid "Asia Pacific (Singapore)"
1089
  msgstr "Asien/ Pazifik (Singapur)"
1090
 
1091
  #@ backwpup
1092
+ #: pages/page_backwpupsettings.php:97
1093
  msgid "Gzip Log files!"
1094
  msgstr "Gzip Protokolldateien!"
1095
 
1096
  #@ backwpup
1097
+ #: pages/page_backwpuptools.php:51
1098
  msgid "Import Jobs settings"
1099
  msgstr "Auftrags-Import-Einstellungen"
1100
 
1101
  #@ backwpup
1102
+ #: pages/page_backwpuptools.php:56
1103
+ #: pages/page_backwpuptools.php:61
1104
  msgid "Upload"
1105
  msgstr "Hochladen"
1106
 
1107
  #@ backwpup
1108
+ #: pages/page_backwpuptools.php:66
1109
  msgid "Import Type"
1110
  msgstr "Import-Typ"
1111
 
1112
  #@ backwpup
1113
+ #: pages/page_backwpuptools.php:66
1114
  msgid "No Import"
1115
  msgstr "Kein Import"
1116
 
1117
  #@ backwpup
1118
+ #: pages/page_backwpuptools.php:68
1119
  msgid "Overwrite"
1120
  msgstr "&Uuml;berschreiben"
1121
 
1122
  #@ backwpup
1123
+ #: pages/page_backwpuptools.php:68
1124
  msgid "Append"
1125
  msgstr "Anh&auml;ngen"
1126
 
1127
  #@ backwpup
1128
+ #: pages/page_backwpuptools.php:70
1129
+ #: pages/page_backwpuptools.php:75
1130
  #: pages/page_backwpuptools.php:77
1131
+ #: pages/page_backwpuptools.php:78
 
1132
  msgid "Import"
1133
  msgstr "Import"
1134
 
1135
  #@ backwpup
1136
+ #: pages/page_backwpuptools.php:114
1137
  msgid "Jobs imported!"
1138
  msgstr "Auftr&auml;ge importiert!"
1139
 
1140
  #@ backwpup
1141
+ #: pages/func_backwpupeditjob.php:690
1142
  msgid "Missing Hostname!"
1143
  msgstr "Hostname (Server) nicht angegeben!"
1144
 
1145
  #@ backwpup
1146
+ #: pages/func_backwpupeditjob.php:697
1147
  msgid "Missing Account Name!"
1148
  msgstr "Kontoname (Benutzername) nicht angegeben!"
1149
 
1150
  #@ backwpup
1151
+ #: pages/func_backwpupeditjob.php:704
 
1152
  msgid "Missing Access Key!"
1153
  msgstr "Zugangsschl&uuml;ssel (Access Key) nicht angegeben!"
1154
 
1155
  #@ backwpup
1156
+ #: pages/func_backwpupeditjob.php:721
1157
  msgid "No Container found!"
1158
  msgstr "Kein Container gefunden!"
1159
 
1160
  #@ backwpup
1161
+ #: pages/func_backwpupeditjob.php:257
1162
  msgid "Asia Pacific (Japan)"
1163
  msgstr "Asien Pazifik (Japan)"
1164
 
1165
  #@ backwpup
1166
+ #: pages/header_backwpupeditjob.php:274
1167
  msgid "Backup to Micosoft Azure (Blob)"
1168
  msgstr "Datensicherung zu Microsoft Azure (Blob)"
1169
 
1170
  #@ backwpup
1171
+ #: pages/func_backwpupeditjob.php:300
1172
  msgid "Host:"
1173
  msgstr "Host (Server):"
1174
 
1175
  #@ backwpup
1176
+ #: pages/func_backwpupeditjob.php:301
1177
  msgid "Normely: blob.core.windows.net"
1178
  msgstr "Normalerweise: blob.core.windows.net"
1179
 
1180
  #@ backwpup
1181
+ #: pages/func_backwpupeditjob.php:302
1182
  msgid "Account Name:"
1183
  msgstr "Kontoname/ Benutzername:"
1184
 
1185
  #@ backwpup
1186
+ #: pages/func_backwpupeditjob.php:275
1187
+ #: pages/func_backwpupeditjob.php:304
1188
  msgid "Access Key:"
1189
  msgstr "Zugangsschl&uuml;ssel (Access Key):"
1190
 
1191
  #@ backwpup
1192
+ #: pages/func_backwpupeditjob.php:264
1193
+ #: pages/func_backwpupeditjob.php:288
1194
+ #: pages/func_backwpupeditjob.php:315
1195
+ #: pages/func_backwpupeditjob.php:338
1196
+ #: pages/func_backwpupeditjob.php:370
1197
+ #: pages/func_backwpupeditjob.php:392
1198
  msgid "Create Account"
1199
  msgstr "Konto erstellen"
1200
 
1201
  #@ backwpup
1202
+ #: job/dest_dropbox.php:32
1203
  msgid "No free space left on DropBox!!!"
1204
  msgstr "Kein freier Speicherplatz mehr &uuml;brig auf Dropbox!!!"
1205
 
1206
  #@ backwpup
1207
+ #: pages/func_backwpupeditjob.php:120
1208
  msgid "Day of Month:"
1209
  msgstr "Tag des Monats:"
1210
 
1211
  #@ backwpup
1212
+ #: pages/func_backwpupeditjob.php:151
1213
  msgid "Day of Week:"
1214
  msgstr "Wochentag:"
1215
 
1216
  #@ backwpup
1217
+ #: pages/func_backwpupeditjob.php:62
1218
  msgid "Only send an e-mail if there are errors."
1219
  msgstr "Eine E-Mail nur senden, wenn Fehler auftraten."
1220
 
1224
  msgstr "Kurze INSERTs benutzen, statt kompletter (mit Schl&uuml;ssel)"
1225
 
1226
  #@ backwpup
1227
+ #: pages/func_backwpupeditjob.php:241
1228
+ #: pages/func_backwpupeditjob.php:260
1229
+ #: pages/func_backwpupeditjob.php:285
1230
+ #: pages/func_backwpupeditjob.php:312
1231
+ #: pages/func_backwpupeditjob.php:335
1232
+ #: pages/func_backwpupeditjob.php:367
1233
+ #: pages/func_backwpupeditjob.php:389
1234
  msgid "(Oldest files will be deleted first.)"
1235
  msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
1236
 
1237
  #@ backwpup
1238
+ #: pages/func_backwpupeditjob.php:349
1239
  msgid "Login:"
1240
  msgstr "Login:"
1241
 
1242
  #@ backwpup
1243
+ #: pages/func_backwpupeditjob.php:351
1244
  msgid "Not authenticated!"
1245
  msgstr "Nicht authentifiziert!"
1246
 
1247
  #@ backwpup
1248
+ #: pages/func_backwpupeditjob.php:351
1249
  msgid "Authenticate!"
1250
  msgstr "Authentifizieren!"
1251
 
1252
  #@ backwpup
1253
+ #: pages/func_backwpupeditjob.php:353
1254
  msgid "Authenticated!"
1255
  msgstr "Authentifiziert!"
1256
 
1257
  #@ backwpup
1258
+ #: pages/func_backwpupeditjob.php:353
1259
  msgid "Delete!"
1260
  msgstr "L&ouml;schen!"
1261
 
1262
  #@ backwpup
1263
+ #: pages/func_backwpupeditjob.php:380
1264
+ #: pages/func_backwpupeditjob.php:400
1265
  msgid "E-mail address:"
1266
  msgstr "E-Mail-Adresse:"
1267
 
1268
  #@ backwpup
1269
+ #: pages/header_backwpupeditjob.php:225
1270
  msgid "Dropbox authentication deleted!"
1271
  msgstr "Dropbox-Authentifizierung gel&ouml;scht!"
1272
 
1273
  #@ backwpup
1274
+ #: pages/page_backwpupsettings.php:176
1275
  msgid "Use your host's Cron Job and disable WP-Cron"
1276
  msgstr "Den Cron-Job Ihres Webhosters/ -Servers benutzen und WP-Cron deaktivieren"
1277
 
1278
  #@ backwpup
1279
+ #: pages/header_backwpupeditjob.php:268
 
 
 
 
 
 
 
 
 
 
1280
  msgid "Backup to SugarSync"
1281
  msgstr "Datensicherung zu SugarSync"
1282
 
1283
  #@ backwpup
1284
+ #: job/dest_sugarsync.php:19
1285
  msgid "No free space left on SugarSync!!!"
1286
  msgstr "Sie haben keinen freien Speicherplatz mehr &uuml;brig bei SugarSync!!!"
1287
 
1288
  #@ backwpup
1289
+ #: pages/func_backwpupeditjob.php:360
1290
+ #: pages/func_backwpupeditjob.php:384
1291
  msgid "Root:"
1292
  msgstr "Root:"
1293
 
1294
  #@ backwpup
1295
+ #: pages/func_backwpupeditjob.php:763
1296
  msgid "Missing Password!"
1297
  msgstr "Passwort fehlt!"
1298
 
1299
  #@ backwpup
1300
+ #: pages/func_backwpupeditjob.php:783
1301
  msgid "No Syncfolders found!"
1302
  msgstr "Keine Sync-Ordner gefunden!"
1303
 
1304
  #@ backwpup
1305
+ #: pages/header_backwpupeditjob.php:24
1306
  msgid "Dropbox authentication complete!"
1307
  msgstr "Dropbox-Authentifizierung vollst&auml;ndig!"
1308
 
1309
  #@ backwpup
1310
+ #: backwpup-functions.php:9
 
 
 
 
 
 
 
 
 
 
1311
  msgid "Working"
1312
  msgstr "In Bearbeitung"
1313
 
1314
  #@ backwpup
1315
+ #: backwpup-functions.php:394
1316
  msgid "View Log:"
1317
  msgstr "Protokoll ansehen:"
1318
 
1319
  #@ backwpup
1320
+ #: backwpup-functions.php:396
1321
+ #: pages/func_backwpuplogs.php:135
1322
  #, php-format
1323
  msgid "%d ERROR"
1324
  msgid_plural "%d ERRORS"
1326
  msgstr[1] "%d FEHLER"
1327
 
1328
  #@ backwpup
1329
+ #: backwpup-functions.php:398
1330
+ #: pages/func_backwpuplogs.php:137
1331
  #, php-format
1332
  msgid "%d WARNING"
1333
  msgid_plural "%d WARNINGS"
1335
  msgstr[1] "%d WARNUNGEN"
1336
 
1337
  #@ backwpup
1338
+ #: backwpup-functions.php:400
1339
+ #: pages/func_backwpuplogs.php:139
1340
  msgid "O.K."
1341
  msgstr "O.K."
1342
 
1343
  #@ backwpup
1344
+ #: backwpup-functions.php:426
1345
  msgid "How many of the lastes logs would you like to display?"
1346
  msgstr "Wieviele der letzten Protokolle wollen Sie anzeigen lassen?"
1347
 
1348
  #@ backwpup
1349
+ #: backwpup-functions.php:452
1350
  #, php-format
1351
  msgid "working since %d sec."
1352
  msgstr "in Arbeit seit %d Sek."
1353
 
1354
  #@ backwpup
1355
+ #: backwpup-functions.php:453
1356
+ #: pages/func_backwpup.php:107
1357
  msgid "View!"
1358
  msgstr "Ansehen!"
1359
 
1360
  #@ backwpup
1361
+ #: backwpup-functions.php:454
1362
+ #: pages/func_backwpup.php:108
1363
  msgid "Abort!"
1364
  msgstr "Abbrechen!"
1365
 
1366
  #@ backwpup
1367
+ #: backwpup-functions.php:475
1368
  msgid "BackWPup Aktive Jobs"
1369
  msgstr "BackWPup aktive Auftr&auml;ge"
1370
 
1371
  #@ backwpup
1372
+ #: job/dest_ftp.php:93
 
 
 
 
 
1373
  msgid "Upload to FTP now started ... "
1374
  msgstr "Hochladen ins FTP-Verzeichnis hat begonnen ... "
1375
 
1376
  #@ backwpup
1377
+ #: job/dest_rsc.php:4
1378
  msgid "Try to sending backup file to Rackspace Cloud..."
1379
  msgstr "Versuche Datensicherungsdatei an die Rackspace Cloud zu senden..."
1380
 
1381
  #@ backwpup
1382
+ #: job/dest_rsc.php:53
1383
  msgid "Upload to RSC now started ... "
1384
  msgstr "Hochladen zu RSC hat begonnen ... "
1385
 
1386
  #@ backwpup
1387
+ #: job/job_functions.php:487
1388
  msgid "To many restarts...."
1389
  msgstr "Zu viele Neustarts..."
1390
 
1391
  #@ backwpup
1392
+ #: job/job_functions.php:528
1393
  msgid "Script stop! Will started again now!"
1394
  msgstr "Skript-Stop! Wird jetzt wieder neu gestartet!"
1395
 
1396
  #@ backwpup
1397
+ #: job/job_start.php:15
1398
  msgid "A job already running!"
1399
  msgstr "Es l&auml;uft bereits ein Auftrag!"
1400
 
1401
  #@ backwpup
1402
+ #: job/job_start.php:29
1403
  msgid "Temp dir not writeable"
1404
  msgstr "Temp-Verzeichnis nicht beschreibbar"
1405
 
1406
  #@ backwpup
1407
+ #: job/job_start.php:130
1408
  msgid "Log folder not writeable!"
1409
  msgstr "Protokolldateien-Ordner nicht beschreibbar!"
1410
 
1411
  #@ backwpup
1412
+ #: job/job_start.php:199
1413
  msgid "Backup folder not writeable!"
1414
  msgstr "Datensicherungs-Ordner nicht beschreibbar!"
1415
 
1416
  #@ backwpup
1417
+ #: pages/func_backwpupbackups.php:125
1418
  msgid "No Files found."
1419
  msgstr "Keine Dateien gefunden."
1420
 
1421
  #@ backwpup
1422
+ #: pages/func_backwpupbackups.php:145
1423
  msgid "Change Destination"
1424
  msgstr "Ziel &auml;ndern"
1425
 
1426
  #@ backwpup
1427
+ #: pages/func_backwpupbackups.php:182
1428
  msgid "File"
1429
  msgstr "Datei"
1430
 
1431
  #@ backwpup
1432
+ #: pages/func_backwpupbackups.php:183
1433
+ #: pages/func_backwpupbackups.php:185
1434
  msgid "Folder"
1435
  msgstr "Ordner"
1436
 
1437
  #@ backwpup
1438
+ #: pages/func_backwpupbackups.php:186
1439
  msgid "Time"
1440
  msgstr "Zeit"
1441
 
1442
  #@ backwpup
1443
+ #: pages/func_backwpupbackups.php:497
1444
+ #: pages/header_backwpupbackups.php:144
1445
  msgid "Login failure!"
1446
  msgstr "Anmeldung fehlgeschlagen!"
1447
 
1448
  #@ backwpup
1449
+ #: pages/func_backwpupeditjob.php:131
1450
  msgid "Month:"
1451
  msgstr "Monat:"
1452
 
1453
  #@ backwpup
1454
+ #: pages/func_backwpupeditjob.php:277
1455
  msgid "Secret:"
1456
  msgstr "Geheimnis (secret):"
1457
 
1458
  #@ backwpup
1459
+ #: pages/func_backwpupeditjob.php:362
1460
  msgid "dropbox"
1461
  msgstr "dropbox"
1462
 
1463
  #@ backwpup
1464
+ #: pages/func_backwpupeditjob.php:363
1465
  msgid "sandbox (disabled by DropBox)"
1466
  msgstr "sandbox (deaktiviert von Dropbox)"
1467
 
1468
  #@ backwpup
1469
+ #: pages/header_backwpup.php:93
 
 
 
 
 
1470
  msgid "Job will be terminated."
1471
  msgstr "Auftrag wird beendet."
1472
 
1473
  #@ backwpup
1474
+ #: pages/header_backwpup.php:96
1475
  msgid "Process killed with PID:"
1476
  msgstr "Prozess abgew&uuml;rgt mit PID:"
1477
 
1478
  #@ backwpup
1479
+ #: pages/header_backwpup.php:98
1480
  msgid "Can't kill process with PID:"
1481
  msgstr "Prozess mit PID kann nicht abgew&uuml;rgt werden:"
1482
 
1483
  #@ backwpup
1484
+ #: pages/header_backwpupeditjob.php:272
1485
  msgid "Backup to Google storage"
1486
  msgstr "Datensicherung zu Google Storage"
1487
 
1488
  #@ backwpup
1489
+ #: pages/header_backwpupworking.php:12
1490
  msgid "A job alredy running!!! Pleace try again if its done."
1491
  msgstr "Ein Auftrag l&auml;uft gegenw&auml;rtig!!! Bitte versuchen Sie es noch einmal, wenn dieser abgeschlossen ist."
1492
 
1493
  #@ backwpup
1494
+ #: pages/header_backwpupworking.php:24
1495
  msgid "A job is running!!!"
1496
  msgstr "Ein Auftr&auml;g l&auml;uft gegenw&auml;rtig!!!"
1497
 
1498
  #@ backwpup
1499
+ #: pages/header_backwpupworking.php:28
1500
  msgid "Nothing..."
1501
  msgstr "Nichts derzeit ..."
1502
 
1503
  #@ backwpup
1504
+ #: pages/page_backwpup.php:8
1505
  msgid "BackWPup Jobs"
1506
  msgstr "BackWPup Auftr&auml;ge"
1507
 
1511
  msgstr "Datenbanktabellen, die benutzt werden:"
1512
 
1513
  #@ backwpup
1514
+ #: pages/page_backwpupsettings.php:21
1515
  msgid "Sender email"
1516
  msgstr "Absender-E-Mail-Adresse"
1517
 
1518
  #@ backwpup
1519
+ #: pages/page_backwpupsettings.php:26
1520
  msgid "Sender name"
1521
  msgstr "Absendername"
1522
 
1523
  #@ backwpup
1524
+ #: pages/page_backwpupsettings.php:30
1525
  msgid "Send mail method"
1526
  msgstr "E-Mail-Versandmethode"
1527
 
1528
  #@ backwpup
1529
+ #: pages/page_backwpupsettings.php:42
1530
  msgid "Sendmail path"
1531
  msgstr "Sendmail-Pfad"
1532
 
1533
  #@ backwpup
1534
+ #: pages/page_backwpupsettings.php:49
1535
  msgid "SMTP hostname"
1536
  msgstr "SMTP Hostname"
1537
 
1538
  #@ backwpup
1539
+ #: pages/page_backwpupsettings.php:56
1540
  msgid "SMTP secure connection"
1541
  msgstr "SMTP Sichere Verbindung"
1542
 
1543
  #@ backwpup
1544
+ #: pages/page_backwpupsettings.php:66
1545
  msgid "SMTP username"
1546
  msgstr "SMTP-Benutzername"
1547
 
1548
  #@ backwpup
1549
+ #: pages/page_backwpupsettings.php:72
1550
  msgid "SMTP password"
1551
  msgstr "SMTP-Passwort"
1552
 
1553
  #@ backwpup
1554
+ #: pages/page_backwpupsettings.php:83
 
 
 
 
 
1555
  msgid "Log file Folder"
1556
  msgstr "Protokolldateien-Ordner"
1557
 
1558
  #@ backwpup
1559
+ #: pages/page_backwpupsettings.php:88
1560
  msgid "Max. Log Files in Folder"
1561
  msgstr "Max. Protokolldateien im Ordner"
1562
 
1563
  #@ backwpup
1564
+ #: pages/page_backwpupsettings.php:94
1565
+ #: pages/page_backwpupsettings.php:95
1566
  msgid "Compression"
1567
  msgstr "Komprimierung"
1568
 
1569
  #@ backwpup
1570
+ #: pages/page_backwpupsettings.php:105
 
 
 
 
 
1571
  msgid "Max. retrys for job steps"
1572
  msgstr "Max. Wiederholungsversuche f&uuml;r Abarbeitungsschritte bei Auftr&auml;gen"
1573
 
1574
  #@ backwpup
1575
+ #: pages/page_backwpupsettings.php:169
 
 
 
 
 
1576
  msgid "WP-Cron"
1577
  msgstr "WP-Cron"
1578
 
1579
  #@ backwpup
1580
+ #: pages/page_backwpuptools.php:18
1581
  msgid "DB Restore"
1582
  msgstr "DB-Wiederherstellung"
1583
 
1584
  #@ backwpup
1585
+ #: pages/page_backwpuptools.php:54
1586
  msgid "Select file to import:"
1587
  msgstr "Datei zum Importieren ausw&auml;hlen:"
1588
 
1589
  #@ backwpup
1590
+ #: pages/page_backwpuptools.php:62
1591
  msgid "Select jobs to import"
1592
  msgstr "Auftr&auml;ge zum Importieren ausw&auml;hlen"
1593
 
1594
  #@ backwpup
1595
+ #: pages/page_backwpupworking.php:9
1596
  msgid "BackWPup Working"
1597
  msgstr "BackWPup arbeitet"
1598
 
1599
  #@ backwpup
1600
+ #: backwpup-functions.php:487
1601
  msgid "See Working!"
1602
  msgstr "Siehe unter 'In Bearbeitung'!"
1603
 
1607
  msgstr "BackWPup Auftrag"
1608
 
1609
  #@ backwpup
1610
+ #: pages/page_backwpupsettings.php:143
1611
  msgid "WP Admin Bar"
1612
  msgstr "WordPress Adminbar"
1613
 
1614
  #@ backwpup
1615
+ #: pages/page_backwpupsettings.php:147
1616
+ #: pages/page_backwpupsettings.php:148
1617
  msgid "Admin Bar"
1618
  msgstr "Adminbar"
1619
 
1620
  #@ backwpup
1621
+ #: pages/page_backwpupsettings.php:150
1622
  msgid "Show BackWPup Links in Admin Bar."
1623
  msgstr "BackWPup-Links in der Adminbar anzeigen."
1624
 
1625
  #@ backwpup
1626
+ #: pages/func_backwpupeditjob.php:55
 
 
 
 
 
 
1627
  msgid "Preview:"
1628
  msgstr "Vorschau:"
1629
 
1630
  #@ backwpup
1631
+ #: pages/func_backwpupeditjob.php:221
1632
  msgid "Full Path to folder for Backup Files:"
1633
  msgstr "Kompletter Pfad zum Ordner f&uuml;r Datensicherungsdateien:"
1634
 
1635
  #@ backwpup
1636
+ #: pages/func_backwpupeditjob.php:223
1637
  msgid "Your WordPress dir is:"
1638
  msgstr "Ihr WordPress-Verzeichnis ist:"
1639
 
1640
  #@ backwpup
1641
+ #: pages/func_backwpupeditjob.php:224
1642
+ #: pages/func_backwpupeditjob.php:389
1643
  msgid "Max. backup files in folder:"
1644
  msgstr "Max. Anzahl von Dateien im Ordner:"
1645
 
1646
  #@ backwpup
1647
+ #: pages/func_backwpupeditjob.php:238
1648
  msgid "Folder on Server:"
1649
  msgstr "Ordner auf dem Server:"
1650
 
1651
  #@ backwpup
1652
+ #: pages/func_backwpupeditjob.php:241
1653
  msgid "Max. backup files in FTP folder:"
1654
  msgstr "Max. Anzahl von Dateien im FTP-Ordner:"
1655
 
1656
  #@ backwpup
1657
+ #: pages/func_backwpupeditjob.php:257
1658
+ #: pages/func_backwpupeditjob.php:282
1659
  msgid "Create bucket:"
1660
  msgstr "Bucket erstellen:"
1661
 
1662
  #@ backwpup
1663
+ #: pages/func_backwpupeditjob.php:258
1664
+ #: pages/func_backwpupeditjob.php:283
1665
  msgid "Folder in bucket:"
1666
  msgstr "Ordner im Bucket:"
1667
 
1668
  #@ backwpup
1669
+ #: pages/func_backwpupeditjob.php:260
1670
+ #: pages/func_backwpupeditjob.php:285
1671
  msgid "Max. backup files in bucket folder:"
1672
  msgstr "Max. Anzahl Datensicherungsdateien im Bucket-Ordner:"
1673
 
1674
  #@ backwpup
1675
+ #: pages/func_backwpupeditjob.php:265
1676
+ #: pages/func_backwpupeditjob.php:289
1677
  msgid "Find Keys"
1678
  msgstr "Schl&uuml;ssel (Keys) finden"
1679
 
1680
  #@ backwpup
1681
+ #: pages/func_backwpupeditjob.php:266
1682
+ #: pages/func_backwpupeditjob.php:290
1683
+ #: pages/func_backwpupeditjob.php:340
1684
+ #: pages/func_backwpupeditjob.php:371
1685
+ #: pages/func_backwpupeditjob.php:393
1686
  msgid "Webinterface"
1687
  msgstr "Web-Oberfl&auml;che"
1688
 
1689
  #@ backwpup
1690
+ #: pages/func_backwpupeditjob.php:310
1691
  msgid "Folder in Container:"
1692
  msgstr "Ordner im Container:"
1693
 
1694
  #@ backwpup
1695
+ #: pages/func_backwpupeditjob.php:312
1696
+ #: pages/func_backwpupeditjob.php:335
1697
  msgid "Max. backup files in container folder:"
1698
  msgstr "Max. Anzahl von Dateien im Container-Ordner:"
1699
 
1700
  #@ backwpup
1701
+ #: pages/func_backwpupeditjob.php:316
1702
+ #: pages/func_backwpupeditjob.php:339
1703
  msgid "Find Key"
1704
  msgstr "Schl&uuml;ssel (Key) finden"
1705
 
1706
  #@ backwpup
1707
+ #: pages/func_backwpupeditjob.php:333
1708
  msgid "Folder in container:"
1709
  msgstr "Ordner im Container:"
1710
 
1711
  #@ backwpup
1712
+ #: pages/func_backwpupeditjob.php:365
1713
+ #: pages/func_backwpupeditjob.php:387
1714
  msgid "Folder:"
1715
  msgstr "Ordner:"
1716
 
1717
  #@ backwpup
1718
+ #: pages/func_backwpupeditjob.php:367
1719
  msgid "Max. backup files in Dropbox folder:"
1720
  msgstr "Max. Anzahl von Dateien im Dropbox-Ordner:"
1721
 
1722
  #@ backwpup
1723
+ #: pages/func_backwpupeditjob.php:456
1724
  #, php-format
1725
  msgid "ATTENTION: Job runs every %d mins.!!!"
1726
  msgstr "ACHTUNG: Auftrag l&auml;uft alle %d Minuten!"
1727
 
1728
  #@ backwpup
1729
+ #: pages/func_backwpupeditjob.php:462
1730
  #, php-format
1731
  msgid "ATTENTION: Job runs every %d houers.!!!"
1732
  msgstr "ACHTUNG: Auftrag l&auml;uft alle %d Stunden!"
1733
 
1734
  #@ backwpup
1735
+ #: pages/page_backwpupeditjob.php:11
1736
  msgid "Backup to Folder"
1737
  msgstr "Datensicherung in Ordner"
1738
 
1739
  #@ backwpup
1740
+ #: pages/page_backwpupsettings.php:124
1741
  msgid "Max. normal script runtime:"
1742
  msgstr "Max. regul&auml;re Skript-Laufzeit:"
1743
 
1744
  #@ backwpup
1745
+ #: pages/page_backwpupsettings.php:126
1746
  msgid "Script runtime will reset on many job functions. You can only set it if safemode off. Default runtime is 30 sec. Your ini setting is in sec.:"
1747
  msgstr "Die Skript-Laufzeit wird sich bei vielen Auftrags-Funktionen zur&uuml;cksetzen. Sie k&ouml;nnen sie nur festlegen, wenn PHP <code>safe_mode</code> ausgeschaltet (off) ist. Die Standardlaufzeit sind 30 Sekunden. Ihre (PHP-) ini-Einstellung in Sekunden ist: "
1748
 
1749
  #@ backwpup
1750
+ #: pages/page_backwpupsettings.php:130
1751
  msgid "Max. long script runtime:"
1752
  msgstr "Max. lange Skript-Laufzeit:"
1753
 
1754
  #@ backwpup
1755
+ #: pages/func_backwpupeditjob.php:232
1756
+ #: pages/page_backwpupsettings.php:52
 
 
 
 
 
1757
  msgid "Port:"
1758
  msgstr "Port:"
1759
 
1760
  #@ backwpup
1761
+ #: backwpup-functions.php:94
1762
  msgid "For more information:"
1763
  msgstr "F&uuml;r weitere Informationen:"
1764
 
1765
  #@ backwpup
1766
+ #: backwpup-functions.php:100
1767
  msgid "Flattr"
1768
  msgstr "Flattr"
1769
 
1770
  #@ backwpup
1771
+ #: pages/header_backwpup.php:78
1772
  msgid "Aborted by user!!!"
1773
  msgstr "Abgebrochen vom Benutzer!!!"
1774
 
1775
  #@ backwpup
1776
+ #: pages/header_backwpupworking.php:33
 
 
 
 
 
1777
  msgid "Here you see working jobs or logfiles"
1778
  msgstr "Hier k&ouml;nnen Sie gerade aktive Auftr&auml;ge oder Protokolle einsehen."
1779
 
1780
  #@ backwpup
1781
+ #: pages/page_backwpupsettings.php:144
1782
  msgid "Will you see BackWPup in the WordPress Admin Bar?"
1783
  msgstr "M&ouml;chten Sie BackWPup-Men&uuml;punkte in der WordPress-Adminbar sehen?"
1784
 
1785
  #@ backwpup
1786
+ #: pages/page_backwpupsettings.php:170
1787
  msgid "If you would use the cron job of your hoster you must point it to the url:"
1788
  msgstr "Wenn Sie den Cronjob Ihres Webhosting-Anbieters nutzen m&ouml;chten, m&uuml;ssen Sie diesen zu dieser URL verweisen:"
1789
 
1790
  #@ backwpup
1791
+ #: backwpup-functions.php:101
1792
  msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1793
  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."
1794
 
1795
  #@ backwpup
1796
+ #: job/job_run.php:115
1797
  msgid "[INFO]: BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1798
  msgstr "[INFO]: 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."
1799
 
1800
  #@ backwpup
1801
+ #: job/job_run.php:116
1802
  msgid "[INFO]: BackWPup job:"
1803
  msgstr "[INFO]: BackWPup Auftrag:"
1804
 
1805
  #@ backwpup
1806
+ #: job/job_run.php:118
1807
  msgid "[INFO]: BackWPup cron:"
1808
  msgstr "[INFO]: BackWPup-Planung (Cron):"
1809
 
1810
  #@ backwpup
1811
+ #: job/job_run.php:123
1812
  msgid "[INFO]: PHP ver.:"
1813
  msgstr "[INFO]: PHP-Version:"
1814
 
1815
  #@ backwpup
1816
+ #: job/job_run.php:126
1817
  msgid "[INFO]: MySQL ver.:"
1818
  msgstr "[INFO]: MySQL-Version:"
1819
 
1820
  #@ backwpup
1821
+ #: job/job_run.php:129
1822
  msgid "[INFO]: curl ver.:"
1823
  msgstr "[INFO]: cURL-Version:"
1824
 
1825
  #@ backwpup
1826
+ #: job/job_run.php:131
1827
  msgid "[INFO]: Temp folder is:"
1828
  msgstr "[INFO]: Temp-Ordner ist:"
1829
 
1830
  #@ backwpup
1831
+ #: job/job_run.php:133
1832
  msgid "[INFO]: Backup file is:"
1833
  msgstr "[INFO]: Datensicherungsdatei ist:"
1834
 
1835
  #@ backwpup
1836
+ #: pages/func_backwpupeditjob.php:92
1837
  msgid "advanced"
1838
  msgstr "erweitert"
1839
 
1840
  #@ backwpup
1841
+ #: pages/func_backwpupeditjob.php:93
1842
  msgid "basic"
1843
  msgstr "einfach"
1844
 
1845
  #@ backwpup
1846
+ #: pages/func_backwpupeditjob.php:176
1847
  msgid "Hour"
1848
  msgstr "Stunde"
1849
 
1850
  #@ backwpup
1851
+ #: pages/func_backwpupeditjob.php:179
1852
  msgid "Minute"
1853
  msgstr "Minute"
1854
 
1855
  #@ backwpup
1856
+ #: pages/func_backwpupeditjob.php:183
1857
  msgid "monthly"
1858
  msgstr "monatlich"
1859
 
1860
  #@ backwpup
1861
+ #: pages/func_backwpupeditjob.php:184
1862
  msgid "on"
1863
  msgstr "am"
1864
 
1865
  #@ backwpup
1866
+ #: pages/func_backwpupeditjob.php:189
1867
  msgid "weekly"
1868
  msgstr "w&ouml;chentl."
1869
 
1870
  #@ backwpup
1871
+ #: pages/func_backwpupeditjob.php:203
1872
  msgid "daily"
1873
  msgstr "t&auml;glich"
1874
 
1875
  #@ backwpup
1876
+ #: pages/func_backwpupeditjob.php:209
1877
  msgid "hourly"
1878
  msgstr "st&uuml;ndlich"
1879
 
1880
  #@ backwpup
1881
+ #: pages/func_backwpupeditjob.php:466
1882
  msgid "ATTENTION: Can't calculate cron!!!"
1883
  msgstr "ACHTUNG: Cron (Auftragsplanung) kann nicht berechnet werden!!!"
1884
 
1888
  msgstr "Hier ist der Auftrags&uuml;berblick mit einigen Informationen. Sie k&ouml;nnen einige Informationen zu den Auftr&auml;gen einsehen, wieviele, kann &uuml;ber den Ansehen-Button ge&auml;ndert werden. Sie k&ouml;nnen auch die Auftr&auml;ge verwalten oder aktive Auftr&auml;ge abbrechen. Einige Links wurden hinzugef&uuml;gt, damit Sie direkt auf das letzte Protokoll oder die letzte Datensicherungsdatei via Download zugreifen k&ouml;nnen."
1889
 
1890
  #@ backwpup
1891
+ #: pages/header_backwpupbackups.php:328
1892
  msgid "Here you see a list of backup files. Change the destionation to jobname:destination to become a list of backups from other destinations and jobs. Then you kann delete or download backup files."
1893
  msgstr "Hier sehen Sie eine Liste der Datensicherungsdateien. Ver&auml;ndern Sie das Ziel via Auftragsname:Ziel, um eine entsprechende Liste der Datensicherungen, Ziele und Auftr&auml;ge zu erhalten. Dann k&ouml;nnen Sie Datensicherungsdateien l&ouml;schen oder herunterladen."
1894
 
 
 
 
 
 
1895
  #@ backwpup
1896
  #. translators: plugin header field 'PluginURI'
1897
  #: backwpup.php:0
1905
  msgstr "WordPress-Datensicherung und mehr ..."
1906
 
1907
  #@ backwpup
1908
+ #: pages/func_backwpup.php:240
1909
  msgid "DB Size:"
1910
  msgstr "Datenbankgr&ouml;&szlig;e:"
1911
 
1912
  #@ backwpup
1913
+ #: backwpup-functions.php:98
1914
  msgid "Plugin on WordPress.org"
1915
  msgstr "Plugin bei WordPress.org"
1916
 
1917
  #@ backwpup
1918
+ #: job/backup_create.php:13
 
 
 
 
 
1919
  #, php-format
1920
  msgid "%d. try to create backup zip archive..."
1921
  msgstr "%d. Versuche ein Datensicherungs-ZIP-Archiv zu erstellen ..."
1922
 
1923
  #@ backwpup
1924
+ #: job/backup_create.php:18
1925
  #, php-format
1926
  msgid "Can not add \"%s\" to zip archive!"
1927
  msgstr "\"%s\" kann dem ZIP-Archiv nicht hinzugef&uuml;gt werden!"
1928
 
1929
  #@ backwpup
1930
+ #: job/backup_create.php:25
1931
  msgid "(4) ER_SEEK"
1932
  msgstr "(4) ER_SEEK"
1933
 
1934
  #@ backwpup
1935
+ #: job/backup_create.php:27
1936
  msgid "(5) ER_READ"
1937
  msgstr "(5) ER_READ"
1938
 
1939
  #@ backwpup
1940
+ #: job/backup_create.php:29
1941
  msgid "(9) ER_NOENT"
1942
  msgstr "(9) ER_NOENT"
1943
 
1944
  #@ backwpup
1945
+ #: job/backup_create.php:31
1946
  msgid "(10) ER_EXISTS"
1947
  msgstr "(10) ER_EXISTS"
1948
 
1949
  #@ backwpup
1950
+ #: job/backup_create.php:33
1951
  msgid "(11) ER_OPEN"
1952
  msgstr "(11) ER_OPEN"
1953
 
1954
  #@ backwpup
1955
+ #: job/backup_create.php:35
1956
  msgid "(14) ER_MEMORY"
1957
  msgstr "(14) ER_MEMORY"
1958
 
1959
  #@ backwpup
1960
+ #: job/backup_create.php:37
1961
  msgid "(18) ER_INVAL"
1962
  msgstr "(18) ER_INVAL"
1963
 
1964
  #@ backwpup
1965
+ #: job/backup_create.php:39
1966
  msgid "(19) ER_NOZIP"
1967
  msgstr "(19) ER_NOZIP"
1968
 
1969
  #@ backwpup
1970
+ #: job/backup_create.php:41
1971
  msgid "(21) ER_INCONS"
1972
  msgstr "(21) ER_INCONS"
1973
 
1974
  #@ backwpup
1975
+ #: job/backup_create.php:42
1976
  #, php-format
1977
  msgid "Zip returns status: %s"
1978
  msgstr "ZIP liefert Status zur&uuml;ck: %s"
1979
 
1980
  #@ backwpup
1981
+ #: job/backup_create.php:46
1982
  msgid "Backup zip archive create done!"
1983
  msgstr "Datensicherungs-ZIP-Archiv wurde erstellt!"
1984
 
1985
  #@ backwpup
1986
+ #: job/backup_create.php:49
1987
  msgid "Can not create backup zip archive $s!"
1988
  msgstr "Datensicherungs-ZIP-Archiv kann nicht erstellt werden $s!"
1989
 
1990
  #@ backwpup
1991
+ #: job/backup_create.php:56
1992
  #, php-format
1993
  msgid "%d. try to create backup zip (PclZip) archive..."
1994
  msgstr "%d. Versuche Datensicherungs-Zip-Archiv (PclZip) zu erstellen ..."
1995
 
1996
  #@ backwpup
1997
+ #: job/backup_create.php:65
1998
  #, php-format
1999
  msgid "Zip archive create error: %s"
2000
  msgstr "ZIP-Archiv Erstellungsfehler: %s"
2001
 
2002
  #@ backwpup
2003
+ #: job/backup_create.php:69
2004
  msgid "Backup zip archive create done"
2005
  msgstr "Datensicherungs-ZIP-Archiv wurde erstellt"
2006
 
2007
  #@ backwpup
2008
+ #: job/backup_create.php:84
2009
  msgid "Can not create tar arcive file!"
2010
  msgstr "TAR-Archivdatei konnte nicht erstellt werden!"
2011
 
2012
  #@ backwpup
2013
+ #: job/backup_create.php:87
2014
  #, php-format
2015
  msgid "%1$d. try to create %2$s archive file..."
2016
  msgstr "%1$d. Versuche %2$s Archivdatei zu erstellen ..."
2017
 
2018
  #@ backwpup
2019
+ #: job/backup_create.php:95
2020
  #, php-format
2021
  msgid "File \"%s\" not readable!"
2022
  msgstr "Datei \"%s\" nicht lesbar!"
2023
 
2024
  #@ backwpup
2025
+ #: job/backup_create.php:110
2026
  #, php-format
2027
  msgid "File name \"%1$s\" to long to save corectly in %2$s archive!"
2028
  msgstr "Dateiname \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern!"
2029
 
2030
  #@ backwpup
2031
+ #: job/backup_create.php:112
2032
  #, php-format
2033
  msgid "File path \"%1$s\" to long to save corectly in %2$s archive!"
2034
  msgstr "Dateipfad \"%1$s\" ist zu lang, um korrekt im %2$s Archiv zu speichern!"
2035
 
2036
  #@ backwpup
2037
+ #: job/backup_create.php:189
2038
  #, php-format
2039
  msgid "%s archive creation done"
2040
  msgstr "%s Archiverstellung fertig"
2041
 
2042
  #@ backwpup
2043
+ #: job/backup_create.php:193
2044
  #, php-format
2045
  msgid "Archive size is %s"
2046
  msgstr "Archivgr&ouml;&szlig;e ist %s"
2047
 
2048
  #@ backwpup
2049
+ #: job/backup_create.php:200
2050
  #, php-format
2051
  msgid "PCL ZIP Error \"%1$s\" on file %2$s!"
2052
  msgstr "PCL ZIP Fehler \"%1$s\" bei der Datei %2$s!"
2053
 
2054
  #@ backwpup
2055
+ #: job/db_check.php:4
2056
  #, php-format
2057
  msgid "%d. try for database check..."
2058
  msgstr "%d. Versuche Datenbank zu checken ..."
2059
 
2060
  #@ backwpup
2061
+ #: job/db_check.php:12
2062
+ #: job/db_check.php:28
2063
+ #: job/db_check.php:43
2064
+ #: job/db_dump.php:12
2065
+ #: job/db_dump.php:24
2066
+ #: job/db_dump.php:107
2067
+ #: job/db_dump.php:117
2068
+ #: job/db_optimize.php:12
2069
+ #: job/db_optimize.php:27
2070
+ #: job/job_functions.php:34
2071
+ #: job/job_functions.php:47
2072
  #, php-format
2073
  msgid "Database error %1$s for query %2$s"
2074
  msgstr "Datenbankfehler %1$s f&uuml;r die Abfrage (query) %2$s"
2075
 
2076
  #@ backwpup
2077
+ #: job/db_check.php:60
2078
  msgid "No tables to check"
2079
  msgstr "Keine Tabellen zum checken"
2080
 
2081
  #@ backwpup
2082
+ #: job/db_dump.php:4
2083
  #, php-format
2084
  msgid "%d. try for database dump..."
2085
  msgstr "%d. Versuche Datenbank-Dump ..."
2086
 
2087
  #@ backwpup
2088
+ #: job/db_dump.php:56
2089
  #, php-format
2090
  msgid "Dump database table \"%s\""
2091
  msgstr "Dumpe Datenbanktabelle \"%s\""
2092
 
2093
  #@ backwpup
2094
+ #: job/db_dump.php:73
2095
  msgid "Database dump done!"
2096
  msgstr "Datenbank-Dump fertig!"
2097
 
2098
  #@ backwpup
2099
+ #: job/db_dump.php:75
2100
  msgid "Can not create database dump!"
2101
  msgstr "Datenbank-Dump kann nicht erstellt werden!"
2102
 
2103
  #@ backwpup
2104
+ #: job/db_dump.php:78
2105
  msgid "No tables to dump"
2106
  msgstr "Es gibt keine Tabellen zum dumpen"
2107
 
2108
  #@ backwpup
2109
+ #: job/db_dump.php:84
2110
  #, php-format
2111
  msgid "Add database dump \"%1$s\" with %2$s to backup file list"
2112
  msgstr "F&uuml;ge Datenbank-Dump \"%1$s\" mit %2$s der Datensicherungsdateiliste hinzu"
2113
 
2114
  #@ backwpup
2115
+ #: job/db_optimize.php:4
2116
  #, php-format
2117
  msgid "%d. try for database optimize..."
2118
  msgstr "%d. Versuche die Datenbank zu optimieren ..."
2119
 
2120
  #@ backwpup
2121
+ #: job/db_optimize.php:43
2122
  msgid "No tables to optimize"
2123
  msgstr "Es gibt keine Datenbanktabellen zum Optimieren"
2124
 
2125
  #@ backwpup
2126
+ #: job/dest_dropbox.php:6
2127
  #, php-format
2128
  msgid "%d. Try to sending backup file to DropBox..."
2129
  msgstr "%d. Versuche Datensicherungsdatei zur Dropbox zu senden ..."
2130
 
2131
  #@ backwpup
2132
+ #: job/dest_dropbox.php:15
2133
+ #: job/dest_dropbox.php:18
2134
  #, php-format
2135
  msgid "oAuth sign method for DropBox is %s"
2136
  msgstr "oAuth Sign-Methode f&uuml;r Dropbox ist %s"
2137
 
2138
  #@ backwpup
2139
+ #: job/dest_dropbox.php:15
2140
+ #: pages/func_backwpupeditjob.php:358
2141
  msgid "PLAINTEXT"
2142
  msgstr "PLAINTEXT"
2143
 
2144
  #@ backwpup
2145
+ #: job/dest_dropbox.php:18
2146
+ #: pages/func_backwpupeditjob.php:357
2147
  msgid "HMAC-SHA1"
2148
  msgstr "HMAC-SHA1"
2149
 
2150
  #@ backwpup
2151
+ #: job/dest_dropbox.php:27
2152
  #, php-format
2153
  msgid "Authed with DropBox from %s"
2154
  msgstr "Authentifiziert mit Dropbox von %s"
2155
 
2156
  #@ backwpup
2157
+ #: job/dest_dropbox.php:36
2158
  #, php-format
2159
  msgid "%s free on DropBox"
2160
  msgstr "%s frei in der Dropbox"
2161
 
2162
  #@ backwpup
2163
+ #: job/dest_dropbox.php:41
2164
  msgid "Upload to DropBox now started... "
2165
  msgstr "Hochladen zur Dropbox hat begonnen ... "
2166
 
2167
  #@ backwpup
2168
+ #: job/dest_dropbox.php:50
 
 
 
 
 
 
2169
  #, php-format
2170
  msgid "Error on transfere backup to DropBox: %s"
2171
  msgstr "Fehler beim &Uuml;bertragen der Datensicherungsdatei zur Dropbox: %s"
2172
 
2173
  #@ backwpup
2174
+ #: job/dest_dropbox.php:56
2175
+ #: job/dest_dropbox.php:81
2176
  #, php-format
2177
  msgid "DropBox API: %s"
2178
  msgstr "Dropbox-API: %s"
2179
 
2180
  #@ backwpup
2181
+ #: job/dest_dropbox.php:77
2182
  #, php-format
2183
  msgid "One file deleted on DropBox"
2184
  msgid_plural "%d files deleted on DropBox"
2186
  msgstr[1] "%d Dateien in der Dropbox gel&ouml;scht"
2187
 
2188
  #@ backwpup
2189
+ #: job/dest_folder.php:25
2190
  #, php-format
2191
  msgid "One backup file deleted"
2192
  msgid_plural "%d backup files deleted"
2194
  msgstr[1] "%d Datensicherungsdateien gel&ouml;scht"
2195
 
2196
  #@ backwpup
2197
+ #: job/dest_ftp.php:9
2198
  #, php-format
2199
  msgid "%d. try to sending backup file to a FTP Server..."
2200
  msgstr "%d. Versuche Datensicherungsdatei zu einem FTP-Server zu senden ..."
2201
 
2202
  #@ backwpup
2203
+ #: job/dest_ftp.php:17
2204
  #, php-format
2205
  msgid "Connected by SSL-FTP to Server: %s"
2206
  msgstr "Verbunden via SSL-FTP mit dem Server: %s"
2207
 
2208
  #@ backwpup
2209
+ #: job/dest_ftp.php:19
2210
  #, php-format
2211
  msgid "Can not connect by SSL-FTP to Server: %s"
2212
  msgstr "Kann nicht via SSL-FTP mit dem Server verbinden: %s"
2213
 
2214
  #@ backwpup
2215
+ #: job/dest_ftp.php:23
2216
  msgid "PHP function to connect with SSL-FTP to server not exists!"
2217
  msgstr "PHP-Funktion, um mit SSL-FTP zum Server zu verbinden, existiert nicht!"
2218
 
2219
  #@ backwpup
2220
+ #: job/dest_ftp.php:29
2221
  #, php-format
2222
  msgid "Connected to FTP server: %s"
2223
  msgstr "Verbunden mit dem FTP-Server: %s"
2224
 
2225
  #@ backwpup
2226
+ #: job/dest_ftp.php:31
2227
  #, php-format
2228
  msgid "Can not connect to FTP server: %s"
2229
  msgstr "Kann nicht mit dem FTP-Server verbinden: %s"
2230
 
2231
  #@ backwpup
2232
+ #: job/dest_ftp.php:38
2233
+ #: job/dest_ftp.php:45
2234
+ #: job/dest_ftp.php:57
2235
+ #: job/dest_ftp.php:70
2236
  #, php-format
2237
  msgid "FTP Client command: %s"
2238
  msgstr "FTP-Client-Kommando: %s"
2239
 
2240
  #@ backwpup
2241
+ #: job/dest_ftp.php:40
2242
+ #: job/dest_ftp.php:43
2243
+ #: job/dest_ftp.php:47
2244
+ #: job/dest_ftp.php:60
2245
+ #: job/dest_ftp.php:62
2246
+ #: job/dest_ftp.php:65
2247
+ #: job/dest_ftp.php:67
2248
  #: job/dest_ftp.php:73
2249
+ #: job/dest_ftp.php:75
 
2250
  #, php-format
2251
  msgid "FTP Server reply: %s"
2252
  msgstr "FTP-Server Antwort: %s"
2253
 
2254
  #@ backwpup
2255
+ #: job/dest_ftp.php:85
2256
  #, php-format
2257
  msgid "FTP Folder \"%s\" created!"
2258
  msgstr "FTP-Ordner \"%s\" erstellt!"
2259
 
2260
  #@ backwpup
2261
+ #: job/dest_ftp.php:88
2262
  #, php-format
2263
  msgid "FTP Folder \"%s\" can not created!"
2264
  msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!"
2265
 
2266
  #@ backwpup
2267
+ #: job/dest_ftp.php:97
2268
  #, php-format
2269
  msgid "Backup transferred to FTP server: %s"
2270
  msgstr "Datensicherungsdatei &uuml;bertragen zum FTP-Server: %s"
2271
 
2272
  #@ backwpup
2273
+ #: job/dest_ftp.php:100
2274
  msgid "Can not transfer backup to FTP server!"
2275
  msgstr "Datensicherungsdatei kann nicht zum FTP-Server &uuml;bertragen werden!"
2276
 
2277
  #@ backwpup
2278
+ #: job/dest_ftp.php:117
2279
  #, php-format
2280
  msgid "Can not delete \"%s\" on FTP server!"
2281
  msgstr "Kann \"%s\" nicht l&ouml;schen auf dem FTP-Server!"
2282
 
2283
  #@ backwpup
2284
+ #: job/dest_ftp.php:120
2285
  #, php-format
2286
  msgid "One file deleted on FTP Server"
2287
  msgid_plural "%d files deleted on FTP Server"
2289
  msgstr[1] "%d Dateien auf dem FTP-Server gel&ouml;scht"
2290
 
2291
  #@ backwpup
2292
+ #: job/dest_gstorage.php:4
2293
  #, php-format
2294
  msgid "%d. try sending backup to Google Storage..."
2295
  msgstr "%d. Versuche Datensicherungsdatei zu Google Storage zu senden ..."
2296
 
2297
  #@ backwpup
2298
+ #: job/dest_mail.php:6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2299
  #, php-format
2300
  msgid "%d. try to sending backup with mail..."
2301
  msgstr "%d. Versuche Datensicherung via E-Mail zu senden ..."
2302
 
2303
  #@ backwpup
2304
+ #: job/dest_mail.php:36
2305
  #, php-format
2306
  msgid "BackWPup archive from %1$s: %2$s"
2307
  msgstr "BackWPup-Archiv vom %1$s: %2$s"
2308
 
2309
  #@ backwpup
2310
+ #: job/dest_mail.php:38
2311
  #, php-format
2312
  msgid "Backup archive: %s"
2313
  msgstr "Datensicherungsarchiv: %s"
2314
 
2315
  #@ backwpup
2316
+ #: job/dest_mail.php:44
2317
  msgid "Backup archive too big for sending by mail!"
2318
  msgstr "Das Datensicherungsarchiv ist zu gro&szlig; zum Senden via E-Mail!"
2319
 
2320
  #@ backwpup
2321
+ #: job/dest_mail.php:51
2322
  msgid "Adding backup archive to mail"
2323
  msgstr "Datensicherungsarchiv wird der E-Mail hinzugef&uuml;gt"
2324
 
2325
  #@ backwpup
2326
+ #: job/dest_mail.php:58
2327
  #, php-format
2328
  msgid "Error \"%s\" on sending mail!"
2329
  msgstr "Fehler \"%s\" beim Mailversand!"
2330
 
2331
  #@ backwpup
2332
+ #: job/dest_msazure.php:5
2333
  #, php-format
2334
  msgid "%d. try sending backup to a Microsoft Azure (Blob)..."
2335
  msgstr "%d. Versuche Datensicherung zu Microsoft Azure (Blob) zu senden ..."
2336
 
2337
  #@ backwpup
2338
+ #: job/dest_msazure.php:14
2339
  #, php-format
2340
  msgid "Microsoft Azure container \"%s\" not exists!"
2341
  msgstr "Microsoft Azure Container \"%s\" existiert nicht!"
2342
 
2343
  #@ backwpup
2344
+ #: job/dest_msazure.php:17
2345
  #, php-format
2346
  msgid "Connected to Microsoft Azure container \"%s\""
2347
  msgstr "Verbunden mit Microsoft Azure Container \"%s\""
2348
 
2349
  #@ backwpup
2350
+ #: job/dest_msazure.php:20
2351
  msgid "Upload to MS Azure now started... "
2352
  msgstr "Hochladen zu MS Azure hat begonnen ... "
2353
 
2354
  #@ backwpup
2355
+ #: job/dest_msazure.php:29
 
 
 
 
 
 
2356
  msgid "Can not transfer backup to Microsoft Azure!"
2357
  msgstr "Kann Datensicherung nicht Microsoft Azure &uuml;bertragen!"
2358
 
2359
  #@ backwpup
2360
+ #: job/dest_msazure.php:50
2361
  #, php-format
2362
  msgid "One file deleted on Microsoft Azure container"
2363
  msgid_plural "%d files deleted on Microsoft Azure container"
2365
  msgstr[1] "%d Dateien im Microsoft Azure Container gel&ouml;scht"
2366
 
2367
  #@ backwpup
2368
+ #: job/dest_msazure.php:55
2369
  #, php-format
2370
  msgid "Microsoft Azure API: %s"
2371
  msgstr "Microsoft Azure API: %s"
2372
 
2373
  #@ backwpup
2374
+ #: job/dest_rsc.php:88
2375
  #, php-format
2376
  msgid "One file deleted on RSC container"
2377
  msgid_plural "%d files deleted on RSC container"
2379
  msgstr[1] "%d Dateien im RSC-Container gel&ouml;scht"
2380
 
2381
  #@ backwpup
2382
+ #: job/dest_s3.php:4
2383
  #, php-format
2384
  msgid "%d. try sending backup file to Amazon S3..."
2385
  msgstr "%d. Versuche Datensicherungsdatei zu Amazon S3 zu senden ..."
2386
 
2387
  #@ backwpup
2388
+ #: job/dest_s3.php:14
2389
  #, php-format
2390
  msgid "Connected to S3 Bucket: %s"
2391
  msgstr "Verbunden mit dem S3 Bucket: %s"
2392
 
2393
  #@ backwpup
2394
+ #: job/dest_s3.php:26
2395
  msgid "Upload to Amazon S3 now started... "
2396
+ msgstr "Hochladen zu Amazon S3 hat begonnen ... "
 
 
 
 
 
 
2397
 
2398
  #@ backwpup
2399
  #: job/dest_s3.php:38
 
 
 
 
 
2400
  #, php-format
2401
  msgid "S3 Bucket \"%s\" not exists!"
2402
  msgstr "Amazon S3 Bucket \"%s\" existiert nicht!"
2403
 
2404
  #@ backwpup
2405
+ #: job/dest_s3.php:41
2406
+ #: job/dest_s3.php:70
2407
  #, php-format
2408
  msgid "Amazon API: %s"
2409
  msgstr "Amazon S3 API: %s"
2410
 
2411
  #@ backwpup
2412
+ #: job/dest_s3.php:62
2413
  #, php-format
2414
  msgid "Can not delete backup on S3://%s"
2415
  msgstr "Datensicherung kann nicht gel&ouml;scht werden bei Amazon S3://%s"
2416
 
2417
  #@ backwpup
2418
+ #: job/dest_s3.php:65
2419
  #, php-format
2420
  msgid "One file deleted on S3 Bucket"
2421
  msgid_plural "%d files deleted on S3 Bucket"
2423
  msgstr[1] "%d Dateien im Amazon S3 Bucket gel&ouml;scht"
2424
 
2425
  #@ backwpup
2426
+ #: job/dest_sugarsync.php:6
2427
  #, php-format
2428
  msgid "%d. try sending backup to SugarSync..."
2429
  msgstr "%d. Versuche Datensicherung zu SugarSync zu senden ..."
2430
 
2431
  #@ backwpup
2432
+ #: job/dest_sugarsync.php:15
2433
  #, php-format
2434
  msgid "Authed to SugarSync with Nick %s"
2435
  msgstr "Authentifiziert mit SugarSync, mit dem Namen %s"
2436
 
2437
  #@ backwpup
2438
+ #: job/dest_sugarsync.php:24
2439
  #, php-format
2440
  msgid "%s free on SugarSync"
2441
  msgstr "%s frei bei SugarSync"
2442
 
2443
  #@ backwpup
2444
+ #: job/dest_sugarsync.php:31
2445
  msgid "Upload to SugarSync now started... "
2446
  msgstr "Hochladen zu SugarSync hat begonnen ... "
2447
 
2448
  #@ backwpup
2449
+ #: job/dest_sugarsync.php:39
 
 
 
 
 
 
2450
  msgid "Can not transfer backup to SugarSync!"
2451
  msgstr "Datensicherung kann nicht zu SugarSync &uuml;bertragen werden!"
2452
 
2453
  #@ backwpup
2454
+ #: job/dest_sugarsync.php:62
2455
  #, php-format
2456
  msgid "One file deleted on SugarSync folder"
2457
  msgid_plural "%d files deleted on SugarSync folder"
2459
  msgstr[1] "%d Dateien im SugarSync-Ordner gel&ouml;scht"
2460
 
2461
  #@ backwpup
2462
+ #: job/dest_sugarsync.php:66
2463
  #, php-format
2464
  msgid "SugarSync API: %s"
2465
  msgstr "SugarSync API: %s"
2466
 
2467
  #@ backwpup
2468
+ #: job/file_list.php:5
2469
  #, php-format
2470
  msgid "%d. try for make list of files to backup...."
2471
  msgstr "%d. Versuche Liste von Dateien zur Datensicherung zu erstellen ..."
2472
 
2473
  #@ backwpup
2474
+ #: job/file_list.php:66
2475
  msgid "No files to backup"
2476
  msgstr "Keine Dateien zur Datensicherung vorhanden"
2477
 
2478
  #@ backwpup
2479
+ #: job/file_list.php:68
2480
  #, php-format
2481
  msgid "%1$d files with %2$s to backup"
2482
  msgstr "%1$d Dateien mit %2$s zum Sichern"
2483
 
2484
  #@ backwpup
2485
+ #: job/file_list.php:91
2486
  #, php-format
2487
  msgid "File or folder \"%s\" is not readable!"
2488
  msgstr "Datei oder Ordner \"%s\" ist nicht lesbar!"
2489
 
2490
  #@ backwpup
2491
+ #: job/file_list.php:93
2492
  #, php-format
2493
  msgid "Link \"%s\" not followed"
2494
  msgstr "Link \"%s\" ist nicht erlaubt"
2495
 
2496
  #@ backwpup
2497
+ #: job/file_list.php:99
2498
  #, php-format
2499
  msgid "\"%s\" is not a file or directory"
2500
  msgstr "\"%s\" ist keine Datei oder ein Verzeichnis"
2501
 
2502
  #@ backwpup
2503
+ #: job/job_functions.php:85
2504
  #, php-format
2505
  msgid "PHP Safe mode is on!!! Can not increase memory limit is %s"
2506
  msgstr "PHP-Safemode ist an!!! Das PHP-Speicherlimit kann nicht erh&ouml;ht werden, es betr&auml;gt derzeit %s"
2507
 
2508
  #@ backwpup
2509
+ #: job/job_functions.php:114
2510
  #, php-format
2511
  msgid "Can not increase memory limit is %1$s"
2512
  msgstr "Das PHP-Speicherlimit kann nicht erh&ouml;ht werden, es betr&auml;gt derzeit %s"
2513
 
2514
  #@ backwpup
2515
+ #: job/job_functions.php:124
2516
  msgid "Set Blog to maintenance mode"
2517
  msgstr "Webseite/ Blog in den Wartungsmodus versetzen"
2518
 
2519
  #@ backwpup
2520
+ #: job/job_functions.php:138
2521
  msgid "Cannot set Blog to maintenance mode! Root folder is not writeable!"
2522
  msgstr "Webseite/ Blog kann nicht in den Wartungsmodus versetzt werden! Der Root-Ordner ist nicht beschreibbar!"
2523
 
2524
  #@ backwpup
2525
+ #: job/job_functions.php:141
2526
  msgid "Set Blog to normal mode"
2527
  msgstr "Setze Webseite/ Blog zur&uuml;ck in den Normalmodus"
2528
 
2529
  #@ backwpup
2530
+ #: job/job_functions.php:216
2531
  #, php-format
2532
  msgid "No MySQL connection: %s"
2533
  msgstr "Keine MySQL-Verbindung: %s"
2534
 
2535
  #@ backwpup
2536
+ #: job/job_functions.php:231
2537
  #, php-format
2538
  msgid "No MySQL connection to database: %s"
2539
  msgstr "Keine MySQL-Verbindung zur Datenbank: %s"
2540
 
2541
  #@ backwpup
2542
+ #: job/job_functions.php:348
2543
  #, php-format
2544
  msgid "One old log deleted"
2545
  msgid_plural "%d old logs deleted"
2547
  msgstr[1] "%d alte Protokolldateien gel&ouml;scht"
2548
 
2549
  #@ backwpup
2550
+ #: job/job_functions.php:352
2551
  #, php-format
2552
  msgid "Job done in %s sec."
2553
  msgstr "Auftrag erledigt in %s Sekunden."
2554
 
2555
  #@ backwpup
2556
+ #: job/job_functions.php:452
2557
  #, php-format
2558
  msgid "Jobname: %s"
2559
  msgstr "Auftragsname: %s"
2560
 
2561
  #@ backwpup
2562
+ #: job/job_functions.php:453
2563
  #, php-format
2564
  msgid "Jobtype: %s"
2565
  msgstr "Auftragstyp: %s"
2566
 
2567
  #@ backwpup
2568
+ #: job/job_functions.php:455
2569
  #, php-format
2570
  msgid "Errors: %d"
2571
  msgstr "Fehler: %d"
2572
 
2573
  #@ backwpup
2574
+ #: job/job_functions.php:457
2575
  #, php-format
2576
  msgid "Warnings: %d"
2577
  msgstr "Warnungen: %d"
2578
 
2579
  #@ backwpup
2580
+ #: job/job_functions.php:462
2581
  #, php-format
2582
  msgid "BackWPup log from %1$s: %2$s"
2583
  msgstr "BackWPup-Protokoll vom %1$s: %2$s"
2584
 
2585
  #@ backwpup
2586
+ #: job/job_run.php:69
2587
  msgid "Job restart terminated, bcause old job runs again!"
2588
  msgstr "Auftragsneustart verschoben, weil der alte/ bisherige Auftrag noch l&auml;uft!"
2589
 
2590
  #@ backwpup
2591
+ #: job/job_run.php:72
2592
  msgid "Job restarted, bcause inactivity!"
2593
  msgstr "Auftrag neu gestartet, wegen Inaktivit&auml;t!"
2594
 
2595
  #@ backwpup
2596
+ #: job/job_run.php:74
2597
  #, php-format
2598
  msgid "Second Prozess is running, bcause old job runs! Start type is %s"
2599
  msgstr "Ein zweiter Prozess l&auml;uft, weil alte/ bisherige Auftr&auml;ge laufen! Startzeit ist %s"
2600
 
2601
  #@ backwpup
2602
+ #: job/job_run.php:106
2603
  #, php-format
2604
  msgid "Can not find job step file: %s"
2605
  msgstr "Datei mit Abarbeitungsschritten kann nicht gefunden werden: %s"
2606
 
2607
  #@ backwpup
2608
+ #: job/job_run.php:120
2609
  msgid "[INFO]: BackWPup job strated by cron"
2610
  msgstr "[INFO]: BackWPup-Auftrag via Cron gestartet"
2611
 
2612
  #@ backwpup
2613
+ #: job/job_run.php:122
2614
  msgid "[INFO]: BackWPup job strated manualy"
2615
  msgstr "[INFO]: BackWPup-Auftrag manuell gestartet"
2616
 
2617
  #@ backwpup
2618
+ #: job/job_run.php:125
2619
  #, php-format
2620
  msgid "[INFO]: PHP Safe mode is ON! Maximum script execution time is %1$d sec."
2621
  msgstr "[INFO]: PHP-Safemode ist AN! Die maximale Skriptausf&uuml;hrzeit ist %1$d Sekunden"
2622
 
2623
  #@ backwpup
2624
+ #: job/job_run.php:144
2625
  msgid "No destination defineid for backup!!! Please correct job settings"
2626
  msgstr "Kein Zielort f&uuml;r die Datensicherung festgelegt!!! Bitte korrigieren Sie die Auftragseinstellungen."
2627
 
2628
  #@ backwpup
2629
+ #: job/job_run.php:166
2630
  msgid "Step arborted has too many trys!"
2631
  msgstr "Schritt wurde abgebrochen - hat zuviele Versuche!"
2632
 
2633
  #@ backwpup
2634
+ #: job/job_run.php:168
2635
  #, php-format
2636
  msgid "Can not find job step function %s!"
2637
  msgstr "Funktion f&uuml;r die Auftragsschritte kann nicht gefunden werden %s!"
2638
 
2639
  #@ backwpup
2640
+ #: job/job_start.php:24
2641
  #, php-format
2642
  msgid "Can not create temp folder: %s"
2643
  msgstr "Temp-Ordner kann nicht erstellt werden: %s"
2644
 
2645
  #@ backwpup
2646
+ #: job/job_start.php:115
2647
  #, php-format
2648
  msgid "Can not create folder for log files: %s"
2649
  msgstr "Ordner f&uuml;r Protokolldateien kann nicht erstellt werden: %s"
2650
 
2651
  #@ backwpup
2652
+ #: job/job_start.php:154
2653
  #, php-format
2654
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2655
  msgstr "BackWPup-Protokoll f&uuml;r %1$s von %2$s am %3$s"
2656
 
2657
  #@ backwpup
2658
+ #: job/job_start.php:182
2659
  #, php-format
2660
  msgid "Can not create folder for backups: %1$s"
2661
  msgstr "Ordner f&uuml;r Datensicherungen kann nicht erstellt werden: %1$s"
2667
  msgstr "%d. Versuche WordPress-XML-Datei zu exportieren ..."
2668
 
2669
  #@ backwpup
2670
+ #: job/wp_export.php:83
2671
  #, php-format
2672
  msgid "Add XML export \"%1$s\" to backup list with %2$s"
2673
  msgstr "F&uuml;ge XML-Export \"%1$s\" der Datensicherungs-Liste hinzu, mit %2$s"
2674
 
2675
  #@ backwpup
2676
+ #: pages/func_backwpupeditjob.php:17
2677
  msgid "PHP curl functions not available! Most backup destinations deaktivated!"
2678
  msgstr "PHP cURL-Funktionen nicht verf&uuml;gbar! Daher werden die meisten Datensicherungsziele deaktiviert!"
2679
 
2680
  #@ backwpup
2681
+ #: pages/func_backwpupeditjob.php:355
2682
  msgid "oAuth sign method:"
2683
  msgstr "oAuth Sign-Methode:"
2684
 
2685
  #@ backwpup
2686
+ #: pages/page_backwpupsettings.php:135
2687
  msgid "PHP zip class"
2688
  msgstr "PHP ZIP-Klasse"
2689
 
2690
  #@ backwpup
2691
+ #: pages/page_backwpupsettings.php:136
2692
  msgid "PHP zip"
2693
  msgstr "PHP-ZIP"
2694
 
2695
  #@ backwpup
2696
+ #: pages/page_backwpupsettings.php:138
2697
  msgid "Use PHP zip class if available! Normaly PCL Zip class will used."
2698
  msgstr "Benutze die PHP ZIP-Klasse, falls verf&uuml;gbar! Normalerweise wird die PCL ZIP-Klasse benutzt."
2699
 
 
 
 
 
 
 
 
 
 
 
 
2700
  #@ default
2701
+ #: job/job_run.php:114
2702
  #, php-format
2703
  msgid "[INFO]: BackWPup version %1$s, WordPress version %4$s Copyright &copy; %2$s %3$s"
2704
  msgstr "[INFO]: BackWPup Version %1$s, WordPress Version %4$s Urheberrecht &copy; %2$s %3$s"
2705
 
2706
+ #@ backwpup
2707
+ #: backwpup-functions.php:700
2708
+ #, php-format
2709
+ msgid "- WordPress %d or heiger is needed!"
2710
+ msgstr "- WordPress Version %d oder h&ouml;her ist erforderlich!"
2711
+
2712
+ #@ backwpup
2713
+ #: backwpup-functions.php:704
2714
+ msgid "- PHP 5.2.4 or higher is needed!"
2715
+ msgstr "- PHP Version 5.2.4 oder h&ouml;her ist erforderlich!"
2716
+
2717
+ #@ backwpup
2718
+ #: backwpup-functions.php:711
2719
+ msgid "- Log folder does not exists:"
2720
+ msgstr "- Protokolldateienordner existiert nicht:"
2721
+
2722
+ #@ backwpup
2723
+ #: backwpup-functions.php:714
2724
+ msgid "- Log folder is not writeable:"
2725
+ msgstr "- Protokolldateienordner ist nicht beschreibbar:"
2726
+
2727
+ #@ backwpup
2728
+ #: backwpup-functions.php:717
2729
+ msgid "- Log folder is not in open_basedir path:"
2730
+ msgstr "- Protokolldateienordner liegt nicht im open_basedir Pfad:"
2731
+
2732
+ #@ backwpup
2733
+ #: backwpup-functions.php:723
2734
+ msgid "- Please check the scheduled time for the job:"
2735
+ msgstr "- Bitte pr&uuml;fen Sie die Zeitplanung f&uuml;r den Auftrag:"
2736
+
2737
+ #@ backwpup
2738
+ #: backwpup-functions.php:728
2739
+ msgid "- WP-Cron isn't working, please check it!"
2740
+ msgstr "- WP-Cron funktioniert nicht, bitte pr&uuml;fen Sie die Funktion!"
2741
+
2742
  #@ backwpup
2743
  #. translators: plugin header field 'Version'
2744
  #: backwpup.php:0
2745
+ msgid "2.1.2"
2746
+ msgstr "2.1.2"
2747
+
2748
+ #@ backwpup
2749
+ #: job/dest_dropbox.php:48
2750
+ #: job/dest_gstorage.php:29
2751
+ #: job/dest_msazure.php:26
2752
+ #: job/dest_s3.php:32
2753
+ #: job/dest_sugarsync.php:37
2754
+ #, php-format
2755
+ msgid "Backup transferred to %s"
2756
+ msgstr "Datensicherung &uuml;bertragen zu %s"
2757
+
2758
+ #@ backwpup
2759
+ #: job/dest_gstorage.php:16
2760
+ #, php-format
2761
+ msgid "Connected to GStorage Bucket: %s"
2762
+ msgstr "Verbunden mit dem GStorage Bucket: %s"
2763
+
2764
+ #@ backwpup
2765
+ #: job/dest_gstorage.php:23
2766
+ msgid "Upload to GStorage now started... "
2767
+ msgstr "Hochladen zu GStorage hat begonnen ... "
2768
+
2769
+ #@ backwpup
2770
+ #: job/dest_gstorage.php:32
2771
+ #, php-format
2772
+ msgid "Can not transfer backup to GStorage! (%1$d) %2$s"
2773
+ msgstr "Datensicherung kann nicht zu GStorage &uuml;bertragen werden! (%1$d) %2$s"
2774
+
2775
+ #@ backwpup
2776
+ #: job/dest_gstorage.php:35
2777
+ #, php-format
2778
+ msgid "GStorage Bucket \"%s\" not exists!"
2779
+ msgstr "GStorage Bucket \"%s\" existiert nicht!"
2780
+
2781
+ #@ backwpup
2782
+ #: job/dest_gstorage.php:38
2783
+ #: job/dest_gstorage.php:67
2784
+ #: pages/func_backwpupbackups.php:399
2785
+ #: pages/header_backwpupbackups.php:48
2786
+ #, php-format
2787
+ msgid "GStorage API: %s"
2788
+ msgstr "GStorage-API: %s"
2789
+
2790
+ #@ backwpup
2791
+ #: job/dest_gstorage.php:59
2792
+ #, php-format
2793
+ msgid "Can not delete backup on GStorage://%s"
2794
+ msgstr "Datensicherung kann nicht gel&ouml;scht werden bei GStorage://%s"
2795
+
2796
+ #@ backwpup
2797
+ #: job/dest_gstorage.php:62
2798
+ #, php-format
2799
+ msgid "One file deleted on GStorage Bucket"
2800
+ msgid_plural "%d files deleted on GStorage Bucket"
2801
+ msgstr[0] "Eine Datei im GStorage Bucket gel&ouml;scht"
2802
+ msgstr[1] "%d Dateien im GStorage Bucket gel&ouml;scht"
2803
+
2804
+ #@ backwpup
2805
+ #: job/dest_s3.php:35
2806
+ #, php-format
2807
+ msgid "Can not transfer backup to S3! (%1$d) %2$s"
2808
+ msgstr "Datensicherung kann nicht zu Amazon S3 &uuml;bertragen werden! (%1$d) %2$s"
2809
+
2810
+ #@ backwpup
2811
+ #: job/job_functions.php:506
2812
+ msgid "Signal $d send to script!"
2813
+ msgstr "Signal $d zum Skript gesendet!"
2814
+
2815
+ #@ backwpup
2816
+ #: pages/func_backwpupeditjob.php:494
2817
+ #: pages/func_backwpupeditjob.php:559
2818
+ msgid "Missing access key!"
2819
+ msgstr "Der Zugangsschl&uuml;ssel (Access Key) fehlt!"
2820
+
2821
+ #@ backwpup
2822
+ #: pages/func_backwpupeditjob.php:501
2823
+ #: pages/func_backwpupeditjob.php:566
2824
+ msgid "Missing secret access key!"
2825
+ msgstr "Der Geheime Zugangsschl&uuml;ssel (Secret Access Key) fehlt!"
2826
+
2827
+ #@ backwpup
2828
+ #: pages/func_backwpupeditjob.php:525
2829
+ #: pages/func_backwpupeditjob.php:592
2830
+ msgid "No bucket fount!"
2831
+ msgstr "Kein Bucket gefunden!"
2832
+
2833
+ #@ backwpup
2834
+ #: pages/header_backwpupeditjob.php:26
2835
+ msgid "Wrong Token for Dropbox authentication received!"
2836
+ msgstr "Falschen Token f&uuml;r die Dropbox-Authentifizierung erhalten!"
2837
+
2838
+ #@ backwpup
2839
+ #: pages/header_backwpupeditjob.php:29
2840
+ msgid "No Dropbox authentication received!"
2841
+ msgstr "Keine Dropbox-Authentifizierung erhalten!"
2842
+
2843
+ #@ backwpup
2844
+ #: pages/header_backwpuplogs.php:59
2845
+ msgid "Here you can manage the log files of the jobs. You can download, view, or delete them."
2846
+ msgstr "Hier k&ouml;nnen Sie die Protokolldateien der Auftr&auml;ge verwalten. Sie k&ouml;nnen diese Herunterladen, ansehen oder l&ouml;schen."
2847
+
2848
+ #@ backwpup
2849
+ #: pages/page_backwpupsettings.php:18
2850
+ msgid "Here you can set the options for email sending. The settings will be used in jobs for sending backups via email or for sending log files."
2851
+ msgstr "Hier k&ouml;nnen Sie die Einstellungen f&uuml;r den E-Mail-Versand festlegen. Diese Einstellungen werden benutzt beim Senden von Datensicherungen via E-Mail sowie zum Versenden von Protokollen."
2852
+
2853
+ #@ backwpup
2854
+ #: pages/page_backwpupsettings.php:80
2855
+ msgid "Here you can set Logfile related options."
2856
+ msgstr "Hier k&ouml;nnen Sie Einstellungen f&uuml;r die Protokolle festlegen."
2857
+
2858
+ #@ backwpup
2859
+ #: pages/page_backwpupsettings.php:102
2860
+ msgid "Here you can set Job related options."
2861
+ msgstr "Hier k&ouml;nnen Sie Einstellungen f&uuml;r die Auftr&auml;ge festlegen."
2862
+
2863
+ #@ backwpup
2864
+ #: pages/page_backwpupsettings.php:110
2865
+ msgid "Max. retrys for job script retries"
2866
+ msgstr "Maximale Wiederholungsversuche f&uuml;r das Skript"
2867
+
2868
+ #@ backwpup
2869
+ #: pages/page_backwpupsettings.php:132
2870
+ msgid "Script runtime for long operations withaut responce to script. You can only set it if safemode off. Default runtime is 300 sec.(Max. on most webservers.)"
2871
+ msgstr "Die Skript-Laufzeit f&uuml;r sehr lange Operationen ohne Antwort vom Skript. Sie k&ouml;nnen sie nur festlegen, wenn PHP <code>safe_mode</code> ausgeschaltet (off) ist. Die Standardlaufzeit ist 300 Sekunden (das Maximum auf den meisten Webservern)."
2872
+
2873
+ #@ backwpup
2874
+ #: pages/page_backwpupsettings.php:155
2875
+ msgid "Http basic authentication"
2876
+ msgstr "HTTP-Basis-Authentifizierung"
2877
+
2878
+ #@ backwpup
2879
+ #: pages/page_backwpupsettings.php:156
2880
+ msgid "Is your blog behind a http basic authentication (.htaccess)? Then you must set the username and password four authentication."
2881
+ msgstr "Liegt Ihre Webseite/ Ihr Blog hinter einer HTTP-Basis-Authentifizierung (.htaccess)? Dann m&uuml;ssen Sie den Benutzername und das Passwort f&uuml;r die Authentifizierung hier angeben."
2882
+
2883
+ #@ backwpup
2884
+ #: pages/page_backwpupsettings.php:180
2885
+ #: pages/page_backwpupsettings.php:181
2886
+ msgid "Use cron service of backwpup.com"
2887
+ msgstr "Cron-Dienst von BackWPup.com benutzen"
2888
+
2889
+ #@ backwpup
2890
+ #: pages/page_backwpupsettings.php:183
2891
+ msgid "If you check this, the job schedule will submited to backwpup.com. Backwpup.com will call your blog wp-cron.php to start. <em>Use this service only if you have not a cron service of your hoster, or a blog that has a few visitors.</em> The cron service can start cron behind a basic authentication, on that the http authentication data will transferd too! Please make a little donation for the plugin if you use this servcie. The service can be removed by me without a massage."
2892
+ msgstr "Wenn Sie diese Einstellung setzen, wird Ihre Auftragsplanung an BackWPup.com &uuml;bermittelt. BackWPup.com wird die Datei wp-cron.php von Ihrer Webseite/ Ihrem Blog aufrufen, um den Auftrag zu starten. <em>Benutzen Sie diesen Dienst nur, wenn Ihr Webhoster keinen Cron-Dienst anbietet, oder Ihre Webseite/ Ihr Blog nur wenige Besucher hat.</em> Der Cron-Dienst kann den Cron hinter einer Basis-Authentifizierung starten, an diesen werden dann auch die HTTP-Authentifizierungsdaten gesandt! -- Bitte spenden Sie doch einen kleinen Betrag, falls Sie diesen Cron-Dienst nutzen. -- Wichtiger Hinweis: Dieser externe Service kann jederzeit wieder geschlossen werden, auch ohne Benachrichtigung!"
2893
+
2894
+ #@ backwpup
2895
+ #: pages/page_backwpuptools.php:43
2896
+ msgid "Copy SQL file to blog root folder to use for a restoring."
2897
+ msgstr "Kopieren Sie die SQL-Datei in den root-Ordner Ihrer Webseite (bzw. WordPress-Installation), damit die Datei f&uuml;r eine Wiederherstellung genutzt werden kann."
2898
+
2899
+ #@ backwpup
2900
+ #: pages/tools/db_restore.php:92
2901
+ msgid "Restore Done. Please delete the SQL file after restoring."
2902
+ msgstr "Wiederherstellung abgeschlossen. Bitte l&ouml;schen Sie die SQL-Datei nach der Wiederherstellung."
2903
 
libs/class.http.php DELETED
@@ -1,1203 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * HTTP Class
5
- *
6
- * This is a wrapper HTTP class that uses either cURL or fsockopen to
7
- * harvest resources from web. This can be used with scripts that need
8
- * a way to communicate with various APIs who support REST.
9
- *
10
- * @author Md Emran Hasan <phpfour@gmail.com>
11
- * @package HTTP Library
12
- * @copyright 2007-2008 Md Emran Hasan
13
- * @link http://www.phpfour.com/lib/http
14
- * @since Version 0.1
15
- */
16
-
17
- class Http
18
- {
19
- /**
20
- * Contains the target URL
21
- *
22
- * @var string
23
- */
24
- var $target;
25
-
26
- /**
27
- * Contains the target host
28
- *
29
- * @var string
30
- */
31
- var $host;
32
-
33
- /**
34
- * Contains the target port
35
- *
36
- * @var integer
37
- */
38
- var $port;
39
-
40
- /**
41
- * Contains the target path
42
- *
43
- * @var string
44
- */
45
- var $path;
46
-
47
- /**
48
- * Contains the target schema
49
- *
50
- * @var string
51
- */
52
- var $schema;
53
-
54
- /**
55
- * Contains the http method (GET or POST)
56
- *
57
- * @var string
58
- */
59
- var $method;
60
-
61
- /**
62
- * Contains the parameters for request
63
- *
64
- * @var array
65
- */
66
- var $params;
67
-
68
- /**
69
- * Contains the cookies for request
70
- *
71
- * @var array
72
- */
73
- var $cookies;
74
-
75
- /**
76
- * Contains the cookies retrieved from response
77
- *
78
- * @var array
79
- */
80
- var $_cookies;
81
-
82
- /**
83
- * Number of seconds to timeout
84
- *
85
- * @var integer
86
- */
87
- var $timeout;
88
-
89
- /**
90
- * Whether to use cURL or not
91
- *
92
- * @var boolean
93
- */
94
- var $useCurl;
95
-
96
- /**
97
- * Contains the referrer URL
98
- *
99
- * @var string
100
- */
101
- var $referrer;
102
-
103
- /**
104
- * Contains the User agent string
105
- *
106
- * @var string
107
- */
108
- var $userAgent;
109
-
110
- /**
111
- * Contains the cookie path (to be used with cURL)
112
- *
113
- * @var string
114
- */
115
- var $cookiePath;
116
-
117
- /**
118
- * Whether to use cookie at all
119
- *
120
- * @var boolean
121
- */
122
- var $useCookie;
123
-
124
- /**
125
- * Whether to store cookie for subsequent requests
126
- *
127
- * @var boolean
128
- */
129
- var $saveCookie;
130
-
131
- /**
132
- * Contains the Username (for authentication)
133
- *
134
- * @var string
135
- */
136
- var $username;
137
-
138
- /**
139
- * Contains the Password (for authentication)
140
- *
141
- * @var string
142
- */
143
- var $password;
144
-
145
- /**
146
- * Contains the fetched web source
147
- *
148
- * @var string
149
- */
150
- var $result;
151
-
152
- /**
153
- * Contains the last headers
154
- *
155
- * @var string
156
- */
157
- var $headers;
158
-
159
- /**
160
- * Contains the last call's http status code
161
- *
162
- * @var string
163
- */
164
- var $status;
165
-
166
- /**
167
- * Whether to follow http redirect or not
168
- *
169
- * @var boolean
170
- */
171
- var $redirect;
172
-
173
- /**
174
- * The maximum number of redirect to follow
175
- *
176
- * @var integer
177
- */
178
- var $maxRedirect;
179
-
180
- /**
181
- * The current number of redirects
182
- *
183
- * @var integer
184
- */
185
- var $curRedirect;
186
-
187
- /**
188
- * Contains any error occurred
189
- *
190
- * @var string
191
- */
192
- var $error;
193
-
194
- /**
195
- * Store the next token
196
- *
197
- * @var string
198
- */
199
- var $nextToken;
200
-
201
- /**
202
- * Whether to keep debug messages
203
- *
204
- * @var boolean
205
- */
206
- var $debug;
207
-
208
- /**
209
- * Stores the debug messages
210
- *
211
- * @var array
212
- * @todo will keep debug messages
213
- */
214
- var $debugMsg;
215
-
216
- protected $ProgressFunction = false;
217
-
218
- /**
219
- * Constructor for initializing the class with default values.
220
- *
221
- * @return void
222
- */
223
- function Http()
224
- {
225
- $this->clear();
226
- }
227
-
228
- /**
229
- * Initialize preferences
230
- *
231
- * This function will take an associative array of config values and
232
- * will initialize the class variables using them.
233
- *
234
- * Example use:
235
- *
236
- * <pre>
237
- * $httpConfig['method'] = 'GET';
238
- * $httpConfig['target'] = 'http://www.somedomain.com/index.html';
239
- * $httpConfig['referrer'] = 'http://www.somedomain.com';
240
- * $httpConfig['user_agent'] = 'My Crawler';
241
- * $httpConfig['timeout'] = '30';
242
- * $httpConfig['params'] = array('var1' => 'testvalue', 'var2' => 'somevalue');
243
- *
244
- * $http = new Http();
245
- * $http->initialize($httpConfig);
246
- * </pre>
247
- *
248
- * @param array Config values as associative array
249
- * @return void
250
- */
251
- function initialize($config = array())
252
- {
253
- $this->clear();
254
- foreach ($config as $key => $val)
255
- {
256
- if (isset($this->$key))
257
- {
258
- $method = 'set' . ucfirst(str_replace('_', '', $key));
259
-
260
- if (method_exists($this, $method))
261
- {
262
- $this->$method($val);
263
- }
264
- else
265
- {
266
- $this->$key = $val;
267
- }
268
- }
269
- }
270
- }
271
-
272
- /**
273
- * Clear Everything
274
- *
275
- * Clears all the properties of the class and sets the object to
276
- * the beginning state. Very handy if you are doing subsequent calls
277
- * with different data.
278
- *
279
- * @return void
280
- */
281
- function clear()
282
- {
283
- // Set the request defaults
284
- $this->host = '';
285
- $this->port = 0;
286
- $this->path = '';
287
- $this->target = '';
288
- $this->method = 'GET';
289
- $this->schema = 'http';
290
- $this->params = array();
291
- $this->headers = array();
292
- $this->cookies = array();
293
- $this->_cookies = array();
294
-
295
- // Set the config details
296
- $this->debug = FALSE;
297
- $this->error = '';
298
- $this->status = 0;
299
- $this->timeout = '25';
300
- $this->useCurl = TRUE;
301
- $this->referrer = '';
302
- $this->username = '';
303
- $this->password = '';
304
- $this->redirect = TRUE;
305
-
306
- // Set the cookie and agent defaults
307
- $this->nextToken = '';
308
- $this->useCookie = TRUE;
309
- $this->saveCookie = TRUE;
310
- $this->maxRedirect = 3;
311
- $this->cookiePath = 'cookie.txt';
312
- $this->userAgent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.9';
313
- }
314
-
315
- /**
316
- * Set target URL
317
- *
318
- * @param string URL of target resource
319
- * @return void
320
- */
321
- function setTarget($url)
322
- {
323
- if ($url)
324
- {
325
- $this->target = $url;
326
- }
327
- }
328
-
329
- /**
330
- * Set http method
331
- *
332
- * @param string HTTP method to use (GET or POST)
333
- * @return void
334
- */
335
- function setMethod($method)
336
- {
337
- if ($method == 'GET' || $method == 'POST')
338
- {
339
- $this->method = $method;
340
- }
341
- }
342
-
343
- /**
344
- * Set referrer URL
345
- *
346
- * @param string URL of referrer page
347
- * @return void
348
- */
349
- function setReferrer($referrer)
350
- {
351
- if ($referrer)
352
- {
353
- $this->referrer = $referrer;
354
- }
355
- }
356
-
357
- /**
358
- * Set User agent string
359
- *
360
- * @param string Full user agent string
361
- * @return void
362
- */
363
- function setUseragent($agent)
364
- {
365
- if ($agent)
366
- {
367
- $this->userAgent = $agent;
368
- }
369
- }
370
-
371
- /**
372
- * Set timeout of execution
373
- *
374
- * @param integer Timeout delay in seconds
375
- * @return void
376
- */
377
- function setTimeout($seconds)
378
- {
379
- if ($seconds > 0)
380
- {
381
- $this->timeout = $seconds;
382
- }
383
- }
384
-
385
- /**
386
- * Set cookie path (cURL only)
387
- *
388
- * @param string File location of cookiejar
389
- * @return void
390
- */
391
- function setCookiepath($path)
392
- {
393
- if ($path)
394
- {
395
- $this->cookiePath = $path;
396
- }
397
- }
398
-
399
- /**
400
- * Set request parameters
401
- *
402
- * @param array All the parameters for GET or POST
403
- * @return void
404
- */
405
- function setParams($dataArray)
406
- {
407
- if (is_array($dataArray))
408
- {
409
- $this->params = array_merge($this->params, $dataArray);
410
- }
411
- }
412
-
413
- /**
414
- * Set basic http authentication realm
415
- *
416
- * @param string Username for authentication
417
- * @param string Password for authentication
418
- * @return void
419
- */
420
- function setAuth($username, $password)
421
- {
422
- if (!empty($username) && !empty($password))
423
- {
424
- $this->username = $username;
425
- $this->password = $password;
426
- }
427
- }
428
-
429
- /**
430
- * Set maximum number of redirection to follow
431
- *
432
- * @param integer Maximum number of redirects
433
- * @return void
434
- */
435
- function setMaxredirect($value)
436
- {
437
- if (!empty($value))
438
- {
439
- $this->maxRedirect = $value;
440
- }
441
- }
442
-
443
- /**
444
- * Add request parameters
445
- *
446
- * @param string Name of the parameter
447
- * @param string Value of the parameter
448
- * @return void
449
- */
450
- function addParam($name, $value)
451
- {
452
- if (!empty($name) && !empty($value))
453
- {
454
- $this->params[$name] = $value;
455
- }
456
- }
457
-
458
- /**
459
- * Add a cookie to the request
460
- *
461
- * @param string Name of cookie
462
- * @param string Value of cookie
463
- * @return void
464
- */
465
- function addCookie($name, $value)
466
- {
467
- if (!empty($name) && !empty($value))
468
- {
469
- $this->cookies[$name] = $value;
470
- }
471
- }
472
-
473
- /**
474
- * Whether to use cURL or not
475
- *
476
- * @param boolean Whether to use cURL or not
477
- * @return void
478
- */
479
- function useCurl($value = TRUE)
480
- {
481
- if (is_bool($value))
482
- {
483
- $this->useCurl = $value;
484
- }
485
- }
486
-
487
- /**
488
- * Whether to use cookies or not
489
- *
490
- * @param boolean Whether to use cookies or not
491
- * @return void
492
- */
493
- function useCookie($value = TRUE)
494
- {
495
- if (is_bool($value))
496
- {
497
- $this->useCookie = $value;
498
- }
499
- }
500
-
501
- /**
502
- * Whether to save persistent cookies in subsequent calls
503
- *
504
- * @param boolean Whether to save persistent cookies or not
505
- * @return void
506
- */
507
- function saveCookie($value = TRUE)
508
- {
509
- if (is_bool($value))
510
- {
511
- $this->saveCookie = $value;
512
- }
513
- }
514
-
515
- /**
516
- * Whether to follow HTTP redirects
517
- *
518
- * @param boolean Whether to follow HTTP redirects or not
519
- * @return void
520
- */
521
- function followRedirects($value = TRUE)
522
- {
523
- if (is_bool($value))
524
- {
525
- $this->redirect = $value;
526
- }
527
- }
528
-
529
- /**
530
- * Get execution result body
531
- *
532
- * @return string output of execution
533
- */
534
- function getResult()
535
- {
536
- return $this->result;
537
- }
538
-
539
- /**
540
- * Get execution result headers
541
- *
542
- * @return array last headers of execution
543
- */
544
- function getHeaders()
545
- {
546
- return $this->headers;
547
- }
548
-
549
- /**
550
- * Get execution status code
551
- *
552
- * @return integer last http status code
553
- */
554
- function getStatus()
555
- {
556
- return $this->status;
557
- }
558
-
559
- /**
560
- * Get last execution error
561
- *
562
- * @return string last error message (if any)
563
- */
564
- function getError()
565
- {
566
- return $this->error;
567
- }
568
-
569
- public function setProgressFunction($function) {
570
- if (function_exists($function))
571
- $this->ProgressFunction = $function;
572
- else
573
- $this->ProgressFunction = false;
574
- }
575
-
576
- /**
577
- * Execute a HTTP request
578
- *
579
- * Executes the http fetch using all the set properties. Intellegently
580
- * switch to fsockopen if cURL is not present. And be smart to follow
581
- * redirects (if asked so).
582
- *
583
- * @param string URL of the target page (optional)
584
- * @param string URL of the referrer page (optional)
585
- * @param string The http method (GET or POST) (optional)
586
- * @param array Parameter array for GET or POST (optional)
587
- * @return string Response body of the target page
588
- */
589
- function execute($target = '', $referrer = '', $method = '', $data = array())
590
- {
591
- // Populate the properties
592
- $this->target = ($target) ? $target : $this->target;
593
- $this->method = ($method) ? $method : $this->method;
594
-
595
- $this->referrer = ($referrer) ? $referrer : $this->referrer;
596
-
597
- // Add the new params
598
- if (is_array($data) && count($data) > 0)
599
- {
600
- $this->params = array_merge($this->params, $data);
601
- }
602
-
603
- // Process data, if presented
604
- if(is_array($this->params) && count($this->params) > 0)
605
- {
606
- // Get a blank slate
607
- $tempString = array();
608
-
609
- // Convert data array into a query string (ie animal=dog&sport=baseball)
610
- foreach ($this->params as $key => $value)
611
- {
612
- if(strlen(trim($value))>0)
613
- {
614
- $tempString[] = $key . "=" . urlencode($value);
615
- }
616
- }
617
-
618
- $queryString = join('&', $tempString);
619
- }
620
-
621
- // If cURL is not installed, we'll force fscokopen
622
- $this->useCurl = $this->useCurl && in_array('curl', get_loaded_extensions());
623
-
624
- // GET method configuration
625
- if($this->method == 'GET')
626
- {
627
- if(isset($queryString))
628
- {
629
- $this->target = $this->target . "?" . $queryString;
630
- }
631
- }
632
-
633
- // Parse target URL
634
- $urlParsed = parse_url($this->target);
635
-
636
- // Handle SSL connection request
637
- if ($urlParsed['scheme'] == 'https')
638
- {
639
- $this->host = 'ssl://' . $urlParsed['host'];
640
- $this->port = ($this->port != 0) ? $this->port : 443;
641
- }
642
- else
643
- {
644
- $this->host = $urlParsed['host'];
645
- $this->port = ($this->port != 0) ? $this->port : 80;
646
- }
647
-
648
- // Finalize the target path
649
- $this->path = (isset($urlParsed['path']) ? $urlParsed['path'] : '/') . (isset($urlParsed['query']) ? '?' . $urlParsed['query'] : '');
650
- $this->schema = $urlParsed['scheme'];
651
-
652
- // Pass the requred cookies
653
- $this->_passCookies();
654
-
655
- // Process cookies, if requested
656
- if(is_array($this->cookies) && count($this->cookies) > 0)
657
- {
658
- // Get a blank slate
659
- $tempString = array();
660
-
661
- // Convert cookiesa array into a query string (ie animal=dog&sport=baseball)
662
- foreach ($this->cookies as $key => $value)
663
- {
664
- if(strlen(trim($value)) > 0)
665
- {
666
- $tempString[] = $key . "=" . urlencode($value);
667
- }
668
- }
669
-
670
- $cookieString = join('&', $tempString);
671
- }
672
-
673
- // Do we need to use cURL
674
- if ($this->useCurl)
675
- {
676
- // Initialize PHP cURL handle
677
- $ch = curl_init();
678
-
679
- // GET method configuration
680
- if($this->method == 'GET')
681
- {
682
- curl_setopt ($ch, CURLOPT_HTTPGET, TRUE);
683
- curl_setopt ($ch, CURLOPT_POST, FALSE);
684
- }
685
- // POST method configuration
686
- else
687
- {
688
- if(isset($queryString))
689
- {
690
- curl_setopt ($ch, CURLOPT_POSTFIELDS, $queryString);
691
- }
692
-
693
- curl_setopt ($ch, CURLOPT_POST, TRUE);
694
- curl_setopt ($ch, CURLOPT_HTTPGET, FALSE);
695
- }
696
-
697
- // Basic Authentication configuration
698
- if ($this->username && $this->password)
699
- {
700
- curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
701
- curl_setopt($ch, CURLOPT_USERPWD, $this->username . ':' . $this->password);
702
- }
703
-
704
- // Custom cookie configuration
705
- if($this->useCookie && isset($cookieString))
706
- {
707
- curl_setopt ($ch, CURLOPT_COOKIE, $cookieString);
708
- }
709
-
710
- if (defined('CURLOPT_PROGRESSFUNCTION') and !empty($this->ProgressFunction)) {
711
- curl_setopt($ch, CURLOPT_NOPROGRESS, false);
712
- curl_setopt($ch, CURLOPT_PROGRESSFUNCTION, $this->ProgressFunction);
713
- curl_setopt($ch, CURLOPT_BUFFERSIZE, 512);
714
- }
715
-
716
- curl_setopt($ch, CURLOPT_HEADER, TRUE); // No need of headers
717
- curl_setopt($ch, CURLOPT_NOBODY, FALSE); // Return body
718
-
719
- curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookiePath); // Cookie management.
720
- curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout); // Timeout
721
- curl_setopt($ch, CURLOPT_USERAGENT, $this->userAgent); // Webbot name
722
- curl_setopt($ch, CURLOPT_URL, $this->target); // Target site
723
- curl_setopt($ch, CURLOPT_REFERER, $this->referrer); // Referer value
724
-
725
- curl_setopt($ch, CURLOPT_VERBOSE, FALSE); // Minimize logs
726
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // No certificate
727
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $this->redirect); // Follow redirects
728
- curl_setopt($ch, CURLOPT_MAXREDIRS, $this->maxRedirect); // Limit redirections to four
729
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); // Return in string
730
-
731
- // Get the target contents
732
- $content = curl_exec($ch);
733
- $contentArray = explode("\r\n\r\n", $content);
734
-
735
- // Get the request info
736
- $status = curl_getinfo($ch);
737
-
738
- // Store the contents
739
- $this->result = $contentArray[count($contentArray) - 1];
740
-
741
- // Parse the headers
742
- $this->_parseHeaders($contentArray[count($contentArray) - 2]);
743
-
744
- // Store the error (is any)
745
- $this->_setError(curl_error($ch));
746
-
747
- // Close PHP cURL handle
748
- curl_close($ch);
749
- }
750
- else
751
- {
752
- // Get a file pointer
753
- $filePointer = fsockopen($this->host, $this->port, $errorNumber, $errorString, $this->timeout);
754
-
755
- // We have an error if pointer is not there
756
- if (!$filePointer)
757
- {
758
- $this->_setError('Failed opening http socket connection: ' . $errorString . ' (' . $errorNumber . ')');
759
- return FALSE;
760
- }
761
-
762
- // Set http headers with host, user-agent and content type
763
- $requestHeader = $this->method . " " . $this->path . " HTTP/1.1\r\n";
764
- $requestHeader .= "Host: " . $urlParsed['host'] . "\r\n";
765
- $requestHeader .= "User-Agent: " . $this->userAgent . "\r\n";
766
- $requestHeader .= "Content-Type: application/x-www-form-urlencoded\r\n";
767
-
768
- // Specify the custom cookies
769
- if ($this->useCookie && $cookieString != '')
770
- {
771
- $requestHeader.= "Cookie: " . $cookieString . "\r\n";
772
- }
773
-
774
- // POST method configuration
775
- if ($this->method == "POST")
776
- {
777
- $requestHeader.= "Content-Length: " . strlen($queryString) . "\r\n";
778
- }
779
-
780
- // Specify the referrer
781
- if ($this->referrer != '')
782
- {
783
- $requestHeader.= "Referer: " . $this->referrer . "\r\n";
784
- }
785
-
786
- // Specify http authentication (basic)
787
- if ($this->username && $this->password)
788
- {
789
- $requestHeader.= "Authorization: Basic " . base64_encode($this->username . ':' . $this->password) . "\r\n";
790
- }
791
-
792
- $requestHeader.= "Connection: close\r\n\r\n";
793
-
794
- // POST method configuration
795
- if ($this->method == "POST")
796
- {
797
- $requestHeader .= $queryString;
798
- }
799
-
800
- // We're ready to launch
801
- fwrite($filePointer, $requestHeader);
802
-
803
- // Clean the slate
804
- $responseHeader = '';
805
- $responseContent = '';
806
-
807
- // 3...2...1...Launch !
808
- do
809
- {
810
- $responseHeader .= fread($filePointer, 1);
811
- }
812
- while (!preg_match('/\\r\\n\\r\\n$/', $responseHeader));
813
-
814
- // Parse the headers
815
- $this->_parseHeaders($responseHeader);
816
-
817
- // Do we have a 301/302 redirect ?
818
- if (($this->status == '301' || $this->status == '302') && $this->redirect == TRUE)
819
- {
820
- if ($this->curRedirect < $this->maxRedirect)
821
- {
822
- // Let's find out the new redirect URL
823
- $newUrlParsed = parse_url($this->headers['location']);
824
-
825
- if ($newUrlParsed['host'])
826
- {
827
- $newTarget = $this->headers['location'];
828
- }
829
- else
830
- {
831
- $newTarget = $this->schema . '://' . $this->host . '/' . $this->headers['location'];
832
- }
833
-
834
- // Reset some of the properties
835
- $this->port = 0;
836
- $this->status = 0;
837
- $this->params = array();
838
- $this->method = 'GET';
839
- $this->referrer = $this->target;
840
-
841
- // Increase the redirect counter
842
- $this->curRedirect++;
843
-
844
- // Let's go, go, go !
845
- $this->result = $this->execute($newTarget);
846
- }
847
- else
848
- {
849
- $this->_setError('Too many redirects.');
850
- return FALSE;
851
- }
852
- }
853
- else
854
- {
855
- // Nope...so lets get the rest of the contents (non-chunked)
856
- if ($this->headers['transfer-encoding'] != 'chunked')
857
- {
858
- while (!feof($filePointer))
859
- {
860
- $responseContent .= fgets($filePointer, 128);
861
- }
862
- }
863
- else
864
- {
865
- // Get the contents (chunked)
866
- while ($chunkLength = hexdec(fgets($filePointer)))
867
- {
868
- $responseContentChunk = '';
869
- $readLength = 0;
870
-
871
- while ($readLength < $chunkLength)
872
- {
873
- $responseContentChunk .= fread($filePointer, $chunkLength - $readLength);
874
- $readLength = strlen($responseContentChunk);
875
- }
876
-
877
- $responseContent .= $responseContentChunk;
878
- fgets($filePointer);
879
- }
880
- }
881
-
882
- // Store the target contents
883
- $this->result = chop($responseContent);
884
- }
885
- }
886
-
887
- // There it is! We have it!! Return to base !!!
888
- return $this->result;
889
- }
890
-
891
- /**
892
- * Parse Headers (internal)
893
- *
894
- * Parse the response headers and store them for finding the resposne
895
- * status, redirection location, cookies, etc.
896
- *
897
- * @param string Raw header response
898
- * @return void
899
- * @access private
900
- */
901
- function _parseHeaders($responseHeader)
902
- {
903
- // Break up the headers
904
- $headers = explode("\r\n", $responseHeader);
905
-
906
- // Clear the header array
907
- $this->_clearHeaders();
908
-
909
- // Get resposne status
910
- if($this->status == 0)
911
- {
912
- // Oooops !
913
- if(!preg_match('~^HTTP/1\.\d (?P<status>\d+)~', $headers[0], $matches))
914
- {
915
- $this->_setError('Unexpected HTTP response status: '.$headers[0]);
916
- return FALSE;
917
- }
918
-
919
- // Gotcha!
920
- $this->status = $matches['status'];
921
- array_shift($headers);
922
- }
923
-
924
- // Prepare all the other headers
925
- foreach ($headers as $header)
926
- {
927
- // Get name and value
928
- $headerName = strtolower($this->_tokenize($header, ':'));
929
- $headerValue = trim(chop($this->_tokenize("\r\n")));
930
-
931
- // If its already there, then add as an array. Otherwise, just keep there
932
- if(isset($this->headers[$headerName]))
933
- {
934
- if(gettype($this->headers[$headerName]) == "string")
935
- {
936
- $this->headers[$headerName] = array($this->headers[$headerName]);
937
- }
938
-
939
- $this->headers[$headerName][] = $headerValue;
940
- }
941
- else
942
- {
943
- $this->headers[$headerName] = $headerValue;
944
- }
945
- }
946
-
947
- // Save cookies if asked
948
- if ($this->saveCookie && isset($this->headers['set-cookie']))
949
- {
950
- $this->_parseCookie();
951
- }
952
- }
953
-
954
- /**
955
- * Clear the headers array (internal)
956
- *
957
- * @return void
958
- * @access private
959
- */
960
- function _clearHeaders()
961
- {
962
- $this->headers = array();
963
- }
964
-
965
- /**
966
- * Parse Cookies (internal)
967
- *
968
- * Parse the set-cookie headers from response and add them for inclusion.
969
- *
970
- * @return void
971
- * @access private
972
- */
973
- function _parseCookie()
974
- {
975
- // Get the cookie header as array
976
- if(gettype($this->headers['set-cookie']) == "array")
977
- {
978
- $cookieHeaders = $this->headers['set-cookie'];
979
- }
980
- else
981
- {
982
- $cookieHeaders = array($this->headers['set-cookie']);
983
- }
984
-
985
- // Loop through the cookies
986
- for ($cookie = 0; $cookie < count($cookieHeaders); $cookie++)
987
- {
988
- $cookieName = trim($this->_tokenize($cookieHeaders[$cookie], "="));
989
- $cookieValue = $this->_tokenize(";");
990
-
991
- $urlParsed = parse_url($this->target);
992
-
993
- $domain = $urlParsed['host'];
994
- $secure = '0';
995
-
996
- $path = "/";
997
- $expires = "";
998
-
999
- while(($name = trim(urldecode($this->_tokenize("=")))) != "")
1000
- {
1001
- $value = urldecode($this->_tokenize(";"));
1002
-
1003
- switch($name)
1004
- {
1005
- case "path" : $path = $value; break;
1006
- case "domain" : $domain = $value; break;
1007
- case "secure" : $secure = ($value != '') ? '1' : '0'; break;
1008
- }
1009
- }
1010
-
1011
- $this->_setCookie($cookieName, $cookieValue, $expires, $path , $domain, $secure);
1012
- }
1013
- }
1014
-
1015
- /**
1016
- * Set cookie (internal)
1017
- *
1018
- * Populate the internal _cookies array for future inclusion in
1019
- * subsequent requests. This actually validates and then populates
1020
- * the object properties with a dimensional entry for cookie.
1021
- *
1022
- * @param string Cookie name
1023
- * @param string Cookie value
1024
- * @param string Cookie expire date
1025
- * @param string Cookie path
1026
- * @param string Cookie domain
1027
- * @param string Cookie security (0 = non-secure, 1 = secure)
1028
- * @return void
1029
- * @access private
1030
- */
1031
- function _setCookie($name, $value, $expires = "" , $path = "/" , $domain = "" , $secure = 0)
1032
- {
1033
- if(strlen($name) == 0)
1034
- {
1035
- return($this->_setError("No valid cookie name was specified."));
1036
- }
1037
-
1038
- if(strlen($path) == 0 || strcmp($path[0], "/"))
1039
- {
1040
- return($this->_setError("$path is not a valid path for setting cookie $name."));
1041
- }
1042
-
1043
- if($domain == "" || !strpos($domain, ".", $domain[0] == "." ? 1 : 0))
1044
- {
1045
- return($this->_setError("$domain is not a valid domain for setting cookie $name."));
1046
- }
1047
-
1048
- $domain = strtolower($domain);
1049
-
1050
- if(!strcmp($domain[0], "."))
1051
- {
1052
- $domain = substr($domain, 1);
1053
- }
1054
-
1055
- $name = $this->_encodeCookie($name, true);
1056
- $value = $this->_encodeCookie($value, false);
1057
-
1058
- $secure = intval($secure);
1059
-
1060
- $this->_cookies[] = array( "name" => $name,
1061
- "value" => $value,
1062
- "domain" => $domain,
1063
- "path" => $path,
1064
- "expires" => $expires,
1065
- "secure" => $secure
1066
- );
1067
- }
1068
-
1069
- /**
1070
- * Encode cookie name/value (internal)
1071
- *
1072
- * @param string Value of cookie to encode
1073
- * @param string Name of cookie to encode
1074
- * @return string encoded string
1075
- * @access private
1076
- */
1077
- function _encodeCookie($value, $name)
1078
- {
1079
- return($name ? str_replace("=", "%25", $value) : str_replace(";", "%3B", $value));
1080
- }
1081
-
1082
- /**
1083
- * Pass Cookies (internal)
1084
- *
1085
- * Get the cookies which are valid for the current request. Checks
1086
- * domain and path to decide the return.
1087
- *
1088
- * @return void
1089
- * @access private
1090
- */
1091
- function _passCookies()
1092
- {
1093
- if (is_array($this->_cookies) && count($this->_cookies) > 0)
1094
- {
1095
- $urlParsed = parse_url($this->target);
1096
- $tempCookies = array();
1097
-
1098
- foreach($this->_cookies as $cookie)
1099
- {
1100
- if ($this->_domainMatch($urlParsed['host'], $cookie['domain']) && (0 === strpos($urlParsed['path'], $cookie['path']))
1101
- && (empty($cookie['secure']) || $urlParsed['protocol'] == 'https'))
1102
- {
1103
- $tempCookies[$cookie['name']][strlen($cookie['path'])] = $cookie['value'];
1104
- }
1105
- }
1106
-
1107
- // cookies with longer paths go first
1108
- foreach ($tempCookies as $name => $values)
1109
- {
1110
- krsort($values);
1111
- foreach ($values as $value)
1112
- {
1113
- $this->addCookie($name, $value);
1114
- }
1115
- }
1116
- }
1117
- }
1118
-
1119
- /**
1120
- * Checks if cookie domain matches a request host (internal)
1121
- *
1122
- * Cookie domain can begin with a dot, it also must contain at least
1123
- * two dots.
1124
- *
1125
- * @param string Request host
1126
- * @param string Cookie domain
1127
- * @return bool Match success
1128
- * @access private
1129
- */
1130
- function _domainMatch($requestHost, $cookieDomain)
1131
- {
1132
- if ('.' != $cookieDomain{0})
1133
- {
1134
- return $requestHost == $cookieDomain;
1135
- }
1136
- elseif (substr_count($cookieDomain, '.') < 2)
1137
- {
1138
- return false;
1139
- }
1140
- else
1141
- {
1142
- return substr('.'. $requestHost, - strlen($cookieDomain)) == $cookieDomain;
1143
- }
1144
- }
1145
-
1146
- /**
1147
- * Tokenize String (internal)
1148
- *
1149
- * Tokenize string for various internal usage. Omit the second parameter
1150
- * to tokenize the previous string that was provided in the prior call to
1151
- * the function.
1152
- *
1153
- * @param string The string to tokenize
1154
- * @param string The seperator to use
1155
- * @return string Tokenized string
1156
- * @access private
1157
- */
1158
- function _tokenize($string, $separator = '')
1159
- {
1160
- if(!strcmp($separator, ''))
1161
- {
1162
- $separator = $string;
1163
- $string = $this->nextToken;
1164
- }
1165
-
1166
- for($character = 0; $character < strlen($separator); $character++)
1167
- {
1168
- if(gettype($position = strpos($string, $separator[$character])) == "integer")
1169
- {
1170
- $found = (isset($found) ? min($found, $position) : $position);
1171
- }
1172
- }
1173
-
1174
- if(isset($found))
1175
- {
1176
- $this->nextToken = substr($string, $found + 1);
1177
- return(substr($string, 0, $found));
1178
- }
1179
- else
1180
- {
1181
- $this->nextToken = '';
1182
- return($string);
1183
- }
1184
- }
1185
-
1186
- /**
1187
- * Set error message (internal)
1188
- *
1189
- * @param string Error message
1190
- * @return string Error message
1191
- * @access private
1192
- */
1193
- function _setError($error)
1194
- {
1195
- if ($error != '')
1196
- {
1197
- $this->error = $error;
1198
- return $error;
1199
- }
1200
- }
1201
- }
1202
-
1203
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
pages/func_backwpupeditjob.php CHANGED
@@ -1,14 +1,15 @@
1
  <?PHP
2
  function backwpup_jobedit_metabox_save($jobvalue) {
3
  ?>
4
- <div class="submitbox" id="submitlink">
5
  <div id="minor-publishing">
6
- <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
7
- <div style="display:none;">
8
- <?php submit_button( __( 'Save Changes', 'backwpup' ), 'button', 'save', false ); ?>
 
9
  </div>
10
  <div id="misc-publishing-actions">
11
- <div id="preview-action">
12
  <?php
13
  foreach (backwpup_backup_types() as $type) {
14
  echo "<input class=\"jobtype-select checkbox\" id=\"jobtype-select-".$type."\" type=\"checkbox\"".checked(true,in_array($type,explode('+',$jobvalue['type'])),false)." name=\"type[]\" value=\"".$type."\"/> ".backwpup_backup_types($type);
@@ -17,15 +18,14 @@ function backwpup_jobedit_metabox_save($jobvalue) {
17
  echo '<br /><strong style="color:red;">'.__( 'PHP curl functions not available! Most backup destinations deaktivated!', 'backwpup' ).'</strong>';
18
  ?>
19
  </div>
20
- <div class="clear"></div>
21
  </div>
22
  </div>
23
  <div id="major-publishing-actions">
24
  <div id="delete-action">
25
- <a class="submitdelete deletion" href="<?PHP echo wp_nonce_url(backwpup_admin_url('admin.php').'?page=backwpup&action=delete&jobs[]='.$jobvalue['jobid'], 'bulk-jobs'); ?>" onclick="if ( confirm('<?PHP echo esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")); ?>') ) { return true;}return false;"><?php _e('Delete', 'backwpup'); ?></a>
26
  </div>
27
  <div id="publishing-action">
28
- <input type="submit" name="submit" class="button-primary" id="publish" tabindex="1" accesskey="p" value="<?php _e('Save Changes', 'backwpup'); ?>" />
29
  </div>
30
  <div class="clear"></div>
31
  </div>
1
  <?PHP
2
  function backwpup_jobedit_metabox_save($jobvalue) {
3
  ?>
4
+ <div class="submitbox" id="submitjobedit">
5
  <div id="minor-publishing">
6
+ <div id="minor-publishing-actions">
7
+ <div id="preview-action">
8
+ </div>
9
+ <div class="clear"></div>
10
  </div>
11
  <div id="misc-publishing-actions">
12
+ <div class="misc-pub-section misc-pub-section-last">
13
  <?php
14
  foreach (backwpup_backup_types() as $type) {
15
  echo "<input class=\"jobtype-select checkbox\" id=\"jobtype-select-".$type."\" type=\"checkbox\"".checked(true,in_array($type,explode('+',$jobvalue['type'])),false)." name=\"type[]\" value=\"".$type."\"/> ".backwpup_backup_types($type);
18
  echo '<br /><strong style="color:red;">'.__( 'PHP curl functions not available! Most backup destinations deaktivated!', 'backwpup' ).'</strong>';
19
  ?>
20
  </div>
 
21
  </div>
22
  </div>
23
  <div id="major-publishing-actions">
24
  <div id="delete-action">
25
+ <a class="submitdelete deletion" href="<?PHP echo wp_nonce_url(backwpup_admin_url('admin.php').'?page=backwpup&action=delete&jobs[]='.$jobvalue['jobid'], 'bulk-jobs'); ?>" onclick="if ( confirm('<?PHP echo esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")); ?>') ) { return true;}return false;"><?php _e('Delete', 'backwpup'); ?></a>
26
  </div>
27
  <div id="publishing-action">
28
+ <input type="submit" name="submit" class="button-primary" id="submit" tabindex="1" accesskey="p" value="<?php _e('Save Changes', 'backwpup'); ?>" />
29
  </div>
30
  <div class="clear"></div>
31
  </div>
pages/header_backwpupeditjob.php CHANGED
@@ -97,6 +97,7 @@ if ((isset($_POST['submit']) or isset($_POST['dropboxauth']) or isset($_POST['dr
97
  }
98
  global $wpdb;
99
  $tables=$wpdb->get_col('SHOW TABLES FROM `'.DB_NAME.'`');
 
100
  foreach ($tables as $dbtable) {
101
  if (!in_array($dbtable,$checedtables))
102
  $jobvalues['dbexclude'][]=$dbtable;
97
  }
98
  global $wpdb;
99
  $tables=$wpdb->get_col('SHOW TABLES FROM `'.DB_NAME.'`');
100
+ $jobvalues['dbexclude']=array();
101
  foreach ($tables as $dbtable) {
102
  if (!in_array($dbtable,$checedtables))
103
  $jobvalues['dbexclude'][]=$dbtable;
readme.txt CHANGED
@@ -4,13 +4,13 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, multisite, Rackspace, Cloud, Azure, DropBox, SugarSync, Google, Storage
5
  Requires at least: 3.1
6
  Tested up to: 3.2.1
7
- Stable tag: 2.1.1
8
 
9
- Backup your WordPress Database and Files, and more!
10
 
11
  == Description ==
12
 
13
- Do backups and more.
14
 
15
  * Database Backup
16
  * WordPress XML Export
@@ -51,6 +51,9 @@ Do backups and more.
51
  4. Backups Manage Page
52
 
53
  == Changelog ==
 
 
 
54
  = 2.1.1 =
55
  * Fiexd problem with translation
56
  * Don't display dashboard Wigets on Mulitsite for not super amdins
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, multisite, Rackspace, Cloud, Azure, DropBox, SugarSync, Google, Storage
5
  Requires at least: 3.1
6
  Tested up to: 3.2.1
7
+ Stable tag: 2.1.2
8
 
9
+ WordPress Backup and more
10
 
11
  == Description ==
12
 
13
+ Do backups and more for your WordPress Blog.
14
 
15
  * Database Backup
16
  * WordPress XML Export
51
  4. Backups Manage Page
52
 
53
  == Changelog ==
54
+ = 2.1.2 =
55
+ * removed http class, makes to many problems
56
+
57
  = 2.1.1 =
58
  * Fiexd problem with translation
59
  * Don't display dashboard Wigets on Mulitsite for not super amdins