BackWPup – WordPress Backup Plugin - Version 1.7.3

Version Description

  • Fixed Dropbox PLAINTEXT signatre
  • Updated pod
  • Added/updated German translation (thx David Decker)
Download this release

Release Info

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

Code changes from version 1.7.2 to 1.7.3

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