Version Description
= After an upgrade from version 2 =
Please check all settings after the update:
- Dropbox authentication must be done again
- SugarSync authentication must be done again
- S3 Settings
- Google Storage is now in S3
- Check all your passwords
Download this release
Release Info
| Developer | nullbyte |
| Plugin | |
| Version | 3.0.11 |
| Comparing to | |
| See all releases | |
Code changes from version 3.0.10 to 3.0.11
- backwpup.php +8 -4
- css/admin.css +1 -1
- css/admin.dev.css +8 -0
- css/general.css +1 -1
- css/general.dev.css +2 -7
- images/iplogo.png +0 -0
- images/mp_logo_small.png +0 -0
- inc/class-admin.php +38 -49
- inc/class-cron.php +14 -12
- inc/class-destination-dropbox.php +13 -5
- inc/class-destination-s3.php +1 -1
- inc/class-install.php +3 -5
- inc/class-job.php +1 -1
- inc/class-page-about.php +4 -7
- inc/class-page-backwpup.php +24 -10
- inc/class-page-editjob.php +6 -6
- languages/backwpup-de_DE.mo +0 -0
- languages/backwpup-de_DE.po +299 -1633
- languages/backwpupadminbar-de_DE.mo +0 -0
- readme.txt +7 -1
- sdk/Aws/Aws/Common/Aws.php +1 -1
- sdk/Aws/Aws/Common/Resources/aws-config.php +6 -0
- sdk/Aws/Aws/S3/Command/S3Command.php +14 -1
- sdk/Aws/Aws/S3/Exception/BucketAlreadyExistsException.php +1 -2
- sdk/Aws/Aws/S3/Exception/Parser/S3ExceptionParser.php +17 -0
- sdk/Aws/Aws/S3/Resources/s3-2006-03-01.php +12 -0
- sdk/Aws/Aws/S3/S3Client.php +1 -1
- sdk/Aws/Aws/S3/StreamWrapper.php +1 -1
- sdk/Aws/Guzzle/Common/Version.php +1 -1
- sdk/Aws/Guzzle/Http/Client.php +51 -31
- sdk/Aws/Guzzle/Http/Message/Request.php +2 -1
- sdk/Aws/Guzzle/Plugin/Mock/MockPlugin.php +1 -1
backwpup.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* Description: WordPress Backup and more...
|
| 6 |
* Author: Inpsyde GmbH
|
| 7 |
* Author URI: http://inpsyde.com
|
| 8 |
-
* Version: 3.0.
|
| 9 |
* Text Domain: backwpup
|
| 10 |
* Domain Path: /languages/
|
| 11 |
* Network: true
|
|
@@ -70,6 +70,9 @@ if ( ! class_exists( 'BackWPup' ) ) {
|
|
| 70 |
spl_autoload_register( array( $this, 'autoloader' ) );
|
| 71 |
else //auto loader fallback
|
| 72 |
$this->autoloader_fallback();
|
|
|
|
|
|
|
|
|
|
| 73 |
//load pro features
|
| 74 |
if ( is_file( dirname( __FILE__ ) . '/inc/features/class-features.php' ) )
|
| 75 |
require dirname( __FILE__ ) . '/inc/features/class-features.php';
|
|
@@ -88,9 +91,6 @@ if ( ! class_exists( 'BackWPup' ) ) {
|
|
| 88 |
register_deactivation_hook( __FILE__, array( 'BackWPup_Install', 'deactivate' ) );
|
| 89 |
//Things that must do in plugin init
|
| 90 |
add_action( 'init', array( $this, 'plugin_init' ) );
|
| 91 |
-
//start upgrade if needed
|
| 92 |
-
if ( get_site_option( 'backwpup_version' ) != self::get_plugin_data( 'Version' ) && class_exists( 'BackWPup_Install' ) )
|
| 93 |
-
BackWPup_Install::activate();
|
| 94 |
//only in backend
|
| 95 |
if ( is_admin() && class_exists( 'BackWPup_Admin' ) )
|
| 96 |
BackWPup_Admin::getInstance();
|
|
@@ -239,6 +239,10 @@ if ( ! class_exists( 'BackWPup' ) ) {
|
|
| 239 |
//Add Admin Bar
|
| 240 |
if ( ! defined( 'DOING_CRON' ) && current_user_can( 'backwpup' ) && current_user_can( 'backwpup' ) && is_admin_bar_showing() && get_site_option( 'backwpup_cfg_showadminbar', FALSE ) )
|
| 241 |
BackWPup_Adminbar::getInstance();
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
}
|
| 243 |
|
| 244 |
/**
|
| 5 |
* Description: WordPress Backup and more...
|
| 6 |
* Author: Inpsyde GmbH
|
| 7 |
* Author URI: http://inpsyde.com
|
| 8 |
+
* Version: 3.0.11
|
| 9 |
* Text Domain: backwpup
|
| 10 |
* Domain Path: /languages/
|
| 11 |
* Network: true
|
| 70 |
spl_autoload_register( array( $this, 'autoloader' ) );
|
| 71 |
else //auto loader fallback
|
| 72 |
$this->autoloader_fallback();
|
| 73 |
+
//start upgrade if needed
|
| 74 |
+
if ( get_site_option( 'backwpup_version' ) != self::get_plugin_data( 'Version' ) && class_exists( 'BackWPup_Install' ) )
|
| 75 |
+
BackWPup_Install::activate();
|
| 76 |
//load pro features
|
| 77 |
if ( is_file( dirname( __FILE__ ) . '/inc/features/class-features.php' ) )
|
| 78 |
require dirname( __FILE__ ) . '/inc/features/class-features.php';
|
| 91 |
register_deactivation_hook( __FILE__, array( 'BackWPup_Install', 'deactivate' ) );
|
| 92 |
//Things that must do in plugin init
|
| 93 |
add_action( 'init', array( $this, 'plugin_init' ) );
|
|
|
|
|
|
|
|
|
|
| 94 |
//only in backend
|
| 95 |
if ( is_admin() && class_exists( 'BackWPup_Admin' ) )
|
| 96 |
BackWPup_Admin::getInstance();
|
| 239 |
//Add Admin Bar
|
| 240 |
if ( ! defined( 'DOING_CRON' ) && current_user_can( 'backwpup' ) && current_user_can( 'backwpup' ) && is_admin_bar_showing() && get_site_option( 'backwpup_cfg_showadminbar', FALSE ) )
|
| 241 |
BackWPup_Adminbar::getInstance();
|
| 242 |
+
|
| 243 |
+
//display about page after Update
|
| 244 |
+
if ( ! get_site_option( 'backwpup_about_page', FALSE ) )
|
| 245 |
+
wp_redirect( network_admin_url( 'admin.php' ) . '?page=backwpupabout' );
|
| 246 |
}
|
| 247 |
|
| 248 |
/**
|
css/admin.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.70;-moz-opacity:.70;-ms-filter:"alpha(opacity=70)";filter:alpha(opacity=70);filter:alpha(opacity=0.7);opacity:.70}#toplevel_page_backwpup:hover .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.5;-moz-opacity:.5;-ms-filter:"alpha(opacity=5)";filter:alpha(opacity=5);filter:alpha(opacity=5.0);opacity:.5}li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat top center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}#toplevel_page_backwpup .wp-menu-image img{display:none}@media only screen and (-webkit-min-device-pixel-ratio:2){#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.70;-moz-opacity:.70;-ms-filter:"alpha(opacity=70)";filter:alpha(opacity=70);filter:alpha(opacity=0.7);opacity:.70}#toplevel_page_backwpup:hover .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.5;-moz-opacity:.5;-ms-filter:"alpha(opacity=5)";filter:alpha(opacity=5);filter:alpha(opacity=5.0);opacity:.5}li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat top center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}}
|
| 1 |
+
#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.70;-moz-opacity:.70;-ms-filter:"alpha(opacity=70)";filter:alpha(opacity=70);filter:alpha(opacity=0.7);opacity:.70}#toplevel_page_backwpup:hover .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.5;-moz-opacity:.5;-ms-filter:"alpha(opacity=5)";filter:alpha(opacity=5);filter:alpha(opacity=5.0);opacity:.5}li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16.png) no-repeat top center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}#toplevel_page_backwpup .wp-menu-image img{display:none}#wp-admin-bar-backwpup.menupop>.ab-item .ab-icon,#wp-admin-bar-backwpup.menupop>a>span .ab-icon,#wp-admin-bar-backwpup.menupop.hover>.ab-item .ab-icon,#wp-admin-bar-backwpup.menupop.hover>a>span .ab-icon:hover{background-size:cover}.inside.backwpuppro img{width:100%;height:auto}.inside.backwpuppro{text-align:center;font-weight:bold}@media only screen and (-webkit-min-device-pixel-ratio:2){#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.70;-moz-opacity:.70;-ms-filter:"alpha(opacity=70)";filter:alpha(opacity=70);filter:alpha(opacity=0.7);opacity:.70}#toplevel_page_backwpup:hover .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px;-khtml-opacity:.5;-moz-opacity:.5;-ms-filter:"alpha(opacity=5)";filter:alpha(opacity=5);filter:alpha(opacity=5.0);opacity:.5}li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image{background-size:16px 32px;background:url(../images/BackWPup16_2x.png) no-repeat top center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}}
|
css/admin.dev.css
CHANGED
|
@@ -35,6 +35,14 @@ li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
|
|
| 35 |
display: none;
|
| 36 |
}
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
|
| 39 |
#toplevel_page_backwpup .wp-menu-image {
|
| 40 |
background-size: 16px 32px;
|
| 35 |
display: none;
|
| 36 |
}
|
| 37 |
|
| 38 |
+
#wp-admin-bar-backwpup.menupop>.ab-item .ab-icon, #wp-admin-bar-backwpup.menupop>a>span .ab-icon,
|
| 39 |
+
#wp-admin-bar-backwpup.menupop.hover>.ab-item .ab-icon, #wp-admin-bar-backwpup.menupop.hover>a>span .ab-icon:hover {
|
| 40 |
+
background-size: cover;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.inside.backwpuppro img { width:100%; height:auto; }
|
| 44 |
+
.inside.backwpuppro { text-align: center; font-weight:bold; }
|
| 45 |
+
|
| 46 |
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
|
| 47 |
#toplevel_page_backwpup .wp-menu-image {
|
| 48 |
background-size: 16px 32px;
|
css/general.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
#icon-backwpup{background:url('../images/BackWPup32.png') no-repeat}@media only screen and (-webkit-min-device-pixel-ratio:2){#icon-backwpup{background:url('../images/BackWPup64.png') no-repeat;-webkit-background-size:32px 32px;background-size:32px 32px}}img.help_tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:99999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_left{padding-right:5px}#tiptip_content{font-size:11px;color:#fff;text-shadow:0 0 2px #000;padding:4px 8px;border:1px solid rgba(255,255,255,0.25);background-color:#191919;background-color:rgba(25,25,25,0.92);background-image:-webkit-gradient(linear,0% 0,0% 100%,from(transparent),to(#000));border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 0 3px #555;-webkit-box-shadow:0 0 3px #555;-moz-box-shadow:0 0 3px #555}#tiptip_content code{background:#1d94cf;color:#fff;text-shadow:none;padding:2px;font-size:12px}#tiptip_content a{color:#0CF}#tiptip_content a:hover{color:#F93}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border:6px solid transparent;height:0;width:0}#tiptip_holder.tip_top #tiptip_arrow{border-top-color:#fff;border-top-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_bottom #tiptip_arrow{border-bottom-color:#fff;border-bottom-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_right #tiptip_arrow{border-right-color:#fff;border-right-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_left #tiptip_arrow{border-left-color:#fff;border-left-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#191919;border-top-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#191919;border-bottom-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#191919;border-right-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#191919;border-left-color:rgba(25,25,25,0.92)}@media screen and (-webkit-min-device-pixel-ratio:0){#tiptip_content{padding:4px 8px 5px 8px;background-color:rgba(45,45,45,0.88)}#tiptip_holder.tip_bottom #tiptip_arrow_inner{border-bottom-color:rgba(45,45,45,0.88)}#tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:rgba(20,20,20,0.92)}}.backwpup-welcome{font-family:sans-serif,"Arial";font-size:14px;position:relative
|
| 1 |
+
#icon-backwpup{background:url('../images/BackWPup32.png') no-repeat}@media only screen and (-webkit-min-device-pixel-ratio:2){#icon-backwpup{background:url('../images/BackWPup64.png') no-repeat;-webkit-background-size:32px 32px;background-size:32px 32px}}img.help_tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:99999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_left{padding-right:5px}#tiptip_content{font-size:11px;color:#fff;text-shadow:0 0 2px #000;padding:4px 8px;border:1px solid rgba(255,255,255,0.25);background-color:#191919;background-color:rgba(25,25,25,0.92);background-image:-webkit-gradient(linear,0% 0,0% 100%,from(transparent),to(#000));border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 0 3px #555;-webkit-box-shadow:0 0 3px #555;-moz-box-shadow:0 0 3px #555}#tiptip_content code{background:#1d94cf;color:#fff;text-shadow:none;padding:2px;font-size:12px}#tiptip_content a{color:#0CF}#tiptip_content a:hover{color:#F93}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border:6px solid transparent;height:0;width:0}#tiptip_holder.tip_top #tiptip_arrow{border-top-color:#fff;border-top-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_bottom #tiptip_arrow{border-bottom-color:#fff;border-bottom-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_right #tiptip_arrow{border-right-color:#fff;border-right-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_left #tiptip_arrow{border-left-color:#fff;border-left-color:rgba(255,255,255,0.35)}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#191919;border-top-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#191919;border-bottom-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#191919;border-right-color:rgba(25,25,25,0.92)}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#191919;border-left-color:rgba(25,25,25,0.92)}@media screen and (-webkit-min-device-pixel-ratio:0){#tiptip_content{padding:4px 8px 5px 8px;background-color:rgba(45,45,45,0.88)}#tiptip_holder.tip_bottom #tiptip_arrow_inner{border-bottom-color:rgba(45,45,45,0.88)}#tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:rgba(20,20,20,0.92)}}.backwpup-welcome{font-family:sans-serif,"Arial";font-size:14px;position:relative}.backwpup-welcome p{line-height:28px;font-size:16px}.backwpup-welcome h3{font-family:sans-serif,"Arial";font-size:44px;font-weight:normal;color:#333;line-height:44px;margin:20px 0}.wizardbox{float:left;width:200px;margin:25px 25px 25px 0;padding:15px;height:200px;font-family:sans-serif,"Arial";font-size:14px;line-height:22px;position:relative;color:#fff;background:#1d94cf url(../images/hgbox.png) no-repeat right bottom}.wizardbox:hover{background-color:#0f79ae}.wizardbox input.button-primary-bwp{float:left;padding:5px 10px;font-size:14px;font-family:sans-serif,"Arial";text-decoration:none;background-color:#38b0eb;color:#fff;border:0;cursor:pointer}.wizardbox input.button-primary-bwp:hover{background-color:#064565;cursor:pointer}.wizardbox .wizardbox_name{font-size:22px;font-family:sans-serif,"Arial";margin-bottom:30px}.wizardbox .wizardbox_start{position:absolute;bottom:10px;left:10px}.wizardbox select{width:200px}.inpsyde{width:79px;height:119px;background:url(../images/inpsyde.png) no-repeat;position:absolute;top:0;right:10px;z-index:1}.inpsyde a{float:left;font-size:14px;color:#fff;text-decoration:none;padding:65px 15px 15px 15px;text-align:center}.mp_logo{margin-right:15px!important}#documentation_content p{font-size:14px;line-height:20px;color:#333}#documentation_content h3{padding:7px 0;font-size:22px}#documentation_content h4{padding:7px 0;font-size:18px}#documentation_content img.size-full{border:10px #f6f6f6 solid}
|
css/general.dev.css
CHANGED
|
@@ -223,13 +223,8 @@ img.help_tip {
|
|
| 223 |
text-align:center;
|
| 224 |
}
|
| 225 |
|
| 226 |
-
.
|
| 227 |
-
|
| 228 |
-
background-repeat:no-repeat;
|
| 229 |
-
padding-left:30px;
|
| 230 |
-
height:25px;
|
| 231 |
-
float:left;
|
| 232 |
-
margin-right:15px !important;
|
| 233 |
}
|
| 234 |
|
| 235 |
/* DOKU */
|
| 223 |
text-align:center;
|
| 224 |
}
|
| 225 |
|
| 226 |
+
.mp_logo {
|
| 227 |
+
margin-right:15px !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
}
|
| 229 |
|
| 230 |
/* DOKU */
|
images/iplogo.png
DELETED
|
Binary file
|
images/mp_logo_small.png
ADDED
|
Binary file
|
inc/class-admin.php
CHANGED
|
@@ -31,8 +31,6 @@ final class BackWPup_Admin {
|
|
| 31 |
add_action( 'network_admin_menu', array( $this, 'admin_menu' ) );
|
| 32 |
else
|
| 33 |
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
|
| 34 |
-
//add notices
|
| 35 |
-
add_action('admin_notices', array( $this, 'admin_notices' ) );
|
| 36 |
//add Plugin links
|
| 37 |
add_filter( 'plugin_row_meta', array( $this, 'plugin_links' ), 10, 2 );
|
| 38 |
//add more actions
|
|
@@ -50,8 +48,7 @@ final class BackWPup_Admin {
|
|
| 50 |
if ( current_user_can( 'administrator' ) || current_user_can( 'backwpup_admin' ) ) {
|
| 51 |
add_action( 'show_user_profile', array( $this, 'user_profile_fields' ) );
|
| 52 |
add_action( 'edit_user_profile', array( $this, 'user_profile_fields' ) );
|
| 53 |
-
add_action( '
|
| 54 |
-
add_action( 'edit_user_profile_update', array( $this, 'save_user_profile_fields' ) );
|
| 55 |
}
|
| 56 |
}
|
| 57 |
|
|
@@ -136,23 +133,16 @@ final class BackWPup_Admin {
|
|
| 136 |
*/
|
| 137 |
public function admin_menu() {
|
| 138 |
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
add_menu_page( BackWPup::get_plugin_data( 'name' ), BackWPup::get_plugin_data( 'name' ), 'backwpup', 'backwpup', array( 'BackWPup_Page_Backwpup', 'page' ), BackWPup::get_plugin_data( 'URL' ) . '/images/BackWPup16.png' );
|
| 146 |
-
$this->page_hooks[ 'backwpup' ] = add_submenu_page( 'backwpup', __( 'BackWPup Dashboard', 'backwpup' ), __( 'Dashboard', 'backwpup' ), 'backwpup', 'backwpup', array( 'BackWPup_Page_Backwpup', 'page' ) );
|
| 147 |
-
add_action( 'load-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Admin', 'init_generel' ) );
|
| 148 |
-
add_action( 'load-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'load' ) );
|
| 149 |
-
add_action( 'admin_print_styles-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'admin_print_styles' ) );
|
| 150 |
-
add_action( 'admin_print_scripts-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'admin_print_scripts' ) );
|
| 151 |
-
|
| 152 |
-
//Add pages form plugins
|
| 153 |
-
$this->page_hooks = apply_filters( 'backwpup_admin_pages' ,$this->page_hooks );
|
| 154 |
-
}
|
| 155 |
|
|
|
|
|
|
|
|
|
|
| 156 |
}
|
| 157 |
|
| 158 |
|
|
@@ -394,7 +384,7 @@ final class BackWPup_Admin {
|
|
| 394 |
public function admin_footer_text( $admin_footer_text ) {
|
| 395 |
|
| 396 |
if ( isset( $_REQUEST[ 'page' ] ) && strstr( $_REQUEST[ 'page' ], 'backwpup') ) {
|
| 397 |
-
$admin_footer_text
|
| 398 |
$admin_footer_text .= sprintf( _x( 'Developer: %s', 'developer name, link text: Daniel Hüsken', 'backwpup' ), '<a href="http://danielhuesken.de">Daniel Hüsken</a>' );
|
| 399 |
|
| 400 |
return $admin_footer_text;
|
|
@@ -420,18 +410,6 @@ final class BackWPup_Admin {
|
|
| 420 |
return $update_footer_text;
|
| 421 |
}
|
| 422 |
|
| 423 |
-
/**
|
| 424 |
-
* Display admin notices
|
| 425 |
-
*/
|
| 426 |
-
public function admin_notices() {
|
| 427 |
-
if ( ! current_user_can( 'activate_plugins') )
|
| 428 |
-
return;
|
| 429 |
-
|
| 430 |
-
if ( ! get_site_option( 'backwpup_about_page' ) && ! ( isset( $_REQUEST[ 'page' ] ) && $_REQUEST[ 'page' ] == 'backwpup' ) )
|
| 431 |
-
echo '<div class="updated"><p>' . str_replace( '\"','"', sprintf( __( 'You have activated or updated BackWPup. Please check <a href="%s">this page</a>.', 'backwpup'), network_admin_url( 'admin.php') . '?page=backwpup' ) ) . '</p></div>';
|
| 432 |
-
|
| 433 |
-
}
|
| 434 |
-
|
| 435 |
|
| 436 |
/**
|
| 437 |
* Add filed for selecting user role in user section
|
|
@@ -439,6 +417,7 @@ final class BackWPup_Admin {
|
|
| 439 |
* @param $user WP_User
|
| 440 |
*/
|
| 441 |
public function user_profile_fields( $user ) {
|
|
|
|
| 442 |
|
| 443 |
?>
|
| 444 |
<h3><?php echo BackWPup::get_plugin_data( 'name' ); ?></h3>
|
|
@@ -448,14 +427,13 @@ final class BackWPup_Admin {
|
|
| 448 |
<label for="backwpup_role"><?php _e('BackWPup Role', 'backwpup'); ?>
|
| 449 |
</label></th>
|
| 450 |
<td>
|
| 451 |
-
<select name="backwpup_role" id="backwpup_role">
|
| 452 |
-
<option value=""><?php _e('
|
| 453 |
<?php
|
| 454 |
-
$roles
|
| 455 |
-
|
| 456 |
-
if ( ! stristr( $role, 'backwpup' ) )
|
| 457 |
continue;
|
| 458 |
-
echo '<option value="'.$role.'" '. selected( in_array( $role, $user->roles ), TRUE, FALSE ) .'>'
|
| 459 |
}
|
| 460 |
?>
|
| 461 |
</select>
|
|
@@ -471,26 +449,37 @@ final class BackWPup_Admin {
|
|
| 471 |
* Save for user role adding
|
| 472 |
*
|
| 473 |
* @param $user_id int
|
| 474 |
-
* @return bool
|
| 475 |
*/
|
| 476 |
-
public function
|
|
|
|
| 477 |
|
| 478 |
-
if (
|
| 479 |
-
|
|
|
|
|
|
|
|
|
|
| 480 |
|
|
|
|
| 481 |
$backwpup_roles = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 482 |
$user = new WP_User( $user_id );
|
| 483 |
-
|
| 484 |
-
foreach ( $roles as $role ) {
|
| 485 |
-
if ( !
|
| 486 |
continue;
|
| 487 |
$user->remove_role( $role );
|
| 488 |
-
$backwpup_roles[] = $role;
|
| 489 |
}
|
| 490 |
-
|
|
|
|
| 491 |
$user->add_role( $_POST['backwpup_role'] );
|
| 492 |
|
| 493 |
-
return
|
| 494 |
}
|
| 495 |
|
| 496 |
}
|
| 31 |
add_action( 'network_admin_menu', array( $this, 'admin_menu' ) );
|
| 32 |
else
|
| 33 |
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
|
|
|
|
|
|
|
| 34 |
//add Plugin links
|
| 35 |
add_filter( 'plugin_row_meta', array( $this, 'plugin_links' ), 10, 2 );
|
| 36 |
//add more actions
|
| 48 |
if ( current_user_can( 'administrator' ) || current_user_can( 'backwpup_admin' ) ) {
|
| 49 |
add_action( 'show_user_profile', array( $this, 'user_profile_fields' ) );
|
| 50 |
add_action( 'edit_user_profile', array( $this, 'user_profile_fields' ) );
|
| 51 |
+
add_action( 'profile_update', array( $this, 'save_profile_update' ) );
|
|
|
|
| 52 |
}
|
| 53 |
}
|
| 54 |
|
| 133 |
*/
|
| 134 |
public function admin_menu() {
|
| 135 |
|
| 136 |
+
add_menu_page( BackWPup::get_plugin_data( 'name' ), BackWPup::get_plugin_data( 'name' ), 'backwpup', 'backwpup', array( 'BackWPup_Page_Backwpup', 'page' ), BackWPup::get_plugin_data( 'URL' ) . '/images/BackWPup16.png' );
|
| 137 |
+
$this->page_hooks[ 'backwpup' ] = add_submenu_page( 'backwpup', __( 'BackWPup Dashboard', 'backwpup' ), __( 'Dashboard', 'backwpup' ), 'backwpup', 'backwpup', array( 'BackWPup_Page_Backwpup', 'page' ) );
|
| 138 |
+
add_action( 'load-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Admin', 'init_generel' ) );
|
| 139 |
+
add_action( 'load-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'load' ) );
|
| 140 |
+
add_action( 'admin_print_styles-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'admin_print_styles' ) );
|
| 141 |
+
add_action( 'admin_print_scripts-' . $this->page_hooks[ 'backwpup' ], array( 'BackWPup_Page_Backwpup', 'admin_print_scripts' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
+
//Add pages form plugins
|
| 144 |
+
$this->page_hooks = apply_filters( 'backwpup_admin_pages' ,$this->page_hooks );
|
| 145 |
+
|
| 146 |
}
|
| 147 |
|
| 148 |
|
| 384 |
public function admin_footer_text( $admin_footer_text ) {
|
| 385 |
|
| 386 |
if ( isset( $_REQUEST[ 'page' ] ) && strstr( $_REQUEST[ 'page' ], 'backwpup') ) {
|
| 387 |
+
$admin_footer_text = '<span class="mp_logo">' . sprintf( __( '<img src="%s"/> <a href="%s">Get BackWPup Pro now.</a>', 'backwpup' ), BackWPup::get_plugin_data( 'URL' ) . '/images/mp_logo_small.png', __( 'http://marketpress.com/product/backwpup-pro/', 'backwpup' ) ) . '</span>';
|
| 388 |
$admin_footer_text .= sprintf( _x( 'Developer: %s', 'developer name, link text: Daniel Hüsken', 'backwpup' ), '<a href="http://danielhuesken.de">Daniel Hüsken</a>' );
|
| 389 |
|
| 390 |
return $admin_footer_text;
|
| 410 |
return $update_footer_text;
|
| 411 |
}
|
| 412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 413 |
|
| 414 |
/**
|
| 415 |
* Add filed for selecting user role in user section
|
| 417 |
* @param $user WP_User
|
| 418 |
*/
|
| 419 |
public function user_profile_fields( $user ) {
|
| 420 |
+
global $wp_roles;
|
| 421 |
|
| 422 |
?>
|
| 423 |
<h3><?php echo BackWPup::get_plugin_data( 'name' ); ?></h3>
|
| 427 |
<label for="backwpup_role"><?php _e('BackWPup Role', 'backwpup'); ?>
|
| 428 |
</label></th>
|
| 429 |
<td>
|
| 430 |
+
<select name="backwpup_role" id="backwpup_role" style="display:inline-block; float:none;">
|
| 431 |
+
<option value=""><?php _e('— No role for BackWPup —', 'backwpup'); ?></option>
|
| 432 |
<?php
|
| 433 |
+
foreach ( $wp_roles->roles as $role => $rolevalue ) {
|
| 434 |
+
if ( ! strstr( $role, 'backwpup_' ) )
|
|
|
|
| 435 |
continue;
|
| 436 |
+
echo '<option value="'.$role.'" '. selected( in_array( $role, $user->roles ), TRUE, FALSE ) .'>'. $rolevalue[ 'name' ] . '</option>';
|
| 437 |
}
|
| 438 |
?>
|
| 439 |
</select>
|
| 449 |
* Save for user role adding
|
| 450 |
*
|
| 451 |
* @param $user_id int
|
|
|
|
| 452 |
*/
|
| 453 |
+
public function save_profile_update( $user_id ) {
|
| 454 |
+
global $wp_roles;
|
| 455 |
|
| 456 |
+
if ( empty( $user_id ) )
|
| 457 |
+
return;
|
| 458 |
+
|
| 459 |
+
if ( ! isset( $_POST['backwpup_role'] ) )
|
| 460 |
+
return;
|
| 461 |
|
| 462 |
+
// get BackWPup roles
|
| 463 |
$backwpup_roles = array();
|
| 464 |
+
foreach ( array_keys( $wp_roles->roles ) as $role ) {
|
| 465 |
+
if ( ! strstr( $role, 'backwpup_' ) )
|
| 466 |
+
continue;
|
| 467 |
+
$backwpup_roles[] = $role;
|
| 468 |
+
}
|
| 469 |
+
|
| 470 |
+
//get user for adding/removing role
|
| 471 |
$user = new WP_User( $user_id );
|
| 472 |
+
//remove BackWPup role from user
|
| 473 |
+
foreach ( $user->roles as $role ) {
|
| 474 |
+
if ( ! strstr( $role, 'backwpup_' ) )
|
| 475 |
continue;
|
| 476 |
$user->remove_role( $role );
|
|
|
|
| 477 |
}
|
| 478 |
+
//add new role to user
|
| 479 |
+
if ( ! empty( $_POST['backwpup_role'] ) && in_array( $_POST['backwpup_role'], $backwpup_roles ) )
|
| 480 |
$user->add_role( $_POST['backwpup_role'] );
|
| 481 |
|
| 482 |
+
return;
|
| 483 |
}
|
| 484 |
|
| 485 |
}
|
inc/class-cron.php
CHANGED
|
@@ -27,8 +27,8 @@ class BackWPup_Cron {
|
|
| 27 |
if ( ! in_array( $arg, $jobids) )
|
| 28 |
return;
|
| 29 |
//reschedule job for next run
|
| 30 |
-
$
|
| 31 |
-
wp_schedule_single_event( $
|
| 32 |
//start job
|
| 33 |
BackWPup_Job::start_wp_cron( $arg );
|
| 34 |
}
|
|
@@ -44,7 +44,7 @@ class BackWPup_Cron {
|
|
| 44 |
$jobids = BackWPup_Option::get_job_ids( );
|
| 45 |
|
| 46 |
// check aborted jobs for longer than a tow hours, abort them courtly and send mail
|
| 47 |
-
if ( is_object( $job_object ) ) {
|
| 48 |
$not_worked_time = microtime( TRUE ) - $job_object->timestamp_last_update;
|
| 49 |
if ( $not_worked_time > 7200 ) {
|
| 50 |
unlink( BackWPup::get_plugin_data( 'running_file' ) );
|
|
@@ -54,17 +54,19 @@ class BackWPup_Cron {
|
|
| 54 |
//write new log header
|
| 55 |
$job_object->errors ++;
|
| 56 |
$fd = fopen( $job_object->logfile, 'r+' );
|
| 57 |
-
|
| 58 |
-
while ( ! feof( $fd ) ) {
|
| 59 |
-
$line = fgets( $fd );
|
| 60 |
-
if ( stripos( $line, "<meta name=\"backwpup_errors\"" ) !== FALSE ) {
|
| 61 |
-
fseek( $fd, $filepos );
|
| 62 |
-
fwrite( $fd, str_pad( "<meta name=\"backwpup_errors\" content=\"" . $job_object->errors . "\" />", 100 ) . PHP_EOL );
|
| 63 |
-
break;
|
| 64 |
-
}
|
| 65 |
$filepos = ftell( $fd );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
}
|
| 67 |
-
fclose( $fd );
|
| 68 |
//update job settings
|
| 69 |
if ( ! empty( $job_object->job[ 'jobid' ] ) )
|
| 70 |
BackWPup_Option::update( $job_object->job[ 'jobid' ], 'lastruntime', ( current_time( 'timestamp' ) - $job_object->start_time ) );
|
| 27 |
if ( ! in_array( $arg, $jobids) )
|
| 28 |
return;
|
| 29 |
//reschedule job for next run
|
| 30 |
+
$cron_next = self::cron_next( BackWPup_Option::get( $arg, 'cron' ) );
|
| 31 |
+
wp_schedule_single_event( $cron_next, 'backwpup_cron', array( 'id' => $arg ) );
|
| 32 |
//start job
|
| 33 |
BackWPup_Job::start_wp_cron( $arg );
|
| 34 |
}
|
| 44 |
$jobids = BackWPup_Option::get_job_ids( );
|
| 45 |
|
| 46 |
// check aborted jobs for longer than a tow hours, abort them courtly and send mail
|
| 47 |
+
if ( is_object( $job_object ) && ! empty( $job_object->logfile ) ) {
|
| 48 |
$not_worked_time = microtime( TRUE ) - $job_object->timestamp_last_update;
|
| 49 |
if ( $not_worked_time > 7200 ) {
|
| 50 |
unlink( BackWPup::get_plugin_data( 'running_file' ) );
|
| 54 |
//write new log header
|
| 55 |
$job_object->errors ++;
|
| 56 |
$fd = fopen( $job_object->logfile, 'r+' );
|
| 57 |
+
if ( is_resource( $fd ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
$filepos = ftell( $fd );
|
| 59 |
+
while ( ! feof( $fd ) ) {
|
| 60 |
+
$line = fgets( $fd );
|
| 61 |
+
if ( stripos( $line, "<meta name=\"backwpup_errors\"" ) !== FALSE ) {
|
| 62 |
+
fseek( $fd, $filepos );
|
| 63 |
+
fwrite( $fd, str_pad( "<meta name=\"backwpup_errors\" content=\"" . $job_object->errors . "\" />", 100 ) . PHP_EOL );
|
| 64 |
+
break;
|
| 65 |
+
}
|
| 66 |
+
$filepos = ftell( $fd );
|
| 67 |
+
}
|
| 68 |
+
fclose( $fd );
|
| 69 |
}
|
|
|
|
| 70 |
//update job settings
|
| 71 |
if ( ! empty( $job_object->job[ 'jobid' ] ) )
|
| 72 |
BackWPup_Option::update( $job_object->job[ 'jobid' ], 'lastruntime', ( current_time( 'timestamp' ) - $job_object->start_time ) );
|
inc/class-destination-dropbox.php
CHANGED
|
@@ -494,19 +494,27 @@ final class BackWPup_Destination_Dropbox_API {
|
|
| 494 |
if ( ! is_readable( $file ) or ! is_file( $file ) )
|
| 495 |
throw new BackWPup_Destination_Dropbox_API_Exception( "Error: File \"$file\" is not readable or doesn't exist." );
|
| 496 |
|
| 497 |
-
$
|
| 498 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 499 |
if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] ) )
|
| 500 |
$job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] = NULL;
|
| 501 |
if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'offset' ] ) )
|
| 502 |
$job_object->steps_data[ $job_object->step_working ][ 'offset' ] = 0;
|
|
|
|
| 503 |
//seek to current position
|
| 504 |
-
|
|
|
|
| 505 |
|
| 506 |
while ( $data = fread( $file_handel, 4194304 ) ) { //4194304 = 4MB
|
| 507 |
-
|
|
|
|
| 508 |
//fallback if php://temp not working
|
| 509 |
-
|
|
|
|
| 510 |
throw new BackWPup_Destination_Dropbox_API_Exception( "Can not open temp file for chunked transfer." );
|
| 511 |
}
|
| 512 |
fwrite( $chunk_handle, $data );
|
| 494 |
if ( ! is_readable( $file ) or ! is_file( $file ) )
|
| 495 |
throw new BackWPup_Destination_Dropbox_API_Exception( "Error: File \"$file\" is not readable or doesn't exist." );
|
| 496 |
|
| 497 |
+
$file_handel = fopen( $file, 'r' );
|
| 498 |
+
if ( ! is_resource( $file_handel ) )
|
| 499 |
+
throw new BackWPup_Destination_Dropbox_API_Exception( "Can not open surce file for transfer." );
|
| 500 |
+
|
| 501 |
+
//get the current job object
|
| 502 |
+
$job_object = BackWPup_Job::getInstance();
|
| 503 |
if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] ) )
|
| 504 |
$job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] = NULL;
|
| 505 |
if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'offset' ] ) )
|
| 506 |
$job_object->steps_data[ $job_object->step_working ][ 'offset' ] = 0;
|
| 507 |
+
|
| 508 |
//seek to current position
|
| 509 |
+
if ( $job_object->steps_data[ $job_object->step_working ][ 'offset' ] > 0 )
|
| 510 |
+
fseek( $file_handel, $job_object->steps_data[ $job_object->step_working ][ 'offset' ] );
|
| 511 |
|
| 512 |
while ( $data = fread( $file_handel, 4194304 ) ) { //4194304 = 4MB
|
| 513 |
+
$chunk_handle = fopen( 'php://temp/maxmemory:4194304', 'r+' );
|
| 514 |
+
if ( ! is_resource( $chunk_handle ) ) {
|
| 515 |
//fallback if php://temp not working
|
| 516 |
+
$chunk_handle = tmpfile();
|
| 517 |
+
if ( ! is_resource( $chunk_handle ) )
|
| 518 |
throw new BackWPup_Destination_Dropbox_API_Exception( "Can not open temp file for chunked transfer." );
|
| 519 |
}
|
| 520 |
fwrite( $chunk_handle, $data );
|
inc/class-destination-s3.php
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
<?php
|
| 2 |
-
// Amazon S3 SDK v2.3.
|
| 3 |
// http://aws.amazon.com/de/sdkforphp2/
|
| 4 |
// https://github.com/aws/aws-sdk-php
|
| 5 |
if ( ! class_exists( 'Symfony\\Component\\ClassLoader\\UniversalClassLoader' ) )
|
| 1 |
<?php
|
| 2 |
+
// Amazon S3 SDK v2.3.1
|
| 3 |
// http://aws.amazon.com/de/sdkforphp2/
|
| 4 |
// https://github.com/aws/aws-sdk-php
|
| 5 |
if ( ! class_exists( 'Symfony\\Component\\ClassLoader\\UniversalClassLoader' ) )
|
inc/class-install.php
CHANGED
|
@@ -23,8 +23,8 @@ class BackWPup_Install {
|
|
| 23 |
$activejobs = BackWPup_Option::get_job_ids( 'activetype', 'wpcron' );
|
| 24 |
if ( ! empty( $activejobs ) ) {
|
| 25 |
foreach ( $activejobs as $id ) {
|
| 26 |
-
$
|
| 27 |
-
wp_schedule_single_event( $
|
| 28 |
}
|
| 29 |
}
|
| 30 |
|
|
@@ -89,7 +89,7 @@ class BackWPup_Install {
|
|
| 89 |
$users_backwpup = get_users( array( 'blog_id' => 1, 'role' => 'backwpup_admin' ) );
|
| 90 |
if ( empty( $users_backwpup ) ) {
|
| 91 |
/* @var WP_User $user */
|
| 92 |
-
$users = get_users( array( 'blog_id' => 1, 'role' => 'administrator' ) );
|
| 93 |
foreach ( $users as $user ) {
|
| 94 |
$user->add_role( 'backwpup_admin' );
|
| 95 |
}
|
|
@@ -111,8 +111,6 @@ class BackWPup_Install {
|
|
| 111 |
//update version
|
| 112 |
update_site_option( 'backwpup_version', BackWPup::get_plugin_data( 'Version' ) );
|
| 113 |
|
| 114 |
-
//show trailing page again
|
| 115 |
-
update_site_option( 'backwpup_about_page', FALSE );
|
| 116 |
}
|
| 117 |
|
| 118 |
/**
|
| 23 |
$activejobs = BackWPup_Option::get_job_ids( 'activetype', 'wpcron' );
|
| 24 |
if ( ! empty( $activejobs ) ) {
|
| 25 |
foreach ( $activejobs as $id ) {
|
| 26 |
+
$cron_next = BackWPup_Cron::cron_next( BackWPup_Option::get( $id, 'cron') );
|
| 27 |
+
wp_schedule_single_event( $cron_next, 'backwpup_cron', array( 'id' => $id ) );
|
| 28 |
}
|
| 29 |
}
|
| 30 |
|
| 89 |
$users_backwpup = get_users( array( 'blog_id' => 1, 'role' => 'backwpup_admin' ) );
|
| 90 |
if ( empty( $users_backwpup ) ) {
|
| 91 |
/* @var WP_User $user */
|
| 92 |
+
$users = get_users( array( 'blog_id' => 1, 'role' => 'administrator', 'fields' => 'all_with_meta' ) );
|
| 93 |
foreach ( $users as $user ) {
|
| 94 |
$user->add_role( 'backwpup_admin' );
|
| 95 |
}
|
| 111 |
//update version
|
| 112 |
update_site_option( 'backwpup_version', BackWPup::get_plugin_data( 'Version' ) );
|
| 113 |
|
|
|
|
|
|
|
| 114 |
}
|
| 115 |
|
| 116 |
/**
|
inc/class-job.php
CHANGED
|
@@ -1158,7 +1158,7 @@ final class BackWPup_Job {
|
|
| 1158 |
|
| 1159 |
//Display job working time
|
| 1160 |
if ( $this->errors > 0 )
|
| 1161 |
-
$this->log( sprintf( __( 'Job has ended with errors in %s seconds. You must resolve the errors for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time,
|
| 1162 |
elseif ( $this->warnings > 0 )
|
| 1163 |
$this->log( sprintf( __( 'Job has done with warnings in %s seconds. Please resolve them for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time, E_USER_WARNING ) );
|
| 1164 |
else
|
| 1158 |
|
| 1159 |
//Display job working time
|
| 1160 |
if ( $this->errors > 0 )
|
| 1161 |
+
$this->log( sprintf( __( 'Job has ended with errors in %s seconds. You must resolve the errors for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time, E_USER_ERROR ) );
|
| 1162 |
elseif ( $this->warnings > 0 )
|
| 1163 |
$this->log( sprintf( __( 'Job has done with warnings in %s seconds. Please resolve them for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time, E_USER_WARNING ) );
|
| 1164 |
else
|
inc/class-page-about.php
CHANGED
|
@@ -336,13 +336,10 @@ _e( 'The backup files can be used to save your whole installation including <cod
|
|
| 336 |
</tr>
|
| 337 |
</table>
|
| 338 |
</div>
|
| 339 |
-
<?php
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
<?php
|
| 344 |
-
update_site_option( 'backwpup_about_page', TRUE );
|
| 345 |
-
} ?>
|
| 346 |
</div>
|
| 347 |
</div>
|
| 348 |
<?php
|
| 336 |
</tr>
|
| 337 |
</table>
|
| 338 |
</div>
|
| 339 |
+
<?php
|
| 340 |
+
endif;
|
| 341 |
+
update_site_option( 'backwpup_about_page', TRUE );
|
| 342 |
+
?>
|
|
|
|
|
|
|
|
|
|
| 343 |
</div>
|
| 344 |
</div>
|
| 345 |
<?php
|
inc/class-page-backwpup.php
CHANGED
|
@@ -123,11 +123,29 @@ class BackWPup_Page_BackWPup {
|
|
| 123 |
echo '</form></div>';
|
| 124 |
}
|
| 125 |
}
|
|
|
|
|
|
|
|
|
|
| 126 |
?>
|
|
|
|
| 127 |
</div>
|
| 128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 129 |
<?php if ( current_user_can( 'backwpup_jobs_edit' ) && current_user_can( 'backwpup_logs' ) && current_user_can( 'backwpup_jobs_start' ) ) {?>
|
| 130 |
-
<div class="metabox-holder postbox" style="padding-top:0;margin:10px;cursor:auto;width:30%;float:left;min-width:
|
| 131 |
<h3 class="hndle" style="cursor: auto;"><span><?php _e( 'First Steps', 'backwpup' ); ?></span></h3>
|
| 132 |
<div class="inside">
|
| 133 |
<ul style="margin-left: 30px;">
|
|
@@ -146,18 +164,14 @@ class BackWPup_Page_BackWPup {
|
|
| 146 |
<?php }
|
| 147 |
|
| 148 |
if ( current_user_can( 'backwpup_jobs_start' ) ) {?>
|
| 149 |
-
<div class="metabox-holder postbox" style="padding-top:0;margin:10px;cursor:auto;width:30%;float:left;min-width:
|
| 150 |
<h3 class="hndle" style="cursor: auto;"><span><?php _e( 'One click backup', 'backwpup' ); ?></span></h3>
|
| 151 |
<div class="inside" style="text-align: center;">
|
| 152 |
<a href="<?php echo wp_nonce_url( network_admin_url( 'admin.php' ). '?page=backwpup&action=dbdumpdl', 'backwpupdbdumpdl' ); ?>" class="button-primary" title="<?php _e( 'Generate a database backup of WordPress tables and download it right away!', 'backwpup' ); ?>"><?php _e( 'Download database backup', 'backwpup' ); ?></a><br />
|
| 153 |
</div>
|
| 154 |
</div>
|
| 155 |
-
<?php }
|
| 156 |
-
|
| 157 |
-
self::mb_next_jobs();
|
| 158 |
-
self::mb_last_logs();
|
| 159 |
-
?>
|
| 160 |
-
|
| 161 |
</div>
|
| 162 |
<?php
|
| 163 |
}
|
|
@@ -170,7 +184,7 @@ class BackWPup_Page_BackWPup {
|
|
| 170 |
if ( ! current_user_can( 'backwpup_logs' ) )
|
| 171 |
return;
|
| 172 |
?>
|
| 173 |
-
<table class="wp-list-table widefat" cellspacing="0" style="margin:10px;width:
|
| 174 |
<thead>
|
| 175 |
<tr><th colspan="3" style="font-size:15px"><?php _e( 'Last logs', 'backwpup' ); ?></tr>
|
| 176 |
<tr><th style="width:30%"><?php _e( 'Time', 'backwpup' ); ?></th><th style="width:55%"><?php _e( 'Job', 'backwpup' ); ?></th><th style="width:20%"><?php _e( 'Result', 'backwpup' ); ?></th></tr>
|
|
@@ -230,7 +244,7 @@ class BackWPup_Page_BackWPup {
|
|
| 230 |
if ( ! current_user_can( 'backwpup_jobs' ) )
|
| 231 |
return;
|
| 232 |
?>
|
| 233 |
-
<table class="wp-list-table widefat" cellspacing="0" style="margin:10px;width:
|
| 234 |
<thead>
|
| 235 |
<tr><th colspan="2" style="font-size:15px"><?php _e( 'Next scheduled jobs', 'backwpup' ); ?></th></tr>
|
| 236 |
<tr>
|
| 123 |
echo '</form></div>';
|
| 124 |
}
|
| 125 |
}
|
| 126 |
+
?><div style="clear:both"><?php
|
| 127 |
+
self::mb_next_jobs();
|
| 128 |
+
self::mb_last_logs();
|
| 129 |
?>
|
| 130 |
+
</div>
|
| 131 |
</div>
|
| 132 |
|
| 133 |
+
<div style="width:35%;float:left;">
|
| 134 |
+
<?php if ( ! class_exists( 'BackWPup_Features' ) ) { ?>
|
| 135 |
+
<div class="metabox-holder postbox" style="padding-top:0;margin:10px;cursor:auto;width:30%;float:left;min-width:320px">
|
| 136 |
+
<h3 class="hndle" style="cursor: auto;"><span><?php _e( 'Thank you for using BackWPup!', 'backwpup' ); ?></span></h3>
|
| 137 |
+
<div class="inside backwpuppro">
|
| 138 |
+
<img src="<?php echo BackWPup::get_plugin_data( 'URL' ) . '/images/backwpupbanner-pro.png'; ?>" alt="BackWPup Banner" />
|
| 139 |
+
<?php _e( 'BackWPup Pro offers you first-class premium support and more features like a wizard for scheduled backup jobs, differential backup of changed directories in the cloud and much more!', 'backwpup' ); ?>.
|
| 140 |
+
<div style="text-align: center;margin-top:10px;">
|
| 141 |
+
<a href="<?php _e( 'http://marketpress.com/product/backwpup-pro/', 'backwpup' ); ?>" class="button-primary" title="<?php _e( 'Get BackWPup Pro now', 'backwpup' ); ?>"><?php _e( 'Get BackWPup Pro now', 'backwpup' ); ?></a><br />
|
| 142 |
+
</div>
|
| 143 |
+
</div>
|
| 144 |
+
</div>
|
| 145 |
+
<?php } ?>
|
| 146 |
+
|
| 147 |
<?php if ( current_user_can( 'backwpup_jobs_edit' ) && current_user_can( 'backwpup_logs' ) && current_user_can( 'backwpup_jobs_start' ) ) {?>
|
| 148 |
+
<div class="metabox-holder postbox" style="padding-top:0;margin:10px;cursor:auto;width:30%;float:left;min-width:320px">
|
| 149 |
<h3 class="hndle" style="cursor: auto;"><span><?php _e( 'First Steps', 'backwpup' ); ?></span></h3>
|
| 150 |
<div class="inside">
|
| 151 |
<ul style="margin-left: 30px;">
|
| 164 |
<?php }
|
| 165 |
|
| 166 |
if ( current_user_can( 'backwpup_jobs_start' ) ) {?>
|
| 167 |
+
<div class="metabox-holder postbox" style="padding-top:0;margin:10px;cursor:auto;width:30%;float:left;min-width:320px">
|
| 168 |
<h3 class="hndle" style="cursor: auto;"><span><?php _e( 'One click backup', 'backwpup' ); ?></span></h3>
|
| 169 |
<div class="inside" style="text-align: center;">
|
| 170 |
<a href="<?php echo wp_nonce_url( network_admin_url( 'admin.php' ). '?page=backwpup&action=dbdumpdl', 'backwpupdbdumpdl' ); ?>" class="button-primary" title="<?php _e( 'Generate a database backup of WordPress tables and download it right away!', 'backwpup' ); ?>"><?php _e( 'Download database backup', 'backwpup' ); ?></a><br />
|
| 171 |
</div>
|
| 172 |
</div>
|
| 173 |
+
<?php } ?>
|
| 174 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
</div>
|
| 176 |
<?php
|
| 177 |
}
|
| 184 |
if ( ! current_user_can( 'backwpup_logs' ) )
|
| 185 |
return;
|
| 186 |
?>
|
| 187 |
+
<table class="wp-list-table widefat" cellspacing="0" style="margin:10px;width:47%;float:left;clear:none;min-width:300px">
|
| 188 |
<thead>
|
| 189 |
<tr><th colspan="3" style="font-size:15px"><?php _e( 'Last logs', 'backwpup' ); ?></tr>
|
| 190 |
<tr><th style="width:30%"><?php _e( 'Time', 'backwpup' ); ?></th><th style="width:55%"><?php _e( 'Job', 'backwpup' ); ?></th><th style="width:20%"><?php _e( 'Result', 'backwpup' ); ?></th></tr>
|
| 244 |
if ( ! current_user_can( 'backwpup_jobs' ) )
|
| 245 |
return;
|
| 246 |
?>
|
| 247 |
+
<table class="wp-list-table widefat" cellspacing="0" style="margin:10px;width:47%;float:left;clear:none;min-width:300px">
|
| 248 |
<thead>
|
| 249 |
<tr><th colspan="2" style="font-size:15px"><?php _e( 'Next scheduled jobs', 'backwpup' ); ?></th></tr>
|
| 250 |
<tr>
|
inc/class-page-editjob.php
CHANGED
|
@@ -77,7 +77,7 @@ class BackWPup_Page_Editjob {
|
|
| 77 |
foreach ( (array)$_POST[ 'destinations' ] as $key => $destid ) {
|
| 78 |
if ( empty( $destinations[ $destid ] ) ) //remove all destinations that not exists
|
| 79 |
unset( $_POST[ 'destinations' ][ $key ] );
|
| 80 |
-
if ( $_POST[ 'backuptype' ] == 'sync' ) { //if sync remove all not sync destinations
|
| 81 |
if ( ! $destinations[ $destid ]->can_sync() )
|
| 82 |
unset( $_POST[ 'destinations' ][ $key ] );
|
| 83 |
}
|
|
@@ -158,8 +158,8 @@ class BackWPup_Page_Editjob {
|
|
| 158 |
//reschedule
|
| 159 |
wp_clear_scheduled_hook( 'backwpup_cron', array( 'id' => $jobid ) );
|
| 160 |
if ( BackWPup_Option::get( $jobid, 'activetype' ) == 'wpcron' ) {
|
| 161 |
-
$
|
| 162 |
-
wp_schedule_single_event( $
|
| 163 |
}
|
| 164 |
break;
|
| 165 |
default:
|
|
@@ -323,13 +323,13 @@ class BackWPup_Page_Editjob {
|
|
| 323 |
$repeathouer = 1;
|
| 324 |
echo '<span style="color:red;">' . sprintf( __( 'ATTENTION: Job runs every %d hours!', 'backwpup' ), $repeathouer ) . '</span><br />';
|
| 325 |
}
|
| 326 |
-
$
|
| 327 |
-
if ( 2147483647 == $
|
| 328 |
echo '<span style="color:red;">' . __( 'ATTENTION: Can\'t calculate cron!', 'backwpup' ) . '</span><br />';
|
| 329 |
}
|
| 330 |
else {
|
| 331 |
_e( 'Next runtime:', 'backwpup' );
|
| 332 |
-
echo ' <b>' . date_i18n( 'D, j M Y, H:i', $
|
| 333 |
}
|
| 334 |
echo "</p>";
|
| 335 |
|
| 77 |
foreach ( (array)$_POST[ 'destinations' ] as $key => $destid ) {
|
| 78 |
if ( empty( $destinations[ $destid ] ) ) //remove all destinations that not exists
|
| 79 |
unset( $_POST[ 'destinations' ][ $key ] );
|
| 80 |
+
if ( class_exists( 'BackWPup_Features', FALSE ) && $_POST[ 'backuptype' ] == 'sync' ) { //if sync remove all not sync destinations
|
| 81 |
if ( ! $destinations[ $destid ]->can_sync() )
|
| 82 |
unset( $_POST[ 'destinations' ][ $key ] );
|
| 83 |
}
|
| 158 |
//reschedule
|
| 159 |
wp_clear_scheduled_hook( 'backwpup_cron', array( 'id' => $jobid ) );
|
| 160 |
if ( BackWPup_Option::get( $jobid, 'activetype' ) == 'wpcron' ) {
|
| 161 |
+
$cron_next = BackWPup_Cron::cron_next( BackWPup_Option::get( $jobid, 'cron' ) );
|
| 162 |
+
wp_schedule_single_event( $cron_next, 'backwpup_cron', array( 'id' => $jobid ) );
|
| 163 |
}
|
| 164 |
break;
|
| 165 |
default:
|
| 323 |
$repeathouer = 1;
|
| 324 |
echo '<span style="color:red;">' . sprintf( __( 'ATTENTION: Job runs every %d hours!', 'backwpup' ), $repeathouer ) . '</span><br />';
|
| 325 |
}
|
| 326 |
+
$cron_next = BackWPup_Cron::cron_next( $cronstamp ) + ( get_option( 'gmt_offset' ) * 3600 );
|
| 327 |
+
if ( 2147483647 == $cron_next ) {
|
| 328 |
echo '<span style="color:red;">' . __( 'ATTENTION: Can\'t calculate cron!', 'backwpup' ) . '</span><br />';
|
| 329 |
}
|
| 330 |
else {
|
| 331 |
_e( 'Next runtime:', 'backwpup' );
|
| 332 |
+
echo ' <b>' . date_i18n( 'D, j M Y, H:i', $cron_next, TRUE ) . '</b>';
|
| 333 |
}
|
| 334 |
echo "</p>";
|
| 335 |
|
languages/backwpup-de_DE.mo
CHANGED
|
Binary file
|
languages/backwpup-de_DE.po
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
-
"Project-Id-Version: BackWPup
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2013-02-06 17:42+0100\n"
|
| 6 |
-
"PO-Revision-Date: 2013-
|
| 7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
| 8 |
"Language-Team: INPSYDE <info@inpsyde.com>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
|
@@ -20,24 +20,22 @@ msgstr ""
|
|
| 20 |
"X-Poedit-SearchPath-0: ..\n"
|
| 21 |
"X-Textdomain-Support: yes"
|
| 22 |
|
| 23 |
-
#: inc/class-admin.php:
|
| 24 |
-
#: inc/features/class-documentation.php:150
|
| 25 |
-
#: inc/features/class-features.php:149
|
| 26 |
#@ backwpup
|
| 27 |
msgid "Documentation"
|
| 28 |
msgstr "Dokumentation"
|
| 29 |
|
| 30 |
-
#: inc/class-admin.php:
|
| 31 |
#@ backwpup
|
| 32 |
msgid "BackWPup Dashboard"
|
| 33 |
msgstr "BackWPup Dashboard"
|
| 34 |
|
| 35 |
-
#: inc/class-admin.php:
|
| 36 |
#@ backwpup
|
| 37 |
msgid "Dashboard"
|
| 38 |
msgstr "Dashboard"
|
| 39 |
|
| 40 |
-
#: inc/class-admin.php:
|
| 41 |
#: inc/class-adminbar.php:84
|
| 42 |
#: inc/class-page-settings.php:103
|
| 43 |
#@ backwpup
|
|
@@ -45,12 +43,12 @@ msgstr "Dashboard"
|
|
| 45 |
msgid "Jobs"
|
| 46 |
msgstr "Aufträge"
|
| 47 |
|
| 48 |
-
#: inc/class-admin.php:
|
| 49 |
#@ backwpup
|
| 50 |
msgid "Add New Job"
|
| 51 |
msgstr "Neuer Auftrag"
|
| 52 |
|
| 53 |
-
#: inc/class-admin.php:
|
| 54 |
#: inc/class-adminbar.php:100
|
| 55 |
#: inc/class-page-backups.php:366
|
| 56 |
#: inc/class-page-logs.php:281
|
|
@@ -60,36 +58,39 @@ msgstr "Neuer Auftrag"
|
|
| 60 |
msgid "Logs"
|
| 61 |
msgstr "Protokolle"
|
| 62 |
|
| 63 |
-
#: inc/class-admin.php:
|
| 64 |
#: inc/class-adminbar.php:108
|
| 65 |
#@ backwpup
|
| 66 |
#@ backwpupadminbar
|
| 67 |
msgid "Backups"
|
| 68 |
msgstr "Datensicherungen"
|
| 69 |
|
| 70 |
-
#: inc/class-admin.php:
|
| 71 |
#@ backwpup
|
| 72 |
msgid "Settings"
|
| 73 |
msgstr "Einstellungen"
|
| 74 |
|
| 75 |
-
#: inc/class-admin.php:
|
| 76 |
#@ backwpup
|
| 77 |
msgid "Jobs overview"
|
| 78 |
msgstr "Auftragsübersicht"
|
| 79 |
|
| 80 |
-
#: inc/class-admin.php:
|
| 81 |
#: inc/class-page-jobs.php:134
|
| 82 |
#@ backwpup
|
| 83 |
msgid "Run now"
|
| 84 |
msgstr "Jetzt starten"
|
| 85 |
|
| 86 |
-
#: inc/class-admin.php:
|
| 87 |
#, php-format
|
| 88 |
#@ backwpup
|
| 89 |
msgid "version %s"
|
| 90 |
msgstr "Version %s"
|
| 91 |
|
|
|
|
|
|
|
| 92 |
#: inc/class-adminbar.php:62
|
|
|
|
| 93 |
#@ backwpupadminbar
|
| 94 |
msgid "BackWPup"
|
| 95 |
msgstr "BackWPup"
|
|
@@ -106,13 +107,6 @@ msgstr "Abbrechen!"
|
|
| 106 |
msgid "Add New"
|
| 107 |
msgstr "Neuer Auftrag"
|
| 108 |
|
| 109 |
-
#: inc/features/class-features.php:135
|
| 110 |
-
#: inc/features/class-features.php:168
|
| 111 |
-
#@ backwpup
|
| 112 |
-
#@ backwpupadminbar
|
| 113 |
-
msgid "Wizards"
|
| 114 |
-
msgstr "Assistenten"
|
| 115 |
-
|
| 116 |
#: inc/class-adminbar.php:130
|
| 117 |
#@ backwpupadminbar
|
| 118 |
msgid "Run Now"
|
|
@@ -152,7 +146,6 @@ msgid "Backup to Dropbox"
|
|
| 152 |
msgstr "Datensicherung in die Dropbox"
|
| 153 |
|
| 154 |
#: inc/class-destination-dropbox.php:50
|
| 155 |
-
#: inc/features/class-destination-dropbox-pro.php:29
|
| 156 |
#@ backwpup
|
| 157 |
msgid "Dropbox authentication complete!"
|
| 158 |
msgstr "Dropbox-Authentifizierung vollständig!"
|
|
@@ -162,9 +155,6 @@ msgstr "Dropbox-Authentifizierung vollständig!"
|
|
| 162 |
#: inc/class-destination-dropbox.php:152
|
| 163 |
#: inc/class-destination-dropbox.php:278
|
| 164 |
#: inc/class-destination-dropbox.php:328
|
| 165 |
-
#: inc/features/class-destination-dropbox-pro.php:32
|
| 166 |
-
#: inc/features/class-destination-dropbox-pro.php:51
|
| 167 |
-
#: inc/features/class-destination-dropbox-pro.php:214
|
| 168 |
#, php-format
|
| 169 |
#@ backwpup
|
| 170 |
msgid "Dropbox API: %s"
|
|
@@ -176,27 +166,22 @@ msgid "Login"
|
|
| 176 |
msgstr "Anmelden"
|
| 177 |
|
| 178 |
#: inc/class-destination-dropbox.php:67
|
| 179 |
-
#: inc/features/class-destination-dropbox-pro.php:59
|
| 180 |
#@ backwpup
|
| 181 |
msgid "Authenticate"
|
| 182 |
msgstr "Authentifizieren"
|
| 183 |
|
| 184 |
#: inc/class-destination-dropbox.php:69
|
| 185 |
-
#: inc/features/class-destination-dropbox-pro.php:58
|
| 186 |
#@ backwpup
|
| 187 |
msgid "Not authenticated!"
|
| 188 |
msgstr "Nicht authentifiziert!"
|
| 189 |
|
| 190 |
#: inc/class-destination-dropbox.php:69
|
| 191 |
-
#: inc/features/class-destination-dropbox-pro.php:60
|
| 192 |
#@ backwpup
|
| 193 |
msgid "Create Account"
|
| 194 |
msgstr "Konto erstellen"
|
| 195 |
|
| 196 |
#: inc/class-destination-dropbox.php:71
|
| 197 |
#: inc/class-destination-sugarsync.php:63
|
| 198 |
-
#: inc/features/class-destination-dropbox-pro.php:66
|
| 199 |
-
#: inc/features/class-destination-sugarsync-pro.php:29
|
| 200 |
#@ backwpup
|
| 201 |
msgid "Authenticated!"
|
| 202 |
msgstr "Authentifiziert!"
|
|
@@ -241,12 +226,6 @@ msgstr "Dateilöschung"
|
|
| 241 |
#: inc/class-destination-s3-v1.php:172
|
| 242 |
#: inc/class-destination-s3.php:177
|
| 243 |
#: inc/class-destination-sugarsync.php:116
|
| 244 |
-
#: inc/features/class-destination-dropbox-pro.php:74
|
| 245 |
-
#: inc/features/class-destination-folder-pro.php:27
|
| 246 |
-
#: inc/features/class-destination-msazure-pro.php:32
|
| 247 |
-
#: inc/features/class-destination-rsc-pro.php:56
|
| 248 |
-
#: inc/features/class-destination-s3-pro.php:64
|
| 249 |
-
#: inc/features/class-destination-s3-v1-pro.php:64
|
| 250 |
#@ backwpup
|
| 251 |
msgid "Number of files to keep in folder."
|
| 252 |
msgstr "Anzahl der Dateien, die im Ordner behalten werden"
|
|
@@ -259,12 +238,6 @@ msgstr "Anzahl der Dateien, die im Ordner behalten werden"
|
|
| 259 |
#: inc/class-destination-s3-v1.php:172
|
| 260 |
#: inc/class-destination-s3.php:177
|
| 261 |
#: inc/class-destination-sugarsync.php:116
|
| 262 |
-
#: inc/features/class-destination-dropbox-pro.php:74
|
| 263 |
-
#: inc/features/class-destination-folder-pro.php:27
|
| 264 |
-
#: inc/features/class-destination-msazure-pro.php:32
|
| 265 |
-
#: inc/features/class-destination-rsc-pro.php:56
|
| 266 |
-
#: inc/features/class-destination-s3-pro.php:64
|
| 267 |
-
#: inc/features/class-destination-s3-v1-pro.php:64
|
| 268 |
#@ backwpup
|
| 269 |
msgid "Oldest files will be deleted first. 0 = no deletion"
|
| 270 |
msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung"
|
|
@@ -277,14 +250,6 @@ msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung"
|
|
| 277 |
#: inc/class-destination-s3-v1.php:176
|
| 278 |
#: inc/class-destination-s3.php:181
|
| 279 |
#: inc/class-destination-sugarsync.php:120
|
| 280 |
-
#: inc/features/class-destination-dropbox-pro.php:76
|
| 281 |
-
#: inc/features/class-destination-folder-pro.php:32
|
| 282 |
-
#: inc/features/class-destination-ftp-pro.php:42
|
| 283 |
-
#: inc/features/class-destination-msazure-pro.php:37
|
| 284 |
-
#: inc/features/class-destination-rsc-pro.php:61
|
| 285 |
-
#: inc/features/class-destination-s3-pro.php:69
|
| 286 |
-
#: inc/features/class-destination-s3-v1-pro.php:69
|
| 287 |
-
#: inc/features/class-destination-sugarsync-pro.php:65
|
| 288 |
#@ backwpup
|
| 289 |
msgid "Do not delete files while syncing to destination!"
|
| 290 |
msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
|
|
@@ -332,14 +297,8 @@ msgstr "FTP"
|
|
| 332 |
msgid "Backup to FTP"
|
| 333 |
msgstr "Backup zu FTP"
|
| 334 |
|
| 335 |
-
#: inc/features/class-jobtype-dbdump-pro.php:116
|
| 336 |
-
#@ backwpup
|
| 337 |
-
msgid "Host:"
|
| 338 |
-
msgstr "Host (Server):"
|
| 339 |
-
|
| 340 |
#: inc/class-destination-email.php:125
|
| 341 |
#: inc/class-destination-ftp.php:46
|
| 342 |
-
#: inc/features/class-destination-ftp-pro.php:17
|
| 343 |
#@ backwpup
|
| 344 |
msgid "Port:"
|
| 345 |
msgstr "Port:"
|
|
@@ -448,7 +407,6 @@ msgid "Maximum file size"
|
|
| 448 |
msgstr "Maximale Dateigröße"
|
| 449 |
|
| 450 |
#: inc/class-destination-email.php:77
|
| 451 |
-
#: inc/features/class-destination-email-pro.php:35
|
| 452 |
#@ backwpup
|
| 453 |
msgid "MB"
|
| 454 |
msgstr "MB"
|
|
@@ -490,10 +448,8 @@ msgstr "SMTP Sichere Verbindung"
|
|
| 490 |
#: inc/class-jobtype-dbdump.php:103
|
| 491 |
#: inc/class-jobtype-wpexp.php:70
|
| 492 |
#: inc/class-jobtype-wpplugin.php:56
|
| 493 |
-
#: inc/class-page-backwpup.php:
|
| 494 |
-
#: inc/class-page-backwpup.php:
|
| 495 |
-
#: inc/features/class-jobtype-dbdump-pro.php:153
|
| 496 |
-
#: inc/features/class-jobtype-dbdump-pro.php:203
|
| 497 |
#@ backwpup
|
| 498 |
msgid "none"
|
| 499 |
msgstr "nichts"
|
|
@@ -591,28 +547,24 @@ msgid "File deletion"
|
|
| 591 |
msgstr "Datei Löschung"
|
| 592 |
|
| 593 |
#: inc/class-destination-msazure.php:144
|
| 594 |
-
#: inc/features/class-destination-msazure-pro.php:70
|
| 595 |
#, php-format
|
| 596 |
#@ backwpup
|
| 597 |
msgid "MS Azure container \"%s\" created."
|
| 598 |
msgstr "MS Azure Container \"%s\" erstellt."
|
| 599 |
|
| 600 |
#: inc/class-destination-msazure.php:147
|
| 601 |
-
#: inc/features/class-destination-msazure-pro.php:73
|
| 602 |
#, php-format
|
| 603 |
#@ backwpup
|
| 604 |
msgid "MS Azure container create: %s"
|
| 605 |
msgstr "MS Azure Container erstellen: %s"
|
| 606 |
|
| 607 |
#: inc/class-destination-msazure.php:239
|
| 608 |
-
#: inc/features/class-destination-msazure-pro.php:108
|
| 609 |
#, php-format
|
| 610 |
#@ backwpup
|
| 611 |
msgid "MS Azure container \"%s\" does not exist!"
|
| 612 |
msgstr "MS Azure Container \"%s\" existiert nicht!"
|
| 613 |
|
| 614 |
#: inc/class-destination-msazure.php:243
|
| 615 |
-
#: inc/features/class-destination-msazure-pro.php:112
|
| 616 |
#, php-format
|
| 617 |
#@ backwpup
|
| 618 |
msgid "Connected to MS Azure container \"%s\"."
|
|
@@ -627,7 +579,6 @@ msgstr[0] "Eine Datei im Microsoft-Azure-Container gelöscht"
|
|
| 627 |
msgstr[1] "%d Dateien im Microsoft-Azure-Container gelöscht"
|
| 628 |
|
| 629 |
#: inc/class-destination-msazure.php:298
|
| 630 |
-
#: inc/features/class-destination-msazure-pro.php:172
|
| 631 |
#, php-format
|
| 632 |
#@ backwpup
|
| 633 |
msgid "Microsoft Azure API: %s"
|
|
@@ -661,19 +612,16 @@ msgstr "Wähle Region"
|
|
| 661 |
|
| 662 |
#: inc/class-destination-rsc.php:69
|
| 663 |
#: inc/class-destination-rsc.php:71
|
| 664 |
-
#: inc/features/class-destination-rsc-pro.php:34
|
| 665 |
#@ backwpup
|
| 666 |
msgid "Rackspace Cloud Files Region"
|
| 667 |
msgstr "Rackspace Cloud Verzeichnis"
|
| 668 |
|
| 669 |
#: inc/class-destination-rsc.php:72
|
| 670 |
-
#: inc/features/class-destination-rsc-pro.php:35
|
| 671 |
#@ backwpup
|
| 672 |
msgid "Dallas (DFW)"
|
| 673 |
msgstr "Dallas (DFW)"
|
| 674 |
|
| 675 |
#: inc/class-destination-rsc.php:73
|
| 676 |
-
#: inc/features/class-destination-rsc-pro.php:36
|
| 677 |
#@ backwpup
|
| 678 |
msgid "Chicago (ORD)"
|
| 679 |
msgstr "Chicago (ORD)"
|
|
@@ -692,7 +640,6 @@ msgid "Folder in bucket"
|
|
| 692 |
msgstr "Ordner im Bucket"
|
| 693 |
|
| 694 |
#: inc/class-destination-rsc.php:158
|
| 695 |
-
#: inc/features/class-destination-rsc-pro.php:100
|
| 696 |
#, php-format
|
| 697 |
#@ backwpup
|
| 698 |
msgid "Rackspace Cloud container \"%s\" created."
|
|
@@ -702,9 +649,6 @@ msgstr "Rackspace Cloud Container \"%s\" erstellt."
|
|
| 702 |
#: inc/class-destination-rsc.php:271
|
| 703 |
#: inc/class-destination-rsc.php:299
|
| 704 |
#: inc/class-destination-rsc.php:347
|
| 705 |
-
#: inc/features/class-destination-rsc-pro.php:104
|
| 706 |
-
#: inc/features/class-destination-rsc-pro.php:147
|
| 707 |
-
#: inc/features/class-destination-rsc-pro.php:221
|
| 708 |
#, php-format
|
| 709 |
#@ backwpup
|
| 710 |
msgid "Rackspace Cloud API: %s"
|
|
@@ -766,96 +710,72 @@ msgstr "Wähle einen S3 Service"
|
|
| 766 |
|
| 767 |
#: inc/class-destination-s3-v1.php:90
|
| 768 |
#: inc/class-destination-s3.php:95
|
| 769 |
-
#: inc/features/class-destination-s3-pro.php:23
|
| 770 |
-
#: inc/features/class-destination-s3-v1-pro.php:23
|
| 771 |
#@ backwpup
|
| 772 |
msgid "Amazon S3 Region"
|
| 773 |
msgstr "Amazon S3 Region"
|
| 774 |
|
| 775 |
#: inc/class-destination-s3-v1.php:91
|
| 776 |
#: inc/class-destination-s3.php:96
|
| 777 |
-
#: inc/features/class-destination-s3-pro.php:24
|
| 778 |
-
#: inc/features/class-destination-s3-v1-pro.php:24
|
| 779 |
#@ backwpup
|
| 780 |
msgid "Amazon S3: US Standard"
|
| 781 |
msgstr "Amazon S3: US Standard"
|
| 782 |
|
| 783 |
#: inc/class-destination-s3-v1.php:92
|
| 784 |
#: inc/class-destination-s3.php:97
|
| 785 |
-
#: inc/features/class-destination-s3-pro.php:25
|
| 786 |
-
#: inc/features/class-destination-s3-v1-pro.php:25
|
| 787 |
#@ backwpup
|
| 788 |
msgid "Amazon S3: US West (Northern California)"
|
| 789 |
msgstr "Amazon S3: US West (Northern California)"
|
| 790 |
|
| 791 |
#: inc/class-destination-s3-v1.php:93
|
| 792 |
#: inc/class-destination-s3.php:98
|
| 793 |
-
#: inc/features/class-destination-s3-pro.php:26
|
| 794 |
-
#: inc/features/class-destination-s3-v1-pro.php:26
|
| 795 |
#@ backwpup
|
| 796 |
msgid "Amazon S3: US West (Oregon)"
|
| 797 |
msgstr "Amazon S3: US West (Oregon)"
|
| 798 |
|
| 799 |
#: inc/class-destination-s3-v1.php:94
|
| 800 |
#: inc/class-destination-s3.php:99
|
| 801 |
-
#: inc/features/class-destination-s3-pro.php:27
|
| 802 |
-
#: inc/features/class-destination-s3-v1-pro.php:27
|
| 803 |
#@ backwpup
|
| 804 |
msgid "Amazon S3: EU (Ireland)"
|
| 805 |
msgstr "Amazon S3: EU (Ireland)"
|
| 806 |
|
| 807 |
#: inc/class-destination-s3-v1.php:95
|
| 808 |
#: inc/class-destination-s3.php:100
|
| 809 |
-
#: inc/features/class-destination-s3-pro.php:28
|
| 810 |
-
#: inc/features/class-destination-s3-v1-pro.php:28
|
| 811 |
#@ backwpup
|
| 812 |
msgid "Amazon S3: Asia Pacific (Tokyo)"
|
| 813 |
msgstr "Amazon S3: Asia Pacific (Tokyo)"
|
| 814 |
|
| 815 |
#: inc/class-destination-s3-v1.php:96
|
| 816 |
#: inc/class-destination-s3.php:101
|
| 817 |
-
#: inc/features/class-destination-s3-pro.php:29
|
| 818 |
-
#: inc/features/class-destination-s3-v1-pro.php:29
|
| 819 |
#@ backwpup
|
| 820 |
msgid "Amazon S3: Asia Pacific (Singapore)"
|
| 821 |
msgstr "Amazon S3: Asia Pacific (Singapore)"
|
| 822 |
|
| 823 |
#: inc/class-destination-s3-v1.php:97
|
| 824 |
#: inc/class-destination-s3.php:102
|
| 825 |
-
#: inc/features/class-destination-s3-pro.php:30
|
| 826 |
-
#: inc/features/class-destination-s3-v1-pro.php:30
|
| 827 |
#@ backwpup
|
| 828 |
msgid "Amazon S3: Asia Pacific (Sydney)"
|
| 829 |
msgstr "Amazon S3: Asia Pacific (Sydney)"
|
| 830 |
|
| 831 |
#: inc/class-destination-s3-v1.php:98
|
| 832 |
#: inc/class-destination-s3.php:103
|
| 833 |
-
#: inc/features/class-destination-s3-pro.php:31
|
| 834 |
-
#: inc/features/class-destination-s3-v1-pro.php:31
|
| 835 |
#@ backwpup
|
| 836 |
msgid "Amazon S3: South America (Sao Paulo)"
|
| 837 |
msgstr "Amazon S3: South America (Sao Paulo)"
|
| 838 |
|
| 839 |
#: inc/class-destination-s3-v1.php:99
|
| 840 |
#: inc/class-destination-s3.php:104
|
| 841 |
-
#: inc/features/class-destination-s3-pro.php:32
|
| 842 |
-
#: inc/features/class-destination-s3-v1-pro.php:32
|
| 843 |
#@ backwpup
|
| 844 |
msgid "Google Storage (Interoperable Access)"
|
| 845 |
msgstr "Google Storage (Interoperable Access)"
|
| 846 |
|
| 847 |
#: inc/class-destination-s3-v1.php:100
|
| 848 |
#: inc/class-destination-s3.php:105
|
| 849 |
-
#: inc/features/class-destination-s3-pro.php:33
|
| 850 |
-
#: inc/features/class-destination-s3-v1-pro.php:33
|
| 851 |
#@ backwpup
|
| 852 |
msgid "Hosteurope Cloud Storage"
|
| 853 |
msgstr "Hosteurope Cloud Storage"
|
| 854 |
|
| 855 |
#: inc/class-destination-s3-v1.php:101
|
| 856 |
#: inc/class-destination-s3.php:106
|
| 857 |
-
#: inc/features/class-destination-s3-pro.php:34
|
| 858 |
-
#: inc/features/class-destination-s3-v1-pro.php:34
|
| 859 |
#@ backwpup
|
| 860 |
msgid "Dream Host Cloud Storage"
|
| 861 |
msgstr "Dream Host Cloud Storage"
|
|
@@ -936,8 +856,6 @@ msgstr "Speicher Dateien Server Side Encrypted (AES256)"
|
|
| 936 |
|
| 937 |
#: inc/class-destination-s3-v1.php:260
|
| 938 |
#: inc/class-destination-s3.php:271
|
| 939 |
-
#: inc/features/class-destination-s3-pro.php:126
|
| 940 |
-
#: inc/features/class-destination-s3-v1-pro.php:131
|
| 941 |
#, php-format
|
| 942 |
#@ backwpup
|
| 943 |
msgid "Bucket %1$s created in %2$s."
|
|
@@ -945,15 +863,12 @@ msgstr "Bucket %1$s in %2$s erstellt."
|
|
| 945 |
|
| 946 |
#: inc/class-destination-s3-v1.php:262
|
| 947 |
#: inc/class-destination-s3.php:273
|
| 948 |
-
#: inc/features/class-destination-s3-pro.php:128
|
| 949 |
-
#: inc/features/class-destination-s3-v1-pro.php:133
|
| 950 |
#, php-format
|
| 951 |
#@ backwpup
|
| 952 |
msgid "Bucket %s could not be created."
|
| 953 |
msgstr "Bucket %s konnte nicht erstellt werden."
|
| 954 |
|
| 955 |
#: inc/class-destination-s3.php:275
|
| 956 |
-
#: inc/features/class-destination-s3-pro.php:130
|
| 957 |
#, php-format
|
| 958 |
#@ backwpup
|
| 959 |
msgid " %s is not a valid bucket name."
|
|
@@ -967,8 +882,6 @@ msgstr "%s ist kein gültiger Bucket Name"
|
|
| 967 |
#: inc/class-destination-s3.php:451
|
| 968 |
#: inc/class-destination-s3.php:472
|
| 969 |
#: inc/class-destination-s3.php:531
|
| 970 |
-
#: inc/features/class-destination-s3-pro.php:280
|
| 971 |
-
#: inc/features/class-destination-s3-v1-pro.php:275
|
| 972 |
#, php-format
|
| 973 |
#@ backwpup
|
| 974 |
msgid "S3 Service API: %s"
|
|
@@ -976,8 +889,6 @@ msgstr "S3 Service API: %s"
|
|
| 976 |
|
| 977 |
#: inc/class-destination-s3-v1.php:398
|
| 978 |
#: inc/class-destination-s3.php:395
|
| 979 |
-
#: inc/features/class-destination-s3-pro.php:167
|
| 980 |
-
#: inc/features/class-destination-s3-v1-pro.php:176
|
| 981 |
#, php-format
|
| 982 |
#@ backwpup
|
| 983 |
msgid "S3 Bucket \"%s\" does not exist!"
|
|
@@ -1057,25 +968,18 @@ msgstr "Authentifizierung"
|
|
| 1057 |
|
| 1058 |
#: inc/class-destination-sugarsync.php:48
|
| 1059 |
#: inc/class-page-settings.php:330
|
| 1060 |
-
#: inc/features/class-destination-ftp-pro.php:25
|
| 1061 |
-
#: inc/features/class-destination-sugarsync-pro.php:17
|
| 1062 |
-
#: inc/features/class-jobtype-dbdump-pro.php:122
|
| 1063 |
#@ backwpup
|
| 1064 |
msgid "Password:"
|
| 1065 |
msgstr "Passwort:"
|
| 1066 |
|
| 1067 |
#: inc/class-destination-sugarsync.php:54
|
| 1068 |
#: inc/class-destination-sugarsync.php:135
|
| 1069 |
-
#: inc/features/class-destination-sugarsync-pro.php:22
|
| 1070 |
-
#: inc/features/class-destination-sugarsync-pro.php:77
|
| 1071 |
#@ backwpup
|
| 1072 |
msgid "Sugarsync authenticate!"
|
| 1073 |
msgstr "SugarSync authentifiziert!"
|
| 1074 |
|
| 1075 |
#: inc/class-destination-sugarsync.php:65
|
| 1076 |
#: inc/class-destination-sugarsync.php:147
|
| 1077 |
-
#: inc/features/class-destination-sugarsync-pro.php:31
|
| 1078 |
-
#: inc/features/class-destination-sugarsync-pro.php:89
|
| 1079 |
#@ backwpup
|
| 1080 |
msgid "Delete Sugarsync authentication!"
|
| 1081 |
msgstr "Lösche SugarSync Authentifizierung"
|
|
@@ -1086,7 +990,6 @@ msgid "Sync folder selection"
|
|
| 1086 |
msgstr "Sync Ordner Auswahl"
|
| 1087 |
|
| 1088 |
#: inc/class-destination-sugarsync.php:83
|
| 1089 |
-
#: inc/features/class-destination-sugarsync-pro.php:40
|
| 1090 |
#@ backwpup
|
| 1091 |
msgid "No Syncfolders found!"
|
| 1092 |
msgstr "Keine Sync-Ordner gefunden!"
|
|
@@ -1555,7 +1458,6 @@ msgid "Check database tables"
|
|
| 1555 |
msgstr "Datenbank-Tabellen prüfen"
|
| 1556 |
|
| 1557 |
#: inc/class-jobtype-dbcheck.php:35
|
| 1558 |
-
#: inc/features/class-jobtype-dbcheck-pro.php:13
|
| 1559 |
#@ backwpup
|
| 1560 |
msgid "Settings for database check"
|
| 1561 |
msgstr "Einstellungen für den Datenbank Check"
|
|
@@ -1572,13 +1474,11 @@ msgid "Check WordPress database tables only"
|
|
| 1572 |
msgstr "Teste nur die WordPress-Tabellen"
|
| 1573 |
|
| 1574 |
#: inc/class-jobtype-dbcheck.php:49
|
| 1575 |
-
#: inc/features/class-jobtype-dbcheck-pro.php:25
|
| 1576 |
#@ backwpup
|
| 1577 |
msgid "Repair"
|
| 1578 |
msgstr "Reparieren"
|
| 1579 |
|
| 1580 |
#: inc/class-jobtype-dbcheck.php:54
|
| 1581 |
-
#: inc/features/class-jobtype-dbcheck-pro.php:29
|
| 1582 |
#@ backwpup
|
| 1583 |
msgid "Try to repair defect table"
|
| 1584 |
msgstr "Versuche, definierte Tabellen zu reparieren"
|
|
@@ -1620,25 +1520,17 @@ msgstr "Keine Tabellen zum checken."
|
|
| 1620 |
msgid "Database backup"
|
| 1621 |
msgstr "Datenbank Backup"
|
| 1622 |
|
| 1623 |
-
#: inc/features/class-jobtype-dbdump-pro.php:81
|
| 1624 |
-
#@ backwpup
|
| 1625 |
-
msgid "Settings for database dump"
|
| 1626 |
-
msgstr "Einstellungen für das Datenbank-Backup"
|
| 1627 |
-
|
| 1628 |
#: inc/class-jobtype-dbdump.php:67
|
| 1629 |
-
#: inc/features/class-jobtype-dbdump-pro.php:152
|
| 1630 |
#@ backwpup
|
| 1631 |
msgid "all"
|
| 1632 |
msgstr "alle"
|
| 1633 |
|
| 1634 |
#: inc/class-jobtype-dbdump.php:92
|
| 1635 |
-
#: inc/features/class-jobtype-dbdump-pro.php:192
|
| 1636 |
#@ backwpup
|
| 1637 |
msgid "Dumpfile name"
|
| 1638 |
msgstr "Name der Backup-Datei"
|
| 1639 |
|
| 1640 |
#: inc/class-jobtype-dbdump.php:100
|
| 1641 |
-
#: inc/features/class-jobtype-dbdump-pro.php:200
|
| 1642 |
#@ backwpup
|
| 1643 |
msgid "Dumpfile compression"
|
| 1644 |
msgstr "Kompression der Backup-Datei"
|
|
@@ -1649,8 +1541,6 @@ msgstr "Kompression der Backup-Datei"
|
|
| 1649 |
#: inc/class-jobtype-wpexp.php:74
|
| 1650 |
#: inc/class-jobtype-wpplugin.php:58
|
| 1651 |
#: inc/class-jobtype-wpplugin.php:60
|
| 1652 |
-
#: inc/features/class-jobtype-dbdump-pro.php:205
|
| 1653 |
-
#: inc/features/class-jobtype-dbdump-pro.php:207
|
| 1654 |
#@ backwpup
|
| 1655 |
msgid "GZip"
|
| 1656 |
msgstr "GZip"
|
|
@@ -1661,15 +1551,11 @@ msgstr "GZip"
|
|
| 1661 |
#: inc/class-jobtype-wpexp.php:78
|
| 1662 |
#: inc/class-jobtype-wpplugin.php:62
|
| 1663 |
#: inc/class-jobtype-wpplugin.php:64
|
| 1664 |
-
#: inc/features/class-jobtype-dbdump-pro.php:209
|
| 1665 |
-
#: inc/features/class-jobtype-dbdump-pro.php:211
|
| 1666 |
#@ backwpup
|
| 1667 |
msgid "BZip2"
|
| 1668 |
msgstr "BZip2"
|
| 1669 |
|
| 1670 |
#: inc/class-jobtype-dbdump.php:167
|
| 1671 |
-
#: inc/features/class-jobtype-dbdump-pro.php:470
|
| 1672 |
-
#: inc/features/class-jobtype-dbdump-pro.php:673
|
| 1673 |
#, php-format
|
| 1674 |
#@ backwpup
|
| 1675 |
msgid "Connected to database %1$s on %2$s"
|
|
@@ -1684,32 +1570,23 @@ msgstr "Mit Datenbank %1$s auf %2$s verbunden"
|
|
| 1684 |
#: inc/class-mysqldump.php:302
|
| 1685 |
#: inc/class-mysqldump.php:324
|
| 1686 |
#: inc/class-mysqldump.php:339
|
| 1687 |
-
#: inc/features/class-jobtype-dbdump-pro.php:679
|
| 1688 |
-
#: inc/features/class-jobtype-dbdump-pro.php:693
|
| 1689 |
-
#: inc/features/class-jobtype-dbdump-pro.php:742
|
| 1690 |
-
#: inc/features/class-jobtype-dbdump-pro.php:759
|
| 1691 |
-
#: inc/features/class-jobtype-dbdump-pro.php:800
|
| 1692 |
#, php-format
|
| 1693 |
#@ backwpup
|
| 1694 |
msgid "Database error %1$s for query %2$s"
|
| 1695 |
msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s"
|
| 1696 |
|
| 1697 |
#: inc/class-jobtype-dbdump.php:179
|
| 1698 |
-
#: inc/features/class-jobtype-dbdump-pro.php:483
|
| 1699 |
#@ backwpup
|
| 1700 |
msgid "No tables to dump."
|
| 1701 |
msgstr "Es gibt keine Tabellen zu sichern"
|
| 1702 |
|
| 1703 |
#: inc/class-jobtype-dbdump.php:188
|
| 1704 |
-
#: inc/features/class-jobtype-dbdump-pro.php:495
|
| 1705 |
#, php-format
|
| 1706 |
#@ backwpup
|
| 1707 |
msgid "Dump database table \"%s\""
|
| 1708 |
msgstr "Sichere Datenbanktabelle \"%s\""
|
| 1709 |
|
| 1710 |
#: inc/class-jobtype-dbdump.php:211
|
| 1711 |
-
#: inc/features/class-jobtype-dbdump-pro.php:518
|
| 1712 |
-
#: inc/features/class-jobtype-dbdump-pro.php:630
|
| 1713 |
#@ backwpup
|
| 1714 |
msgid "Database dump done!"
|
| 1715 |
msgstr "Datenbank-Backup fertig!"
|
|
@@ -1725,7 +1602,6 @@ msgid "Optimize database tables"
|
|
| 1725 |
msgstr "Datenbank-Tabellen optimieren"
|
| 1726 |
|
| 1727 |
#: inc/class-jobtype-dboptimize.php:36
|
| 1728 |
-
#: inc/features/class-jobtype-dboptimize-pro.php:13
|
| 1729 |
#@ backwpup
|
| 1730 |
msgid "Settings for database optimization"
|
| 1731 |
msgstr "Einstellungen der Datenbank Optimierung"
|
|
@@ -1845,19 +1721,16 @@ msgid "WordPress XML export"
|
|
| 1845 |
msgstr "WordPress XML Export"
|
| 1846 |
|
| 1847 |
#: inc/class-jobtype-wpexp.php:48
|
| 1848 |
-
#: inc/features/class-jobtype-wpexp-pro.php:16
|
| 1849 |
#@ backwpup
|
| 1850 |
msgid "All content"
|
| 1851 |
msgstr "Gesamter Inhalt"
|
| 1852 |
|
| 1853 |
#: inc/class-jobtype-wpexp.php:49
|
| 1854 |
-
#: inc/features/class-jobtype-wpexp-pro.php:17
|
| 1855 |
#@ backwpup
|
| 1856 |
msgid "Posts"
|
| 1857 |
msgstr "Beiträge"
|
| 1858 |
|
| 1859 |
#: inc/class-jobtype-wpexp.php:50
|
| 1860 |
-
#: inc/features/class-jobtype-wpexp-pro.php:18
|
| 1861 |
#@ backwpup
|
| 1862 |
msgid "Pages"
|
| 1863 |
msgstr "Seiten"
|
|
@@ -1922,8 +1795,8 @@ msgid "Size"
|
|
| 1922 |
msgstr "Größe"
|
| 1923 |
|
| 1924 |
#: inc/class-page-backups.php:230
|
| 1925 |
-
#: inc/class-page-backwpup.php:
|
| 1926 |
-
#: inc/class-page-backwpup.php:
|
| 1927 |
#@ backwpup
|
| 1928 |
msgid "Time"
|
| 1929 |
msgstr "Zeit"
|
|
@@ -1963,72 +1836,71 @@ msgid "Welcome to BackWPup"
|
|
| 1963 |
msgstr "Willkommen bei BackWPup"
|
| 1964 |
|
| 1965 |
#: inc/class-page-backwpup.php:122
|
| 1966 |
-
#: inc/features/class-page-wizard.php:256
|
| 1967 |
#@ backwpup
|
| 1968 |
msgid "Start wizard"
|
| 1969 |
msgstr "Assistenten starten"
|
| 1970 |
|
| 1971 |
-
#: inc/class-page-backwpup.php:
|
| 1972 |
#@ backwpup
|
| 1973 |
msgid "Test the installation"
|
| 1974 |
msgstr "Die Installation testen"
|
| 1975 |
|
| 1976 |
-
#: inc/class-page-backwpup.php:
|
| 1977 |
-
#: inc/class-page-backwpup.php:
|
| 1978 |
#@ backwpup
|
| 1979 |
msgid "Create a Job"
|
| 1980 |
msgstr "Auftrag erstellen"
|
| 1981 |
|
| 1982 |
-
#: inc/class-page-backwpup.php:
|
| 1983 |
#@ backwpup
|
| 1984 |
msgid "Run the created job"
|
| 1985 |
msgstr "Erstellten Auftrag starten"
|
| 1986 |
|
| 1987 |
-
#: inc/class-page-backwpup.php:
|
| 1988 |
#@ backwpup
|
| 1989 |
msgid "Check the job log"
|
| 1990 |
msgstr "Logs des Auftrages prüfen"
|
| 1991 |
|
| 1992 |
-
#: inc/class-page-backwpup.php:
|
| 1993 |
#@ backwpup
|
| 1994 |
msgid "Next scheduled jobs"
|
| 1995 |
msgstr "Nächste geplante Aufträge"
|
| 1996 |
|
| 1997 |
-
#: inc/class-page-backwpup.php:
|
| 1998 |
-
#: inc/class-page-backwpup.php:
|
| 1999 |
#: inc/class-page-logs.php:114
|
| 2000 |
#@ backwpup
|
| 2001 |
msgid "Job"
|
| 2002 |
msgstr "Auftrag"
|
| 2003 |
|
| 2004 |
-
#: inc/class-page-backwpup.php:
|
| 2005 |
#, php-format
|
| 2006 |
#@ backwpup
|
| 2007 |
msgid "working since %d seconds"
|
| 2008 |
msgstr "in Arbeit seit %d Sek."
|
| 2009 |
|
| 2010 |
-
#: inc/class-page-backwpup.php:
|
| 2011 |
#: inc/class-page-jobs.php:493
|
| 2012 |
#@ backwpup
|
| 2013 |
msgid "Abort"
|
| 2014 |
msgstr "Abbrechen"
|
| 2015 |
|
| 2016 |
-
#: inc/class-page-backwpup.php:
|
| 2017 |
#@ backwpup
|
| 2018 |
msgid "Edit Job"
|
| 2019 |
msgstr "Auftrag bearbeiten"
|
| 2020 |
|
| 2021 |
-
#: inc/class-page-backwpup.php:
|
| 2022 |
#@ backwpup
|
| 2023 |
msgid "Last logs"
|
| 2024 |
msgstr "Letzte Logs"
|
| 2025 |
|
| 2026 |
-
#: inc/class-page-backwpup.php:
|
| 2027 |
#@ backwpup
|
| 2028 |
msgid "Result"
|
| 2029 |
msgstr "Ergebnis"
|
| 2030 |
|
| 2031 |
-
#: inc/class-page-backwpup.php:
|
| 2032 |
#, php-format
|
| 2033 |
#@ backwpup
|
| 2034 |
msgid "%d ERROR"
|
|
@@ -2036,7 +1908,7 @@ msgid_plural "%d ERRORS"
|
|
| 2036 |
msgstr[0] "%d FEHLER"
|
| 2037 |
msgstr[1] "%d FEHLER"
|
| 2038 |
|
| 2039 |
-
#: inc/class-page-backwpup.php:
|
| 2040 |
#, php-format
|
| 2041 |
#@ backwpup
|
| 2042 |
msgid "%d WARNING"
|
|
@@ -2106,26 +1978,17 @@ msgid "%s Job:"
|
|
| 2106 |
msgstr "%s Auftrag: "
|
| 2107 |
|
| 2108 |
#: inc/class-page-editjob.php:436
|
| 2109 |
-
#: inc/features/class-wizard-job.php:228
|
| 2110 |
#@ backwpup
|
| 2111 |
msgid "Job tasks"
|
| 2112 |
msgstr "Auftragsdetails"
|
| 2113 |
|
| 2114 |
#: inc/class-page-editjob.php:457
|
| 2115 |
#: inc/class-page-editjob.php:460
|
| 2116 |
-
#: inc/features/class-wizard-job.php:350
|
| 2117 |
-
#: inc/features/class-wizard-job.php:353
|
| 2118 |
#@ backwpup
|
| 2119 |
msgid "Backup type"
|
| 2120 |
msgstr "Backup Typ"
|
| 2121 |
|
| 2122 |
-
#: inc/features/class-wizard-job.php:357
|
| 2123 |
-
#@ backwpup
|
| 2124 |
-
msgid "Sync file by file to destination"
|
| 2125 |
-
msgstr "Synchronisiere Datei für Datei zum Zielverzeichnis"
|
| 2126 |
-
|
| 2127 |
#: inc/class-page-editjob.php:469
|
| 2128 |
-
#: inc/features/class-wizard-job.php:361
|
| 2129 |
#@ backwpup
|
| 2130 |
msgid "Create a backup archive"
|
| 2131 |
msgstr "Backup erstellen"
|
|
@@ -2138,49 +2001,28 @@ msgstr "Archiv Format"
|
|
| 2138 |
|
| 2139 |
#: inc/class-page-editjob.php:521
|
| 2140 |
#: inc/class-page-editjob.php:523
|
| 2141 |
-
#: inc/features/class-wizard-job.php:371
|
| 2142 |
-
#: inc/features/class-wizard-job.php:373
|
| 2143 |
#@ backwpup
|
| 2144 |
msgid "Zip"
|
| 2145 |
msgstr "Zip"
|
| 2146 |
|
| 2147 |
-
#: inc/features/class-wizard-job.php:373
|
| 2148 |
-
#: inc/features/class-wizard-job.php:378
|
| 2149 |
-
#: inc/features/class-wizard-job.php:382
|
| 2150 |
-
#@ backwpup
|
| 2151 |
-
msgid "Disabled because missing PHP function."
|
| 2152 |
-
msgstr "Aufgrund fehlender PHP Funktion deaktiviert."
|
| 2153 |
-
|
| 2154 |
#: inc/class-page-editjob.php:524
|
| 2155 |
-
#: inc/features/class-wizard-job.php:374
|
| 2156 |
#@ backwpup
|
| 2157 |
msgid "Tar"
|
| 2158 |
msgstr "Tar"
|
| 2159 |
|
| 2160 |
#: inc/class-page-editjob.php:526
|
| 2161 |
#: inc/class-page-editjob.php:528
|
| 2162 |
-
#: inc/features/class-wizard-job.php:376
|
| 2163 |
-
#: inc/features/class-wizard-job.php:378
|
| 2164 |
#@ backwpup
|
| 2165 |
msgid "Tar GZip"
|
| 2166 |
msgstr "Tar GZip"
|
| 2167 |
|
| 2168 |
#: inc/class-page-editjob.php:530
|
| 2169 |
#: inc/class-page-editjob.php:532
|
| 2170 |
-
#: inc/features/class-wizard-job.php:380
|
| 2171 |
-
#: inc/features/class-wizard-job.php:382
|
| 2172 |
#@ backwpup
|
| 2173 |
msgid "Tar BZip2"
|
| 2174 |
msgstr "Tar BZip2"
|
| 2175 |
|
| 2176 |
-
#: inc/features/class-wizard-job.php:396
|
| 2177 |
-
#@ backwpup
|
| 2178 |
-
msgid "Where to store the files"
|
| 2179 |
-
msgstr "Wo die Dateien abgelegt werden"
|
| 2180 |
-
|
| 2181 |
#: inc/class-page-jobs.php:71
|
| 2182 |
-
#: inc/features/class-wizard-job.php:50
|
| 2183 |
-
#: inc/features/class-wizard-job.php:399
|
| 2184 |
#@ backwpup
|
| 2185 |
msgid "Destinations"
|
| 2186 |
msgstr "Zielordner"
|
|
@@ -2229,7 +2071,6 @@ msgstr "erweitert"
|
|
| 2229 |
|
| 2230 |
#: inc/class-page-editjob.php:682
|
| 2231 |
#: inc/class-page-editjob.php:750
|
| 2232 |
-
#: inc/features/class-wizard-job.php:275
|
| 2233 |
#@ backwpup
|
| 2234 |
msgid "Scheduler"
|
| 2235 |
msgstr "Planer"
|
|
@@ -2237,98 +2078,83 @@ msgstr "Planer"
|
|
| 2237 |
#: inc/class-page-editjob.php:687
|
| 2238 |
#: inc/class-page-jobs.php:70
|
| 2239 |
#: inc/class-page-logs.php:115
|
| 2240 |
-
#: inc/features/class-wizard-job.php:280
|
| 2241 |
#@ backwpup
|
| 2242 |
msgid "Type"
|
| 2243 |
msgstr "Typ"
|
| 2244 |
|
| 2245 |
#: inc/class-page-editjob.php:692
|
| 2246 |
-
#: inc/features/class-wizard-job.php:285
|
| 2247 |
#@ backwpup
|
| 2248 |
msgid "Hour"
|
| 2249 |
msgstr "Stunde"
|
| 2250 |
|
| 2251 |
#: inc/class-page-editjob.php:695
|
| 2252 |
-
#: inc/features/class-wizard-job.php:288
|
| 2253 |
#@ backwpup
|
| 2254 |
msgid "Minute"
|
| 2255 |
msgstr "Minute"
|
| 2256 |
|
| 2257 |
#: inc/class-page-editjob.php:699
|
| 2258 |
-
#: inc/features/class-wizard-job.php:292
|
| 2259 |
#@ backwpup
|
| 2260 |
msgid "monthly"
|
| 2261 |
msgstr "monatlich"
|
| 2262 |
|
| 2263 |
#: inc/class-page-editjob.php:701
|
| 2264 |
-
#: inc/features/class-wizard-job.php:294
|
| 2265 |
#@ backwpup
|
| 2266 |
msgid "on"
|
| 2267 |
msgstr "am"
|
| 2268 |
|
| 2269 |
#: inc/class-page-editjob.php:711
|
| 2270 |
-
#: inc/features/class-wizard-job.php:304
|
| 2271 |
#@ backwpup
|
| 2272 |
msgid "weekly"
|
| 2273 |
msgstr "wöchentlich"
|
| 2274 |
|
| 2275 |
#: inc/class-page-editjob.php:713
|
| 2276 |
#: inc/class-page-editjob.php:820
|
| 2277 |
-
#: inc/features/class-wizard-job.php:306
|
| 2278 |
#@ backwpup
|
| 2279 |
msgid "Sunday"
|
| 2280 |
msgstr "Sonntag"
|
| 2281 |
|
| 2282 |
#: inc/class-page-editjob.php:714
|
| 2283 |
#: inc/class-page-editjob.php:821
|
| 2284 |
-
#: inc/features/class-wizard-job.php:307
|
| 2285 |
#@ backwpup
|
| 2286 |
msgid "Monday"
|
| 2287 |
msgstr "Montag"
|
| 2288 |
|
| 2289 |
#: inc/class-page-editjob.php:715
|
| 2290 |
#: inc/class-page-editjob.php:822
|
| 2291 |
-
#: inc/features/class-wizard-job.php:308
|
| 2292 |
#@ backwpup
|
| 2293 |
msgid "Tuesday"
|
| 2294 |
msgstr "Dienstag"
|
| 2295 |
|
| 2296 |
#: inc/class-page-editjob.php:716
|
| 2297 |
#: inc/class-page-editjob.php:823
|
| 2298 |
-
#: inc/features/class-wizard-job.php:309
|
| 2299 |
#@ backwpup
|
| 2300 |
msgid "Wednesday"
|
| 2301 |
msgstr "Mittwoch"
|
| 2302 |
|
| 2303 |
#: inc/class-page-editjob.php:717
|
| 2304 |
#: inc/class-page-editjob.php:824
|
| 2305 |
-
#: inc/features/class-wizard-job.php:310
|
| 2306 |
#@ backwpup
|
| 2307 |
msgid "Thursday"
|
| 2308 |
msgstr "Donnerstag"
|
| 2309 |
|
| 2310 |
#: inc/class-page-editjob.php:718
|
| 2311 |
#: inc/class-page-editjob.php:825
|
| 2312 |
-
#: inc/features/class-wizard-job.php:311
|
| 2313 |
#@ backwpup
|
| 2314 |
msgid "Friday"
|
| 2315 |
msgstr "Freitag"
|
| 2316 |
|
| 2317 |
#: inc/class-page-editjob.php:719
|
| 2318 |
#: inc/class-page-editjob.php:826
|
| 2319 |
-
#: inc/features/class-wizard-job.php:312
|
| 2320 |
#@ backwpup
|
| 2321 |
msgid "Saturday"
|
| 2322 |
msgstr "Samstag"
|
| 2323 |
|
| 2324 |
#: inc/class-page-editjob.php:729
|
| 2325 |
-
#: inc/features/class-wizard-job.php:322
|
| 2326 |
#@ backwpup
|
| 2327 |
msgid "daily"
|
| 2328 |
msgstr "täglich"
|
| 2329 |
|
| 2330 |
#: inc/class-page-editjob.php:739
|
| 2331 |
-
#: inc/features/class-wizard-job.php:332
|
| 2332 |
#@ backwpup
|
| 2333 |
msgid "hourly"
|
| 2334 |
msgstr "stündlich"
|
|
@@ -2480,7 +2306,7 @@ msgstr "Läuft seit %s Sekunden"
|
|
| 2480 |
msgid "Cron: %s"
|
| 2481 |
msgstr "Cron: %s"
|
| 2482 |
|
| 2483 |
-
#: inc/class-page-backwpup.php:
|
| 2484 |
#: inc/class-page-jobs.php:197
|
| 2485 |
#@ backwpup
|
| 2486 |
msgid "Not scheduled!"
|
|
@@ -2750,8 +2576,6 @@ msgid "maximum"
|
|
| 2750 |
msgstr "maximum"
|
| 2751 |
|
| 2752 |
#: inc/class-page-settings.php:322
|
| 2753 |
-
#: inc/features/class-destination-ftp-pro.php:21
|
| 2754 |
-
#: inc/features/class-destination-rsc-pro.php:27
|
| 2755 |
#@ backwpup
|
| 2756 |
msgid "Username:"
|
| 2757 |
msgstr "Benutzername:"
|
|
@@ -2895,11 +2719,6 @@ msgstr "Deaktivierte PHP Funktionen:"
|
|
| 2895 |
msgid "Loaded PHP Extensions:"
|
| 2896 |
msgstr "Geladene PHP Erweiterungen"
|
| 2897 |
|
| 2898 |
-
#: inc/features/class-wizard-job.php:34
|
| 2899 |
-
#@ backwpup
|
| 2900 |
-
msgid "Job Types"
|
| 2901 |
-
msgstr "Auftragstypen"
|
| 2902 |
-
|
| 2903 |
#: inc/class-page-settings.php:465
|
| 2904 |
#@ backwpup
|
| 2905 |
msgid "Save Changes"
|
|
@@ -2911,1149 +2730,361 @@ msgstr "Änderungen speichern"
|
|
| 2911 |
msgid "%s Welcome"
|
| 2912 |
msgstr "%s Willkommen"
|
| 2913 |
|
| 2914 |
-
#: inc/
|
| 2915 |
-
#@ backwpup
|
| 2916 |
-
msgid "You are currently using a valid key for this plugin. You are able to renew the key in the MarketPress Dashboard. Or if you want to add an other valid code use the form below."
|
| 2917 |
-
msgstr "Du verwendest derzeit einen gültigen Lizenzschlüssel für dieses Plugin. Du kannst die Lizenzen im MarketPress Dashboard erneuern. Oder einen anderen gültigen Schlüssel eintragen."
|
| 2918 |
-
|
| 2919 |
-
#: inc/features/class-auto-update.php:380
|
| 2920 |
#, php-format
|
| 2921 |
#@ backwpup
|
| 2922 |
-
msgid "
|
| 2923 |
-
msgstr "
|
| 2924 |
|
| 2925 |
-
|
|
|
|
| 2926 |
#@ backwpup
|
| 2927 |
-
msgid "
|
| 2928 |
-
msgstr "
|
| 2929 |
|
| 2930 |
-
|
|
|
|
| 2931 |
#@ backwpup
|
| 2932 |
-
msgid "
|
| 2933 |
-
msgstr "
|
| 2934 |
|
| 2935 |
-
|
|
|
|
| 2936 |
#@ backwpup
|
| 2937 |
-
msgid "
|
| 2938 |
-
msgstr "
|
| 2939 |
|
| 2940 |
-
#: inc/
|
| 2941 |
-
#@
|
| 2942 |
-
msgid "
|
| 2943 |
-
msgstr "
|
| 2944 |
|
| 2945 |
-
#: inc/
|
| 2946 |
#@ backwpup
|
| 2947 |
-
msgid "
|
| 2948 |
-
msgstr "
|
| 2949 |
|
| 2950 |
-
#: inc/
|
| 2951 |
#@ backwpup
|
| 2952 |
-
msgid "
|
| 2953 |
-
msgstr "
|
| 2954 |
|
| 2955 |
-
#: inc/
|
| 2956 |
#@ backwpup
|
| 2957 |
-
msgid "
|
| 2958 |
-
msgstr "
|
| 2959 |
|
| 2960 |
-
#: inc/
|
| 2961 |
#@ backwpup
|
| 2962 |
-
msgid "
|
| 2963 |
-
msgstr "
|
| 2964 |
|
| 2965 |
-
#: inc/
|
| 2966 |
-
#: inc/features/class-destination-dropbox-pro.php:65
|
| 2967 |
-
#: inc/features/class-destination-sugarsync-pro.php:28
|
| 2968 |
#@ backwpup
|
| 2969 |
-
msgid "
|
| 2970 |
-
msgstr "
|
| 2971 |
|
| 2972 |
-
#: inc/
|
| 2973 |
#@ backwpup
|
| 2974 |
-
msgid "
|
| 2975 |
-
msgstr "
|
| 2976 |
|
| 2977 |
-
#: inc/
|
| 2978 |
-
#: inc/features/class-destination-sugarsync-pro.php:55
|
| 2979 |
#@ backwpup
|
| 2980 |
-
msgid "
|
| 2981 |
-
msgstr "
|
| 2982 |
|
| 2983 |
-
#: inc/
|
| 2984 |
-
#, php-format
|
| 2985 |
#@ backwpup
|
| 2986 |
-
msgid "
|
| 2987 |
-
msgstr "
|
| 2988 |
|
| 2989 |
-
#: inc/
|
| 2990 |
#@ backwpup
|
| 2991 |
-
msgid "
|
| 2992 |
-
msgstr "
|
| 2993 |
|
| 2994 |
-
#: inc/
|
| 2995 |
#@ backwpup
|
| 2996 |
-
msgid "
|
| 2997 |
-
msgstr "
|
| 2998 |
|
| 2999 |
-
#: inc/
|
| 3000 |
-
#, php-format
|
| 3001 |
#@ backwpup
|
| 3002 |
-
msgid "
|
| 3003 |
-
msgstr "
|
| 3004 |
|
| 3005 |
-
#: inc/
|
| 3006 |
-
#, php-format
|
| 3007 |
#@ backwpup
|
| 3008 |
-
msgid "
|
| 3009 |
-
msgstr "
|
| 3010 |
|
| 3011 |
-
#: inc/
|
| 3012 |
-
#, php-format
|
| 3013 |
#@ backwpup
|
| 3014 |
-
msgid "
|
| 3015 |
-
msgstr "
|
| 3016 |
|
| 3017 |
-
#: inc/
|
| 3018 |
#@ backwpup
|
| 3019 |
-
msgid "
|
| 3020 |
-
msgstr "
|
| 3021 |
|
| 3022 |
-
#: inc/
|
| 3023 |
-
#, php-format
|
| 3024 |
#@ backwpup
|
| 3025 |
-
msgid "
|
| 3026 |
-
msgstr "Datei
|
| 3027 |
|
| 3028 |
-
#: inc/
|
| 3029 |
-
|
| 3030 |
#@ backwpup
|
| 3031 |
-
msgid "
|
| 3032 |
-
msgstr "
|
| 3033 |
|
| 3034 |
-
#: inc/
|
| 3035 |
#@ backwpup
|
| 3036 |
-
msgid "
|
| 3037 |
-
msgstr "
|
| 3038 |
|
| 3039 |
-
#: inc/
|
| 3040 |
-
#: inc/features/class-destination-sugarsync-pro.php:60
|
| 3041 |
#@ backwpup
|
| 3042 |
-
msgid "
|
| 3043 |
-
msgstr "
|
| 3044 |
|
| 3045 |
-
#: inc/
|
| 3046 |
#@ backwpup
|
| 3047 |
-
msgid "
|
| 3048 |
-
msgstr "
|
| 3049 |
|
| 3050 |
-
#: inc/
|
| 3051 |
#@ backwpup
|
| 3052 |
-
msgid "
|
| 3053 |
-
msgstr "
|
| 3054 |
|
| 3055 |
-
#: inc/
|
| 3056 |
-
#: inc/features/class-destination-s3-pro.php:39
|
| 3057 |
-
#: inc/features/class-destination-s3-v1-pro.php:39
|
| 3058 |
#@ backwpup
|
| 3059 |
-
msgid "
|
| 3060 |
-
msgstr "
|
| 3061 |
|
| 3062 |
-
#: inc/
|
| 3063 |
-
#: inc/
|
|
|
|
| 3064 |
#@ backwpup
|
| 3065 |
-
msgid "
|
| 3066 |
-
msgstr "
|
| 3067 |
|
| 3068 |
-
#: inc/
|
| 3069 |
-
#: inc/
|
|
|
|
| 3070 |
#@ backwpup
|
| 3071 |
-
msgid "
|
| 3072 |
-
msgstr "
|
| 3073 |
|
| 3074 |
-
#: inc/
|
| 3075 |
-
#: inc/features/class-destination-rsc-pro.php:49
|
| 3076 |
#@ backwpup
|
| 3077 |
-
msgid "
|
| 3078 |
-
msgstr "
|
| 3079 |
|
| 3080 |
-
#: inc/
|
| 3081 |
#, php-format
|
| 3082 |
#@ backwpup
|
| 3083 |
-
msgid "
|
| 3084 |
-
msgstr "
|
| 3085 |
|
| 3086 |
-
#: inc/
|
|
|
|
| 3087 |
#@ backwpup
|
| 3088 |
-
msgid "
|
| 3089 |
-
msgstr "
|
| 3090 |
|
| 3091 |
-
#: inc/
|
| 3092 |
#@ backwpup
|
| 3093 |
-
msgid "
|
| 3094 |
-
msgstr "
|
| 3095 |
|
| 3096 |
-
#: inc/
|
| 3097 |
#, php-format
|
| 3098 |
#@ backwpup
|
| 3099 |
-
msgid "
|
| 3100 |
-
msgstr "
|
| 3101 |
|
| 3102 |
-
#: inc/
|
| 3103 |
#, php-format
|
| 3104 |
#@ backwpup
|
| 3105 |
-
msgid "
|
| 3106 |
-
msgstr "
|
| 3107 |
|
| 3108 |
-
#: inc/
|
|
|
|
| 3109 |
#@ backwpup
|
| 3110 |
-
msgid "
|
| 3111 |
-
msgstr "
|
| 3112 |
|
| 3113 |
-
#: inc/
|
| 3114 |
#, php-format
|
| 3115 |
#@ backwpup
|
| 3116 |
-
msgid "
|
| 3117 |
-
msgstr "
|
| 3118 |
-
|
| 3119 |
-
#: inc/features/class-destination-rsc-pro.php:30
|
| 3120 |
-
#@ backwpup
|
| 3121 |
-
msgid "API Key:"
|
| 3122 |
-
msgstr "API-Schlüssel"
|
| 3123 |
-
|
| 3124 |
-
#: inc/features/class-destination-rsc-pro.php:33
|
| 3125 |
-
#@ backwpup
|
| 3126 |
-
msgid "Select region:"
|
| 3127 |
-
msgstr "Wähle Region:"
|
| 3128 |
|
| 3129 |
-
#: inc/
|
| 3130 |
#, php-format
|
| 3131 |
#@ backwpup
|
| 3132 |
-
msgid "
|
| 3133 |
-
msgstr "
|
| 3134 |
|
| 3135 |
-
#: inc/
|
| 3136 |
#@ backwpup
|
| 3137 |
-
msgid "
|
| 3138 |
-
msgstr "
|
| 3139 |
|
| 3140 |
-
#: inc/
|
| 3141 |
#, php-format
|
| 3142 |
#@ backwpup
|
| 3143 |
-
msgid "
|
| 3144 |
-
msgstr "
|
| 3145 |
|
| 3146 |
-
#: inc/
|
|
|
|
|
|
|
| 3147 |
#, php-format
|
| 3148 |
#@ backwpup
|
| 3149 |
-
msgid "
|
| 3150 |
-
msgstr "
|
| 3151 |
|
| 3152 |
-
#: inc/
|
| 3153 |
#, php-format
|
| 3154 |
#@ backwpup
|
| 3155 |
-
msgid "
|
| 3156 |
-
msgstr "
|
| 3157 |
|
| 3158 |
-
#: inc/
|
| 3159 |
-
#: inc/features/class-destination-s3-v1-pro.php:22
|
| 3160 |
#@ backwpup
|
| 3161 |
-
msgid "
|
| 3162 |
-
msgstr "
|
| 3163 |
|
| 3164 |
-
#: inc/
|
| 3165 |
-
#: inc/features/class-destination-s3-v1-pro.php:42
|
| 3166 |
#@ backwpup
|
| 3167 |
-
msgid "
|
| 3168 |
-
msgstr "
|
| 3169 |
|
| 3170 |
-
#: inc/
|
| 3171 |
-
#: inc/features/class-destination-s3-v1-pro.php:45
|
| 3172 |
#@ backwpup
|
| 3173 |
-
msgid "
|
| 3174 |
-
msgstr "
|
| 3175 |
|
| 3176 |
-
#: inc/
|
| 3177 |
-
|
| 3178 |
-
|
| 3179 |
-
|
| 3180 |
-
msgstr "Neues Bucket: "
|
| 3181 |
|
| 3182 |
-
#: inc/
|
| 3183 |
-
#: inc/features/class-destination-s3-v1-pro.php:57
|
| 3184 |
#@ backwpup
|
| 3185 |
-
msgid "
|
| 3186 |
-
msgstr "
|
| 3187 |
|
| 3188 |
-
#: inc/
|
| 3189 |
-
#: inc/features/class-destination-s3-v1-pro.php:154
|
| 3190 |
#, php-format
|
| 3191 |
#@ backwpup
|
| 3192 |
-
msgid "%
|
| 3193 |
-
msgstr "%
|
| 3194 |
|
| 3195 |
-
#: inc/
|
| 3196 |
-
#: inc/features/class-destination-s3-v1-pro.php:183
|
| 3197 |
#@ backwpup
|
| 3198 |
-
msgid "
|
| 3199 |
-
msgstr "
|
| 3200 |
|
| 3201 |
-
#: inc/
|
| 3202 |
-
#: inc/features/class-destination-s3-v1-pro.php:232
|
| 3203 |
#@ backwpup
|
| 3204 |
-
msgid "
|
| 3205 |
-
msgstr "
|
| 3206 |
|
| 3207 |
-
#: inc/
|
| 3208 |
-
#: inc/features/class-destination-s3-v1-pro.php:241
|
| 3209 |
-
#, php-format
|
| 3210 |
#@ backwpup
|
| 3211 |
-
msgid "
|
| 3212 |
-
msgstr "
|
| 3213 |
|
| 3214 |
-
#: inc/
|
| 3215 |
-
#: inc/
|
| 3216 |
-
#, php-format
|
| 3217 |
#@ backwpup
|
| 3218 |
-
msgid "
|
| 3219 |
-
msgstr "
|
| 3220 |
|
| 3221 |
-
#: inc/
|
| 3222 |
-
#: inc/features/class-destination-s3-v1-pro.php:264
|
| 3223 |
#@ backwpup
|
| 3224 |
-
msgid "
|
| 3225 |
-
msgstr "
|
| 3226 |
|
| 3227 |
-
#: inc/
|
| 3228 |
-
#: inc/features/class-destination-s3-v1-pro.php:268
|
| 3229 |
-
#, php-format
|
| 3230 |
#@ backwpup
|
| 3231 |
-
msgid "
|
| 3232 |
-
msgstr "
|
| 3233 |
|
| 3234 |
-
#: inc/
|
| 3235 |
#@ backwpup
|
| 3236 |
-
msgid "
|
| 3237 |
-
msgstr "
|
| 3238 |
|
| 3239 |
-
#: inc/
|
| 3240 |
-
#: inc/
|
| 3241 |
#@ backwpup
|
| 3242 |
-
msgid "
|
| 3243 |
-
msgstr "
|
| 3244 |
|
| 3245 |
-
#: inc/
|
| 3246 |
#@ backwpup
|
| 3247 |
-
msgid "
|
| 3248 |
-
msgstr "
|
| 3249 |
|
| 3250 |
-
#: inc/
|
| 3251 |
-
#: inc/
|
| 3252 |
#@ backwpup
|
| 3253 |
-
msgid "
|
| 3254 |
-
msgstr "
|
| 3255 |
|
| 3256 |
-
#: inc/
|
| 3257 |
-
#: inc/features/class-documentation.php:291
|
| 3258 |
#@ backwpup
|
| 3259 |
-
msgid "
|
| 3260 |
-
msgstr "
|
| 3261 |
|
| 3262 |
-
#: inc/
|
| 3263 |
-
#: inc/features/class-export-jobs.php:23
|
| 3264 |
#@ backwpup
|
| 3265 |
-
msgid "
|
| 3266 |
-
msgstr "
|
| 3267 |
|
| 3268 |
-
#: inc/
|
| 3269 |
-
#: inc/features/class-jobtype-dbdump-pro.php:85
|
| 3270 |
-
#: inc/features/class-jobtype-dboptimize-pro.php:17
|
| 3271 |
#@ backwpup
|
| 3272 |
-
msgid "
|
| 3273 |
-
msgstr "
|
| 3274 |
|
| 3275 |
-
#: inc/
|
| 3276 |
#@ backwpup
|
| 3277 |
-
msgid "
|
| 3278 |
-
msgstr "
|
| 3279 |
|
| 3280 |
-
#: inc/
|
|
|
|
|
|
|
| 3281 |
#@ backwpup
|
| 3282 |
-
msgid "
|
| 3283 |
-
msgstr "
|
| 3284 |
|
| 3285 |
-
#: inc/
|
|
|
|
| 3286 |
#@ backwpup
|
| 3287 |
-
msgid "
|
| 3288 |
-
msgstr "
|
| 3289 |
|
| 3290 |
-
#: inc/
|
|
|
|
| 3291 |
#@ backwpup
|
| 3292 |
-
msgid "
|
| 3293 |
-
msgstr "
|
| 3294 |
|
| 3295 |
-
#: inc/
|
| 3296 |
-
|
| 3297 |
-
msgid "User:"
|
| 3298 |
-
msgstr "Benutzer: "
|
| 3299 |
-
|
| 3300 |
-
#: inc/features/class-jobtype-dbdump-pro.php:126
|
| 3301 |
-
#@ backwpup
|
| 3302 |
-
msgid "Charset:"
|
| 3303 |
-
msgstr "Charset: "
|
| 3304 |
-
|
| 3305 |
-
#: inc/features/class-jobtype-dbdump-pro.php:137
|
| 3306 |
-
#@ backwpup
|
| 3307 |
-
msgid "Database:"
|
| 3308 |
-
msgstr "Datenbank:"
|
| 3309 |
-
|
| 3310 |
-
#: inc/class-jobtype-dbdump.php:208
|
| 3311 |
-
#: inc/features/class-jobtype-dbdump-pro.php:515
|
| 3312 |
-
#: inc/features/class-jobtype-dbdump-pro.php:627
|
| 3313 |
-
#, php-format
|
| 3314 |
-
#@ backwpup
|
| 3315 |
-
msgid "Added database dump \"%1$s\" with %2$s to backup file list"
|
| 3316 |
-
msgstr "Datenbank-Backup erstellt \"%1$s\" mit %2$s zur Backup-Liste"
|
| 3317 |
-
|
| 3318 |
-
#: inc/features/class-jobtype-dbdump-pro.php:612
|
| 3319 |
-
#@ backwpup
|
| 3320 |
-
msgid "Compressing done."
|
| 3321 |
-
msgstr "Komprimierung erledigt."
|
| 3322 |
-
|
| 3323 |
-
#: inc/features/class-jobtype-dbdump-pro.php:700
|
| 3324 |
-
#@ backwpup
|
| 3325 |
-
msgid "No tables for XML dump"
|
| 3326 |
-
msgstr "Es gibt keine Tabellen für ein XML-Backup"
|
| 3327 |
-
|
| 3328 |
-
#: inc/features/class-jobtype-dbdump-pro.php:737
|
| 3329 |
-
#, php-format
|
| 3330 |
-
#@ backwpup
|
| 3331 |
-
msgid "Dump database create view \"%s\""
|
| 3332 |
-
msgstr "Datenbank-Backup erstellt \"%s\""
|
| 3333 |
-
|
| 3334 |
-
#: inc/features/class-jobtype-dbdump-pro.php:794
|
| 3335 |
-
#, php-format
|
| 3336 |
-
#@ backwpup
|
| 3337 |
-
msgid "Dump table \"%s\" data"
|
| 3338 |
-
msgstr "Backup der Tabellen \"%s\""
|
| 3339 |
-
|
| 3340 |
-
#: inc/features/class-jobtype-dbdump-pro.php:863
|
| 3341 |
-
#, php-format
|
| 3342 |
-
#@ backwpup
|
| 3343 |
-
msgid "Added database XML dump \"%1$s\" with %2$s to backup file list"
|
| 3344 |
-
msgstr "XML-Backup der Datenbank \"%1$s\" mit %2$s zur Backup-Liste"
|
| 3345 |
-
|
| 3346 |
-
#: inc/features/class-jobtype-dbdump-pro.php:866
|
| 3347 |
-
#@ backwpup
|
| 3348 |
-
msgid "Database XML dump done!"
|
| 3349 |
-
msgstr "XML-Backup der Datenbank erstellt."
|
| 3350 |
-
|
| 3351 |
-
#: inc/features/class-jobtype-wpplugin-pro.php:13
|
| 3352 |
-
#@ backwpup
|
| 3353 |
-
msgid "Nothing to configure"
|
| 3354 |
-
msgstr "Nichts zu konfiguieren"
|
| 3355 |
-
|
| 3356 |
-
#: inc/features/class-page-wizard.php:149
|
| 3357 |
-
#: inc/features/class-page-wizard.php:337
|
| 3358 |
-
#: inc/features/class-page-wizard.php:368
|
| 3359 |
-
#@ backwpup
|
| 3360 |
-
msgid "Next >"
|
| 3361 |
-
msgstr "weiter >"
|
| 3362 |
-
|
| 3363 |
-
#: inc/features/class-page-wizard.php:166
|
| 3364 |
-
#: inc/features/class-page-wizard.php:333
|
| 3365 |
-
#@ backwpup
|
| 3366 |
-
msgid "< Previous"
|
| 3367 |
-
msgstr "< vorher"
|
| 3368 |
-
|
| 3369 |
-
#: inc/features/class-page-wizard.php:114
|
| 3370 |
-
#: inc/features/class-page-wizard.php:342
|
| 3371 |
-
#@ backwpup
|
| 3372 |
-
msgid "Cancel"
|
| 3373 |
-
msgstr "Abbrechen"
|
| 3374 |
-
|
| 3375 |
-
#: inc/features/class-settings-apikeys.php:37
|
| 3376 |
-
#@ backwpup
|
| 3377 |
-
msgid "Dropbox API Keys"
|
| 3378 |
-
msgstr "Dropbox API Keys"
|
| 3379 |
-
|
| 3380 |
-
#: inc/features/class-settings-apikeys.php:41
|
| 3381 |
-
#@ backwpup
|
| 3382 |
-
msgid "Full Dropbox App key:"
|
| 3383 |
-
msgstr "Dropbox-App-Key"
|
| 3384 |
-
|
| 3385 |
-
#: inc/features/class-settings-apikeys.php:49
|
| 3386 |
-
#@ backwpup
|
| 3387 |
-
msgid "Full Dropbox App secret:"
|
| 3388 |
-
msgstr "Dropbox-App-Secret:"
|
| 3389 |
-
|
| 3390 |
-
#: inc/features/class-settings-apikeys.php:57
|
| 3391 |
-
#@ backwpup
|
| 3392 |
-
msgid "Sandbox App key:"
|
| 3393 |
-
msgstr "Sandbox-App-Key:"
|
| 3394 |
-
|
| 3395 |
-
#: inc/features/class-settings-apikeys.php:65
|
| 3396 |
-
#@ backwpup
|
| 3397 |
-
msgid "Sandbox App secret:"
|
| 3398 |
-
msgstr "Sandbox-App-Secret:"
|
| 3399 |
-
|
| 3400 |
-
#: inc/features/class-settings-apikeys.php:78
|
| 3401 |
-
#@ backwpup
|
| 3402 |
-
msgid "SugarSync API Keys"
|
| 3403 |
-
msgstr "SugarSync API Keys"
|
| 3404 |
-
|
| 3405 |
-
#: inc/features/class-settings-apikeys.php:79
|
| 3406 |
-
#@ backwpup
|
| 3407 |
-
msgid "If you want to set your own SugarSync API keys you can do that here. Leave empty for default."
|
| 3408 |
-
msgstr "Falls Sie eigene SugarSync-API-Keys verwenden möchten, können Sie diese hier eingeben. Lassen Sie die Felder leer, um die Standard-Einstellungen zu benutzen."
|
| 3409 |
-
|
| 3410 |
-
#: inc/features/class-settings-apikeys.php:82
|
| 3411 |
-
#@ backwpup
|
| 3412 |
-
msgid "Access Key ID:"
|
| 3413 |
-
msgstr "Access-Key-ID (Zugangsschlüssel-ID):"
|
| 3414 |
-
|
| 3415 |
-
#: inc/features/class-settings-apikeys.php:90
|
| 3416 |
-
#@ backwpup
|
| 3417 |
-
msgid "Private Access Key:"
|
| 3418 |
-
msgstr "Private Access Key:"
|
| 3419 |
-
|
| 3420 |
-
#: inc/features/class-settings-apikeys.php:97
|
| 3421 |
-
#@ backwpup
|
| 3422 |
-
msgid "App ID:"
|
| 3423 |
-
msgstr "App ID:"
|
| 3424 |
-
|
| 3425 |
-
#: inc/features/class-wizard-job.php:14
|
| 3426 |
-
#@ backwpup
|
| 3427 |
-
msgid "Choose a job"
|
| 3428 |
-
msgstr "Wähle eine Auftragsart:"
|
| 3429 |
-
|
| 3430 |
-
#: inc/features/class-wizard-job.php:48
|
| 3431 |
-
#@ backwpup
|
| 3432 |
-
msgid "Archive Settings"
|
| 3433 |
-
msgstr "Archivierung"
|
| 3434 |
-
|
| 3435 |
-
#: inc/features/class-wizard-job.php:48
|
| 3436 |
-
#@ backwpup
|
| 3437 |
-
msgid "Settings for the Backup Archive"
|
| 3438 |
-
msgstr "Einstellungen für das Backup Archiv"
|
| 3439 |
-
|
| 3440 |
-
#: inc/features/class-wizard-job.php:60
|
| 3441 |
-
#: inc/features/class-wizard-job.php:273
|
| 3442 |
-
#@ backwpup
|
| 3443 |
-
msgid "Scheduling"
|
| 3444 |
-
msgstr "Planung"
|
| 3445 |
-
|
| 3446 |
-
#: inc/features/class-wizard-job.php:274
|
| 3447 |
-
#@ backwpup
|
| 3448 |
-
msgid "Activate scheduling"
|
| 3449 |
-
msgstr "Aktive Planung"
|
| 3450 |
-
|
| 3451 |
-
#: inc/features/class-wizard-job.php:365
|
| 3452 |
-
#@ backwpup
|
| 3453 |
-
msgid "Select a compression type for the backup archive"
|
| 3454 |
-
msgstr "Wähle einen Kompressionstyp für das Backup Archiv"
|
| 3455 |
-
|
| 3456 |
-
#: inc/features/class-wizard-job.php:368
|
| 3457 |
-
#@ backwpup
|
| 3458 |
-
msgid "Archive compression type"
|
| 3459 |
-
msgstr "Archivkompression"
|
| 3460 |
-
|
| 3461 |
-
#: inc/features/class-wizard-job.php:371
|
| 3462 |
-
#@ backwpup
|
| 3463 |
-
msgid "PHP Zip functions will be used if available (memory lees). Else PCLZip Class will used."
|
| 3464 |
-
msgstr "PHP-Zip-Funktionen werden verwendet, sofern verfügbar (schneller). Ansonsten wird die Klasse PCLZip verwendet."
|
| 3465 |
-
|
| 3466 |
-
#: inc/features/class-wizard-job.php:374
|
| 3467 |
-
#@ backwpup
|
| 3468 |
-
msgid "Tar (fast and memory less)"
|
| 3469 |
-
msgstr "Tar (schnell und speicherschonend)"
|
| 3470 |
-
|
| 3471 |
-
#: inc/features/class-wizard-job.php:376
|
| 3472 |
-
#@ backwpup
|
| 3473 |
-
msgid "A tared and GZipped archive (fast and memory less)"
|
| 3474 |
-
msgstr "Ein .tar und .gz Archiv (schnell und schlank)"
|
| 3475 |
-
|
| 3476 |
-
#: inc/features/class-wizard-job.php:380
|
| 3477 |
-
#@ backwpup
|
| 3478 |
-
msgid "A tared and BZipped archive (fast and memory less)"
|
| 3479 |
-
msgstr "Ein .tar und .bz Archiv (schnell und schlank)"
|
| 3480 |
-
|
| 3481 |
-
#: inc/features/class-wizard-job.php:562
|
| 3482 |
-
#, php-format
|
| 3483 |
-
#@ backwpup
|
| 3484 |
-
msgid "Wizard: %1$s"
|
| 3485 |
-
msgstr "Assistent: %1$s"
|
| 3486 |
-
|
| 3487 |
-
#: inc/features/class-wizard-job.php:593
|
| 3488 |
-
#@ backwpup
|
| 3489 |
-
msgid "Create Job"
|
| 3490 |
-
msgstr "Auftrag erstellen"
|
| 3491 |
-
|
| 3492 |
-
#: inc/features/class-wizard-job.php:618
|
| 3493 |
-
#: inc/features/class-wizard-job.php:619
|
| 3494 |
-
#@ backwpup
|
| 3495 |
-
msgid "Database Backup and XML Export (Daily)"
|
| 3496 |
-
msgstr "DB Sicherung & XML Export (täglich)"
|
| 3497 |
-
|
| 3498 |
-
#: inc/features/class-wizard-job.php:636
|
| 3499 |
-
#: inc/features/class-wizard-job.php:637
|
| 3500 |
-
#@ backwpup
|
| 3501 |
-
msgid "Database Check and Optimization (Weekly)"
|
| 3502 |
-
msgstr "DB-Check & Optimierung (wöchentlich)"
|
| 3503 |
-
|
| 3504 |
-
#: inc/features/class-wizard-job.php:646
|
| 3505 |
-
#: inc/features/class-wizard-job.php:647
|
| 3506 |
-
#@ backwpup
|
| 3507 |
-
msgid "Uploads Backup"
|
| 3508 |
-
msgstr "Sicherung der Uploads"
|
| 3509 |
-
|
| 3510 |
-
#: inc/features/class-wizard-job.php:661
|
| 3511 |
-
#: inc/features/class-wizard-job.php:662
|
| 3512 |
-
#@ backwpup
|
| 3513 |
-
msgid "All Files Backup"
|
| 3514 |
-
msgstr "Sicherung aller Dateien"
|
| 3515 |
-
|
| 3516 |
-
#: inc/features/class-wizard-job.php:692
|
| 3517 |
-
#: inc/features/class-wizard-job.php:693
|
| 3518 |
-
#@ backwpup
|
| 3519 |
-
msgid "Custom configuration"
|
| 3520 |
-
msgstr "Benutzerdefinierte Konfiguration"
|
| 3521 |
-
|
| 3522 |
-
#: inc/features/class-wizard-jobimport.php:14
|
| 3523 |
-
#@ backwpup
|
| 3524 |
-
msgid "XML job import"
|
| 3525 |
-
msgstr "XML-Import"
|
| 3526 |
-
|
| 3527 |
-
#: inc/features/class-wizard-jobimport.php:32
|
| 3528 |
-
#: inc/features/class-wizard-jobimport.php:81
|
| 3529 |
-
#@ backwpup
|
| 3530 |
-
msgid "Import"
|
| 3531 |
-
msgstr "Import"
|
| 3532 |
-
|
| 3533 |
-
#: inc/features/class-wizard-jobimport.php:41
|
| 3534 |
-
#@ backwpup
|
| 3535 |
-
msgid "Import File"
|
| 3536 |
-
msgstr "Import-Datei"
|
| 3537 |
-
|
| 3538 |
-
#: inc/features/class-wizard-jobimport.php:41
|
| 3539 |
-
#@ backwpup
|
| 3540 |
-
msgid "Upload XML Job File for Import"
|
| 3541 |
-
msgstr "XML-Auftragsdatei zum Importieren hochladen"
|
| 3542 |
-
|
| 3543 |
-
#: inc/features/class-wizard-jobimport.php:61
|
| 3544 |
-
#@ backwpup
|
| 3545 |
-
msgid "Choose a file from your computer:"
|
| 3546 |
-
msgstr "Wähle eine Datei von deinem Computer:"
|
| 3547 |
-
|
| 3548 |
-
#: inc/features/class-wizard-jobimport.php:61
|
| 3549 |
-
#, php-format
|
| 3550 |
-
#@ backwpup
|
| 3551 |
-
msgid "Maximum size: %s"
|
| 3552 |
-
msgstr "Maximale Größe: %s"
|
| 3553 |
-
|
| 3554 |
-
#: inc/features/class-wizard-jobimport.php:74
|
| 3555 |
-
#@ backwpup
|
| 3556 |
-
msgid "Import Jobs"
|
| 3557 |
-
msgstr "Importiere Aufträge"
|
| 3558 |
-
|
| 3559 |
-
#: inc/features/class-wizard-jobimport.php:77
|
| 3560 |
-
#@ backwpup
|
| 3561 |
-
msgid "Import Type"
|
| 3562 |
-
msgstr "Import-Typ"
|
| 3563 |
-
|
| 3564 |
-
#: inc/features/class-wizard-jobimport.php:77
|
| 3565 |
-
#@ backwpup
|
| 3566 |
-
msgid "No Import"
|
| 3567 |
-
msgstr "Kein Import"
|
| 3568 |
-
|
| 3569 |
-
#: inc/features/class-wizard-jobimport.php:79
|
| 3570 |
-
#@ backwpup
|
| 3571 |
-
msgid "Overwrite"
|
| 3572 |
-
msgstr "Überschreiben"
|
| 3573 |
-
|
| 3574 |
-
#: inc/features/class-wizard-jobimport.php:79
|
| 3575 |
-
#@ backwpup
|
| 3576 |
-
msgid "Append"
|
| 3577 |
-
msgstr "Anhängen"
|
| 3578 |
-
|
| 3579 |
-
#: inc/features/class-wizard-jobimport.php:89
|
| 3580 |
-
#@ backwpup
|
| 3581 |
-
msgid "Import Config"
|
| 3582 |
-
msgstr "Konfiguration importieren"
|
| 3583 |
-
|
| 3584 |
-
#: inc/features/class-wizard-jobimport.php:92
|
| 3585 |
-
#@ backwpup
|
| 3586 |
-
msgid "Import BackWPup configuration"
|
| 3587 |
-
msgstr "Importiere BackWPup-Konfiguration"
|
| 3588 |
-
|
| 3589 |
-
#: inc/features/class-wizard-jobimport.php:110
|
| 3590 |
-
#@ backwpup
|
| 3591 |
-
msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini."
|
| 3592 |
-
msgstr "Datei ist leer. Bitte lade etwas mit Inhalt hoch. Dieser Fehler kann auftreten, wenn Uploads in der php.ini oder durch post_max_size kleiner definiert sind als upload_max_filesize."
|
| 3593 |
-
|
| 3594 |
-
#: inc/features/class-wizard-jobimport.php:139
|
| 3595 |
-
#, php-format
|
| 3596 |
-
#@ backwpup
|
| 3597 |
-
msgid "This Export file (version %s) may not be supported by this version of the importer."
|
| 3598 |
-
msgstr "Die Export Datei (version %s) wird wahrscheinlich nicht von dieser Version des Importers unterstützt"
|
| 3599 |
-
|
| 3600 |
-
#: inc/features/class-wizard-jobimport.php:207
|
| 3601 |
-
#, php-format
|
| 3602 |
-
#@ backwpup
|
| 3603 |
-
msgid "Job %1$s with id %2$d imported"
|
| 3604 |
-
msgstr "Job %1$s mit ID %2$d wurde importiert"
|
| 3605 |
-
|
| 3606 |
-
#: inc/features/class-wizard-jobimport.php:215
|
| 3607 |
-
#@ backwpup
|
| 3608 |
-
msgid "BackWPup config imported"
|
| 3609 |
-
msgstr "BackWPup Konfiguration wurde importiert"
|
| 3610 |
-
|
| 3611 |
-
#: inc/features/class-wizard-systemtest.php:14
|
| 3612 |
-
#@ backwpup
|
| 3613 |
-
msgid "System Test"
|
| 3614 |
-
msgstr "Systemtest"
|
| 3615 |
-
|
| 3616 |
-
#: inc/features/class-wizard-systemtest.php:15
|
| 3617 |
-
#@ backwpup
|
| 3618 |
-
msgid "Wizard to test if BackWPup can work properly"
|
| 3619 |
-
msgstr "Dieser Assistent testet, ob BackWPup problemlos arbeiten kann."
|
| 3620 |
-
|
| 3621 |
-
#: inc/features/class-wizard-systemtest.php:32
|
| 3622 |
-
#@ backwpup
|
| 3623 |
-
msgid "Run tests"
|
| 3624 |
-
msgstr "Starte die Tests"
|
| 3625 |
-
|
| 3626 |
-
#: inc/features/class-wizard-systemtest.php:41
|
| 3627 |
-
#@ backwpup
|
| 3628 |
-
msgid "Environment"
|
| 3629 |
-
msgstr "Voraussetzungen"
|
| 3630 |
-
|
| 3631 |
-
#: inc/features/class-wizard-systemtest.php:41
|
| 3632 |
-
#@ backwpup
|
| 3633 |
-
msgid "System Environment"
|
| 3634 |
-
msgstr "System Voraussetzungen"
|
| 3635 |
-
|
| 3636 |
-
#. translators: plugin header field 'Name'
|
| 3637 |
-
#: backwpup.php:0
|
| 3638 |
-
#@ backwpup
|
| 3639 |
-
msgid "BackWPup Pro"
|
| 3640 |
-
msgstr "BackWPup Pro"
|
| 3641 |
-
|
| 3642 |
-
#. translators: plugin header field 'Description'
|
| 3643 |
-
#: backwpup.php:0
|
| 3644 |
-
#@ backwpup
|
| 3645 |
-
msgid "WordPress Backup and more..."
|
| 3646 |
-
msgstr "WordPress Backup und mehr …"
|
| 3647 |
-
|
| 3648 |
-
#. translators: plugin header field 'Author'
|
| 3649 |
-
#: backwpup.php:0
|
| 3650 |
-
#@ backwpup
|
| 3651 |
-
msgid "Inpsyde GmbH"
|
| 3652 |
-
msgstr "Inpsyde GmbH"
|
| 3653 |
-
|
| 3654 |
-
#. translators: plugin header field 'AuthorURI'
|
| 3655 |
-
#: backwpup.php:0
|
| 3656 |
-
#@ backwpup
|
| 3657 |
-
msgid "http://inpsyde.com"
|
| 3658 |
-
msgstr "http://inpsyde.com"
|
| 3659 |
-
|
| 3660 |
-
#: inc/class-adminbar.php:53
|
| 3661 |
-
#@ backwpupadminbar
|
| 3662 |
-
msgid "running"
|
| 3663 |
-
msgstr "läuft"
|
| 3664 |
-
|
| 3665 |
-
#: inc/class-job.php:178
|
| 3666 |
-
#@ backwpup
|
| 3667 |
-
msgid "Job Start"
|
| 3668 |
-
msgstr "Auftragsstart"
|
| 3669 |
-
|
| 3670 |
-
#: inc/class-job.php:309
|
| 3671 |
-
#@ backwpup
|
| 3672 |
-
msgid "No destination correctly defined for backup! Please correct job settings."
|
| 3673 |
-
msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
|
| 3674 |
-
|
| 3675 |
-
#: inc/class-jobtype-file.php:60
|
| 3676 |
-
#@ backwpup
|
| 3677 |
-
msgid "Folders to backup"
|
| 3678 |
-
msgstr "Zu sichernde Verzeichnisse"
|
| 3679 |
-
|
| 3680 |
-
#: inc/class-jobtype-file.php:64
|
| 3681 |
-
#@ backwpup
|
| 3682 |
-
msgid "Backup root folder"
|
| 3683 |
-
msgstr "Root Verzeichnis sichern"
|
| 3684 |
-
|
| 3685 |
-
#: inc/class-jobtype-file.php:91
|
| 3686 |
-
#@ backwpup
|
| 3687 |
-
msgid "Backup content folder"
|
| 3688 |
-
msgstr "Sicherung des Content Verzeichnisses"
|
| 3689 |
-
|
| 3690 |
-
#: inc/class-jobtype-file.php:118
|
| 3691 |
-
#@ backwpup
|
| 3692 |
-
msgid "Backup plugins"
|
| 3693 |
-
msgstr "Plugins sichern"
|
| 3694 |
-
|
| 3695 |
-
#: inc/class-jobtype-file.php:145
|
| 3696 |
-
#@ backwpup
|
| 3697 |
-
msgid "Backup themes"
|
| 3698 |
-
msgstr "Themes sichern"
|
| 3699 |
-
|
| 3700 |
-
#: inc/class-jobtype-file.php:172
|
| 3701 |
-
#@ backwpup
|
| 3702 |
-
msgid "Backup uploads folder"
|
| 3703 |
-
msgstr "Uploads Verzeichnis sichern"
|
| 3704 |
-
|
| 3705 |
-
#: inc/class-jobtype-file.php:199
|
| 3706 |
-
#@ backwpup
|
| 3707 |
-
msgid "Extra folders to backup"
|
| 3708 |
-
msgstr "Weitere Verzeichnisse sichern"
|
| 3709 |
-
|
| 3710 |
-
#: inc/class-jobtype-file.php:206
|
| 3711 |
-
#@ backwpup
|
| 3712 |
-
msgid "Exclude from backup"
|
| 3713 |
-
msgstr "Nicht mitsichern"
|
| 3714 |
-
|
| 3715 |
-
#: inc/class-jobtype-file.php:210
|
| 3716 |
-
#@ backwpup
|
| 3717 |
-
msgid "Thumbnails in uploads"
|
| 3718 |
-
msgstr "Thumbnails in uploads"
|
| 3719 |
-
|
| 3720 |
-
#: inc/class-jobtype-file.php:214
|
| 3721 |
-
#@ backwpup
|
| 3722 |
-
msgid "All images with -???x???. will be excluded. Use a plugin like Regenerate Thumbnails to rebuild them after a restore."
|
| 3723 |
-
msgstr "Alle Bilder mit -???x??? im Dateinamen werden nicht mitgesichert. Benutze ein Plugin wir Regenerate Thumbnails um die Thumbnails wiederherzustellen."
|
| 3724 |
-
|
| 3725 |
-
#: inc/class-jobtype-file.php:218
|
| 3726 |
-
#@ backwpup
|
| 3727 |
-
msgid "Exclude files/folders from backup"
|
| 3728 |
-
msgstr "Datein/Verzeichnisse nicht mitsichern."
|
| 3729 |
-
|
| 3730 |
-
#: inc/class-jobtype-file.php:233
|
| 3731 |
-
#@ backwpup
|
| 3732 |
-
msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root."
|
| 3733 |
-
msgstr "Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom Root"
|
| 3734 |
-
|
| 3735 |
-
#: inc/class-jobtype-wpexp.php:59
|
| 3736 |
-
#@ backwpup
|
| 3737 |
-
msgid "XML Export file name"
|
| 3738 |
-
msgstr "XML Export Datei Name"
|
| 3739 |
-
|
| 3740 |
-
#: inc/class-jobtype-wpexp.php:67
|
| 3741 |
-
#: inc/class-jobtype-wpplugin.php:53
|
| 3742 |
-
#@ backwpup
|
| 3743 |
-
msgid "File compression"
|
| 3744 |
-
msgstr "Datei Koprimierung"
|
| 3745 |
-
|
| 3746 |
-
#: inc/class-jobtype-wpplugin.php:45
|
| 3747 |
-
#@ backwpup
|
| 3748 |
-
msgid "Plugin list file name"
|
| 3749 |
-
msgstr "Plugin listen Datei Name"
|
| 3750 |
-
|
| 3751 |
-
#: inc/class-page-backwpup.php:138
|
| 3752 |
-
#@ backwpup
|
| 3753 |
-
msgid "Check the installation"
|
| 3754 |
-
msgstr "Überprüfe die Installation"
|
| 3755 |
-
|
| 3756 |
-
#: inc/class-page-settings.php:150
|
| 3757 |
-
#@ backwpup
|
| 3758 |
-
msgid "Security"
|
| 3759 |
-
msgstr "Sicherheit"
|
| 3760 |
-
|
| 3761 |
-
#: inc/class-page-settings.php:151
|
| 3762 |
-
#@ backwpup
|
| 3763 |
-
msgid "Security option for BackWPup"
|
| 3764 |
-
msgstr "Sicherheitseinstellungen für BackWPup"
|
| 3765 |
-
|
| 3766 |
-
#: inc/class-page-settings.php:376
|
| 3767 |
-
#@ backwpup
|
| 3768 |
-
msgid "Server self connect:"
|
| 3769 |
-
msgstr "Verbindung zum Server selbst:"
|
| 3770 |
-
|
| 3771 |
-
#: inc/class-page-jobs.php:356
|
| 3772 |
-
#: inc/class-page-settings.php:379
|
| 3773 |
-
#, php-format
|
| 3774 |
-
#@ backwpup
|
| 3775 |
-
msgid "The HTTP response test get a error \"%s\""
|
| 3776 |
-
msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\""
|
| 3777 |
-
|
| 3778 |
-
#: inc/class-page-jobs.php:358
|
| 3779 |
-
#: inc/class-page-settings.php:381
|
| 3780 |
-
#, php-format
|
| 3781 |
-
#@ backwpup
|
| 3782 |
-
msgid "The HTTP response test get a false http status (%s)"
|
| 3783 |
-
msgstr "Der HTTP Antwort Test bekommt den falschen http Status (%s)"
|
| 3784 |
-
|
| 3785 |
-
#: inc/class-page-settings.php:393
|
| 3786 |
-
#@ backwpup
|
| 3787 |
-
msgid "Temp folder:"
|
| 3788 |
-
msgstr "Temp Verzeichnis:"
|
| 3789 |
-
|
| 3790 |
-
#: inc/class-page-settings.php:395
|
| 3791 |
-
#, php-format
|
| 3792 |
-
#@ backwpup
|
| 3793 |
-
msgid "Temp folder %s not exist and can't created."
|
| 3794 |
-
msgstr "Temp Verzeichnis %s existiert nicht und konnte nicht erstellt werden."
|
| 3795 |
-
|
| 3796 |
-
#: inc/class-page-settings.php:397
|
| 3797 |
-
#, php-format
|
| 3798 |
-
#@ backwpup
|
| 3799 |
-
msgid "Temp folder %s not writable."
|
| 3800 |
-
msgstr "Temp Verzeichnis %s ist nicht beschreibbar."
|
| 3801 |
-
|
| 3802 |
-
#: inc/class-page-settings.php:403
|
| 3803 |
-
#@ backwpup
|
| 3804 |
-
msgid "Logs folder:"
|
| 3805 |
-
msgstr "Logdateien Verzeichnis:"
|
| 3806 |
-
|
| 3807 |
-
#: inc/class-page-settings.php:405
|
| 3808 |
-
#, php-format
|
| 3809 |
-
#@ backwpup
|
| 3810 |
-
msgid "Logs folder %s not exist and can't created."
|
| 3811 |
-
msgstr "Logdateien Verzeichnis %s existiert nicht und kann nicht erstellt werden"
|
| 3812 |
-
|
| 3813 |
-
#: inc/class-page-settings.php:407
|
| 3814 |
-
#, php-format
|
| 3815 |
-
#@ backwpup
|
| 3816 |
-
msgid "Logs folder %s not writable."
|
| 3817 |
-
msgstr "Logdateien Verzeichnis %s nicht beschreibbar."
|
| 3818 |
-
|
| 3819 |
-
#: inc/class-page-settings.php:423
|
| 3820 |
-
#: inc/class-page-settings.php:425
|
| 3821 |
-
#@ backwpup
|
| 3822 |
-
msgid "Disabled WP Cron"
|
| 3823 |
-
msgstr "WP Cron abgeschaltet"
|
| 3824 |
-
|
| 3825 |
-
#: inc/class-job.php:282
|
| 3826 |
-
#, php-format
|
| 3827 |
-
#@ backwpup
|
| 3828 |
-
msgid "[INFO] Maximum script execution time is %1$d seconds"
|
| 3829 |
-
msgstr "[INFO] Maximale Script ausführungszeit ist %1$d Sekunden"
|
| 3830 |
-
|
| 3831 |
-
#: inc/class-page-jobs.php:212
|
| 3832 |
-
#, php-format
|
| 3833 |
-
#@ backwpup
|
| 3834 |
-
msgid "Runtime: %d seconds"
|
| 3835 |
-
msgstr "Ausführungszeit: %d Sekunden"
|
| 3836 |
-
|
| 3837 |
-
#: inc/class-job.php:623
|
| 3838 |
-
#@ backwpup
|
| 3839 |
-
msgid "Second process start terminated, because a other job is already running!"
|
| 3840 |
-
msgstr "Ein zweiter Prozess start wurde abgebrochen, weil der alte Auftrag noch läuft!"
|
| 3841 |
-
|
| 3842 |
-
#: inc/class-job.php:875
|
| 3843 |
-
#, php-format
|
| 3844 |
-
#@ backwpup
|
| 3845 |
-
msgid "Signal %d is sent to script!"
|
| 3846 |
-
msgstr "Signal %d wurde zum Script gesendet!"
|
| 3847 |
-
|
| 3848 |
-
#: inc/class-page-backups.php:312
|
| 3849 |
-
#: inc/class-page-jobs.php:210
|
| 3850 |
-
#: inc/class-page-logs.php:181
|
| 3851 |
-
#, php-format
|
| 3852 |
-
#@ backwpup
|
| 3853 |
-
msgid "%1$s at %2$s"
|
| 3854 |
-
msgstr "%1$s um %2$s"
|
| 3855 |
-
|
| 3856 |
-
#: inc/class-page-jobs.php:195
|
| 3857 |
-
#, php-format
|
| 3858 |
-
#@ backwpup
|
| 3859 |
-
msgid "%1$s at %2$s by WP-Cron"
|
| 3860 |
-
msgstr "%1$s um %2$s mit WP-Cron"
|
| 3861 |
-
|
| 3862 |
-
#: inc/class-admin.php:240
|
| 3863 |
-
#@ backwpup
|
| 3864 |
-
msgid "About"
|
| 3865 |
-
msgstr "Über"
|
| 3866 |
-
|
| 3867 |
-
#: inc/class-help.php:29
|
| 3868 |
-
#@ backwpup
|
| 3869 |
-
msgid "Manual"
|
| 3870 |
-
msgstr "Handbuch"
|
| 3871 |
-
|
| 3872 |
-
#: inc/class-job.php:280
|
| 3873 |
-
#@ backwpup
|
| 3874 |
-
msgid "[INFO] BackWPup job started form commandline interface"
|
| 3875 |
-
msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
|
| 3876 |
-
|
| 3877 |
-
#: inc/class-job.php:539
|
| 3878 |
-
#@ default
|
| 3879 |
-
msgid "Job Started"
|
| 3880 |
-
msgstr ""
|
| 3881 |
-
|
| 3882 |
-
#: inc/class-jobtype-dbdump.php:13
|
| 3883 |
-
#@ backwpup
|
| 3884 |
-
msgid "DB Backup"
|
| 3885 |
-
msgstr "Datenbank-Backup"
|
| 3886 |
-
|
| 3887 |
-
#: inc/class-page-about.php:75
|
| 3888 |
-
#, php-format
|
| 3889 |
-
#@ backwpup
|
| 3890 |
-
msgid "First <a href=\"%1$s\">set up a job</a>, and plan what you want to save. You can <a href=\"%2$s\">use the wizards</a> or the expert mode."
|
| 3891 |
-
msgstr "<a href=\"%1$s\">Erstellen Sie einen Auftrag</a>, dann planen Sie, was Sie sichern möchten. Sie können <a href=\"%2$s\">Assistenten benutzen</a> oder den Expertenmodus."
|
| 3892 |
-
|
| 3893 |
-
#: inc/class-page-about.php:85
|
| 3894 |
-
#@ backwpup
|
| 3895 |
-
msgid "First set up a job, and plan what you want to save."
|
| 3896 |
-
msgstr "Erstellen Sie einen Auftrag, dann planen Sie, was Sie sichern möchten."
|
| 3897 |
-
|
| 3898 |
-
#: inc/class-page-about.php:112
|
| 3899 |
-
#@ backwpup
|
| 3900 |
-
msgid "Save your database"
|
| 3901 |
-
msgstr "Sichern Sie Ihre Datenbank"
|
| 3902 |
-
|
| 3903 |
-
#: inc/class-page-about.php:115
|
| 3904 |
-
#@ backwpup
|
| 3905 |
-
msgid "Save your database regularly"
|
| 3906 |
-
msgstr "Sichern Sie Ihre Datenbank regelmäßig"
|
| 3907 |
-
|
| 3908 |
-
#: inc/class-page-about.php:121
|
| 3909 |
-
#: inc/class-page-about.php:125
|
| 3910 |
-
#@ backwpup
|
| 3911 |
-
msgid "WordPress XML Export"
|
| 3912 |
-
msgstr "WordPress-XML-Export"
|
| 3913 |
-
|
| 3914 |
-
#: inc/class-page-about.php:122
|
| 3915 |
-
#@ backwpup
|
| 3916 |
-
msgid "You can choose the built-in WordPress export format in addition or exclusive to save your data. This works in automated backups too of course. The advantage is: you can import these files into a blog with the regular WordPress importer."
|
| 3917 |
-
msgstr "Sie können das interne WordPress-Export-Format zusätzlich oder ausschließlich wählen, um Ihre Daten zu sichern. Das funktioniert natürlich auch in automatischen Backups. Der Vorteil: Sie können dieses Format mit dem normalen WordPress-Importer-Plugin importieren."
|
| 3918 |
-
|
| 3919 |
-
#: inc/class-page-about.php:130
|
| 3920 |
-
#@ backwpup
|
| 3921 |
-
msgid "Save all data from the webserver"
|
| 3922 |
-
msgstr "Sichern Sie alle Daten vom Webserver"
|
| 3923 |
-
|
| 3924 |
-
#: inc/class-page-about.php:133
|
| 3925 |
-
#@ backwpup
|
| 3926 |
-
msgid "Save all files"
|
| 3927 |
-
msgstr "Sichern Sie alle Dateien"
|
| 3928 |
-
|
| 3929 |
-
#: inc/class-page-about.php:139
|
| 3930 |
-
#: inc/class-page-about.php:143
|
| 3931 |
-
#@ backwpup
|
| 3932 |
-
msgid "Security!"
|
| 3933 |
-
msgstr "Sicherheit!"
|
| 3934 |
-
|
| 3935 |
-
#: inc/class-page-about.php:140
|
| 3936 |
-
#@ backwpup
|
| 3937 |
-
msgid "By default everything is encrypted: connections to external services, local files and access to directories."
|
| 3938 |
-
msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
|
| 3939 |
-
|
| 3940 |
-
#: inc/class-page-about.php:148
|
| 3941 |
-
#: inc/class-page-about.php:151
|
| 3942 |
-
#@ backwpup
|
| 3943 |
-
msgid "Cloud Support"
|
| 3944 |
-
msgstr "Cloud-Support"
|
| 3945 |
-
|
| 3946 |
-
#: inc/class-page-about.php:152
|
| 3947 |
-
#@ backwpup
|
| 3948 |
-
msgid "BackWPup supports multiple cloud services in parallel. This ensures the backups are redundant."
|
| 3949 |
-
msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
|
| 3950 |
-
|
| 3951 |
-
#: inc/class-page-about.php:342
|
| 3952 |
-
#@ backwpup
|
| 3953 |
-
msgid "Backup now!"
|
| 3954 |
-
msgstr "Sichern Sie Ihre Daten jetzt!"
|
| 3955 |
-
|
| 3956 |
-
#: inc/class-page-editjob.php:628
|
| 3957 |
-
#@ backwpup
|
| 3958 |
-
msgid "Start job with CLI"
|
| 3959 |
-
msgstr "Auftrag per CLI starten"
|
| 3960 |
-
|
| 3961 |
-
#: inc/class-wp-cli.php:40
|
| 3962 |
-
#@ backwpup
|
| 3963 |
-
msgid "Nothing to abort!"
|
| 3964 |
-
msgstr "Es gibt nichts abzubrechen!"
|
| 3965 |
-
|
| 3966 |
-
#: inc/class-wp-cli.php:97
|
| 3967 |
-
#: inc/class-wp-cli.php:118
|
| 3968 |
-
#, php-format
|
| 3969 |
-
#@ backwpup
|
| 3970 |
-
msgid "ID: %1$d Name: %2$s"
|
| 3971 |
-
msgstr "ID: %1$d Name: %2$s"
|
| 3972 |
-
|
| 3973 |
-
#: inc/class-wp-cli.php:119
|
| 3974 |
-
#, php-format
|
| 3975 |
-
#@ backwpup
|
| 3976 |
-
msgid "Warnings: %1$d Errors: %2$d"
|
| 3977 |
-
msgstr "Warnungen: %1$d Fehler: %2$d"
|
| 3978 |
-
|
| 3979 |
-
#: inc/features/class-jobtype-dbdump-pro.php:183
|
| 3980 |
-
#@ backwpup
|
| 3981 |
-
msgid "Path to <em>mysqldump</em> file"
|
| 3982 |
-
msgstr "Pfad zum <em>mysqldump</em>"
|
| 3983 |
-
|
| 3984 |
-
#: inc/features/class-wizard-job.php:13
|
| 3985 |
-
#@ backwpup
|
| 3986 |
-
msgid "Create a job"
|
| 3987 |
-
msgstr "Auftrag erstellen"
|
| 3988 |
-
|
| 3989 |
-
#: inc/features/class-wizard-systemtest.php:54
|
| 3990 |
-
#@ backwpup
|
| 3991 |
-
msgid "Test if BackWPup can work without problems."
|
| 3992 |
-
msgstr "Prüfen Sie, ob BackWPup problemlos laufen kann."
|
| 3993 |
-
|
| 3994 |
-
#: inc/features/class-wizard-systemtest.php:110
|
| 3995 |
-
#, php-format
|
| 3996 |
-
#@ backwpup
|
| 3997 |
-
msgctxt "%1 = extension name, %2 = file suffix"
|
| 3998 |
-
msgid "We recommend to install the %1$s extension to generate %2$s archives."
|
| 3999 |
-
msgstr "Wir empfehlen, die Erweiterung %1$s für %2$s-Archive zu installieren."
|
| 4000 |
-
|
| 4001 |
-
#: inc/features/class-wizard-systemtest.php:133
|
| 4002 |
-
#, php-format
|
| 4003 |
-
#@ backwpup
|
| 4004 |
-
msgctxt "Link to PHP manual"
|
| 4005 |
-
msgid "Please disable the deprecated <a href=\"%s\">PHP safe mode</a>."
|
| 4006 |
-
msgstr "Bitte deaktiviere den veralteten <a href=\"%s\">PHP-safe-mode</a>."
|
| 4007 |
-
|
| 4008 |
-
#: inc/features/class-wizard-systemtest.php:141
|
| 4009 |
-
#@ backwpup
|
| 4010 |
-
msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
|
| 4011 |
-
msgstr "Wir empfehlen, die PHP-Erweiterung FTP zu installieren, um das Speicherziel FTP zu verwenden."
|
| 4012 |
-
|
| 4013 |
-
#: inc/class-page-jobs.php:322
|
| 4014 |
-
#, php-format
|
| 4015 |
-
#@ backwpup
|
| 4016 |
-
msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper write permissions."
|
| 4017 |
-
msgstr "Das temporäre Verzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 4018 |
-
|
| 4019 |
-
#: inc/class-page-jobs.php:331
|
| 4020 |
-
#, php-format
|
| 4021 |
#@ backwpup
|
| 4022 |
msgid "Logs folder %s does not exist and cannot be created. Please create it and set proper write permissions."
|
| 4023 |
msgstr "Das Logverzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 4024 |
|
| 4025 |
-
#: inc/features/class-wizard-systemtest.php:179
|
| 4026 |
-
#, php-format
|
| 4027 |
-
#@ backwpup
|
| 4028 |
-
msgid "The HTTP response test result is an error: \"%s\"."
|
| 4029 |
-
msgstr "Das Ergebnis des HTTP-Tests ist ein Fehler: %s"
|
| 4030 |
-
|
| 4031 |
-
#: inc/features/class-wizard-systemtest.php:183
|
| 4032 |
-
#, php-format
|
| 4033 |
-
#@ backwpup
|
| 4034 |
-
msgid "The HTTP response test result is a wrong HTTP status: %s. It should be the staus 200."
|
| 4035 |
-
msgstr "Das Ergebnis des HTTP-Tests ist ein falscher HTTP-Status: %s. Es sollte der Status 200 sein."
|
| 4036 |
-
|
| 4037 |
-
#: inc/features/class-wizard-systemtest.php:201
|
| 4038 |
-
#@ backwpup
|
| 4039 |
-
msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs."
|
| 4040 |
-
msgstr "WP-Cron scheint nicht zu funktionieren. Es wird aber gebraucht, damit geplante Aufträge ausgeführt werden."
|
| 4041 |
-
|
| 4042 |
-
#: inc/features/class-wizard-systemtest.php:206
|
| 4043 |
-
#@ backwpup
|
| 4044 |
-
msgid "All tests passed without errors."
|
| 4045 |
-
msgstr "Alle Tests liefen fehlerfrei."
|
| 4046 |
-
|
| 4047 |
-
#: inc/features/class-wizard-systemtest.php:209
|
| 4048 |
-
#@ backwpup
|
| 4049 |
-
msgid "There is no error, but some warnings. BackWPup will work, but with limitations."
|
| 4050 |
-
msgstr "Es gibt keine Fehler, aber einige Warnungen. BackWPup wird eingeschränkt funktionieren."
|
| 4051 |
-
|
| 4052 |
-
#: inc/features/class-wizard-systemtest.php:212
|
| 4053 |
-
#@ backwpup
|
| 4054 |
-
msgid "There are errors. Please correct them, or BackWPup cannot work."
|
| 4055 |
-
msgstr "Es gab Fehler. Bitte korrigieren Sie diese, damit BackWPup arbeiten kann."
|
| 4056 |
-
|
| 4057 |
#: inc/class-destination-ftp.php:93
|
| 4058 |
#@ backwpup
|
| 4059 |
msgid "FTP specific settings"
|
|
@@ -4158,14 +3189,7 @@ msgstr "Bei Schritt: %s"
|
|
| 4158 |
msgid "Last message: %s"
|
| 4159 |
msgstr "Letzte Nachricht: %s"
|
| 4160 |
|
| 4161 |
-
#: inc/class-admin.php:
|
| 4162 |
-
#, php-format
|
| 4163 |
-
#@ backwpup
|
| 4164 |
-
msgctxt "link to Inpsyde.com, link text: Inpsyde GmbH"
|
| 4165 |
-
msgid "A project of %s"
|
| 4166 |
-
msgstr "Ein Projekt der %s"
|
| 4167 |
-
|
| 4168 |
-
#: inc/class-admin.php:398
|
| 4169 |
#, php-format
|
| 4170 |
#@ backwpup
|
| 4171 |
msgctxt "developer name, link text: Daniel Hüsken"
|
|
@@ -4230,19 +3254,19 @@ msgstr "Maximales WordPress-Memory-Limit"
|
|
| 4230 |
msgid "https://marketpress.com/product/backwpup-pro/"
|
| 4231 |
msgstr "https://marketpress.de/product/backwpup-pro/"
|
| 4232 |
|
| 4233 |
-
#: inc/class-admin.php:
|
| 4234 |
#: inc/class-help.php:29
|
| 4235 |
#@ backwpup
|
| 4236 |
msgid "https://marketpress.com/documentation/backwpup-pro/"
|
| 4237 |
msgstr "https://marketpress.de/dokumentation/backwpup-pro/"
|
| 4238 |
|
| 4239 |
-
#: inc/class-admin.php:
|
| 4240 |
#: inc/class-help.php:26
|
| 4241 |
#@ backwpup
|
| 4242 |
msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/"
|
| 4243 |
msgstr "https://marketpress.de/support/forum/plugins/backwpup-pro/"
|
| 4244 |
|
| 4245 |
-
#: inc/class-admin.php:
|
| 4246 |
#: inc/class-help.php:26
|
| 4247 |
#@ backwpup
|
| 4248 |
msgid "Pro Support"
|
|
@@ -4278,20 +3302,6 @@ msgstr "Informationen"
|
|
| 4278 |
msgid "Compress log files with GZip."
|
| 4279 |
msgstr "Komprimiere Logdateien mit Gzip."
|
| 4280 |
|
| 4281 |
-
#: inc/features/class-page-wizard.php:233
|
| 4282 |
-
#, php-format
|
| 4283 |
-
#@ backwpup
|
| 4284 |
-
msgctxt "Plugin Name"
|
| 4285 |
-
msgid "%s Wizards"
|
| 4286 |
-
msgstr "%s-Assistenten"
|
| 4287 |
-
|
| 4288 |
-
#: inc/features/class-page-wizard.php:272
|
| 4289 |
-
#, php-format
|
| 4290 |
-
#@ backwpup
|
| 4291 |
-
msgctxt "Plugin Name"
|
| 4292 |
-
msgid "%s Wizard:"
|
| 4293 |
-
msgstr "%s-Assistent:"
|
| 4294 |
-
|
| 4295 |
#: inc/class-page-backwpup.php:92
|
| 4296 |
#@ backwpup
|
| 4297 |
msgid "Use the short links in the <b>First steps</b> box to schedule backup plans."
|
|
@@ -4307,11 +3317,6 @@ msgstr "Die Einstellungen wurden zurückgesetzt."
|
|
| 4307 |
msgid "Reset all settings to default"
|
| 4308 |
msgstr "Alle Einstellungen zurücksetzen"
|
| 4309 |
|
| 4310 |
-
#: inc/features/class-page-wizard.php:345
|
| 4311 |
-
#@ backwpup
|
| 4312 |
-
msgid "Back to overview"
|
| 4313 |
-
msgstr "Zurück zur Übersicht"
|
| 4314 |
-
|
| 4315 |
#: inc/class-jobtype-file.php:225
|
| 4316 |
#@ backwpup
|
| 4317 |
msgid "Special option"
|
|
@@ -4322,12 +3327,6 @@ msgstr "Spezialoption"
|
|
| 4322 |
msgid "Include special files"
|
| 4323 |
msgstr "Spezielle Dateien einschließen"
|
| 4324 |
|
| 4325 |
-
#: inc/features/class-jobtype-dbdump-pro.php:754
|
| 4326 |
-
#, php-format
|
| 4327 |
-
#@ backwpup
|
| 4328 |
-
msgid "Dump database structure \"%s\""
|
| 4329 |
-
msgstr "Datenbank-Backup der Tabellenstruktur %s"
|
| 4330 |
-
|
| 4331 |
#: backwpup.php:42
|
| 4332 |
#@ backwpup
|
| 4333 |
msgid "BackWPup requires PHP version 5.2.6 or greater and WordPress 3.2 or greater."
|
|
@@ -4398,36 +3397,6 @@ msgstr "Backup wurde erstellt."
|
|
| 4398 |
msgid "Cannot open dump file"
|
| 4399 |
msgstr "Konnte Backup nicht öffnen"
|
| 4400 |
|
| 4401 |
-
#: inc/features/class-documentation.php:231
|
| 4402 |
-
#: inc/features/class-documentation.php:347
|
| 4403 |
-
#@ backwpup
|
| 4404 |
-
msgid "Could not find content for this page. Please try again later."
|
| 4405 |
-
msgstr "Konnte den Inhalt der Seite nicht finden. Bitte versuchen Sie es später."
|
| 4406 |
-
|
| 4407 |
-
#: inc/features/class-jobtype-dbdump-pro.php:177
|
| 4408 |
-
#@ backwpup
|
| 4409 |
-
msgid "SQL File"
|
| 4410 |
-
msgstr "SQL-Datei"
|
| 4411 |
-
|
| 4412 |
-
#: inc/features/class-jobtype-dbdump-pro.php:178
|
| 4413 |
-
#@ backwpup
|
| 4414 |
-
msgid "XML File (phpMyAdmin schema)"
|
| 4415 |
-
msgstr "XML-Datei (phpMyAdmin-Schema9"
|
| 4416 |
-
|
| 4417 |
-
#: inc/features/class-jobtype-dbdump-pro.php:599
|
| 4418 |
-
#, php-format
|
| 4419 |
-
#@ backwpup
|
| 4420 |
-
msgctxt "Executed shell_exec() command"
|
| 4421 |
-
msgid "CLI Exec: %s"
|
| 4422 |
-
msgstr "CLI-Exec: %s"
|
| 4423 |
-
|
| 4424 |
-
#: inc/features/class-jobtype-dbdump-pro.php:602
|
| 4425 |
-
#, php-format
|
| 4426 |
-
#@ backwpup
|
| 4427 |
-
msgctxt "Output of a shell_exec()"
|
| 4428 |
-
msgid "CLI Exec output: %s"
|
| 4429 |
-
msgstr "CLI-Exec-Ergebnis: %s"
|
| 4430 |
-
|
| 4431 |
#: inc/class-create-archive.php:112
|
| 4432 |
#, php-format
|
| 4433 |
#@ backwpup
|
|
@@ -4462,19 +3431,11 @@ msgctxt "Database Charset"
|
|
| 4462 |
msgid "Cannot set DB charset to %s"
|
| 4463 |
msgstr "Kann Datenbank-Zeichenkodierung nicht auf %s setzen."
|
| 4464 |
|
| 4465 |
-
#: inc/class-page-backwpup.php:
|
| 4466 |
#@ backwpup
|
| 4467 |
msgid "One click backup"
|
| 4468 |
msgstr "Ein-Klick-Backup"
|
| 4469 |
|
| 4470 |
-
#: inc/features/class-documentation.php:220
|
| 4471 |
-
#: inc/features/class-documentation.php:336
|
| 4472 |
-
#, php-format
|
| 4473 |
-
#@ backwpup
|
| 4474 |
-
msgctxt "%s = Remote Code"
|
| 4475 |
-
msgid "Could not connect to remote host, code %d. Please try again later."
|
| 4476 |
-
msgstr "Konnte nicht zum Remote-Host verbinden, code: %s. Bitte versuchen Sie es später."
|
| 4477 |
-
|
| 4478 |
#: inc/class-create-archive.php:226
|
| 4479 |
#, php-format
|
| 4480 |
#@ backwpup
|
|
@@ -4482,25 +3443,11 @@ msgctxt "File path to add to archive"
|
|
| 4482 |
msgid "File %s does not exist or is not readable"
|
| 4483 |
msgstr "Die Datei %s existiert nicht, oder sie ist nicht lesbar."
|
| 4484 |
|
| 4485 |
-
#: inc/class-page-backwpup.php:
|
| 4486 |
#@ backwpup
|
| 4487 |
msgid "Download database backup"
|
| 4488 |
msgstr "Datenbank-Backup herunterladen"
|
| 4489 |
|
| 4490 |
-
#: inc/features/class-auto-update.php:345
|
| 4491 |
-
#, php-format
|
| 4492 |
-
#@ backwpup
|
| 4493 |
-
msgctxt "%s = plugin name"
|
| 4494 |
-
msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated. Please insert a valid key in the MarketPress Dashboard. Or if you want to add an other valid code use the form below."
|
| 4495 |
-
msgstr "Ihr Lizenzschlüssel für das Plugin %s ist ungültig. Die automatische Aktualisierung wurde abgeschaltet. Bitte geben Sie einen gültigen Schlüssel im MarketPress-Dashboard ein. Wenn Sie einen anderen gültigen Schlüssel benutzen wollen, geben Sie diesen ins folgende Formular ein."
|
| 4496 |
-
|
| 4497 |
-
#: inc/features/class-auto-update.php:368
|
| 4498 |
-
#, php-format
|
| 4499 |
-
#@ backwpup
|
| 4500 |
-
msgctxt "%s = plugin name"
|
| 4501 |
-
msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated."
|
| 4502 |
-
msgstr "Der Lizenzschlüssel für das Plugin %s ist ungültig. Die automatische Aktualisierung wurde abgeschaltet."
|
| 4503 |
-
|
| 4504 |
#: inc/class-job.php:268
|
| 4505 |
#, php-format
|
| 4506 |
#@ backwpup
|
|
@@ -4518,13 +3465,13 @@ msgstr "Bitte aktivieren Sie Ihre Lizenz."
|
|
| 4518 |
msgid "Please go to your plugin page and active the license to have the autoupdates enabled."
|
| 4519 |
msgstr "Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um automatische Aktualisierungen zu aktivieren."
|
| 4520 |
|
| 4521 |
-
#: inc/class-admin.php:
|
| 4522 |
#: inc/class-help.php:28
|
| 4523 |
#@ backwpup
|
| 4524 |
msgid "http://wordpress.org/support/plugin/backwpup/"
|
| 4525 |
msgstr "http://wordpress.org/support/plugin/backwpup/"
|
| 4526 |
|
| 4527 |
-
#: inc/class-admin.php:
|
| 4528 |
#: inc/class-help.php:28
|
| 4529 |
#@ backwpup
|
| 4530 |
msgid "Support"
|
|
@@ -4726,7 +3673,9 @@ msgstr "<strong>Integration einer dynamischen Dokumentation</strong>"
|
|
| 4726 |
msgid "<strong>Automatic update from MarketPress</strong>"
|
| 4727 |
msgstr "<strong>Automatische Aktualisierung durch MarketPress</strong>"
|
| 4728 |
|
|
|
|
| 4729 |
#: inc/class-page-about.php:335
|
|
|
|
| 4730 |
#@ backwpup
|
| 4731 |
msgid "http://marketpress.com/product/backwpup-pro/"
|
| 4732 |
msgstr "http://marketpress.de/product/backwpup-pro/"
|
|
@@ -4748,8 +3697,6 @@ msgstr "Benutze Multipart Upload zu hochladen der Datei"
|
|
| 4748 |
|
| 4749 |
#: inc/class-destination-s3-v1.php:395
|
| 4750 |
#: inc/class-destination-s3.php:392
|
| 4751 |
-
#: inc/features/class-destination-s3-pro.php:164
|
| 4752 |
-
#: inc/features/class-destination-s3-v1-pro.php:173
|
| 4753 |
#, php-format
|
| 4754 |
#@ backwpup
|
| 4755 |
msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
|
|
@@ -4817,22 +3764,16 @@ msgstr "Auftrags lLog"
|
|
| 4817 |
msgid "The file name of an archive cannot be empty."
|
| 4818 |
msgstr "Der Dateiname eines Archivs kann nicht leer sein."
|
| 4819 |
|
| 4820 |
-
#: inc/class-admin.php:
|
| 4821 |
-
#: inc/class-admin.php:
|
| 4822 |
#@ backwpup
|
| 4823 |
msgid "Cheating, huh?"
|
| 4824 |
msgstr "Mogeln, wie?"
|
| 4825 |
|
| 4826 |
-
#: inc/class-admin.php:431
|
| 4827 |
-
#, php-format
|
| 4828 |
-
#@ backwpup
|
| 4829 |
-
msgid "You have activated or updated BackWPup. Please check <a href=\"%s\">this page</a>."
|
| 4830 |
-
msgstr "Du hast BackWPup aktiviert oder aktualisiert. Bitte gehe zu <a href=\"%s\">dieser Seite</a>."
|
| 4831 |
-
|
| 4832 |
#: inc/class-adminbar.php:69
|
| 4833 |
#@ backwpupadminbar
|
| 4834 |
msgid "Now Running"
|
| 4835 |
-
msgstr ""
|
| 4836 |
|
| 4837 |
#: inc/class-create-archive.php:79
|
| 4838 |
#, php-format
|
|
@@ -4846,11 +3787,6 @@ msgstr "Ordner %s für Archiv nicht gefunden"
|
|
| 4846 |
msgid "Aborted, because no progress for 2 hours!"
|
| 4847 |
msgstr "Abgebrochen, da seit 2 Stunden kein Fortschritt!"
|
| 4848 |
|
| 4849 |
-
#: inc/features/class-destination-dropbox-pro.php:36
|
| 4850 |
-
#@ backwpup
|
| 4851 |
-
msgid "Dropbox authentication not approved!"
|
| 4852 |
-
msgstr "Dropbox-Authentifizierung nicht angenommen!"
|
| 4853 |
-
|
| 4854 |
#: inc/class-destination-dropbox.php:238
|
| 4855 |
#, php-format
|
| 4856 |
#@ backwpup
|
|
@@ -4858,7 +3794,6 @@ msgid "%d. Try to send backup file to Dropbox …"
|
|
| 4858 |
msgstr "%d. Versuche, das Backup zur Dropbox zu senden …"
|
| 4859 |
|
| 4860 |
#: inc/class-destination-dropbox.php:246
|
| 4861 |
-
#: inc/features/class-destination-dropbox-pro.php:137
|
| 4862 |
#, php-format
|
| 4863 |
#@ backwpup
|
| 4864 |
msgid "Authenticated with Dropbox of user %s"
|
|
@@ -4870,7 +3805,6 @@ msgid "Your Dropbox appears to be full."
|
|
| 4870 |
msgstr "Deine Dropbox scheint voll zu sein."
|
| 4871 |
|
| 4872 |
#: inc/class-destination-dropbox.php:256
|
| 4873 |
-
#: inc/features/class-destination-dropbox-pro.php:141
|
| 4874 |
#, php-format
|
| 4875 |
#@ backwpup
|
| 4876 |
msgid "%s available on your Dropbox"
|
|
@@ -4911,7 +3845,6 @@ msgid "Backup sent by e-mail"
|
|
| 4911 |
msgstr "Backup als E-Mail versendet"
|
| 4912 |
|
| 4913 |
#: inc/class-destination-email.php:55
|
| 4914 |
-
#: inc/features/class-destination-email-pro.php:13
|
| 4915 |
#@ backwpup
|
| 4916 |
msgid "E-Mail Address"
|
| 4917 |
msgstr "E-Mail-Adresse"
|
|
@@ -4922,15 +3855,12 @@ msgid "E-Mail address"
|
|
| 4922 |
msgstr "E-Mail-Adresse"
|
| 4923 |
|
| 4924 |
#: inc/class-destination-email.php:62
|
| 4925 |
-
#: inc/features/class-destination-email-pro.php:20
|
| 4926 |
#@ backwpup
|
| 4927 |
msgid "E-Mail address to which Backups are sent."
|
| 4928 |
msgstr "E-Mail-Adresse, zu der Backups gesendet werden."
|
| 4929 |
|
| 4930 |
#: inc/class-destination-email.php:66
|
| 4931 |
#: inc/class-destination-email.php:68
|
| 4932 |
-
#: inc/features/class-destination-email-pro.php:24
|
| 4933 |
-
#: inc/features/class-destination-email-pro.php:26
|
| 4934 |
#@ backwpup
|
| 4935 |
msgid "Send test e-mail"
|
| 4936 |
msgstr "Test-E-Mail senden"
|
|
@@ -4941,15 +3871,12 @@ msgid "Send e-mail settings"
|
|
| 4941 |
msgstr "Absende-Einstellungen für E-Mails"
|
| 4942 |
|
| 4943 |
#: inc/class-destination-email.php:78
|
| 4944 |
-
#: inc/features/class-destination-email-pro.php:36
|
| 4945 |
#@ backwpup
|
| 4946 |
msgid "Maximum file size to be included in an e-mail. 0 = unlimited"
|
| 4947 |
msgstr "Maximale Dateigröße für den E-Mail-Versand. 0 = unbegrenzt"
|
| 4948 |
|
| 4949 |
#: inc/class-destination-email.php:82
|
| 4950 |
#: inc/class-destination-email.php:86
|
| 4951 |
-
#: inc/features/class-destination-email-pro.php:40
|
| 4952 |
-
#: inc/features/class-destination-email-pro.php:44
|
| 4953 |
#@ backwpup
|
| 4954 |
msgid "Sender e-mail address"
|
| 4955 |
msgstr "E-Mail-Adresse des Absenders"
|
|
@@ -5157,15 +4084,12 @@ msgid "Starting upload to S3 Service …"
|
|
| 5157 |
msgstr "Upload zum S3 Service begonnen …"
|
| 5158 |
|
| 5159 |
#: inc/class-destination-sugarsync.php:44
|
| 5160 |
-
#: inc/features/class-destination-sugarsync-pro.php:14
|
| 5161 |
#@ backwpup
|
| 5162 |
msgid "E-Mail address:"
|
| 5163 |
msgstr "E-Mail-Adresse"
|
| 5164 |
|
| 5165 |
#: inc/class-destination-sugarsync.php:56
|
| 5166 |
#: inc/class-destination-sugarsync.php:151
|
| 5167 |
-
#: inc/features/class-destination-sugarsync-pro.php:24
|
| 5168 |
-
#: inc/features/class-destination-sugarsync-pro.php:93
|
| 5169 |
#@ backwpup
|
| 5170 |
msgid "Create Sugarsync account"
|
| 5171 |
msgstr "SugarSync-Konto erstellen"
|
|
@@ -5228,7 +4152,6 @@ msgid "Creates an .sql database dump file"
|
|
| 5228 |
msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)"
|
| 5229 |
|
| 5230 |
#: inc/class-jobtype-dbdump.php:155
|
| 5231 |
-
#: inc/features/class-jobtype-dbdump-pro.php:451
|
| 5232 |
#, php-format
|
| 5233 |
#@ backwpup
|
| 5234 |
msgid "%d. Try to dump database …"
|
|
@@ -5305,7 +4228,6 @@ msgid "All plugin information:"
|
|
| 5305 |
msgstr "Alle Plugin-Informationen"
|
| 5306 |
|
| 5307 |
#: inc/class-mysqldump.php:90
|
| 5308 |
-
#: inc/features/class-jobtype-dbdump-pro.php:666
|
| 5309 |
#, php-format
|
| 5310 |
#@ backwpup
|
| 5311 |
msgid "Cannot connect to MySQL database %1$d: %2$s"
|
|
@@ -5364,17 +4286,17 @@ msgstr ""
|
|
| 5364 |
msgid "Sorry, you don't have permissions to do that."
|
| 5365 |
msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion."
|
| 5366 |
|
| 5367 |
-
#: inc/class-page-backwpup.php:
|
| 5368 |
#@ backwpup
|
| 5369 |
msgid "First Steps"
|
| 5370 |
msgstr "Erste Schritte"
|
| 5371 |
|
| 5372 |
-
#: inc/class-page-backwpup.php:
|
| 5373 |
#@ backwpup
|
| 5374 |
msgid "Generate a database backup of WordPress tables and download it right away!"
|
| 5375 |
msgstr "Generieren Sie ein Datenbank-Backup der WordPress-Tabellen und laden Sie es gleich herunter!"
|
| 5376 |
|
| 5377 |
-
#: inc/class-page-backwpup.php:
|
| 5378 |
#@ backwpup
|
| 5379 |
msgid "OK"
|
| 5380 |
msgstr "OK"
|
|
@@ -5390,7 +4312,6 @@ msgid "Job Tasks"
|
|
| 5390 |
msgstr "Auftragsdetails"
|
| 5391 |
|
| 5392 |
#: inc/class-page-editjob.php:433
|
| 5393 |
-
#: inc/features/class-wizard-job.php:225
|
| 5394 |
#@ backwpup
|
| 5395 |
msgid "This job is a …"
|
| 5396 |
msgstr "Dieser Auftrag ist ein …"
|
|
@@ -5673,269 +4594,6 @@ msgstr "Laufender Auftrag"
|
|
| 5673 |
msgid "Running job"
|
| 5674 |
msgstr "Laufender Auftrag"
|
| 5675 |
|
| 5676 |
-
#: inc/features/class-destination-dropbox-pro.php:195
|
| 5677 |
-
#, php-format
|
| 5678 |
-
#@ backwpup
|
| 5679 |
-
msgid "Folder %s deleted from Dropbox"
|
| 5680 |
-
msgstr "Ordner %s aus der Dropbox gelöscht"
|
| 5681 |
-
|
| 5682 |
-
#: inc/features/class-destination-email-pro.php:16
|
| 5683 |
-
#@ backwpup
|
| 5684 |
-
msgid "E-mail Address"
|
| 5685 |
-
msgstr "E-Mail-Adresse"
|
| 5686 |
-
|
| 5687 |
-
#: inc/features/class-destination-email-pro.php:31
|
| 5688 |
-
#@ backwpup
|
| 5689 |
-
msgid "E-Mail settings"
|
| 5690 |
-
msgstr "E-Mail-Einstellungen"
|
| 5691 |
-
|
| 5692 |
-
#: inc/features/class-destination-folder-pro.php:20
|
| 5693 |
-
#@ backwpup
|
| 5694 |
-
msgid "Absolute path to folder for backup files:"
|
| 5695 |
-
msgstr "Absoluter Pfad zum Ordner für Backup-Dateien:"
|
| 5696 |
-
|
| 5697 |
-
#: inc/features/class-destination-folder-pro.php:67
|
| 5698 |
-
#, php-format
|
| 5699 |
-
#@ backwpup
|
| 5700 |
-
msgid "%d. Try to sync files to folder …"
|
| 5701 |
-
msgstr "%d. Synchronisiere zum Ordner …"
|
| 5702 |
-
|
| 5703 |
-
#: inc/features/class-destination-folder-pro.php:75
|
| 5704 |
-
#@ backwpup
|
| 5705 |
-
msgid "Copy changed files to folder"
|
| 5706 |
-
msgstr "Kopiere geänderte Dateien in Ordner"
|
| 5707 |
-
|
| 5708 |
-
#: inc/features/class-destination-folder-pro.php:99
|
| 5709 |
-
#@ backwpup
|
| 5710 |
-
msgid "Delete not existing files from folder"
|
| 5711 |
-
msgstr "Lösche nicht vorhandene Dateien aus Ordner"
|
| 5712 |
-
|
| 5713 |
-
#: inc/features/class-destination-folder-pro.php:102
|
| 5714 |
-
#, php-format
|
| 5715 |
-
#@ backwpup
|
| 5716 |
-
msgid "Extra file %s copied"
|
| 5717 |
-
msgstr "Zusätzliche Datei %s kopiert"
|
| 5718 |
-
|
| 5719 |
-
#: inc/features/class-destination-folder-pro.php:114
|
| 5720 |
-
#, php-format
|
| 5721 |
-
#@ backwpup
|
| 5722 |
-
msgid "File %s deleted from folder"
|
| 5723 |
-
msgstr "Datei %s aus Ordner gelöscht"
|
| 5724 |
-
|
| 5725 |
-
#: inc/features/class-destination-ftp-pro.php:29
|
| 5726 |
-
#@ backwpup
|
| 5727 |
-
msgid "Folder on server:"
|
| 5728 |
-
msgstr "Ordner auf dem Server:"
|
| 5729 |
-
|
| 5730 |
-
#: inc/features/class-destination-rsc-pro.php:130
|
| 5731 |
-
#, php-format
|
| 5732 |
-
#@ backwpup
|
| 5733 |
-
msgid "%d. Trying to sync files to Rackspace cloud …"
|
| 5734 |
-
msgstr "%d. Synchronisiere Dateien zur Rackspace cloud …"
|
| 5735 |
-
|
| 5736 |
-
#: inc/features/class-destination-rsc-pro.php:154
|
| 5737 |
-
#@ backwpup
|
| 5738 |
-
msgid "Retrieving files list from Rackspace Cloud."
|
| 5739 |
-
msgstr "Empfange Datei-Liste aus der Rackspace Cloud."
|
| 5740 |
-
|
| 5741 |
-
#: inc/features/class-destination-rsc-pro.php:209
|
| 5742 |
-
#@ backwpup
|
| 5743 |
-
msgid "Delete nonexistent files from Rackspace Cloud."
|
| 5744 |
-
msgstr "Nicht vorhandene Dateien von der Rackspace Cloud löschen."
|
| 5745 |
-
|
| 5746 |
-
#: inc/features/class-destination-s3-pro.php:36
|
| 5747 |
-
#: inc/features/class-destination-s3-v1-pro.php:36
|
| 5748 |
-
#@ backwpup
|
| 5749 |
-
msgid "or set an S3 Server URL:"
|
| 5750 |
-
msgstr "oder setze eine S3-Server-URL:"
|
| 5751 |
-
|
| 5752 |
-
#: inc/features/class-jobtype-dbdump-pro.php:188
|
| 5753 |
-
#@ backwpup
|
| 5754 |
-
msgid "Path to mysqldump file, so a backup can be made with it. If it is correct and <em>shell_exec</em> is active, the backup will be generated with a system command. If <em>shell_exec</em> ist not active, this is disabled"
|
| 5755 |
-
msgstr "Pfad zur MySQL-Datei, mit der ein Backup erstellt werden kann. Wenn es korrekt ist und <em>shell_exec</em> funktioniert, kann das Backup mit einem Systemkommando ausgelöst werden. Dies wird deaktiviert, wenn <em>shell_exec</em> nicht verfügbar ist."
|
| 5756 |
-
|
| 5757 |
-
#: inc/features/class-jobtype-dbdump-pro.php:532
|
| 5758 |
-
#, php-format
|
| 5759 |
-
#@ backwpup
|
| 5760 |
-
msgid "%d. Try to dump MySQL system …"
|
| 5761 |
-
msgstr "%d. Erstelle MySQL-System-Backup …"
|
| 5762 |
-
|
| 5763 |
-
#: inc/features/class-jobtype-dbdump-pro.php:606
|
| 5764 |
-
#@ backwpup
|
| 5765 |
-
msgid "Compressing file …"
|
| 5766 |
-
msgstr "Datei wird komprimiert …"
|
| 5767 |
-
|
| 5768 |
-
#: inc/features/class-jobtype-dbdump-pro.php:645
|
| 5769 |
-
#, php-format
|
| 5770 |
-
#@ backwpup
|
| 5771 |
-
msgid "%d. Try to dump database XML …"
|
| 5772 |
-
msgstr "%d. Erstelle XML-Backup der Datenbank …"
|
| 5773 |
-
|
| 5774 |
-
#: inc/features/class-jobtype-dboptimize-pro.php:21
|
| 5775 |
-
#@ backwpup
|
| 5776 |
-
msgid "Optimize only WordPress database tables"
|
| 5777 |
-
msgstr "Optimiere nur Tabellen der WordPress-Datenbank"
|
| 5778 |
-
|
| 5779 |
-
#: inc/features/class-jobtype-file-pro.php:15
|
| 5780 |
-
#@ backwpup
|
| 5781 |
-
msgid "Backup WordPress main files"
|
| 5782 |
-
msgstr "WordPress Kerndateien sichern"
|
| 5783 |
-
|
| 5784 |
-
#: inc/features/class-jobtype-file-pro.php:19
|
| 5785 |
-
#@ backwpup
|
| 5786 |
-
msgid "Backup blog content folder"
|
| 5787 |
-
msgstr "Ordner mit Webseiten-Inhalten sichern (standardmäßig /wp-content/uploads, wo alle Dokumente, Bilder usw. abgelegt werden)"
|
| 5788 |
-
|
| 5789 |
-
#: inc/features/class-jobtype-file-pro.php:23
|
| 5790 |
-
#@ backwpup
|
| 5791 |
-
msgid "Backup blog plugins"
|
| 5792 |
-
msgstr "Plugins sichern"
|
| 5793 |
-
|
| 5794 |
-
#: inc/features/class-jobtype-file-pro.php:27
|
| 5795 |
-
#@ backwpup
|
| 5796 |
-
msgid "Backup blog themes"
|
| 5797 |
-
msgstr "Themes sichern"
|
| 5798 |
-
|
| 5799 |
-
#: inc/features/class-jobtype-file-pro.php:31
|
| 5800 |
-
#@ backwpup
|
| 5801 |
-
msgid "Backup blog uploads folder"
|
| 5802 |
-
msgstr "Uploads-Ordner sichern"
|
| 5803 |
-
|
| 5804 |
-
#: inc/features/class-jobtype-wpexp-pro.php:14
|
| 5805 |
-
#@ backwpup
|
| 5806 |
-
msgid "Items to export:"
|
| 5807 |
-
msgstr "Objekte zum Exportieren:"
|
| 5808 |
-
|
| 5809 |
-
#: inc/features/class-settings-apikeys.php:38
|
| 5810 |
-
#@ backwpup
|
| 5811 |
-
msgid "If you want to set your own Dropbox API Keys, you can do it here. Leave empty for default."
|
| 5812 |
-
msgstr "Falls Sie eigene Dropbox-API-Keys verwenden möchten, können Sie diese hier eingeben. Lassen Sie die Felder leer, um die Standardeinstellungen zu benutzen."
|
| 5813 |
-
|
| 5814 |
-
#: inc/features/class-wizard-job.php:34
|
| 5815 |
-
#@ backwpup
|
| 5816 |
-
msgid "Select a task for your job."
|
| 5817 |
-
msgstr "Bestimmen Sie die Aufgaben für Ihren Auftrag."
|
| 5818 |
-
|
| 5819 |
-
#: inc/features/class-wizard-job.php:50
|
| 5820 |
-
#@ backwpup
|
| 5821 |
-
msgid "Where would you like to store the backup file?"
|
| 5822 |
-
msgstr "Wo möchten Sie die Backup-Datei speichern?"
|
| 5823 |
-
|
| 5824 |
-
#: inc/features/class-wizard-job.php:60
|
| 5825 |
-
#@ backwpup
|
| 5826 |
-
msgid "When would you like to start the job?"
|
| 5827 |
-
msgstr "Wann möchten Sie den Auftrag starten?"
|
| 5828 |
-
|
| 5829 |
-
#: inc/features/class-wizard-job.php:226
|
| 5830 |
-
#@ backwpup
|
| 5831 |
-
msgid "Select one or more tasks for your backup job."
|
| 5832 |
-
msgstr "Wählen Sie eine oder mehrere Aufgaben für Ihren Backup-Auftrag."
|
| 5833 |
-
|
| 5834 |
-
#: inc/features/class-wizard-job.php:581
|
| 5835 |
-
#, php-format
|
| 5836 |
-
#@ backwpup
|
| 5837 |
-
msgid "New job named %s generated."
|
| 5838 |
-
msgstr "Neuer Auftrag mit dem Namen %s erstellt."
|
| 5839 |
-
|
| 5840 |
-
#: inc/features/class-wizard-job.php:676
|
| 5841 |
-
#@ backwpup
|
| 5842 |
-
msgid "Essential files + list of plugins"
|
| 5843 |
-
msgstr "Essenzielle Dateien und Plugin-Liste"
|
| 5844 |
-
|
| 5845 |
-
#: inc/features/class-wizard-job.php:677
|
| 5846 |
-
#@ backwpup
|
| 5847 |
-
msgid "Backup essential files and folders, plus a list of installed plugins."
|
| 5848 |
-
msgstr "Sichern Sie die essenziellen Dateien und Ordner, sowie eine Liste der installierten Plugins."
|
| 5849 |
-
|
| 5850 |
-
#: inc/features/class-wizard-jobimport.php:15
|
| 5851 |
-
#@ backwpup
|
| 5852 |
-
msgid "Wizard for importing BackWPup jobs from an XML file"
|
| 5853 |
-
msgstr "Assistent für den Import eines BackWPup-Auftrags aus einer XML-Datei"
|
| 5854 |
-
|
| 5855 |
-
#: inc/features/class-wizard-jobimport.php:42
|
| 5856 |
-
#@ backwpup
|
| 5857 |
-
msgid "Select items to import"
|
| 5858 |
-
msgstr "Wählen Sie Objekte zum Importieren"
|
| 5859 |
-
|
| 5860 |
-
#: inc/features/class-wizard-jobimport.php:42
|
| 5861 |
-
#@ backwpup
|
| 5862 |
-
msgid "Select which job should be imported or overwritten."
|
| 5863 |
-
msgstr "Wählen Sie, welcher Auftrag importiert oder überschrieben werden soll."
|
| 5864 |
-
|
| 5865 |
-
#: inc/features/class-wizard-jobimport.php:59
|
| 5866 |
-
#@ backwpup
|
| 5867 |
-
msgid "Please upload your BackWPup job XML export file and we’ll import the jobs into BackWPup."
|
| 5868 |
-
msgstr "Laden Sie eine BackWPup-Export-Datei ( XML) eines Auftrags hoch, und wir importieren den Auftrag nach BackWPup."
|
| 5869 |
-
|
| 5870 |
-
#: inc/features/class-wizard-jobimport.php:125
|
| 5871 |
-
#, php-format
|
| 5872 |
-
#@ backwpup
|
| 5873 |
-
msgid "The export file could not be found at <code>%s</code>. This is likely due to an issue with permissions."
|
| 5874 |
-
msgstr "Die Export-Datei konnte nicht gefunden werden auf <code>%s</code>. Dies kann passieren, wenn es Probleme mit den Zugriffsrechten gibt."
|
| 5875 |
-
|
| 5876 |
-
#: inc/features/class-wizard-jobimport.php:132
|
| 5877 |
-
#@ backwpup
|
| 5878 |
-
msgid "Sorry, there has been a phrase error."
|
| 5879 |
-
msgstr "Hier gibt es leider einen Fehler."
|
| 5880 |
-
|
| 5881 |
-
#: inc/features/class-wizard-jobimport.php:145
|
| 5882 |
-
#@ backwpup
|
| 5883 |
-
msgid "This is not a BackWPup XML file"
|
| 5884 |
-
msgstr "Dies ist keine BackWPup-XML-Datei"
|
| 5885 |
-
|
| 5886 |
-
#: inc/features/class-wizard-systemtest.php:86
|
| 5887 |
-
#, php-format
|
| 5888 |
-
#@ backwpup
|
| 5889 |
-
msgid "You must run WordPress version 3.2 or higher to use this plugin. You are using version %s now."
|
| 5890 |
-
msgstr "Sie müssen WordPress in der Version 3.2 oder höher verwenden, um dieses Plugin zu benutzen. Momentan verwenden Sie Version %s."
|
| 5891 |
-
|
| 5892 |
-
#: inc/features/class-wizard-systemtest.php:91
|
| 5893 |
-
#, php-format
|
| 5894 |
-
#@ backwpup
|
| 5895 |
-
msgid "You must run PHP version 5.2.6 or higher to use this plugin. You are using version %s now."
|
| 5896 |
-
msgstr "Sie benötigen PHP in der Version 5.2.6 oder höher, um das Plugin zu benutzen. Momentan haben Sie Version %s."
|
| 5897 |
-
|
| 5898 |
-
#: inc/features/class-wizard-systemtest.php:95
|
| 5899 |
-
#, php-format
|
| 5900 |
-
#@ backwpup
|
| 5901 |
-
msgid "We recommend to run a PHP version above 5.3.2 to get the full plugin functionality. You are using version %s now."
|
| 5902 |
-
msgstr "Wir empfehlen, PHP in der Version 5.3.2 oder höher zu verwenden, um die volle Funktionalität des Plugins zu erhalten. Momentan verwenden Sie Version %s."
|
| 5903 |
-
|
| 5904 |
-
#: inc/features/class-wizard-systemtest.php:100
|
| 5905 |
-
#, php-format
|
| 5906 |
-
#@ backwpup
|
| 5907 |
-
msgid "You must have the MySQLi extension installed and a MySQL server version of 5.0.7 or higher to use this plugin. You are using version %s now."
|
| 5908 |
-
msgstr "Sie müssen die MySQLi-Erweiterung und MySQL-Server in der Version 5.0.7 oder höher installiert haben, um dieses Plugin zu benutzen. Momentan verwenden Sie Version %s."
|
| 5909 |
-
|
| 5910 |
-
#: inc/features/class-wizard-systemtest.php:105
|
| 5911 |
-
#@ backwpup
|
| 5912 |
-
msgid "You must have the PHP cURL extension installed to get the full plugin functionality."
|
| 5913 |
-
msgstr "Um dieses Plugin vollumfänglich zu nutzen, müssen Sie die Erweiterung PHP-cURL installiert haben."
|
| 5914 |
-
|
| 5915 |
-
#: inc/features/class-wizard-systemtest.php:149
|
| 5916 |
-
#, php-format
|
| 5917 |
-
#@ backwpup
|
| 5918 |
-
msgid "Temp folder %s not read or writable. Please set proper writing permissions."
|
| 5919 |
-
msgstr "Das Temporäre Verzeichnis %s ist nicht lesbar oder beschreibbar. Bitte setze Schreibberechtigung."
|
| 5920 |
-
|
| 5921 |
-
#: inc/features/class-wizard-systemtest.php:154
|
| 5922 |
-
#, php-format
|
| 5923 |
-
#@ backwpup
|
| 5924 |
-
msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper writing permissions."
|
| 5925 |
-
msgstr "Das temporäre Verzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 5926 |
-
|
| 5927 |
-
#: inc/features/class-wizard-systemtest.php:161
|
| 5928 |
-
#, php-format
|
| 5929 |
-
#@ backwpup
|
| 5930 |
-
msgid "Logs folder %s is not readable or writable. Please set proper writing permissions."
|
| 5931 |
-
msgstr "Das Verzeichnis %s für Protokoll-Dateien ist nicht lesbar oder beschreibbar. Bitte setze Schreibberechtigung."
|
| 5932 |
-
|
| 5933 |
-
#: inc/features/class-wizard-systemtest.php:165
|
| 5934 |
-
#, php-format
|
| 5935 |
-
#@ backwpup
|
| 5936 |
-
msgid "Logs folder %s does not exist and cannot be created. Please create it and set proper writing permissions."
|
| 5937 |
-
msgstr "Das Logverzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 5938 |
-
|
| 5939 |
#: inc/class-destination-s3.php:192
|
| 5940 |
#@ backwpup
|
| 5941 |
msgid "Multipart splits file into multiple chunks while uploading. This is necessary for displaying the upload process and to transfer bigger files. Beware: There is a known issue at Google storage with this option!"
|
|
@@ -5986,39 +4644,21 @@ msgid "E-Mail \"From\" field (Name < you@your-email-address.tld >
|
|
| 5986 |
msgstr "\"VON\"-Feld der E-Mail (Name < email@adresse.tld >)"
|
| 5987 |
|
| 5988 |
#: inc/class-jobtype-dbdump.php:61
|
| 5989 |
-
#: inc/features/class-jobtype-dbdump-pro.php:104
|
| 5990 |
#@ backwpup
|
| 5991 |
msgid "Settings for database backup"
|
| 5992 |
msgstr "Einstellungen für das Datenbank Backup"
|
| 5993 |
|
| 5994 |
#: inc/class-jobtype-dbdump.php:65
|
| 5995 |
-
#: inc/features/class-jobtype-dbdump-pro.php:150
|
| 5996 |
#@ backwpup
|
| 5997 |
msgid "Tables to backup"
|
| 5998 |
msgstr "Tabellen zu sichern"
|
| 5999 |
|
| 6000 |
-
#: inc/
|
| 6001 |
-
#@ backwpup
|
| 6002 |
-
msgid "Database Backup type"
|
| 6003 |
-
msgstr "Datenbank Backup Type"
|
| 6004 |
-
|
| 6005 |
-
#. translators: plugin header field 'Version'
|
| 6006 |
-
#: backwpup.php:0
|
| 6007 |
-
#@ backwpup
|
| 6008 |
-
msgid "3.0.8"
|
| 6009 |
-
msgstr ""
|
| 6010 |
-
|
| 6011 |
-
#: inc/class-admin.php:448
|
| 6012 |
#@ backwpup
|
| 6013 |
msgid "BackWPup Role"
|
| 6014 |
msgstr "BackWPup Rolle"
|
| 6015 |
|
| 6016 |
-
#: inc/class-admin.php:
|
| 6017 |
-
#@ backwpup
|
| 6018 |
-
msgid "None"
|
| 6019 |
-
msgstr "Keine"
|
| 6020 |
-
|
| 6021 |
-
#: inc/class-admin.php:463
|
| 6022 |
#@ backwpup
|
| 6023 |
msgid "Role that the user have on BackWPup"
|
| 6024 |
msgstr "Rolle die dieser Benutzer hat bei BackWPup"
|
|
@@ -6043,7 +4683,6 @@ msgid "Job has done with warnings in %s seconds. Please resolve them for correct
|
|
| 6043 |
msgstr "Job mit Warnungen beendet in %s Sekunden. Sie beheben Sie die Warnungen für eine korrekte Ausführung."
|
| 6044 |
|
| 6045 |
#: inc/class-page-settings.php:384
|
| 6046 |
-
#: inc/features/class-wizard-systemtest.php:188
|
| 6047 |
#, php-format
|
| 6048 |
#@ backwpup
|
| 6049 |
msgid "The BackWPup HTTP response header gives back the false value \"%s\""
|
|
@@ -6055,8 +4694,35 @@ msgstr "Der BackWPup HTTP Antwort Kopf gibt einen falschen wert zurück \"%s\""
|
|
| 6055 |
msgid "Running file can't read. tra again."
|
| 6056 |
msgstr "Laufzeit Datei kann nicht gelesen werden. Bitte versuchen Sie es erneut."
|
| 6057 |
|
| 6058 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6059 |
#@ backwpup
|
| 6060 |
-
msgid "
|
| 6061 |
-
msgstr "
|
| 6062 |
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: BackWPup v3.0.10\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2013-02-06 17:42+0100\n"
|
| 6 |
+
"PO-Revision-Date: 2013-05-08 16:32:30-0500\n"
|
| 7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
| 8 |
"Language-Team: INPSYDE <info@inpsyde.com>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 20 |
"X-Poedit-SearchPath-0: ..\n"
|
| 21 |
"X-Textdomain-Support: yes"
|
| 22 |
|
| 23 |
+
#: inc/class-admin.php:120
|
|
|
|
|
|
|
| 24 |
#@ backwpup
|
| 25 |
msgid "Documentation"
|
| 26 |
msgstr "Dokumentation"
|
| 27 |
|
| 28 |
+
#: inc/class-admin.php:137
|
| 29 |
#@ backwpup
|
| 30 |
msgid "BackWPup Dashboard"
|
| 31 |
msgstr "BackWPup Dashboard"
|
| 32 |
|
| 33 |
+
#: inc/class-admin.php:137
|
| 34 |
#@ backwpup
|
| 35 |
msgid "Dashboard"
|
| 36 |
msgstr "Dashboard"
|
| 37 |
|
| 38 |
+
#: inc/class-admin.php:155
|
| 39 |
#: inc/class-adminbar.php:84
|
| 40 |
#: inc/class-page-settings.php:103
|
| 41 |
#@ backwpup
|
| 43 |
msgid "Jobs"
|
| 44 |
msgstr "Aufträge"
|
| 45 |
|
| 46 |
+
#: inc/class-admin.php:170
|
| 47 |
#@ backwpup
|
| 48 |
msgid "Add New Job"
|
| 49 |
msgstr "Neuer Auftrag"
|
| 50 |
|
| 51 |
+
#: inc/class-admin.php:186
|
| 52 |
#: inc/class-adminbar.php:100
|
| 53 |
#: inc/class-page-backups.php:366
|
| 54 |
#: inc/class-page-logs.php:281
|
| 58 |
msgid "Logs"
|
| 59 |
msgstr "Protokolle"
|
| 60 |
|
| 61 |
+
#: inc/class-admin.php:201
|
| 62 |
#: inc/class-adminbar.php:108
|
| 63 |
#@ backwpup
|
| 64 |
#@ backwpupadminbar
|
| 65 |
msgid "Backups"
|
| 66 |
msgstr "Datensicherungen"
|
| 67 |
|
| 68 |
+
#: inc/class-admin.php:216
|
| 69 |
#@ backwpup
|
| 70 |
msgid "Settings"
|
| 71 |
msgstr "Einstellungen"
|
| 72 |
|
| 73 |
+
#: inc/class-admin.php:310
|
| 74 |
#@ backwpup
|
| 75 |
msgid "Jobs overview"
|
| 76 |
msgstr "Auftragsübersicht"
|
| 77 |
|
| 78 |
+
#: inc/class-admin.php:310
|
| 79 |
#: inc/class-page-jobs.php:134
|
| 80 |
#@ backwpup
|
| 81 |
msgid "Run now"
|
| 82 |
msgstr "Jetzt starten"
|
| 83 |
|
| 84 |
+
#: inc/class-admin.php:405
|
| 85 |
#, php-format
|
| 86 |
#@ backwpup
|
| 87 |
msgid "version %s"
|
| 88 |
msgstr "Version %s"
|
| 89 |
|
| 90 |
+
#. translators: plugin header field 'Name'
|
| 91 |
+
#: backwpup.php:0
|
| 92 |
#: inc/class-adminbar.php:62
|
| 93 |
+
#@ backwpup
|
| 94 |
#@ backwpupadminbar
|
| 95 |
msgid "BackWPup"
|
| 96 |
msgstr "BackWPup"
|
| 107 |
msgid "Add New"
|
| 108 |
msgstr "Neuer Auftrag"
|
| 109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
#: inc/class-adminbar.php:130
|
| 111 |
#@ backwpupadminbar
|
| 112 |
msgid "Run Now"
|
| 146 |
msgstr "Datensicherung in die Dropbox"
|
| 147 |
|
| 148 |
#: inc/class-destination-dropbox.php:50
|
|
|
|
| 149 |
#@ backwpup
|
| 150 |
msgid "Dropbox authentication complete!"
|
| 151 |
msgstr "Dropbox-Authentifizierung vollständig!"
|
| 155 |
#: inc/class-destination-dropbox.php:152
|
| 156 |
#: inc/class-destination-dropbox.php:278
|
| 157 |
#: inc/class-destination-dropbox.php:328
|
|
|
|
|
|
|
|
|
|
| 158 |
#, php-format
|
| 159 |
#@ backwpup
|
| 160 |
msgid "Dropbox API: %s"
|
| 166 |
msgstr "Anmelden"
|
| 167 |
|
| 168 |
#: inc/class-destination-dropbox.php:67
|
|
|
|
| 169 |
#@ backwpup
|
| 170 |
msgid "Authenticate"
|
| 171 |
msgstr "Authentifizieren"
|
| 172 |
|
| 173 |
#: inc/class-destination-dropbox.php:69
|
|
|
|
| 174 |
#@ backwpup
|
| 175 |
msgid "Not authenticated!"
|
| 176 |
msgstr "Nicht authentifiziert!"
|
| 177 |
|
| 178 |
#: inc/class-destination-dropbox.php:69
|
|
|
|
| 179 |
#@ backwpup
|
| 180 |
msgid "Create Account"
|
| 181 |
msgstr "Konto erstellen"
|
| 182 |
|
| 183 |
#: inc/class-destination-dropbox.php:71
|
| 184 |
#: inc/class-destination-sugarsync.php:63
|
|
|
|
|
|
|
| 185 |
#@ backwpup
|
| 186 |
msgid "Authenticated!"
|
| 187 |
msgstr "Authentifiziert!"
|
| 226 |
#: inc/class-destination-s3-v1.php:172
|
| 227 |
#: inc/class-destination-s3.php:177
|
| 228 |
#: inc/class-destination-sugarsync.php:116
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
#@ backwpup
|
| 230 |
msgid "Number of files to keep in folder."
|
| 231 |
msgstr "Anzahl der Dateien, die im Ordner behalten werden"
|
| 238 |
#: inc/class-destination-s3-v1.php:172
|
| 239 |
#: inc/class-destination-s3.php:177
|
| 240 |
#: inc/class-destination-sugarsync.php:116
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 241 |
#@ backwpup
|
| 242 |
msgid "Oldest files will be deleted first. 0 = no deletion"
|
| 243 |
msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung"
|
| 250 |
#: inc/class-destination-s3-v1.php:176
|
| 251 |
#: inc/class-destination-s3.php:181
|
| 252 |
#: inc/class-destination-sugarsync.php:120
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 253 |
#@ backwpup
|
| 254 |
msgid "Do not delete files while syncing to destination!"
|
| 255 |
msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
|
| 297 |
msgid "Backup to FTP"
|
| 298 |
msgstr "Backup zu FTP"
|
| 299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 300 |
#: inc/class-destination-email.php:125
|
| 301 |
#: inc/class-destination-ftp.php:46
|
|
|
|
| 302 |
#@ backwpup
|
| 303 |
msgid "Port:"
|
| 304 |
msgstr "Port:"
|
| 407 |
msgstr "Maximale Dateigröße"
|
| 408 |
|
| 409 |
#: inc/class-destination-email.php:77
|
|
|
|
| 410 |
#@ backwpup
|
| 411 |
msgid "MB"
|
| 412 |
msgstr "MB"
|
| 448 |
#: inc/class-jobtype-dbdump.php:103
|
| 449 |
#: inc/class-jobtype-wpexp.php:70
|
| 450 |
#: inc/class-jobtype-wpplugin.php:56
|
| 451 |
+
#: inc/class-page-backwpup.php:232
|
| 452 |
+
#: inc/class-page-backwpup.php:297
|
|
|
|
|
|
|
| 453 |
#@ backwpup
|
| 454 |
msgid "none"
|
| 455 |
msgstr "nichts"
|
| 547 |
msgstr "Datei Löschung"
|
| 548 |
|
| 549 |
#: inc/class-destination-msazure.php:144
|
|
|
|
| 550 |
#, php-format
|
| 551 |
#@ backwpup
|
| 552 |
msgid "MS Azure container \"%s\" created."
|
| 553 |
msgstr "MS Azure Container \"%s\" erstellt."
|
| 554 |
|
| 555 |
#: inc/class-destination-msazure.php:147
|
|
|
|
| 556 |
#, php-format
|
| 557 |
#@ backwpup
|
| 558 |
msgid "MS Azure container create: %s"
|
| 559 |
msgstr "MS Azure Container erstellen: %s"
|
| 560 |
|
| 561 |
#: inc/class-destination-msazure.php:239
|
|
|
|
| 562 |
#, php-format
|
| 563 |
#@ backwpup
|
| 564 |
msgid "MS Azure container \"%s\" does not exist!"
|
| 565 |
msgstr "MS Azure Container \"%s\" existiert nicht!"
|
| 566 |
|
| 567 |
#: inc/class-destination-msazure.php:243
|
|
|
|
| 568 |
#, php-format
|
| 569 |
#@ backwpup
|
| 570 |
msgid "Connected to MS Azure container \"%s\"."
|
| 579 |
msgstr[1] "%d Dateien im Microsoft-Azure-Container gelöscht"
|
| 580 |
|
| 581 |
#: inc/class-destination-msazure.php:298
|
|
|
|
| 582 |
#, php-format
|
| 583 |
#@ backwpup
|
| 584 |
msgid "Microsoft Azure API: %s"
|
| 612 |
|
| 613 |
#: inc/class-destination-rsc.php:69
|
| 614 |
#: inc/class-destination-rsc.php:71
|
|
|
|
| 615 |
#@ backwpup
|
| 616 |
msgid "Rackspace Cloud Files Region"
|
| 617 |
msgstr "Rackspace Cloud Verzeichnis"
|
| 618 |
|
| 619 |
#: inc/class-destination-rsc.php:72
|
|
|
|
| 620 |
#@ backwpup
|
| 621 |
msgid "Dallas (DFW)"
|
| 622 |
msgstr "Dallas (DFW)"
|
| 623 |
|
| 624 |
#: inc/class-destination-rsc.php:73
|
|
|
|
| 625 |
#@ backwpup
|
| 626 |
msgid "Chicago (ORD)"
|
| 627 |
msgstr "Chicago (ORD)"
|
| 640 |
msgstr "Ordner im Bucket"
|
| 641 |
|
| 642 |
#: inc/class-destination-rsc.php:158
|
|
|
|
| 643 |
#, php-format
|
| 644 |
#@ backwpup
|
| 645 |
msgid "Rackspace Cloud container \"%s\" created."
|
| 649 |
#: inc/class-destination-rsc.php:271
|
| 650 |
#: inc/class-destination-rsc.php:299
|
| 651 |
#: inc/class-destination-rsc.php:347
|
|
|
|
|
|
|
|
|
|
| 652 |
#, php-format
|
| 653 |
#@ backwpup
|
| 654 |
msgid "Rackspace Cloud API: %s"
|
| 710 |
|
| 711 |
#: inc/class-destination-s3-v1.php:90
|
| 712 |
#: inc/class-destination-s3.php:95
|
|
|
|
|
|
|
| 713 |
#@ backwpup
|
| 714 |
msgid "Amazon S3 Region"
|
| 715 |
msgstr "Amazon S3 Region"
|
| 716 |
|
| 717 |
#: inc/class-destination-s3-v1.php:91
|
| 718 |
#: inc/class-destination-s3.php:96
|
|
|
|
|
|
|
| 719 |
#@ backwpup
|
| 720 |
msgid "Amazon S3: US Standard"
|
| 721 |
msgstr "Amazon S3: US Standard"
|
| 722 |
|
| 723 |
#: inc/class-destination-s3-v1.php:92
|
| 724 |
#: inc/class-destination-s3.php:97
|
|
|
|
|
|
|
| 725 |
#@ backwpup
|
| 726 |
msgid "Amazon S3: US West (Northern California)"
|
| 727 |
msgstr "Amazon S3: US West (Northern California)"
|
| 728 |
|
| 729 |
#: inc/class-destination-s3-v1.php:93
|
| 730 |
#: inc/class-destination-s3.php:98
|
|
|
|
|
|
|
| 731 |
#@ backwpup
|
| 732 |
msgid "Amazon S3: US West (Oregon)"
|
| 733 |
msgstr "Amazon S3: US West (Oregon)"
|
| 734 |
|
| 735 |
#: inc/class-destination-s3-v1.php:94
|
| 736 |
#: inc/class-destination-s3.php:99
|
|
|
|
|
|
|
| 737 |
#@ backwpup
|
| 738 |
msgid "Amazon S3: EU (Ireland)"
|
| 739 |
msgstr "Amazon S3: EU (Ireland)"
|
| 740 |
|
| 741 |
#: inc/class-destination-s3-v1.php:95
|
| 742 |
#: inc/class-destination-s3.php:100
|
|
|
|
|
|
|
| 743 |
#@ backwpup
|
| 744 |
msgid "Amazon S3: Asia Pacific (Tokyo)"
|
| 745 |
msgstr "Amazon S3: Asia Pacific (Tokyo)"
|
| 746 |
|
| 747 |
#: inc/class-destination-s3-v1.php:96
|
| 748 |
#: inc/class-destination-s3.php:101
|
|
|
|
|
|
|
| 749 |
#@ backwpup
|
| 750 |
msgid "Amazon S3: Asia Pacific (Singapore)"
|
| 751 |
msgstr "Amazon S3: Asia Pacific (Singapore)"
|
| 752 |
|
| 753 |
#: inc/class-destination-s3-v1.php:97
|
| 754 |
#: inc/class-destination-s3.php:102
|
|
|
|
|
|
|
| 755 |
#@ backwpup
|
| 756 |
msgid "Amazon S3: Asia Pacific (Sydney)"
|
| 757 |
msgstr "Amazon S3: Asia Pacific (Sydney)"
|
| 758 |
|
| 759 |
#: inc/class-destination-s3-v1.php:98
|
| 760 |
#: inc/class-destination-s3.php:103
|
|
|
|
|
|
|
| 761 |
#@ backwpup
|
| 762 |
msgid "Amazon S3: South America (Sao Paulo)"
|
| 763 |
msgstr "Amazon S3: South America (Sao Paulo)"
|
| 764 |
|
| 765 |
#: inc/class-destination-s3-v1.php:99
|
| 766 |
#: inc/class-destination-s3.php:104
|
|
|
|
|
|
|
| 767 |
#@ backwpup
|
| 768 |
msgid "Google Storage (Interoperable Access)"
|
| 769 |
msgstr "Google Storage (Interoperable Access)"
|
| 770 |
|
| 771 |
#: inc/class-destination-s3-v1.php:100
|
| 772 |
#: inc/class-destination-s3.php:105
|
|
|
|
|
|
|
| 773 |
#@ backwpup
|
| 774 |
msgid "Hosteurope Cloud Storage"
|
| 775 |
msgstr "Hosteurope Cloud Storage"
|
| 776 |
|
| 777 |
#: inc/class-destination-s3-v1.php:101
|
| 778 |
#: inc/class-destination-s3.php:106
|
|
|
|
|
|
|
| 779 |
#@ backwpup
|
| 780 |
msgid "Dream Host Cloud Storage"
|
| 781 |
msgstr "Dream Host Cloud Storage"
|
| 856 |
|
| 857 |
#: inc/class-destination-s3-v1.php:260
|
| 858 |
#: inc/class-destination-s3.php:271
|
|
|
|
|
|
|
| 859 |
#, php-format
|
| 860 |
#@ backwpup
|
| 861 |
msgid "Bucket %1$s created in %2$s."
|
| 863 |
|
| 864 |
#: inc/class-destination-s3-v1.php:262
|
| 865 |
#: inc/class-destination-s3.php:273
|
|
|
|
|
|
|
| 866 |
#, php-format
|
| 867 |
#@ backwpup
|
| 868 |
msgid "Bucket %s could not be created."
|
| 869 |
msgstr "Bucket %s konnte nicht erstellt werden."
|
| 870 |
|
| 871 |
#: inc/class-destination-s3.php:275
|
|
|
|
| 872 |
#, php-format
|
| 873 |
#@ backwpup
|
| 874 |
msgid " %s is not a valid bucket name."
|
| 882 |
#: inc/class-destination-s3.php:451
|
| 883 |
#: inc/class-destination-s3.php:472
|
| 884 |
#: inc/class-destination-s3.php:531
|
|
|
|
|
|
|
| 885 |
#, php-format
|
| 886 |
#@ backwpup
|
| 887 |
msgid "S3 Service API: %s"
|
| 889 |
|
| 890 |
#: inc/class-destination-s3-v1.php:398
|
| 891 |
#: inc/class-destination-s3.php:395
|
|
|
|
|
|
|
| 892 |
#, php-format
|
| 893 |
#@ backwpup
|
| 894 |
msgid "S3 Bucket \"%s\" does not exist!"
|
| 968 |
|
| 969 |
#: inc/class-destination-sugarsync.php:48
|
| 970 |
#: inc/class-page-settings.php:330
|
|
|
|
|
|
|
|
|
|
| 971 |
#@ backwpup
|
| 972 |
msgid "Password:"
|
| 973 |
msgstr "Passwort:"
|
| 974 |
|
| 975 |
#: inc/class-destination-sugarsync.php:54
|
| 976 |
#: inc/class-destination-sugarsync.php:135
|
|
|
|
|
|
|
| 977 |
#@ backwpup
|
| 978 |
msgid "Sugarsync authenticate!"
|
| 979 |
msgstr "SugarSync authentifiziert!"
|
| 980 |
|
| 981 |
#: inc/class-destination-sugarsync.php:65
|
| 982 |
#: inc/class-destination-sugarsync.php:147
|
|
|
|
|
|
|
| 983 |
#@ backwpup
|
| 984 |
msgid "Delete Sugarsync authentication!"
|
| 985 |
msgstr "Lösche SugarSync Authentifizierung"
|
| 990 |
msgstr "Sync Ordner Auswahl"
|
| 991 |
|
| 992 |
#: inc/class-destination-sugarsync.php:83
|
|
|
|
| 993 |
#@ backwpup
|
| 994 |
msgid "No Syncfolders found!"
|
| 995 |
msgstr "Keine Sync-Ordner gefunden!"
|
| 1458 |
msgstr "Datenbank-Tabellen prüfen"
|
| 1459 |
|
| 1460 |
#: inc/class-jobtype-dbcheck.php:35
|
|
|
|
| 1461 |
#@ backwpup
|
| 1462 |
msgid "Settings for database check"
|
| 1463 |
msgstr "Einstellungen für den Datenbank Check"
|
| 1474 |
msgstr "Teste nur die WordPress-Tabellen"
|
| 1475 |
|
| 1476 |
#: inc/class-jobtype-dbcheck.php:49
|
|
|
|
| 1477 |
#@ backwpup
|
| 1478 |
msgid "Repair"
|
| 1479 |
msgstr "Reparieren"
|
| 1480 |
|
| 1481 |
#: inc/class-jobtype-dbcheck.php:54
|
|
|
|
| 1482 |
#@ backwpup
|
| 1483 |
msgid "Try to repair defect table"
|
| 1484 |
msgstr "Versuche, definierte Tabellen zu reparieren"
|
| 1520 |
msgid "Database backup"
|
| 1521 |
msgstr "Datenbank Backup"
|
| 1522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1523 |
#: inc/class-jobtype-dbdump.php:67
|
|
|
|
| 1524 |
#@ backwpup
|
| 1525 |
msgid "all"
|
| 1526 |
msgstr "alle"
|
| 1527 |
|
| 1528 |
#: inc/class-jobtype-dbdump.php:92
|
|
|
|
| 1529 |
#@ backwpup
|
| 1530 |
msgid "Dumpfile name"
|
| 1531 |
msgstr "Name der Backup-Datei"
|
| 1532 |
|
| 1533 |
#: inc/class-jobtype-dbdump.php:100
|
|
|
|
| 1534 |
#@ backwpup
|
| 1535 |
msgid "Dumpfile compression"
|
| 1536 |
msgstr "Kompression der Backup-Datei"
|
| 1541 |
#: inc/class-jobtype-wpexp.php:74
|
| 1542 |
#: inc/class-jobtype-wpplugin.php:58
|
| 1543 |
#: inc/class-jobtype-wpplugin.php:60
|
|
|
|
|
|
|
| 1544 |
#@ backwpup
|
| 1545 |
msgid "GZip"
|
| 1546 |
msgstr "GZip"
|
| 1551 |
#: inc/class-jobtype-wpexp.php:78
|
| 1552 |
#: inc/class-jobtype-wpplugin.php:62
|
| 1553 |
#: inc/class-jobtype-wpplugin.php:64
|
|
|
|
|
|
|
| 1554 |
#@ backwpup
|
| 1555 |
msgid "BZip2"
|
| 1556 |
msgstr "BZip2"
|
| 1557 |
|
| 1558 |
#: inc/class-jobtype-dbdump.php:167
|
|
|
|
|
|
|
| 1559 |
#, php-format
|
| 1560 |
#@ backwpup
|
| 1561 |
msgid "Connected to database %1$s on %2$s"
|
| 1570 |
#: inc/class-mysqldump.php:302
|
| 1571 |
#: inc/class-mysqldump.php:324
|
| 1572 |
#: inc/class-mysqldump.php:339
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1573 |
#, php-format
|
| 1574 |
#@ backwpup
|
| 1575 |
msgid "Database error %1$s for query %2$s"
|
| 1576 |
msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s"
|
| 1577 |
|
| 1578 |
#: inc/class-jobtype-dbdump.php:179
|
|
|
|
| 1579 |
#@ backwpup
|
| 1580 |
msgid "No tables to dump."
|
| 1581 |
msgstr "Es gibt keine Tabellen zu sichern"
|
| 1582 |
|
| 1583 |
#: inc/class-jobtype-dbdump.php:188
|
|
|
|
| 1584 |
#, php-format
|
| 1585 |
#@ backwpup
|
| 1586 |
msgid "Dump database table \"%s\""
|
| 1587 |
msgstr "Sichere Datenbanktabelle \"%s\""
|
| 1588 |
|
| 1589 |
#: inc/class-jobtype-dbdump.php:211
|
|
|
|
|
|
|
| 1590 |
#@ backwpup
|
| 1591 |
msgid "Database dump done!"
|
| 1592 |
msgstr "Datenbank-Backup fertig!"
|
| 1602 |
msgstr "Datenbank-Tabellen optimieren"
|
| 1603 |
|
| 1604 |
#: inc/class-jobtype-dboptimize.php:36
|
|
|
|
| 1605 |
#@ backwpup
|
| 1606 |
msgid "Settings for database optimization"
|
| 1607 |
msgstr "Einstellungen der Datenbank Optimierung"
|
| 1721 |
msgstr "WordPress XML Export"
|
| 1722 |
|
| 1723 |
#: inc/class-jobtype-wpexp.php:48
|
|
|
|
| 1724 |
#@ backwpup
|
| 1725 |
msgid "All content"
|
| 1726 |
msgstr "Gesamter Inhalt"
|
| 1727 |
|
| 1728 |
#: inc/class-jobtype-wpexp.php:49
|
|
|
|
| 1729 |
#@ backwpup
|
| 1730 |
msgid "Posts"
|
| 1731 |
msgstr "Beiträge"
|
| 1732 |
|
| 1733 |
#: inc/class-jobtype-wpexp.php:50
|
|
|
|
| 1734 |
#@ backwpup
|
| 1735 |
msgid "Pages"
|
| 1736 |
msgstr "Seiten"
|
| 1795 |
msgstr "Größe"
|
| 1796 |
|
| 1797 |
#: inc/class-page-backups.php:230
|
| 1798 |
+
#: inc/class-page-backwpup.php:190
|
| 1799 |
+
#: inc/class-page-backwpup.php:251
|
| 1800 |
#@ backwpup
|
| 1801 |
msgid "Time"
|
| 1802 |
msgstr "Zeit"
|
| 1836 |
msgstr "Willkommen bei BackWPup"
|
| 1837 |
|
| 1838 |
#: inc/class-page-backwpup.php:122
|
|
|
|
| 1839 |
#@ backwpup
|
| 1840 |
msgid "Start wizard"
|
| 1841 |
msgstr "Assistenten starten"
|
| 1842 |
|
| 1843 |
+
#: inc/class-page-backwpup.php:153
|
| 1844 |
#@ backwpup
|
| 1845 |
msgid "Test the installation"
|
| 1846 |
msgstr "Die Installation testen"
|
| 1847 |
|
| 1848 |
+
#: inc/class-page-backwpup.php:154
|
| 1849 |
+
#: inc/class-page-backwpup.php:157
|
| 1850 |
#@ backwpup
|
| 1851 |
msgid "Create a Job"
|
| 1852 |
msgstr "Auftrag erstellen"
|
| 1853 |
|
| 1854 |
+
#: inc/class-page-backwpup.php:159
|
| 1855 |
#@ backwpup
|
| 1856 |
msgid "Run the created job"
|
| 1857 |
msgstr "Erstellten Auftrag starten"
|
| 1858 |
|
| 1859 |
+
#: inc/class-page-backwpup.php:160
|
| 1860 |
#@ backwpup
|
| 1861 |
msgid "Check the job log"
|
| 1862 |
msgstr "Logs des Auftrages prüfen"
|
| 1863 |
|
| 1864 |
+
#: inc/class-page-backwpup.php:249
|
| 1865 |
#@ backwpup
|
| 1866 |
msgid "Next scheduled jobs"
|
| 1867 |
msgstr "Nächste geplante Aufträge"
|
| 1868 |
|
| 1869 |
+
#: inc/class-page-backwpup.php:190
|
| 1870 |
+
#: inc/class-page-backwpup.php:252
|
| 1871 |
#: inc/class-page-logs.php:114
|
| 1872 |
#@ backwpup
|
| 1873 |
msgid "Job"
|
| 1874 |
msgstr "Auftrag"
|
| 1875 |
|
| 1876 |
+
#: inc/class-page-backwpup.php:275
|
| 1877 |
#, php-format
|
| 1878 |
#@ backwpup
|
| 1879 |
msgid "working since %d seconds"
|
| 1880 |
msgstr "in Arbeit seit %d Sek."
|
| 1881 |
|
| 1882 |
+
#: inc/class-page-backwpup.php:277
|
| 1883 |
#: inc/class-page-jobs.php:493
|
| 1884 |
#@ backwpup
|
| 1885 |
msgid "Abort"
|
| 1886 |
msgstr "Abbrechen"
|
| 1887 |
|
| 1888 |
+
#: inc/class-page-backwpup.php:293
|
| 1889 |
#@ backwpup
|
| 1890 |
msgid "Edit Job"
|
| 1891 |
msgstr "Auftrag bearbeiten"
|
| 1892 |
|
| 1893 |
+
#: inc/class-page-backwpup.php:189
|
| 1894 |
#@ backwpup
|
| 1895 |
msgid "Last logs"
|
| 1896 |
msgstr "Letzte Logs"
|
| 1897 |
|
| 1898 |
+
#: inc/class-page-backwpup.php:190
|
| 1899 |
#@ backwpup
|
| 1900 |
msgid "Result"
|
| 1901 |
msgstr "Ergebnis"
|
| 1902 |
|
| 1903 |
+
#: inc/class-page-backwpup.php:220
|
| 1904 |
#, php-format
|
| 1905 |
#@ backwpup
|
| 1906 |
msgid "%d ERROR"
|
| 1908 |
msgstr[0] "%d FEHLER"
|
| 1909 |
msgstr[1] "%d FEHLER"
|
| 1910 |
|
| 1911 |
+
#: inc/class-page-backwpup.php:222
|
| 1912 |
#, php-format
|
| 1913 |
#@ backwpup
|
| 1914 |
msgid "%d WARNING"
|
| 1978 |
msgstr "%s Auftrag: "
|
| 1979 |
|
| 1980 |
#: inc/class-page-editjob.php:436
|
|
|
|
| 1981 |
#@ backwpup
|
| 1982 |
msgid "Job tasks"
|
| 1983 |
msgstr "Auftragsdetails"
|
| 1984 |
|
| 1985 |
#: inc/class-page-editjob.php:457
|
| 1986 |
#: inc/class-page-editjob.php:460
|
|
|
|
|
|
|
| 1987 |
#@ backwpup
|
| 1988 |
msgid "Backup type"
|
| 1989 |
msgstr "Backup Typ"
|
| 1990 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1991 |
#: inc/class-page-editjob.php:469
|
|
|
|
| 1992 |
#@ backwpup
|
| 1993 |
msgid "Create a backup archive"
|
| 1994 |
msgstr "Backup erstellen"
|
| 2001 |
|
| 2002 |
#: inc/class-page-editjob.php:521
|
| 2003 |
#: inc/class-page-editjob.php:523
|
|
|
|
|
|
|
| 2004 |
#@ backwpup
|
| 2005 |
msgid "Zip"
|
| 2006 |
msgstr "Zip"
|
| 2007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2008 |
#: inc/class-page-editjob.php:524
|
|
|
|
| 2009 |
#@ backwpup
|
| 2010 |
msgid "Tar"
|
| 2011 |
msgstr "Tar"
|
| 2012 |
|
| 2013 |
#: inc/class-page-editjob.php:526
|
| 2014 |
#: inc/class-page-editjob.php:528
|
|
|
|
|
|
|
| 2015 |
#@ backwpup
|
| 2016 |
msgid "Tar GZip"
|
| 2017 |
msgstr "Tar GZip"
|
| 2018 |
|
| 2019 |
#: inc/class-page-editjob.php:530
|
| 2020 |
#: inc/class-page-editjob.php:532
|
|
|
|
|
|
|
| 2021 |
#@ backwpup
|
| 2022 |
msgid "Tar BZip2"
|
| 2023 |
msgstr "Tar BZip2"
|
| 2024 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2025 |
#: inc/class-page-jobs.php:71
|
|
|
|
|
|
|
| 2026 |
#@ backwpup
|
| 2027 |
msgid "Destinations"
|
| 2028 |
msgstr "Zielordner"
|
| 2071 |
|
| 2072 |
#: inc/class-page-editjob.php:682
|
| 2073 |
#: inc/class-page-editjob.php:750
|
|
|
|
| 2074 |
#@ backwpup
|
| 2075 |
msgid "Scheduler"
|
| 2076 |
msgstr "Planer"
|
| 2078 |
#: inc/class-page-editjob.php:687
|
| 2079 |
#: inc/class-page-jobs.php:70
|
| 2080 |
#: inc/class-page-logs.php:115
|
|
|
|
| 2081 |
#@ backwpup
|
| 2082 |
msgid "Type"
|
| 2083 |
msgstr "Typ"
|
| 2084 |
|
| 2085 |
#: inc/class-page-editjob.php:692
|
|
|
|
| 2086 |
#@ backwpup
|
| 2087 |
msgid "Hour"
|
| 2088 |
msgstr "Stunde"
|
| 2089 |
|
| 2090 |
#: inc/class-page-editjob.php:695
|
|
|
|
| 2091 |
#@ backwpup
|
| 2092 |
msgid "Minute"
|
| 2093 |
msgstr "Minute"
|
| 2094 |
|
| 2095 |
#: inc/class-page-editjob.php:699
|
|
|
|
| 2096 |
#@ backwpup
|
| 2097 |
msgid "monthly"
|
| 2098 |
msgstr "monatlich"
|
| 2099 |
|
| 2100 |
#: inc/class-page-editjob.php:701
|
|
|
|
| 2101 |
#@ backwpup
|
| 2102 |
msgid "on"
|
| 2103 |
msgstr "am"
|
| 2104 |
|
| 2105 |
#: inc/class-page-editjob.php:711
|
|
|
|
| 2106 |
#@ backwpup
|
| 2107 |
msgid "weekly"
|
| 2108 |
msgstr "wöchentlich"
|
| 2109 |
|
| 2110 |
#: inc/class-page-editjob.php:713
|
| 2111 |
#: inc/class-page-editjob.php:820
|
|
|
|
| 2112 |
#@ backwpup
|
| 2113 |
msgid "Sunday"
|
| 2114 |
msgstr "Sonntag"
|
| 2115 |
|
| 2116 |
#: inc/class-page-editjob.php:714
|
| 2117 |
#: inc/class-page-editjob.php:821
|
|
|
|
| 2118 |
#@ backwpup
|
| 2119 |
msgid "Monday"
|
| 2120 |
msgstr "Montag"
|
| 2121 |
|
| 2122 |
#: inc/class-page-editjob.php:715
|
| 2123 |
#: inc/class-page-editjob.php:822
|
|
|
|
| 2124 |
#@ backwpup
|
| 2125 |
msgid "Tuesday"
|
| 2126 |
msgstr "Dienstag"
|
| 2127 |
|
| 2128 |
#: inc/class-page-editjob.php:716
|
| 2129 |
#: inc/class-page-editjob.php:823
|
|
|
|
| 2130 |
#@ backwpup
|
| 2131 |
msgid "Wednesday"
|
| 2132 |
msgstr "Mittwoch"
|
| 2133 |
|
| 2134 |
#: inc/class-page-editjob.php:717
|
| 2135 |
#: inc/class-page-editjob.php:824
|
|
|
|
| 2136 |
#@ backwpup
|
| 2137 |
msgid "Thursday"
|
| 2138 |
msgstr "Donnerstag"
|
| 2139 |
|
| 2140 |
#: inc/class-page-editjob.php:718
|
| 2141 |
#: inc/class-page-editjob.php:825
|
|
|
|
| 2142 |
#@ backwpup
|
| 2143 |
msgid "Friday"
|
| 2144 |
msgstr "Freitag"
|
| 2145 |
|
| 2146 |
#: inc/class-page-editjob.php:719
|
| 2147 |
#: inc/class-page-editjob.php:826
|
|
|
|
| 2148 |
#@ backwpup
|
| 2149 |
msgid "Saturday"
|
| 2150 |
msgstr "Samstag"
|
| 2151 |
|
| 2152 |
#: inc/class-page-editjob.php:729
|
|
|
|
| 2153 |
#@ backwpup
|
| 2154 |
msgid "daily"
|
| 2155 |
msgstr "täglich"
|
| 2156 |
|
| 2157 |
#: inc/class-page-editjob.php:739
|
|
|
|
| 2158 |
#@ backwpup
|
| 2159 |
msgid "hourly"
|
| 2160 |
msgstr "stündlich"
|
| 2306 |
msgid "Cron: %s"
|
| 2307 |
msgstr "Cron: %s"
|
| 2308 |
|
| 2309 |
+
#: inc/class-page-backwpup.php:291
|
| 2310 |
#: inc/class-page-jobs.php:197
|
| 2311 |
#@ backwpup
|
| 2312 |
msgid "Not scheduled!"
|
| 2576 |
msgstr "maximum"
|
| 2577 |
|
| 2578 |
#: inc/class-page-settings.php:322
|
|
|
|
|
|
|
| 2579 |
#@ backwpup
|
| 2580 |
msgid "Username:"
|
| 2581 |
msgstr "Benutzername:"
|
| 2719 |
msgid "Loaded PHP Extensions:"
|
| 2720 |
msgstr "Geladene PHP Erweiterungen"
|
| 2721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2722 |
#: inc/class-page-settings.php:465
|
| 2723 |
#@ backwpup
|
| 2724 |
msgid "Save Changes"
|
| 2730 |
msgid "%s Welcome"
|
| 2731 |
msgstr "%s Willkommen"
|
| 2732 |
|
| 2733 |
+
#: inc/class-jobtype-dbdump.php:208
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2734 |
#, php-format
|
| 2735 |
#@ backwpup
|
| 2736 |
+
msgid "Added database dump \"%1$s\" with %2$s to backup file list"
|
| 2737 |
+
msgstr "Datenbank-Backup erstellt \"%1$s\" mit %2$s zur Backup-Liste"
|
| 2738 |
|
| 2739 |
+
#. translators: plugin header field 'Description'
|
| 2740 |
+
#: backwpup.php:0
|
| 2741 |
#@ backwpup
|
| 2742 |
+
msgid "WordPress Backup and more..."
|
| 2743 |
+
msgstr "WordPress Backup und mehr …"
|
| 2744 |
|
| 2745 |
+
#. translators: plugin header field 'Author'
|
| 2746 |
+
#: backwpup.php:0
|
| 2747 |
#@ backwpup
|
| 2748 |
+
msgid "Inpsyde GmbH"
|
| 2749 |
+
msgstr "Inpsyde GmbH"
|
| 2750 |
|
| 2751 |
+
#. translators: plugin header field 'AuthorURI'
|
| 2752 |
+
#: backwpup.php:0
|
| 2753 |
#@ backwpup
|
| 2754 |
+
msgid "http://inpsyde.com"
|
| 2755 |
+
msgstr "http://inpsyde.com"
|
| 2756 |
|
| 2757 |
+
#: inc/class-adminbar.php:53
|
| 2758 |
+
#@ backwpupadminbar
|
| 2759 |
+
msgid "running"
|
| 2760 |
+
msgstr "läuft"
|
| 2761 |
|
| 2762 |
+
#: inc/class-job.php:178
|
| 2763 |
#@ backwpup
|
| 2764 |
+
msgid "Job Start"
|
| 2765 |
+
msgstr "Auftragsstart"
|
| 2766 |
|
| 2767 |
+
#: inc/class-job.php:309
|
| 2768 |
#@ backwpup
|
| 2769 |
+
msgid "No destination correctly defined for backup! Please correct job settings."
|
| 2770 |
+
msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
|
| 2771 |
|
| 2772 |
+
#: inc/class-jobtype-file.php:60
|
| 2773 |
#@ backwpup
|
| 2774 |
+
msgid "Folders to backup"
|
| 2775 |
+
msgstr "Zu sichernde Verzeichnisse"
|
| 2776 |
|
| 2777 |
+
#: inc/class-jobtype-file.php:64
|
| 2778 |
#@ backwpup
|
| 2779 |
+
msgid "Backup root folder"
|
| 2780 |
+
msgstr "Root Verzeichnis sichern"
|
| 2781 |
|
| 2782 |
+
#: inc/class-jobtype-file.php:91
|
|
|
|
|
|
|
| 2783 |
#@ backwpup
|
| 2784 |
+
msgid "Backup content folder"
|
| 2785 |
+
msgstr "Sicherung des Content Verzeichnisses"
|
| 2786 |
|
| 2787 |
+
#: inc/class-jobtype-file.php:118
|
| 2788 |
#@ backwpup
|
| 2789 |
+
msgid "Backup plugins"
|
| 2790 |
+
msgstr "Plugins sichern"
|
| 2791 |
|
| 2792 |
+
#: inc/class-jobtype-file.php:145
|
|
|
|
| 2793 |
#@ backwpup
|
| 2794 |
+
msgid "Backup themes"
|
| 2795 |
+
msgstr "Themes sichern"
|
| 2796 |
|
| 2797 |
+
#: inc/class-jobtype-file.php:172
|
|
|
|
| 2798 |
#@ backwpup
|
| 2799 |
+
msgid "Backup uploads folder"
|
| 2800 |
+
msgstr "Uploads Verzeichnis sichern"
|
| 2801 |
|
| 2802 |
+
#: inc/class-jobtype-file.php:199
|
| 2803 |
#@ backwpup
|
| 2804 |
+
msgid "Extra folders to backup"
|
| 2805 |
+
msgstr "Weitere Verzeichnisse sichern"
|
| 2806 |
|
| 2807 |
+
#: inc/class-jobtype-file.php:206
|
| 2808 |
#@ backwpup
|
| 2809 |
+
msgid "Exclude from backup"
|
| 2810 |
+
msgstr "Nicht mitsichern"
|
| 2811 |
|
| 2812 |
+
#: inc/class-jobtype-file.php:210
|
|
|
|
| 2813 |
#@ backwpup
|
| 2814 |
+
msgid "Thumbnails in uploads"
|
| 2815 |
+
msgstr "Thumbnails in uploads"
|
| 2816 |
|
| 2817 |
+
#: inc/class-jobtype-file.php:214
|
|
|
|
| 2818 |
#@ backwpup
|
| 2819 |
+
msgid "All images with -???x???. will be excluded. Use a plugin like Regenerate Thumbnails to rebuild them after a restore."
|
| 2820 |
+
msgstr "Alle Bilder mit -???x??? im Dateinamen werden nicht mitgesichert. Benutze ein Plugin wir Regenerate Thumbnails um die Thumbnails wiederherzustellen."
|
| 2821 |
|
| 2822 |
+
#: inc/class-jobtype-file.php:218
|
|
|
|
| 2823 |
#@ backwpup
|
| 2824 |
+
msgid "Exclude files/folders from backup"
|
| 2825 |
+
msgstr "Datein/Verzeichnisse nicht mitsichern."
|
| 2826 |
|
| 2827 |
+
#: inc/class-jobtype-file.php:233
|
| 2828 |
#@ backwpup
|
| 2829 |
+
msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root."
|
| 2830 |
+
msgstr "Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom Root"
|
| 2831 |
|
| 2832 |
+
#: inc/class-jobtype-wpexp.php:59
|
|
|
|
| 2833 |
#@ backwpup
|
| 2834 |
+
msgid "XML Export file name"
|
| 2835 |
+
msgstr "XML Export Datei Name"
|
| 2836 |
|
| 2837 |
+
#: inc/class-jobtype-wpexp.php:67
|
| 2838 |
+
#: inc/class-jobtype-wpplugin.php:53
|
| 2839 |
#@ backwpup
|
| 2840 |
+
msgid "File compression"
|
| 2841 |
+
msgstr "Datei Koprimierung"
|
| 2842 |
|
| 2843 |
+
#: inc/class-jobtype-wpplugin.php:45
|
| 2844 |
#@ backwpup
|
| 2845 |
+
msgid "Plugin list file name"
|
| 2846 |
+
msgstr "Plugin listen Datei Name"
|
| 2847 |
|
| 2848 |
+
#: inc/class-page-backwpup.php:156
|
|
|
|
| 2849 |
#@ backwpup
|
| 2850 |
+
msgid "Check the installation"
|
| 2851 |
+
msgstr "Überprüfe die Installation"
|
| 2852 |
|
| 2853 |
+
#: inc/class-page-settings.php:150
|
| 2854 |
#@ backwpup
|
| 2855 |
+
msgid "Security"
|
| 2856 |
+
msgstr "Sicherheit"
|
| 2857 |
|
| 2858 |
+
#: inc/class-page-settings.php:151
|
| 2859 |
#@ backwpup
|
| 2860 |
+
msgid "Security option for BackWPup"
|
| 2861 |
+
msgstr "Sicherheitseinstellungen für BackWPup"
|
| 2862 |
|
| 2863 |
+
#: inc/class-page-settings.php:376
|
|
|
|
|
|
|
| 2864 |
#@ backwpup
|
| 2865 |
+
msgid "Server self connect:"
|
| 2866 |
+
msgstr "Verbindung zum Server selbst:"
|
| 2867 |
|
| 2868 |
+
#: inc/class-page-jobs.php:356
|
| 2869 |
+
#: inc/class-page-settings.php:379
|
| 2870 |
+
#, php-format
|
| 2871 |
#@ backwpup
|
| 2872 |
+
msgid "The HTTP response test get a error \"%s\""
|
| 2873 |
+
msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\""
|
| 2874 |
|
| 2875 |
+
#: inc/class-page-jobs.php:358
|
| 2876 |
+
#: inc/class-page-settings.php:381
|
| 2877 |
+
#, php-format
|
| 2878 |
#@ backwpup
|
| 2879 |
+
msgid "The HTTP response test get a false http status (%s)"
|
| 2880 |
+
msgstr "Der HTTP Antwort Test bekommt den falschen http Status (%s)"
|
| 2881 |
|
| 2882 |
+
#: inc/class-page-settings.php:393
|
|
|
|
| 2883 |
#@ backwpup
|
| 2884 |
+
msgid "Temp folder:"
|
| 2885 |
+
msgstr "Temp Verzeichnis:"
|
| 2886 |
|
| 2887 |
+
#: inc/class-page-settings.php:395
|
| 2888 |
#, php-format
|
| 2889 |
#@ backwpup
|
| 2890 |
+
msgid "Temp folder %s not exist and can't created."
|
| 2891 |
+
msgstr "Temp Verzeichnis %s existiert nicht und konnte nicht erstellt werden."
|
| 2892 |
|
| 2893 |
+
#: inc/class-page-settings.php:397
|
| 2894 |
+
#, php-format
|
| 2895 |
#@ backwpup
|
| 2896 |
+
msgid "Temp folder %s not writable."
|
| 2897 |
+
msgstr "Temp Verzeichnis %s ist nicht beschreibbar."
|
| 2898 |
|
| 2899 |
+
#: inc/class-page-settings.php:403
|
| 2900 |
#@ backwpup
|
| 2901 |
+
msgid "Logs folder:"
|
| 2902 |
+
msgstr "Logdateien Verzeichnis:"
|
| 2903 |
|
| 2904 |
+
#: inc/class-page-settings.php:405
|
| 2905 |
#, php-format
|
| 2906 |
#@ backwpup
|
| 2907 |
+
msgid "Logs folder %s not exist and can't created."
|
| 2908 |
+
msgstr "Logdateien Verzeichnis %s existiert nicht und kann nicht erstellt werden"
|
| 2909 |
|
| 2910 |
+
#: inc/class-page-settings.php:407
|
| 2911 |
#, php-format
|
| 2912 |
#@ backwpup
|
| 2913 |
+
msgid "Logs folder %s not writable."
|
| 2914 |
+
msgstr "Logdateien Verzeichnis %s nicht beschreibbar."
|
| 2915 |
|
| 2916 |
+
#: inc/class-page-settings.php:423
|
| 2917 |
+
#: inc/class-page-settings.php:425
|
| 2918 |
#@ backwpup
|
| 2919 |
+
msgid "Disabled WP Cron"
|
| 2920 |
+
msgstr "WP Cron abgeschaltet"
|
| 2921 |
|
| 2922 |
+
#: inc/class-job.php:282
|
| 2923 |
#, php-format
|
| 2924 |
#@ backwpup
|
| 2925 |
+
msgid "[INFO] Maximum script execution time is %1$d seconds"
|
| 2926 |
+
msgstr "[INFO] Maximale Script ausführungszeit ist %1$d Sekunden"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2927 |
|
| 2928 |
+
#: inc/class-page-jobs.php:212
|
| 2929 |
#, php-format
|
| 2930 |
#@ backwpup
|
| 2931 |
+
msgid "Runtime: %d seconds"
|
| 2932 |
+
msgstr "Ausführungszeit: %d Sekunden"
|
| 2933 |
|
| 2934 |
+
#: inc/class-job.php:623
|
| 2935 |
#@ backwpup
|
| 2936 |
+
msgid "Second process start terminated, because a other job is already running!"
|
| 2937 |
+
msgstr "Ein zweiter Prozess start wurde abgebrochen, weil der alte Auftrag noch läuft!"
|
| 2938 |
|
| 2939 |
+
#: inc/class-job.php:875
|
| 2940 |
#, php-format
|
| 2941 |
#@ backwpup
|
| 2942 |
+
msgid "Signal %d is sent to script!"
|
| 2943 |
+
msgstr "Signal %d wurde zum Script gesendet!"
|
| 2944 |
|
| 2945 |
+
#: inc/class-page-backups.php:312
|
| 2946 |
+
#: inc/class-page-jobs.php:210
|
| 2947 |
+
#: inc/class-page-logs.php:181
|
| 2948 |
#, php-format
|
| 2949 |
#@ backwpup
|
| 2950 |
+
msgid "%1$s at %2$s"
|
| 2951 |
+
msgstr "%1$s um %2$s"
|
| 2952 |
|
| 2953 |
+
#: inc/class-page-jobs.php:195
|
| 2954 |
#, php-format
|
| 2955 |
#@ backwpup
|
| 2956 |
+
msgid "%1$s at %2$s by WP-Cron"
|
| 2957 |
+
msgstr "%1$s um %2$s mit WP-Cron"
|
| 2958 |
|
| 2959 |
+
#: inc/class-admin.php:230
|
|
|
|
| 2960 |
#@ backwpup
|
| 2961 |
+
msgid "About"
|
| 2962 |
+
msgstr "Über"
|
| 2963 |
|
| 2964 |
+
#: inc/class-help.php:29
|
|
|
|
| 2965 |
#@ backwpup
|
| 2966 |
+
msgid "Manual"
|
| 2967 |
+
msgstr "Handbuch"
|
| 2968 |
|
| 2969 |
+
#: inc/class-job.php:280
|
|
|
|
| 2970 |
#@ backwpup
|
| 2971 |
+
msgid "[INFO] BackWPup job started form commandline interface"
|
| 2972 |
+
msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
|
| 2973 |
|
| 2974 |
+
#: inc/class-job.php:539
|
| 2975 |
+
#@ default
|
| 2976 |
+
msgid "Job Started"
|
| 2977 |
+
msgstr ""
|
|
|
|
| 2978 |
|
| 2979 |
+
#: inc/class-jobtype-dbdump.php:13
|
|
|
|
| 2980 |
#@ backwpup
|
| 2981 |
+
msgid "DB Backup"
|
| 2982 |
+
msgstr "Datenbank-Backup"
|
| 2983 |
|
| 2984 |
+
#: inc/class-page-about.php:75
|
|
|
|
| 2985 |
#, php-format
|
| 2986 |
#@ backwpup
|
| 2987 |
+
msgid "First <a href=\"%1$s\">set up a job</a>, and plan what you want to save. You can <a href=\"%2$s\">use the wizards</a> or the expert mode."
|
| 2988 |
+
msgstr "<a href=\"%1$s\">Erstellen Sie einen Auftrag</a>, dann planen Sie, was Sie sichern möchten. Sie können <a href=\"%2$s\">Assistenten benutzen</a> oder den Expertenmodus."
|
| 2989 |
|
| 2990 |
+
#: inc/class-page-about.php:85
|
|
|
|
| 2991 |
#@ backwpup
|
| 2992 |
+
msgid "First set up a job, and plan what you want to save."
|
| 2993 |
+
msgstr "Erstellen Sie einen Auftrag, dann planen Sie, was Sie sichern möchten."
|
| 2994 |
|
| 2995 |
+
#: inc/class-page-about.php:112
|
|
|
|
| 2996 |
#@ backwpup
|
| 2997 |
+
msgid "Save your database"
|
| 2998 |
+
msgstr "Sichern Sie Ihre Datenbank"
|
| 2999 |
|
| 3000 |
+
#: inc/class-page-about.php:115
|
|
|
|
|
|
|
| 3001 |
#@ backwpup
|
| 3002 |
+
msgid "Save your database regularly"
|
| 3003 |
+
msgstr "Sichern Sie Ihre Datenbank regelmäßig"
|
| 3004 |
|
| 3005 |
+
#: inc/class-page-about.php:121
|
| 3006 |
+
#: inc/class-page-about.php:125
|
|
|
|
| 3007 |
#@ backwpup
|
| 3008 |
+
msgid "WordPress XML Export"
|
| 3009 |
+
msgstr "WordPress-XML-Export"
|
| 3010 |
|
| 3011 |
+
#: inc/class-page-about.php:122
|
|
|
|
| 3012 |
#@ backwpup
|
| 3013 |
+
msgid "You can choose the built-in WordPress export format in addition or exclusive to save your data. This works in automated backups too of course. The advantage is: you can import these files into a blog with the regular WordPress importer."
|
| 3014 |
+
msgstr "Sie können das interne WordPress-Export-Format zusätzlich oder ausschließlich wählen, um Ihre Daten zu sichern. Das funktioniert natürlich auch in automatischen Backups. Der Vorteil: Sie können dieses Format mit dem normalen WordPress-Importer-Plugin importieren."
|
| 3015 |
|
| 3016 |
+
#: inc/class-page-about.php:130
|
|
|
|
|
|
|
| 3017 |
#@ backwpup
|
| 3018 |
+
msgid "Save all data from the webserver"
|
| 3019 |
+
msgstr "Sichern Sie alle Daten vom Webserver"
|
| 3020 |
|
| 3021 |
+
#: inc/class-page-about.php:133
|
| 3022 |
#@ backwpup
|
| 3023 |
+
msgid "Save all files"
|
| 3024 |
+
msgstr "Sichern Sie alle Dateien"
|
| 3025 |
|
| 3026 |
+
#: inc/class-page-about.php:139
|
| 3027 |
+
#: inc/class-page-about.php:143
|
| 3028 |
#@ backwpup
|
| 3029 |
+
msgid "Security!"
|
| 3030 |
+
msgstr "Sicherheit!"
|
| 3031 |
|
| 3032 |
+
#: inc/class-page-about.php:140
|
| 3033 |
#@ backwpup
|
| 3034 |
+
msgid "By default everything is encrypted: connections to external services, local files and access to directories."
|
| 3035 |
+
msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
|
| 3036 |
|
| 3037 |
+
#: inc/class-page-about.php:148
|
| 3038 |
+
#: inc/class-page-about.php:151
|
| 3039 |
#@ backwpup
|
| 3040 |
+
msgid "Cloud Support"
|
| 3041 |
+
msgstr "Cloud-Support"
|
| 3042 |
|
| 3043 |
+
#: inc/class-page-about.php:152
|
|
|
|
| 3044 |
#@ backwpup
|
| 3045 |
+
msgid "BackWPup supports multiple cloud services in parallel. This ensures the backups are redundant."
|
| 3046 |
+
msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
|
| 3047 |
|
| 3048 |
+
#: inc/class-page-about.php:342
|
|
|
|
| 3049 |
#@ backwpup
|
| 3050 |
+
msgid "Backup now!"
|
| 3051 |
+
msgstr "Sichern Sie Ihre Daten jetzt!"
|
| 3052 |
|
| 3053 |
+
#: inc/class-page-editjob.php:628
|
|
|
|
|
|
|
| 3054 |
#@ backwpup
|
| 3055 |
+
msgid "Start job with CLI"
|
| 3056 |
+
msgstr "Auftrag per CLI starten"
|
| 3057 |
|
| 3058 |
+
#: inc/class-wp-cli.php:40
|
| 3059 |
#@ backwpup
|
| 3060 |
+
msgid "Nothing to abort!"
|
| 3061 |
+
msgstr "Es gibt nichts abzubrechen!"
|
| 3062 |
|
| 3063 |
+
#: inc/class-wp-cli.php:97
|
| 3064 |
+
#: inc/class-wp-cli.php:118
|
| 3065 |
+
#, php-format
|
| 3066 |
#@ backwpup
|
| 3067 |
+
msgid "ID: %1$d Name: %2$s"
|
| 3068 |
+
msgstr "ID: %1$d Name: %2$s"
|
| 3069 |
|
| 3070 |
+
#: inc/class-wp-cli.php:119
|
| 3071 |
+
#, php-format
|
| 3072 |
#@ backwpup
|
| 3073 |
+
msgid "Warnings: %1$d Errors: %2$d"
|
| 3074 |
+
msgstr "Warnungen: %1$d Fehler: %2$d"
|
| 3075 |
|
| 3076 |
+
#: inc/class-page-jobs.php:322
|
| 3077 |
+
#, php-format
|
| 3078 |
#@ backwpup
|
| 3079 |
+
msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper write permissions."
|
| 3080 |
+
msgstr "Das temporäre Verzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 3081 |
|
| 3082 |
+
#: inc/class-page-jobs.php:331
|
| 3083 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3084 |
#@ backwpup
|
| 3085 |
msgid "Logs folder %s does not exist and cannot be created. Please create it and set proper write permissions."
|
| 3086 |
msgstr "Das Logverzeichnis %s existiert nicht, und es kann auch nicht erstellt werden. Bitte erstellen Sie es, und setzen Sie die passenden Schreibrechte."
|
| 3087 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3088 |
#: inc/class-destination-ftp.php:93
|
| 3089 |
#@ backwpup
|
| 3090 |
msgid "FTP specific settings"
|
| 3189 |
msgid "Last message: %s"
|
| 3190 |
msgstr "Letzte Nachricht: %s"
|
| 3191 |
|
| 3192 |
+
#: inc/class-admin.php:388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3193 |
#, php-format
|
| 3194 |
#@ backwpup
|
| 3195 |
msgctxt "developer name, link text: Daniel Hüsken"
|
| 3254 |
msgid "https://marketpress.com/product/backwpup-pro/"
|
| 3255 |
msgstr "https://marketpress.de/product/backwpup-pro/"
|
| 3256 |
|
| 3257 |
+
#: inc/class-admin.php:120
|
| 3258 |
#: inc/class-help.php:29
|
| 3259 |
#@ backwpup
|
| 3260 |
msgid "https://marketpress.com/documentation/backwpup-pro/"
|
| 3261 |
msgstr "https://marketpress.de/dokumentation/backwpup-pro/"
|
| 3262 |
|
| 3263 |
+
#: inc/class-admin.php:122
|
| 3264 |
#: inc/class-help.php:26
|
| 3265 |
#@ backwpup
|
| 3266 |
msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/"
|
| 3267 |
msgstr "https://marketpress.de/support/forum/plugins/backwpup-pro/"
|
| 3268 |
|
| 3269 |
+
#: inc/class-admin.php:122
|
| 3270 |
#: inc/class-help.php:26
|
| 3271 |
#@ backwpup
|
| 3272 |
msgid "Pro Support"
|
| 3302 |
msgid "Compress log files with GZip."
|
| 3303 |
msgstr "Komprimiere Logdateien mit Gzip."
|
| 3304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3305 |
#: inc/class-page-backwpup.php:92
|
| 3306 |
#@ backwpup
|
| 3307 |
msgid "Use the short links in the <b>First steps</b> box to schedule backup plans."
|
| 3317 |
msgid "Reset all settings to default"
|
| 3318 |
msgstr "Alle Einstellungen zurücksetzen"
|
| 3319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3320 |
#: inc/class-jobtype-file.php:225
|
| 3321 |
#@ backwpup
|
| 3322 |
msgid "Special option"
|
| 3327 |
msgid "Include special files"
|
| 3328 |
msgstr "Spezielle Dateien einschließen"
|
| 3329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3330 |
#: backwpup.php:42
|
| 3331 |
#@ backwpup
|
| 3332 |
msgid "BackWPup requires PHP version 5.2.6 or greater and WordPress 3.2 or greater."
|
| 3397 |
msgid "Cannot open dump file"
|
| 3398 |
msgstr "Konnte Backup nicht öffnen"
|
| 3399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3400 |
#: inc/class-create-archive.php:112
|
| 3401 |
#, php-format
|
| 3402 |
#@ backwpup
|
| 3431 |
msgid "Cannot set DB charset to %s"
|
| 3432 |
msgstr "Kann Datenbank-Zeichenkodierung nicht auf %s setzen."
|
| 3433 |
|
| 3434 |
+
#: inc/class-page-backwpup.php:168
|
| 3435 |
#@ backwpup
|
| 3436 |
msgid "One click backup"
|
| 3437 |
msgstr "Ein-Klick-Backup"
|
| 3438 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3439 |
#: inc/class-create-archive.php:226
|
| 3440 |
#, php-format
|
| 3441 |
#@ backwpup
|
| 3443 |
msgid "File %s does not exist or is not readable"
|
| 3444 |
msgstr "Die Datei %s existiert nicht, oder sie ist nicht lesbar."
|
| 3445 |
|
| 3446 |
+
#: inc/class-page-backwpup.php:170
|
| 3447 |
#@ backwpup
|
| 3448 |
msgid "Download database backup"
|
| 3449 |
msgstr "Datenbank-Backup herunterladen"
|
| 3450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3451 |
#: inc/class-job.php:268
|
| 3452 |
#, php-format
|
| 3453 |
#@ backwpup
|
| 3465 |
msgid "Please go to your plugin page and active the license to have the autoupdates enabled."
|
| 3466 |
msgstr "Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um automatische Aktualisierungen zu aktivieren."
|
| 3467 |
|
| 3468 |
+
#: inc/class-admin.php:124
|
| 3469 |
#: inc/class-help.php:28
|
| 3470 |
#@ backwpup
|
| 3471 |
msgid "http://wordpress.org/support/plugin/backwpup/"
|
| 3472 |
msgstr "http://wordpress.org/support/plugin/backwpup/"
|
| 3473 |
|
| 3474 |
+
#: inc/class-admin.php:124
|
| 3475 |
#: inc/class-help.php:28
|
| 3476 |
#@ backwpup
|
| 3477 |
msgid "Support"
|
| 3673 |
msgid "<strong>Automatic update from MarketPress</strong>"
|
| 3674 |
msgstr "<strong>Automatische Aktualisierung durch MarketPress</strong>"
|
| 3675 |
|
| 3676 |
+
#: inc/class-admin.php:387
|
| 3677 |
#: inc/class-page-about.php:335
|
| 3678 |
+
#: inc/class-page-backwpup.php:141
|
| 3679 |
#@ backwpup
|
| 3680 |
msgid "http://marketpress.com/product/backwpup-pro/"
|
| 3681 |
msgstr "http://marketpress.de/product/backwpup-pro/"
|
| 3697 |
|
| 3698 |
#: inc/class-destination-s3-v1.php:395
|
| 3699 |
#: inc/class-destination-s3.php:392
|
|
|
|
|
|
|
| 3700 |
#, php-format
|
| 3701 |
#@ backwpup
|
| 3702 |
msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
|
| 3764 |
msgid "The file name of an archive cannot be empty."
|
| 3765 |
msgstr "Der Dateiname eines Archivs kann nicht leer sein."
|
| 3766 |
|
| 3767 |
+
#: inc/class-admin.php:270
|
| 3768 |
+
#: inc/class-admin.php:276
|
| 3769 |
#@ backwpup
|
| 3770 |
msgid "Cheating, huh?"
|
| 3771 |
msgstr "Mogeln, wie?"
|
| 3772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3773 |
#: inc/class-adminbar.php:69
|
| 3774 |
#@ backwpupadminbar
|
| 3775 |
msgid "Now Running"
|
| 3776 |
+
msgstr "Läuft gerade"
|
| 3777 |
|
| 3778 |
#: inc/class-create-archive.php:79
|
| 3779 |
#, php-format
|
| 3787 |
msgid "Aborted, because no progress for 2 hours!"
|
| 3788 |
msgstr "Abgebrochen, da seit 2 Stunden kein Fortschritt!"
|
| 3789 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3790 |
#: inc/class-destination-dropbox.php:238
|
| 3791 |
#, php-format
|
| 3792 |
#@ backwpup
|
| 3794 |
msgstr "%d. Versuche, das Backup zur Dropbox zu senden …"
|
| 3795 |
|
| 3796 |
#: inc/class-destination-dropbox.php:246
|
|
|
|
| 3797 |
#, php-format
|
| 3798 |
#@ backwpup
|
| 3799 |
msgid "Authenticated with Dropbox of user %s"
|
| 3805 |
msgstr "Deine Dropbox scheint voll zu sein."
|
| 3806 |
|
| 3807 |
#: inc/class-destination-dropbox.php:256
|
|
|
|
| 3808 |
#, php-format
|
| 3809 |
#@ backwpup
|
| 3810 |
msgid "%s available on your Dropbox"
|
| 3845 |
msgstr "Backup als E-Mail versendet"
|
| 3846 |
|
| 3847 |
#: inc/class-destination-email.php:55
|
|
|
|
| 3848 |
#@ backwpup
|
| 3849 |
msgid "E-Mail Address"
|
| 3850 |
msgstr "E-Mail-Adresse"
|
| 3855 |
msgstr "E-Mail-Adresse"
|
| 3856 |
|
| 3857 |
#: inc/class-destination-email.php:62
|
|
|
|
| 3858 |
#@ backwpup
|
| 3859 |
msgid "E-Mail address to which Backups are sent."
|
| 3860 |
msgstr "E-Mail-Adresse, zu der Backups gesendet werden."
|
| 3861 |
|
| 3862 |
#: inc/class-destination-email.php:66
|
| 3863 |
#: inc/class-destination-email.php:68
|
|
|
|
|
|
|
| 3864 |
#@ backwpup
|
| 3865 |
msgid "Send test e-mail"
|
| 3866 |
msgstr "Test-E-Mail senden"
|
| 3871 |
msgstr "Absende-Einstellungen für E-Mails"
|
| 3872 |
|
| 3873 |
#: inc/class-destination-email.php:78
|
|
|
|
| 3874 |
#@ backwpup
|
| 3875 |
msgid "Maximum file size to be included in an e-mail. 0 = unlimited"
|
| 3876 |
msgstr "Maximale Dateigröße für den E-Mail-Versand. 0 = unbegrenzt"
|
| 3877 |
|
| 3878 |
#: inc/class-destination-email.php:82
|
| 3879 |
#: inc/class-destination-email.php:86
|
|
|
|
|
|
|
| 3880 |
#@ backwpup
|
| 3881 |
msgid "Sender e-mail address"
|
| 3882 |
msgstr "E-Mail-Adresse des Absenders"
|
| 4084 |
msgstr "Upload zum S3 Service begonnen …"
|
| 4085 |
|
| 4086 |
#: inc/class-destination-sugarsync.php:44
|
|
|
|
| 4087 |
#@ backwpup
|
| 4088 |
msgid "E-Mail address:"
|
| 4089 |
msgstr "E-Mail-Adresse"
|
| 4090 |
|
| 4091 |
#: inc/class-destination-sugarsync.php:56
|
| 4092 |
#: inc/class-destination-sugarsync.php:151
|
|
|
|
|
|
|
| 4093 |
#@ backwpup
|
| 4094 |
msgid "Create Sugarsync account"
|
| 4095 |
msgstr "SugarSync-Konto erstellen"
|
| 4152 |
msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)"
|
| 4153 |
|
| 4154 |
#: inc/class-jobtype-dbdump.php:155
|
|
|
|
| 4155 |
#, php-format
|
| 4156 |
#@ backwpup
|
| 4157 |
msgid "%d. Try to dump database …"
|
| 4228 |
msgstr "Alle Plugin-Informationen"
|
| 4229 |
|
| 4230 |
#: inc/class-mysqldump.php:90
|
|
|
|
| 4231 |
#, php-format
|
| 4232 |
#@ backwpup
|
| 4233 |
msgid "Cannot connect to MySQL database %1$d: %2$s"
|
| 4286 |
msgid "Sorry, you don't have permissions to do that."
|
| 4287 |
msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion."
|
| 4288 |
|
| 4289 |
+
#: inc/class-page-backwpup.php:149
|
| 4290 |
#@ backwpup
|
| 4291 |
msgid "First Steps"
|
| 4292 |
msgstr "Erste Schritte"
|
| 4293 |
|
| 4294 |
+
#: inc/class-page-backwpup.php:170
|
| 4295 |
#@ backwpup
|
| 4296 |
msgid "Generate a database backup of WordPress tables and download it right away!"
|
| 4297 |
msgstr "Generieren Sie ein Datenbank-Backup der WordPress-Tabellen und laden Sie es gleich herunter!"
|
| 4298 |
|
| 4299 |
+
#: inc/class-page-backwpup.php:224
|
| 4300 |
#@ backwpup
|
| 4301 |
msgid "OK"
|
| 4302 |
msgstr "OK"
|
| 4312 |
msgstr "Auftragsdetails"
|
| 4313 |
|
| 4314 |
#: inc/class-page-editjob.php:433
|
|
|
|
| 4315 |
#@ backwpup
|
| 4316 |
msgid "This job is a …"
|
| 4317 |
msgstr "Dieser Auftrag ist ein …"
|
| 4594 |
msgid "Running job"
|
| 4595 |
msgstr "Laufender Auftrag"
|
| 4596 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4597 |
#: inc/class-destination-s3.php:192
|
| 4598 |
#@ backwpup
|
| 4599 |
msgid "Multipart splits file into multiple chunks while uploading. This is necessary for displaying the upload process and to transfer bigger files. Beware: There is a known issue at Google storage with this option!"
|
| 4644 |
msgstr "\"VON\"-Feld der E-Mail (Name < email@adresse.tld >)"
|
| 4645 |
|
| 4646 |
#: inc/class-jobtype-dbdump.php:61
|
|
|
|
| 4647 |
#@ backwpup
|
| 4648 |
msgid "Settings for database backup"
|
| 4649 |
msgstr "Einstellungen für das Datenbank Backup"
|
| 4650 |
|
| 4651 |
#: inc/class-jobtype-dbdump.php:65
|
|
|
|
| 4652 |
#@ backwpup
|
| 4653 |
msgid "Tables to backup"
|
| 4654 |
msgstr "Tabellen zu sichern"
|
| 4655 |
|
| 4656 |
+
#: inc/class-admin.php:427
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4657 |
#@ backwpup
|
| 4658 |
msgid "BackWPup Role"
|
| 4659 |
msgstr "BackWPup Rolle"
|
| 4660 |
|
| 4661 |
+
#: inc/class-admin.php:441
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4662 |
#@ backwpup
|
| 4663 |
msgid "Role that the user have on BackWPup"
|
| 4664 |
msgstr "Rolle die dieser Benutzer hat bei BackWPup"
|
| 4683 |
msgstr "Job mit Warnungen beendet in %s Sekunden. Sie beheben Sie die Warnungen für eine korrekte Ausführung."
|
| 4684 |
|
| 4685 |
#: inc/class-page-settings.php:384
|
|
|
|
| 4686 |
#, php-format
|
| 4687 |
#@ backwpup
|
| 4688 |
msgid "The BackWPup HTTP response header gives back the false value \"%s\""
|
| 4694 |
msgid "Running file can't read. tra again."
|
| 4695 |
msgstr "Laufzeit Datei kann nicht gelesen werden. Bitte versuchen Sie es erneut."
|
| 4696 |
|
| 4697 |
+
#. translators: plugin header field 'Version'
|
| 4698 |
+
#: backwpup.php:0
|
| 4699 |
+
#@ backwpup
|
| 4700 |
+
msgid "3.0.10"
|
| 4701 |
+
msgstr ""
|
| 4702 |
+
|
| 4703 |
+
#: inc/class-page-backwpup.php:136
|
| 4704 |
+
#@ backwpup
|
| 4705 |
+
msgid "Thank you for using BackWPup!"
|
| 4706 |
+
msgstr "Vielen Dank, dass Sie BackWPup benutzen!"
|
| 4707 |
+
|
| 4708 |
+
#: inc/class-admin.php:387
|
| 4709 |
+
#, php-format
|
| 4710 |
+
#@ backwpup
|
| 4711 |
+
msgid "<img src=\"%s\"/> <a href=\"%s\">Get BackWPup Pro now.</a>"
|
| 4712 |
+
msgstr "<img src=\"%s\"/> <a href=\"%s\">Erfahren Sie mehr über BackWPup Pro</a>"
|
| 4713 |
+
|
| 4714 |
+
#: inc/class-admin.php:431
|
| 4715 |
+
#@ backwpup
|
| 4716 |
+
msgid "— No role for BackWPup —"
|
| 4717 |
+
msgstr "— Keine Rolle für BackWPup —"
|
| 4718 |
+
|
| 4719 |
+
#: inc/class-page-backwpup.php:139
|
| 4720 |
+
#@ backwpup
|
| 4721 |
+
msgid "BackWPup Pro offers you first-class premium support and more features like a wizard for scheduled backup jobs, differential backup of changed directories in the cloud and much more!"
|
| 4722 |
+
msgstr "BackWPup Pro bietet Ihnen neben erstklassigem Premiumsupport weitere Funktionen wie Auftragsassistenten, Sicherung geänderter Verzeichnisse in der Cloud und vieles mehr!"
|
| 4723 |
+
|
| 4724 |
+
#: inc/class-page-backwpup.php:141
|
| 4725 |
#@ backwpup
|
| 4726 |
+
msgid "Get BackWPup Pro now"
|
| 4727 |
+
msgstr "Erfahren Sie mehr über BackWPup Pro"
|
| 4728 |
|
languages/backwpupadminbar-de_DE.mo
CHANGED
|
Binary file
|
readme.txt
CHANGED
|
@@ -179,8 +179,14 @@ Please check all settings after the update:
|
|
| 179 |
|
| 180 |
|
| 181 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
= Version 3.0.10 =
|
| 183 |
-
* Fixed
|
| 184 |
= Version 3.0.9 =
|
| 185 |
* Fixed: Fixed bug in Dropbox temp file fallback
|
| 186 |
* Fixed: Not working if WP-Cron Control active
|
| 179 |
|
| 180 |
|
| 181 |
== Changelog ==
|
| 182 |
+
= Version 3.0.11 =
|
| 183 |
+
* Improved: About page will only be shown after install
|
| 184 |
+
* Updated: AWS SDK to Version 2.3.1 (PHP 5.3.3+)
|
| 185 |
+
* Fixed: some notices and warnings
|
| 186 |
+
* Fixed: Change of BackWPup role for other users
|
| 187 |
+
* Added: Message for Pro version to support plugin
|
| 188 |
= Version 3.0.10 =
|
| 189 |
+
* Fixed only Version on WordPress.org because of SVN upload problems with Symfony folder from AWS
|
| 190 |
= Version 3.0.9 =
|
| 191 |
* Fixed: Fixed bug in Dropbox temp file fallback
|
| 192 |
* Fixed: Not working if WP-Cron Control active
|
sdk/Aws/Aws/Common/Aws.php
CHANGED
|
@@ -27,7 +27,7 @@ class Aws extends ServiceBuilderLoader
|
|
| 27 |
/**
|
| 28 |
* @var string Current version of the SDK
|
| 29 |
*/
|
| 30 |
-
const VERSION = '2.3.
|
| 31 |
|
| 32 |
/**
|
| 33 |
* Create a new service locator for the AWS SDK
|
| 27 |
/**
|
| 28 |
* @var string Current version of the SDK
|
| 29 |
*/
|
| 30 |
+
const VERSION = '2.3.1';
|
| 31 |
|
| 32 |
/**
|
| 33 |
* Create a new service locator for the AWS SDK
|
sdk/Aws/Aws/Common/Resources/aws-config.php
CHANGED
|
@@ -196,6 +196,12 @@ return array(
|
|
| 196 |
'class' => 'Aws\Sts\StsClient'
|
| 197 |
),
|
| 198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 199 |
'swf' => array(
|
| 200 |
'alias' => 'Swf',
|
| 201 |
'extends' => 'default_settings',
|
| 196 |
'class' => 'Aws\Sts\StsClient'
|
| 197 |
),
|
| 198 |
|
| 199 |
+
'support' => array(
|
| 200 |
+
'alias' => 'Support',
|
| 201 |
+
'extends' => 'default_settings',
|
| 202 |
+
'class' => 'Aws\Support\SupportClient'
|
| 203 |
+
),
|
| 204 |
+
|
| 205 |
'swf' => array(
|
| 206 |
'alias' => 'Swf',
|
| 207 |
'extends' => 'default_settings',
|
sdk/Aws/Aws/S3/Command/S3Command.php
CHANGED
|
@@ -16,8 +16,10 @@
|
|
| 16 |
|
| 17 |
namespace Aws\S3\Command;
|
| 18 |
|
|
|
|
| 19 |
use Guzzle\Service\Command\OperationCommand;
|
| 20 |
use Guzzle\Service\Resource\Model;
|
|
|
|
| 21 |
|
| 22 |
/**
|
| 23 |
* Adds functionality to Amazon S3 commands:
|
|
@@ -43,11 +45,22 @@ class S3Command extends OperationCommand
|
|
| 43 |
*/
|
| 44 |
protected function process()
|
| 45 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
parent::process();
|
| 47 |
|
| 48 |
// Set the GetObject URL if using the PutObject operation
|
| 49 |
if ($this->result instanceof Model && $this->getName() == 'PutObject') {
|
| 50 |
-
$this->result->set('ObjectURL', $
|
| 51 |
}
|
| 52 |
}
|
| 53 |
}
|
| 16 |
|
| 17 |
namespace Aws\S3\Command;
|
| 18 |
|
| 19 |
+
use Aws\S3\Exception\RedirectException;
|
| 20 |
use Guzzle\Service\Command\OperationCommand;
|
| 21 |
use Guzzle\Service\Resource\Model;
|
| 22 |
+
use Guzzle\Common\Event;
|
| 23 |
|
| 24 |
/**
|
| 25 |
* Adds functionality to Amazon S3 commands:
|
| 45 |
*/
|
| 46 |
protected function process()
|
| 47 |
{
|
| 48 |
+
$request = $this->getRequest();
|
| 49 |
+
$response = $this->getResponse();
|
| 50 |
+
|
| 51 |
+
// Dispatch an error if a 301 redirect occurred
|
| 52 |
+
if ($response->getStatusCode() == 301) {
|
| 53 |
+
$this->getClient()->getEventDispatcher()->dispatch('request.error', new Event(array(
|
| 54 |
+
'request' => $this->getRequest(),
|
| 55 |
+
'response' => $response
|
| 56 |
+
)));
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
parent::process();
|
| 60 |
|
| 61 |
// Set the GetObject URL if using the PutObject operation
|
| 62 |
if ($this->result instanceof Model && $this->getName() == 'PutObject') {
|
| 63 |
+
$this->result->set('ObjectURL', $request->getUrl());
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
sdk/Aws/Aws/S3/Exception/BucketAlreadyExistsException.php
CHANGED
|
@@ -17,7 +17,6 @@
|
|
| 17 |
namespace Aws\S3\Exception;
|
| 18 |
|
| 19 |
/**
|
| 20 |
-
* The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select
|
| 21 |
-
* a different name and try again.
|
| 22 |
*/
|
| 23 |
class BucketAlreadyExistsException extends S3Exception {}
|
| 17 |
namespace Aws\S3\Exception;
|
| 18 |
|
| 19 |
/**
|
| 20 |
+
* The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select a different name and try again.
|
|
|
|
| 21 |
*/
|
| 22 |
class BucketAlreadyExistsException extends S3Exception {}
|
sdk/Aws/Aws/S3/Exception/Parser/S3ExceptionParser.php
CHANGED
|
@@ -24,6 +24,23 @@ use Guzzle\Http\Message\Response;
|
|
| 24 |
*/
|
| 25 |
class S3ExceptionParser extends DefaultXmlExceptionParser
|
| 26 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
/**
|
| 28 |
* {@inheritdoc}
|
| 29 |
*/
|
| 24 |
*/
|
| 25 |
class S3ExceptionParser extends DefaultXmlExceptionParser
|
| 26 |
{
|
| 27 |
+
/**
|
| 28 |
+
* {@inheritdoc}
|
| 29 |
+
*/
|
| 30 |
+
public function parse(Response $response)
|
| 31 |
+
{
|
| 32 |
+
$data = parent::parse($response);
|
| 33 |
+
|
| 34 |
+
if ($response->getStatusCode() === 301) {
|
| 35 |
+
$data['type'] = 'client';
|
| 36 |
+
if (isset($data['message'], $data['parsed'])) {
|
| 37 |
+
$data['message'] = rtrim($data['message'], '.') . ': "' . $data['parsed']->Endpoint . '".';
|
| 38 |
+
}
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
return $data;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
/**
|
| 45 |
* {@inheritdoc}
|
| 46 |
*/
|
sdk/Aws/Aws/S3/Resources/s3-2006-03-01.php
CHANGED
|
@@ -2553,6 +2553,12 @@ return array (
|
|
| 2553 |
'location' => 'header',
|
| 2554 |
'sentAs' => 'Content-Language',
|
| 2555 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2556 |
'ContentMD5' => array(
|
| 2557 |
'description' => 'Content-MD5 checksum of the body. Set to false to disable',
|
| 2558 |
'default' => true,
|
|
@@ -2892,6 +2898,12 @@ return array (
|
|
| 2892 |
'type' => 'string',
|
| 2893 |
'location' => 'uri',
|
| 2894 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2895 |
'Key' => array(
|
| 2896 |
'required' => true,
|
| 2897 |
'type' => 'string',
|
| 2553 |
'location' => 'header',
|
| 2554 |
'sentAs' => 'Content-Language',
|
| 2555 |
),
|
| 2556 |
+
'ContentLength' => array(
|
| 2557 |
+
'description' => 'Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.',
|
| 2558 |
+
'type' => 'numeric',
|
| 2559 |
+
'location' => 'header',
|
| 2560 |
+
'sentAs' => 'Content-Length'
|
| 2561 |
+
),
|
| 2562 |
'ContentMD5' => array(
|
| 2563 |
'description' => 'Content-MD5 checksum of the body. Set to false to disable',
|
| 2564 |
'default' => true,
|
| 2898 |
'type' => 'string',
|
| 2899 |
'location' => 'uri',
|
| 2900 |
),
|
| 2901 |
+
'ContentLength' => array(
|
| 2902 |
+
'description' => 'Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.',
|
| 2903 |
+
'type' => 'numeric',
|
| 2904 |
+
'location' => 'header',
|
| 2905 |
+
'sentAs' => 'Content-Length'
|
| 2906 |
+
),
|
| 2907 |
'Key' => array(
|
| 2908 |
'required' => true,
|
| 2909 |
'type' => 'string',
|
sdk/Aws/Aws/S3/S3Client.php
CHANGED
|
@@ -117,7 +117,7 @@ class S3Client extends AbstractClient
|
|
| 117 |
'SetBucketAcl' => 'PutBucketAcl',
|
| 118 |
'CreateObject' => 'PutObject',
|
| 119 |
'DeleteObjects' => 'DeleteMultipleObjects',
|
| 120 |
-
'
|
| 121 |
'SetObjectAcl' => 'PutObjectAcl',
|
| 122 |
'GetLogs' => 'GetBucketLogging',
|
| 123 |
'GetVersioningStatus' => 'GetBucketVersioning',
|
| 117 |
'SetBucketAcl' => 'PutBucketAcl',
|
| 118 |
'CreateObject' => 'PutObject',
|
| 119 |
'DeleteObjects' => 'DeleteMultipleObjects',
|
| 120 |
+
'PutObjectCopy' => 'CopyObject',
|
| 121 |
'SetObjectAcl' => 'PutObjectAcl',
|
| 122 |
'GetLogs' => 'GetBucketLogging',
|
| 123 |
'GetVersioningStatus' => 'GetBucketVersioning',
|
sdk/Aws/Aws/S3/StreamWrapper.php
CHANGED
|
@@ -202,7 +202,7 @@ class StreamWrapper
|
|
| 202 |
public function stream_flush()
|
| 203 |
{
|
| 204 |
if ($this->mode == 'r') {
|
| 205 |
-
return
|
| 206 |
}
|
| 207 |
|
| 208 |
$this->body->rewind();
|
| 202 |
public function stream_flush()
|
| 203 |
{
|
| 204 |
if ($this->mode == 'r') {
|
| 205 |
+
return false;
|
| 206 |
}
|
| 207 |
|
| 208 |
$this->body->rewind();
|
sdk/Aws/Guzzle/Common/Version.php
CHANGED
|
@@ -7,5 +7,5 @@ namespace Guzzle\Common;
|
|
| 7 |
*/
|
| 8 |
class Version
|
| 9 |
{
|
| 10 |
-
const VERSION = '3.4.
|
| 11 |
}
|
| 7 |
*/
|
| 8 |
class Version
|
| 9 |
{
|
| 10 |
+
const VERSION = '3.4.3';
|
| 11 |
}
|
sdk/Aws/Guzzle/Http/Client.php
CHANGED
|
@@ -80,21 +80,7 @@ class Client extends AbstractHasDispatcher implements ClientInterface
|
|
| 80 |
public function __construct($baseUrl = '', $config = null)
|
| 81 |
{
|
| 82 |
$this->setConfig($config ?: new Collection());
|
| 83 |
-
|
| 84 |
-
// Allow ssl.certificate_authority config setting to control the certificate authority used by curl
|
| 85 |
-
$authority = $this->config->get(self::SSL_CERT_AUTHORITY);
|
| 86 |
-
|
| 87 |
-
// Set the SSL certificate
|
| 88 |
-
if ($authority !== 'system') {
|
| 89 |
-
if ($authority === null) {
|
| 90 |
-
$authority = true;
|
| 91 |
-
}
|
| 92 |
-
if ($authority === true && substr(__FILE__, 0, 7) == 'phar://') {
|
| 93 |
-
$authority = $this->preparePharCacert();
|
| 94 |
-
}
|
| 95 |
-
$this->setSslVerification($authority);
|
| 96 |
-
}
|
| 97 |
-
|
| 98 |
$this->setBaseUrl($baseUrl);
|
| 99 |
$this->defaultHeaders = new Collection();
|
| 100 |
$this->setRequestFactory(RequestFactory::getInstance());
|
|
@@ -437,6 +423,31 @@ class Client extends AbstractHasDispatcher implements ClientInterface
|
|
| 437 |
return $this;
|
| 438 |
}
|
| 439 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 440 |
/**
|
| 441 |
* Prepare a request to be sent from the Client by adding client specific behaviors and properties to the request.
|
| 442 |
*
|
|
@@ -478,25 +489,34 @@ class Client extends AbstractHasDispatcher implements ClientInterface
|
|
| 478 |
}
|
| 479 |
|
| 480 |
/**
|
| 481 |
-
*
|
| 482 |
-
*
|
| 483 |
-
* @return string
|
| 484 |
-
* @throws RuntimeException if the file cannot be copied or there is a MD5 mismatch
|
| 485 |
*/
|
| 486 |
-
protected function
|
| 487 |
{
|
| 488 |
-
|
| 489 |
-
$
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
| 494 |
-
|
|
|
|
| 495 |
}
|
| 496 |
-
} elseif (!copy($from, $certFile)) {
|
| 497 |
-
throw new RuntimeException("Could not copy {$from} to {$certFile}: " . var_export(error_get_last(), true));
|
| 498 |
-
}
|
| 499 |
|
| 500 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 501 |
}
|
| 502 |
}
|
| 80 |
public function __construct($baseUrl = '', $config = null)
|
| 81 |
{
|
| 82 |
$this->setConfig($config ?: new Collection());
|
| 83 |
+
$this->initSsl();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
$this->setBaseUrl($baseUrl);
|
| 85 |
$this->defaultHeaders = new Collection();
|
| 86 |
$this->setRequestFactory(RequestFactory::getInstance());
|
| 423 |
return $this;
|
| 424 |
}
|
| 425 |
|
| 426 |
+
/**
|
| 427 |
+
* Copy the cacert.pem file from the phar if it is not in the temp folder and validate the MD5 checksum
|
| 428 |
+
*
|
| 429 |
+
* @param bool $md5Check Set to false to not perform the MD5 validation
|
| 430 |
+
*
|
| 431 |
+
* @return string Returns the path to the extracted cacert
|
| 432 |
+
* @throws RuntimeException if the file cannot be copied or there is a MD5 mismatch
|
| 433 |
+
*/
|
| 434 |
+
public function preparePharCacert($md5Check = true)
|
| 435 |
+
{
|
| 436 |
+
$from = __DIR__ . '/Resources/cacert.pem';
|
| 437 |
+
$certFile = sys_get_temp_dir() . '/guzzle-cacert.pem';
|
| 438 |
+
if (!file_exists($certFile) && !copy($from, $certFile)) {
|
| 439 |
+
throw new RuntimeException("Could not copy {$from} to {$certFile}: " . var_export(error_get_last(), true));
|
| 440 |
+
} elseif ($md5Check) {
|
| 441 |
+
$actualMd5 = md5_file($certFile);
|
| 442 |
+
$expectedMd5 = trim(file_get_contents("{$from}.md5"));
|
| 443 |
+
if ($actualMd5 != $expectedMd5) {
|
| 444 |
+
throw new RuntimeException("{$certFile} MD5 mismatch: expected {$expectedMd5} but got {$actualMd5}");
|
| 445 |
+
}
|
| 446 |
+
}
|
| 447 |
+
|
| 448 |
+
return $certFile;
|
| 449 |
+
}
|
| 450 |
+
|
| 451 |
/**
|
| 452 |
* Prepare a request to be sent from the Client by adding client specific behaviors and properties to the request.
|
| 453 |
*
|
| 489 |
}
|
| 490 |
|
| 491 |
/**
|
| 492 |
+
* Initializes SSL settings
|
|
|
|
|
|
|
|
|
|
| 493 |
*/
|
| 494 |
+
protected function initSsl()
|
| 495 |
{
|
| 496 |
+
// Allow ssl.certificate_authority config setting to control the certificate authority used by curl
|
| 497 |
+
$authority = $this->config->get(self::SSL_CERT_AUTHORITY);
|
| 498 |
+
|
| 499 |
+
// Set the SSL certificate
|
| 500 |
+
if ($authority !== 'system') {
|
| 501 |
+
|
| 502 |
+
if ($authority === null) {
|
| 503 |
+
$authority = true;
|
| 504 |
}
|
|
|
|
|
|
|
|
|
|
| 505 |
|
| 506 |
+
if ($authority === true && substr(__FILE__, 0, 7) == 'phar://') {
|
| 507 |
+
$authority = $this->preparePharCacert();
|
| 508 |
+
$that = $this;
|
| 509 |
+
$this->getEventDispatcher()->addListener(
|
| 510 |
+
'request.before_send',
|
| 511 |
+
function ($event) use ($authority, $that) {
|
| 512 |
+
if ($authority == $event['request']->getCurlOptions()->get(CURLOPT_CAINFO)) {
|
| 513 |
+
$that->preparePharCacert(false);
|
| 514 |
+
}
|
| 515 |
+
}
|
| 516 |
+
);
|
| 517 |
+
}
|
| 518 |
+
|
| 519 |
+
$this->setSslVerification($authority);
|
| 520 |
+
}
|
| 521 |
}
|
| 522 |
}
|
sdk/Aws/Guzzle/Http/Message/Request.php
CHANGED
|
@@ -539,7 +539,7 @@ class Request extends AbstractMessage implements RequestInterface
|
|
| 539 |
} else {
|
| 540 |
$this->response = $response;
|
| 541 |
// If a specific response body is specified, then use it instead of the response's body
|
| 542 |
-
if ($this->responseBody) {
|
| 543 |
$this->getResponseBody()->write((string) $this->response->getBody());
|
| 544 |
} else {
|
| 545 |
$this->responseBody = $this->response->getBody();
|
|
@@ -576,6 +576,7 @@ class Request extends AbstractMessage implements RequestInterface
|
|
| 576 |
{
|
| 577 |
if ($this->responseBody === null) {
|
| 578 |
$this->responseBody = EntityBody::factory();
|
|
|
|
| 579 |
}
|
| 580 |
|
| 581 |
return $this->responseBody;
|
| 539 |
} else {
|
| 540 |
$this->response = $response;
|
| 541 |
// If a specific response body is specified, then use it instead of the response's body
|
| 542 |
+
if ($this->responseBody && !$this->responseBody->getCustomData('default')) {
|
| 543 |
$this->getResponseBody()->write((string) $this->response->getBody());
|
| 544 |
} else {
|
| 545 |
$this->responseBody = $this->response->getBody();
|
| 576 |
{
|
| 577 |
if ($this->responseBody === null) {
|
| 578 |
$this->responseBody = EntityBody::factory();
|
| 579 |
+
$this->responseBody->setCustomData('default', true);
|
| 580 |
}
|
| 581 |
|
| 582 |
return $this->responseBody;
|
sdk/Aws/Guzzle/Plugin/Mock/MockPlugin.php
CHANGED
|
@@ -201,12 +201,12 @@ class MockPlugin extends AbstractHasDispatcher implements EventSubscriberInterfa
|
|
| 201 |
|
| 202 |
$item = array_shift($this->queue);
|
| 203 |
if ($item instanceof Response) {
|
| 204 |
-
$request->setResponse($item, true);
|
| 205 |
if ($this->readBodies && $request instanceof EntityEnclosingRequestInterface) {
|
| 206 |
$request->getEventDispatcher()->addListener('request.sent', function (Event $event) {
|
| 207 |
while ($data = $event['request']->getBody()->read(8096));
|
| 208 |
});
|
| 209 |
}
|
|
|
|
| 210 |
} elseif ($item instanceof CurlException) {
|
| 211 |
$request->getEventDispatcher()->addListener(
|
| 212 |
'request.before_send',
|
| 201 |
|
| 202 |
$item = array_shift($this->queue);
|
| 203 |
if ($item instanceof Response) {
|
|
|
|
| 204 |
if ($this->readBodies && $request instanceof EntityEnclosingRequestInterface) {
|
| 205 |
$request->getEventDispatcher()->addListener('request.sent', function (Event $event) {
|
| 206 |
while ($data = $event['request']->getBody()->read(8096));
|
| 207 |
});
|
| 208 |
}
|
| 209 |
+
$request->setResponse($item, true);
|
| 210 |
} elseif ($item instanceof CurlException) {
|
| 211 |
$request->getEventDispatcher()->addListener(
|
| 212 |
'request.before_send',
|
