BackWPup – WordPress Backup Plugin - Version 1.7.1

Version Description

  • Bugfix on make new jobs
  • Bugfix on job run with dbdump
  • Bugfix on Backup Bulk actions
Download this release

Release Info

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

Code changes from version 1.7.0 to 1.7.1

app/list-tables.php CHANGED
@@ -458,7 +458,7 @@ class BackWPup_Backups_Table extends WP_List_Table {
458
 
459
  switch($column_name) {
460
  case 'cb':
461
- $r .= '<th scope="row" class="check-column"><input type="checkbox" name="backupfiles[]" value="'. esc_attr(urlencode($backup['file']).'|'.$backup['jobid'].'|'.$backup['type']) .'" /></th>';
462
  break;
463
  case 'backup':
464
  $dir=dirname($backup['file']);
@@ -482,7 +482,7 @@ class BackWPup_Backups_Table extends WP_List_Table {
482
  $r .= "<td $attributes><strong>".$backup['filename']."</strong><br />sugarsync://magicBriefcase/".$jobvalue['sugardir'];
483
  }
484
  $actions = array();
485
- $actions['delete'] = "<a class=\"submitdelete\" href=\"" . wp_nonce_url('admin.php?page=BackWPup&subpage=backups&action=delete&paged='.$this->get_pagenum().'&backupfiles[]='.esc_attr(urlencode($backup['file']).'|'.$backup['jobid'].'|'.$backup['type']), 'bulk-backups') . "\" onclick=\"if ( confirm('" . esc_js(__("You are about to delete this Backup Archive. \n 'Cancel' to stop, 'OK' to delete.","backwpup")) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
486
  $actions['download'] = "<a href=\"" . wp_nonce_url($backup['downloadurl'], 'download-backup') . "\">" . __('Download','backwpup') . "</a>";
487
  $action_count = count($actions);
488
  $i = 0;
458
 
459
  switch($column_name) {
460
  case 'cb':
461
+ $r .= '<th scope="row" class="check-column"><input type="checkbox" name="backupfiles[]" value="'. esc_attr($backup['file'].'|'.$backup['jobid'].'|'.$backup['type']) .'" /></th>';
462
  break;
463
  case 'backup':
464
  $dir=dirname($backup['file']);
482
  $r .= "<td $attributes><strong>".$backup['filename']."</strong><br />sugarsync://magicBriefcase/".$jobvalue['sugardir'];
483
  }
484
  $actions = array();
485
+ $actions['delete'] = "<a class=\"submitdelete\" href=\"" . wp_nonce_url('admin.php?page=BackWPup&subpage=backups&action=delete&paged='.$this->get_pagenum().'&backupfiles[]='.esc_attr($backup['file'].'|'.$backup['jobid'].'|'.$backup['type']), 'bulk-backups') . "\" onclick=\"if ( confirm('" . esc_js(__("You are about to delete this Backup Archive. \n 'Cancel' to stop, 'OK' to delete.","backwpup")) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
486
  $actions['download'] = "<a href=\"" . wp_nonce_url($backup['downloadurl'], 'download-backup') . "\">" . __('Download','backwpup') . "</a>";
487
  $action_count = count($actions);
488
  $i = 0;
app/options-save.php CHANGED
@@ -184,6 +184,7 @@ function backwpup_backups_operations($action) {
184
  if (!empty($jobvalue['awsAccessKey']) and !empty($jobvalue['awsSecretKey']) and !empty($jobvalue['awsBucket'])) {
185
  $s3 = new AmazonS3($jobvalue['awsAccessKey'], $jobvalue['awsSecretKey']);
186
  $s3->delete_object($jobvalue['awsBucket'],$backups['file']);
 
187
  }
188
  }
189
  } elseif ($backups['type']=='MSAZURE' and in_array('MSAZURE',$dests)) {
@@ -191,6 +192,7 @@ function backwpup_backups_operations($action) {
191
  if (!empty($jobvalue['msazureHost']) and !empty($jobvalue['msazureAccName']) and !empty($jobvalue['msazureKey']) and !empty($jobvalue['msazureContainer'])) {
192
  $storageClient = new Microsoft_WindowsAzure_Storage_Blob($jobvalue['msazureHost'],$jobvalue['msazureAccName'],$jobvalue['msazureKey']);
193
  $storageClient->deleteBlob($jobvalue['msazureContainer'],$backups['file']);
 
194
  }
195
  }
196
  } elseif ($backups['type']=='DROPBOX' and in_array('DROPBOX',$dests)) {
@@ -199,13 +201,15 @@ function backwpup_backups_operations($action) {
199
  $dropbox = new Dropbox(BACKWPUP_DROPBOX_APP_KEY, BACKWPUP_DROPBOX_APP_SECRET);
200
  $dropbox->setOAuthTokens($jobvalue['dropetoken'],$jobvalue['dropesecret']);
201
  $dropbox->fileopsDelete($backups['file']);
 
202
  }
203
  }
204
  } elseif ($backups['type']=='SUGARSYNC' and in_array('SUGARSYNC',$dests)) {
205
  if (class_exists('SugarSync')) {
206
  if (!empty($jobvalue['sugaruser']) and !empty($jobvalue['sugarpass'])) {
207
  $sugarsync = new SugarSync($jobvalue['sugaruser'],base64_decode($jobvalue['sugarpass']),BACKWPUP_SUGARSYNC_ACCESSKEY, BACKWPUP_SUGARSYNC_PRIVATEACCESSKEY);
208
- $sugarsync->delete(urldecode($backups['file']));
 
209
  }
210
  }
211
  } elseif ($backups['type']=='RSC' and in_array('RSC',$dests)) {
@@ -219,6 +223,9 @@ function backwpup_backups_operations($action) {
219
  $backwpupcontainer = $conn->get_container($jobvalue['rscContainer']);
220
  $backwpupcontainer->delete_object($backups['file']);
221
  }
 
 
 
222
  }
223
  }
224
  } elseif ($backups['type']=='FTP') {
184
  if (!empty($jobvalue['awsAccessKey']) and !empty($jobvalue['awsSecretKey']) and !empty($jobvalue['awsBucket'])) {
185
  $s3 = new AmazonS3($jobvalue['awsAccessKey'], $jobvalue['awsSecretKey']);
186
  $s3->delete_object($jobvalue['awsBucket'],$backups['file']);
187
+ unset($s3);
188
  }
189
  }
190
  } elseif ($backups['type']=='MSAZURE' and in_array('MSAZURE',$dests)) {
192
  if (!empty($jobvalue['msazureHost']) and !empty($jobvalue['msazureAccName']) and !empty($jobvalue['msazureKey']) and !empty($jobvalue['msazureContainer'])) {
193
  $storageClient = new Microsoft_WindowsAzure_Storage_Blob($jobvalue['msazureHost'],$jobvalue['msazureAccName'],$jobvalue['msazureKey']);
194
  $storageClient->deleteBlob($jobvalue['msazureContainer'],$backups['file']);
195
+ unset($storageClient);
196
  }
197
  }
198
  } elseif ($backups['type']=='DROPBOX' and in_array('DROPBOX',$dests)) {
201
  $dropbox = new Dropbox(BACKWPUP_DROPBOX_APP_KEY, BACKWPUP_DROPBOX_APP_SECRET);
202
  $dropbox->setOAuthTokens($jobvalue['dropetoken'],$jobvalue['dropesecret']);
203
  $dropbox->fileopsDelete($backups['file']);
204
+ unset($dropbox);
205
  }
206
  }
207
  } elseif ($backups['type']=='SUGARSYNC' and in_array('SUGARSYNC',$dests)) {
208
  if (class_exists('SugarSync')) {
209
  if (!empty($jobvalue['sugaruser']) and !empty($jobvalue['sugarpass'])) {
210
  $sugarsync = new SugarSync($jobvalue['sugaruser'],base64_decode($jobvalue['sugarpass']),BACKWPUP_SUGARSYNC_ACCESSKEY, BACKWPUP_SUGARSYNC_PRIVATEACCESSKEY);
211
+ $sugarsync->delete(urldecode($backups['file']));
212
+ unset($sugarsync);
213
  }
214
  }
215
  } elseif ($backups['type']=='RSC' and in_array('RSC',$dests)) {
223
  $backwpupcontainer = $conn->get_container($jobvalue['rscContainer']);
224
  $backwpupcontainer->delete_object($backups['file']);
225
  }
226
+ unset($auth);
227
+ unset($conn);
228
+ unset($backwpupcontainer);
229
  }
230
  }
231
  } elseif ($backups['type']=='FTP') {
backwpup.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackWPup
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
- Version: 1.7.0
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -34,7 +34,7 @@ if ( !defined('ABSPATH') )
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
- define('BACKWPUP_VERSION', '1.7.0');
38
  //Set User Capability
39
  define('BACKWPUP_USER_CAPABILITY', '10');
40
  //Set useable destinations
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
+ Version: 1.7.1
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
+ define('BACKWPUP_VERSION', '1.7.1');
38
  //Set User Capability
39
  define('BACKWPUP_USER_CAPABILITY', '10');
40
  //Set useable destinations
lang/backwpup-de_DE.mo DELETED
Binary file
lang/backwpup-de_DE.po DELETED
@@ -1,2269 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: BackWPup\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tags/backwpup\n"
5
- "POT-Creation-Date: 2010-06-23 17:08+0000\n"
6
- "PO-Revision-Date: 2011-03-27 14:14+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"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: German\n"
14
- "X-Poedit-Country: GERMANY\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ backwpup
22
- #: app/backwpup_dojob.php:159
23
- msgid "[WARNING]"
24
- msgstr "[WARNUNG]"
25
-
26
- #@ backwpup
27
- #: app/backwpup_dojob.php:78
28
- #: app/backwpup_dojob.php:165
29
- #: app/options-save.php:63
30
- msgid "[ERROR]"
31
- msgstr "[FEHLER]"
32
-
33
- #@ backwpup
34
- #: app/backwpup_dojob.php:169
35
- msgid "[DEPRECATED]"
36
- msgstr "[VERALTET]"
37
-
38
- #@ backwpup
39
- #: app/backwpup_dojob.php:172
40
- msgid "[STRICT NOTICE]"
41
- msgstr "[STRENGER HINWEIS]"
42
-
43
- #@ backwpup
44
- #: app/backwpup_dojob.php:175
45
- msgid "[RECOVERABLE ERROR]"
46
- msgstr "[L&Ouml;SBARER FEHLER]"
47
-
48
- #@ backwpup
49
- #: app/backwpup_dojob.php:65
50
- #, php-format
51
- msgid "BackWPup Log for %1$s from %2$s at %3$s"
52
- msgstr "BackWPup Log f&uuml;r %1$s vom %2$s um %3$s"
53
-
54
- #@ backwpup
55
- #: app/backwpup_dojob.php:131
56
- #, php-format
57
- msgid "PHP Safe Mode is on!!! Max exec time is %1$d sec."
58
- msgstr "PHP Safe Mode ist an!!! Maximale ausf&uuml;hrbare Zeit ist %1$d Sek."
59
-
60
- #@ backwpup
61
- #: app/backwpup_dojob.php:229
62
- #, php-format
63
- msgid "Can not create Folder: %1$s"
64
- msgstr "Ordner kann nicht erstellt werden: %1$s"
65
-
66
- #@ backwpup
67
- #: app/backwpup_dojob.php:234
68
- #, php-format
69
- msgid "Can not write to Folder: %1$s"
70
- msgstr "In den Ordner kann nicht geschrieben werden: %1$s"
71
-
72
- #@ backwpup
73
- #: app/backwpup_dojob.php:268
74
- #, php-format
75
- msgid "PHP Safe Mode is on!!! Can not increase Memory Limit is %1$s"
76
- msgstr "PHP Safe Mode ist an!!! Speicherlimit kann nicht erh&ouml;ht werden, ist %1$s"
77
-
78
- #@ backwpup
79
- #: app/backwpup_dojob.php:295
80
- #, php-format
81
- msgid "Memory increased from %1$s to %2$s"
82
- msgstr "Speicher(limit) erh&ouml;ht von %1$s auf %2$s"
83
-
84
- #@ backwpup
85
- #: app/backwpup_dojob.php:297
86
- #, php-format
87
- msgid "Can not increase Memory Limit is %1$s"
88
- msgstr "Speicherlimit kann nicht erh&ouml;ht werden, ist %1$s"
89
-
90
- #@ backwpup
91
- #: app/backwpup_dojob.php:307
92
- msgid "Set Blog to Maintenance Mode"
93
- msgstr "Setze Webseite/ Blog in den Wartungsmodus (via Plugin!)"
94
-
95
- #@ backwpup
96
- #: app/backwpup_dojob.php:323
97
- msgid "Set Blog to normal Mode"
98
- msgstr "Setze Webseite/ Blog zur&uuml;ck in den Normalmodus"
99
-
100
- #@ backwpup
101
- #: app/backwpup_dojob.php:339
102
- msgid "Run Database check..."
103
- msgstr "Datenbank-Check l&auml;uft ..."
104
-
105
- #@ backwpup
106
- #: app/backwpup_dojob.php:354
107
- #: app/backwpup_dojob.php:356
108
- #: app/backwpup_dojob.php:358
109
- #, php-format
110
- msgid "Result of table check for %1$s is: %2$s"
111
- msgstr "Ergebnis f&uuml;r den Tabellencheck f&uuml;r %1$s, ist %2$s"
112
-
113
- #@ backwpup
114
- #: app/backwpup_dojob.php:361
115
- #: app/backwpup_dojob.php:373
116
- #: app/backwpup_dojob.php:397
117
- #: app/backwpup_dojob.php:407
118
- #: app/backwpup_dojob.php:452
119
- #: app/backwpup_dojob.php:463
120
- #: app/backwpup_dojob.php:590
121
- #: app/tools/db_restore.php:68
122
- #: app/tools/db_restore.php:79
123
- #: app/tools/db_restore.php:82
124
- #: app/tools/db_restore.php:85
125
- #: app/tools/db_restore.php:90
126
- #, php-format
127
- msgid "BackWPup database error %1$s for query %2$s"
128
- msgstr "BackWPup-Datenbankfehler %1$s f&uuml;r die Anfrage %2$s"
129
-
130
- #@ backwpup
131
- #: app/backwpup_dojob.php:366
132
- #: app/backwpup_dojob.php:368
133
- #: app/backwpup_dojob.php:370
134
- #, php-format
135
- msgid "Result of table repair for %1$s is: %2$s"
136
- msgstr "Ergebnis der Tabellenreparatur f&uuml;r %1$s ist: %2$s"
137
-
138
- #@ backwpup
139
- #: app/backwpup_dojob.php:378
140
- msgid "Database check done!"
141
- msgstr "Datenbank-Check fertig!"
142
-
143
- #@ backwpup
144
- #: app/backwpup_dojob.php:380
145
- msgid "No Tables to check"
146
- msgstr "Keine Tabellen zum Checken"
147
-
148
- #@ backwpup
149
- #: app/backwpup_dojob.php:445
150
- msgid "Run Database Dump to file..."
151
- msgstr "Datenbank-Dump wird gespeichert in Datei ..."
152
-
153
- #@ backwpup
154
- #: app/backwpup_dojob.php:496
155
- msgid "Dump Database table: "
156
- msgstr "Datenbanktabelle dumpen: "
157
-
158
- #@ backwpup
159
- #: app/backwpup_dojob.php:513
160
- msgid "Can not create Database Dump file"
161
- msgstr "Datenbank-Dump-Datei kann nicht erstellt werden"
162
-
163
- #@ backwpup
164
- #: app/backwpup_dojob.php:516
165
- msgid "No Tables to Dump"
166
- msgstr "Keine Tabellen zum Dumpen"
167
-
168
- #@ backwpup
169
- #: app/backwpup_dojob.php:511
170
- msgid "Database Dump done!"
171
- msgstr "Datenbank-Dump fertig!"
172
-
173
- #@ backwpup
174
- #: app/backwpup_dojob.php:521
175
- msgid "Add Database Dump to Backup:"
176
- msgstr "F&uuml;ge Datenbank-Dump zur Datensicherung hinzu:"
177
-
178
- #@ backwpup
179
- #: app/backwpup_dojob.php:532
180
- #: app/backwpup_dojob.php:549
181
- msgid "Run Wordpress Export to XML file..."
182
- msgstr "WordPress Export als XML-Datei l&auml;uft ..."
183
-
184
- #@ backwpup
185
- #: app/backwpup_dojob.php:551
186
- msgid "Export to XML done!"
187
- msgstr "Export zu XML ist fertig!"
188
-
189
- #@ backwpup
190
- #: app/backwpup_dojob.php:560
191
- msgid "Add XML Export to Backup:"
192
- msgstr "F&uuml;ge XML-Export zur Datensicherung hinzu:"
193
-
194
- #@ backwpup
195
- #: app/backwpup_dojob.php:553
196
- msgid "Can not Export to XML!"
197
- msgstr "Kein Export zu XML m&ouml;glich!"
198
-
199
- #@ backwpup
200
- #: app/backwpup_dojob.php:569
201
- msgid "Run Database optimize..."
202
- msgstr "Datenbankoptimierung l&auml;uft ..."
203
-
204
- #@ backwpup
205
- #: app/backwpup_dojob.php:583
206
- #: app/backwpup_dojob.php:585
207
- #: app/backwpup_dojob.php:587
208
- #, php-format
209
- msgid "Result of table optimize for %1$s is: %2$s"
210
- msgstr "Ergebnis der Tabellenoptimierung f&uuml;r %1$s ist: %2$s"
211
-
212
- #@ backwpup
213
- #: app/backwpup_dojob.php:593
214
- msgid "Database optimize done!"
215
- msgstr "Datenbankoptimierung fertig!"
216
-
217
- #@ backwpup
218
- #: app/backwpup_dojob.php:596
219
- msgid "No Tables to optimize"
220
- msgstr "Keine Tabellen zum Optimieren"
221
-
222
- #@ backwpup
223
- #: app/backwpup_dojob.php:624
224
- msgid "Is not a file or directory:"
225
- msgstr "Dies ist kein(e) Datei oder ein Verzeichnis:"
226
-
227
- #@ backwpup
228
- #: app/backwpup_dojob.php:634
229
- msgid "Make a list of files to Backup ...."
230
- msgstr "Erstelle Liste von Dateien zur Datensicherung ..."
231
-
232
- #@ backwpup
233
- #: app/backwpup_dojob.php:683
234
- msgid "No files to Backup"
235
- msgstr "Keine Dateien f&uuml;r die Datensicherung"
236
-
237
- #@ backwpup
238
- #: app/backwpup_dojob.php:693
239
- msgid "Create Backup Zip file..."
240
- msgstr "Erstelle Datensicherungs-ZIP-Datei ..."
241
-
242
- #@ backwpup
243
- #: app/backwpup_dojob.php:701
244
- #: app/backwpup_dojob.php:722
245
- msgid "Add File to ZIP file:"
246
- msgstr "F&uuml;ge Datei dem ZIP-Paket hinzu:"
247
-
248
- #@ backwpup
249
- #: app/backwpup_dojob.php:703
250
- msgid "Can not add File to ZIP file:"
251
- msgstr "Datei kann dem ZIP-Paket nicht hinzugef&uuml;gt werden:"
252
-
253
- #@ backwpup
254
- #: app/backwpup_dojob.php:707
255
- #: app/backwpup_dojob.php:729
256
- msgid "Backup Zip file create done!"
257
- msgstr "Erstellung der Datensicherungs-ZIP-Datei fertig!"
258
-
259
- #@ backwpup
260
- #: app/backwpup_dojob.php:709
261
- msgid "Can not create Backup ZIP file:"
262
- msgstr "Datensicherungs-ZIP-Datei kann nicht erstellt werden:"
263
-
264
- #@ backwpup
265
- #: app/backwpup_dojob.php:719
266
- msgid "Create Backup Zip (PclZip) file..."
267
- msgstr "Erstelle Datensicherungs-ZIP-Paket (PclZip) ..."
268
-
269
- #@ backwpup
270
- #: app/backwpup_dojob.php:727
271
- msgid "Zip file create:"
272
- msgstr "ZIP-Paketerstellung:"
273
-
274
- #@ backwpup
275
- #: app/backwpup_dojob.php:748
276
- msgid "Can not create TAR Backup file"
277
- msgstr "TAR-Datensicherungs-Datei kann nicht erstellt werden"
278
-
279
- #@ backwpup
280
- #: app/backwpup_dojob.php:751
281
- msgid "Create Backup Archive file..."
282
- msgstr "Erstelle Datensicherungs-Archivdatei ..."
283
-
284
- #@ backwpup
285
- #: app/backwpup_dojob.php:758
286
- msgid "Add File to Backup Archive:"
287
- msgstr "Datei zum Datensicherungs-Archiv hinzuf&uuml;gen:"
288
-
289
- #@ backwpup
290
- #: app/backwpup_dojob.php:855
291
- msgid "Backup Archive file create done!"
292
- msgstr "Datensicherungs-Archivdatei wurde erstellt!"
293
-
294
- #@ backwpup
295
- #: app/backwpup_dojob.php:895
296
- #: app/backwpup_dojob.php:902
297
- #: app/backwpup_dojob.php:914
298
- #: app/backwpup_dojob.php:927
299
- msgid "FTP Client command:"
300
- msgstr "FTP-Client Kommando:"
301
-
302
- #@ backwpup
303
- #: app/backwpup_dojob.php:897
304
- #: app/backwpup_dojob.php:900
305
- #: app/backwpup_dojob.php:904
306
- #: app/backwpup_dojob.php:917
307
- #: app/backwpup_dojob.php:919
308
- #: app/backwpup_dojob.php:922
309
- #: app/backwpup_dojob.php:924
310
- #: app/backwpup_dojob.php:930
311
- #: app/backwpup_dojob.php:932
312
- msgid "FTP Server reply:"
313
- msgstr "FTP-Server Antwort:"
314
-
315
- #@ backwpup
316
- #: app/backwpup_dojob.php:919
317
- msgid "Can not Entering Passive Mode"
318
- msgstr "Einstieg in den passiven Modus nicht m&ouml;glich"
319
-
320
- #@ backwpup
321
- #: app/backwpup_dojob.php:951
322
- msgid "Backup File transferred to FTP Server:"
323
- msgstr "Datensicherungs-Datei auf den FTP-Server transferiert:"
324
-
325
- #@ backwpup
326
- #: app/backwpup_dojob.php:954
327
- msgid "Can not transfer backup to FTP server."
328
- msgstr "Datensicherung kann nicht auf den FTP-Server transferiert werden."
329
-
330
- #@ backwpup
331
- #: app/backwpup_dojob.php:970
332
- msgid "Can not delete file on FTP Server:"
333
- msgstr "Datei auf dem FTP-Server kann nicht gel&ouml;scht werden:"
334
-
335
- #@ backwpup
336
- #: app/backwpup_dojob.php:973
337
- msgid "files deleted on FTP Server:"
338
- msgstr "Dateien gel&ouml;scht auf dem FTP-Server:"
339
-
340
- #@ backwpup
341
- #: app/backwpup_dojob.php:1001
342
- msgid "Send mail with SMTP"
343
- msgstr "E-Mail senden mit SMTP"
344
-
345
- #@ backwpup
346
- #: app/backwpup_dojob.php:1005
347
- msgid "Send mail with Sendmail"
348
- msgstr "E-Mail senden mit Sendmail"
349
-
350
- #@ backwpup
351
- #: app/backwpup_dojob.php:1008
352
- msgid "Send mail with PHP mail"
353
- msgstr "E-Mail senden mit PHP mail"
354
-
355
- #@ backwpup
356
- #: app/backwpup_dojob.php:1012
357
- msgid "Creating mail"
358
- msgstr "E-Mail erstellen"
359
-
360
- #@ backwpup
361
- #: app/backwpup_dojob.php:1016
362
- msgid "BackWPup File from"
363
- msgstr "BackWPup-Datei von"
364
-
365
- #@ backwpup
366
- #: app/backwpup_dojob.php:1024
367
- msgid "Backup Archive too big for sending by mail"
368
- msgstr "Datensicherungs-Archiv ist zu gro&szlig;, um es via E-Mail zu senden"
369
-
370
- #@ backwpup
371
- #: app/backwpup_dojob.php:1029
372
- msgid "Adding Attachment to mail"
373
- msgstr "Anhang wird zur E-Mail hinzugef&uuml;gt"
374
-
375
- #@ backwpup
376
- #: app/backwpup_dojob.php:1033
377
- msgid "Send mail...."
378
- msgstr "E-Mail wird gesendet ..."
379
-
380
- #@ backwpup
381
- #: app/backwpup_dojob.php:1037
382
- msgid "Mail send!!!"
383
- msgstr "E-Mail wurde gesendet!!!"
384
-
385
- #@ backwpup
386
- #: app/backwpup_dojob.php:1035
387
- msgid "Can not send mail:"
388
- msgstr "E-Mail kann nicht gesendet werden:"
389
-
390
- #@ backwpup
391
- #: app/backwpup_dojob.php:1053
392
- msgid "Connected to S3 Bucket:"
393
- msgstr "Verbunden mit S3 Bucket:"
394
-
395
- #@ backwpup
396
- #: app/backwpup_dojob.php:1062
397
- msgid "Backup File transferred to S3://"
398
- msgstr "Datensicherungs-Datei zu S3 transferiert://"
399
-
400
- #@ backwpup
401
- #: app/backwpup_dojob.php:1065
402
- msgid "Can not transfer backup to S3."
403
- msgstr "Datensicherung kann nicht zu S3 transferiert werden."
404
-
405
- #@ backwpup
406
- #: app/backwpup_dojob.php:1087
407
- msgid "files deleted on S3 Bucket!"
408
- msgstr "Dateien wurden auf S3 Bucket gel&ouml;scht!"
409
-
410
- #@ backwpup
411
- #: app/backwpup_dojob.php:1094
412
- msgid "S3 Bucket not exists:"
413
- msgstr "S3 Bucket existiert nicht:"
414
-
415
- #@ backwpup
416
- #: app/backwpup_dojob.php:1255
417
- msgid "old backup files deleted!!!"
418
- msgstr "alte Datensicherungs-Dateien gel&ouml;scht!!!"
419
-
420
- #@ backwpup
421
- #: app/backwpup_dojob.php:734
422
- #: app/backwpup_dojob.php:857
423
- #, php-format
424
- msgid "Backup Archive File size is %1s"
425
- msgstr "Datensicherungs-Dateigr&ouml;&szlig;e ist %1s"
426
-
427
- #@ backwpup
428
- #: app/backwpup_dojob.php:1398
429
- msgid "old Log files deleted!!!"
430
- msgstr "alte Logdateien gel&ouml;scht!!!"
431
-
432
- #@ backwpup
433
- #: app/backwpup_dojob.php:1401
434
- #, php-format
435
- msgid "Job done in %1s sec."
436
- msgstr "Auftrag ausgef&uuml;hrt in %1s Sekunden."
437
-
438
- #@ backwpup
439
- #: app/backwpup_dojob.php:1506
440
- msgid "Jobname:"
441
- msgstr "Auftragsname:"
442
-
443
- #@ backwpup
444
- #: app/backwpup_dojob.php:1507
445
- msgid "Jobtype:"
446
- msgstr "Auftragstyp:"
447
-
448
- #@ backwpup
449
- #: app/backwpup_dojob.php:1509
450
- msgid "Errors:"
451
- msgstr "Fehler:"
452
-
453
- #@ backwpup
454
- #: app/backwpup_dojob.php:1511
455
- msgid "Warnings:"
456
- msgstr "Warnungen:"
457
-
458
- #@ backwpup
459
- #. translators: plugin header field 'Name'
460
- #: app/php-functions.php:15
461
- #: app/php-functions.php:89
462
- #: app/php-functions.php:275
463
- #: backwpup.php:0
464
- msgid "BackWPup"
465
- msgstr "BackWPup"
466
-
467
- #@ backwpup
468
- #: app/list-tables.php:262
469
- msgid "Job"
470
- msgstr "Auftrag"
471
-
472
- #@ backwpup
473
- #: app/list-tables.php:57
474
- #: app/list-tables.php:263
475
- msgid "Type"
476
- msgstr "Typ"
477
-
478
- #@ backwpup
479
- #: app/list-tables.php:264
480
- msgid "Backup/Log Date/Time"
481
- msgstr "Backup/Log Datum/Zeit"
482
-
483
- #@ backwpup
484
- #: app/list-tables.php:265
485
- msgid "Status"
486
- msgstr "Status"
487
-
488
- #@ backwpup
489
- #: app/list-tables.php:266
490
- #: app/list-tables.php:426
491
- msgid "Size"
492
- msgstr "Gr&ouml;&szlig;e"
493
-
494
- #@ backwpup
495
- #: app/list-tables.php:267
496
- msgid "Runtime"
497
- msgstr "Laufzeit"
498
-
499
- #@ backwpup
500
- #: app/list-tables.php:55
501
- msgid "ID"
502
- msgstr "ID"
503
-
504
- #@ backwpup
505
- #: app/list-tables.php:56
506
- msgid "Job Name"
507
- msgstr "Auftragsname"
508
-
509
- #@ backwpup
510
- #: app/list-tables.php:59
511
- msgid "Next Run"
512
- msgstr "N&auml;chster Durchlauf"
513
-
514
- #@ backwpup
515
- #: app/list-tables.php:60
516
- msgid "Last Run"
517
- msgstr "Letzter Durchlauf"
518
-
519
- #@ default
520
- #: app/php-functions.php:116
521
- #: app/php-functions.php:267
522
- msgid "Support"
523
- msgstr "Support"
524
-
525
- #@ default
526
- #: app/php-functions.php:117
527
- #: app/php-functions.php:266
528
- msgid "FAQ"
529
- msgstr "FAQ"
530
-
531
- #@ backwpup
532
- #: app/php-functions.php:118
533
- msgid "Plugin Homepage"
534
- msgstr "Plugin Homepage"
535
-
536
- #@ backwpup
537
- #: app/php-functions.php:119
538
- msgid "Plugin Home on WordPress.org"
539
- msgstr "Plugin-Seite bei WordPress.org"
540
-
541
- #@ default
542
- #: app/php-functions.php:120
543
- #: app/php-functions.php:268
544
- msgid "Donate"
545
- msgstr "Spenden"
546
-
547
- #@ backwpup
548
- #: app/php-functions.php:127
549
- msgid "Version:"
550
- msgstr "Version:"
551
-
552
- #@ backwpup
553
- #: app/php-functions.php:128
554
- msgid "Author:"
555
- msgstr "Autor:"
556
-
557
- #@ backwpup
558
- #: app/php-functions.php:256
559
- msgid "Go to Settings Page"
560
- msgstr "Gehe zur Einstellungsseite"
561
-
562
- #@ backwpup
563
- #@ default
564
- #: app/php-functions.php:205
565
- #: app/php-functions.php:256
566
- msgid "Settings"
567
- msgstr "Einstellungen"
568
-
569
- #@ backwpup
570
- #: app/php-functions.php:401
571
- msgid "WP XML Export"
572
- msgstr "WP XML Export"
573
-
574
- #@ backwpup
575
- #: app/php-functions.php:404
576
- msgid "Database Backup"
577
- msgstr "Datenbank-Sicherung"
578
-
579
- #@ backwpup
580
- #: app/options-edit-job.php:241
581
- #: app/php-functions.php:407
582
- msgid "File Backup"
583
- msgstr "Dateien-Sicherung"
584
-
585
- #@ backwpup
586
- #: app/php-functions.php:410
587
- msgid "Optimize Database Tables"
588
- msgstr "Datenbanktabellen optimieren"
589
-
590
- #@ backwpup
591
- #: app/php-functions.php:413
592
- msgid "Check Database Tables"
593
- msgstr "Datenbanktabellen checken"
594
-
595
- #@ backwpup
596
- #: app/php-functions.php:465
597
- msgid "Logs:"
598
- msgstr "Logdateien:"
599
-
600
- #@ backwpup
601
- #: app/php-functions.php:82
602
- #: app/php-functions.php:481
603
- msgid "View Log"
604
- msgstr "Log ansehen"
605
-
606
- #@ backwpup
607
- #: app/list-tables.php:334
608
- #: app/php-functions.php:489
609
- msgid "ERROR(S)"
610
- msgstr "FEHLER"
611
-
612
- #@ backwpup
613
- #: app/list-tables.php:336
614
- #: app/php-functions.php:491
615
- msgid "WARNING(S)"
616
- msgstr "WARNUNG(EN)"
617
-
618
- #@ backwpup
619
- #: app/list-tables.php:338
620
- #: app/php-functions.php:493
621
- msgid "OK"
622
- msgstr "OK"
623
-
624
- #@ backwpup
625
- #: app/options-settings.php:46
626
- #: app/php-functions.php:501
627
- #: app/php-functions.php:518
628
- msgid "none"
629
- msgstr "nichts"
630
-
631
- #@ backwpup
632
- #: app/php-functions.php:504
633
- msgid "Scheduled Jobs:"
634
- msgstr "Geplante Auftr&auml;ge:"
635
-
636
- #@ backwpup
637
- #: app/php-functions.php:507
638
- msgid "Edit Job"
639
- msgstr "Auftrag bearbeiten"
640
-
641
- #@ backwpup
642
- #: app/list-tables.php:152
643
- #: app/php-functions.php:510
644
- msgid "Running since:"
645
- msgstr "L&auml;uft seit:"
646
-
647
- #@ backwpup
648
- #: app/list-tables.php:152
649
- #: app/list-tables.php:168
650
- #: app/list-tables.php:353
651
- #: app/php-functions.php:510
652
- msgid "sec."
653
- msgstr "Sek."
654
-
655
- #@ backwpup
656
- #: app/options-edit-job.php:12
657
- msgid "BackWPup Job Settings"
658
- msgstr "BackWPup Auftragseinstellungen"
659
-
660
- #@ backwpup
661
- #: app/options-edit-job.php:43
662
- msgid "Job Type"
663
- msgstr "Auftrags-Typ"
664
-
665
- #@ backwpup
666
- #: app/list-tables.php:108
667
- #: app/options-edit-job.php:55
668
- msgid ""
669
- "You are about to delete this Job. \n"
670
- " 'Cancel' to stop, 'OK' to delete."
671
- msgstr ""
672
- "Sie sind dabei den Auftrag zu l&ouml;schen. \n"
673
- " 'Abbrechen', um zu stoppen, 'OK', um zu l&ouml;schen."
674
-
675
- #@ default
676
- #@ backwpup
677
- #: app/list-tables.php:47
678
- #: app/list-tables.php:108
679
- #: app/list-tables.php:254
680
- #: app/list-tables.php:317
681
- #: app/list-tables.php:417
682
- #: app/list-tables.php:485
683
- #: app/options-edit-job.php:55
684
- msgid "Delete"
685
- msgstr "L&ouml;schen"
686
-
687
- #@ default
688
- #@ backwpup
689
- #: app/compatibility/class-wp-list-table.php:959
690
- #: app/options-edit-job.php:58
691
- #: app/options-settings.php:22
692
- #: app/options-settings.php:84
693
- msgid "Save Changes"
694
- msgstr "&Auml;nderungen speichern"
695
-
696
- #@ backwpup
697
- #: app/options-edit-job.php:65
698
- msgid "Job Schedule"
699
- msgstr "Auftragsplanung"
700
-
701
- #@ backwpup
702
- #: app/options-edit-job.php:67
703
- msgid "Activate scheduling"
704
- msgstr "Planung aktivieren"
705
-
706
- #@ default
707
- #: app/options-edit-job.php:131
708
- msgid "January"
709
- msgstr "Januar"
710
-
711
- #@ default
712
- #: app/options-edit-job.php:132
713
- msgid "February"
714
- msgstr "Februar"
715
-
716
- #@ default
717
- #: app/options-edit-job.php:133
718
- msgid "March"
719
- msgstr "M&auml;rz"
720
-
721
- #@ default
722
- #: app/options-edit-job.php:134
723
- msgid "April"
724
- msgstr "April"
725
-
726
- #@ default
727
- #: app/options-edit-job.php:135
728
- msgid "May"
729
- msgstr "Mai"
730
-
731
- #@ default
732
- #: app/options-edit-job.php:136
733
- msgid "June"
734
- msgstr "Juni"
735
-
736
- #@ default
737
- #: app/options-edit-job.php:137
738
- msgid "July"
739
- msgstr "Juli"
740
-
741
- #@ default
742
- #: app/options-edit-job.php:139
743
- msgid "September"
744
- msgstr "September"
745
-
746
- #@ default
747
- #: app/options-edit-job.php:140
748
- msgid "October"
749
- msgstr "Oktober"
750
-
751
- #@ default
752
- #: app/options-edit-job.php:141
753
- msgid "November"
754
- msgstr "November"
755
-
756
- #@ default
757
- #: app/options-edit-job.php:142
758
- msgid "December"
759
- msgstr "Dezember"
760
-
761
- #@ backwpup
762
- #: app/options-edit-job.php:199
763
- msgid "Send log"
764
- msgstr "Sende Log"
765
-
766
- #@ backwpup
767
- #: app/options-edit-job.php:201
768
- msgid "E-Mail-Adress:"
769
- msgstr "E-Mail-Adresse:"
770
-
771
- #@ backwpup
772
- #: app/options-edit-job.php:215
773
- msgid "Enter Job name here"
774
- msgstr "Auftragsname hier eintragen"
775
-
776
- #@ backwpup
777
- #: app/options-edit-job.php:221
778
- msgid "Database Jobs"
779
- msgstr "Datenbank-Auftr&auml;ge"
780
-
781
- #@ backwpup
782
- #: app/options-edit-job.php:236
783
- msgid "Set Blog Maintenance Mode on Database Operations"
784
- msgstr "Webseite/ Blog in den Wartungsmodus versetzen, w&auml;hrend Datenbank-Operationen ausgef&uuml;hrt werden"
785
-
786
- #@ backwpup
787
- #: app/options-edit-job.php:243
788
- msgid "Blog Folders to Backup:"
789
- msgstr "Webseiten-/ Blog-Ordner, die gesichert werden sollen:"
790
-
791
- #@ backwpup
792
- #: app/options-edit-job.php:327
793
- msgid "Include Folders to Backup:"
794
- msgstr "Diese Ordner in die Sicherung einschlie&szlig;en:"
795
-
796
- #@ backwpup
797
- #: app/options-edit-job.php:192
798
- #: app/options-edit-job.php:328
799
- #: app/options-edit-job.php:332
800
- msgid "Example:"
801
- msgstr "Beispiel:"
802
-
803
- #@ backwpup
804
- #: app/options-edit-job.php:331
805
- msgid "Exclude Files/Folders from Backup:"
806
- msgstr "Dateien/ Ordner von der Sicherung ausschlie&szlig;en:"
807
-
808
- #@ backwpup
809
- #: app/options-edit-job.php:338
810
- msgid "Backup to Directory"
811
- msgstr "Datensicherung ins Verzeichnis"
812
-
813
- #@ backwpup
814
- #: app/options-edit-job.php:340
815
- msgid "Full Path to Folder for Backup Files:"
816
- msgstr "Kompletter Ordnerpfad zu den Datensicherungsdateien:"
817
-
818
- #@ backwpup
819
- #: app/options-edit-job.php:343
820
- #: app/options-edit-job.php:457
821
- msgid "Max. Backup Files in Folder:"
822
- msgstr "Maximale Anzahl von Datensicherungsdateien im Ordner:"
823
-
824
- #@ backwpup
825
- #: app/options-edit-job.php:343
826
- #: app/options-settings.php:62
827
- msgid "(Oldest files will deleted first.)"
828
- msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
829
-
830
- #@ backwpup
831
- #: app/options-edit-job.php:349
832
- msgid "Backup to FTP Server"
833
- msgstr "Datensicherung zum FTP-Server"
834
-
835
- #@ backwpup
836
- #: app/options-edit-job.php:351
837
- msgid "Hostname:"
838
- msgstr "Hostname:"
839
-
840
- #@ backwpup
841
- #: app/options-edit-job.php:353
842
- #: app/options-edit-job.php:412
843
- msgid "Username:"
844
- msgstr "Benutzername:"
845
-
846
- #@ backwpup
847
- #: app/options-edit-job.php:355
848
- #: app/options-edit-job.php:450
849
- msgid "Password:"
850
- msgstr "Passwort:"
851
-
852
- #@ backwpup
853
- #: app/options-edit-job.php:357
854
- msgid "Directory on Server:"
855
- msgstr "Verzeichnis auf dem Server:"
856
-
857
- #@ backwpup
858
- #: app/options-edit-job.php:360
859
- msgid "Max. Backup Files in FTP Folder:"
860
- msgstr "Maximale Anzahl von Datensicherungsdateien im FTP-Ordner:"
861
-
862
- #@ backwpup
863
- #: app/options-edit-job.php:369
864
- msgid "Backup to Amazon S3"
865
- msgstr "Datensicherung zu Amazon S3"
866
-
867
- #@ backwpup
868
- #: app/options-edit-job.php:371
869
- msgid "Access Key ID:"
870
- msgstr "Access Key ID (Zugangsschl&uuml;ssel-ID):"
871
-
872
- #@ backwpup
873
- #: app/options-edit-job.php:373
874
- msgid "Secret Access Key:"
875
- msgstr "Secret Access Key (Geheimer Schl&uuml;ssel):"
876
-
877
- #@ backwpup
878
- #: app/options-edit-job.php:375
879
- msgid "Bucket:"
880
- msgstr "Bucket:"
881
-
882
- #@ backwpup
883
- #: app/options-edit-job.php:379
884
- msgid "Directory in Bucket:"
885
- msgstr "Verzeichnis in Bucket:"
886
-
887
- #@ backwpup
888
- #: app/options-edit-job.php:463
889
- msgid "Backup to E-Mail"
890
- msgstr "Datensicherung via E-Mail"
891
-
892
- #@ backwpup
893
- #: app/options-edit-job.php:468
894
- msgid "Max. File Size for sending Backups with mail:"
895
- msgstr "Maximale Dateigr&ouml;&szlig;e zum Senden von Datensicherungen via E-Mail:"
896
-
897
- #@ backwpup
898
- #: app/php-functions.php:33
899
- msgid "BackWPup Logs"
900
- msgstr "BackWPup-Logdateien"
901
-
902
- #@ backwpup
903
- #: app/php-functions.php:201
904
- msgid "Jobs"
905
- msgstr "Auftr&auml;ge"
906
-
907
- #@ backwpup
908
- #: app/options-settings.php:57
909
- #: app/php-functions.php:202
910
- msgid "Logs"
911
- msgstr "Logdateien"
912
-
913
- #@ backwpup
914
- #: app/php-functions.php:204
915
- msgid "Tools"
916
- msgstr "Werkzeuge"
917
-
918
- #@ default
919
- #: app/compatibility/class-wp-list-table.php:284
920
- msgid "Bulk Actions"
921
- msgstr "Aktion ausf&uuml;hren"
922
-
923
- #@ default
924
- #: app/compatibility/class-wp-list-table.php:289
925
- msgid "Apply"
926
- msgstr "Anwenden"
927
-
928
- #@ backwpup
929
- #: app/list-tables.php:314
930
- msgid "View log"
931
- msgstr "Log ansehen"
932
-
933
- #@ backwpup
934
- #: app/list-tables.php:316
935
- msgid "View"
936
- msgstr "Ansehen"
937
-
938
- #@ backwpup
939
- #: app/list-tables.php:347
940
- msgid "only Log"
941
- msgstr "nur Log"
942
-
943
- #@ backwpup
944
- #: app/options-runnow-iframe.php:13
945
- msgid "Do Job"
946
- msgstr "Auftrag ausf&uuml;hren"
947
-
948
- #@ backwpup
949
- #: app/php-functions.php:68
950
- msgid "BackWPup Job Running"
951
- msgstr "BackWPup-Auftrag l&auml;uft"
952
-
953
- #@ backwpup
954
- #: app/php-functions.php:71
955
- msgid "Running Job"
956
- msgstr "Laufender Auftrag"
957
-
958
- #@ backwpup
959
- #: app/options-save.php:443
960
- msgid "Settings saved"
961
- msgstr "Einstellungen gespeichert"
962
-
963
- #@ backwpup
964
- #: app/options-save.php:28
965
- msgid "Copy of"
966
- msgstr "Kopie von"
967
-
968
- #@ backwpup
969
- #: app/options-save.php:137
970
- #: app/options-save.php:273
971
- msgid "File does not exist."
972
- msgstr "Datei existiert nicht."
973
-
974
- #@ backwpup
975
- #: app/options-settings.php:10
976
- msgid "BackWPup Settings"
977
- msgstr "BackWPup-Einstellungen"
978
-
979
- #@ backwpup
980
- #: app/options-settings.php:29
981
- msgid "Send Mail"
982
- msgstr "Send Mail"
983
-
984
- #@ backwpup
985
- #: app/options-settings.php:31
986
- msgid "Sender Email:"
987
- msgstr "Absender E-Mail:"
988
-
989
- #@ backwpup
990
- #: app/options-settings.php:32
991
- msgid "Sender Name:"
992
- msgstr "Absendername:"
993
-
994
- #@ backwpup
995
- #: app/options-settings.php:33
996
- msgid "Send mail method:"
997
- msgstr "Mailsendungsmethode:"
998
-
999
- #@ backwpup
1000
- #: app/options-settings.php:36
1001
- msgid "PHP: mail()"
1002
- msgstr "PHP: mail()"
1003
-
1004
- #@ backwpup
1005
- #: app/options-settings.php:37
1006
- msgid "Sendmail"
1007
- msgstr "Sendmail"
1008
-
1009
- #@ backwpup
1010
- #: app/options-settings.php:38
1011
- msgid "SMTP"
1012
- msgstr "SMTP"
1013
-
1014
- #@ backwpup
1015
- #: app/options-settings.php:41
1016
- msgid "Sendmail Path:"
1017
- msgstr "Sendmail-Pfad:"
1018
-
1019
- #@ backwpup
1020
- #: app/options-settings.php:43
1021
- msgid "SMTP Hostname:"
1022
- msgstr "SMTP Hostname:"
1023
-
1024
- #@ backwpup
1025
- #: app/options-settings.php:44
1026
- msgid "SMTP Secure Connection:"
1027
- msgstr "SMTP Sichere Verbindung:"
1028
-
1029
- #@ backwpup
1030
- #: app/options-settings.php:50
1031
- msgid "SMTP Username:"
1032
- msgstr "SMTP-Benutername:"
1033
-
1034
- #@ backwpup
1035
- #: app/options-settings.php:51
1036
- msgid "SMTP Password:"
1037
- msgstr "SMTP-Passwort:"
1038
-
1039
- #@ backwpup
1040
- #: app/options-settings.php:59
1041
- msgid "Log file Folder:"
1042
- msgstr "Logdatei-Ordner:"
1043
-
1044
- #@ backwpup
1045
- #: app/options-settings.php:61
1046
- msgid "Max. Log Files in Folder:"
1047
- msgstr "Max. Logdateien im Ordner:"
1048
-
1049
- #@ backwpup
1050
- #: app/options-settings.php:69
1051
- msgid "Disable WP-Cron"
1052
- msgstr "WP-Cron deaktivieren"
1053
-
1054
- #@ backwpup
1055
- #: app/options-settings.php:72
1056
- msgid "You must set up a cron job that calls:"
1057
- msgstr "Sie m&uuml;ssen einen Cron-Job einstellen, der aufruft:"
1058
-
1059
- #@ backwpup
1060
- #: app/options-settings.php:74
1061
- msgid "or URL:"
1062
- msgstr "oder URL:"
1063
-
1064
- #@ backwpup
1065
- #: app/options-settings.php:79
1066
- msgid "Temp Folder"
1067
- msgstr "Temp-Ordner (f&uuml;r tempor&auml;re Dateien)"
1068
-
1069
- #@ backwpup
1070
- #: app/options-tools.php:8
1071
- msgid "BackWPup Tools"
1072
- msgstr "BackWPup-Werkzeuge"
1073
-
1074
- #@ backwpup
1075
- #: app/options-tools.php:29
1076
- msgid "Database restore"
1077
- msgstr "Datenbank wiederherstellen"
1078
-
1079
- #@ backwpup
1080
- #: app/options-tools.php:32
1081
- #: app/options-tools.php:50
1082
- msgid "Restore"
1083
- msgstr "Wiederherstellen"
1084
-
1085
- #@ backwpup
1086
- #: app/options-tools.php:47
1087
- msgid "SQL File to restore:"
1088
- msgstr "SQL-Datei zur Wiederherstellung:"
1089
-
1090
- #@ default
1091
- #: app/php-functions.php:89
1092
- msgid "Add New"
1093
- msgstr "Neuer Auftrag"
1094
-
1095
- #@ backwpup
1096
- #: app/list-tables.php:102
1097
- msgid "Edit:"
1098
- msgstr "Bearbeiten:"
1099
-
1100
- #@ default
1101
- #: app/list-tables.php:105
1102
- msgid "Edit"
1103
- msgstr "Bearbeiten"
1104
-
1105
- #@ backwpup
1106
- #: app/list-tables.php:106
1107
- msgid "Copy"
1108
- msgstr "Kopieren"
1109
-
1110
- #@ backwpup
1111
- #: app/list-tables.php:109
1112
- msgid "Run Now"
1113
- msgstr "Jetzt starten"
1114
-
1115
- #@ backwpup
1116
- #: app/list-tables.php:156
1117
- msgid "Inactive"
1118
- msgstr "Inaktiv"
1119
-
1120
- #@ backwpup
1121
- #: app/list-tables.php:168
1122
- msgid "Runtime:"
1123
- msgstr "Laufzeit:"
1124
-
1125
- #@ backwpup
1126
- #: app/list-tables.php:170
1127
- msgid "None"
1128
- msgstr "Nichts"
1129
-
1130
- #@ backwpup
1131
- #: app/tools/db_restore.php:34
1132
- #: app/tools/db_restore.php:53
1133
- #: app/tools/db_restore.php:68
1134
- #: app/tools/db_restore.php:79
1135
- #: app/tools/db_restore.php:82
1136
- #: app/tools/db_restore.php:85
1137
- #: app/tools/db_restore.php:90
1138
- msgid "ERROR:"
1139
- msgstr "FEHLER:"
1140
-
1141
- #@ backwpup
1142
- #: app/tools/db_restore.php:34
1143
- #, php-format
1144
- msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
1145
- msgstr "Bitte setzen Sie <i>$table_prefix = '%1$s';</i> innerhalb der Datei wp-config.php"
1146
-
1147
- #@ backwpup
1148
- #: app/tools/db_restore.php:53
1149
- #, php-format
1150
- msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
1151
- msgstr "Bitte setzen Sie <i>define('DB_CHARSET', '%1$s');</i> in der Datei wp-config.php"
1152
-
1153
- #@ backwpup
1154
- #: app/tools/db_restore.php:74
1155
- #, php-format
1156
- msgid "%1$s Database Querys done."
1157
- msgstr "%1$s Datenbankabfragen fertig."
1158
-
1159
- #@ backwpup
1160
- #: app/tools/db_restore.php:75
1161
- msgid "Make changes for Blogurl and ABSPATH if needed."
1162
- msgstr "Machen Sie &Auml;nderungen an der Blogurl und bei ABSPATH, falls notwendig."
1163
-
1164
- #@ backwpup
1165
- #: app/tools/db_restore.php:92
1166
- msgid "Restore Done. Please delete the SQL file after Restore."
1167
- msgstr "Wiederherstellung abgeschlossen. Bitte l&ouml;schen Sie die SQL-Datei nach der Wiederherstellung."
1168
-
1169
- #@ backwpup
1170
- #: app/backwpup_dojob.php:75
1171
- msgid "Working Job will closed!!! And a new started!!!"
1172
- msgstr "Der derzeit ausgef&uuml;hrte Auftrag wird geschlossen!!! Ein neuer Auftrag wird gestartet!!!"
1173
-
1174
- #@ backwpup
1175
- #: app/backwpup_dojob.php:78
1176
- msgid "Backup Aborted working to long!!!"
1177
- msgstr "Die Datensicherung wurde abgebrochen, da sie zu lange brauchte!!!"
1178
-
1179
- #@ backwpup
1180
- #: app/backwpup_dojob.php:95
1181
- #, php-format
1182
- msgid "Job %1$s already running!!!"
1183
- msgstr "Auftrag %1$s l&uuml;uft bereits!!!"
1184
-
1185
- #@ backwpup
1186
- #: app/backwpup_dojob.php:135
1187
- #, php-format
1188
- msgid "Memory limit set to %1$s ,because can not use PHP: memory_get_usage() function to dynamically increase the Memory!"
1189
- msgstr "Das Speicherlimit ist auf %1$s, weil die PHP-Funktion memory_get_usage() nicht genutzt werden kann, die ansonsten dynamisch den Speicher erh&ouml;ht!"
1190
-
1191
- #@ backwpup
1192
- #: app/backwpup_dojob.php:541
1193
- msgid "cURL:"
1194
- msgstr "cURL:"
1195
-
1196
- #@ backwpup
1197
- #: app/backwpup_dojob.php:556
1198
- msgid "Can not Export to XML! no cURL or allow_url_fopen Support!"
1199
- msgstr "Als XML kann nicht exportiert werden! Es steht keine cURL- oder allow_url_fopen-Unterst&uuml;tzung zur Verf&uuml;gung!"
1200
-
1201
- #@ backwpup
1202
- #: app/backwpup_dojob.php:940
1203
- msgid "FTP Folder on Server not exists!"
1204
- msgstr "Der FTP-Ordner auf dem Server existiert nicht!"
1205
-
1206
- #@ backwpup
1207
- #: app/backwpup_dojob.php:942
1208
- msgid "FTP Folder created!"
1209
- msgstr "FTP-Ordner erstellt!"
1210
-
1211
- #@ backwpup
1212
- #: app/backwpup_dojob.php:945
1213
- msgid "FTP Folder on Server can not created!"
1214
- msgstr "Der FTP-Ordner auf dem Server kann nicht angelegt werden!"
1215
-
1216
- #@ backwpup
1217
- #: app/backwpup_dojob.php:982
1218
- msgid "Prepare Sending backup file with mail..."
1219
- msgstr "Datensicherungs-Datei wird vorbereitet zum Versenden via E-Mail ..."
1220
-
1221
- #@ backwpup
1222
- #: app/backwpup_dojob.php:1084
1223
- msgid "Can not delete file on S3://"
1224
- msgstr "Datei auf S3 kann nicht gel&ouml;scht werden://"
1225
-
1226
- #@ backwpup
1227
- #: app/backwpup_dojob.php:1111
1228
- msgid "Connected to Rackspase ..."
1229
- msgstr "Verbunden mit Rackspase ..."
1230
-
1231
- #@ backwpup
1232
- #: app/backwpup_dojob.php:1127
1233
- #: app/backwpup_dojob.php:1176
1234
- msgid "Rackspase Cloud API:"
1235
- msgstr "Rackspase Cloud API:"
1236
-
1237
- #@ backwpup
1238
- #: app/backwpup_dojob.php:1132
1239
- msgid "Rackspase Cloud Container not exists:"
1240
- msgstr "Rackspase Cloud Container existiert nicht:"
1241
-
1242
- #@ backwpup
1243
- #: app/backwpup_dojob.php:1144
1244
- msgid "Backup File transferred to RSC://"
1245
- msgstr "Datensicherungs-Datei transferiert zu RSC://"
1246
-
1247
- #@ backwpup
1248
- #: app/backwpup_dojob.php:1147
1249
- msgid "Can not transfer backup to RSC."
1250
- msgstr "Datensicherung kann nicht zu RSC transferiert werden."
1251
-
1252
- #@ backwpup
1253
- #: app/backwpup_dojob.php:1169
1254
- msgid "Can not delete file on RSC://"
1255
- msgstr "Datei kann nicht gel&ouml;scht werden auf RSC://"
1256
-
1257
- #@ backwpup
1258
- #: app/backwpup_dojob.php:1172
1259
- msgid "files deleted on Racspase Cloud Container!"
1260
- msgstr "Dateien gel&ouml;scht auf dem Rackspase Cloud Container!"
1261
-
1262
- #@ default
1263
- #: app/compatibility/class-wp-list-table.php:181
1264
- msgid "No items found."
1265
- msgstr "Keine Eintr&auml;ge gefunden."
1266
-
1267
- #@ default
1268
- #: app/compatibility/class-wp-list-table.php:363
1269
- msgid "Show all dates"
1270
- msgstr "Zeige alle Daten"
1271
-
1272
- #@ default
1273
- #: app/compatibility/class-wp-list-table.php:391
1274
- msgid "List View"
1275
- msgstr "Listenansicht"
1276
-
1277
- #@ default
1278
- #: app/compatibility/class-wp-list-table.php:392
1279
- msgid "Excerpt View"
1280
- msgstr "Auszugsansicht"
1281
-
1282
- #@ default
1283
- #: app/compatibility/class-wp-list-table.php:418
1284
- #, php-format
1285
- msgid "%s pending"
1286
- msgstr "%s anstehend"
1287
-
1288
- #@ default
1289
- #: app/compatibility/class-wp-list-table.php:474
1290
- #: app/compatibility/class-wp-list-table.php:870
1291
- #, php-format
1292
- msgid "1 item"
1293
- msgid_plural "%s items"
1294
- msgstr[0] "1 St&uuml;ck"
1295
- msgstr[1] "%s St&uuml;cke"
1296
-
1297
- #@ default
1298
- #: app/compatibility/class-wp-list-table.php:492
1299
- msgid "Go to the first page"
1300
- msgstr "Gehen Sie zur ersten Seite"
1301
-
1302
- #@ default
1303
- #: app/compatibility/class-wp-list-table.php:499
1304
- msgid "Go to the previous page"
1305
- msgstr "Gehen Sie zur vorherigen Seite"
1306
-
1307
- #@ default
1308
- #: app/compatibility/class-wp-list-table.php:508
1309
- msgid "Current page"
1310
- msgstr "Aktuelle Seite"
1311
-
1312
- #@ default
1313
- #: app/compatibility/class-wp-list-table.php:519
1314
- msgid "Go to the next page"
1315
- msgstr "Gehen Sie zur n&auml;chsten Seite"
1316
-
1317
- #@ default
1318
- #: app/compatibility/class-wp-list-table.php:526
1319
- msgid "Go to the last page"
1320
- msgstr "Gehen Sie zur letzten Seite"
1321
-
1322
- #@ backwpup
1323
- #: app/php-functions.php:52
1324
- msgid "BackWPup Manage Backups"
1325
- msgstr "BackWPup-Datensicherungen verwalten"
1326
-
1327
- #@ backwpup
1328
- #: app/php-functions.php:79
1329
- msgid "BackWPup View Logs"
1330
- msgstr "BackWPup-Anzeige-Logdateien"
1331
-
1332
- #@ backwpup
1333
- #: app/php-functions.php:203
1334
- msgid "Backups"
1335
- msgstr "Datensicherungen"
1336
-
1337
- #@ default
1338
- #: app/php5-functions.php:22
1339
- msgid "New"
1340
- msgstr "Neu"
1341
-
1342
- #@ backwpup
1343
- #: app/php5-functions.php:554
1344
- msgid "Missing Access Key ID!"
1345
- msgstr "Access Key ID wird vermisst!"
1346
-
1347
- #@ backwpup
1348
- #: app/php5-functions.php:561
1349
- msgid "Missing Secret Access Key!"
1350
- msgstr "Secret Access Key wird vermisst!"
1351
-
1352
- #@ backwpup
1353
- #: app/php5-functions.php:617
1354
- #: app/php5-functions.php:743
1355
- msgid "Missing Username!"
1356
- msgstr "Falscher Benutzername!"
1357
-
1358
- #@ backwpup
1359
- #: app/php5-functions.php:624
1360
- msgid "Missing API Key!"
1361
- msgstr "API-Schl&uuml;ssel wird vermisst!"
1362
-
1363
- #@ backwpup
1364
- #: app/php5-functions.php:645
1365
- msgid "No Containerss found!"
1366
- msgstr "Keine Container gefunden!"
1367
-
1368
- #@ backwpup
1369
- #: app/php-functions.php:797
1370
- msgid "- WordPress 2.8 or heiger needed!"
1371
- msgstr "- WordPress 2.8 oder h&ouml;her wird ben&ouml;tigt!"
1372
-
1373
- #@ backwpup
1374
- #: app/php-functions.php:801
1375
- msgid "- PHP 5.2.0 or higher needed!"
1376
- msgstr "- PHP 5.2.0 oder h&ouml;her wird ben&ouml;tigt!"
1377
-
1378
- #@ backwpup
1379
- #: app/php-functions.php:811
1380
- msgid "- Logs Folder not writeable:"
1381
- msgstr "- Logdateien-Ordner ist nicht beschreibbar:"
1382
-
1383
- #@ backwpup
1384
- #: app/php-functions.php:820
1385
- msgid "- Temp Folder not writeable:"
1386
- msgstr "- Temp-Ordner ist nicht beschreibbar:"
1387
-
1388
- #@ backwpup
1389
- #: app/php-functions.php:825
1390
- msgid "- Please Check Scheduling time for Job:"
1391
- msgstr "- Bitte &uuml;berpr&uuml;fen Sie die Zeitplanung f&uuml;r den Auftrag (Scheduling):"
1392
-
1393
- #@ backwpup
1394
- #: app/php-functions.php:828
1395
- msgid "- WP-Cron don't working please check it!"
1396
- msgstr "- WP-Cron arbeitet nicht, bitte &uuml;berpr&uuml;fen Sie die Funktion!"
1397
-
1398
- #@ default
1399
- #: app/list-tables.php:22
1400
- #: app/list-tables.php:198
1401
- #: app/list-tables.php:375
1402
- msgid "No rights"
1403
- msgstr "Keine Rechte"
1404
-
1405
- #@ backwpup
1406
- #: app/list-tables.php:41
1407
- msgid "No Jobs."
1408
- msgstr "Keine Auftr&auml;ge."
1409
-
1410
- #@ backwpup
1411
- #: app/list-tables.php:58
1412
- msgid "Information"
1413
- msgstr "Information"
1414
-
1415
- #@ backwpup
1416
- #: app/list-tables.php:111
1417
- msgid "Clear"
1418
- msgstr "Leeren"
1419
-
1420
- #@ backwpup
1421
- #: app/list-tables.php:133
1422
- msgid "Files Size:"
1423
- msgstr "Gr&ouml;&szlig;e der Dateien:"
1424
-
1425
- #@ backwpup
1426
- #: app/list-tables.php:135
1427
- msgid "Files count:"
1428
- msgstr "Dateiz&auml;hler:"
1429
-
1430
- #@ backwpup
1431
- #: app/list-tables.php:142
1432
- msgid "DB Tables:"
1433
- msgstr "Datenbank-Tabellen:"
1434
-
1435
- #@ backwpup
1436
- #: app/list-tables.php:143
1437
- msgid "DB Rows:"
1438
- msgstr "Datenbank-Zeilen:"
1439
-
1440
- #@ backwpup
1441
- #: app/list-tables.php:159
1442
- msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1443
- msgstr "<a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1444
-
1445
- #@ backwpup
1446
- #: app/list-tables.php:249
1447
- msgid "No Logs."
1448
- msgstr "Keine Logdateien."
1449
-
1450
- #@ backwpup
1451
- #: app/list-tables.php:173
1452
- #: app/list-tables.php:318
1453
- #: app/list-tables.php:486
1454
- msgid "Download"
1455
- msgstr "Herunterladen"
1456
-
1457
- #@ backwpup
1458
- #: app/list-tables.php:411
1459
- msgid "No Backups."
1460
- msgstr "Keine Datensicherungen."
1461
-
1462
- #@ backwpup
1463
- #: app/list-tables.php:425
1464
- msgid "Backupfile"
1465
- msgstr "Datensicherungs-Datei"
1466
-
1467
- #@ backwpup
1468
- #: app/list-tables.php:485
1469
- msgid ""
1470
- "You are about to delete this Backup Archive. \n"
1471
- " 'Cancel' to stop, 'OK' to delete."
1472
- msgstr ""
1473
- "Sie sind dabei dieses Datensicherungs-Archiv zu l&ouml;schen. \n"
1474
- " 'Abbrechen' um zu stoppen, 'OK' um zu l&ouml;schen."
1475
-
1476
- #@ backwpup
1477
- #: app/list-tables.php:503
1478
- msgid "?"
1479
- msgstr "?"
1480
-
1481
- #@ backwpup
1482
- #: app/options-edit-job.php:70
1483
- msgid "Minutes: "
1484
- msgstr "Minuten: "
1485
-
1486
- #@ backwpup
1487
- #: app/options-edit-job.php:78
1488
- #: app/options-edit-job.php:95
1489
- #: app/options-edit-job.php:112
1490
- #: app/options-edit-job.php:130
1491
- #: app/options-edit-job.php:154
1492
- msgid "Any (*)"
1493
- msgstr "Egal (*)"
1494
-
1495
- #@ backwpup
1496
- #: app/options-edit-job.php:87
1497
- msgid "Hours:"
1498
- msgstr "Stunden:"
1499
-
1500
- #@ backwpup
1501
- #: app/options-edit-job.php:104
1502
- msgid "Days:"
1503
- msgstr "Tage:"
1504
-
1505
- #@ default
1506
- #: app/options-edit-job.php:138
1507
- msgid "Augest"
1508
- msgstr "August"
1509
-
1510
- #@ default
1511
- #: app/options-edit-job.php:155
1512
- msgid "Sunday"
1513
- msgstr "Sonntag"
1514
-
1515
- #@ default
1516
- #: app/options-edit-job.php:156
1517
- msgid "Monday"
1518
- msgstr "Montag"
1519
-
1520
- #@ default
1521
- #: app/options-edit-job.php:157
1522
- msgid "Tuesday"
1523
- msgstr "Dienstag"
1524
-
1525
- #@ default
1526
- #: app/options-edit-job.php:158
1527
- msgid "Wednesday"
1528
- msgstr "Mittwoch"
1529
-
1530
- #@ default
1531
- #: app/options-edit-job.php:159
1532
- msgid "Thursday"
1533
- msgstr "Donnerstag"
1534
-
1535
- #@ default
1536
- #: app/options-edit-job.php:160
1537
- msgid "Friday"
1538
- msgstr "Freitag"
1539
-
1540
- #@ default
1541
- #: app/options-edit-job.php:161
1542
- msgid "Saturday"
1543
- msgstr "Samstag"
1544
-
1545
- #@ backwpup
1546
- #: app/options-edit-job.php:166
1547
- msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
1548
- msgstr "Arbeiten nach der <a href=\"http://de.wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>-Auftragsplanung:"
1549
-
1550
- #@ default
1551
- #: app/options-edit-job.php:167
1552
- msgid "Next runtime:"
1553
- msgstr "N&auml;chster Durchlauf:"
1554
-
1555
- #@ backwpup
1556
- #: app/options-edit-job.php:173
1557
- msgid "Backup File"
1558
- msgstr "Datensicherungs-Datei"
1559
-
1560
- #@ backwpup
1561
- #: app/options-edit-job.php:175
1562
- msgid "File Prefix:"
1563
- msgstr "Datei-Vorsilbe:"
1564
-
1565
- #@ backwpup
1566
- #: app/options-edit-job.php:177
1567
- msgid "File Formart:"
1568
- msgstr "Dateiformat:"
1569
-
1570
- #@ backwpup
1571
- #: app/options-edit-job.php:180
1572
- #: app/options-edit-job.php:182
1573
- msgid "Zip"
1574
- msgstr "Zip"
1575
-
1576
- #@ backwpup
1577
- #: app/options-edit-job.php:183
1578
- msgid "Tar"
1579
- msgstr "Tar"
1580
-
1581
- #@ backwpup
1582
- #: app/options-edit-job.php:185
1583
- #: app/options-edit-job.php:187
1584
- msgid "Tar GZip"
1585
- msgstr "Tar GZip"
1586
-
1587
- #@ backwpup
1588
- #: app/options-edit-job.php:189
1589
- #: app/options-edit-job.php:191
1590
- msgid "Tar BZip2"
1591
- msgstr "Tar BZip2"
1592
-
1593
- #@ backwpup
1594
- #: app/options-edit-job.php:246
1595
- msgid "root"
1596
- msgstr "root"
1597
-
1598
- #@ backwpup
1599
- #: app/options-edit-job.php:249
1600
- #: app/options-edit-job.php:265
1601
- #: app/options-edit-job.php:281
1602
- #: app/options-edit-job.php:297
1603
- #: app/options-edit-job.php:313
1604
- msgid "Exclude:"
1605
- msgstr "Ausschlie&szlig;en:"
1606
-
1607
- #@ backwpup
1608
- #: app/options-edit-job.php:262
1609
- msgid "Content"
1610
- msgstr "Inhalt"
1611
-
1612
- #@ backwpup
1613
- #: app/options-edit-job.php:278
1614
- msgid "Plugins"
1615
- msgstr "Plugins"
1616
-
1617
- #@ backwpup
1618
- #: app/options-edit-job.php:294
1619
- msgid "Themes"
1620
- msgstr "Themes (Templates)"
1621
-
1622
- #@ backwpup
1623
- #: app/options-edit-job.php:310
1624
- msgid "Blog Uploads"
1625
- msgstr "Blog-Uploads"
1626
-
1627
- #@ backwpup
1628
- #: app/options-edit-job.php:378
1629
- msgid "Create Bucket:"
1630
- msgstr "Erstelle Bucket:"
1631
-
1632
- #@ backwpup
1633
- #: app/options-edit-job.php:378
1634
- msgid "Bucket Region"
1635
- msgstr "Bucket Region"
1636
-
1637
- #@ backwpup
1638
- #: app/options-edit-job.php:381
1639
- msgid "Max. Backup Files in Bucket Folder:"
1640
- msgstr "Maximale Anzahl Datensicherungs-Dateien im Bucket-Ordner:"
1641
-
1642
- #@ backwpup
1643
- #: app/options-edit-job.php:382
1644
- msgid "Save Backups with reduced redundancy!"
1645
- msgstr "Sichere Datensicherungen mit reduzierter Redundanz!"
1646
-
1647
- #@ backwpup
1648
- #: app/options-edit-job.php:410
1649
- msgid "Backup to Rackspace Cloud"
1650
- msgstr "Datensicherung in die Rackspase Cloud"
1651
-
1652
- #@ backwpup
1653
- #: app/options-edit-job.php:414
1654
- msgid "API Key:"
1655
- msgstr "API-Schl&uuml;ssel"
1656
-
1657
- #@ backwpup
1658
- #: app/options-edit-job.php:397
1659
- #: app/options-edit-job.php:416
1660
- msgid "Container:"
1661
- msgstr "Container:"
1662
-
1663
- #@ backwpup
1664
- #: app/options-edit-job.php:400
1665
- #: app/options-edit-job.php:419
1666
- msgid "Create Container:"
1667
- msgstr "Erstelle Container:"
1668
-
1669
- #@ backwpup
1670
- #: app/options-edit-job.php:401
1671
- #: app/options-edit-job.php:420
1672
- msgid "Directory in Container:"
1673
- msgstr "Verzeichnis im Container:"
1674
-
1675
- #@ backwpup
1676
- #: app/options-edit-job.php:403
1677
- #: app/options-edit-job.php:422
1678
- msgid "Max. Backup Files in Container Folder:"
1679
- msgstr "Maximale Anzahl von Datensicherungs-Dateien im Container-Ordner:"
1680
-
1681
- #@ backwpup
1682
- #: app/options-save.php:63
1683
- msgid "Backup Cleand by User!!!"
1684
- msgstr "Datensicherung ges&auml;ubert vom Benutzer!!!"
1685
-
1686
- #@ backwpup
1687
- #: app/options-save.php:616
1688
- #, php-format
1689
- msgid "Job '%1' changes saved."
1690
- msgstr "Auftrag '%1' Ver&auml;nderungen gepeichert."
1691
-
1692
- #@ backwpup
1693
- #: app/options-save.php:616
1694
- msgid "Jobs overview."
1695
- msgstr "Auftrags&uuml;berblick"
1696
-
1697
- #@ backwpup
1698
- #: app/backwpup_dojob.php:614
1699
- msgid "File or Folder is not readable:"
1700
- msgstr "Datei oder Ordner ist nicht lesbar:"
1701
-
1702
- #@ backwpup
1703
- #: app/backwpup_dojob.php:616
1704
- msgid "Link not followed:"
1705
- msgstr "Link nicht gefolgt:"
1706
-
1707
- #@ backwpup
1708
- #: app/options-edit-job.php:362
1709
- msgid "Use FTP Passiv mode."
1710
- msgstr "FTP-Passiv-Modus benutzen."
1711
-
1712
- #@ backwpup
1713
- #: app/backwpup_dojob.php:685
1714
- msgid "Files to Backup:"
1715
- msgstr "Dateien zur Datensicherung:"
1716
-
1717
- #@ backwpup
1718
- #: app/backwpup_dojob.php:686
1719
- msgid "Size of all Files:"
1720
- msgstr "Gr&ouml;&szlig;e aller Dateien:"
1721
-
1722
- #@ backwpup
1723
- #: app/backwpup_dojob.php:874
1724
- msgid "Connected by SSL-FTP to Server:"
1725
- msgstr "Verbunden via SSL-FTP zum Server:"
1726
-
1727
- #@ backwpup
1728
- #: app/backwpup_dojob.php:876
1729
- msgid "Can not connect by SSL-FTP to Server:"
1730
- msgstr "Verbindung via SSL-FTP zum Server kann nicht hergestellt werden:"
1731
-
1732
- #@ backwpup
1733
- #: app/backwpup_dojob.php:880
1734
- msgid "PHP Function to connect with SSL-FTP to Server not exists!"
1735
- msgstr "Die PHP-Funktion, um via SSL-FTP zum Server zu verbinden, existiert nicht!"
1736
-
1737
- #@ backwpup
1738
- #: app/backwpup_dojob.php:886
1739
- msgid "Connected to FTP Server:"
1740
- msgstr "Verbunden mit dem FTP-Server:"
1741
-
1742
- #@ backwpup
1743
- #: app/backwpup_dojob.php:888
1744
- msgid "Can not connect to FTP Server:"
1745
- msgstr "Verbindung zu FTP-Server kann nicht hergestellt werden:"
1746
-
1747
- #@ backwpup
1748
- #: app/backwpup_dojob.php:917
1749
- msgid "Entering Passive Mode"
1750
- msgstr "Passivmodus wird betreten"
1751
-
1752
- #@ backwpup
1753
- #: app/backwpup_dojob.php:922
1754
- msgid "Entering Normal Mode"
1755
- msgstr "Normalmodus wird betreten"
1756
-
1757
- #@ backwpup
1758
- #: app/backwpup_dojob.php:924
1759
- msgid "Can not Entering Normal Mode"
1760
- msgstr "Normalmodus kann nicht betreten werden"
1761
-
1762
- #@ backwpup
1763
- #: app/backwpup_dojob.php:932
1764
- msgid "Error getting SYSTYPE"
1765
- msgstr "Fehler, SYSTYPE wird angezeigt"
1766
-
1767
- #@ backwpup
1768
- #: app/options-edit-job.php:361
1769
- msgid "Use SSL-FTP Connection."
1770
- msgstr "Benutze SSL-FTP-Verbindung."
1771
-
1772
- #@ backwpup
1773
- #: app/options-edit-job.php:429
1774
- msgid "Backup to Dropbox"
1775
- msgstr "Datensicherung in die Dropbox"
1776
-
1777
- #@ backwpup
1778
- #: app/options-edit-job.php:437
1779
- #: app/options-edit-job.php:455
1780
- msgid "Directory:"
1781
- msgstr "Ordner:"
1782
-
1783
- #@ backwpup
1784
- #. translators: plugin header field 'PluginURI'
1785
- #: backwpup.php:0
1786
- msgid "http://danielhuesken.de/portfolio/backwpup/"
1787
- msgstr "http://danielhuesken.de/portfolio/backwpup/"
1788
-
1789
- #@ backwpup
1790
- #. translators: plugin header field 'Description'
1791
- #: backwpup.php:0
1792
- msgid "Backup and more of your WordPress Blog Database and Files."
1793
- msgstr "Datensicherung und mehr von Ihrer WordPress-Datenbank sowie den Dateien."
1794
-
1795
- #@ backwpup
1796
- #. translators: plugin header field 'Author'
1797
- #: backwpup.php:0
1798
- msgid "Daniel H&uuml;sken"
1799
- msgstr "Daniel H&uuml;sken"
1800
-
1801
- #@ backwpup
1802
- #. translators: plugin header field 'AuthorURI'
1803
- #: backwpup.php:0
1804
- msgid "http://danielhuesken.de"
1805
- msgstr "http://danielhuesken.de"
1806
-
1807
- #@ default
1808
- #: app/compatibility/class-wp-list-table.php:515
1809
- #, php-format
1810
- msgctxt "paging"
1811
- msgid "%1$s of %2$s"
1812
- msgstr "%1$s von %2$s"
1813
-
1814
- #@ backwpup
1815
- #: app/backwpup_dojob.php:1097
1816
- msgid "Amazon S3 API:"
1817
- msgstr "Amazon S3 API:"
1818
-
1819
- #@ backwpup
1820
- #: app/backwpup_dojob.php:1285
1821
- msgid "Backup File transferred to DropBox."
1822
- msgstr "Datensicherungs-Datei wird zur Dropbox &uuml;bertragen."
1823
-
1824
- #@ backwpup
1825
- #: app/backwpup_dojob.php:1516
1826
- msgid "BackWPup Log from"
1827
- msgstr "BackWPup Log-Daten von"
1828
-
1829
- #@ default
1830
- #@ backwpup
1831
- #: app/list-tables.php:46
1832
- #: app/list-tables.php:107
1833
- msgid "Export"
1834
- msgstr "Export"
1835
-
1836
- #@ backwpup
1837
- #: app/list-tables.php:173
1838
- msgid "Download last Backup"
1839
- msgstr "Letzte Datensicherung herunterladen"
1840
-
1841
- #@ backwpup
1842
- #: app/list-tables.php:175
1843
- msgid "View last Log"
1844
- msgstr "Letzte Log-Daten ansehen"
1845
-
1846
- #@ backwpup
1847
- #: app/list-tables.php:175
1848
- msgid "Log"
1849
- msgstr "Log-Daten"
1850
-
1851
- #@ backwpup
1852
- #: app/options-edit-job.php:378
1853
- msgid "US-East (Northern Virginia)"
1854
- msgstr "US-Ost (Nord-Virginia)"
1855
-
1856
- #@ backwpup
1857
- #: app/options-edit-job.php:378
1858
- msgid "US-West (Northern California)"
1859
- msgstr "US-West (Nordkalifornien)"
1860
-
1861
- #@ backwpup
1862
- #: app/options-edit-job.php:378
1863
- msgid "EU (Ireland)"
1864
- msgstr "EU (Irland)"
1865
-
1866
- #@ backwpup
1867
- #: app/options-edit-job.php:378
1868
- msgid "Asia Pacific (Singapore)"
1869
- msgstr "Asien/ Pazifik (Singapur)"
1870
-
1871
- #@ backwpup
1872
- #: app/options-settings.php:63
1873
- msgid "Gzip Log files!"
1874
- msgstr "Gzip Log-Dateien!"
1875
-
1876
- #@ backwpup
1877
- #: app/options-tools.php:61
1878
- msgid "Import Jobs settings"
1879
- msgstr "Auftrags-Import-Einstellungen"
1880
-
1881
- #@ backwpup
1882
- #: app/options-tools.php:63
1883
- msgid "Select File to import:"
1884
- msgstr "Datei zum Importieren ausw&auml;hlen:"
1885
-
1886
- #@ backwpup
1887
- #: app/options-tools.php:64
1888
- #: app/options-tools.php:66
1889
- msgid "Upload"
1890
- msgstr "Hochladen"
1891
-
1892
- #@ backwpup
1893
- #: app/options-tools.php:67
1894
- msgid "Select Jobs to Import:"
1895
- msgstr "Auftr&auml;ge zum Importieren ausw&auml;hlen:"
1896
-
1897
- #@ backwpup
1898
- #: app/options-tools.php:71
1899
- msgid "Import Type"
1900
- msgstr "Import-Typ"
1901
-
1902
- #@ backwpup
1903
- #: app/options-tools.php:71
1904
- msgid "No Import"
1905
- msgstr "Kein Import"
1906
-
1907
- #@ backwpup
1908
- #: app/options-tools.php:73
1909
- msgid "Overwrite"
1910
- msgstr "&Uuml;berschreiben"
1911
-
1912
- #@ backwpup
1913
- #: app/options-tools.php:73
1914
- msgid "Append"
1915
- msgstr "Anh&auml;ngen"
1916
-
1917
- #@ backwpup
1918
- #: app/options-tools.php:75
1919
- #: app/options-tools.php:79
1920
- #: app/options-tools.php:81
1921
- msgid "Import"
1922
- msgstr "Import"
1923
-
1924
- #@ backwpup
1925
- #: app/options-tools.php:117
1926
- msgid "Jobs imported!"
1927
- msgstr "Auftr&auml;ge importiert!"
1928
-
1929
- #@ backwpup
1930
- #: app/backwpup_dojob.php:1193
1931
- msgid "Microsoft Azure Container not exists:"
1932
- msgstr "Microsoft Azure Container existiert nicht:"
1933
-
1934
- #@ backwpup
1935
- #: app/backwpup_dojob.php:1196
1936
- msgid "Connected to Microsoft Azure Container:"
1937
- msgstr "Mit Microsoft Azure Container verbinden:"
1938
-
1939
- #@ backwpup
1940
- #: app/backwpup_dojob.php:1202
1941
- msgid "Backup File transferred to azure://"
1942
- msgstr "Datensicherungs-Datei transferiert zu azure://"
1943
-
1944
- #@ backwpup
1945
- #: app/backwpup_dojob.php:1205
1946
- msgid "Can not transfer backup to Microsoft Azure."
1947
- msgstr "Die Datensicherungs-Datei kann nicht zu Microsoft Azure transferiert werden."
1948
-
1949
- #@ backwpup
1950
- #: app/backwpup_dojob.php:1226
1951
- msgid "files deleted on Microsoft Azure Container!"
1952
- msgstr "Dateien gel&ouml;scht im Microsoft Azure Container!"
1953
-
1954
- #@ backwpup
1955
- #: app/backwpup_dojob.php:1231
1956
- msgid "Microsoft Azure API:"
1957
- msgstr "Microsoft Azure API (Schnittstelle):"
1958
-
1959
- #@ backwpup
1960
- #: app/php5-functions.php:585
1961
- msgid "No Buckets found!"
1962
- msgstr "Keine Buckets gefunden!"
1963
-
1964
- #@ backwpup
1965
- #: app/php5-functions.php:679
1966
- msgid "Missing Hostname!"
1967
- msgstr "Hostname (Server) nicht angegeben!"
1968
-
1969
- #@ backwpup
1970
- #: app/php5-functions.php:686
1971
- msgid "Missing Account Name!"
1972
- msgstr "Kontoname (Benutzername) nicht angegeben!"
1973
-
1974
- #@ backwpup
1975
- #: app/php5-functions.php:693
1976
- msgid "Missing Access Key!"
1977
- msgstr "Zugangsschl&uuml;ssel (Access Key) nicht angegeben!"
1978
-
1979
- #@ backwpup
1980
- #: app/php5-functions.php:710
1981
- msgid "No Container found!"
1982
- msgstr "Kein Container gefunden!"
1983
-
1984
- #@ backwpup
1985
- #: app/options-edit-job.php:378
1986
- msgid "Asia Pacific (Japan)"
1987
- msgstr "Asien Pazifik (Japan)"
1988
-
1989
- #@ backwpup
1990
- #: app/options-edit-job.php:389
1991
- msgid "Backup to Micosoft Azure (Blob)"
1992
- msgstr "Datensicherung zu Microsoft Azure (Blob)"
1993
-
1994
- #@ backwpup
1995
- #: app/options-edit-job.php:391
1996
- msgid "Host:"
1997
- msgstr "Host (Server):"
1998
-
1999
- #@ backwpup
2000
- #: app/options-edit-job.php:392
2001
- msgid "Normely: blob.core.windows.net"
2002
- msgstr "Normalerweise: blob.core.windows.net"
2003
-
2004
- #@ backwpup
2005
- #: app/options-edit-job.php:393
2006
- msgid "Account Name:"
2007
- msgstr "Kontoname/ Benutzername:"
2008
-
2009
- #@ backwpup
2010
- #: app/options-edit-job.php:395
2011
- msgid "Access Key:"
2012
- msgstr "Zugangsschl&uuml;ssel (Access Key):"
2013
-
2014
- #@ backwpup
2015
- #: app/backwpup_dojob.php:1287
2016
- msgid "Can not transfere Backup file to DropBox:"
2017
- msgstr "Datensicherungs-Datei kann nicht zu Dropbox transferiert werden:"
2018
-
2019
- #@ backwpup
2020
- #: app/backwpup_dojob.php:1308
2021
- msgid "files deleted on DropBox Folder!"
2022
- msgstr "Dateien gel&ouml;scht im Dropbox-Ordner!"
2023
-
2024
- #@ backwpup
2025
- #: app/backwpup_dojob.php:1312
2026
- msgid "DropBox API:"
2027
- msgstr "Dropbox-API-Schnittstelle:"
2028
-
2029
- #@ backwpup
2030
- #: app/options-edit-job.php:369
2031
- #: app/options-edit-job.php:389
2032
- #: app/options-edit-job.php:410
2033
- #: app/options-edit-job.php:429
2034
- #: app/options-edit-job.php:446
2035
- msgid "Create Account"
2036
- msgstr "Konto erstellen"
2037
-
2038
- #@ backwpup
2039
- #: app/options-edit-job.php:371
2040
- #: app/options-edit-job.php:395
2041
- #: app/options-edit-job.php:414
2042
- msgid "Find it"
2043
- msgstr "Finden"
2044
-
2045
- #@ backwpup
2046
- #: app/options-edit-job.php:439
2047
- msgid "Max. Backup Files in Dopbox Folder:"
2048
- msgstr "Maximale Anzahl von Datensicherungs-Dateien im Dropbox-Ordner:"
2049
-
2050
- #@ backwpup
2051
- #: app/php-functions.php:330
2052
- msgid "FTP extension needed for FTP!"
2053
- msgstr "Die FTP-Erweiterung wird f&uuml;r FTP ben&ouml;tigt!"
2054
-
2055
- #@ backwpup
2056
- #: app/php-functions.php:336
2057
- #: app/php-functions.php:342
2058
- msgid "Curl and Json extensions needed for DropBox!"
2059
- msgstr "Die Curl- und Json-Erweiterungen werden f&uuml;r Dropbox ben&ouml;tigt!"
2060
-
2061
- #@ backwpup
2062
- #: app/php-functions.php:348
2063
- msgid "Curl extension needed for Amazon S3!"
2064
- msgstr "Die Curl-Erweiterung wird f&uuml;r Amazon S3 ben&ouml;tigt!"
2065
-
2066
- #@ backwpup
2067
- #: app/php-functions.php:354
2068
- msgid "Curl extension needed for RackSpaceCloud!"
2069
- msgstr "Die Curl-Erweiterung wird f&uuml;r RackSpaceCloud ben&ouml;tigt!"
2070
-
2071
- #@ backwpup
2072
- #: app/php-functions.php:360
2073
- msgid "Curl extension needed for Microsoft Azure!"
2074
- msgstr "Die Curl-Erweiterung wird f&uuml;r Microsoft Azure ben&ouml;tigt!"
2075
-
2076
- #@ backwpup
2077
- #: app/backwpup_dojob.php:776
2078
- msgid "File Name to Long to save corectly in TAR Backup Archive:"
2079
- msgstr "Der Dateiname ist zu lang zum Speichern im TAR-Datensicherungs-Archiv:"
2080
-
2081
- #@ backwpup
2082
- #: app/backwpup_dojob.php:778
2083
- msgid "File Path to Long to save corectly in TAR Backup Archive:"
2084
- msgstr "Der Dateipfad ist zu lang zum korrekten Speichern im TAR-Datensicherungs-Archiv:"
2085
-
2086
- #@ backwpup
2087
- #: app/backwpup_dojob.php:1271
2088
- msgid "Authed to DropBox from "
2089
- msgstr "Authentifiziert mit Dropbox von "
2090
-
2091
- #@ backwpup
2092
- #: app/backwpup_dojob.php:1276
2093
- msgid "No free space left on DropBox!!!"
2094
- msgstr "Kein freier Speicherplatz mehr &uuml;brig auf Dropbox!!!"
2095
-
2096
- #@ backwpup
2097
- #: app/backwpup_dojob.php:1279
2098
- msgid "Free Space on DropBox: "
2099
- msgstr "Freier Speicherplatz auf Dropbox: "
2100
-
2101
- #@ backwpup
2102
- #: app/options-edit-job.php:122
2103
- msgid "Day of Month:"
2104
- msgstr "Tag des Monats:"
2105
-
2106
- #@ backwpup
2107
- #: app/options-edit-job.php:146
2108
- msgid "Day of Week:"
2109
- msgstr "Wochentag:"
2110
-
2111
- #@ backwpup
2112
- #: app/options-edit-job.php:203
2113
- msgid "Only send an e-mail if there are errors."
2114
- msgstr "Eine E-Mail nur senden, wenn Fehler auftraten."
2115
-
2116
- #@ backwpup
2117
- #: app/options-edit-job.php:224
2118
- msgid "Database tables to <span style=\"color:red;\">ex</span>clude:"
2119
- msgstr "Datenbank-Tabellen zum <span style=\"color:red;\">aus</span>schlie&szlig;en:"
2120
-
2121
- #@ backwpup
2122
- #: app/options-edit-job.php:235
2123
- msgid "Use short INSERTs instead of full (with keys)"
2124
- msgstr "Kurze INSERTs benutzen, statt kompletter (mit Schl&uuml;ssel)"
2125
-
2126
- #@ backwpup
2127
- #: app/options-edit-job.php:342
2128
- msgid "(Leave it empty to store Backups not local!)"
2129
- msgstr "(Leer lassen, um Datensicherungen nicht lokal zu speichern!)"
2130
-
2131
- #@ backwpup
2132
- #: app/options-edit-job.php:360
2133
- #: app/options-edit-job.php:381
2134
- #: app/options-edit-job.php:403
2135
- #: app/options-edit-job.php:422
2136
- #: app/options-edit-job.php:439
2137
- #: app/options-edit-job.php:457
2138
- msgid "(Oldest files will be deleted first.)"
2139
- msgstr "(&Auml;lteste Dateien werden zuerst gel&ouml;scht.)"
2140
-
2141
- #@ backwpup
2142
- #: app/options-edit-job.php:431
2143
- msgid "Login:"
2144
- msgstr "Login:"
2145
-
2146
- #@ backwpup
2147
- #: app/options-edit-job.php:433
2148
- msgid "Not authenticated!"
2149
- msgstr "Nicht authentifiziert!"
2150
-
2151
- #@ backwpup
2152
- #: app/options-edit-job.php:433
2153
- #: app/options-save.php:596
2154
- msgid "Authenticate!"
2155
- msgstr "Authentifizieren!"
2156
-
2157
- #@ backwpup
2158
- #: app/options-edit-job.php:435
2159
- msgid "Authenticated!"
2160
- msgstr "Authentifiziert!"
2161
-
2162
- #@ backwpup
2163
- #: app/options-edit-job.php:435
2164
- #: app/options-save.php:607
2165
- msgid "Delete!"
2166
- msgstr "L&ouml;schen!"
2167
-
2168
- #@ backwpup
2169
- #: app/options-edit-job.php:448
2170
- #: app/options-edit-job.php:465
2171
- msgid "E-mail address:"
2172
- msgstr "E-Mail-Adresse:"
2173
-
2174
- #@ backwpup
2175
- #: app/options-save.php:610
2176
- msgid "Dropbox authentication deleted!"
2177
- msgstr "Dropbox-Authentifizierung gel&ouml;scht!"
2178
-
2179
- #@ backwpup
2180
- #: app/options-settings.php:64
2181
- msgid "Log a detailed file list."
2182
- msgstr "Eine detaillierte Dateiliste mitloggen."
2183
-
2184
- #@ backwpup
2185
- #: app/options-settings.php:71
2186
- msgid "Use your host's Cron Job and disable WP-Cron"
2187
- msgstr "Den Cron-Job Ihres Webhosters/ -Servers benutzen und WP-Cron deaktivieren"
2188
-
2189
- #@ backwpup
2190
- #: app/options-tools.php:53
2191
- msgid "Copy SQL file to blog root folder to use for a restoration."
2192
- 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."
2193
-
2194
- #@ backwpup
2195
- #: app/php-functions.php:808
2196
- msgid "- Logs Folder not exists:"
2197
- msgstr "- Der Log-Daten-Ordner existiert nicht:"
2198
-
2199
- #@ backwpup
2200
- #: app/php-functions.php:817
2201
- msgid "- Temp Folder not exists:"
2202
- msgstr "- Der Temp-Ordner existiert nicht:"
2203
-
2204
- #@ backwpup
2205
- #: app/backwpup_dojob.php:1371
2206
- msgid "SugarSync API:"
2207
- msgstr "SugarSync-API:"
2208
-
2209
- #@ backwpup
2210
- #: app/options-edit-job.php:446
2211
- msgid "Backup to SugarSync"
2212
- msgstr "Datensicherung zu SugarSync"
2213
-
2214
- #@ backwpup
2215
- #: app/php5-functions.php:578
2216
- msgid "S3 Message:"
2217
- msgstr "S3-Nachricht:"
2218
-
2219
- #@ backwpup
2220
- #: app/backwpup_dojob.php:1328
2221
- msgid "Authed to SugarSync with Nick "
2222
- msgstr "Authentifiziert mit SugarSync mit Nick "
2223
-
2224
- #@ backwpup
2225
- #: app/backwpup_dojob.php:1332
2226
- msgid "No free space left on SugarSync!!!"
2227
- msgstr "Sie haben keinen freien Speicherplatz mehr &uuml;brig bei SugarSync!!!"
2228
-
2229
- #@ backwpup
2230
- #: app/backwpup_dojob.php:1335
2231
- msgid "Free Space on SugarSync: "
2232
- msgstr "Freier Speicherplatz bei SugarSync: "
2233
-
2234
- #@ backwpup
2235
- #: app/backwpup_dojob.php:1344
2236
- msgid "Backup File transferred to SugarSync."
2237
- msgstr "Datensicherungsdatei zu SugarSync &uuml;bertragen."
2238
-
2239
- #@ backwpup
2240
- #: app/backwpup_dojob.php:1346
2241
- msgid "Can not transfere Backup file to SugarSync:"
2242
- msgstr "Datensicherungsdatei kann nicht zu SugarSync &uuml;bertragen werden:"
2243
-
2244
- #@ backwpup
2245
- #: app/backwpup_dojob.php:1367
2246
- msgid "files deleted on Sugarsync Folder!"
2247
- msgstr "Dateien gel&ouml;scht im SugarSync-Ordner!"
2248
-
2249
- #@ backwpup
2250
- #: app/options-edit-job.php:452
2251
- msgid "Root:"
2252
- msgstr "Root:"
2253
-
2254
- #@ backwpup
2255
- #: app/php5-functions.php:750
2256
- msgid "Missing Password!"
2257
- msgstr "Passwort fehlt!"
2258
-
2259
- #@ backwpup
2260
- #: app/php5-functions.php:770
2261
- msgid "No Syncfolders found!"
2262
- msgstr "Keine Sync-Ordner gefunden!"
2263
-
2264
- #@ backwpup
2265
- #. translators: plugin header field 'Version'
2266
- #: backwpup.php:0
2267
- msgid "1.7.0"
2268
- msgstr "1.7.0"
2269
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=danie
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, Rackspace, Cloud, Azure, DropBox, SugarSync
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
- Stable tag: 1.7.0
8
 
9
  Backup your WordPress Database and Files, and more!
10
 
@@ -102,6 +102,11 @@ Destinations are:
102
  1. Job Page
103
 
104
  == Changelog ==
 
 
 
 
 
105
  = 1.7.0 =
106
  * Improved Dropbox referer handling
107
  * Sycurity fix (thanks to Phil Taylor - Sense of Security)
4
  Tags: backup, admin, file, Database, mysql, Cron, ftp, S3, export, xml, Rackspace, Cloud, Azure, DropBox, SugarSync
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
+ Stable tag: 1.7.1
8
 
9
  Backup your WordPress Database and Files, and more!
10
 
102
  1. Job Page
103
 
104
  == Changelog ==
105
+ = 1.7.1 =
106
+ * Bugfix on make new jobs
107
+ * Bugfix on job run with dbdump
108
+ * Bugfix on Backup Bulk actions
109
+
110
  = 1.7.0 =
111
  * Improved Dropbox referer handling
112
  * Sycurity fix (thanks to Phil Taylor - Sense of Security)