BackWPup – WordPress Backup Plugin - Version 3.0.7

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 danielhuesken
Plugin Icon 128x128 BackWPup – WordPress Backup Plugin
Version 3.0.7
Comparing to
See all releases

Code changes from version 3.0.6 to 3.0.7

Files changed (49) hide show
  1. backwpup.php +13 -9
  2. css/admin.css +1 -1
  3. css/admin.dev.css +20 -34
  4. inc/class-admin.php +14 -3
  5. inc/class-cron.php +45 -12
  6. inc/class-destination-dropbox.php +90 -78
  7. inc/class-destination-email.php +0 -2
  8. inc/class-destination-folder.php +4 -3
  9. inc/class-destination-ftp.php +24 -17
  10. inc/class-destination-msazure.php +1 -1
  11. inc/class-destination-rsc.php +1 -1
  12. inc/class-destination-s3-v1.php +1 -4
  13. inc/class-destination-s3.php +8 -12
  14. inc/class-destination-sugarsync.php +1 -1
  15. inc/class-file.php +8 -8
  16. inc/class-frontend.php +0 -81
  17. inc/class-help.php +1 -1
  18. inc/class-job.php +20 -29
  19. inc/class-jobtype-dbcheck.php +11 -11
  20. inc/class-jobtype-dbdump.php +5 -5
  21. inc/class-jobtype-dboptimize.php +9 -9
  22. inc/class-jobtype-file.php +15 -18
  23. inc/class-jobtype-wpexp.php +7 -13
  24. inc/class-jobtype-wpplugin.php +3 -3
  25. inc/class-mysqldump.php +1 -1
  26. inc/class-option.php +3 -0
  27. inc/class-page-about.php +5 -6
  28. inc/class-page-editjob.php +3 -3
  29. inc/class-page-jobs.php +35 -30
  30. inc/class-page-settings.php +7 -5
  31. languages/backwpup-de_DE.mo +0 -0
  32. languages/backwpup-de_DE.po +507 -517
  33. languages/backwpup-es_ES.mo +0 -0
  34. languages/backwpup-es_ES.po +0 -1699
  35. languages/backwpup-fr_FR.mo +0 -0
  36. languages/backwpup-fr_FR.po +5222 -0
  37. languages/backwpup-nl_NL.mo +0 -0
  38. languages/backwpup-nl_NL.po +0 -3305
  39. readme.txt +11 -1
  40. sdk/Aws/Aws/Common/Aws.php +1 -1
  41. sdk/Aws/Aws/Common/Client/AbstractClient.php +36 -0
  42. sdk/Aws/Aws/Common/Client/AwsClientInterface.php +9 -0
  43. sdk/Aws/Aws/Common/Credentials/Credentials.php +3 -1
  44. sdk/Aws/Aws/Common/Exception/RequiredExtensionNotLoadedException.php +22 -0
  45. sdk/Aws/Aws/Glacier/GlacierClient.php +3 -0
  46. sdk/Aws/Aws/S3/Command/S3Command.php +53 -0
  47. sdk/Aws/Aws/S3/Model/MultipartUpload/AbstractTransfer.php +1 -1
  48. sdk/Aws/Aws/S3/Resources/s3-2006-03-01.php +52 -49
  49. sdk/Aws/Aws/S3/S3Client.php +3 -0
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.6
9
  * Text Domain: backwpup
10
  * Domain Path: /languages/
11
  * Network: true
@@ -70,9 +70,19 @@ if ( ! class_exists( 'BackWPup' ) ) {
70
  spl_autoload_register( array( $this, 'autoloader' ) );
71
  else //auto loader fallback
72
  $this->autoloader_fallback();
 
 
 
73
  //WP-Cron
74
- add_action( 'backwpup_cron', array( 'BackWPup_Cron', 'run' ) );
75
- add_action( 'backwpup_check_cleanup', array( 'BackWPup_Cron', 'check_cleanup' ) );
 
 
 
 
 
 
 
76
  //deactivation hook
77
  register_deactivation_hook( __FILE__, array( 'BackWPup_Install', 'deactivate' ) );
78
  //Things that must do in plugin init
@@ -80,12 +90,6 @@ if ( ! class_exists( 'BackWPup' ) ) {
80
  //start upgrade if needed
81
  if ( get_site_option( 'backwpup_version' ) != self::get_plugin_data( 'Version' ) && class_exists( 'BackWPup_Install' ) )
82
  BackWPup_Install::activate();
83
- //Frontend
84
- if ( ! is_admin() && is_main_site() && class_exists( 'BackWPup_FrontEnd' ) )
85
- BackWPup_FrontEnd::getInstance();
86
- //load Pro Features
87
- if ( is_file( dirname( __FILE__ ) . '/inc/features/class-features.php' ) )
88
- require dirname( __FILE__ ) . '/inc/features/class-features.php';
89
  //only in backend
90
  if ( is_admin() && ( current_user_can( 'backwpup' ) || $GLOBALS[ 'pagenow' ] == 'plugins.php' ) && class_exists( 'BackWPup_Admin' ) )
91
  BackWPup_Admin::getInstance();
5
  * Description: WordPress Backup and more...
6
  * Author: Inpsyde GmbH
7
  * Author URI: http://inpsyde.com
8
+ * Version: 3.0.7
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
+ //load pro features
74
+ if ( is_file( dirname( __FILE__ ) . '/inc/features/class-features.php' ) )
75
+ require dirname( __FILE__ ) . '/inc/features/class-features.php';
76
  //WP-Cron
77
+ if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
78
+ // add normal cron actions
79
+ add_action( 'backwpup_cron', array( 'BackWPup_Cron', 'run' ) );
80
+ add_action( 'backwpup_check_cleanup', array( 'BackWPup_Cron', 'check_cleanup' ) );
81
+ // add action for doing thinks if cron active
82
+ add_action( 'wp_loaded', array( 'BackWPup_Cron', 'cron_active' ) );
83
+ // if in cron the rest is not needed
84
+ return;
85
+ }
86
  //deactivation hook
87
  register_deactivation_hook( __FILE__, array( 'BackWPup_Install', 'deactivate' ) );
88
  //Things that must do in plugin init
90
  //start upgrade if needed
91
  if ( get_site_option( 'backwpup_version' ) != self::get_plugin_data( 'Version' ) && class_exists( 'BackWPup_Install' ) )
92
  BackWPup_Install::activate();
 
 
 
 
 
 
93
  //only in backend
94
  if ( is_admin() && ( current_user_can( 'backwpup' ) || $GLOBALS[ 'pagenow' ] == 'plugins.php' ) && class_exists( 'BackWPup_Admin' ) )
95
  BackWPup_Admin::getInstance();
css/admin.css CHANGED
@@ -1 +1 @@
1
- #toplevel_page_backwpup .wp-menu-image{background-image:url(../images/BackWPup16.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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-image:url(../images/BackWPup16.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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-image:url(../images/BackWPup16.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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-image:url(../images/BackWPup16_2x.png);background-repeat:no-repeat;background-size:16px 32px;background-position:bottom center;width:16px!important;height:16px!important;margin:5px 5px 0 7px}#toplevel_page_backwpup .wp-menu-image{background-image:url(../images/BackWPup16_2x.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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-image:url(../images/BackWPup16_2x.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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-image:url(../images/BackWPup16_2x.png);background-repeat:no-repeat;background-size:16px 32px;background-position: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}@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
@@ -1,24 +1,20 @@
1
  #toplevel_page_backwpup .wp-menu-image {
2
- background-image: url(../images/BackWPup16.png);
3
- background-repeat: no-repeat;
4
  background-size: 16px 32px;
5
- background-position:bottom center;
6
- width:16px !important;
7
  height:16px !important;
8
- margin:5px 5px 0px 7px;
9
  -khtml-opacity:.70;
10
  -moz-opacity:.70;
11
  -ms-filter:"alpha(opacity=70)";
12
  filter:alpha(opacity=70);
13
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.7);
14
- opacity:.70;
15
  }
16
  #toplevel_page_backwpup:hover .wp-menu-image {
17
- background-image: url(../images/BackWPup16.png);
18
- background-repeat: no-repeat;
19
  background-size: 16px 32px;
20
- background-position:bottom center;
21
- width:16px !important;
22
  height:16px !important;
23
  margin:5px 5px 0px 7px;
24
  -khtml-opacity:.5;
@@ -29,11 +25,9 @@
29
  opacity:.5;
30
  }
31
  li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
32
- background-image: url(../images/BackWPup16.png);
33
- background-repeat: no-repeat;
34
  background-size: 16px 32px;
35
- background-position:top center;
36
- width:16px !important;
37
  height:16px !important;
38
  margin:5px 5px 0px 7px;
39
  }
@@ -43,20 +37,16 @@ li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
43
 
44
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
45
  #toplevel_page_backwpup .wp-menu-image {
46
- background-image: url(../images/BackWPup16_2x.png);
47
- background-repeat: no-repeat;
48
- background-size: 16px 32px;
49
- background-position:bottom center;
50
- width:16px !important;
51
  height:16px !important;
52
  margin:5px 5px 0px 7px;
53
  }
54
  #toplevel_page_backwpup .wp-menu-image {
55
- background-image: url(../images/BackWPup16_2x.png);
56
- background-repeat: no-repeat;
57
- background-size: 16px 32px;
58
- background-position:bottom center;
59
- width:16px !important;
60
  height:16px !important;
61
  margin:5px 5px 0px 7px;
62
  -khtml-opacity:.70;
@@ -67,11 +57,9 @@ li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
67
  opacity:.70;
68
  }
69
  #toplevel_page_backwpup:hover .wp-menu-image {
70
- background-image: url(../images/BackWPup16_2x.png);
71
- background-repeat: no-repeat;
72
- background-size: 16px 32px;
73
- background-position:bottom center;
74
- width:16px !important;
75
  height:16px !important;
76
  margin:5px 5px 0px 7px;
77
  -khtml-opacity:.5;
@@ -82,11 +70,9 @@ li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
82
  opacity:.5;
83
  }
84
  li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
85
- background-image: url(../images/BackWPup16_2x.png);
86
- background-repeat: no-repeat;
87
- background-size: 16px 32px;
88
- background-position:top center;
89
- width:16px !important;
90
  height:16px !important;
91
  margin:5px 5px 0px 7px;
92
  }
1
  #toplevel_page_backwpup .wp-menu-image {
 
 
2
  background-size: 16px 32px;
3
+ background: url(../images/BackWPup16.png) no-repeat bottom center;
4
+ width:16px !important;
5
  height:16px !important;
6
+ margin:5px 5px 0 7px;
7
  -khtml-opacity:.70;
8
  -moz-opacity:.70;
9
  -ms-filter:"alpha(opacity=70)";
10
  filter:alpha(opacity=70);
11
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.7);
12
+ opacity:.70;
13
  }
14
  #toplevel_page_backwpup:hover .wp-menu-image {
 
 
15
  background-size: 16px 32px;
16
+ background: url(../images/BackWPup16.png) no-repeat bottom center;
17
+ width:16px !important;
18
  height:16px !important;
19
  margin:5px 5px 0px 7px;
20
  -khtml-opacity:.5;
25
  opacity:.5;
26
  }
27
  li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
 
 
28
  background-size: 16px 32px;
29
+ background: url(../images/BackWPup16.png) no-repeat top center;
30
+ width:16px !important;
31
  height:16px !important;
32
  margin:5px 5px 0px 7px;
33
  }
37
 
38
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
39
  #toplevel_page_backwpup .wp-menu-image {
40
+ background-size: 16px 32px;
41
+ background: url(../images/BackWPup16_2x.png) no-repeat bottom center;
42
+ width:16px !important;
 
 
43
  height:16px !important;
44
  margin:5px 5px 0px 7px;
45
  }
46
  #toplevel_page_backwpup .wp-menu-image {
47
+ background-size: 16px 32px;
48
+ background: url(../images/BackWPup16_2x.png) no-repeat bottom center;
49
+ width:16px !important;
 
 
50
  height:16px !important;
51
  margin:5px 5px 0px 7px;
52
  -khtml-opacity:.70;
57
  opacity:.70;
58
  }
59
  #toplevel_page_backwpup:hover .wp-menu-image {
60
+ background-size: 16px 32px;
61
+ background: url(../images/BackWPup16_2x.png) no-repeat bottom center;
62
+ width:16px !important;
 
 
63
  height:16px !important;
64
  margin:5px 5px 0px 7px;
65
  -khtml-opacity:.5;
70
  opacity:.5;
71
  }
72
  li.wp-has-current-submenu#toplevel_page_backwpup .wp-menu-image {
73
+ background-size: 16px 32px;
74
+ background: url(../images/BackWPup16_2x.png) no-repeat top center;
75
+ width:16px !important;
 
 
76
  height:16px !important;
77
  margin:5px 5px 0px 7px;
78
  }
inc/class-admin.php CHANGED
@@ -247,7 +247,11 @@ final class BackWPup_Admin {
247
  public static function init_generel() {
248
 
249
  //start using sessions
250
- session_start();
 
 
 
 
251
 
252
  add_thickbox();
253
 
@@ -274,7 +278,11 @@ final class BackWPup_Admin {
274
  public function save_post_form() {
275
 
276
  //start using sessions
277
- session_start();
 
 
 
 
278
 
279
  //Allowed Pages
280
  if ( ! in_array( $_POST[ 'page' ], array ( 'backwpupeditjob', 'backwpupinformation', 'backwpupsettings' ) ) )
@@ -352,6 +360,9 @@ final class BackWPup_Admin {
352
  */
353
  public static function get_message( ) {
354
 
 
 
 
355
  return $_SESSION[ 'backwpup_messages' ];
356
  }
357
 
@@ -424,7 +435,7 @@ final class BackWPup_Admin {
424
  return;
425
 
426
  if ( ! get_site_option( 'backwpup_about_page' ) && ! ( isset( $_REQUEST[ 'page' ] ) && $_REQUEST[ 'page' ] == 'backwpup' ) )
427
- echo '<div class="updated"><p>' . 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>';
428
 
429
  }
430
  }
247
  public static function init_generel() {
248
 
249
  //start using sessions
250
+ if ( ! session_id() ) {
251
+ if ( ! is_writeable( session_save_path() ) )
252
+ session_save_path( BackWPup::get_plugin_data( 'temp' ) );
253
+ session_start();
254
+ }
255
 
256
  add_thickbox();
257
 
278
  public function save_post_form() {
279
 
280
  //start using sessions
281
+ if ( ! session_id() ) {
282
+ if ( ! is_writeable( session_save_path() ) )
283
+ session_save_path( BackWPup::get_plugin_data( 'temp' ) );
284
+ session_start();
285
+ }
286
 
287
  //Allowed Pages
288
  if ( ! in_array( $_POST[ 'page' ], array ( 'backwpupeditjob', 'backwpupinformation', 'backwpupsettings' ) ) )
360
  */
361
  public static function get_message( ) {
362
 
363
+ if ( ! isset( $_SESSION[ 'backwpup_messages' ] ) )
364
+ return array();
365
+
366
  return $_SESSION[ 'backwpup_messages' ];
367
  }
368
 
435
  return;
436
 
437
  if ( ! get_site_option( 'backwpup_about_page' ) && ! ( isset( $_REQUEST[ 'page' ] ) && $_REQUEST[ 'page' ] == 'backwpup' ) )
438
+ 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>';
439
 
440
  }
441
  }
inc/class-cron.php CHANGED
@@ -127,18 +127,6 @@ class BackWPup_Cron {
127
  if ( ! $job_object ) {
128
  //remove restart cron
129
  wp_clear_scheduled_hook( 'backwpup_cron', array( 'id' => 'restart' ) );
130
- //clear maintenance mode
131
- if ( is_file( ABSPATH . '.maintenance' ) or ( defined( 'FB_WM_TEXTDOMAIN' ) && ( get_site_option( FB_WM_TEXTDOMAIN . '-msqld' ) == 1 or get_option( FB_WM_TEXTDOMAIN . '-msqld' ) == 1 ) ) ) {
132
- if ( class_exists( 'WPMaintenanceMode' ) ) { //Support for WP Maintenance Mode Plugin (Frank Bueltge)
133
- if ( is_multisite() && is_plugin_active_for_network( FB_WM_BASENAME ) )
134
- update_site_option( FB_WM_TEXTDOMAIN . '-msqld', 0 );
135
- else
136
- update_option( FB_WM_TEXTDOMAIN . '-msqld', 0 );
137
- }
138
- else { //WP Support
139
- unlink( ABSPATH . '.maintenance' );
140
- }
141
- }
142
  //temp cleanup
143
  if ( $dir = opendir( BackWPup::get_plugin_data( 'TEMP' ) ) ) {
144
  while ( FALSE !== ( $file = readdir( $dir ) ) ) {
@@ -152,6 +140,51 @@ class BackWPup_Cron {
152
  }
153
  }
154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  /**
156
  *
157
  * Get the local time timestamp of the next cron execution
127
  if ( ! $job_object ) {
128
  //remove restart cron
129
  wp_clear_scheduled_hook( 'backwpup_cron', array( 'id' => 'restart' ) );
 
 
 
 
 
 
 
 
 
 
 
 
130
  //temp cleanup
131
  if ( $dir = opendir( BackWPup::get_plugin_data( 'TEMP' ) ) ) {
132
  while ( FALSE !== ( $file = readdir( $dir ) ) ) {
140
  }
141
  }
142
 
143
+
144
+ /**
145
+ * Start job if in cron and run query args are set.
146
+ */
147
+ public static function cron_active() {
148
+
149
+ //only if cron active
150
+ if ( ! defined( 'DOING_CRON' ) || ! DOING_CRON )
151
+ return;
152
+
153
+ //only work if backwpup_run as query var ist set and nothing else and the value ist right
154
+ if ( empty( $_GET[ 'backwpup_run' ] ) || ! in_array( $_GET[ 'backwpup_run' ], array( 'test','restart', 'runnow', 'runnowalt', 'runext', 'cronrun' ) ) )
155
+ return;
156
+
157
+ // generate normal nonce
158
+ $nonce = substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-' . $_GET[ 'backwpup_run' ], 'nonce' ), - 12, 10 );
159
+ //special nonce on external start
160
+ if ( $_GET[ 'backwpup_run' ] == 'runext' )
161
+ $nonce = BackWPup_Option::get( 'cfg', 'jobrunauthkey' );
162
+ // check nonce
163
+ if ( empty( $_GET['_nonce'] ) || $nonce != $_GET['_nonce'] )
164
+ return;
165
+
166
+ //response on test
167
+ if ( $_GET[ 'backwpup_run' ] == 'test') {
168
+ @header( 'Content-Type: text/html; charset=' . get_bloginfo( 'charset' ) );
169
+ @header( 'X-Robots-Tag: noindex, nofollow' );
170
+ send_nosniff_header();
171
+ nocache_headers();
172
+ die( 'Response Test O.K.' );
173
+ }
174
+
175
+ //check runext is allowed for job
176
+ if ( $_GET[ 'backwpup_run' ] == 'runext' ) {
177
+ $jobids_external = BackWPup_Option::get_job_ids( 'activetype', 'link' );
178
+ if ( !isset( $_GET[ 'jobid' ] ) || ! in_array( $_GET[ 'jobid' ], $jobids_external ) )
179
+ return;
180
+ }
181
+
182
+ //run BackWPup job
183
+ BackWPup_Job::start_http( $_GET[ 'backwpup_run' ] );
184
+ die();
185
+ }
186
+
187
+
188
  /**
189
  *
190
  * Get the local time timestamp of the next cron execution
inc/class-destination-dropbox.php CHANGED
@@ -33,70 +33,72 @@ class BackWPup_Destination_Dropbox extends BackWPup_Destinations {
33
  */
34
  public function edit_tab( $jobid ) {
35
  //Dropbox auth keys from Dropbox
36
- if ( isset( $_GET[ 'uid' ] ) && (int)$_GET[ 'uid' ] > 1 && ! empty( $_GET[ 'oauth_token' ] ) ) {
37
- if ( isset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestToken' ] ) && $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestToken' ] == $_GET[ 'oauth_token' ] ) {
38
- //Get Access Tokens
39
- try {
40
- $dropbox = new BackWPup_Destination_Dropbox_API( 'sandbox' );
41
- $oAuthStuff = $dropbox->oAuthAccessToken( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestToken' ], $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestTokenSecret' ] );
42
- //Save Tokens
43
- echo '<input type="hidden" name="dropboxtoken" value="' . esc_attr( $oAuthStuff[ 'oauth_token' ] ) . '" />';
44
- echo '<input type="hidden" name="dropboxsecret" value="' . esc_attr( BackWPup_Encryption::encrypt( $oAuthStuff[ 'oauth_token_secret' ] ) ) . '" />';
45
- echo '<input type="hidden" name="dropboxroot" value="sandbox" />';
46
- echo '<div id="message" class="updated">' . __( 'Dropbox authentication complete!', 'backwpup' ) . '</div>';
47
- }
48
- catch ( Exception $e ) {
49
- echo '<div id="message" class="updated">' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</div>';
50
  }
51
- } elseif ( isset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestToken' ] ) && $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestToken' ] == $_GET[ 'oauth_token' ] ) {
52
- //Get Access Tokens
53
  try {
54
  $dropbox = new BackWPup_Destination_Dropbox_API( 'dropbox' );
55
  $oAuthStuff = $dropbox->oAuthAccessToken( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestToken' ], $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestTokenSecret' ] );
56
- //Save Tokens
57
- echo '<input type="hidden" name="dropboxtoken" value="' . esc_attr( $oAuthStuff[ 'oauth_token' ] ) . '" />';
58
- echo '<input type="hidden" name="dropboxsecret" value="' . esc_attr( BackWPup_Encryption::encrypt( $oAuthStuff[ 'oauth_token_secret' ] ) ) . '" />';
59
- echo '<input type="hidden" name="dropboxroot" value="dropbox" />';
60
- echo '<div id="message" class="updated">' . __( 'Dropbox authentication complete!', 'backwpup' ) . '</div>';
61
- }
62
- catch ( Exception $e ) {
63
- echo '<div id="message" class="updated">' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</div>';
64
- }
65
- } else {
66
- echo '<div id="message" class="updated">' . __( 'Wrong token for Dropbox authentication!', 'backwpup' ) . '</div>';
67
  }
68
  }
69
- if ( isset( $_GET[ 'not_approved' ] ) && $_GET[ 'not_approved' ] == 'true' ) {
70
- echo '<div id="message" class="updated">' . __( 'Dropbox authentication not approved!', 'backwpup' ) . '</div>';
71
- }
72
 
73
  //get auth url sandbox
74
- try {
75
- $dropbox = new BackWPup_Destination_Dropbox_API( 'sandbox' );
76
- // let the user authorize (user will be redirected)
77
- $response_sandbox = $dropbox->oAuthAuthorize( network_admin_url( 'admin.php' ) . '?page=backwpupeditjob&jobid=' .$jobid .'&tab=dest-dropbox&_wpnonce=' . wp_create_nonce( 'edit-job' ) );
78
- // save oauth_token_secret
79
- $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ] = array(
80
- 'oAuthRequestToken' => $response_sandbox[ 'oauth_token' ],
81
- 'oAuthRequestTokenSecret' => $response_sandbox[ 'oauth_token_secret' ]
82
- );
83
- }
84
- catch ( Exception $e ) {
85
- echo '<div id=\"message\" class=\"updated\">' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</div>';
 
 
 
 
86
  }
87
  //get auth url dropbox
88
- try {
89
- $dropbox = new BackWPup_Destination_Dropbox_API( 'dropbox' );
90
- // let the user authorize (user will be redirected)
91
- $response_dropbox = $dropbox->oAuthAuthorize( network_admin_url( 'admin.php' ) . '?page=backwpupeditjob&jobid=' .$jobid .'&tab=dest-dropbox&_wpnonce=' . wp_create_nonce( 'edit-job' ) );
92
- // save oauth_token_secret
93
- $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ] = array(
94
- 'oAuthRequestToken' => $response_dropbox[ 'oauth_token' ],
95
- 'oAuthRequestTokenSecret' => $response_dropbox[ 'oauth_token_secret' ]
96
- );
97
- }
98
- catch ( Exception $e ) {
99
- echo '<div id=\"message\" class=\"updated\">' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</div>';
 
 
 
 
100
  }
101
  ?>
102
 
@@ -106,14 +108,12 @@ class BackWPup_Destination_Dropbox extends BackWPup_Destinations {
106
  <tr valign="top">
107
  <th scope="row"><?php _e( 'Authenticate', 'backwpup' ); ?></th>
108
  <td><?php if ( ! BackWPup_Option::get( $jobid, 'dropboxtoken' ) && ! BackWPup_Option::get( $jobid, 'dropboxsecret' ) && ! isset( $oAuthStuff[ 'oauth_token' ] ) ) { ?>
109
- <span style="color:red;"><?php _e( 'Not authenticated!', 'backwpup' ); ?></span>&nbsp;<a href="http://db.tt/8irM1vQ0"><?php _e( 'Create Account', 'backwpup' ); ?></a><br />
110
- <a class="button secondary" href="<?php echo esc_url( $response_sandbox[ 'authurl' ] );?>"><?php _e( 'Authenticate (Sandbox)', 'backwpup' ); ?></a>&nbsp;
111
- <a class="button secondary" href="<?php echo esc_url( $response_dropbox[ 'authurl' ] );?>"><?php _e( 'Authenticate (full Dropbox)', 'backwpup' ); ?></a>
112
  <?php } else { ?>
113
- <span style="color:green;"><?php _e( 'Authenticated!', 'backwpup' ); ?></span><br />
114
- <a class="button secondary" href="<?php echo esc_url( $response_sandbox[ 'authurl' ] );?>"><?php _e( 'Reauthenticate (Sandbox)', 'backwpup' ); ?></a>&nbsp;
115
- <a class="button secondary" href="<?php echo esc_url( $response_dropbox[ 'authurl' ] );?>"><?php _e( 'Reauthenticate (full Dropbox)', 'backwpup' ); ?></a>
116
  <?php } ?>
 
 
117
  </td>
118
  </tr>
119
  </table>
@@ -155,14 +155,6 @@ class BackWPup_Destination_Dropbox extends BackWPup_Destinations {
155
  */
156
  public function edit_form_post_save( $jobid ) {
157
 
158
- unset( $_SESSION[ 'backwpup_jobedit'] );
159
-
160
- if ( isset( $_POST[ 'dropboxtoken' ] ) ) {
161
- BackWPup_Option::update( $jobid, 'dropboxtoken', $_POST[ 'dropboxtoken' ] );
162
- BackWPup_Option::update( $jobid, 'dropboxsecret', $_POST[ 'dropboxsecret' ] );
163
- BackWPup_Option::update( $jobid, 'dropboxroot', ( isset( $_POST[ 'dropboxroot' ] ) && $_POST[ 'dropboxroot' ] == 'dropbox' ) ? 'dropbox' : 'sandbox' );
164
- }
165
-
166
  BackWPup_Option::update( $jobid, 'dropboxsyncnodelete', ( isset( $_POST[ 'dropboxsyncnodelete' ] ) && $_POST[ 'dropboxsyncnodelete' ] == 1 ) ? TRUE : FALSE );
167
  BackWPup_Option::update( $jobid, 'dropboxmaxbackups', isset( $_POST[ 'dropboxmaxbackups' ] ) ? (int)$_POST[ 'dropboxmaxbackups' ] : 0 );
168
 
@@ -261,14 +253,14 @@ class BackWPup_Destination_Dropbox extends BackWPup_Destinations {
261
  // put the file
262
  $job_object->log( __( 'Uploading to Dropbox&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
263
  $response = $dropbox->upload( $job_object->backup_folder . $job_object->backup_file, $job_object->job[ 'dropboxdir' ] . $job_object->backup_file );
264
- if ( $response[ 'bytes' ] == filesize( $job_object->backup_folder . $job_object->backup_file ) ) {
265
  if ( ! empty( $job_object->job[ 'jobid' ] ) )
266
- BackWPup_Option::update( $job_object->job[ 'jobid' ], 'lastbackupdownloadurl', network_admin_url( 'admin.php' ) . '?page=backwpupbackups&action=downloaddropbox&file=' . $job_object->job[ 'dropboxdir' ] . $job_object->backup_file . '&jobid=' . $job_object->job[ 'jobid' ] );
267
  $job_object->substeps_done = 1 + $job_object->backup_filesize;
268
- $job_object->log( sprintf( __( 'Backup transferred to %s', 'backwpup' ), 'https://api-content.dropbox.com/1/files/' . $job_object->job[ 'dropboxroot' ] . '/' . $job_object->job[ 'dropboxdir' ] . $job_object->backup_file ), E_USER_NOTICE );
269
  }
270
  else {
271
- if ( $response[ 'bytes' ] != filesize( $job_object->backup_folder . $job_object->backup_file ) )
272
  $job_object->log( __( 'Uploaded file size and local file size don\'t match.', 'backwpup' ), E_USER_ERROR );
273
  else
274
  $job_object->log( sprintf( __( 'Error on transfer backup to Dropbox: %s', 'backwpup' ), $response[ 'error' ] ), E_USER_ERROR );
@@ -489,7 +481,8 @@ final class BackWPup_Destination_Dropbox_API {
489
  * @throws BackWPup_Destination_Dropbox_API_Exception
490
  */
491
  public function chunked_upload( $file, $path = '', $overwrite = TRUE ) {
492
-
 
493
  $file = str_replace( "\\", "/", $file );
494
 
495
  if ( ! is_readable( $file ) or ! is_file( $file ) )
@@ -505,12 +498,16 @@ final class BackWPup_Destination_Dropbox_API {
505
  fseek( $file_handel, $job_object->steps_data[ $job_object->step_working ][ 'offset' ] );
506
 
507
  while ( $data = fread( $file_handel, 4194304 ) ) { //4194304 = 4MB
508
- $chunkHandle = fopen( 'php://temp/maxmemory:4200000', 'r+' );
509
- fwrite( $chunkHandle, $data );
510
- rewind( $chunkHandle );
 
 
 
 
511
  $url = self::API_CONTENT_URL . self::API_VERSION_URL . 'chunked_upload';
512
- $output = $this->request( $url, array( 'upload_id' => $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ], 'offset' => $job_object->steps_data[ $job_object->step_working ][ 'offset' ] ), 'PUT', $chunkHandle, strlen( $data ) );
513
- fclose( $chunkHandle );
514
  //args for next chunk
515
  $job_object->steps_data[ $job_object->step_working ][ 'offset' ] = $output[ 'offset' ];
516
  $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] = $output[ 'upload_id' ];
@@ -520,6 +517,10 @@ final class BackWPup_Destination_Dropbox_API {
520
  //correct position
521
  fseek( $file_handel, $job_object->steps_data[ $job_object->step_working ][ 'offset' ] );
522
  }
 
 
 
 
523
 
524
  fclose( $file_handel );
525
  $url = self::API_CONTENT_URL . self::API_VERSION_URL . 'commit_chunked_upload/' . $this->root . '/' . $this->encode_path( $path );
@@ -558,6 +559,17 @@ final class BackWPup_Destination_Dropbox_API {
558
  'file_limit' => $fileLimit
559
  ) );
560
  }
 
 
 
 
 
 
 
 
 
 
 
561
 
562
  /**
563
  * @param $path
33
  */
34
  public function edit_tab( $jobid ) {
35
  //Dropbox auth keys from Dropbox
36
+ if ( ! empty( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestToken' ] ) ) {
37
+
38
+ $oAuthStuff = array();
39
+ try {
40
+ $dropbox = new BackWPup_Destination_Dropbox_API( 'sandbox' );
41
+ $oAuthStuff = $dropbox->oAuthAccessToken( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestToken' ], $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'oAuthRequestTokenSecret' ] );
42
+ if ( empty( $oAuthStuff ) ) {
43
+ echo '<div id="message" class="updated"><p>' . __( 'Dropbox (Sandbox) authentication complete!', 'backwpup' ) . '</p></div>';
44
+ BackWPup_Option::update( $jobid, 'dropboxtoken', $oAuthStuff[ 'oauth_token' ] );
45
+ BackWPup_Option::update( $jobid, 'dropboxsecret', BackWPup_Encryption::encrypt( $oAuthStuff[ 'oauth_token_secret' ] ) );
46
+ BackWPup_Option::update( $jobid, 'dropboxroot', 'sandbox' );
47
+ unset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ] );
48
+ unset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ] );
 
49
  }
50
+ } catch ( Exception $e ) {}
51
+ if ( empty( $oAuthStuff ) ) {
52
  try {
53
  $dropbox = new BackWPup_Destination_Dropbox_API( 'dropbox' );
54
  $oAuthStuff = $dropbox->oAuthAccessToken( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestToken' ], $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'oAuthRequestTokenSecret' ] );
55
+ if ( empty( $oAuthStuff ) ) {
56
+ echo '<div id="message" class="updated"><p>' . __( 'Dropbox authentication complete!', 'backwpup' ) . '</p></div>';
57
+ BackWPup_Option::update( $jobid, 'dropboxtoken', $oAuthStuff[ 'oauth_token' ] );
58
+ BackWPup_Option::update( $jobid, 'dropboxsecret', BackWPup_Encryption::encrypt( $oAuthStuff[ 'oauth_token_secret' ] ) );
59
+ BackWPup_Option::update( $jobid, 'dropboxroot', 'dropbox' );
60
+ unset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ] );
61
+ unset( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ] );
62
+ }
63
+ } catch ( Exception $e ) {}
 
 
64
  }
65
  }
 
 
 
66
 
67
  //get auth url sandbox
68
+ if ( empty( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'create_time' ] ) || $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'create_time' ] > time() - 120 ) {
69
+ try {
70
+ $dropbox = new BackWPup_Destination_Dropbox_API( 'sandbox' );
71
+ // let the user authorize (user will be redirected)
72
+ $response_sandbox = $dropbox->oAuthAuthorize( network_admin_url( 'admin.php' ) . '?page=backwpupeditjob&jobid=' .$jobid .'&tab=dest-dropbox&_wpnonce=' . wp_create_nonce( 'edit-job' ) );
73
+ // save oauth_token_secret
74
+ $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ] = array(
75
+ 'oAuthRequestToken' => $response_sandbox[ 'oauth_token' ],
76
+ 'oAuthRequestTokenSecret' => $response_sandbox[ 'oauth_token_secret' ],
77
+ 'authurl' => $response_sandbox[ 'authurl' ],
78
+ 'create_time' => time(),
79
+ );
80
+ }
81
+ catch ( Exception $e ) {
82
+ echo '<div id="message" class="error"><p>' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</p></div>';
83
+ }
84
  }
85
  //get auth url dropbox
86
+ if ( empty( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'create_time' ] ) || $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'create_time' ] > time() - 120 ) {
87
+ try {
88
+ $dropbox = new BackWPup_Destination_Dropbox_API( 'dropbox' );
89
+ // let the user authorize (user will be redirected)
90
+ $response_dropbox = $dropbox->oAuthAuthorize( network_admin_url( 'admin.php' ) . '?page=backwpupeditjob&jobid=' .$jobid .'&tab=dest-dropbox&_wpnonce=' . wp_create_nonce( 'edit-job' ) );
91
+ // save oauth_token_secret
92
+ $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ] = array(
93
+ 'oAuthRequestToken' => $response_dropbox[ 'oauth_token' ],
94
+ 'oAuthRequestTokenSecret' => $response_dropbox[ 'oauth_token_secret' ],
95
+ 'authurl' => $response_dropbox[ 'authurl' ],
96
+ 'create_time' => time(),
97
+ );
98
+ }
99
+ catch ( Exception $e ) {
100
+ echo '<div id="message" class="error"><p>' . sprintf( __( 'Dropbox API: %s', 'backwpup' ), $e->getMessage() ) . '</p></div>';
101
+ }
102
  }
103
  ?>
104
 
108
  <tr valign="top">
109
  <th scope="row"><?php _e( 'Authenticate', 'backwpup' ); ?></th>
110
  <td><?php if ( ! BackWPup_Option::get( $jobid, 'dropboxtoken' ) && ! BackWPup_Option::get( $jobid, 'dropboxsecret' ) && ! isset( $oAuthStuff[ 'oauth_token' ] ) ) { ?>
111
+ <span style="color:red;"><?php _e( 'Not authenticated!', 'backwpup' ); ?></span>&nbsp;<a href="http://db.tt/hvNPyV3U"><?php _e( 'Create Account', 'backwpup' ); ?></a><br />
 
 
112
  <?php } else { ?>
113
+ <span style="color:green;"><?php _e( 'Authenticated!', 'backwpup' ); ?></span><br />
 
 
114
  <?php } ?>
115
+ <a class="button secondary" href="<?php echo esc_url( $_SESSION[ 'backwpup_jobedit'][ 'dropboxsandbox_auth' ][ 'authurl' ] );?>"><?php _e( 'Reauthenticate (Sandbox)', 'backwpup' ); ?></a>&nbsp;
116
+ <a class="button secondary" href="<?php echo esc_url( $_SESSION[ 'backwpup_jobedit'][ 'dropboxdropbox_auth' ][ 'authurl' ] );?>"><?php _e( 'Reauthenticate (full Dropbox)', 'backwpup' ); ?></a>
117
  </td>
118
  </tr>
119
  </table>
155
  */
156
  public function edit_form_post_save( $jobid ) {
157
 
 
 
 
 
 
 
 
 
158
  BackWPup_Option::update( $jobid, 'dropboxsyncnodelete', ( isset( $_POST[ 'dropboxsyncnodelete' ] ) && $_POST[ 'dropboxsyncnodelete' ] == 1 ) ? TRUE : FALSE );
159
  BackWPup_Option::update( $jobid, 'dropboxmaxbackups', isset( $_POST[ 'dropboxmaxbackups' ] ) ? (int)$_POST[ 'dropboxmaxbackups' ] : 0 );
160
 
253
  // put the file
254
  $job_object->log( __( 'Uploading to Dropbox&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
255
  $response = $dropbox->upload( $job_object->backup_folder . $job_object->backup_file, $job_object->job[ 'dropboxdir' ] . $job_object->backup_file );
256
+ if ( $response[ 'bytes' ] == $job_object->backup_filesize ) {
257
  if ( ! empty( $job_object->job[ 'jobid' ] ) )
258
+ BackWPup_Option::update( $job_object->job[ 'jobid' ], 'lastbackupdownloadurl', network_admin_url( 'admin.php' ) . '?page=backwpupbackups&action=downloaddropbox&file=' . ltrim( $response[ 'path' ], '/' ) . '&jobid=' . $job_object->job[ 'jobid' ] );
259
  $job_object->substeps_done = 1 + $job_object->backup_filesize;
260
+ $job_object->log( sprintf( __( 'Backup transferred to %s', 'backwpup' ), 'https://api-content.dropbox.com/1/files/' . $job_object->job[ 'dropboxroot' ] . $response[ 'path' ] ), E_USER_NOTICE );
261
  }
262
  else {
263
+ if ( $response[ 'bytes' ] != $job_object->backup_filesize )
264
  $job_object->log( __( 'Uploaded file size and local file size don\'t match.', 'backwpup' ), E_USER_ERROR );
265
  else
266
  $job_object->log( sprintf( __( 'Error on transfer backup to Dropbox: %s', 'backwpup' ), $response[ 'error' ] ), E_USER_ERROR );
481
  * @throws BackWPup_Destination_Dropbox_API_Exception
482
  */
483
  public function chunked_upload( $file, $path = '', $overwrite = TRUE ) {
484
+
485
+ $temp_file = tmpfile();
486
  $file = str_replace( "\\", "/", $file );
487
 
488
  if ( ! is_readable( $file ) or ! is_file( $file ) )
498
  fseek( $file_handel, $job_object->steps_data[ $job_object->step_working ][ 'offset' ] );
499
 
500
  while ( $data = fread( $file_handel, 4194304 ) ) { //4194304 = 4MB
501
+ if ( ! $chunk_handle = fopen( 'php://temp/maxmemory:4200000', 'w+' ) ) {
502
+ //fallback if php://temp not working
503
+ if ( ! $chunk_handle = fopen( $temp_file, 'w+' ) )
504
+ throw new BackWPup_Destination_Dropbox_API_Exception( "Can not open temp file for chunked transfer." );
505
+ }
506
+ fwrite( $chunk_handle, $data );
507
+ rewind( $chunk_handle );
508
  $url = self::API_CONTENT_URL . self::API_VERSION_URL . 'chunked_upload';
509
+ $output = $this->request( $url, array( 'upload_id' => $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ], 'offset' => $job_object->steps_data[ $job_object->step_working ][ 'offset' ] ), 'PUT', $chunk_handle, strlen( $data ) );
510
+ fclose( $chunk_handle );
511
  //args for next chunk
512
  $job_object->steps_data[ $job_object->step_working ][ 'offset' ] = $output[ 'offset' ];
513
  $job_object->steps_data[ $job_object->step_working ][ 'uploadid' ] = $output[ 'upload_id' ];
517
  //correct position
518
  fseek( $file_handel, $job_object->steps_data[ $job_object->step_working ][ 'offset' ] );
519
  }
520
+
521
+ // delete temp file if existing
522
+ if ( is_file( $temp_file ) )
523
+ unlink( $temp_file );
524
 
525
  fclose( $file_handel );
526
  $url = self::API_CONTENT_URL . self::API_VERSION_URL . 'commit_chunked_upload/' . $this->root . '/' . $this->encode_path( $path );
559
  'file_limit' => $fileLimit
560
  ) );
561
  }
562
+
563
+ /**
564
+ * @param string $path
565
+ * @return array|mixed|string
566
+ */
567
+ public function media( $path = '' ) {
568
+
569
+ $url = self::API_URL . self::API_VERSION_URL . 'media/' . $this->root . '/' . $path;
570
+
571
+ return $this->request( $url );
572
+ }
573
 
574
  /**
575
  * @param $path
inc/class-destination-email.php CHANGED
@@ -292,7 +292,6 @@ class BackWPup_Destination_Email extends BackWPup_Destinations {
292
  Swift_Preferences::getInstance()->setTempDir( untrailingslashit( BackWPup::get_plugin_data( 'TEMP' ) ) )->setCacheType( 'disk' );
293
  // Create the Transport
294
  if ( $emailmethod == 'smtp' ) {
295
- $job_object->need_free_memory( '8M' );
296
  $transport = Swift_SmtpTransport::newInstance( $emailhost, $emailhostport );
297
  $transport->setUsername( $emailuser );
298
  $transport->setPassword( $emailpass );
@@ -302,7 +301,6 @@ class BackWPup_Destination_Email extends BackWPup_Destinations {
302
  $transport->setEncryption( 'tls' );
303
  }
304
  elseif ( $emailmethod == 'sendmail' ) {
305
- $job_object->need_free_memory( '8M' );
306
  $transport = Swift_SendmailTransport::newInstance( $emailsendmail );
307
  }
308
  else {
292
  Swift_Preferences::getInstance()->setTempDir( untrailingslashit( BackWPup::get_plugin_data( 'TEMP' ) ) )->setCacheType( 'disk' );
293
  // Create the Transport
294
  if ( $emailmethod == 'smtp' ) {
 
295
  $transport = Swift_SmtpTransport::newInstance( $emailhost, $emailhostport );
296
  $transport->setUsername( $emailuser );
297
  $transport->setPassword( $emailpass );
301
  $transport->setEncryption( 'tls' );
302
  }
303
  elseif ( $emailmethod == 'sendmail' ) {
 
304
  $transport = Swift_SendmailTransport::newInstance( $emailsendmail );
305
  }
306
  else {
inc/class-destination-folder.php CHANGED
@@ -111,11 +111,10 @@ class BackWPup_Destination_Folder extends BackWPup_Destinations {
111
  @set_time_limit( 0 );
112
  //chunked readfile
113
  ob_end_clean();
114
- $handle = fopen( $get_file, 'r' );
115
  if ( $handle ) {
116
  while ( ! feof( $handle ) ) {
117
- $buffer = fread( $handle, 20482048 ); //2MB chunkes
118
- echo $buffer;
119
  ob_flush();
120
  flush();
121
  }
@@ -142,6 +141,8 @@ class BackWPup_Destination_Folder extends BackWPup_Destinations {
142
  $backup_folder = BackWPup_Option::get( $jobid, 'backupdir' );
143
  if ( $dir = opendir( $backup_folder ) ) { //make file list
144
  while ( FALSE !== ( $file = readdir( $dir ) ) ) {
 
 
145
  if ( is_file( $backup_folder . $file ) ) {
146
  //file list for backups
147
  $files[ $filecounter ][ 'folder' ] = $backup_folder;
111
  @set_time_limit( 0 );
112
  //chunked readfile
113
  ob_end_clean();
114
+ $handle = fopen( $get_file, 'rb' );
115
  if ( $handle ) {
116
  while ( ! feof( $handle ) ) {
117
+ echo fread( $handle, 20482048 ); //2MB chunkes
 
118
  ob_flush();
119
  flush();
120
  }
141
  $backup_folder = BackWPup_Option::get( $jobid, 'backupdir' );
142
  if ( $dir = opendir( $backup_folder ) ) { //make file list
143
  while ( FALSE !== ( $file = readdir( $dir ) ) ) {
144
+ if ( in_array( $file, array( '.', '..', 'index.php', '.htaccess' ) ) )
145
+ continue;
146
  if ( is_file( $backup_folder . $file ) ) {
147
  //file list for backups
148
  $files[ $filecounter ][ 'folder' ] = $backup_folder;
inc/class-destination-ftp.php CHANGED
@@ -271,9 +271,17 @@ class BackWPup_Destination_Ftp extends BackWPup_Destinations {
271
  else
272
  $job_object->log( sprintf( __( 'FTP server reply: %s', 'backwpup' ), __( 'Error getting SYSTYPE', 'backwpup' ) ), E_USER_ERROR );
273
 
 
 
 
 
 
 
 
274
  //test ftp dir and create it if not exists
275
- if ( ! empty( $job_object->job[ 'ftpdir' ] ) && $job_object->job[ 'ftpdir' ] != '/' ) {
276
- $ftpdirs = explode( "/", rtrim( $job_object->job[ 'ftpdir' ], '/' ) );
 
277
  foreach ( $ftpdirs as $ftpdir ) {
278
  if ( empty( $ftpdir ) )
279
  continue;
@@ -340,22 +348,22 @@ class BackWPup_Destination_Ftp extends BackWPup_Destinations {
340
  $backupfilelist = array();
341
  $filecounter = 0;
342
  $files = array();
343
- if ( $filelist = ftp_nlist( $ftp_conn_id, $current_ftp_dir ) ) {
344
  foreach ( $filelist as $file ) {
345
- if ( $job_object->is_backup_archive( $file ) ) {
346
- $time = ftp_mdtm( $ftp_conn_id, '"' . $file . '"' );
347
- if ( $time != - 1 )
348
- $backupfilelist[ $time ] = basename( $file );
349
- else
350
- $backupfilelist[ ] = basename( $file );
351
- }
352
  if ( basename( $file ) != '.' && basename( $file ) != '..' ) {
353
- $files[ $filecounter ][ 'folder' ] = "ftp://" . $job_object->job[ 'ftphost' ] . ':' . $job_object->job[ 'ftphostport' ] . dirname( $file ) . "/";
354
- $files[ $filecounter ][ 'file' ] = $file;
 
 
 
 
 
 
 
355
  $files[ $filecounter ][ 'filename' ] = basename( $file );
356
- $files[ $filecounter ][ 'downloadurl' ] = "ftp://" . rawurlencode( $job_object->job[ 'ftpuser' ] ) . ":" . rawurlencode( BackWPup_Encryption::decrypt( $job_object->job[ 'ftppass' ] ) ) . "@" . $job_object->job[ 'ftphost' ] . ':' . $job_object->job[ 'ftphostport' ] . $file;
357
- $files[ $filecounter ][ 'filesize' ] = ftp_size( $ftp_conn_id, '"' . $file . '"' );
358
- $files[ $filecounter ][ 'time' ] = ftp_mdtm( $ftp_conn_id, '"' . $file . '"' );
359
  $filecounter ++;
360
  }
361
  }
@@ -368,7 +376,7 @@ class BackWPup_Destination_Ftp extends BackWPup_Destinations {
368
  while ( $file = array_shift( $backupfilelist ) ) {
369
  if ( count( $backupfilelist ) < $job_object->job[ 'ftpmaxbackups' ] )
370
  break;
371
- if ( ftp_delete( $ftp_conn_id, $job_object->job[ 'ftpdir' ] . $file ) ) { //delete files on ftp
372
  foreach ( $files as $key => $filedata ) {
373
  if ( $filedata[ 'file' ] == $job_object->job[ 'ftpdir' ] . $file )
374
  unset( $files[ $key ] );
@@ -377,7 +385,6 @@ class BackWPup_Destination_Ftp extends BackWPup_Destinations {
377
  }
378
  else
379
  $job_object->log( sprintf( __( 'Cannot delete "%s" on FTP server!', 'backwpup' ), $job_object->job[ 'ftpdir' ] . $file ), E_USER_ERROR );
380
-
381
  }
382
  if ( $numdeltefiles > 0 )
383
  $job_object->log( sprintf( _n( 'One file deleted on FTP server', '%d files deleted on FTP server', $numdeltefiles, 'backwpup' ), $numdeltefiles ), E_USER_NOTICE );
271
  else
272
  $job_object->log( sprintf( __( 'FTP server reply: %s', 'backwpup' ), __( 'Error getting SYSTYPE', 'backwpup' ) ), E_USER_ERROR );
273
 
274
+ //set actuel ftp dir to ftp dir
275
+ if ( empty( $job_object->job[ 'ftpdir' ] ) )
276
+ $job_object->job[ 'ftpdir' ] = trailingslashit( ftp_pwd( $ftp_conn_id ) );
277
+ // prepend actual ftp dir if relative dir
278
+ if ( substr( $job_object->job[ 'ftpdir' ], 0, 1 ) != '/' )
279
+ $job_object->job[ 'ftpdir' ] = trailingslashit( ftp_pwd( $ftp_conn_id ) ) . $job_object->job[ 'ftpdir' ];
280
+
281
  //test ftp dir and create it if not exists
282
+ if ( $job_object->job[ 'ftpdir' ] != '/' ) {
283
+ @ftp_chdir( $ftp_conn_id, '/' ); //go to root
284
+ $ftpdirs = explode( '/', trim( $job_object->job[ 'ftpdir' ], '/' ) );
285
  foreach ( $ftpdirs as $ftpdir ) {
286
  if ( empty( $ftpdir ) )
287
  continue;
348
  $backupfilelist = array();
349
  $filecounter = 0;
350
  $files = array();
351
+ if ( $filelist = ftp_nlist( $ftp_conn_id, '.' ) ) {
352
  foreach ( $filelist as $file ) {
 
 
 
 
 
 
 
353
  if ( basename( $file ) != '.' && basename( $file ) != '..' ) {
354
+ if ( $job_object->is_backup_archive( $file ) ) {
355
+ $time = ftp_mdtm( $ftp_conn_id, $file );
356
+ if ( $time != - 1 )
357
+ $backupfilelist[ $time ] = basename( $file );
358
+ else
359
+ $backupfilelist[ ] = basename( $file );
360
+ }
361
+ $files[ $filecounter ][ 'folder' ] = 'ftp://' . $job_object->job[ 'ftphost' ] . ':' . $job_object->job[ 'ftphostport' ] . $job_object->job[ 'ftpdir' ];
362
+ $files[ $filecounter ][ 'file' ] = $job_object->job[ 'ftpdir' ] . basename( $file );
363
  $files[ $filecounter ][ 'filename' ] = basename( $file );
364
+ $files[ $filecounter ][ 'downloadurl' ] = 'ftp://' . rawurlencode( $job_object->job[ 'ftpuser' ] ) . ':' . rawurlencode( BackWPup_Encryption::decrypt( $job_object->job[ 'ftppass' ] ) ) . '@' . $job_object->job[ 'ftphost' ] . ':' . $job_object->job[ 'ftphostport' ] . $job_object->job[ 'ftpdir' ] . basename( $file );
365
+ $files[ $filecounter ][ 'filesize' ] = ftp_size( $ftp_conn_id, $file );
366
+ $files[ $filecounter ][ 'time' ] = ftp_mdtm( $ftp_conn_id, $file );
367
  $filecounter ++;
368
  }
369
  }
376
  while ( $file = array_shift( $backupfilelist ) ) {
377
  if ( count( $backupfilelist ) < $job_object->job[ 'ftpmaxbackups' ] )
378
  break;
379
+ if ( ftp_delete( $ftp_conn_id, $file ) ) { //delete files on ftp
380
  foreach ( $files as $key => $filedata ) {
381
  if ( $filedata[ 'file' ] == $job_object->job[ 'ftpdir' ] . $file )
382
  unset( $files[ $key ] );
385
  }
386
  else
387
  $job_object->log( sprintf( __( 'Cannot delete "%s" on FTP server!', 'backwpup' ), $job_object->job[ 'ftpdir' ] . $file ), E_USER_ERROR );
 
388
  }
389
  if ( $numdeltefiles > 0 )
390
  $job_object->log( sprintf( _n( 'One file deleted on FTP server', '%d files deleted on FTP server', $numdeltefiles, 'backwpup' ), $numdeltefiles ), E_USER_NOTICE );
inc/class-destination-msazure.php CHANGED
@@ -32,7 +32,7 @@ class BackWPup_Destination_MSAzure extends BackWPup_Destinations {
32
  */
33
  public function option_defaults() {
34
 
35
- return array( 'msazureaccname' => '', 'msazurekey' => '', 'msazurecontainer' => '', 'msazuredir' => trailingslashit( sanitize_title_with_dashes( get_bloginfo( 'name' ) ) ), 'msazuremaxbackups' => 15, 'msazuresyncnodelete' => TRUE );
36
  }
37
 
38
 
32
  */
33
  public function option_defaults() {
34
 
35
+ return array( 'msazureaccname' => '', 'msazurekey' => '', 'msazurecontainer' => '', 'msazuredir' => trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) ), 'msazuremaxbackups' => 15, 'msazuresyncnodelete' => TRUE );
36
  }
37
 
38
 
inc/class-destination-rsc.php CHANGED
@@ -32,7 +32,7 @@ class BackWPup_Destination_RSC extends BackWPup_Destinations {
32
  */
33
  public function option_defaults() {
34
 
35
- return array( 'rscusername' => '', 'rscapikey' => '', 'rsccontainer' => '', 'rscregion' => 'DFW', 'rscdir' => trailingslashit( sanitize_title_with_dashes( get_bloginfo( 'name' ) ) ), 'rscmaxbackups' => 15, 'rscsyncnodelete' => TRUE );
36
  }
37
 
38
 
32
  */
33
  public function option_defaults() {
34
 
35
+ return array( 'rscusername' => '', 'rscapikey' => '', 'rsccontainer' => '', 'rscregion' => 'DFW', 'rscdir' => trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) ), 'rscmaxbackups' => 15, 'rscsyncnodelete' => TRUE );
36
  }
37
 
38
 
inc/class-destination-s3-v1.php CHANGED
@@ -71,7 +71,7 @@ class BackWPup_Destination_S3_V1 extends BackWPup_Destinations {
71
  */
72
  public function option_defaults() {
73
 
74
- return array( 's3accesskey' => '', 's3secretkey' => '', 's3bucket' => '', 's3region' => 'us-east-1', 's3base_url' => '', 's3ssencrypt' => '', 's3storageclass' => '', 's3dir' => trailingslashit( sanitize_title_with_dashes( get_bloginfo( 'name' ) ) ), 's3maxbackups' => 15, 's3syncnodelete' => TRUE );
75
  }
76
 
77
 
@@ -403,9 +403,6 @@ class BackWPup_Destination_S3_V1 extends BackWPup_Destinations {
403
  //transfer file to S3
404
  $job_object->log( __( 'Starting upload to S3 Service&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
405
 
406
- //check memory
407
- $job_object->need_free_memory( '6M' );
408
-
409
  //Transfer Backup to S3
410
  if ( $job_object->job[ 's3storageclass' ] == 'REDUCED_REDUNDANCY' ) //set reduced redundancy or not
411
  $storage=AmazonS3::STORAGE_REDUCED;
71
  */
72
  public function option_defaults() {
73
 
74
+ return array( 's3accesskey' => '', 's3secretkey' => '', 's3bucket' => '', 's3region' => 'us-east-1', 's3base_url' => '', 's3ssencrypt' => '', 's3storageclass' => '', 's3dir' => trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) ), 's3maxbackups' => 15, 's3syncnodelete' => TRUE );
75
  }
76
 
77
 
403
  //transfer file to S3
404
  $job_object->log( __( 'Starting upload to S3 Service&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
405
 
 
 
 
406
  //Transfer Backup to S3
407
  if ( $job_object->job[ 's3storageclass' ] == 'REDUCED_REDUNDANCY' ) //set reduced redundancy or not
408
  $storage=AmazonS3::STORAGE_REDUCED;
inc/class-destination-s3.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- // Amazon S3 SDK v2.2.0
3
  // http://aws.amazon.com/de/sdkforphp2/
4
  // https://github.com/aws/aws-sdk-php
5
  if ( ! class_exists( 'Symfony\\Component\\ClassLoader\\UniversalClassLoader' ) )
@@ -76,7 +76,7 @@ class BackWPup_Destination_S3 extends BackWPup_Destinations {
76
  */
77
  public function option_defaults() {
78
 
79
- return array( 's3accesskey' => '', 's3secretkey' => '', 's3bucket' => '', 's3region' => 'us-east-1', 's3base_url' => '', 's3ssencrypt' => '', 's3storageclass' => '', 's3dir' => trailingslashit( sanitize_title_with_dashes( get_bloginfo( 'name' ) ) ), 's3maxbackups' => 15, 's3syncnodelete' => TRUE, 's3multipart' => TRUE );
80
  }
81
 
82
 
@@ -399,9 +399,6 @@ class BackWPup_Destination_S3 extends BackWPup_Destinations {
399
 
400
  //transfer file to S3
401
  $job_object->log( __( 'Starting upload to S3 Service&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
402
-
403
- //check memory
404
- $job_object->need_free_memory( '6M' );
405
 
406
  if ( ! $job_object->job[ 's3multipart' ] ) {
407
  //Prepare Upload
@@ -431,20 +428,19 @@ class BackWPup_Destination_S3 extends BackWPup_Destinations {
431
  ->setClient( $s3 )
432
  ->setSource( $job_object->backup_folder . $job_object->backup_file )
433
  ->setBucket( $job_object->job[ 's3bucket' ] )
434
- ->setOption('ContentType', $job_object->get_mime_type( $job_object->backup_folder . $job_object->backup_file ) )
435
- ->setOption('ACL', 'private' )
436
  ->setKey( $job_object->job[ 's3dir' ] . $job_object->backup_file );
437
  if ( ! empty( $job_object->job[ 's3ssencrypt' ] ) )
438
- $multipart_transfer = $multipart_transfer->setOption('ServerSideEncryption', $job_object->job[ 's3ssencrypt' ] );
439
  if ( ! empty( $job_object->job[ 's3storageclass' ] ) )
440
- $multipart_transfer = $multipart_transfer->setOption('StorageClass', $job_object->job[ 's3storageclass' ] );
441
  $multipart_transfer = $multipart_transfer->build();
442
 
443
  // Attach event listeners to the transfer object for upload progress
444
- $dispatcher = $multipart_transfer->getEventDispatcher();
445
- $dispatcher->addListener($multipart_transfer::AFTER_PART_UPLOAD, function ($event) {
446
  $size = $event['command']->get('Body')->getContentLength();
447
- $job_object = BackWPup_Job::get_working_data();
448
  $job_object->substeps_done = $job_object->substeps_done + $size;
449
  $job_object->update_working_data();
450
  });
1
  <?php
2
+ // Amazon S3 SDK v2.2.1
3
  // http://aws.amazon.com/de/sdkforphp2/
4
  // https://github.com/aws/aws-sdk-php
5
  if ( ! class_exists( 'Symfony\\Component\\ClassLoader\\UniversalClassLoader' ) )
76
  */
77
  public function option_defaults() {
78
 
79
+ return array( 's3accesskey' => '', 's3secretkey' => '', 's3bucket' => '', 's3region' => 'us-east-1', 's3base_url' => '', 's3ssencrypt' => '', 's3storageclass' => '', 's3dir' => trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) ), 's3maxbackups' => 15, 's3syncnodelete' => TRUE, 's3multipart' => TRUE );
80
  }
81
 
82
 
399
 
400
  //transfer file to S3
401
  $job_object->log( __( 'Starting upload to S3 Service&#160;&hellip;', 'backwpup' ), E_USER_NOTICE );
 
 
 
402
 
403
  if ( ! $job_object->job[ 's3multipart' ] ) {
404
  //Prepare Upload
428
  ->setClient( $s3 )
429
  ->setSource( $job_object->backup_folder . $job_object->backup_file )
430
  ->setBucket( $job_object->job[ 's3bucket' ] )
431
+ ->setOption( 'ContentType', $job_object->get_mime_type( $job_object->backup_folder . $job_object->backup_file ) )
432
+ ->setOption( 'ACL', 'private' )
433
  ->setKey( $job_object->job[ 's3dir' ] . $job_object->backup_file );
434
  if ( ! empty( $job_object->job[ 's3ssencrypt' ] ) )
435
+ $multipart_transfer = $multipart_transfer->setOption( 'ServerSideEncryption', $job_object->job[ 's3ssencrypt' ] );
436
  if ( ! empty( $job_object->job[ 's3storageclass' ] ) )
437
+ $multipart_transfer = $multipart_transfer->setOption( 'StorageClass', $job_object->job[ 's3storageclass' ] );
438
  $multipart_transfer = $multipart_transfer->build();
439
 
440
  // Attach event listeners to the transfer object for upload progress
441
+ $multipart_transfer->getEventDispatcher()->addListener( $multipart_transfer::AFTER_PART_UPLOAD, function ($event) {
 
442
  $size = $event['command']->get('Body')->getContentLength();
443
+ $job_object = BackWPup_Job::getInstance();
444
  $job_object->substeps_done = $job_object->substeps_done + $size;
445
  $job_object->update_working_data();
446
  });
inc/class-destination-sugarsync.php CHANGED
@@ -24,7 +24,7 @@ class BackWPup_Destination_SugarSync extends BackWPup_Destinations {
24
  * @return array
25
  */
26
  public function option_defaults() {
27
- return array( 'sugarrefreshtoken' => '', 'sugarroot' => '', 'sugardir' => trailingslashit( sanitize_title_with_dashes( get_bloginfo( 'name' ) ) ), 'sugarmaxbackups' => 15 );
28
  }
29
 
30
 
24
  * @return array
25
  */
26
  public function option_defaults() {
27
+ return array( 'sugarrefreshtoken' => '', 'sugarroot' => '', 'sugardir' => trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) ), 'sugarmaxbackups' => 15 );
28
  }
29
 
30
 
inc/class-file.php CHANGED
@@ -13,17 +13,17 @@ class BackWPup_File {
13
  public static function get_upload_dir() {
14
 
15
  if ( is_multisite() ) {
16
- if ( get_site_option( 'ms_files_rewriting' ) && defined( 'UPLOADBLOGSDIR' ) )
17
- return trailingslashit( str_replace( '\\', '/',ABSPATH . UPLOADBLOGSDIR ) );
18
- elseif ( defined( 'UPLOADS' ) && ! ( is_multisite() && get_site_option( 'ms_files_rewriting' ) ) )
19
- return trailingslashit( str_replace( '\\', '/',ABSPATH . UPLOADS ) );
20
- elseif ( defined( 'MULTISITE' ) )
21
- return trailingslashit( str_replace( '\\', '/',ABSPATH . '/sites/' ) );
22
  else
23
- return trailingslashit( str_replace( '\\', '/',ABSPATH ) );
24
  } else {
25
  $upload_dir = wp_upload_dir();
26
- return trailingslashit( str_replace( '\\', '/',$upload_dir[ 'basedir' ] ) );
27
  }
28
 
29
  }
13
  public static function get_upload_dir() {
14
 
15
  if ( is_multisite() ) {
16
+ if ( defined( 'UPLOADBLOGSDIR' ) )
17
+ return trailingslashit( str_replace( '\\', '/',ABSPATH . UPLOADBLOGSDIR ) );
18
+ elseif ( is_dir( trailingslashit( WP_CONTENT_DIR ) . 'uploads/sites') )
19
+ return str_replace( '\\', '/', trailingslashit( WP_CONTENT_DIR ) . 'uploads/sites/' );
20
+ elseif ( is_dir( trailingslashit( WP_CONTENT_DIR ) . 'uploads' ) )
21
+ return str_replace( '\\', '/', trailingslashit( WP_CONTENT_DIR ) . 'uploads/' );
22
  else
23
+ return trailingslashit( str_replace( '\\', '/', WP_CONTENT_DIR ) );
24
  } else {
25
  $upload_dir = wp_upload_dir();
26
+ return trailingslashit( str_replace( '\\', '/', $upload_dir[ 'basedir' ] ) );
27
  }
28
 
29
  }
inc/class-frontend.php DELETED
@@ -1,81 +0,0 @@
1
- <?php
2
- /**
3
- *
4
- */
5
- class BackWPup_FrontEnd {
6
-
7
- private static $instance = NULL;
8
-
9
- /**
10
- *
11
- * @return \BackWPup_FrontEnd
12
- */
13
- private function __construct() {
14
-
15
- //add for job start/run with url
16
- add_filter( 'query_vars', array( $this, 'add_start_job_query_vars' ) );
17
- add_action( 'request', array( $this, 'request' ), 0 );
18
- }
19
-
20
- /**
21
- * @static
22
- * @return \BackWPup_FrontEnd
23
- */
24
- public static function getInstance() {
25
-
26
- if (NULL === self::$instance) {
27
- self::$instance = new self;
28
- }
29
- return self::$instance;
30
- }
31
-
32
- /**
33
- * Add Query var for job start
34
- */
35
- public function add_start_job_query_vars($vars) {
36
-
37
- $vars[] = 'backwpup_run';
38
-
39
- return $vars;
40
- }
41
-
42
- /**
43
- * Start job if run query's.
44
- */
45
- public function request( $query_vars ) {
46
-
47
- //only work if backwpup_run as query var ist set and nothing else and the value ist right
48
- if ( empty( $query_vars[ 'backwpup_run' ] ) || count( $query_vars ) != 1 || ! in_array( $query_vars[ 'backwpup_run' ], array( 'test','restart', 'runnow', 'runnowalt', 'runext', 'cronrun' ) ) )
49
- return $query_vars;
50
-
51
- // generate normal nonce
52
- $nonce = substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-' . $query_vars[ 'backwpup_run' ], 'nonce' ), - 12, 10 );
53
- //special nonce on external start
54
- if ( $query_vars[ 'backwpup_run' ] == 'runext' )
55
- $nonce = BackWPup_Option::get( 'cfg', 'jobrunauthkey' );
56
- // check nonce
57
- if ( empty( $_GET['_nonce'] ) || $nonce != $_GET['_nonce'] )
58
- return $query_vars;
59
-
60
- //response on test
61
- if ( $query_vars[ 'backwpup_run' ] == 'test') {
62
- @header( 'Content-Type: text/html; charset=' . get_bloginfo( 'charset' ) );
63
- @header( 'X-Robots-Tag: noindex, nofollow' );
64
- send_nosniff_header();
65
- nocache_headers();
66
- die( 'Response Test O.K.' );
67
- }
68
-
69
- //check runext is allowed for job
70
- if ( $query_vars[ 'backwpup_run' ] == 'runext' ) {
71
- $jobids_external = BackWPup_Option::get_job_ids( 'activetype', 'link' );
72
- if ( !isset( $_GET[ 'jobid' ] ) || ! in_array( $_GET[ 'jobid' ], $jobids_external ) )
73
- return $query_vars;
74
- }
75
-
76
- //run BackWPup job
77
- BackWPup_Job::start_http( $query_vars[ 'backwpup_run' ] );
78
- die();
79
- }
80
-
81
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/class-help.php CHANGED
@@ -14,7 +14,7 @@ class BackWPup_Help {
14
  'id' => 'plugininfo',
15
  'title' => __( 'Plugin Info', 'backwpup' ),
16
  'content' =>
17
- '<p> '.sprintf( _x( '%1$s version %2$s. A project by <a href="http://inpsyde.com">Inpsyde GmbH</a>. Developed by <a href="http://danielhuesken.de">Daniel Hüsken</a>.','Plugin name and link; Plugin Version','backwpup' ), '<a href="' . translate( BackWPup::get_plugin_data( 'PluginURI' ), 'backwpup' ) . '">' . BackWPup::get_plugin_data( 'Name' ) . '</a>' , BackWPup::get_plugin_data( 'Version' ) ) . '</p>'
18
  . '<p>' . __( 'BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions.', 'backwpup' ) . '</p>'
19
  ) );
20
 
14
  'id' => 'plugininfo',
15
  'title' => __( 'Plugin Info', 'backwpup' ),
16
  'content' =>
17
+ '<p> '.str_replace( '\"','"', sprintf( _x( '%1$s version %2$s. A project by <a href="http://inpsyde.com">Inpsyde GmbH</a>. Developed by <a href="http://danielhuesken.de">Daniel Hüsken</a>.','Plugin name and link; Plugin Version','backwpup' ), '<a href="' . translate( BackWPup::get_plugin_data( 'PluginURI' ), 'backwpup' ) . '">' . BackWPup::get_plugin_data( 'Name' ) . '</a>' , BackWPup::get_plugin_data( 'Version' ) ) ) . '</p>'
18
  . '<p>' . __( 'BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions.', 'backwpup' ) . '</p>'
19
  ) );
20
 
inc/class-job.php CHANGED
@@ -131,9 +131,9 @@ final class BackWPup_Job {
131
  */
132
  public $remove_path = '';
133
  /**
134
- * @var bool maintenance mode can used
135
  */
136
- private $maintenance_mode = TRUE;
137
 
138
  /**
139
  *
@@ -352,7 +352,7 @@ final class BackWPup_Job {
352
  */
353
  public static function get_jobrun_url( $starttype, $jobid = 0 ) {
354
 
355
- $url = home_url( '/' );
356
  $header = '';
357
  $authurl = '';
358
  $query_args = array(
@@ -398,7 +398,7 @@ final class BackWPup_Job {
398
  if ( ! in_array( $starttype, array( 'runnowlink', 'runext' ) ) ) {
399
  return @wp_remote_get( $url[ 'url' ], array(
400
  'blocking' => FALSE,
401
- 'sslverify' => apply_filters( 'https_local_ssl_verify', TRUE ),
402
  'timeout' => 0.01,
403
  'headers' => $url[ 'header' ],
404
  'user-agent' => BackWpup::get_plugin_data( 'User-Agent' )
@@ -414,10 +414,6 @@ final class BackWPup_Job {
414
  */
415
  public static function start_http($starttype) {
416
 
417
- //define DOING_CRON to prevent caching
418
- if( ! defined( 'DOING_CRON' ) )
419
- define( 'DOING_CRON', TRUE );
420
-
421
  //prevent W3TC object cache
422
  define('DONOTCACHEOBJECT', TRUE);
423
 
@@ -469,8 +465,8 @@ final class BackWPup_Job {
469
  if ( $starttype == 'restart' && is_object( $backwpup_job_object ) ) {
470
  self::$instance = $backwpup_job_object;
471
  }
472
- //disable user abort
473
- ignore_user_abort( TRUE );
474
  //close session file on server side to avoid blocking other requests
475
  session_write_close();
476
  // disconnect or redirect
@@ -650,7 +646,7 @@ final class BackWPup_Job {
650
  if ( defined( 'WP_DEBUG') && WP_DEBUG ) //on debug display all errors
651
  set_error_handler( array( $this, 'log' ) );
652
  else //on normal display all errors without notices
653
- set_error_handler( array( $this, 'log' ), E_ALL ^ E_NOTICE );
654
  set_exception_handler( array( $this, 'exception_handler' ) );
655
  //not loading Textdomains and unload loaded
656
  if ( BackWPup_Option::get( 'cfg', 'jobnotranslate') ) {
@@ -1268,24 +1264,20 @@ final class BackWPup_Job {
1268
 
1269
  //do not deactivate maintenance if active
1270
  if ( $enable ) {
1271
- $is_active = FALSE;
1272
- if ( class_exists( 'WPMaintenanceMode' ) ) {
1273
- if ( is_multisite() && is_plugin_active_for_network( FB_WM_BASENAME ) )
1274
- $is_active = update_site_option( FB_WM_TEXTDOMAIN . '-msqld', 1 );
1275
- else
1276
- $is_active = update_option( FB_WM_TEXTDOMAIN . '-msqld', 1 );
1277
- }
1278
 
1279
- if ( ! empty( $is_active ) )
1280
- $this->maintenance_mode = FALSE;
 
 
1281
  }
1282
 
1283
- //Not activate Maintenance mode on runnow
1284
- if ( ! class_exists( 'WPMaintenanceMode' ) && $this->jobstarttype == 'runnow' || $this->jobstarttype == 'runnowalt' )
1285
- $this->maintenance_mode = FALSE;
1286
-
1287
  //exit on not allowed
1288
- if ( ! $this->maintenance_mode )
1289
  return;
1290
 
1291
  //Activate Maintenance mode
@@ -1333,8 +1325,7 @@ final class BackWPup_Job {
1333
  $newmemory = round( $needmemory / 1024 / 1024 ) + 1 . 'M';
1334
  if ( $needmemory >= 1073741824 )
1335
  $newmemory = round( $needmemory / 1024 / 1024 / 1024 ) . 'G';
1336
- if ( $oldmem = @ini_set( 'memory_limit', $newmemory ) )
1337
- $this->log( sprintf( __( 'Memory increased from %1$s to %2$s', 'backwpup' ), $oldmem, @ini_get( 'memory_limit' ) ), E_USER_NOTICE );
1338
  }
1339
  }
1340
 
@@ -1769,7 +1760,7 @@ final class BackWPup_Job {
1769
  return FALSE;
1770
 
1771
  $datevars = array( '%d', '%j', '%m', '%n', '%Y', '%y', '%a', '%A', '%B', '%g', '%G', '%h', '%H', '%i', '%s', '%u', '%U' );
1772
- $dateregex = array( '(0[1-9]|[12][0-9]|3[01])', '([1-9]|[12][0-9]|3[01])', '(0[1-9]|1[0-2])', '([1-9]|1[0-2])', '((19|20|21)[0-9]{2})', '([0-9]{2})', '(am|pm)', '(AM|PM)', '([0-9]{3})', '([1-9]|1[0-2])', '([1-9]|1[0-9]|2[0-4])', '(0[1-9]|1[0-2])', '(0[1-9]|1[0-9]|2[0-4])', '(0[1-9]|[1-5][0-9])', '(0[1-9]|[1-5][0-9])', '\d', '\d' );
1773
 
1774
  $regex = "/^" . str_replace( $datevars, $dateregex, str_replace( "\/", "/", $this->job[ 'archivename' ] ) . $this->job[ 'archiveformat' ] ) . "$/";
1775
 
@@ -1814,7 +1805,7 @@ final class BackWPup_Job {
1814
  file_put_contents( $this->folder_list_file ,'<?php' . PHP_EOL .'$folders = array();', FILE_APPEND );
1815
  }
1816
 
1817
- file_put_contents( $this->folder_list_file , PHP_EOL . '$folders[] = utf8_decode( \'' . utf8_encode( $folder ) .'\' );', FILE_APPEND );
1818
 
1819
  $this->count_folder ++;
1820
  }
131
  */
132
  public $remove_path = '';
133
  /**
134
+ * @var bool maintenance mode already active
135
  */
136
+ private $maintenance_mode = FALSE;
137
 
138
  /**
139
  *
352
  */
353
  public static function get_jobrun_url( $starttype, $jobid = 0 ) {
354
 
355
+ $url = site_url( 'wp-cron.php' );
356
  $header = '';
357
  $authurl = '';
358
  $query_args = array(
398
  if ( ! in_array( $starttype, array( 'runnowlink', 'runext' ) ) ) {
399
  return @wp_remote_get( $url[ 'url' ], array(
400
  'blocking' => FALSE,
401
+ 'sslverify' => FALSE,
402
  'timeout' => 0.01,
403
  'headers' => $url[ 'header' ],
404
  'user-agent' => BackWpup::get_plugin_data( 'User-Agent' )
414
  */
415
  public static function start_http($starttype) {
416
 
 
 
 
 
417
  //prevent W3TC object cache
418
  define('DONOTCACHEOBJECT', TRUE);
419
 
465
  if ( $starttype == 'restart' && is_object( $backwpup_job_object ) ) {
466
  self::$instance = $backwpup_job_object;
467
  }
468
+ // disable user abort. wp-cron.php set it now
469
+ //ignore_user_abort( TRUE );
470
  //close session file on server side to avoid blocking other requests
471
  session_write_close();
472
  // disconnect or redirect
646
  if ( defined( 'WP_DEBUG') && WP_DEBUG ) //on debug display all errors
647
  set_error_handler( array( $this, 'log' ) );
648
  else //on normal display all errors without notices
649
+ set_error_handler( array( $this, 'log' ), E_ALL ^ E_NOTICE ^ E_STRICT );
650
  set_exception_handler( array( $this, 'exception_handler' ) );
651
  //not loading Textdomains and unload loaded
652
  if ( BackWPup_Option::get( 'cfg', 'jobnotranslate') ) {
1264
 
1265
  //do not deactivate maintenance if active
1266
  if ( $enable ) {
1267
+ $is_active = 0;
1268
+ if ( method_exists( 'WPMaintenanceMode', 'get_msqld_option' ) )
1269
+ $is_active = WPMaintenanceMode::get_msqld_option();
1270
+ if ( is_file( ABSPATH . '.maintenance' ) )
1271
+ $is_active = TRUE;
 
 
1272
 
1273
+ if ( ! empty( $is_active ) ) {
1274
+ $this->maintenance_mode = TRUE;
1275
+ $this->log( __( 'Blog is not setting to maintenance mode, because it is already active.', 'backwpup' ), E_USER_NOTICE );
1276
+ }
1277
  }
1278
 
 
 
 
 
1279
  //exit on not allowed
1280
+ if ( $this->maintenance_mode )
1281
  return;
1282
 
1283
  //Activate Maintenance mode
1325
  $newmemory = round( $needmemory / 1024 / 1024 ) + 1 . 'M';
1326
  if ( $needmemory >= 1073741824 )
1327
  $newmemory = round( $needmemory / 1024 / 1024 / 1024 ) . 'G';
1328
+ @ini_set( 'memory_limit', $newmemory );
 
1329
  }
1330
  }
1331
 
1760
  return FALSE;
1761
 
1762
  $datevars = array( '%d', '%j', '%m', '%n', '%Y', '%y', '%a', '%A', '%B', '%g', '%G', '%h', '%H', '%i', '%s', '%u', '%U' );
1763
+ $dateregex = array( '(0[1-9]|[12][0-9]|3[01])', '([1-9]|[12][0-9]|3[01])', '(0[1-9]|1[0-2])', '([1-9]|1[0-2])', '((19|20|21)[0-9]{2})', '([0-9]{2})', '(am|pm)', '(AM|PM)', '([0-9]{3})', '([0-9]|1[0-1])', '([0-9]|1[0-9]|2[0-3])', '(0[0-9]|1[0-1])', '(0[0-9]|1[0-9]|2[0-3])', '(0[0-9]|[1-5][0-9])', '(0[0-9]|[1-5][0-9])', '\d', '\d' );
1764
 
1765
  $regex = "/^" . str_replace( $datevars, $dateregex, str_replace( "\/", "/", $this->job[ 'archivename' ] ) . $this->job[ 'archiveformat' ] ) . "$/";
1766
 
1805
  file_put_contents( $this->folder_list_file ,'<?php' . PHP_EOL .'$folders = array();', FILE_APPEND );
1806
  }
1807
 
1808
+ file_put_contents( $this->folder_list_file , PHP_EOL . '$folders[] = utf8_decode( \'' . addslashes( utf8_encode( $folder ) ) .'\' );', FILE_APPEND );
1809
 
1810
  $this->count_folder ++;
1811
  }
inc/class-jobtype-dbcheck.php CHANGED
@@ -86,7 +86,7 @@ class BackWPup_JobType_DBCheck extends BackWPup_JobTypes {
86
  public function job_run( $job_object ) {
87
  global $wpdb;
88
 
89
- trigger_error( sprintf( __( '%d. Trying to check database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
90
  if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) || ! is_array( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
91
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] = array();
92
 
@@ -118,42 +118,42 @@ class BackWPup_JobType_DBCheck extends BackWPup_JobTypes {
118
  continue;
119
 
120
  if ( $tablestype[ $table ] == 'VIEW' ) {
121
- trigger_error( sprintf( __( 'Table %1$s is a view. Not checked.', 'backwpup' ), $table ), E_USER_NOTICE );
122
  continue;
123
  }
124
 
125
  if ( $status[ $table ][ 'Engine' ] != 'MyISAM' && $status[ $table ][ 'Engine' ] != 'InnoDB' ) {
126
- trigger_error( sprintf( __( 'Table %1$s is not a MyISAM/InnoDB table. Not checked.', 'backwpup' ), $table ), E_USER_NOTICE );
127
  continue;
128
  }
129
 
130
  //CHECK TABLE funktioniert bei MyISAM- und InnoDB-Tabellen (http://dev.mysql.com/doc/refman/5.1/de/check-table.html)
131
  $check = $wpdb->get_row( "CHECK TABLE `" . $table . "` MEDIUM", OBJECT );
132
  if ( $check->Msg_text == 'OK' )
133
- trigger_error( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ), E_USER_NOTICE );
134
  elseif ( strtolower( $check->Msg_type ) == 'warning' )
135
- trigger_error( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ), E_USER_WARNING );
136
  else
137
- trigger_error( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ), E_USER_ERROR );
138
 
139
  //Try to Repair table
140
  if ( ! empty( $job_object->job[ 'dbcheckrepair' ] ) && $check->Msg_text != 'OK' && $status[ $table ][ 'Engine' ] == 'MyISAM' ) {
141
  $repair = $wpdb->get_row( 'REPAIR TABLE `' . $table . '` EXTENDED', OBJECT );
142
  if ( $repair->Msg_type == 'OK' )
143
- trigger_error( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ), E_USER_NOTICE );
144
  elseif ( strtolower( $repair->Msg_type ) == 'warning' )
145
- trigger_error( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ), E_USER_WARNING );
146
  else
147
- trigger_error( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ), E_USER_ERROR );
148
  }
149
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ][ ] = $table;
150
  $job_object->substeps_done ++;
151
  }
152
  $job_object->set_maintenance_mode( FALSE );
153
- trigger_error( __( 'Database check done!', 'backwpup' ), E_USER_NOTICE );
154
  }
155
  else {
156
- trigger_error( __( 'No tables to check.', 'backwpup' ), E_USER_WARNING );
157
  }
158
 
159
  unset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] );
86
  public function job_run( $job_object ) {
87
  global $wpdb;
88
 
89
+ $job_object->log( sprintf( __( '%d. Trying to check database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
90
  if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) || ! is_array( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
91
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] = array();
92
 
118
  continue;
119
 
120
  if ( $tablestype[ $table ] == 'VIEW' ) {
121
+ $job_object->log( sprintf( __( 'Table %1$s is a view. Not checked.', 'backwpup' ), $table ) );
122
  continue;
123
  }
124
 
125
  if ( $status[ $table ][ 'Engine' ] != 'MyISAM' && $status[ $table ][ 'Engine' ] != 'InnoDB' ) {
126
+ $job_object->log( sprintf( __( 'Table %1$s is not a MyISAM/InnoDB table. Not checked.', 'backwpup' ), $table ) );
127
  continue;
128
  }
129
 
130
  //CHECK TABLE funktioniert bei MyISAM- und InnoDB-Tabellen (http://dev.mysql.com/doc/refman/5.1/de/check-table.html)
131
  $check = $wpdb->get_row( "CHECK TABLE `" . $table . "` MEDIUM", OBJECT );
132
  if ( $check->Msg_text == 'OK' )
133
+ $job_object->log( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ) );
134
  elseif ( strtolower( $check->Msg_type ) == 'warning' )
135
+ $job_object->log( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ), E_USER_WARNING );
136
  else
137
+ $job_object->log( sprintf( __( 'Result of table check for %1$s is: %2$s', 'backwpup' ), $table, $check->Msg_text ), E_USER_ERROR );
138
 
139
  //Try to Repair table
140
  if ( ! empty( $job_object->job[ 'dbcheckrepair' ] ) && $check->Msg_text != 'OK' && $status[ $table ][ 'Engine' ] == 'MyISAM' ) {
141
  $repair = $wpdb->get_row( 'REPAIR TABLE `' . $table . '` EXTENDED', OBJECT );
142
  if ( $repair->Msg_type == 'OK' )
143
+ $job_object->log( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ) );
144
  elseif ( strtolower( $repair->Msg_type ) == 'warning' )
145
+ $job_object->log( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ), E_USER_WARNING );
146
  else
147
+ $job_object->log( sprintf( __( 'Result of table repair for %1$s is: %2$s', 'backwpup' ), $table, $repair->Msg_text ), E_USER_ERROR );
148
  }
149
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ][ ] = $table;
150
  $job_object->substeps_done ++;
151
  }
152
  $job_object->set_maintenance_mode( FALSE );
153
+ $job_object->log( __( 'Database check done!', 'backwpup' ) );
154
  }
155
  else {
156
+ $job_object->log( __( 'No tables to check.', 'backwpup' ) );
157
  }
158
 
159
  unset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] );
inc/class-jobtype-dbdump.php CHANGED
@@ -35,7 +35,7 @@ class BackWPup_JobType_DBDump extends BackWPup_JobTypes {
35
  global $wpdb;
36
 
37
  $defaults = array(
38
- 'dbdumpexclude' => array(), 'dbdumpfile' => sanitize_title_with_dashes( DB_NAME ), 'dbdumptype' => 'sql', 'dbdumpfilecompression' => '',
39
  'dbdumpmaintenance' => FALSE
40
  );
41
  //set only wordpress tables as default
@@ -57,11 +57,11 @@ class BackWPup_JobType_DBDump extends BackWPup_JobTypes {
57
 
58
  ?>
59
  <input name="dbdumpwpony" type="hidden" value="1" />
60
- <h3 class="title"><?php _e( 'Settings for database dump', 'backwpup' ) ?></h3>
61
  <p></p>
62
  <table class="form-table">
63
  <tr valign="top">
64
- <th scope="row"><?php _e( 'Tables to dump', 'backwpup' ); ?></th>
65
  <td>
66
  <input type="button" class="button-secondary" id="dball" value="<?php _e( 'all', 'backwpup' ); ?>">&nbsp;
67
  <input type="button" class="button-secondary" id="dbnone" value="<?php _e( 'none', 'backwpup' ); ?>">&nbsp;
@@ -133,7 +133,7 @@ class BackWPup_JobType_DBDump extends BackWPup_JobTypes {
133
  BackWPup_Option::update( $id, 'dbdumpmaintenance', ( isset( $_POST[ 'dbdumpmaintenance' ] ) && $_POST[ 'dbdumpmaintenance' ] == 1 ) ? TRUE : FALSE );
134
  if ( $_POST[ 'dbdumpfilecompression' ] == '' || $_POST[ 'dbdumpfilecompression' ] == '.gz' || $_POST[ 'dbdumpfilecompression' ] == '.bz2' )
135
  BackWPup_Option::update( $id, 'dbdumpfilecompression', $_POST[ 'dbdumpfilecompression' ] );
136
- BackWPup_Option::update( $id, 'dbdumpfile', sanitize_title_with_dashes( $_POST[ 'dbdumpfile' ]) );
137
  //selected tables
138
  $dbdumpexclude = array();
139
  $checked_db_tables = array();
@@ -160,7 +160,7 @@ class BackWPup_JobType_DBDump extends BackWPup_JobTypes {
160
  $job_object->substeps_done = 0;
161
  $job_object->substeps_todo = 1;
162
 
163
- trigger_error( sprintf( __( '%d. Try to dump database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
164
 
165
  //build filename
166
  if ( empty( $job_object->temp[ 'dbdumpfile' ] ) )
35
  global $wpdb;
36
 
37
  $defaults = array(
38
+ 'dbdumpexclude' => array(), 'dbdumpfile' => sanitize_file_name( DB_NAME ), 'dbdumptype' => 'sql', 'dbdumpfilecompression' => '',
39
  'dbdumpmaintenance' => FALSE
40
  );
41
  //set only wordpress tables as default
57
 
58
  ?>
59
  <input name="dbdumpwpony" type="hidden" value="1" />
60
+ <h3 class="title"><?php _e( 'Settings for database backup', 'backwpup' ) ?></h3>
61
  <p></p>
62
  <table class="form-table">
63
  <tr valign="top">
64
+ <th scope="row"><?php _e( 'Tables to backup', 'backwpup' ); ?></th>
65
  <td>
66
  <input type="button" class="button-secondary" id="dball" value="<?php _e( 'all', 'backwpup' ); ?>">&nbsp;
67
  <input type="button" class="button-secondary" id="dbnone" value="<?php _e( 'none', 'backwpup' ); ?>">&nbsp;
133
  BackWPup_Option::update( $id, 'dbdumpmaintenance', ( isset( $_POST[ 'dbdumpmaintenance' ] ) && $_POST[ 'dbdumpmaintenance' ] == 1 ) ? TRUE : FALSE );
134
  if ( $_POST[ 'dbdumpfilecompression' ] == '' || $_POST[ 'dbdumpfilecompression' ] == '.gz' || $_POST[ 'dbdumpfilecompression' ] == '.bz2' )
135
  BackWPup_Option::update( $id, 'dbdumpfilecompression', $_POST[ 'dbdumpfilecompression' ] );
136
+ BackWPup_Option::update( $id, 'dbdumpfile', sanitize_file_name( $_POST[ 'dbdumpfile' ]) );
137
  //selected tables
138
  $dbdumpexclude = array();
139
  $checked_db_tables = array();
160
  $job_object->substeps_done = 0;
161
  $job_object->substeps_todo = 1;
162
 
163
+ $job_object->log( sprintf( __( '%d. Try to dump database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
164
 
165
  //build filename
166
  if ( empty( $job_object->temp[ 'dbdumpfile' ] ) )
inc/class-jobtype-dboptimize.php CHANGED
@@ -98,7 +98,7 @@ class BackWPup_JobType_DBOptimize extends BackWPup_JobTypes {
98
  public function job_run( $job_object ) {
99
  global $wpdb;
100
 
101
- trigger_error( sprintf( __( '%d. Trying to optimize database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
102
  if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) || ! is_array( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
103
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] = array();
104
 
@@ -127,35 +127,35 @@ class BackWPup_JobType_DBOptimize extends BackWPup_JobTypes {
127
  if ( in_array( $table, $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
128
  continue;
129
  if ( $tablestype[ $table ] == 'VIEW' ) {
130
- trigger_error( sprintf( __( 'Views cannot optimize! View %1$s', 'backwpup' ), $table ), E_USER_NOTICE );
131
  continue;
132
  }
133
  //OPTIMIZE TABLE funktioniert nur bei MyISAM-, BDB- und InnoDB-Tabellen. (http://dev.mysql.com/doc/refman/5.1/de/optimize-table.html)
134
  if ( ! empty( $job_object->job[ 'dboptimizemyisam' ] ) && $status[ $table ][ 'Engine' ] == 'MyISAM' ) {
135
  $optimize = $wpdb->get_row( "OPTIMIZE TABLE `" . $table . "`", OBJECT );
136
  if ( strtolower( $optimize->Msg_type ) == 'error' )
137
- trigger_error( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ), E_USER_ERROR );
138
  elseif ( strtolower( $optimize->Msg_type ) == 'warning' )
139
- trigger_error( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ), E_USER_WARNING );
140
  else
141
- trigger_error( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ), E_USER_NOTICE );
142
  }
143
  elseif ( ! empty( $job_object->job[ 'dboptimizeinnodb' ] ) && $status[ $table ][ 'Engine' ] == 'InnoDB' ) {
144
  $res = $wpdb->query( "ALTER TABLE `" . $table . "` ENGINE='InnoDB'" );
145
  if ( ! empty( $res ) )
146
- trigger_error( sprintf( __( 'InnoDB Table %1$s optimizing done.', 'backwpup' ), $table ), E_USER_NOTICE );
147
  }
148
  else {
149
- trigger_error( sprintf( __( '%2$s table %1$s not optimized.', 'backwpup' ), $table, $status[ $table ][ 'Engine' ] ), E_USER_NOTICE );
150
  }
151
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ][ ] = $table;
152
  $job_object->substeps_done ++;
153
  }
154
- trigger_error( __( 'Database optimization done!', 'backwpup' ), E_USER_NOTICE );
155
  $job_object->set_maintenance_mode( FALSE );
156
  }
157
  else {
158
- trigger_error( __( 'No tables to optimize.', 'backwpup' ), E_USER_WARNING );
159
  }
160
 
161
  unset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] );
98
  public function job_run( $job_object ) {
99
  global $wpdb;
100
 
101
+ $job_object->log( sprintf( __( '%d. Trying to optimize database&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
102
  if ( ! isset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) || ! is_array( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
103
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] = array();
104
 
127
  if ( in_array( $table, $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] ) )
128
  continue;
129
  if ( $tablestype[ $table ] == 'VIEW' ) {
130
+ $job_object->log( sprintf( __( 'Views cannot optimize! View %1$s', 'backwpup' ), $table ) );
131
  continue;
132
  }
133
  //OPTIMIZE TABLE funktioniert nur bei MyISAM-, BDB- und InnoDB-Tabellen. (http://dev.mysql.com/doc/refman/5.1/de/optimize-table.html)
134
  if ( ! empty( $job_object->job[ 'dboptimizemyisam' ] ) && $status[ $table ][ 'Engine' ] == 'MyISAM' ) {
135
  $optimize = $wpdb->get_row( "OPTIMIZE TABLE `" . $table . "`", OBJECT );
136
  if ( strtolower( $optimize->Msg_type ) == 'error' )
137
+ $job_object->log( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ), E_USER_ERROR );
138
  elseif ( strtolower( $optimize->Msg_type ) == 'warning' )
139
+ $job_object->log( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ), E_USER_WARNING );
140
  else
141
+ $job_object->log( sprintf( __( 'Result of MyISAM table optimize for %1$s is: %2$s', 'backwpup' ), $table, $optimize->Msg_text ) );
142
  }
143
  elseif ( ! empty( $job_object->job[ 'dboptimizeinnodb' ] ) && $status[ $table ][ 'Engine' ] == 'InnoDB' ) {
144
  $res = $wpdb->query( "ALTER TABLE `" . $table . "` ENGINE='InnoDB'" );
145
  if ( ! empty( $res ) )
146
+ $job_object->log( sprintf( __( 'InnoDB Table %1$s optimizing done.', 'backwpup' ), $table ) );
147
  }
148
  else {
149
+ $job_object->log( sprintf( __( '%2$s table %1$s not optimized.', 'backwpup' ), $table, $status[ $table ][ 'Engine' ] ) );
150
  }
151
  $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ][ ] = $table;
152
  $job_object->substeps_done ++;
153
  }
154
+ $job_object->log( __( 'Database optimization done!', 'backwpup' ) );
155
  $job_object->set_maintenance_mode( FALSE );
156
  }
157
  else {
158
+ $job_object->log( __( 'No tables to optimize.', 'backwpup' ), E_USER_WARNING );
159
  }
160
 
161
  unset( $job_object->steps_data[ $job_object->step_working ][ 'DONETABLE' ] );
inc/class-jobtype-file.php CHANGED
@@ -78,7 +78,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
78
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
79
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
80
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
81
- echo '<nobr><label for="idrootexcludedirs-'.sanitize_title_with_dashes( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backuprootexcludedirs' ) ), TRUE, FALSE ) . ' name="backuprootexcludedirs[]" id="idrootexcludedirs-'.sanitize_title_with_dashes( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
82
  }
83
  }
84
  @closedir( $dir );
@@ -105,7 +105,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
105
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
106
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
107
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
108
- echo '<nobr><label for="idcontentexcludedirs-'.sanitize_title_with_dashes( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupcontentexcludedirs' ) ), TRUE, FALSE ) . ' name="backupcontentexcludedirs[]" id="idcontentexcludedirs-'.sanitize_title_with_dashes( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
109
  }
110
  }
111
  @closedir( $dir );
@@ -132,7 +132,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
132
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
133
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
134
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
135
- echo '<nobr><label for="idpluginexcludedirs-'.sanitize_title_with_dashes( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backuppluginsexcludedirs' ) ), TRUE, FALSE ) . ' name="backuppluginsexcludedirs[]" id="idpluginexcludedirs-'.sanitize_title_with_dashes( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
136
  }
137
  }
138
  @closedir( $dir );
@@ -159,7 +159,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
159
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
160
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
161
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
162
- echo '<nobr><label for="idthemesexcludedirs-'.sanitize_title_with_dashes( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupthemesexcludedirs' ) ), TRUE, FALSE ) . ' name="backupthemesexcludedirs[]" id="idthemesexcludedirs-'.sanitize_title_with_dashes( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
163
  }
164
  }
165
  @closedir( $dir );
@@ -186,7 +186,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
186
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
187
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
188
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
189
- echo '<nobr><label for="iduploadexcludedirs-'.sanitize_title_with_dashes( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupuploadsexcludedirs' ) ), TRUE, FALSE ) . ' name="backupuploadsexcludedirs[]" id="iduploadexcludedirs-'.sanitize_title_with_dashes( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
190
  }
191
  }
192
  @closedir( $dir );
@@ -307,12 +307,9 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
307
  */
308
  public function job_run( $job_object ) {
309
 
310
- trigger_error( sprintf( __( '%d. Trying to make a list of folders to back up&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
311
  $job_object->substeps_todo = 7;
312
 
313
- //Check free memory for file list
314
- $job_object->need_free_memory( '4M' ); //4MB free memory
315
-
316
  $job_object->temp[ 'folders_to_backup' ]=array();
317
 
318
  //Folder lists for blog folders
@@ -392,46 +389,46 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
392
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'wp-config.php' );
393
  $job_object->count_files ++;
394
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'wp-config.php' );
395
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ), E_USER_NOTICE );
396
  }
397
  elseif ( BackWPup_File::is_in_open_basedir( dirname( ABSPATH ) . '/wp-config.php' ) ) {
398
  if ( is_file( dirname( ABSPATH ) . '/wp-config.php' ) && ! is_file( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
399
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', dirname( ABSPATH ) . '/wp-config.php' );
400
  $job_object->count_files ++;
401
  $job_object->count_filesize = $job_object->count_filesize + @filesize( dirname( ABSPATH ) . '/wp-config.php' );
402
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ), E_USER_NOTICE );
403
  }
404
  }
405
  if ( is_file( ABSPATH . '.htaccess' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
406
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . '.htaccess' );
407
  $job_object->count_files ++;
408
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . '.htaccess' );
409
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), '.htaccess' ), E_USER_NOTICE );
410
  }
411
  if ( is_file( ABSPATH . '.htpasswd' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
412
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . '.htpasswd' );
413
  $job_object->count_files ++;
414
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . '.htpasswd' );
415
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), '.htpasswd' ), E_USER_NOTICE );
416
  }
417
  if ( is_file( ABSPATH . 'robots.txt' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
418
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'robots.txt' );
419
  $job_object->count_files ++;
420
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'robots.txt' );
421
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'robots.txt' ), E_USER_NOTICE );
422
  }
423
  if ( is_file( ABSPATH . 'favicon.ico' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
424
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'favicon.ico' );
425
  $job_object->count_files ++;
426
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'favicon.ico' );
427
- trigger_error( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'favicon.ico' ), E_USER_NOTICE );
428
  }
429
  }
430
 
431
  if ( empty( $job_object->count_folder ) )
432
- trigger_error( __( 'No folder to back up.', 'backwpup' ), E_USER_WARNING );
433
  else
434
- trigger_error( sprintf( __( '%1$d folders to back up.', 'backwpup' ), $job_object->count_folder ), E_USER_NOTICE );
435
 
436
  $job_object->substeps_done = 7;
437
 
@@ -468,7 +465,7 @@ class BackWPup_JobType_File extends BackWPup_JobTypes {
468
  if ( in_array( trailingslashit( $folder . $file ), $excludedirs ) )
469
  continue;
470
  if ( ! is_readable( $folder . $file ) ) {
471
- trigger_error( sprintf( __( 'Folder "%s" is not readable!', 'backwpup' ), $folder . $file ), E_USER_WARNING );
472
  continue;
473
  }
474
  $this->get_folder_list( $job_object, trailingslashit( $folder . $file ), $excludedirs );
78
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
79
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
80
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
81
+ echo '<nobr><label for="idrootexcludedirs-'.sanitize_file_name( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backuprootexcludedirs' ) ), TRUE, FALSE ) . ' name="backuprootexcludedirs[]" id="idrootexcludedirs-'.sanitize_file_name( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
82
  }
83
  }
84
  @closedir( $dir );
105
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
106
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
107
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
108
+ echo '<nobr><label for="idcontentexcludedirs-'.sanitize_file_name( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupcontentexcludedirs' ) ), TRUE, FALSE ) . ' name="backupcontentexcludedirs[]" id="idcontentexcludedirs-'.sanitize_file_name( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
109
  }
110
  }
111
  @closedir( $dir );
132
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
133
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
134
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
135
+ echo '<nobr><label for="idpluginexcludedirs-'.sanitize_file_name( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backuppluginsexcludedirs' ) ), TRUE, FALSE ) . ' name="backuppluginsexcludedirs[]" id="idpluginexcludedirs-'.sanitize_file_name( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
136
  }
137
  }
138
  @closedir( $dir );
159
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
160
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
161
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
162
+ echo '<nobr><label for="idthemesexcludedirs-'.sanitize_file_name( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupthemesexcludedirs' ) ), TRUE, FALSE ) . ' name="backupthemesexcludedirs[]" id="idthemesexcludedirs-'.sanitize_file_name( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
163
  }
164
  }
165
  @closedir( $dir );
186
  while ( ( $file = readdir( $dir ) ) !== FALSE ) {
187
  if ( ! in_array( $file, array( '.', '..' ) ) && is_dir( $folder . '/' . $file ) && ! in_array( $folder . '/' . $file . '/', $this->get_exclude_dirs( $folder ) ) ) {
188
  $folder_size = ( BackWPup_Option::get( 'cfg', 'showfoldersize') ) ? ' (' . size_format( BackWPup_File::get_folder_size( $folder . '/' . $file ), 2 ) . ')' : '';
189
+ echo '<nobr><label for="iduploadexcludedirs-'.sanitize_file_name( $file ).'"><input class="checkbox" type="checkbox"' . checked( in_array( $file, BackWPup_Option::get( $main, 'backupuploadsexcludedirs' ) ), TRUE, FALSE ) . ' name="backupuploadsexcludedirs[]" id="iduploadexcludedirs-'.sanitize_file_name( $file ).'" value="' . $file . '" /> ' . $file . $folder_size . '</label><br /></nobr>';
190
  }
191
  }
192
  @closedir( $dir );
307
  */
308
  public function job_run( $job_object ) {
309
 
310
+ $job_object->log( sprintf( __( '%d. Trying to make a list of folders to back up&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
311
  $job_object->substeps_todo = 7;
312
 
 
 
 
313
  $job_object->temp[ 'folders_to_backup' ]=array();
314
 
315
  //Folder lists for blog folders
389
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'wp-config.php' );
390
  $job_object->count_files ++;
391
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'wp-config.php' );
392
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ) );
393
  }
394
  elseif ( BackWPup_File::is_in_open_basedir( dirname( ABSPATH ) . '/wp-config.php' ) ) {
395
  if ( is_file( dirname( ABSPATH ) . '/wp-config.php' ) && ! is_file( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
396
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', dirname( ABSPATH ) . '/wp-config.php' );
397
  $job_object->count_files ++;
398
  $job_object->count_filesize = $job_object->count_filesize + @filesize( dirname( ABSPATH ) . '/wp-config.php' );
399
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'wp-config.php' ) );
400
  }
401
  }
402
  if ( is_file( ABSPATH . '.htaccess' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
403
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . '.htaccess' );
404
  $job_object->count_files ++;
405
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . '.htaccess' );
406
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), '.htaccess' ) );
407
  }
408
  if ( is_file( ABSPATH . '.htpasswd' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
409
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . '.htpasswd' );
410
  $job_object->count_files ++;
411
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . '.htpasswd' );
412
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), '.htpasswd' ) );
413
  }
414
  if ( is_file( ABSPATH . 'robots.txt' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
415
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'robots.txt' );
416
  $job_object->count_files ++;
417
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'robots.txt' );
418
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'robots.txt' ) );
419
  }
420
  if ( is_file( ABSPATH . 'favicon.ico' ) && empty( $job_object->job[ 'backuproot' ] ) ) {
421
  $job_object->additional_files_to_backup[ ] = str_replace( '\\', '/', ABSPATH . 'favicon.ico' );
422
  $job_object->count_files ++;
423
  $job_object->count_filesize = $job_object->count_filesize + @filesize( ABSPATH . 'favicon.ico' );
424
+ $job_object->log( sprintf( __( 'Added "%s" to backup file list', 'backwpup' ), 'favicon.ico' ) );
425
  }
426
  }
427
 
428
  if ( empty( $job_object->count_folder ) )
429
+ $job_object->log( __( 'No folder to back up.', 'backwpup' ), E_USER_WARNING );
430
  else
431
+ $job_object->log( sprintf( __( '%1$d folders to back up.', 'backwpup' ), $job_object->count_folder ) );
432
 
433
  $job_object->substeps_done = 7;
434
 
465
  if ( in_array( trailingslashit( $folder . $file ), $excludedirs ) )
466
  continue;
467
  if ( ! is_readable( $folder . $file ) ) {
468
+ $job_object->log( sprintf( __( 'Folder "%s" is not readable!', 'backwpup' ), $folder . $file ), E_USER_WARNING );
469
  continue;
470
  }
471
  $this->get_folder_list( $job_object, trailingslashit( $folder . $file ), $excludedirs );
inc/class-jobtype-wpexp.php CHANGED
@@ -31,12 +31,13 @@ class BackWPup_JobType_WPEXP extends BackWPup_JobTypes {
31
  * @return array
32
  */
33
  public function option_defaults() {
34
- return array( 'wpexportcontent' => 'all', 'wpexportfilecompression' => '', 'wpexportfile' => sanitize_title_with_dashes( get_bloginfo( 'name' ) ) . '.wordpress.%Y-%m-%d' );
35
  }
36
 
37
 
38
  /**
39
- * @param $main
 
40
  */
41
  public function edit_tab( $jobid ) {
42
  ?>
@@ -101,35 +102,28 @@ class BackWPup_JobType_WPEXP extends BackWPup_JobTypes {
101
 
102
  $job_object->substeps_todo = 1;
103
 
104
- trigger_error( sprintf( __( '%d. Trying to create a WordPress export to XML file&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
105
- $job_object->need_free_memory( '5M' ); //5MB free memory
106
  //build filename
107
  if ( empty( $job_object->temp[ 'wpexportfile' ] ) )
108
  $job_object->temp[ 'wpexportfile' ] = $job_object->generate_filename( $job_object->job[ 'wpexportfile' ], 'xml' ) . $job_object->job[ 'wpexportfilecompression' ];
109
 
110
- error_reporting( 0 ); //disable error reporting
111
  //include WP export function
112
  require_once ABSPATH . 'wp-admin/includes/export.php';
113
- ob_flush();
114
- ob_clean();
115
  ob_start( array( $this, 'wp_export_ob_bufferwrite' ), 1048576 ); //start output buffering
116
  $args = array(
117
  'content' => $job_object->job[ 'wpexportcontent' ]
118
  );
119
  @export_wp( $args ); //WP export
 
120
  ob_end_clean(); //End output buffering
121
- //enable error reporting
122
- if ( defined( 'WP_DEBUG') && WP_DEBUG )
123
- error_reporting( -1 );
124
- else
125
- error_reporting( E_ALL ^ E_NOTICE );
126
 
127
  //add XML file to backup files
128
  if ( is_readable( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] ) ) {
129
  $job_object->additional_files_to_backup[ ] = BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ];
130
  $job_object->count_files ++;
131
  $job_object->count_filesize = $job_object->count_filesize + @filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] );
132
- trigger_error( sprintf( __( 'Added XML export "%1$s" with %2$s to backup file list.', 'backwpup' ), $job_object->temp[ 'wpexportfile' ], size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] ), 2 ) ), E_USER_NOTICE );
133
  }
134
  $job_object->substeps_done = 1;
135
 
31
  * @return array
32
  */
33
  public function option_defaults() {
34
+ return array( 'wpexportcontent' => 'all', 'wpexportfilecompression' => '', 'wpexportfile' => sanitize_file_name( get_bloginfo( 'name' ) ) . '.wordpress.%Y-%m-%d' );
35
  }
36
 
37
 
38
  /**
39
+ * @param $jobid
40
+ * @internal param $main
41
  */
42
  public function edit_tab( $jobid ) {
43
  ?>
102
 
103
  $job_object->substeps_todo = 1;
104
 
105
+ $job_object->log( sprintf( __( '%d. Trying to create a WordPress export to XML file&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
 
106
  //build filename
107
  if ( empty( $job_object->temp[ 'wpexportfile' ] ) )
108
  $job_object->temp[ 'wpexportfile' ] = $job_object->generate_filename( $job_object->job[ 'wpexportfile' ], 'xml' ) . $job_object->job[ 'wpexportfilecompression' ];
109
 
 
110
  //include WP export function
111
  require_once ABSPATH . 'wp-admin/includes/export.php';
112
+ while (@ob_end_clean());
 
113
  ob_start( array( $this, 'wp_export_ob_bufferwrite' ), 1048576 ); //start output buffering
114
  $args = array(
115
  'content' => $job_object->job[ 'wpexportcontent' ]
116
  );
117
  @export_wp( $args ); //WP export
118
+ ob_flush(); //send rest of data
119
  ob_end_clean(); //End output buffering
 
 
 
 
 
120
 
121
  //add XML file to backup files
122
  if ( is_readable( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] ) ) {
123
  $job_object->additional_files_to_backup[ ] = BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ];
124
  $job_object->count_files ++;
125
  $job_object->count_filesize = $job_object->count_filesize + @filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] );
126
+ $job_object->log( sprintf( __( 'Added XML export "%1$s" with %2$s to backup file list.', 'backwpup' ), $job_object->temp[ 'wpexportfile' ], size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'wpexportfile' ] ), 2 ) ) );
127
  }
128
  $job_object->substeps_done = 1;
129
 
inc/class-jobtype-wpplugin.php CHANGED
@@ -31,7 +31,7 @@ class BackWPup_JobType_WPPlugin extends BackWPup_JobTypes {
31
  * @return array
32
  */
33
  public function option_defaults() {
34
- return array( 'pluginlistfilecompression' => '', 'pluginlistfile' => sanitize_title_with_dashes( get_bloginfo( 'name' ) ) . '.pluginlist.%Y-%m-%d' );
35
  }
36
 
37
  /**
@@ -88,7 +88,7 @@ class BackWPup_JobType_WPPlugin extends BackWPup_JobTypes {
88
 
89
  $job_object->substeps_todo = 1;
90
 
91
- trigger_error( sprintf( __( '%d. Trying to generate a file with installed plugin names&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ), E_USER_NOTICE );
92
  //build filename
93
  if ( empty( $job_object->temp[ 'pluginlistfile' ] ) )
94
  $job_object->temp[ 'pluginlistfile' ] = $job_object->generate_filename( $job_object->job[ 'pluginlistfile' ], 'txt' ) . $job_object->job[ 'pluginlistfilecompression' ];
@@ -137,7 +137,7 @@ class BackWPup_JobType_WPPlugin extends BackWPup_JobTypes {
137
  $job_object->additional_files_to_backup[ ] = BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ];
138
  $job_object->count_files ++;
139
  $job_object->count_filesize = $job_object->count_filesize + @filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ] );
140
- trigger_error( sprintf( __( 'Added plugin list file "%1$s" with %2$s to backup file list.', 'backwpup' ), $job_object->temp[ 'pluginlistfile' ], size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ] ), 2 ) ), E_USER_NOTICE );
141
  }
142
  $job_object->substeps_done = 1;
143
 
31
  * @return array
32
  */
33
  public function option_defaults() {
34
+ return array( 'pluginlistfilecompression' => '', 'pluginlistfile' => sanitize_file_name( get_bloginfo( 'name' ) ) . '.pluginlist.%Y-%m-%d' );
35
  }
36
 
37
  /**
88
 
89
  $job_object->substeps_todo = 1;
90
 
91
+ $job_object->log( sprintf( __( '%d. Trying to generate a file with installed plugin names&#160;&hellip;', 'backwpup' ), $job_object->steps_data[ $job_object->step_working ][ 'STEP_TRY' ] ) );
92
  //build filename
93
  if ( empty( $job_object->temp[ 'pluginlistfile' ] ) )
94
  $job_object->temp[ 'pluginlistfile' ] = $job_object->generate_filename( $job_object->job[ 'pluginlistfile' ], 'txt' ) . $job_object->job[ 'pluginlistfilecompression' ];
137
  $job_object->additional_files_to_backup[ ] = BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ];
138
  $job_object->count_files ++;
139
  $job_object->count_filesize = $job_object->count_filesize + @filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ] );
140
+ $job_object->log( sprintf( __( 'Added plugin list file "%1$s" with %2$s to backup file list.', 'backwpup' ), $job_object->temp[ 'pluginlistfile' ], size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . $job_object->temp[ 'pluginlistfile' ] ), 2 ) ) );
141
  }
142
  $job_object->substeps_done = 1;
143
 
inc/class-mysqldump.php CHANGED
@@ -60,7 +60,7 @@ class BackWPup_MySQLDump {
60
  'dbname' => DB_NAME,
61
  'dbuser' => DB_USER,
62
  'dbpassword' => DB_PASSWORD,
63
- 'dbcharset' => DB_CHARSET,
64
  'dumpfilehandle' => fopen( 'php://output', 'wb' ),
65
  'dumpfile' => NULL,
66
  'compression' => ''
60
  'dbname' => DB_NAME,
61
  'dbuser' => DB_USER,
62
  'dbpassword' => DB_PASSWORD,
63
+ 'dbcharset' => defined( 'DB_CHARSET' ) ? DB_CHARSET : '',
64
  'dumpfilehandle' => fopen( 'php://output', 'wb' ),
65
  'dumpfile' => NULL,
66
  'compression' => ''
inc/class-option.php CHANGED
@@ -297,6 +297,9 @@ final class BackWPup_Option {
297
  $key = sanitize_key( trim( $key ) );
298
  $jobs_options = self::jobs_options( FALSE );
299
 
 
 
 
300
  //get option job ids
301
  if ( empty( $key ) )
302
  return array_keys( $jobs_options );
297
  $key = sanitize_key( trim( $key ) );
298
  $jobs_options = self::jobs_options( FALSE );
299
 
300
+ if ( empty( $jobs_options ) )
301
+ return array();
302
+
303
  //get option job ids
304
  if ( empty( $key ) )
305
  return array_keys( $jobs_options );
inc/class-page-about.php CHANGED
@@ -42,11 +42,10 @@ class BackWPup_Page_About {
42
  */
43
  public static function page() {
44
 
45
- //set_site_transient( 'backwpup_upgrade_from_version_two', TRUE, 3600*24*7); // See update notice
46
  ?>
47
  <div class="wrap">
48
  <div class="inpsyde">
49
- <a href="http://inpsyde.com/" title="Inpsyde GmbH">inpsyde</a>
50
  </div>
51
  <?php screen_icon(); ?>
52
  <h2><?php echo sprintf( __( '%s Welcome', 'backwpup' ), BackWPup::get_plugin_data( 'name') ); ?></h2>
@@ -56,7 +55,7 @@ class BackWPup_Page_About {
56
  <?php if ( get_site_transient( 'backwpup_upgrade_from_version_two') ) { ?>
57
  <div id="update-notice" class="backwpup-welcome updated">
58
  <h3><?php _e( 'Heads up! You have updated from version 2.x', 'backwpup' ); ?></h3>
59
- <p><?php echo sprintf( __( 'Please <a href="%s">check your settings</a> after updating from version 2.x:', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupjobs'); ?></a></p>
60
  <ul><li><?php _e('Dropbox authentication must be re-entered','backwpup'); ?></li>
61
  <li><?php _e('SugarSync authentication must be re-entered','backwpup'); ?></li>
62
  <li><?php _e('S3 Settings','backwpup'); ?></li>
@@ -73,7 +72,7 @@ class BackWPup_Page_About {
73
  <h3><?php _e( 'Welcome to BackWPup Pro', 'backwpup' ); ?></h3>
74
  <p><?php _e( 'Here you can schedule backup plans with a wizard.', 'backwpup' );
75
  _e( 'The backup files can be used to save your whole installation including <code>/wp-content/</code> and push them to an external Backup Service, if you don’t want to save the backups on the same server. With a single backup file you are able to restore an installation.', 'backwpup' ); ?></p>
76
- <p><?php echo sprintf( __( '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.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' , network_admin_url( 'admin.php').'?page=backwpupwizard' ); ?></p>
77
  </div>
78
  </div>
79
  <?php } else {?>
@@ -114,7 +113,7 @@ _e( 'The backup files can be used to save your whole installation including <cod
114
  </div>
115
  <div class="feature_text <?php self::feature_class(); ?>">
116
  <h3><?php _e( 'Save your database regularly', 'backwpup' ); ?></h3>
117
- <p><?php echo sprintf( __( 'With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should <a href="%s">set up a backup job</a>, so you will never forget it. There is also an option to repair and optimize the database after each backup.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' ); ?></p>
118
  </div>
119
  </div>
120
  <div class="feature_box">
@@ -132,7 +131,7 @@ _e( 'The backup files can be used to save your whole installation including <cod
132
  </div>
133
  <div class="feature_text <?php self::feature_class(); ?>">
134
  <h3><?php _e('Save all files', 'backwpup'); ?></h3>
135
- <p><?php echo sprintf( __('You can back up all your attachments, also all system files, plugins and themes in a single file. You can <a href="%s">create a job</a> to update a backup copy of your file system only when files are changed.', 'backwpup'), network_admin_url( 'admin.php' ) . '?page=backwpupeditjob' ); ?></p>
136
  </div>
137
  </div>
138
  <div class="feature_box">
42
  */
43
  public static function page() {
44
 
 
45
  ?>
46
  <div class="wrap">
47
  <div class="inpsyde">
48
+ <a href="http://inpsyde.com/" title="Inpsyde GmbH">Inpsyde</a>
49
  </div>
50
  <?php screen_icon(); ?>
51
  <h2><?php echo sprintf( __( '%s Welcome', 'backwpup' ), BackWPup::get_plugin_data( 'name') ); ?></h2>
55
  <?php if ( get_site_transient( 'backwpup_upgrade_from_version_two') ) { ?>
56
  <div id="update-notice" class="backwpup-welcome updated">
57
  <h3><?php _e( 'Heads up! You have updated from version 2.x', 'backwpup' ); ?></h3>
58
+ <p><?php echo str_replace( '\"','"', sprintf( __( 'Please <a href="%s">check your settings</a> after updating from version 2.x:', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupjobs') ); ?></a></p>
59
  <ul><li><?php _e('Dropbox authentication must be re-entered','backwpup'); ?></li>
60
  <li><?php _e('SugarSync authentication must be re-entered','backwpup'); ?></li>
61
  <li><?php _e('S3 Settings','backwpup'); ?></li>
72
  <h3><?php _e( 'Welcome to BackWPup Pro', 'backwpup' ); ?></h3>
73
  <p><?php _e( 'Here you can schedule backup plans with a wizard.', 'backwpup' );
74
  _e( 'The backup files can be used to save your whole installation including <code>/wp-content/</code> and push them to an external Backup Service, if you don’t want to save the backups on the same server. With a single backup file you are able to restore an installation.', 'backwpup' ); ?></p>
75
+ <p><?php echo str_replace( '\"','"', sprintf( __( '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.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' , network_admin_url( 'admin.php').'?page=backwpupwizard' ) ); ?></p>
76
  </div>
77
  </div>
78
  <?php } else {?>
113
  </div>
114
  <div class="feature_text <?php self::feature_class(); ?>">
115
  <h3><?php _e( 'Save your database regularly', 'backwpup' ); ?></h3>
116
+ <p><?php echo str_replace( '\"','"', sprintf( __( 'With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should <a href="%s">set up a backup job</a>, so you will never forget it. There is also an option to repair and optimize the database after each backup.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' ) ); ?></p>
117
  </div>
118
  </div>
119
  <div class="feature_box">
131
  </div>
132
  <div class="feature_text <?php self::feature_class(); ?>">
133
  <h3><?php _e('Save all files', 'backwpup'); ?></h3>
134
+ <p><?php echo str_replace( '\"','"', sprintf( __('You can back up all your attachments, also all system files, plugins and themes in a single file. You can <a href="%s">create a job</a> to update a backup copy of your file system only when files are changed.', 'backwpup'), network_admin_url( 'admin.php' ) . '?page=backwpupeditjob' ) ); ?></p>
135
  </div>
136
  </div>
137
  <div class="feature_box">
inc/class-page-editjob.php CHANGED
@@ -305,7 +305,7 @@ class BackWPup_Page_Editjob {
305
  echo '<p class="wpcron" id="schedulecron">';
306
 
307
  if ( $crontype == 'advanced' ) {
308
- _e( 'Working as <a href="http://wikipedia.org/wiki/Cron">Cron</a> schedule:', 'backwpup' );
309
  echo ' <i><b>' . $cronstamp . '</b></i><br />';
310
  }
311
 
@@ -505,7 +505,7 @@ class BackWPup_Page_Editjob {
505
  $datevars = array( '%d', '%j', '%m', '%n', '%Y', '%y', '%a', '%A', '%B', '%g', '%G', '%h', '%H', '%i', '%s', '%u', '%U' );
506
  $datevalues = array( date_i18n( 'd' ), date_i18n( 'j' ), date_i18n( 'm' ), date_i18n( 'n' ), date_i18n( 'Y' ), date_i18n( 'y' ), date_i18n( 'a' ), date_i18n( 'A' ), date_i18n( 'B' ), date_i18n( 'g' ), date_i18n( 'G' ), date_i18n( 'h' ), date_i18n( 'H' ), date_i18n( 'i' ), date_i18n( 's' ), date_i18n( 'u' ), date_i18n( 'U' ) );
507
  $archivename = str_replace( $datevars, $datevalues, BackWPup_Option::get( $jobid, 'archivename' ) );
508
- $archivename = sanitize_title_with_dashes( $archivename );
509
  echo '<p>Preview: <code><span id="archivefilename">' . $archivename . '</span><span id="archiveformat">' . BackWPup_Option::get( $jobid, 'archiveformat' ) . '</span></code></p>';
510
  ?>
511
  </td>
@@ -627,7 +627,7 @@ class BackWPup_Page_Editjob {
627
  <th scope="row"><?php _e( 'Start job with CLI', 'backwpup' ); ?></th>
628
  <td>
629
  <?php
630
- echo sprintf ( __( 'Use <a href="http://wp-cli.org/">WP-CLI</a> to run jobs from commandline or <a href="%s">get the start script</a>.', 'backwpup' ), wp_nonce_url( network_admin_url( 'admin.php' ) . '?page=backwpupjobs&action=start_cli&jobid=' . $jobid, 'start_cli' ) );
631
  BackWPup_Help::tip( __( 'Generate a server script file to let the job start with the server’s cron on command line interface. Alternatively use WP-CLI commands.', 'backwpup' ) );
632
  ?>
633
  </td>
305
  echo '<p class="wpcron" id="schedulecron">';
306
 
307
  if ( $crontype == 'advanced' ) {
308
+ echo str_replace( '\"','"', __( 'Working as <a href="http://wikipedia.org/wiki/Cron">Cron</a> schedule:', 'backwpup' ) );
309
  echo ' <i><b>' . $cronstamp . '</b></i><br />';
310
  }
311
 
505
  $datevars = array( '%d', '%j', '%m', '%n', '%Y', '%y', '%a', '%A', '%B', '%g', '%G', '%h', '%H', '%i', '%s', '%u', '%U' );
506
  $datevalues = array( date_i18n( 'd' ), date_i18n( 'j' ), date_i18n( 'm' ), date_i18n( 'n' ), date_i18n( 'Y' ), date_i18n( 'y' ), date_i18n( 'a' ), date_i18n( 'A' ), date_i18n( 'B' ), date_i18n( 'g' ), date_i18n( 'G' ), date_i18n( 'h' ), date_i18n( 'H' ), date_i18n( 'i' ), date_i18n( 's' ), date_i18n( 'u' ), date_i18n( 'U' ) );
507
  $archivename = str_replace( $datevars, $datevalues, BackWPup_Option::get( $jobid, 'archivename' ) );
508
+ $archivename = sanitize_file_name( $archivename );
509
  echo '<p>Preview: <code><span id="archivefilename">' . $archivename . '</span><span id="archiveformat">' . BackWPup_Option::get( $jobid, 'archiveformat' ) . '</span></code></p>';
510
  ?>
511
  </td>
627
  <th scope="row"><?php _e( 'Start job with CLI', 'backwpup' ); ?></th>
628
  <td>
629
  <?php
630
+ echo str_replace( '\"','"', sprintf ( __( 'Use <a href="http://wp-cli.org/">WP-CLI</a> to run jobs from commandline or <a href="%s">get the start script</a>.', 'backwpup' ), wp_nonce_url( network_admin_url( 'admin.php' ) . '?page=backwpupjobs&action=start_cli&jobid=' . $jobid, 'start_cli' ) ) );
631
  BackWPup_Help::tip( __( 'Generate a server script file to let the job start with the server’s cron on command line interface. Alternatively use WP-CLI commands.', 'backwpup' ) );
632
  ?>
633
  </td>
inc/class-page-jobs.php CHANGED
@@ -343,11 +343,11 @@ class BackWPup_Page_Jobs extends WP_List_Table {
343
  }
344
  }
345
  //check sever callback
346
- $raw_response = wp_remote_get( add_query_arg( array( 'backwpup_run' => 'test', '_nonce' => substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-test', 'nonce' ), - 12, 10 ) ), home_url( '/' ) ), array(
347
  'blocking' => TRUE,
348
- 'sslverify' => apply_filters( 'https_local_ssl_verify', TRUE ),
349
  'headers' => array( 'Authorization' => 'Basic ' . base64_encode( BackWPup_Option::get( 'cfg', 'httpauthuser' ) . ':' . BackWPup_Encryption::decrypt( BackWPup_Option::get( 'cfg', 'httpauthpassword' ) ) ) ),
350
- 'user-agent' => 'BackWPup/' . BackWPup::get_plugin_data( 'Version' ) ) );
351
  $test_result = '';
352
  if ( is_wp_error( $raw_response ) )
353
  $test_result .= sprintf( __( 'The HTTP response test get a error "%s"','backwpup' ), $raw_response->get_error_message() );
@@ -519,35 +519,37 @@ class BackWPup_Page_Jobs extends WP_List_Table {
519
  },
520
  dataType: 'json',
521
  success:function (rundata) {
522
- $('#logpos').val(rundata.logpos);
523
- if ('' != rundata.logtext) {
524
- $('#showworking').append(rundata.logtext);
525
- $('#TB_ajaxContent').scrollTop(rundata.logpos * 15);
 
 
526
  }
527
- if (0 < rundata.errors) {
528
- $('#errors').replaceWith('<span id="errors">' + rundata.errors + '</span>');
529
  }
530
- if (0 < rundata.warnings) {
531
- $('#warnings').replaceWith('<span id="warnings">' + rundata.warnings + '</span>');
532
  }
533
  if (0 < rundata.step_percent) {
534
  $('#progressstep').replaceWith('<div id="progressstep">' + rundata.step_percent + '%</div>');
535
  $('#progressstep').css('width', parseFloat(rundata.step_percent) + '%');
536
  }
537
- if (0 < rundata.substep_percent) {
538
- $('#progresssteps').replaceWith('<div id="progresssteps">' + rundata.substep_percent + '%</div>');
539
- $('#progresssteps').css('width', parseFloat(rundata.substep_percent) + '%');
540
  }
541
- if (0 < rundata.runtime) {
542
- $('#runtime').replaceWith('<span id="runtime">' + rundata.runtime + '</span>');
543
  }
544
  if ( rundata.onstep ) {
545
- $('#onstep').replaceWith('<div id="onstep"><samp>' + rundata.onstep + '</samp></div>');
546
  }
547
- if ( rundata.onstep ) {
548
- $('#lastmsg').replaceWith('<div id="lastmsg">' + rundata.lastmsg + '</div>');
549
  }
550
- if ( rundata.jobdone == 1 ) {
551
  $("#abortbutton").remove();
552
  $("#backwpup-adminbar-running").remove();
553
  $(".job-run").hide();
@@ -557,7 +559,10 @@ class BackWPup_Page_Jobs extends WP_List_Table {
557
  } else {
558
  setTimeout('backwpup_show_working()', 750);
559
  }
560
- }
 
 
 
561
  });
562
  };
563
  backwpup_show_working();
@@ -639,16 +644,16 @@ class BackWPup_Page_Jobs extends WP_List_Table {
639
 
640
  @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ), TRUE );
641
  echo json_encode( array(
642
- 'logpos' => strlen( $logfiledata ) + $logpos,
643
- 'logtext' => substr( $logfiledata, $startpos, $length ) . $stop,
644
- 'warnings' => $warnings,
645
- 'errors' => $errors,
646
- 'runtime' => $runtime,
647
  'step_percent' => $step_percent,
648
- 'onstep' => $onstep,
649
- 'lastmsg' => $lastmsg,
650
- 'substep_percent' => $substep_percent,
651
- 'jobdone' => $done
652
  ) );
653
  }
654
  die();
343
  }
344
  }
345
  //check sever callback
346
+ $raw_response = wp_remote_get( add_query_arg( array( 'backwpup_run' => 'test', '_nonce' => substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-test', 'nonce' ), - 12, 10 ) ), site_url( 'wp-cron.php' ) ), array(
347
  'blocking' => TRUE,
348
+ 'sslverify' => FALSE,
349
  'headers' => array( 'Authorization' => 'Basic ' . base64_encode( BackWPup_Option::get( 'cfg', 'httpauthuser' ) . ':' . BackWPup_Encryption::decrypt( BackWPup_Option::get( 'cfg', 'httpauthpassword' ) ) ) ),
350
+ 'user-agent' => BackWPup::get_plugin_data( 'user-agent' ) ) );
351
  $test_result = '';
352
  if ( is_wp_error( $raw_response ) )
353
  $test_result .= sprintf( __( 'The HTTP response test get a error "%s"','backwpup' ), $raw_response->get_error_message() );
519
  },
520
  dataType: 'json',
521
  success:function (rundata) {
522
+ if (0 < rundata.log_pos) {
523
+ $('#logpos').val(rundata.log_pos);
524
+ }
525
+ if ('' != rundata.log_text) {
526
+ $('#showworking').append(rundata.log_text);
527
+ $('#TB_ajaxContent').scrollTop(rundata.log_pos * 15);
528
  }
529
+ if (0 < rundata.error_count) {
530
+ $('#errors').replaceWith('<span id="errors">' + rundata.error_count + '</span>');
531
  }
532
+ if (0 < rundata.warning_count) {
533
+ $('#warnings').replaceWith('<span id="warnings">' + rundata.warning_count + '</span>');
534
  }
535
  if (0 < rundata.step_percent) {
536
  $('#progressstep').replaceWith('<div id="progressstep">' + rundata.step_percent + '%</div>');
537
  $('#progressstep').css('width', parseFloat(rundata.step_percent) + '%');
538
  }
539
+ if (0 < rundata.sub_step_percent) {
540
+ $('#progresssteps').replaceWith('<div id="progresssteps">' + rundata.sub_step_percent + '%</div>');
541
+ $('#progresssteps').css('width', parseFloat(rundata.sub_step_percent) + '%');
542
  }
543
+ if (0 < rundata.running_time) {
544
+ $('#runtime').replaceWith('<span id="runtime">' + rundata.running_time + '</span>');
545
  }
546
  if ( rundata.onstep ) {
547
+ $('#onstep').replaceWith('<div id="onstep"><samp>' + rundata.on_step + '</samp></div>');
548
  }
549
+ if ( rundata.last_msg ) {
550
+ $('#lastmsg').replaceWith('<div id="lastmsg">' + rundata.last_msg + '</div>');
551
  }
552
+ if ( rundata.job_done == 1 ) {
553
  $("#abortbutton").remove();
554
  $("#backwpup-adminbar-running").remove();
555
  $(".job-run").hide();
559
  } else {
560
  setTimeout('backwpup_show_working()', 750);
561
  }
562
+ },
563
+ error:function ( ) {
564
+ setTimeout('backwpup_show_working()', 750);
565
+ }
566
  });
567
  };
568
  backwpup_show_working();
644
 
645
  @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ), TRUE );
646
  echo json_encode( array(
647
+ 'log_pos' => strlen( $logfiledata ) + $logpos,
648
+ 'log_text' => substr( $logfiledata, $startpos, $length ) . $stop,
649
+ 'warning_count' => $warnings,
650
+ 'error_count' => $errors,
651
+ 'running_time' => $runtime,
652
  'step_percent' => $step_percent,
653
+ 'on_step' => $onstep,
654
+ 'last_msg' => $lastmsg,
655
+ 'sub_step_percent' => $substep_percent,
656
+ 'job_done' => $done
657
  ) );
658
  }
659
  die();
inc/class-page-settings.php CHANGED
@@ -365,18 +365,18 @@ class BackWPup_Page_Settings {
365
  echo '<tr title=""><td>' . __( 'cURL version', 'backwpup' ) . '</td><td>' . __( 'unavailable', 'backwpup' ) . '</td></tr>';
366
  }
367
  //response test
368
- $raw_response = wp_remote_get( add_query_arg( array( 'backwpup_run' => 'test', '_nonce' => substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-test', 'nonce' ), - 12, 10 ) ), home_url( '/' ) ), array(
369
  'blocking' => TRUE,
370
- 'sslverify' => apply_filters( 'https_local_ssl_verify', TRUE ),
371
  'headers' => array( 'Authorization' => 'Basic ' . base64_encode( BackWPup_Option::get( 'cfg', 'httpauthuser' ) . ':' . BackWPup_Encryption::decrypt( BackWPup_Option::get( 'cfg', 'httpauthpassword' ) ) ) ),
372
- 'user-agent' => 'BackWPup/' . BackWPup::get_plugin_data( 'Version' ) ) );
373
  echo '<tr><td>' . __( 'Server self connect:', 'backwpup' ) . '</td><td>';
374
  $test_result = '';
375
  if ( is_wp_error( $raw_response ) )
376
  $test_result .= sprintf( __( 'The HTTP response test get a error "%s"','backwpup' ), $raw_response->get_error_message() );
377
  if ( 200 != wp_remote_retrieve_response_code( $raw_response ) )
378
  $test_result .= sprintf( __( 'The HTTP response test get a false http status (%s)','backwpup' ), wp_remote_retrieve_response_code( $raw_response ) );
379
- if ( trim( wp_remote_retrieve_body( $raw_response ) ) != 'Response Test O.K.' )
380
  $test_result .= sprintf( __( 'The HTTP response gives back the false body "%s"','backwpup' ), strip_tags( wp_remote_retrieve_body( $raw_response ) ) );
381
 
382
  if ( empty( $test_result ) )
@@ -429,7 +429,9 @@ class BackWPup_Page_Settings {
429
  echo '<tr title=""><td>' . __( 'Blog Timezone', 'backwpup' ) . '</td><td>' . get_option( 'timezone_string' ) . '</td></tr>';
430
  echo '<tr title=""><td>' . __( 'Blog Time offset', 'backwpup' ) . '</td><td>' . sprintf( __( '%s hours', 'backwpup' ), get_option( 'gmt_offset' ) ) . '</td></tr>';
431
  echo '<tr title="WPLANG"><td>' . __( 'Blog language', 'backwpup' ) . '</td><td>' . get_bloginfo( 'language' ) . '</td></tr>';
432
- echo '<tr title="utf8"><td>' . __( 'MySQL Client encoding', 'backwpup' ) . '</td><td>' . DB_CHARSET . '</td></tr>';
 
 
433
  echo '<tr title="URF-8"><td>' . __( 'Blog charset', 'backwpup' ) . '</td><td>' . get_bloginfo( 'charset' ) . '</td></tr>';
434
  echo '<tr title="&gt;=128M"><td>' . __( 'PHP Memory limit', 'backwpup' ) . '</td><td>' . ini_get( 'memory_limit' ) . '</td></tr>';
435
  echo '<tr title="WP_MEMORY_LIMIT"><td>' . __( 'WP memory limit', 'backwpup' ) . '</td><td>' . WP_MEMORY_LIMIT . '</td></tr>';
365
  echo '<tr title=""><td>' . __( 'cURL version', 'backwpup' ) . '</td><td>' . __( 'unavailable', 'backwpup' ) . '</td></tr>';
366
  }
367
  //response test
368
+ $raw_response = wp_remote_get( add_query_arg( array( 'backwpup_run' => 'test', '_nonce' => substr( wp_hash( wp_nonce_tick() . 'backwup_job_run-test', 'nonce' ), - 12, 10 ) ), site_url( 'wp-cron.php' ) ), array(
369
  'blocking' => TRUE,
370
+ 'sslverify' => FALSE,
371
  'headers' => array( 'Authorization' => 'Basic ' . base64_encode( BackWPup_Option::get( 'cfg', 'httpauthuser' ) . ':' . BackWPup_Encryption::decrypt( BackWPup_Option::get( 'cfg', 'httpauthpassword' ) ) ) ),
372
+ 'user-agent' => BackWPup::get_plugin_data( 'user-agent' ) ) );
373
  echo '<tr><td>' . __( 'Server self connect:', 'backwpup' ) . '</td><td>';
374
  $test_result = '';
375
  if ( is_wp_error( $raw_response ) )
376
  $test_result .= sprintf( __( 'The HTTP response test get a error "%s"','backwpup' ), $raw_response->get_error_message() );
377
  if ( 200 != wp_remote_retrieve_response_code( $raw_response ) )
378
  $test_result .= sprintf( __( 'The HTTP response test get a false http status (%s)','backwpup' ), wp_remote_retrieve_response_code( $raw_response ) );
379
+ if ( ! strstr( wp_remote_retrieve_body( $raw_response ), 'Response Test O.K.' ) )
380
  $test_result .= sprintf( __( 'The HTTP response gives back the false body "%s"','backwpup' ), strip_tags( wp_remote_retrieve_body( $raw_response ) ) );
381
 
382
  if ( empty( $test_result ) )
429
  echo '<tr title=""><td>' . __( 'Blog Timezone', 'backwpup' ) . '</td><td>' . get_option( 'timezone_string' ) . '</td></tr>';
430
  echo '<tr title=""><td>' . __( 'Blog Time offset', 'backwpup' ) . '</td><td>' . sprintf( __( '%s hours', 'backwpup' ), get_option( 'gmt_offset' ) ) . '</td></tr>';
431
  echo '<tr title="WPLANG"><td>' . __( 'Blog language', 'backwpup' ) . '</td><td>' . get_bloginfo( 'language' ) . '</td></tr>';
432
+ echo '<tr title="utf8"><td>' . __( 'MySQL Client encoding', 'backwpup' ) . '</td><td>';
433
+ echo defined( 'DB_CHARSET' ) ? DB_CHARSET : '';
434
+ echo '</td></tr>';
435
  echo '<tr title="URF-8"><td>' . __( 'Blog charset', 'backwpup' ) . '</td><td>' . get_bloginfo( 'charset' ) . '</td></tr>';
436
  echo '<tr title="&gt;=128M"><td>' . __( 'PHP Memory limit', 'backwpup' ) . '</td><td>' . ini_get( 'memory_limit' ) . '</td></tr>';
437
  echo '<tr title="WP_MEMORY_LIMIT"><td>' . __( 'WP memory limit', 'backwpup' ) . '</td><td>' . WP_MEMORY_LIMIT . '</td></tr>';
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 Pro v3.0.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-02-06 17:42+0100\n"
6
- "PO-Revision-Date: 2013-03-12 08:50:52-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"
@@ -72,18 +72,18 @@ msgstr "Datensicherungen"
72
  msgid "Settings"
73
  msgstr "Einstellungen"
74
 
75
- #: inc/class-admin.php:321
76
  #@ backwpup
77
  msgid "Jobs overview"
78
  msgstr "Auftragsübersicht"
79
 
80
- #: inc/class-admin.php:321
81
  #: inc/class-page-jobs.php:134
82
  #@ backwpup
83
  msgid "Run now"
84
  msgstr "Jetzt starten"
85
 
86
- #: inc/class-admin.php:411
87
  #, php-format
88
  #@ backwpup
89
  msgid "version %s"
@@ -100,7 +100,7 @@ msgid "Abort!"
100
  msgstr "Abbrechen!"
101
 
102
  #: inc/class-adminbar.php:91
103
- #: inc/class-page-jobs.php:463
104
  #@ backwpupadminbar
105
  #@ backwpup
106
  msgid "Add New"
@@ -119,22 +119,22 @@ msgid "Run Now"
119
  msgstr "Jetzt starten"
120
 
121
  #: inc/class-cron.php:53
122
- #: inc/class-job.php:1005
123
- #: inc/class-page-jobs.php:394
124
  #: inc/class-wp-cli.php:47
125
  #@ backwpup
126
  msgid "ERROR:"
127
  msgstr "FEHLER:"
128
 
129
  #: inc/class-cron.php:84
130
- #: inc/class-job.php:1236
131
  #, php-format
132
  #@ backwpup
133
  msgid "[%3$s] BackWPup log %1$s: %2$s"
134
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
135
 
136
  #: inc/class-cron.php:84
137
- #: inc/class-job.php:1232
138
  #@ backwpup
139
  msgid "ERROR"
140
  msgstr "FEHLER"
@@ -145,24 +145,21 @@ msgid "Dropbox"
145
  msgstr "Dropbox"
146
 
147
  #: inc/class-destination-dropbox.php:14
148
- #: inc/class-page-about.php:234
149
  #@ backwpup
150
  msgid "Backup to Dropbox"
151
  msgstr "Datensicherung in die Dropbox"
152
 
153
- #: inc/class-destination-dropbox.php:46
154
- #: inc/class-destination-dropbox.php:60
155
  #: inc/features/class-destination-dropbox-pro.php:30
156
  #@ backwpup
157
  msgid "Dropbox authentication complete!"
158
  msgstr "Dropbox-Authentifizierung vollständig!"
159
 
160
- #: inc/class-destination-dropbox.php:49
161
- #: inc/class-destination-dropbox.php:63
162
- #: inc/class-destination-dropbox.php:85
163
- #: inc/class-destination-dropbox.php:99
164
- #: inc/class-destination-dropbox.php:280
165
- #: inc/class-destination-dropbox.php:330
166
  #: inc/features/class-destination-dropbox-pro.php:33
167
  #: inc/features/class-destination-dropbox-pro.php:55
168
  #: inc/features/class-destination-dropbox-pro.php:222
@@ -176,39 +173,29 @@ msgstr "Dropbox-API: %s"
176
  msgid "Wrong token for Dropbox authentication received!"
177
  msgstr "Falschen Token für die Dropbox-Authentifizierung erhalten!"
178
 
179
- #: inc/class-destination-dropbox.php:103
180
  #@ backwpup
181
  msgid "Login"
182
  msgstr "Anmelden"
183
 
184
- #: inc/class-destination-dropbox.php:107
185
  #: inc/features/class-destination-dropbox-pro.php:63
186
  #@ backwpup
187
  msgid "Authenticate"
188
  msgstr "Authentifizieren"
189
 
190
- #: inc/class-destination-dropbox.php:109
191
  #: inc/features/class-destination-dropbox-pro.php:62
192
  #@ backwpup
193
  msgid "Not authenticated!"
194
  msgstr "Nicht authentifiziert!"
195
 
196
- #: inc/class-destination-dropbox.php:109
197
  #: inc/features/class-destination-dropbox-pro.php:64
198
  #@ backwpup
199
  msgid "Create Account"
200
  msgstr "Konto erstellen"
201
 
202
- #: inc/class-destination-dropbox.php:110
203
- #@ backwpup
204
- msgid "Authenticate (Sandbox)"
205
- msgstr "Authentifizierung (Sandbox)"
206
-
207
- #: inc/class-destination-dropbox.php:111
208
- #@ backwpup
209
- msgid "Authenticate (full Dropbox)"
210
- msgstr "Authentifiziere (volle Dropbox)"
211
-
212
  #: inc/class-destination-dropbox.php:113
213
  #: inc/class-destination-sugarsync.php:63
214
  #: inc/features/class-destination-dropbox-pro.php:70
@@ -217,12 +204,12 @@ msgstr "Authentifiziere (volle Dropbox)"
217
  msgid "Authenticated!"
218
  msgstr "Authentifiziert!"
219
 
220
- #: inc/class-destination-dropbox.php:114
221
  #@ backwpup
222
  msgid "Reauthenticate (Sandbox)"
223
  msgstr "Neu authentifizieren (Sandbox)"
224
 
225
- #: inc/class-destination-dropbox.php:115
226
  #@ backwpup
227
  msgid "Reauthenticate (full Dropbox)"
228
  msgstr "Neu authentifizieren (volle Dropbox)"
@@ -304,7 +291,7 @@ msgstr "Älteste Dateien werden als erstes gelöscht. 0 = keine Löschung"
304
  msgid "Do not delete files while syncing to destination!"
305
  msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
306
 
307
- #: inc/class-destination-dropbox.php:268
308
  #: inc/class-destination-msazure.php:249
309
  #: inc/class-destination-sugarsync.php:272
310
  #, php-format
@@ -312,7 +299,7 @@ msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
312
  msgid "Backup transferred to %s"
313
  msgstr "Datensicherung übertragen zu %s"
314
 
315
- #: inc/class-destination-dropbox.php:274
316
  #, php-format
317
  #@ backwpup
318
  msgid "Error on transfer backup to Dropbox: %s"
@@ -329,7 +316,7 @@ msgstr "Ordner"
329
  msgid "Backup to Folder"
330
  msgstr "Datensicherung in Ordner"
331
 
332
- #: inc/class-destination-folder.php:207
333
  #, php-format
334
  #@ backwpup
335
  msgid "One backup file deleted"
@@ -402,56 +389,56 @@ msgstr "Kann nicht mit dem FTP-Server verbinden: %s"
402
  msgid "Error getting SYSTYPE"
403
  msgstr "Fehler, SYSTYPE wird angezeigt"
404
 
405
- #: inc/class-destination-ftp.php:282
406
  #, php-format
407
  #@ backwpup
408
  msgid "FTP Folder \"%s\" created!"
409
  msgstr "FTP-Ordner \"%s\" erstellt!"
410
 
411
- #: inc/class-destination-ftp.php:286
412
  #, php-format
413
  #@ backwpup
414
  msgid "FTP Folder \"%s\" cannot be created!"
415
  msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!"
416
 
417
- #: inc/class-destination-ftp.php:296
418
  #, php-format
419
  #@ backwpup
420
  msgid "FTP current folder is: %s"
421
  msgstr "Aktueller FTP-Ordner ist: %s"
422
 
423
- #: inc/class-destination-ftp.php:306
424
  #@ backwpup
425
  msgid "Entering passive mode"
426
  msgstr "Passivmodus gestartet"
427
 
428
- #: inc/class-destination-ftp.php:308
429
  #@ backwpup
430
  msgid "Cannot enter passive mode"
431
  msgstr "Starten des passiven Modus’ nicht möglich"
432
 
433
- #: inc/class-destination-ftp.php:312
434
  #@ backwpup
435
  msgid "Entering normal mode"
436
  msgstr "Starte Normalmodus"
437
 
438
- #: inc/class-destination-ftp.php:314
439
  #@ backwpup
440
  msgid "Cannot enter normal mode"
441
  msgstr "Normalmodus kann nicht gestartet werden"
442
 
443
- #: inc/class-destination-ftp.php:327
444
  #@ backwpup
445
  msgid "Cannot transfer backup to FTP server!"
446
  msgstr "Datensicherung kann nicht zum FTP-Server übertragen werden!"
447
 
448
- #: inc/class-destination-ftp.php:333
449
  #, php-format
450
  #@ backwpup
451
  msgid "Backup transferred to FTP server: %s"
452
  msgstr "Datensicherungsdatei übertragen zum FTP-Server: %s"
453
 
454
- #: inc/class-destination-ftp.php:379
455
  #, php-format
456
  #@ backwpup
457
  msgid "Cannot delete \"%s\" on FTP server!"
@@ -503,12 +490,12 @@ msgstr "SMTP Sichere Verbindung"
503
  #: inc/class-destination-s3.php:205
504
  #: inc/class-jobtype-dbdump.php:67
505
  #: inc/class-jobtype-dbdump.php:110
506
- #: inc/class-jobtype-wpexp.php:69
507
  #: inc/class-jobtype-wpplugin.php:56
508
  #: inc/class-page-backwpup.php:217
509
- #: inc/class-page-backwpup.php:280
510
- #: inc/features/class-jobtype-dbdump-pro.php:161
511
- #: inc/features/class-jobtype-dbdump-pro.php:219
512
  #@ backwpup
513
  msgid "none"
514
  msgstr "nichts"
@@ -533,19 +520,19 @@ msgstr "SMTP Benutzername"
533
  msgid "SMTP password"
534
  msgstr "SMTP Passwort"
535
 
536
- #: inc/class-destination-email.php:316
537
  #, php-format
538
  #@ backwpup
539
  msgid "BackWPup archive from %1$s: %2$s"
540
  msgstr "BackWPup-Archiv vom %1$s: %2$s"
541
 
542
- #: inc/class-destination-email.php:319
543
  #, php-format
544
  #@ backwpup
545
  msgid "Backup archive: %s"
546
  msgstr "Datensicherungsarchiv: %s"
547
 
548
- #: inc/class-destination-email.php:438
549
  #@ backwpup
550
  msgid "BackWPup archive sending TEST Message"
551
  msgstr "BackWPup Archiv TEST Nachricht senden"
@@ -654,7 +641,7 @@ msgid "RSC"
654
  msgstr "RSC"
655
 
656
  #: inc/class-destination-rsc.php:22
657
- #: inc/class-page-about.php:239
658
  #@ backwpup
659
  msgid "Backup to Rackspace Cloud Files"
660
  msgstr "Datensicherung in die Rackspace Cloud"
@@ -976,13 +963,13 @@ msgid " %s is not a valid bucket name."
976
  msgstr "%s ist kein gültiger Bucket Name"
977
 
978
  #: inc/class-destination-s3-v1.php:309
979
- #: inc/class-destination-s3-v1.php:434
980
- #: inc/class-destination-s3-v1.php:485
981
  #: inc/class-destination-s3.php:317
982
- #: inc/class-destination-s3.php:424
983
- #: inc/class-destination-s3.php:455
984
- #: inc/class-destination-s3.php:476
985
- #: inc/class-destination-s3.php:535
986
  #: inc/features/class-destination-s3-pro.php:279
987
  #: inc/features/class-destination-s3-v1-pro.php:271
988
  #, php-format
@@ -999,29 +986,29 @@ msgstr "S3 Service API: %s"
999
  msgid "S3 Bucket \"%s\" does not exist!"
1000
  msgstr "Amazon S3 Bucket \"%s\" existiert nicht!"
1001
 
1002
- #: inc/class-destination-s3-v1.php:425
1003
- #: inc/class-destination-s3.php:467
1004
  #, php-format
1005
  #@ backwpup
1006
  msgid "Backup transferred to %s."
1007
  msgstr "Datensicherung übertragen zu %s"
1008
 
1009
- #: inc/class-destination-s3-v1.php:430
1010
- #: inc/class-destination-s3.php:472
1011
  #, php-format
1012
  #@ backwpup
1013
  msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1014
  msgstr "Datensicherung kann nicht zu Amazon S3 übertragen werden! (%1$d) %2$s"
1015
 
1016
- #: inc/class-destination-s3-v1.php:475
1017
- #: inc/class-destination-s3.php:525
1018
  #, php-format
1019
  #@ backwpup
1020
  msgid "Cannot delete backup from %s."
1021
  msgstr "Kann das Backup auf %s nicht löschen"
1022
 
1023
- #: inc/class-destination-s3-v1.php:479
1024
- #: inc/class-destination-s3.php:529
1025
  #, php-format
1026
  #@ backwpup
1027
  msgid "One file deleted on S3 Bucket."
@@ -1030,20 +1017,20 @@ msgstr[0] "Eine Datei im S3-Bucket gelöscht"
1030
  msgstr[1] "%d Dateien im S3-Bucket gelöscht"
1031
 
1032
  #: inc/class-destination-msazure.php:381
1033
- #: inc/class-destination-s3-v1.php:590
1034
- #: inc/class-destination-s3.php:632
1035
  #@ backwpup
1036
  msgid "Missing access key!"
1037
  msgstr "Der Zugangsschlüssel (Access Key) fehlt!"
1038
 
1039
- #: inc/class-destination-s3-v1.php:592
1040
- #: inc/class-destination-s3.php:634
1041
  #@ backwpup
1042
  msgid "Missing secret access key!"
1043
  msgstr "Der geheime Zugangsschlüssel (Secret Access Key) fehlt!"
1044
 
1045
- #: inc/class-destination-s3-v1.php:596
1046
- #: inc/class-destination-s3.php:638
1047
  #@ backwpup
1048
  msgid "No bucket found!"
1049
  msgstr "Kein Bucket gefunden!"
@@ -1054,7 +1041,7 @@ msgid "SugarSync"
1054
  msgstr "SugarSync"
1055
 
1056
  #: inc/class-destination-sugarsync.php:14
1057
- #: inc/class-page-about.php:254
1058
  #@ backwpup
1059
  msgid "Backup to SugarSync"
1060
  msgstr "Datensicherung zu SugarSync"
@@ -1176,199 +1163,199 @@ msgstr "BackWPup Auftragshelfer"
1176
  msgid "Starting job"
1177
  msgstr "Auftrag starten"
1178
 
1179
- #: inc/class-job.php:215
1180
  #@ backwpup
1181
  msgid "Creates archive"
1182
  msgstr "erstellt Archiv"
1183
 
1184
- #: inc/class-job.php:246
1185
  #@ backwpup
1186
  msgid "Job End"
1187
  msgstr "Auftragsende"
1188
 
1189
- #: inc/class-job.php:254
1190
  #, php-format
1191
  #@ backwpup
1192
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1193
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
1194
 
1195
- #: inc/class-job.php:273
1196
  #@ backwpup
1197
  msgid "[INFO] This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1198
  msgstr "[INFO] Dieses Programm leistet ABSOLUT KEINE GEWÄHR. Dies ist eine freie Software und es steht frei, diese unter gleichen Konditionen weiterzuentwickeln."
1199
 
1200
- #: inc/class-job.php:274
1201
  #, php-format
1202
  #@ backwpup
1203
  msgid "[INFO] BackWPup job: %1$s; %2$s"
1204
  msgstr "[INFO] BackWPup-Auftrag: %1$s; %2$s"
1205
 
1206
- #: inc/class-job.php:276
1207
  #@ backwpup
1208
  msgid "[INFO] BackWPup cron:"
1209
  msgstr "[INFO] BackWPup Cron:"
1210
 
1211
- #: inc/class-job.php:278
1212
  #@ backwpup
1213
  msgid "[INFO] BackWPup job started from wp-cron"
1214
  msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet"
1215
 
1216
- #: inc/class-job.php:280
1217
  #@ backwpup
1218
  msgid "[INFO] BackWPup job started manually"
1219
  msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet"
1220
 
1221
- #: inc/class-job.php:282
1222
  #@ backwpup
1223
  msgid "[INFO] BackWPup job started from external url"
1224
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
1225
 
1226
- #: inc/class-job.php:285
1227
  #@ backwpup
1228
  msgid "[INFO] PHP ver.:"
1229
  msgstr "[INFO] PHP ver.:"
1230
 
1231
- #: inc/class-job.php:287
1232
  #, php-format
1233
  #@ backwpup
1234
  msgid "[INFO] MySQL ver.: %s"
1235
  msgstr "[INFO] MySQL ver.: %s"
1236
 
1237
- #: inc/class-job.php:290
1238
  #, php-format
1239
  #@ backwpup
1240
  msgid "[INFO] curl ver.: %1$s; %2$s"
1241
  msgstr "[INFO] curl ver.: %1$s; %2$s"
1242
 
1243
- #: inc/class-job.php:292
1244
  #, php-format
1245
  #@ backwpup
1246
  msgid "[INFO] Temp folder is: %s"
1247
  msgstr "[INFO] Temp Ordner ist: %s"
1248
 
1249
- #: inc/class-job.php:293
1250
  #, php-format
1251
  #@ backwpup
1252
  msgid "[INFO] Logfile folder is: %s"
1253
  msgstr "[INFO] Logdatei Ordner ist: %s"
1254
 
1255
- #: inc/class-job.php:294
1256
  #, php-format
1257
  #@ backwpup
1258
  msgid "[INFO] Backup type is: %s"
1259
  msgstr "[INFO] Backup Typ ist: %s"
1260
 
1261
- #: inc/class-job.php:296
1262
  #, php-format
1263
  #@ backwpup
1264
  msgid "[INFO] Backup file is: %s"
1265
  msgstr "[INFO] Backup Datei ist: %s"
1266
 
1267
- #: inc/class-job.php:443
1268
- #: inc/class-job.php:444
1269
- #: inc/class-job.php:518
1270
- #: inc/class-job.php:519
1271
- #: inc/class-job.php:567
1272
  #@ backwpup
1273
  msgid "Wrong BackWPup JobID"
1274
  msgstr "Falsche BackWPup JobID"
1275
 
1276
- #: inc/class-job.php:448
1277
- #: inc/class-job.php:449
1278
- #: inc/class-job.php:524
1279
- #: inc/class-job.php:573
1280
  #@ backwpup
1281
  msgid "Log folder does not exist or is not writable for BackWPup"
1282
  msgstr "Log-Ordner existiert nicht oder ist nicht beschreibbar für BackWPup"
1283
 
1284
- #: inc/class-job.php:452
1285
- #: inc/class-job.php:453
1286
- #: inc/class-job.php:528
1287
- #: inc/class-job.php:578
1288
  #@ backwpup
1289
  msgid "Temp folder does not exist or is not writable for BackWPup"
1290
  msgstr "Temp Ordner existiert nicht oder ist nicht beschreibbar für BackWPup!"
1291
 
1292
- #: inc/class-job.php:463
1293
- #: inc/class-job.php:464
1294
  #@ backwpup
1295
  msgid "No BackWPup job running"
1296
  msgstr "Kein aktiver BackWPup-Auftrag"
1297
 
1298
- #: inc/class-job.php:467
1299
- #: inc/class-job.php:468
1300
- #: inc/class-job.php:532
1301
- #: inc/class-job.php:533
1302
- #: inc/class-job.php:585
1303
  #@ backwpup
1304
  msgid "A BackWPup job is already running"
1305
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
1306
 
1307
- #: inc/class-job.php:523
1308
  #@ backwpup
1309
  msgid "Log folder does not exist or is not writable"
1310
  msgstr "Log-Ordner existiert nicht oder ist nicht beschreibbar"
1311
 
1312
- #: inc/class-job.php:527
1313
  #@ backwpup
1314
  msgid "Temp folder does not exist or is not writable"
1315
  msgstr "Temp Ordner existiert nicht oder ist nicht beschreibbar"
1316
 
1317
- #: inc/class-job.php:613
1318
  #@ backwpup
1319
  msgid "Job restart due to inactivity for more than 5 minutes."
1320
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet"
1321
 
1322
- #: inc/class-job.php:725
1323
  #@ backwpup
1324
  msgid "Step aborted: too many attempts!"
1325
  msgstr "Schritt abgebrochen durch zu viele Versuche!"
1326
 
1327
- #: inc/class-job.php:898
1328
  #, php-format
1329
  #@ backwpup
1330
  msgid "Please use another folder: %1$s"
1331
  msgstr "Bitte einen anderen Ordner auswählen: %1$s"
1332
 
1333
- #: inc/class-job.php:905
1334
  #, php-format
1335
  #@ backwpup
1336
  msgid "Cannot create folder: %1$s"
1337
  msgstr "Kann keinen Ordner erstellen: %1$s"
1338
 
1339
- #: inc/class-job.php:913
1340
  #, php-format
1341
  #@ backwpup
1342
  msgid "Folder \"%1$s\" is not writable"
1343
  msgstr "Ordner \"%1$s\" ist nicht beschreibbar"
1344
 
1345
- #: inc/class-job.php:938
1346
  #, php-format
1347
  #@ backwpup
1348
  msgid "Exception caught in %1$s: %2$s"
1349
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
1350
 
1351
- #: inc/class-job.php:996
1352
  #@ backwpup
1353
  msgid "WARNING:"
1354
  msgstr "WARNUNG:"
1355
 
1356
- #: inc/class-job.php:1009
1357
  #@ backwpup
1358
  msgid "DEPRECATED:"
1359
  msgstr "ABGELEHNT:"
1360
 
1361
- #: inc/class-job.php:1012
1362
  #@ backwpup
1363
  msgid "STRICT NOTICE:"
1364
  msgstr "EXAKTE NOTIZ:"
1365
 
1366
- #: inc/class-job.php:1015
1367
  #@ backwpup
1368
  msgid "RECOVERABLE ERROR:"
1369
  msgstr "WIEDERHERSTELLUNGS FEHLER:"
1370
 
1371
- #: inc/class-job.php:1155
1372
  #, php-format
1373
  #@ backwpup
1374
  msgid "One old log deleted"
@@ -1376,50 +1363,44 @@ msgid_plural "%d old logs deleted"
1376
  msgstr[0] "Eine alte Log-Datei gelöscht"
1377
  msgstr[1] "%d alte Log-Dateien gelöscht"
1378
 
1379
- #: inc/class-job.php:1160
1380
  #, php-format
1381
  #@ backwpup
1382
  msgid "Job done in %s seconds."
1383
  msgstr "Auftrag erledigt in %s Sekunden."
1384
 
1385
- #: inc/class-job.php:1225
1386
  #@ backwpup
1387
  msgid "SUCCESSFUL"
1388
  msgstr "ERFOLGREICH"
1389
 
1390
- #: inc/class-job.php:1228
1391
  #@ backwpup
1392
  msgid "WARNING"
1393
  msgstr "WARNUNG"
1394
 
1395
- #: inc/class-job.php:1294
1396
  #@ backwpup
1397
  msgid "Set blog into maintenance mode"
1398
  msgstr "Webseite / Blog in den Wartungsmodus versetzen"
1399
 
1400
- #: inc/class-job.php:1302
1401
  #@ backwpup
1402
  msgid "Cannot set blog into maintenance mode! .maintenance is not writable!"
1403
  msgstr "Die Webseite kann nicht in den Wartungsmodus gesetzt werden! Das Root-Verzeichnis ist nicht beschreibbar!"
1404
 
1405
- #: inc/class-job.php:1310
1406
  #@ backwpup
1407
  msgid "Set blog to normal mode"
1408
  msgstr "Setze Webseite / Blog zurück in den Normalmodus"
1409
 
1410
- #: inc/class-job.php:1338
1411
- #, php-format
1412
- #@ backwpup
1413
- msgid "Memory increased from %1$s to %2$s"
1414
- msgstr "Speicher(limit) erhöht von %1$s auf %2$s"
1415
-
1416
- #: inc/class-job.php:1634
1417
  #, php-format
1418
  #@ backwpup
1419
  msgid "File \"%s\" is not readable!"
1420
  msgstr "Datei \"%s\" ist nicht lesbar!"
1421
 
1422
- #: inc/class-job.php:1636
1423
  #, php-format
1424
  #@ backwpup
1425
  msgid "Link \"%s\" not followed."
@@ -1547,13 +1528,13 @@ msgstr "(ER_REMOVE) Datei kann nicht entfernt werden"
1547
  msgid "(ER_DELETED) Entry has been deleted"
1548
  msgstr "(ER_DELETED) Eintrag wurde gelöscht"
1549
 
1550
- #: inc/class-job.php:1733
1551
  #, php-format
1552
  #@ backwpup
1553
  msgid "Archive size is %s."
1554
  msgstr "Archivgröße ist %s"
1555
 
1556
- #: inc/class-job.php:1734
1557
  #, php-format
1558
  #@ backwpup
1559
  msgid "%1$d Files with %2$s in Archive."
@@ -1611,7 +1592,7 @@ msgstr "Teste nur die WordPress-Tabellen"
1611
  #: inc/class-jobtype-dboptimize.php:50
1612
  #: inc/features/class-jobtype-dbcheck-pro.php:25
1613
  #: inc/features/class-jobtype-dbdump-pro.php:92
1614
- #: inc/features/class-jobtype-dbdump-pro.php:182
1615
  #: inc/features/class-jobtype-dboptimize-pro.php:26
1616
  #@ backwpup
1617
  msgid "Maintenance mode"
@@ -1666,71 +1647,63 @@ msgstr "Keine Tabellen zum checken."
1666
  msgid "Database backup"
1667
  msgstr "Datenbank Backup"
1668
 
1669
- #: inc/class-jobtype-dbdump.php:60
1670
  #: inc/features/class-jobtype-dbdump-pro.php:80
1671
- #: inc/features/class-jobtype-dbdump-pro.php:111
1672
  #@ backwpup
1673
  msgid "Settings for database dump"
1674
  msgstr "Einstellungen für das Datenbank-Backup"
1675
 
1676
- #: inc/class-jobtype-dbdump.php:64
1677
- #: inc/features/class-jobtype-dbdump-pro.php:158
1678
- #@ backwpup
1679
- msgid "Tables to dump"
1680
- msgstr "Tabellen zum Sichern"
1681
-
1682
  #: inc/class-jobtype-dbdump.php:66
1683
- #: inc/features/class-jobtype-dbdump-pro.php:160
1684
  #@ backwpup
1685
  msgid "all"
1686
  msgstr "alle"
1687
 
1688
  #: inc/class-jobtype-dbdump.php:95
1689
  #: inc/features/class-jobtype-dbdump-pro.php:96
1690
- #: inc/features/class-jobtype-dbdump-pro.php:186
1691
  #@ backwpup
1692
  msgid "Activate maintenance mode on database dump"
1693
  msgstr "Aktiviere den Wartungsmodus bei der Datenbank Sicherung"
1694
 
1695
  #: inc/class-jobtype-dbdump.php:99
1696
- #: inc/features/class-jobtype-dbdump-pro.php:208
1697
  #@ backwpup
1698
  msgid "Dumpfile name"
1699
  msgstr "Name der Backup-Datei"
1700
 
1701
  #: inc/class-jobtype-dbdump.php:107
1702
- #: inc/features/class-jobtype-dbdump-pro.php:216
1703
  #@ backwpup
1704
  msgid "Dumpfile compression"
1705
  msgstr "Kompression der Backup-Datei"
1706
 
1707
  #: inc/class-jobtype-dbdump.php:112
1708
  #: inc/class-jobtype-dbdump.php:114
1709
- #: inc/class-jobtype-wpexp.php:71
1710
- #: inc/class-jobtype-wpexp.php:73
1711
  #: inc/class-jobtype-wpplugin.php:58
1712
  #: inc/class-jobtype-wpplugin.php:60
1713
- #: inc/features/class-jobtype-dbdump-pro.php:221
1714
- #: inc/features/class-jobtype-dbdump-pro.php:223
1715
  #@ backwpup
1716
  msgid "GZip"
1717
  msgstr "GZip"
1718
 
1719
  #: inc/class-jobtype-dbdump.php:116
1720
  #: inc/class-jobtype-dbdump.php:118
1721
- #: inc/class-jobtype-wpexp.php:75
1722
- #: inc/class-jobtype-wpexp.php:77
1723
  #: inc/class-jobtype-wpplugin.php:62
1724
  #: inc/class-jobtype-wpplugin.php:64
1725
- #: inc/features/class-jobtype-dbdump-pro.php:225
1726
- #: inc/features/class-jobtype-dbdump-pro.php:227
1727
  #@ backwpup
1728
  msgid "BZip2"
1729
  msgstr "BZip2"
1730
 
1731
  #: inc/class-jobtype-dbdump.php:179
1732
- #: inc/features/class-jobtype-dbdump-pro.php:488
1733
- #: inc/features/class-jobtype-dbdump-pro.php:706
1734
  #, php-format
1735
  #@ backwpup
1736
  msgid "Connected to database %1$s on %2$s"
@@ -1745,32 +1718,32 @@ msgstr "Mit Datenbank %1$s auf %2$s verbunden"
1745
  #: inc/class-mysqldump.php:294
1746
  #: inc/class-mysqldump.php:315
1747
  #: inc/class-mysqldump.php:329
1748
- #: inc/features/class-jobtype-dbdump-pro.php:712
1749
- #: inc/features/class-jobtype-dbdump-pro.php:726
1750
- #: inc/features/class-jobtype-dbdump-pro.php:775
1751
- #: inc/features/class-jobtype-dbdump-pro.php:792
1752
- #: inc/features/class-jobtype-dbdump-pro.php:833
1753
  #, php-format
1754
  #@ backwpup
1755
  msgid "Database error %1$s for query %2$s"
1756
  msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s"
1757
 
1758
  #: inc/class-jobtype-dbdump.php:191
1759
- #: inc/features/class-jobtype-dbdump-pro.php:501
1760
  #@ backwpup
1761
  msgid "No tables to dump."
1762
  msgstr "Es gibt keine Tabellen zu sichern"
1763
 
1764
  #: inc/class-jobtype-dbdump.php:202
1765
- #: inc/features/class-jobtype-dbdump-pro.php:515
1766
  #, php-format
1767
  #@ backwpup
1768
  msgid "Dump database table \"%s\""
1769
  msgstr "Sichere Datenbanktabelle \"%s\""
1770
 
1771
  #: inc/class-jobtype-dbdump.php:227
1772
- #: inc/features/class-jobtype-dbdump-pro.php:540
1773
- #: inc/features/class-jobtype-dbdump-pro.php:658
1774
  #@ backwpup
1775
  msgid "Database dump done!"
1776
  msgstr "Datenbank-Backup fertig!"
@@ -1871,29 +1844,29 @@ msgstr "Ausschließen:"
1871
  msgid "Plugins"
1872
  msgstr "Plugins"
1873
 
1874
- #: inc/class-jobtype-file.php:395
1875
- #: inc/class-jobtype-file.php:402
1876
- #: inc/class-jobtype-file.php:409
1877
- #: inc/class-jobtype-file.php:415
1878
- #: inc/class-jobtype-file.php:421
1879
- #: inc/class-jobtype-file.php:427
1880
  #, php-format
1881
  #@ backwpup
1882
  msgid "Added \"%s\" to backup file list"
1883
  msgstr "\"%s\" zur Backup Datei-Liste hinzugefügt."
1884
 
1885
- #: inc/class-jobtype-file.php:432
1886
  #@ backwpup
1887
  msgid "No folder to back up."
1888
  msgstr "Keine Ordner zum Sichern"
1889
 
1890
- #: inc/class-jobtype-file.php:434
1891
  #, php-format
1892
  #@ backwpup
1893
  msgid "%1$d folders to back up."
1894
  msgstr "%1$d Ordner zu sichern"
1895
 
1896
- #: inc/class-jobtype-file.php:471
1897
  #, php-format
1898
  #@ backwpup
1899
  msgid "Folder \"%s\" is not readable!"
@@ -1905,30 +1878,30 @@ msgid "XML export"
1905
  msgstr "XML Export"
1906
 
1907
  #: inc/class-jobtype-wpexp.php:14
1908
- #: inc/class-page-about.php:189
1909
  #@ backwpup
1910
  msgid "WordPress XML export"
1911
  msgstr "WordPress XML Export"
1912
 
1913
- #: inc/class-jobtype-wpexp.php:47
1914
  #: inc/features/class-jobtype-wpexp-pro.php:16
1915
  #@ backwpup
1916
  msgid "All content"
1917
  msgstr "Gesamter Inhalt"
1918
 
1919
- #: inc/class-jobtype-wpexp.php:48
1920
  #: inc/features/class-jobtype-wpexp-pro.php:17
1921
  #@ backwpup
1922
  msgid "Posts"
1923
  msgstr "Beiträge"
1924
 
1925
- #: inc/class-jobtype-wpexp.php:49
1926
  #: inc/features/class-jobtype-wpexp-pro.php:18
1927
  #@ backwpup
1928
  msgid "Pages"
1929
  msgstr "Seiten"
1930
 
1931
- #: inc/class-jobtype-wpexp.php:132
1932
  #, php-format
1933
  #@ backwpup
1934
  msgid "Added XML export \"%1$s\" with %2$s to backup file list."
@@ -1995,7 +1968,7 @@ msgid "Time"
1995
  msgstr "Zeit"
1996
 
1997
  #: inc/class-page-backups.php:296
1998
- #: inc/class-page-jobs.php:222
1999
  #: inc/class-page-logs.php:186
2000
  #@ backwpup
2001
  msgid "Download"
@@ -2018,18 +1991,18 @@ msgstr "%s Sicherungsarchive verwalten"
2018
  msgid "%s Dashboard"
2019
  msgstr "%s Dashboard"
2020
 
2021
- #: inc/class-page-about.php:73
2022
  #@ backwpup
2023
  msgid "Welcome to BackWPup Pro"
2024
  msgstr "Willkommen zu BackWPup Pro"
2025
 
2026
- #: inc/class-page-about.php:83
2027
  #@ backwpup
2028
  msgid "Welcome to BackWPup"
2029
  msgstr "Willkommen bei BackWPup"
2030
 
2031
  #: inc/class-page-backwpup.php:121
2032
- #: inc/features/class-page-wizard.php:239
2033
  #@ backwpup
2034
  msgid "Start wizard"
2035
  msgstr "Assistenten starten"
@@ -2074,12 +2047,12 @@ msgid "working since %d seconds"
2074
  msgstr "in Arbeit seit %d Sek."
2075
 
2076
  #: inc/class-page-backwpup.php:262
2077
- #: inc/class-page-jobs.php:485
2078
  #@ backwpup
2079
  msgid "Abort"
2080
  msgstr "Abbrechen"
2081
 
2082
- #: inc/class-page-backwpup.php:276
2083
  #@ backwpup
2084
  msgid "Edit Job"
2085
  msgstr "Auftrag bearbeiten"
@@ -2120,65 +2093,65 @@ msgstr "O.K."
2120
  msgid "Overview"
2121
  msgstr "Überblick"
2122
 
2123
- #: inc/class-page-editjob.php:177
2124
  #, php-format
2125
  #@ backwpup
2126
  msgid "Changes for job <i>%s</i> saved."
2127
  msgstr "Änderungen für den Auftrag <i>%s</i> gesichert."
2128
 
2129
- #: inc/class-page-editjob.php:319
2130
  #, php-format
2131
  #@ backwpup
2132
  msgid "ATTENTION: Job runs every %d minutes!"
2133
  msgstr "ACHTUNG: Auftrag läuft alle %d Minuten!"
2134
 
2135
- #: inc/class-page-editjob.php:325
2136
  #, php-format
2137
  #@ backwpup
2138
  msgid "ATTENTION: Job runs every %d hours!"
2139
  msgstr "ACHTUNG: Auftrag läuft alle %d Stunden!"
2140
 
2141
- #: inc/class-page-editjob.php:329
2142
  #@ backwpup
2143
  msgid "ATTENTION: Can't calculate cron!"
2144
  msgstr "ACHTUNG: Kann cron nicht berechnen!"
2145
 
2146
- #: inc/class-page-editjob.php:332
2147
  #@ backwpup
2148
  msgid "Next runtime:"
2149
  msgstr "Nächster Durchlauf:"
2150
 
2151
- #: inc/class-page-editjob.php:370
2152
  #: inc/class-page-settings.php:103
2153
  #@ backwpup
2154
  msgid "General"
2155
  msgstr "Allgemein"
2156
 
2157
- #: inc/class-page-editjob.php:370
2158
  #@ backwpup
2159
  msgid "Schedule"
2160
  msgstr "Planen"
2161
 
2162
- #: inc/class-page-editjob.php:385
2163
  #, php-format
2164
  #@ backwpup
2165
  msgid "To: %s"
2166
  msgstr "Zu: %s"
2167
 
2168
- #: inc/class-page-editjob.php:391
2169
  #, php-format
2170
  #@ backwpup
2171
  msgid "%s Job:"
2172
  msgstr "%s Auftrag: "
2173
 
2174
- #: inc/class-page-editjob.php:437
2175
  #: inc/features/class-wizard-job.php:228
2176
  #@ backwpup
2177
  msgid "Job tasks"
2178
  msgstr "Auftragsdetails"
2179
 
2180
- #: inc/class-page-editjob.php:458
2181
- #: inc/class-page-editjob.php:461
2182
  #: inc/features/class-wizard-job.php:350
2183
  #: inc/features/class-wizard-job.php:353
2184
  #@ backwpup
@@ -2190,20 +2163,20 @@ msgstr "Backup Typ"
2190
  msgid "Sync file by file to destination"
2191
  msgstr "Synchronisiere Datei für Datei zum Zielverzeichnis"
2192
 
2193
- #: inc/class-page-editjob.php:470
2194
  #: inc/features/class-wizard-job.php:361
2195
  #@ backwpup
2196
  msgid "Create a backup archive"
2197
  msgstr "Backup erstellen"
2198
 
2199
- #: inc/class-page-editjob.php:516
2200
- #: inc/class-page-editjob.php:519
2201
  #@ backwpup
2202
  msgid "Archive Format"
2203
  msgstr "Archiv Format"
2204
 
 
2205
  #: inc/class-page-editjob.php:522
2206
- #: inc/class-page-editjob.php:524
2207
  #: inc/features/class-wizard-job.php:371
2208
  #: inc/features/class-wizard-job.php:373
2209
  #@ backwpup
@@ -2217,22 +2190,22 @@ msgstr "Zip"
2217
  msgid "Disabled because missing PHP function."
2218
  msgstr "Aufgrund fehlender PHP Funktion deaktiviert."
2219
 
2220
- #: inc/class-page-editjob.php:525
2221
  #: inc/features/class-wizard-job.php:374
2222
  #@ backwpup
2223
  msgid "Tar"
2224
  msgstr "Tar"
2225
 
 
2226
  #: inc/class-page-editjob.php:527
2227
- #: inc/class-page-editjob.php:529
2228
  #: inc/features/class-wizard-job.php:376
2229
  #: inc/features/class-wizard-job.php:378
2230
  #@ backwpup
2231
  msgid "Tar GZip"
2232
  msgstr "Tar GZip"
2233
 
 
2234
  #: inc/class-page-editjob.php:531
2235
- #: inc/class-page-editjob.php:533
2236
  #: inc/features/class-wizard-job.php:380
2237
  #: inc/features/class-wizard-job.php:382
2238
  #@ backwpup
@@ -2251,56 +2224,56 @@ msgstr "Wo die Dateien abgelegt werden"
2251
  msgid "Destinations"
2252
  msgstr "Zielordner"
2253
 
2254
- #: inc/class-page-editjob.php:602
2255
- #: inc/class-page-editjob.php:605
2256
  #@ backwpup
2257
  msgid "Start job"
2258
  msgstr "Auftrag starten"
2259
 
2260
- #: inc/class-page-editjob.php:609
2261
  #@ backwpup
2262
  msgid "manually only"
2263
  msgstr "nur manuell"
2264
 
2265
- #: inc/class-page-editjob.php:613
2266
  #@ backwpup
2267
  msgid "with WordPress cron"
2268
  msgstr "mit WordPress Cron"
2269
 
2270
- #: inc/class-page-editjob.php:620
2271
  #@ backwpup
2272
  msgid "with a link"
2273
  msgstr "mit einem Link"
2274
 
2275
- #: inc/class-page-editjob.php:638
2276
  #@ backwpup
2277
  msgid "Schedule execution time"
2278
  msgstr "Plane Ausführungszeit"
2279
 
2280
- #: inc/class-page-editjob.php:642
2281
- #: inc/class-page-editjob.php:645
2282
  #@ backwpup
2283
  msgid "Scheduler type"
2284
  msgstr "Planungstyp"
2285
 
2286
- #: inc/class-page-editjob.php:650
2287
  #@ backwpup
2288
  msgid "basic"
2289
  msgstr "einfach"
2290
 
2291
- #: inc/class-page-editjob.php:654
2292
  #@ backwpup
2293
  msgid "advanced"
2294
  msgstr "erweitert"
2295
 
2296
- #: inc/class-page-editjob.php:683
2297
- #: inc/class-page-editjob.php:751
2298
  #: inc/features/class-wizard-job.php:275
2299
  #@ backwpup
2300
  msgid "Scheduler"
2301
  msgstr "Planer"
2302
 
2303
- #: inc/class-page-editjob.php:688
2304
  #: inc/class-page-jobs.php:70
2305
  #: inc/class-page-logs.php:115
2306
  #: inc/features/class-wizard-job.php:280
@@ -2308,187 +2281,187 @@ msgstr "Planer"
2308
  msgid "Type"
2309
  msgstr "Typ"
2310
 
2311
- #: inc/class-page-editjob.php:693
2312
  #: inc/features/class-wizard-job.php:285
2313
  #@ backwpup
2314
  msgid "Hour"
2315
  msgstr "Stunde"
2316
 
2317
- #: inc/class-page-editjob.php:696
2318
  #: inc/features/class-wizard-job.php:288
2319
  #@ backwpup
2320
  msgid "Minute"
2321
  msgstr "Minute"
2322
 
2323
- #: inc/class-page-editjob.php:700
2324
  #: inc/features/class-wizard-job.php:292
2325
  #@ backwpup
2326
  msgid "monthly"
2327
  msgstr "monatlich"
2328
 
2329
- #: inc/class-page-editjob.php:702
2330
  #: inc/features/class-wizard-job.php:294
2331
  #@ backwpup
2332
  msgid "on"
2333
  msgstr "am"
2334
 
2335
- #: inc/class-page-editjob.php:712
2336
  #: inc/features/class-wizard-job.php:304
2337
  #@ backwpup
2338
  msgid "weekly"
2339
  msgstr "wöchentlich"
2340
 
2341
- #: inc/class-page-editjob.php:714
2342
- #: inc/class-page-editjob.php:821
2343
  #: inc/features/class-wizard-job.php:306
2344
  #@ backwpup
2345
  msgid "Sunday"
2346
  msgstr "Sonntag"
2347
 
2348
- #: inc/class-page-editjob.php:715
2349
- #: inc/class-page-editjob.php:822
2350
  #: inc/features/class-wizard-job.php:307
2351
  #@ backwpup
2352
  msgid "Monday"
2353
  msgstr "Montag"
2354
 
2355
- #: inc/class-page-editjob.php:716
2356
- #: inc/class-page-editjob.php:823
2357
  #: inc/features/class-wizard-job.php:308
2358
  #@ backwpup
2359
  msgid "Tuesday"
2360
  msgstr "Dienstag"
2361
 
2362
- #: inc/class-page-editjob.php:717
2363
- #: inc/class-page-editjob.php:824
2364
  #: inc/features/class-wizard-job.php:309
2365
  #@ backwpup
2366
  msgid "Wednesday"
2367
  msgstr "Mittwoch"
2368
 
2369
- #: inc/class-page-editjob.php:718
2370
- #: inc/class-page-editjob.php:825
2371
  #: inc/features/class-wizard-job.php:310
2372
  #@ backwpup
2373
  msgid "Thursday"
2374
  msgstr "Donnerstag"
2375
 
2376
- #: inc/class-page-editjob.php:719
2377
- #: inc/class-page-editjob.php:826
2378
  #: inc/features/class-wizard-job.php:311
2379
  #@ backwpup
2380
  msgid "Friday"
2381
  msgstr "Freitag"
2382
 
2383
- #: inc/class-page-editjob.php:720
2384
- #: inc/class-page-editjob.php:827
2385
  #: inc/features/class-wizard-job.php:312
2386
  #@ backwpup
2387
  msgid "Saturday"
2388
  msgstr "Samstag"
2389
 
2390
- #: inc/class-page-editjob.php:730
2391
  #: inc/features/class-wizard-job.php:322
2392
  #@ backwpup
2393
  msgid "daily"
2394
  msgstr "täglich"
2395
 
2396
- #: inc/class-page-editjob.php:740
2397
  #: inc/features/class-wizard-job.php:332
2398
  #@ backwpup
2399
  msgid "hourly"
2400
  msgstr "stündlich"
2401
 
2402
- #: inc/class-page-editjob.php:756
2403
- #: inc/class-page-editjob.php:769
2404
- #: inc/class-page-editjob.php:781
2405
- #: inc/class-page-editjob.php:795
2406
- #: inc/class-page-editjob.php:817
2407
  #@ backwpup
2408
  msgid "Any (*)"
2409
  msgstr "Alle (*)"
2410
 
2411
- #: inc/class-page-editjob.php:766
2412
  #@ backwpup
2413
  msgid "Hours:"
2414
  msgstr "Stunden:"
2415
 
2416
- #: inc/class-page-editjob.php:779
2417
  #@ backwpup
2418
  msgid "Day of Month:"
2419
  msgstr "Tag des Monats:"
2420
 
2421
- #: inc/class-page-editjob.php:793
2422
  #@ backwpup
2423
  msgid "Month:"
2424
  msgstr "Monat:"
2425
 
2426
- #: inc/class-page-editjob.php:799
2427
  #@ backwpup
2428
  msgid "January"
2429
  msgstr "Januar"
2430
 
2431
- #: inc/class-page-editjob.php:800
2432
  #@ backwpup
2433
  msgid "February"
2434
  msgstr "Februar"
2435
 
2436
- #: inc/class-page-editjob.php:801
2437
  #@ backwpup
2438
  msgid "March"
2439
  msgstr "März"
2440
 
2441
- #: inc/class-page-editjob.php:802
2442
  #@ backwpup
2443
  msgid "April"
2444
  msgstr "April"
2445
 
2446
- #: inc/class-page-editjob.php:803
2447
  #@ backwpup
2448
  msgid "May"
2449
  msgstr "Mai"
2450
 
2451
- #: inc/class-page-editjob.php:804
2452
  #@ backwpup
2453
  msgid "June"
2454
  msgstr "Juni"
2455
 
2456
- #: inc/class-page-editjob.php:805
2457
  #@ backwpup
2458
  msgid "July"
2459
  msgstr "Juli"
2460
 
2461
- #: inc/class-page-editjob.php:806
2462
  #@ backwpup
2463
  msgid "August"
2464
  msgstr "August"
2465
 
2466
- #: inc/class-page-editjob.php:807
2467
  #@ backwpup
2468
  msgid "September"
2469
  msgstr "September"
2470
 
2471
- #: inc/class-page-editjob.php:808
2472
  #@ backwpup
2473
  msgid "October"
2474
  msgstr "Oktober"
2475
 
2476
- #: inc/class-page-editjob.php:809
2477
  #@ backwpup
2478
  msgid "November"
2479
  msgstr "November"
2480
 
2481
- #: inc/class-page-editjob.php:810
2482
  #@ backwpup
2483
  msgid "December"
2484
  msgstr "Dezember"
2485
 
2486
- #: inc/class-page-editjob.php:815
2487
  #@ backwpup
2488
  msgid "Day of Week:"
2489
  msgstr "Wochentag:"
2490
 
2491
- #: inc/class-page-editjob.php:851
2492
  #@ backwpup
2493
  msgid "Save changes"
2494
  msgstr "Änderungen speichern"
@@ -2503,7 +2476,7 @@ msgstr "Keine Aufträge."
2503
  msgid "ID"
2504
  msgstr "ID"
2505
 
2506
- #: inc/class-page-editjob.php:418
2507
  #: inc/class-page-jobs.php:69
2508
  #@ backwpup
2509
  msgid "Job Name"
@@ -2540,87 +2513,88 @@ msgstr "Nicht gebraucht oder eingestellt"
2540
  msgid "Running for: %s seconds"
2541
  msgstr "Läuft seit %s Sekunden"
2542
 
2543
- #: inc/class-page-jobs.php:196
2544
  #, php-format
2545
  #@ backwpup
2546
  msgid "Cron: %s"
2547
  msgstr "Cron: %s"
2548
 
2549
- #: inc/class-page-jobs.php:199
 
2550
  #@ backwpup
2551
  msgid "Not scheduled!"
2552
  msgstr "Nicht geplant!"
2553
 
2554
- #: inc/class-page-jobs.php:203
2555
  #@ backwpup
2556
  msgid "Inactive"
2557
  msgstr "Inaktiv"
2558
 
2559
- #: inc/class-page-jobs.php:222
2560
  #@ backwpup
2561
  msgid "Download last backup"
2562
  msgstr "Letzte Datensicherung herunterladen"
2563
 
2564
- #: inc/class-page-jobs.php:227
2565
  #@ backwpup
2566
  msgid "Log"
2567
  msgstr "Protokoll"
2568
 
2569
- #: inc/class-page-jobs.php:274
2570
  #@ backwpup
2571
  msgid "Copy of"
2572
  msgstr "Kopie von"
2573
 
2574
- #: inc/class-page-jobs.php:366
2575
  #, php-format
2576
  #@ backwpup
2577
  msgid "Job \"%s\" started."
2578
  msgstr "Auftrag \"%s\" wurde gestartet."
2579
 
2580
- #: inc/class-page-jobs.php:394
2581
  #: inc/class-wp-cli.php:47
2582
  #@ backwpup
2583
  msgid "Aborted by user!"
2584
  msgstr "Abgebrochen vom Benutzer!"
2585
 
2586
- #: inc/class-page-jobs.php:423
2587
  #: inc/class-wp-cli.php:77
2588
  #@ backwpup
2589
  msgid "Job will be terminated."
2590
  msgstr "Auftrag wird beendet."
2591
 
2592
- #: inc/class-page-jobs.php:463
2593
  #, php-format
2594
  #@ backwpup
2595
  msgid "%s Jobs"
2596
  msgstr "%s Aufträge"
2597
 
2598
- #: inc/class-page-jobs.php:482
2599
  #@ backwpup
2600
  msgid "Warnings:"
2601
  msgstr "Warnungen:"
2602
 
2603
- #: inc/class-page-jobs.php:483
2604
  #@ backwpup
2605
  msgid "Errors:"
2606
  msgstr "Fehler:"
2607
 
2608
- #: inc/class-page-jobs.php:484
2609
  #@ backwpup
2610
  msgid "Display working log"
2611
  msgstr "Zeige Auftragslog"
2612
 
2613
- #: inc/class-page-jobs.php:486
2614
  #@ backwpup
2615
  msgid "Close working screen"
2616
  msgstr "Arbeitsfläche schließen"
2617
 
2618
- #: inc/class-page-jobs.php:486
2619
  #@ backwpup
2620
  msgid "close"
2621
  msgstr "schließen"
2622
 
2623
- #: inc/class-page-jobs.php:615
2624
  #@ backwpup
2625
  msgid "Job end"
2626
  msgstr "Auftragsende"
@@ -2935,27 +2909,27 @@ msgstr "Webseiten Sprache"
2935
  msgid "MySQL Client encoding"
2936
  msgstr "MySQL Client Encoding"
2937
 
2938
- #: inc/class-page-settings.php:433
2939
  #@ backwpup
2940
  msgid "Blog charset"
2941
  msgstr "Webseiten Charset"
2942
 
2943
- #: inc/class-page-settings.php:434
2944
  #@ backwpup
2945
  msgid "PHP Memory limit"
2946
  msgstr "PHP Memory Limit"
2947
 
2948
- #: inc/class-page-settings.php:437
2949
  #@ backwpup
2950
  msgid "Memory in use"
2951
  msgstr "Speicher in Benutzung"
2952
 
2953
- #: inc/class-page-settings.php:442
2954
  #@ backwpup
2955
  msgid "Disabled PHP Functions:"
2956
  msgstr "Deaktivierte PHP Funktionen:"
2957
 
2958
- #: inc/class-page-settings.php:447
2959
  #@ backwpup
2960
  msgid "Loaded PHP Extensions:"
2961
  msgstr "Geladene PHP Erweiterungen"
@@ -2965,12 +2939,12 @@ msgstr "Geladene PHP Erweiterungen"
2965
  msgid "Job Types"
2966
  msgstr "Auftragstypen"
2967
 
2968
- #: inc/class-page-settings.php:459
2969
  #@ backwpup
2970
  msgid "Save Changes"
2971
  msgstr "Änderungen speichern"
2972
 
2973
- #: inc/class-page-about.php:52
2974
  #, php-format
2975
  #@ backwpup
2976
  msgid "%s Welcome"
@@ -3372,53 +3346,48 @@ msgstr "Benutzer: "
3372
  msgid "Charset:"
3373
  msgstr "Charset: "
3374
 
3375
- #: inc/features/class-jobtype-dbdump-pro.php:145
3376
  #@ backwpup
3377
  msgid "Database:"
3378
  msgstr "Datenbank:"
3379
 
3380
- #: inc/features/class-jobtype-dbdump-pro.php:190
3381
- #@ backwpup
3382
- msgid "Dump type"
3383
- msgstr "Backup-Typ"
3384
-
3385
  #: inc/class-jobtype-dbdump.php:224
3386
- #: inc/features/class-jobtype-dbdump-pro.php:537
3387
- #: inc/features/class-jobtype-dbdump-pro.php:655
3388
  #, php-format
3389
  #@ backwpup
3390
  msgid "Added database dump \"%1$s\" with %2$s to backup file list"
3391
  msgstr "Datenbank-Backup erstellt \"%1$s\" mit %2$s zur Backup-Liste"
3392
 
3393
- #: inc/features/class-jobtype-dbdump-pro.php:640
3394
  #@ backwpup
3395
  msgid "Compressing done."
3396
  msgstr "Komprimierung erledigt."
3397
 
3398
- #: inc/features/class-jobtype-dbdump-pro.php:733
3399
  #@ backwpup
3400
  msgid "No tables for XML dump"
3401
  msgstr "Es gibt keine Tabellen für ein XML-Backup"
3402
 
3403
- #: inc/features/class-jobtype-dbdump-pro.php:770
3404
  #, php-format
3405
  #@ backwpup
3406
  msgid "Dump database create view \"%s\""
3407
  msgstr "Datenbank-Backup erstellt \"%s\""
3408
 
3409
- #: inc/features/class-jobtype-dbdump-pro.php:827
3410
  #, php-format
3411
  #@ backwpup
3412
  msgid "Dump table \"%s\" data"
3413
  msgstr "Backup der Tabellen \"%s\""
3414
 
3415
- #: inc/features/class-jobtype-dbdump-pro.php:896
3416
  #, php-format
3417
  #@ backwpup
3418
  msgid "Added database XML dump \"%1$s\" with %2$s to backup file list"
3419
  msgstr "XML-Backup der Datenbank \"%1$s\" mit %2$s zur Backup-Liste"
3420
 
3421
- #: inc/features/class-jobtype-dbdump-pro.php:899
3422
  #@ backwpup
3423
  msgid "Database XML dump done!"
3424
  msgstr "XML-Backup der Datenbank erstellt."
@@ -3428,21 +3397,21 @@ msgstr "XML-Backup der Datenbank erstellt."
3428
  msgid "Nothing to configure"
3429
  msgstr "Nichts zu konfiguieren"
3430
 
3431
- #: inc/features/class-page-wizard.php:132
3432
- #: inc/features/class-page-wizard.php:320
3433
- #: inc/features/class-page-wizard.php:351
3434
  #@ backwpup
3435
  msgid "Next >"
3436
  msgstr "weiter >"
3437
 
3438
- #: inc/features/class-page-wizard.php:149
3439
- #: inc/features/class-page-wizard.php:316
3440
  #@ backwpup
3441
  msgid "< Previous"
3442
  msgstr "< vorher"
3443
 
3444
- #: inc/features/class-page-wizard.php:97
3445
- #: inc/features/class-page-wizard.php:325
3446
  #@ backwpup
3447
  msgid "Cancel"
3448
  msgstr "Abbrechen"
@@ -3737,12 +3706,12 @@ msgstr "http://inpsyde.com"
3737
  msgid "running"
3738
  msgstr "läuft"
3739
 
3740
- #: inc/class-job.php:182
3741
  #@ backwpup
3742
  msgid "Job Start"
3743
  msgstr "Auftragsstart"
3744
 
3745
- #: inc/class-job.php:313
3746
  #@ backwpup
3747
  msgid "No destination correctly defined for backup! Please correct job settings."
3748
  msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
@@ -3807,12 +3776,12 @@ msgstr "Datein/Verzeichnisse nicht mitsichern."
3807
  msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root."
3808
  msgstr "Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom Root"
3809
 
3810
- #: inc/class-jobtype-wpexp.php:58
3811
  #@ backwpup
3812
  msgid "XML Export file name"
3813
  msgstr "XML Export Datei Name"
3814
 
3815
- #: inc/class-jobtype-wpexp.php:66
3816
  #: inc/class-jobtype-wpplugin.php:53
3817
  #@ backwpup
3818
  msgid "File compression"
@@ -3843,14 +3812,14 @@ msgstr "Sicherheitseinstellungen für BackWPup"
3843
  msgid "Server self connect:"
3844
  msgstr "Verbindung zum Server selbst:"
3845
 
3846
- #: inc/class-page-jobs.php:356
3847
  #: inc/class-page-settings.php:376
3848
  #, php-format
3849
  #@ backwpup
3850
  msgid "The HTTP response test get a error \"%s\""
3851
  msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\""
3852
 
3853
- #: inc/class-page-jobs.php:358
3854
  #: inc/class-page-settings.php:378
3855
  #, php-format
3856
  #@ backwpup
@@ -3903,38 +3872,38 @@ msgstr "Logdateien Verzeichnis %s nicht beschreibbar."
3903
  msgid "Disabled WP Cron"
3904
  msgstr "WP Cron abgeschaltet"
3905
 
3906
- #: inc/class-job.php:286
3907
  #, php-format
3908
  #@ backwpup
3909
  msgid "[INFO] Maximum script execution time is %1$d seconds"
3910
  msgstr "[INFO] Maximale Script ausführungszeit ist %1$d Sekunden"
3911
 
3912
- #: inc/class-page-jobs.php:215
3913
  #, php-format
3914
  #@ backwpup
3915
  msgid "Runtime: %d seconds"
3916
  msgstr "Ausführungszeit: %d Sekunden"
3917
 
3918
- #: inc/class-job.php:616
3919
  #@ backwpup
3920
  msgid "Second process start terminated, because a other job is already running!"
3921
  msgstr "Ein zweiter Prozess start wurde abgebrochen, weil der alte Auftrag noch läuft!"
3922
 
3923
- #: inc/class-job.php:869
3924
  #, php-format
3925
  #@ backwpup
3926
  msgid "Signal %d is sent to script!"
3927
  msgstr "Signal %d wurde zum Script gesendet!"
3928
 
3929
  #: inc/class-page-backups.php:318
3930
- #: inc/class-page-jobs.php:213
3931
  #: inc/class-page-logs.php:181
3932
  #, php-format
3933
  #@ backwpup
3934
  msgid "%1$s at %2$s"
3935
  msgstr "%1$s um %2$s"
3936
 
3937
- #: inc/class-page-jobs.php:196
3938
  #, php-format
3939
  #@ backwpup
3940
  msgid "%1$s at %2$s by WP-Cron"
@@ -3950,12 +3919,12 @@ msgstr "Über"
3950
  msgid "Manual"
3951
  msgstr "Handbuch"
3952
 
3953
- #: inc/class-job.php:284
3954
  #@ backwpup
3955
  msgid "[INFO] BackWPup job started form commandline interface"
3956
  msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
3957
 
3958
- #: inc/class-job.php:536
3959
  #@ default
3960
  msgid "Job Started"
3961
  msgstr ""
@@ -3965,76 +3934,76 @@ msgstr ""
3965
  msgid "DB Backup"
3966
  msgstr "Datenbank-Backup"
3967
 
3968
- #: inc/class-page-about.php:76
3969
  #, php-format
3970
  #@ backwpup
3971
  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."
3972
  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."
3973
 
3974
- #: inc/class-page-about.php:86
3975
  #@ backwpup
3976
  msgid "First set up a job, and plan what you want to save."
3977
  msgstr "Erstellen Sie einen Auftrag, dann planen Sie, was Sie sichern möchten."
3978
 
3979
- #: inc/class-page-about.php:113
3980
  #@ backwpup
3981
  msgid "Save your database"
3982
  msgstr "Sichern Sie Ihre Datenbank"
3983
 
3984
- #: inc/class-page-about.php:116
3985
  #@ backwpup
3986
  msgid "Save your database regularly"
3987
  msgstr "Sichern Sie Ihre Datenbank regelmäßig"
3988
 
3989
- #: inc/class-page-about.php:122
3990
- #: inc/class-page-about.php:126
3991
  #@ backwpup
3992
  msgid "WordPress XML Export"
3993
  msgstr "WordPress-XML-Export"
3994
 
3995
- #: inc/class-page-about.php:123
3996
  #@ backwpup
3997
  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."
3998
  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."
3999
 
4000
- #: inc/class-page-about.php:131
4001
  #@ backwpup
4002
  msgid "Save all data from the webserver"
4003
  msgstr "Sichern Sie alle Daten vom Webserver"
4004
 
4005
- #: inc/class-page-about.php:134
4006
  #@ backwpup
4007
  msgid "Save all files"
4008
  msgstr "Sichern Sie alle Dateien"
4009
 
4010
- #: inc/class-page-about.php:140
4011
- #: inc/class-page-about.php:144
4012
  #@ backwpup
4013
  msgid "Security!"
4014
  msgstr "Sicherheit!"
4015
 
4016
- #: inc/class-page-about.php:141
4017
  #@ backwpup
4018
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
4019
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
4020
 
4021
- #: inc/class-page-about.php:149
4022
- #: inc/class-page-about.php:152
4023
  #@ backwpup
4024
  msgid "Cloud Support"
4025
  msgstr "Cloud-Support"
4026
 
4027
- #: inc/class-page-about.php:153
4028
  #@ backwpup
4029
  msgid "BackWPup supports multiple cloud services in parallel. This ensures the backups are redundant."
4030
  msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
4031
 
4032
- #: inc/class-page-about.php:343
4033
  #@ backwpup
4034
  msgid "Backup now!"
4035
  msgstr "Sichern Sie Ihre Daten jetzt!"
4036
 
4037
- #: inc/class-page-editjob.php:629
4038
  #@ backwpup
4039
  msgid "Start job with CLI"
4040
  msgstr "Auftrag per CLI starten"
@@ -4057,7 +4026,7 @@ msgstr "ID: %1$d Name: %2$s"
4057
  msgid "Warnings: %1$d Errors: %2$d"
4058
  msgstr "Warnungen: %1$d Fehler: %2$d"
4059
 
4060
- #: inc/features/class-jobtype-dbdump-pro.php:199
4061
  #@ backwpup
4062
  msgid "Path to <em>mysqldump</em> file"
4063
  msgstr "Pfad zum <em>mysqldump</em>"
@@ -4091,13 +4060,13 @@ msgstr "Bitte deaktiviere den veralteten <a href=\"%s\">PHP-safe-mode</a>."
4091
  msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
4092
  msgstr "Wir empfehlen, die PHP-Erweiterung FTP zu installieren, um das Speicherziel FTP zu verwenden."
4093
 
4094
- #: inc/class-page-jobs.php:325
4095
  #, php-format
4096
  #@ backwpup
4097
  msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper write permissions."
4098
  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."
4099
 
4100
- #: inc/class-page-jobs.php:334
4101
  #, php-format
4102
  #@ backwpup
4103
  msgid "Logs folder %s does not exist and cannot be created. Please create it and set proper write permissions."
@@ -4151,7 +4120,7 @@ msgstr "FTP-Einstellungen"
4151
  msgid "New Job"
4152
  msgstr "Bitte geben Sie einen Namen ein"
4153
 
4154
- #: inc/class-page-editjob.php:754
4155
  #@ backwpup
4156
  msgid "Minutes:"
4157
  msgstr "Minuten:"
@@ -4192,27 +4161,27 @@ msgstr "cURL-Version"
4192
  msgid "cURL SSL version"
4193
  msgstr "cURL-SSL-Version"
4194
 
4195
- #: inc/class-page-about.php:62
4196
  #@ backwpup
4197
  msgid "S3 Settings"
4198
  msgstr "S3-Einstellungen"
4199
 
4200
- #: inc/class-page-about.php:64
4201
  #@ backwpup
4202
  msgid "All your passwords"
4203
  msgstr "All Ihre Passwörter"
4204
 
4205
- #: inc/class-page-editjob.php:466
4206
  #@ backwpup
4207
  msgid "Synchronize file by file to destination"
4208
  msgstr "Synchronisiere Datei für Datei zum Auftragsziel"
4209
 
4210
- #: inc/class-page-editjob.php:476
4211
  #@ backwpup
4212
  msgid "Archive name"
4213
  msgstr "Archivname"
4214
 
4215
- #: inc/class-page-jobs.php:218
4216
  #@ backwpup
4217
  msgid "not yet"
4218
  msgstr "noch nicht"
@@ -4245,68 +4214,68 @@ msgstr "Bei Schritt: %s"
4245
  msgid "Last message: %s"
4246
  msgstr "Letzte Nachricht: %s"
4247
 
4248
- #: inc/class-admin.php:393
4249
  #, php-format
4250
  #@ backwpup
4251
  msgctxt "link to Inpsyde.com, link text: Inpsyde GmbH"
4252
  msgid "A project of %s"
4253
  msgstr "Ein Projekt der %s"
4254
 
4255
- #: inc/class-admin.php:394
4256
  #, php-format
4257
  #@ backwpup
4258
  msgctxt "developer name, link text: Daniel Hüsken"
4259
  msgid "Developer: %s"
4260
  msgstr "Entwickler: %s"
4261
 
4262
- #: inc/class-page-about.php:74
4263
  #: inc/class-page-backwpup.php:86
4264
  #@ backwpup
4265
  msgid "Here you can schedule backup plans with a wizard."
4266
  msgstr "Hier können Sie Backups mit einem Assistenten planen."
4267
 
4268
- #: inc/class-page-about.php:75
4269
- #: inc/class-page-about.php:85
4270
  #: inc/class-page-backwpup.php:87
4271
  #: inc/class-page-backwpup.php:93
4272
  #@ backwpup
4273
  msgid "The backup files can be used to save your whole installation including <code>/wp-content/</code> and push them to an external Backup Service, if you don’t want to save the backups on the same server. With a single backup file you are able to restore an installation."
4274
  msgstr "Die Backup-Dateien können genutzt werden, um Ihre komplette Installation inklusive des Verzeichnisses <code>/wp-content/</code> zu sichern und an einen externen Backup-Dienst zu senden, wenn Sie Ihre Backups nicht auf dem selben Server speichern möchten. Mit einer einzigen Backup-Datei können Sie Ihre komplette Installation wiederherstellen."
4275
 
4276
- #: inc/class-page-about.php:117
4277
  #, php-format
4278
  #@ backwpup
4279
  msgid "With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should <a href=\"%s\">set up a backup job</a>, so you will never forget it. There is also an option to repair and optimize the database after each backup."
4280
  msgstr "Mit BackWPup können Sie automatische Datenbank-Backups planen. Mit einer einzigen Backup-Datei können Sie Ihre Datenbank wiederherstellen. Sie sollten einen <a href=\\\"%s\\\">Backup-Auftrag einrichten</a>, damit Sie es nie mehr vergessen. Es gibt auch eine Option, um die Datenbank anschließend zu reparieren und zu optimieren."
4281
 
4282
- #: inc/class-page-about.php:135
4283
  #, php-format
4284
  #@ backwpup
4285
  msgid "You can back up all your attachments, also all system files, plugins and themes in a single file. You can <a href=\"%s\">create a job</a> to update a backup copy of your file system only when files are changed."
4286
  msgstr "Sie können all Ihre Anhänge sichern, ebenso alle Systemdateien, Plugins und Themes – in einer einzigen Datei. Sie können einen <a href=\\\"%s\\\">Auftrag erstellen</a>, um die Sicherungskopie nur dann zu aktualisieren, wenn sich tatsächlich eine Datei geändert hat."
4287
 
4288
- #: inc/class-page-editjob.php:622
4289
  #@ backwpup
4290
  msgid "Copy the link for an external start. This option has to be activated to make the link work."
4291
  msgstr "Kopieren Sie den Link für einen externen Auftragsstart. Diese Option muss erst aktiviert werden, damit der Link funktioniert."
4292
 
4293
- #: inc/class-page-editjob.php:632
4294
  #, php-format
4295
  #@ backwpup
4296
  msgid "Use <a href=\"http://wp-cli.org/\">WP-CLI</a> to run jobs from commandline or <a href=\"%s\">get the start script</a>."
4297
  msgstr "Verwenden Sie <a href=\"http://wp-cli.org/\">WP-CLI</a>, um Aufträge per Kommandozeile auszulösen, oder <a href=\"%s\">dieses Start-Script</a>."
4298
 
4299
- #: inc/class-page-editjob.php:503
4300
  #@ backwpup
4301
  msgid "Replacement patterns:"
4302
  msgstr "Ersetzungsmuster:"
4303
 
4304
- #: inc/class-page-settings.php:435
4305
  #@ backwpup
4306
  msgid "WP memory limit"
4307
  msgstr "WordPress-Memory-Limit"
4308
 
4309
- #: inc/class-page-settings.php:436
4310
  #@ backwpup
4311
  msgid "WP Maximum memory limit"
4312
  msgstr "Maximales WordPress-Memory-Limit"
@@ -4350,7 +4319,7 @@ msgstr "Erstellen Sie erst einen Auftrag, und planen Sie, was Sie sichern möcht
4350
  msgid "First set up a job, and plan what you want to save. Please note: the plugin author gives no warranty for your data."
4351
  msgstr "Erstellen Sie erst einen Auftrag, und planen Sie, was Sie sichern möchten. Bitte beachten Sie: Die Pluginautoren übernehmen keine Gewähr für Ihre Daten."
4352
 
4353
- #: inc/class-page-editjob.php:310
4354
  #@ backwpup
4355
  msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
4356
  msgstr "Als <a href=\\\"http://de.wikipedia.org/wiki/Cron\\\">Cron-Job</a> ausführen:"
@@ -4365,14 +4334,14 @@ msgstr "Informationen"
4365
  msgid "Compress log files with GZip."
4366
  msgstr "Komprimiere Logdateien mit Gzip."
4367
 
4368
- #: inc/features/class-page-wizard.php:216
4369
  #, php-format
4370
  #@ backwpup
4371
  msgctxt "Plugin Name"
4372
  msgid "%s Wizards"
4373
  msgstr "%s-Assistenten"
4374
 
4375
- #: inc/features/class-page-wizard.php:255
4376
  #, php-format
4377
  #@ backwpup
4378
  msgctxt "Plugin Name"
@@ -4389,12 +4358,12 @@ msgstr "Benutzen Sie die Links in der Box <b>Erste Schritte</b>, um ein Backup z
4389
  msgid "Settings reset to default"
4390
  msgstr "Die Einstellungen wurden zurückgesetzt."
4391
 
4392
- #: inc/class-page-settings.php:461
4393
  #@ backwpup
4394
  msgid "Reset all settings to default"
4395
  msgstr "Alle Einstellungen zurücksetzen"
4396
 
4397
- #: inc/features/class-page-wizard.php:328
4398
  #@ backwpup
4399
  msgid "Back to overview"
4400
  msgstr "Zurück zur Übersicht"
@@ -4409,7 +4378,7 @@ msgstr "Spezialoption"
4409
  msgid "Include special files"
4410
  msgstr "Spezielle Dateien einschließen"
4411
 
4412
- #: inc/features/class-jobtype-dbdump-pro.php:787
4413
  #, php-format
4414
  #@ backwpup
4415
  msgid "Dump database structure \"%s\""
@@ -4462,20 +4431,20 @@ msgctxt "Text of ZipArchive status Message"
4462
  msgid "ZipArchive returns status: %s"
4463
  msgstr "Das Zip-Archive liefert den Status: %s"
4464
 
4465
- #: inc/class-job.php:1668
4466
  #, php-format
4467
  #@ backwpup
4468
  msgid "%d. Trying to create backup archive &hellip;"
4469
  msgstr "%d. Versuche, Backup zu erstellen …"
4470
 
4471
- #: inc/class-job.php:1675
4472
  #, php-format
4473
  #@ backwpup
4474
  msgctxt "Archive compression method"
4475
  msgid "Compression method is %s"
4476
  msgstr "Komprimierungsmethode ist %s"
4477
 
4478
- #: inc/class-job.php:1724
4479
  #@ backwpup
4480
  msgid "Backup archive created."
4481
  msgstr "Backup wurde erstellt."
@@ -4491,24 +4460,24 @@ msgstr "Konnte Backup nicht öffnen"
4491
  msgid "Could not find content for this page. Please try again later."
4492
  msgstr "Konnte den Inhalt der Seite nicht finden. Bitte versuchen Sie es später."
4493
 
4494
- #: inc/features/class-jobtype-dbdump-pro.php:193
4495
  #@ backwpup
4496
  msgid "SQL File"
4497
  msgstr "SQL-Datei"
4498
 
4499
- #: inc/features/class-jobtype-dbdump-pro.php:194
4500
  #@ backwpup
4501
  msgid "XML File (phpMyAdmin schema)"
4502
  msgstr "XML-Datei (phpMyAdmin-Schema9"
4503
 
4504
- #: inc/features/class-jobtype-dbdump-pro.php:627
4505
  #, php-format
4506
  #@ backwpup
4507
  msgctxt "Executed shell_exec() command"
4508
  msgid "CLI Exec: %s"
4509
  msgstr "CLI-Exec: %s"
4510
 
4511
- #: inc/features/class-jobtype-dbdump-pro.php:630
4512
  #, php-format
4513
  #@ backwpup
4514
  msgctxt "Output of a shell_exec()"
@@ -4588,19 +4557,19 @@ msgctxt "%s = plugin name"
4588
  msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated."
4589
  msgstr "Der Lizenzschlüssel für das Plugin %s ist ungültig. Die automatische Aktualisierung wurde abgeschaltet."
4590
 
4591
- #: inc/class-job.php:272
4592
  #, php-format
4593
  #@ backwpup
4594
  msgctxt "Plugin name; Plugin Version; WordPress Version"
4595
  msgid "[INFO] %1$s version %2$s; WordPress version %3$s; A project of Inpsyde GmbH developed by Daniel Hüsken"
4596
  msgstr "[INFO] %1$s Version %2$s; WordPress Version %3$s; Ein Projekt der Inpsyde GmbH, entwickelt von Daniel Hüsken"
4597
 
4598
- #: inc/class-page-about.php:103
4599
  #@ backwpup
4600
  msgid "Please activate your license"
4601
  msgstr "Bitte aktivieren Sie Ihre Lizenz."
4602
 
4603
- #: inc/class-page-about.php:104
4604
  #@ backwpup
4605
  msgid "Please go to your plugin page and active the license to have the autoupdates enabled."
4606
  msgstr "Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um automatische Aktualisierungen zu aktivieren."
@@ -4622,203 +4591,203 @@ msgstr "Support"
4622
  msgid "Plugin on wordpress.org"
4623
  msgstr "Plugin auf wordpress.org"
4624
 
4625
- #: inc/class-job.php:1614
4626
  #, php-format
4627
  #@ backwpup
4628
  msgctxt "Folder name"
4629
  msgid "Folder %s not exists"
4630
  msgstr "Verzeichnis %s existiert nicht"
4631
 
4632
- #: inc/class-job.php:1618
4633
  #, php-format
4634
  #@ backwpup
4635
  msgctxt "Folder name"
4636
  msgid "Folder %s not readable"
4637
  msgstr "Verzeichnis %s ist nicht lesbar"
4638
 
4639
- #: inc/class-page-jobs.php:322
4640
  #, php-format
4641
  #@ backwpup
4642
  msgid "Temp folder %s not read or writable. Please set proper write permissions."
4643
  msgstr "Das Temporäre Verzeichnis %s ist nicht lesbar oder schreibbar. Bitte setze Schreibberechtigung."
4644
 
4645
- #: inc/class-page-jobs.php:331
4646
  #, php-format
4647
  #@ backwpup
4648
  msgid "Logs folder %s is not read or writable. Please set proper write permissions."
4649
  msgstr "Das Logdateien Verzeichnis %s ist nicht lesbar oder schreibbar. Bitte setze Schreibberechtigung."
4650
 
4651
- #: inc/class-page-about.php:161
4652
  #@ backwpup
4653
  msgid "Features / differences between Free and Pro"
4654
  msgstr "Features / Unterschiede zwischen Free und Pro"
4655
 
4656
- #: inc/class-page-about.php:164
4657
  #@ backwpup
4658
  msgid "Features"
4659
  msgstr "Features"
4660
 
4661
- #: inc/class-page-about.php:165
4662
  #@ backwpup
4663
  msgid "FREE"
4664
  msgstr "FREE"
4665
 
4666
- #: inc/class-page-about.php:166
4667
  #@ backwpup
4668
  msgid "PRO"
4669
  msgstr "PRO"
4670
 
4671
- #: inc/class-page-about.php:169
4672
  #@ backwpup
4673
  msgid "Complete database backup"
4674
  msgstr "Vollständige Datenbanksicherung"
4675
 
4676
- #: inc/class-page-about.php:174
4677
  #@ backwpup
4678
  msgid "Complete file backup"
4679
  msgstr "Vollständige Dateisicherung"
4680
 
4681
- #: inc/class-page-about.php:179
4682
  #@ backwpup
4683
  msgid "Database check"
4684
  msgstr "Datenbanküberprüfung"
4685
 
4686
- #: inc/class-page-about.php:184
4687
  #@ backwpup
4688
  msgid "Data compression"
4689
  msgstr "Datenbankoptimierung"
4690
 
4691
- #: inc/class-page-about.php:194
4692
  #@ backwpup
4693
  msgid "List of installed plugins"
4694
  msgstr "Liste installierter Plugins"
4695
 
4696
- #: inc/class-page-about.php:199
4697
  #@ backwpup
4698
  msgid "Backup archives management"
4699
  msgstr "Verwaltung der Backup-Archive"
4700
 
4701
- #: inc/class-page-about.php:204
4702
  #@ backwpup
4703
  msgid "Log file management"
4704
  msgstr "Verwaltung der Log-Dateien"
4705
 
4706
- #: inc/class-page-about.php:209
4707
  #@ backwpup
4708
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
4709
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend, WP-CLI"
4710
 
4711
- #: inc/class-page-about.php:214
4712
  #@ backwpup
4713
  msgid "Log report via email"
4714
  msgstr "Log-Report via E-Mail"
4715
 
4716
- #: inc/class-page-about.php:219
4717
  #@ backwpup
4718
  msgid "Backup to Microsoft Azure"
4719
  msgstr "Datensicherung zu Microsoft Azure"
4720
 
4721
- #: inc/class-page-about.php:224
4722
  #@ backwpup
4723
  msgid "Backup as email"
4724
  msgstr "Datensicherung via E-Mail"
4725
 
4726
- #: inc/class-page-about.php:229
4727
  #@ backwpup
4728
  msgid "Backup to S3 services <small>(Amazon, Google Storage, Hosteurope and more)</small>"
4729
  msgstr "Datensicherung zu S3-Dienstleistern <small>(Amazon, Google Storage, Hosteurope, usw)</small>"
4730
 
4731
- #: inc/class-page-about.php:244
4732
  #@ backwpup
4733
  msgid "Backup to FTP server"
4734
  msgstr "Datensicherung auf FTP-Server"
4735
 
4736
- #: inc/class-page-about.php:249
4737
  #@ backwpup
4738
  msgid "Backup to your web space"
4739
  msgstr "Datensicherung auf eigenem Webspace"
4740
 
4741
- #: inc/class-page-about.php:259
4742
  #@ backwpup
4743
  msgid "Custom API keys for DropBox and SugarSync"
4744
  msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen"
4745
 
4746
- #: inc/class-page-about.php:264
4747
  #@ backwpup
4748
  msgid "XML database backup as PHPMyAdmin schema"
4749
  msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema"
4750
 
4751
- #: inc/class-page-about.php:269
4752
  #@ backwpup
4753
  msgid "Database backup as mysqldump per command line"
4754
  msgstr "Datenbanksicherung mit System-Kommando mysqldump"
4755
 
4756
- #: inc/class-page-about.php:274
4757
  #@ backwpup
4758
  msgid "Database backup for additional MySQL databases"
4759
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
4760
 
4761
- #: inc/class-page-about.php:279
4762
  #@ backwpup
4763
  msgid "Import and export job settings as XML"
4764
  msgstr "Auftragseinstellungen als XML ex- und importieren"
4765
 
4766
- #: inc/class-page-about.php:284
4767
  #@ backwpup
4768
  msgid "Wizard for system tests"
4769
  msgstr "Assistent zur Ausführung eines Systemtests"
4770
 
4771
- #: inc/class-page-about.php:289
4772
  #@ backwpup
4773
  msgid "Wizard for scheduled backup jobs"
4774
  msgstr "Assistent zur Einrichtung von Sicherungsaufträgen"
4775
 
4776
- #: inc/class-page-about.php:294
4777
  #@ backwpup
4778
  msgid "Wizard to import settings and backup jobs"
4779
  msgstr "Assistent zum Importieren von Einstellungen und Aufträgen"
4780
 
4781
- #: inc/class-page-about.php:299
4782
  #@ backwpup
4783
  msgid "Differential backup of changed directories to Dropbox"
4784
  msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox"
4785
 
4786
- #: inc/class-page-about.php:304
4787
  #@ backwpup
4788
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
4789
  msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
4790
 
4791
- #: inc/class-page-about.php:309
4792
  #@ backwpup
4793
  msgid "Differential backup of changed directories to S3"
4794
  msgstr "Sicherung geänderter Verzeichnisse nach S3"
4795
 
4796
- #: inc/class-page-about.php:314
4797
  #@ backwpup
4798
  msgid "Differential backup of changed directories to MS Azure"
4799
  msgstr "Sicherung geänderter Verzeichnisse nach MS Azure"
4800
 
4801
- #: inc/class-page-about.php:319
4802
  #@ backwpup
4803
  msgid "<strong>Premium support</strong>"
4804
  msgstr "<strong>Premium-Support</strong>"
4805
 
4806
- #: inc/class-page-about.php:324
4807
  #@ backwpup
4808
  msgid "<strong>Dynamically loaded documentation</strong>"
4809
  msgstr "<strong>Integration einer dynamischen Dokumentation</strong>"
4810
 
4811
- #: inc/class-page-about.php:329
4812
  #@ backwpup
4813
  msgid "<strong>Automatic update from MarketPress</strong>"
4814
  msgstr "<strong>Automatische Aktualisierung durch MarketPress</strong>"
4815
 
4816
- #: inc/class-page-about.php:336
4817
  #@ backwpup
4818
  msgid "http://marketpress.com/product/backwpup-pro/"
4819
  msgstr "http://marketpress.de/product/backwpup-pro/"
4820
 
4821
- #: inc/class-page-about.php:336
4822
  #@ backwpup
4823
  msgid "GET PRO"
4824
  msgstr "GET PRO"
@@ -4871,8 +4840,8 @@ msgstr "Verzeichnis Name \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$
4871
  msgid "Folder path \"%1$s\" too long to be saved correctly in %2$s archive!"
4872
  msgstr "Verzeichnis Pfad \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s Archiv"
4873
 
4874
- #: inc/class-job.php:457
4875
- #: inc/class-job.php:458
4876
  #@ backwpup
4877
  msgid "Backups folder does not exist or is not writable for BackWPup"
4878
  msgstr "Backups Verzeichnis existiert nicht oder ist nicht beschreibbar von BackWPup"
@@ -4882,19 +4851,19 @@ msgstr "Backups Verzeichnis existiert nicht oder ist nicht beschreibbar von Back
4882
  msgid "No MySQLi extension found. Please install it."
4883
  msgstr "Keine MySQLi Erweiterung gefunden. Bitte installieren Sie diese"
4884
 
4885
- #: inc/class-page-jobs.php:342
4886
  #, php-format
4887
  #@ backwpup
4888
  msgid "Backups folder %s is not read or writable. Please set proper write permissions."
4889
  msgstr "Backups Verzeichnis nicht lesbar oder nicht beschreibbar. Bitte die richtigen Berechtigungen setzen."
4890
 
4891
- #: inc/class-page-jobs.php:345
4892
  #, php-format
4893
  #@ backwpup
4894
  msgid "Backups folder %s does not exist and cannot be created. Please create it and set proper write permissions."
4895
  msgstr "Backups Verzeichnis %s existiert nicht und kann nicht angelegt werden. Bitte überprüfen Sie die Berechtigungen."
4896
 
4897
- #: inc/class-page-jobs.php:484
4898
  #@ backwpup
4899
  msgid "Working job log"
4900
  msgstr "Auftrags lLog"
@@ -4904,19 +4873,13 @@ msgstr "Auftrags lLog"
4904
  msgid "The file name of an archive cannot be empty."
4905
  msgstr "Der Dateiname eines Archivs kann nicht leer sein."
4906
 
4907
- #. translators: plugin header field 'Version'
4908
- #: backwpup.php:0
4909
- #@ backwpup
4910
- msgid "3.0.4"
4911
- msgstr "3.0.4"
4912
-
4913
- #: inc/class-admin.php:281
4914
- #: inc/class-admin.php:287
4915
  #@ backwpup
4916
  msgid "Cheating, huh?"
4917
  msgstr "Mogeln, wie?"
4918
 
4919
- #: inc/class-admin.php:427
4920
  #, php-format
4921
  #@ backwpup
4922
  msgid "You have activated or updated BackWPup. Please check <a href=\"%s\">this page</a>."
@@ -4939,59 +4902,53 @@ msgstr "Ordner %s für Archiv nicht gefunden"
4939
  msgid "Aborted, because no progress for 2 hours!"
4940
  msgstr "Abgebrochen, da seit 2 Stunden kein Fortschritt!"
4941
 
4942
- #: inc/class-destination-dropbox.php:66
4943
- #@ backwpup
4944
- msgid "Wrong token for Dropbox authentication!"
4945
- msgstr "Falschen Token für die Dropbox-Authentifizierung erhalten"
4946
-
4947
- #: inc/class-destination-dropbox.php:70
4948
  #: inc/features/class-destination-dropbox-pro.php:40
4949
  #@ backwpup
4950
  msgid "Dropbox authentication not approved!"
4951
  msgstr "Dropbox-Authentifizierung nicht angenommen!"
4952
 
4953
- #: inc/class-destination-dropbox.php:240
4954
  #, php-format
4955
  #@ backwpup
4956
  msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
4957
  msgstr "%d. Versuche, das Backup zur Dropbox zu senden&#160;&hellip;"
4958
 
4959
- #: inc/class-destination-dropbox.php:248
4960
  #: inc/features/class-destination-dropbox-pro.php:135
4961
  #, php-format
4962
  #@ backwpup
4963
  msgid "Authenticated with Dropbox of user %s"
4964
  msgstr "Authentifiziert mit Dropbox von Benutzer %s"
4965
 
4966
- #: inc/class-destination-dropbox.php:253
4967
  #@ backwpup
4968
  msgid "Your Dropbox appears to be full."
4969
  msgstr "Deine Dropbox scheint voll zu sein."
4970
 
4971
- #: inc/class-destination-dropbox.php:258
4972
  #: inc/features/class-destination-dropbox-pro.php:139
4973
  #, php-format
4974
  #@ backwpup
4975
  msgid "%s available on your Dropbox"
4976
  msgstr "%s verfügbar in deiner Dropbox"
4977
 
4978
- #: inc/class-destination-dropbox.php:262
4979
  #@ backwpup
4980
  msgid "Uploading to Dropbox&#160;&hellip;"
4981
  msgstr "Hochladen zur Dropbox hat begonnen&#160;&hellip;"
4982
 
4983
- #: inc/class-destination-dropbox.php:272
4984
  #@ backwpup
4985
  msgid "Uploaded file size and local file size don't match."
4986
  msgstr "Größe der lokalen und der hochgeladenen Datei ist nicht identisch."
4987
 
4988
- #: inc/class-destination-dropbox.php:321
4989
  #, php-format
4990
  #@ backwpup
4991
  msgid "Error while deleting file from Dropbox: %s"
4992
  msgstr "Fehler beim Löschen der Datei aus der Dropbox: %s"
4993
 
4994
- #: inc/class-destination-dropbox.php:324
4995
  #, php-format
4996
  #@ backwpup
4997
  msgid "One file deleted from Dropbox"
@@ -5090,19 +5047,19 @@ msgstr "Das Datensicherungsarchiv ist zu groß zum Senden via E-Mail!"
5090
  msgid "Sending e-mail to %s&hellip;"
5091
  msgstr "Sende E-Mail an %s&hellip;"
5092
 
5093
- #: inc/class-destination-email.php:333
5094
- #: inc/class-destination-email.php:454
5095
  #@ backwpup
5096
  msgid "Error while sending e-mail!"
5097
  msgstr "Fehler beim Senden der E-Mail"
5098
 
5099
- #: inc/class-destination-email.php:339
5100
- #: inc/class-destination-email.php:456
5101
  #@ backwpup
5102
  msgid "E-Mail sent."
5103
  msgstr "E-Mail gesendet."
5104
 
5105
- #: inc/class-destination-email.php:441
5106
  #@ backwpup
5107
  msgid "If this message reaches your inbox, sending backup archives via e-mail should work for you."
5108
  msgstr "Wenn dich diese Nachricht erreicht, funktioniert das Senden der Sicherungsarchive per E-Mail."
@@ -5173,7 +5130,7 @@ msgstr "Kann nicht mit explizit SSL-FTP zum Server verbinden: %s"
5173
  #: inc/class-destination-ftp.php:248
5174
  #: inc/class-destination-ftp.php:256
5175
  #: inc/class-destination-ftp.php:267
5176
- #: inc/class-destination-ftp.php:303
5177
  #, php-format
5178
  #@ backwpup
5179
  msgid "FTP client command: %s"
@@ -5183,21 +5140,21 @@ msgstr "FTP-Client-Befehl: %s"
5183
  #: inc/class-destination-ftp.php:258
5184
  #: inc/class-destination-ftp.php:270
5185
  #: inc/class-destination-ftp.php:272
5186
- #: inc/class-destination-ftp.php:306
5187
- #: inc/class-destination-ftp.php:308
5188
- #: inc/class-destination-ftp.php:312
5189
  #: inc/class-destination-ftp.php:314
 
 
 
5190
  #, php-format
5191
  #@ backwpup
5192
  msgid "FTP server reply: %s"
5193
  msgstr "Antwort des FTP-Servers: %s"
5194
 
5195
- #: inc/class-destination-ftp.php:318
5196
  #@ backwpup
5197
  msgid "Starting upload to FTP &#160;&hellip;"
5198
  msgstr "Hochladen ins FTP-Verzeichnis hat begonnen&#160;&hellip;"
5199
 
5200
- #: inc/class-destination-ftp.php:383
5201
  #, php-format
5202
  #@ backwpup
5203
  msgid "One file deleted on FTP server"
@@ -5304,7 +5261,7 @@ msgctxt "Plugin name and link; Plugin Version"
5304
  msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Developed by <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
5305
  msgstr "%1$s version %2$s. Ein Projekt der <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Entwickler: <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
5306
 
5307
- #: inc/class-job.php:873
5308
  #@ backwpup
5309
  msgid "Script stopped! Will start again."
5310
  msgstr "Script angehalten! Wird neu gestartet."
@@ -5332,7 +5289,7 @@ msgid "Creates an .sql database dump file"
5332
  msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)"
5333
 
5334
  #: inc/class-jobtype-dbdump.php:163
5335
- #: inc/features/class-jobtype-dbdump-pro.php:465
5336
  #, php-format
5337
  #@ backwpup
5338
  msgid "%d. Try to dump database&#160;&hellip;"
@@ -5386,12 +5343,12 @@ msgstr "Sofern das WordPress-Wurzelverzeichnis nicht sowieso im Backup inkludier
5386
  msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
5387
  msgstr "%d. Versuche, eine Liste der Ordner für das Backup zu erstellen&#160;&hellip;"
5388
 
5389
- #: inc/class-jobtype-wpexp.php:45
5390
  #@ backwpup
5391
  msgid "Items to export"
5392
  msgstr "Objekte zum Exportieren"
5393
 
5394
- #: inc/class-jobtype-wpexp.php:104
5395
  #, php-format
5396
  #@ backwpup
5397
  msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
@@ -5409,7 +5366,7 @@ msgid "All plugin information:"
5409
  msgstr "Alle Plugin-Informationen"
5410
 
5411
  #: inc/class-mysqldump.php:90
5412
- #: inc/features/class-jobtype-dbdump-pro.php:699
5413
  #, php-format
5414
  #@ backwpup
5415
  msgid "Cannot connect to MySQL database %1$d: %2$s"
@@ -5420,28 +5377,28 @@ msgstr "Kann keine Verbindung zur Datenbank %1$d herstellen: %2$s"
5420
  msgid "Error while writing file!"
5421
  msgstr "Fehler beim Schreiben!"
5422
 
5423
- #: inc/class-page-about.php:58
5424
  #@ backwpup
5425
  msgid "Heads up! You have updated from version 2.x"
5426
  msgstr "Achtung! Sie haben von Version 2.x aktualisiert"
5427
 
5428
- #: inc/class-page-about.php:59
5429
  #, php-format
5430
  #@ backwpup
5431
  msgid "Please <a href=\"%s\">check your settings</a> after updating from version 2.x:"
5432
  msgstr "Bitte <a href=\"%s\">prüfen Sie Ihre Einstellungen</a> nach dem Update von Version 2.x."
5433
 
5434
- #: inc/class-page-about.php:60
5435
  #@ backwpup
5436
  msgid "Dropbox authentication must be re-entered"
5437
  msgstr "Die Drohbox-Authentifizierung muss wiederholt werden."
5438
 
5439
- #: inc/class-page-about.php:61
5440
  #@ backwpup
5441
  msgid "SugarSync authentication must be re-entered"
5442
  msgstr "Die SugarSync-Authentifizierung muss wiederholt werden"
5443
 
5444
- #: inc/class-page-about.php:63
5445
  #@ backwpup
5446
  msgid "Google Storage is now a part of S3 service settings"
5447
  msgstr "Google Storage ist jetzt Teil der S3-Einstellungen"
@@ -5463,7 +5420,7 @@ msgstr ""
5463
  #: inc/class-page-backups.php:340
5464
  #: inc/class-page-backups.php:352
5465
  #: inc/class-page-editjob.php:41
5466
- #: inc/class-page-jobs.php:315
5467
  #@ backwpup
5468
  msgid "Sorry, you don't have permissions to do that."
5469
  msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion."
@@ -5483,214 +5440,214 @@ msgstr "Generieren Sie ein Datenbank-Backup der WordPress-Tabellen und laden Sie
5483
  msgid "OK"
5484
  msgstr "OK"
5485
 
5486
- #: inc/class-page-editjob.php:422
5487
  #@ backwpup
5488
  msgid "Please name this job."
5489
  msgstr "Bitte benennen Sie diesen Auftrag."
5490
 
5491
- #: inc/class-page-editjob.php:430
5492
  #@ backwpup
5493
  msgid "Job Tasks"
5494
  msgstr "Auftragsdetails"
5495
 
5496
- #: inc/class-page-editjob.php:434
5497
  #: inc/features/class-wizard-job.php:225
5498
  #@ backwpup
5499
  msgid "This job is a&#160;&hellip;"
5500
  msgstr "Dieser Auftrag ist ein&#160;&hellip;"
5501
 
5502
- #: inc/class-page-editjob.php:453
5503
  #@ backwpup
5504
  msgid "Backup File Creation"
5505
  msgstr "Erstellen der Backup-Datei"
5506
 
5507
- #: inc/class-page-editjob.php:483
5508
  #, php-format
5509
  #@ backwpup
5510
  msgid "%d = Two digit day of the month, with leading zeros"
5511
  msgstr "%d = Zweistelliger Tag des Monats, mit führenden Nullen"
5512
 
5513
- #: inc/class-page-editjob.php:484
5514
  #, php-format
5515
  #@ backwpup
5516
  msgid "%j = Day of the month, without leading zeros"
5517
  msgstr "%j = Tag des Monats, ohne führende Nullen"
5518
 
5519
- #: inc/class-page-editjob.php:485
5520
  #, php-format
5521
  #@ backwpup
5522
  msgid "%m = Day of the month, with leading zeros"
5523
  msgstr "%m = Tag des Monats, mit führenden Nullen"
5524
 
5525
- #: inc/class-page-editjob.php:486
5526
  #, php-format
5527
  #@ backwpup
5528
  msgid "%n = Representation of the month (without leading zeros)"
5529
  msgstr "%n = Monat als Zahl (ohne führende Nullen)"
5530
 
5531
- #: inc/class-page-editjob.php:487
5532
  #, php-format
5533
  #@ backwpup
5534
  msgid "%Y = Four digit representation for the year"
5535
  msgstr "%Y = Vierstellige Jahreszahl"
5536
 
5537
- #: inc/class-page-editjob.php:488
5538
  #, php-format
5539
  #@ backwpup
5540
  msgid "%y = Two digit representation of the year"
5541
  msgstr "%y = Zweistellige Jahreszahl"
5542
 
5543
- #: inc/class-page-editjob.php:489
5544
  #, php-format
5545
  #@ backwpup
5546
  msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)"
5547
  msgstr "%a = Kleingeschriebenes ante meridiem (am) und post meridiem (pm)"
5548
 
5549
- #: inc/class-page-editjob.php:490
5550
  #, php-format
5551
  #@ backwpup
5552
  msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)"
5553
  msgstr "%A = Großgeschriebenes ante meridiem (AM) and post meridiem (PM)"
5554
 
5555
- #: inc/class-page-editjob.php:491
5556
  #, php-format
5557
  #@ backwpup
5558
  msgid "%B = Swatch Internet Time"
5559
  msgstr "%B = Swatch Internet Time"
5560
 
5561
- #: inc/class-page-editjob.php:492
5562
  #, php-format
5563
  #@ backwpup
5564
  msgid "%g = Hour in 12-hour format, without leading zeros"
5565
  msgstr "%g = Stunde im Zwölfstunden-Format, ohne führende Nullen"
5566
 
5567
- #: inc/class-page-editjob.php:493
5568
  #, php-format
5569
  #@ backwpup
5570
  msgid "%G = Hour in 24-hour format, without leading zeros"
5571
  msgstr "%G = Stunde im 24-Stunden-Format, ohne führende Nullen"
5572
 
5573
- #: inc/class-page-editjob.php:494
5574
  #, php-format
5575
  #@ backwpup
5576
  msgid "%h = Hour in 12-hour format, with leading zeros"
5577
  msgstr "%h = Stunde im Zwölfstunden-Format, mit führenden Nullen"
5578
 
5579
- #: inc/class-page-editjob.php:495
5580
  #, php-format
5581
  #@ backwpup
5582
  msgid "%H = Hour in 24-hour format, with leading zeros"
5583
  msgstr "%H = Stunde im 24-Stunden-Format, mit führenden Nullen"
5584
 
5585
- #: inc/class-page-editjob.php:496
5586
  #, php-format
5587
  #@ backwpup
5588
  msgid "%i = Two digit representation of the minute"
5589
  msgstr "%i = Zweistellige Minute"
5590
 
5591
- #: inc/class-page-editjob.php:497
5592
  #, php-format
5593
  #@ backwpup
5594
  msgid "%s = Two digit representation of the second"
5595
  msgstr "%s = Zweistellige Sekunde"
5596
 
5597
- #: inc/class-page-editjob.php:498
5598
  #, php-format
5599
  #@ backwpup
5600
  msgid "%u = Two digit representation of the microsecond"
5601
  msgstr "%u = Zweistellige Mikrosekunde"
5602
 
5603
- #: inc/class-page-editjob.php:499
5604
  #, php-format
5605
  #@ backwpup
5606
  msgid "%U = UNIX timestamp (seconds since January 1 1970 00:00:00 GMT)"
5607
  msgstr "%U = UNIX-Zeitstempel (Sekunden seit dem 1. Januar 1970, 00:00:00 GMT)"
5608
 
5609
- #: inc/class-page-editjob.php:522
5610
  #@ backwpup
5611
  msgid "PHP Zip functions will be used if available (needs less memory). Otherwise the PCLZip class will be used."
5612
  msgstr "PHP-Zip-Funktionen werden verwendet, sofern verfügbar (schneller). Ansonsten wird die Klasse PCLZip verwendet."
5613
 
5614
- #: inc/class-page-editjob.php:524
5615
- #: inc/class-page-editjob.php:529
5616
- #: inc/class-page-editjob.php:533
5617
  #@ backwpup
5618
  msgid "Disabled due to missing PHP function."
5619
  msgstr "Deaktiviert wegen nicht verfügbarer PHP-Funktion."
5620
 
5621
- #: inc/class-page-editjob.php:525
5622
  #@ backwpup
5623
  msgid "A tarballed, not compressed archive (fast and less memory)"
5624
  msgstr "Ein TAR-Archiv, nicht komprimiert (schnell und speicherschonend)"
5625
 
5626
- #: inc/class-page-editjob.php:527
5627
  #@ backwpup
5628
  msgid "A tarballed, GZipped archive (fast and less memory)"
5629
  msgstr "Ein TAR-GZ-Archiv (schnell und speicherschonend)"
5630
 
5631
- #: inc/class-page-editjob.php:531
5632
  #@ backwpup
5633
  msgid "A tarballed, BZipped archive (fast and less memory)"
5634
  msgstr "Ein TAR-BZ-Archiv (schnell und speicherschonend)"
5635
 
5636
- #: inc/class-page-editjob.php:539
5637
  #@ backwpup
5638
  msgid "Job Destination"
5639
  msgstr "Zielordner des Auftrags"
5640
 
5641
- #: inc/class-page-editjob.php:543
5642
- #: inc/class-page-editjob.php:546
5643
  #@ backwpup
5644
  msgid "Where should your backup file be stored?"
5645
  msgstr "Wo soll die Backup-Datei gespeichert werden?"
5646
 
5647
- #: inc/class-page-editjob.php:562
5648
  #@ backwpup
5649
  msgid "Log Files"
5650
  msgstr "Protokoll-Dateien"
5651
 
5652
- #: inc/class-page-editjob.php:566
5653
  #@ backwpup
5654
  msgid "Send log to e-mail address"
5655
  msgstr "Protokoll-Datei an E-Mail-Adresse senden"
5656
 
5657
- #: inc/class-page-editjob.php:570
5658
  #@ backwpup
5659
  msgid "Leave empty to not have log sent."
5660
  msgstr "Leer lassen, um kein Protokoll zu senden."
5661
 
5662
- #: inc/class-page-editjob.php:574
5663
  #@ backwpup
5664
  msgid "E-Mail FROM field"
5665
  msgstr "VON-Feld der E-Mail"
5666
 
5667
- #: inc/class-page-editjob.php:582
5668
  #@ backwpup
5669
  msgid "Errors only"
5670
  msgstr "Nur Fehler"
5671
 
5672
- #: inc/class-page-editjob.php:587
5673
  #@ backwpup
5674
  msgid "Send e-mail with log only when errors occur during job execution."
5675
  msgstr "Sende eine E-Mail mit Protokoll nur, wenn während des Auftrags ein Fehler aufgetreten ist."
5676
 
5677
- #: inc/class-page-editjob.php:598
5678
  #@ backwpup
5679
  msgid "Job Schedule"
5680
  msgstr "Auftragsplanung"
5681
 
5682
- #: inc/class-page-editjob.php:633
5683
  #@ backwpup
5684
  msgid "Generate a server script file to let the job start with the server’s cron on command line interface. Alternatively use WP-CLI commands."
5685
  msgstr "Erzeugen Sie ein Serverscript, um einen Auftrag per Kommandoziele auszulösen, oder benutzen Sie WP-CLI."
5686
 
5687
- #: inc/class-page-jobs.php:481
5688
  #, php-format
5689
  #@ backwpup
5690
  msgid "Job currently running: %s"
5691
  msgstr "Aktueller Auftrag wird bearbeitet: %s"
5692
 
5693
- #: inc/class-page-jobs.php:616
5694
  #, php-format
5695
  #@ backwpup
5696
  msgid "Job completed in %s seconds."
@@ -5864,23 +5821,23 @@ msgstr "oder setze eine S3-Server-URL:"
5864
  msgid "Activate maintenance mode on table check"
5865
  msgstr "Aktiviere den Wartungsmodus bei der Tabellenprüfung"
5866
 
5867
- #: inc/features/class-jobtype-dbdump-pro.php:204
5868
  #@ backwpup
5869
  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"
5870
  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."
5871
 
5872
- #: inc/features/class-jobtype-dbdump-pro.php:554
5873
  #, php-format
5874
  #@ backwpup
5875
  msgid "%d. Try to dump MySQL system&#160;&hellip;"
5876
  msgstr "%d. Erstelle MySQL-System-Backup&#160;&hellip;"
5877
 
5878
- #: inc/features/class-jobtype-dbdump-pro.php:634
5879
  #@ backwpup
5880
  msgid "Compressing file&#160;&hellip;"
5881
  msgstr "Datei wird komprimiert&#160;&hellip;"
5882
 
5883
- #: inc/features/class-jobtype-dbdump-pro.php:676
5884
  #, php-format
5885
  #@ backwpup
5886
  msgid "%d. Try to dump database XML&#160;&hellip;"
@@ -6100,8 +6057,41 @@ msgstr "Methode für ZIP-Erstellung"
6100
  msgid "Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.<br />ZipArchive = Uses less memory, but many open files at a time.<br />PclZip = Uses more memory, but only 2 open files at a time."
6101
  msgstr "Auto = Nutzt die PHP-Klasse ZipArchive falls verfügbar; andernfalls wird PclZip genutzt.<br />ZipArchive = Benötigt weniger Memory, aber viele offene Dateien gleichzeitig.<br />PclZip = Benötigt mehr Memory, aber nur 2 zur gleichen Zeit offene Dateien."
6102
 
6103
- #: inc/class-page-editjob.php:578
6104
  #@ backwpup
6105
  msgid "E-Mail \"From\" field (Name &lt;&#160;you@your-email-address.tld&#160;&gt;)"
6106
  msgstr "\"VON\"-Feld der E-Mail (Name &lt;&#160;email@adresse.tld&#160;&gt;)"
6107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: BackWPup Pro v3.0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-02-06 17:42+0100\n"
6
+ "PO-Revision-Date: 2013-04-16 01:33:02-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"
72
  msgid "Settings"
73
  msgstr "Einstellungen"
74
 
75
+ #: inc/class-admin.php:329
76
  #@ backwpup
77
  msgid "Jobs overview"
78
  msgstr "Auftragsübersicht"
79
 
80
+ #: inc/class-admin.php:329
81
  #: inc/class-page-jobs.php:134
82
  #@ backwpup
83
  msgid "Run now"
84
  msgstr "Jetzt starten"
85
 
86
+ #: inc/class-admin.php:422
87
  #, php-format
88
  #@ backwpup
89
  msgid "version %s"
100
  msgstr "Abbrechen!"
101
 
102
  #: inc/class-adminbar.php:91
103
+ #: inc/class-page-jobs.php:460
104
  #@ backwpupadminbar
105
  #@ backwpup
106
  msgid "Add New"
119
  msgstr "Jetzt starten"
120
 
121
  #: inc/class-cron.php:53
122
+ #: inc/class-job.php:1000
123
+ #: inc/class-page-jobs.php:391
124
  #: inc/class-wp-cli.php:47
125
  #@ backwpup
126
  msgid "ERROR:"
127
  msgstr "FEHLER:"
128
 
129
  #: inc/class-cron.php:84
130
+ #: inc/class-job.php:1231
131
  #, php-format
132
  #@ backwpup
133
  msgid "[%3$s] BackWPup log %1$s: %2$s"
134
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
135
 
136
  #: inc/class-cron.php:84
137
+ #: inc/class-job.php:1227
138
  #@ backwpup
139
  msgid "ERROR"
140
  msgstr "FEHLER"
145
  msgstr "Dropbox"
146
 
147
  #: inc/class-destination-dropbox.php:14
148
+ #: inc/class-page-about.php:233
149
  #@ backwpup
150
  msgid "Backup to Dropbox"
151
  msgstr "Datensicherung in die Dropbox"
152
 
153
+ #: inc/class-destination-dropbox.php:56
 
154
  #: inc/features/class-destination-dropbox-pro.php:30
155
  #@ backwpup
156
  msgid "Dropbox authentication complete!"
157
  msgstr "Dropbox-Authentifizierung vollständig!"
158
 
159
+ #: inc/class-destination-dropbox.php:82
160
+ #: inc/class-destination-dropbox.php:100
161
+ #: inc/class-destination-dropbox.php:272
162
+ #: inc/class-destination-dropbox.php:322
 
 
163
  #: inc/features/class-destination-dropbox-pro.php:33
164
  #: inc/features/class-destination-dropbox-pro.php:55
165
  #: inc/features/class-destination-dropbox-pro.php:222
173
  msgid "Wrong token for Dropbox authentication received!"
174
  msgstr "Falschen Token für die Dropbox-Authentifizierung erhalten!"
175
 
176
+ #: inc/class-destination-dropbox.php:105
177
  #@ backwpup
178
  msgid "Login"
179
  msgstr "Anmelden"
180
 
181
+ #: inc/class-destination-dropbox.php:109
182
  #: inc/features/class-destination-dropbox-pro.php:63
183
  #@ backwpup
184
  msgid "Authenticate"
185
  msgstr "Authentifizieren"
186
 
187
+ #: inc/class-destination-dropbox.php:111
188
  #: inc/features/class-destination-dropbox-pro.php:62
189
  #@ backwpup
190
  msgid "Not authenticated!"
191
  msgstr "Nicht authentifiziert!"
192
 
193
+ #: inc/class-destination-dropbox.php:111
194
  #: inc/features/class-destination-dropbox-pro.php:64
195
  #@ backwpup
196
  msgid "Create Account"
197
  msgstr "Konto erstellen"
198
 
 
 
 
 
 
 
 
 
 
 
199
  #: inc/class-destination-dropbox.php:113
200
  #: inc/class-destination-sugarsync.php:63
201
  #: inc/features/class-destination-dropbox-pro.php:70
204
  msgid "Authenticated!"
205
  msgstr "Authentifiziert!"
206
 
207
+ #: inc/class-destination-dropbox.php:115
208
  #@ backwpup
209
  msgid "Reauthenticate (Sandbox)"
210
  msgstr "Neu authentifizieren (Sandbox)"
211
 
212
+ #: inc/class-destination-dropbox.php:116
213
  #@ backwpup
214
  msgid "Reauthenticate (full Dropbox)"
215
  msgstr "Neu authentifizieren (volle Dropbox)"
291
  msgid "Do not delete files while syncing to destination!"
292
  msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
293
 
294
+ #: inc/class-destination-dropbox.php:260
295
  #: inc/class-destination-msazure.php:249
296
  #: inc/class-destination-sugarsync.php:272
297
  #, php-format
299
  msgid "Backup transferred to %s"
300
  msgstr "Datensicherung übertragen zu %s"
301
 
302
+ #: inc/class-destination-dropbox.php:266
303
  #, php-format
304
  #@ backwpup
305
  msgid "Error on transfer backup to Dropbox: %s"
316
  msgid "Backup to Folder"
317
  msgstr "Datensicherung in Ordner"
318
 
319
+ #: inc/class-destination-folder.php:208
320
  #, php-format
321
  #@ backwpup
322
  msgid "One backup file deleted"
389
  msgid "Error getting SYSTYPE"
390
  msgstr "Fehler, SYSTYPE wird angezeigt"
391
 
392
+ #: inc/class-destination-ftp.php:290
393
  #, php-format
394
  #@ backwpup
395
  msgid "FTP Folder \"%s\" created!"
396
  msgstr "FTP-Ordner \"%s\" erstellt!"
397
 
398
+ #: inc/class-destination-ftp.php:294
399
  #, php-format
400
  #@ backwpup
401
  msgid "FTP Folder \"%s\" cannot be created!"
402
  msgstr "FTP-Ordner \"%s\" kann nicht erstellt werden!"
403
 
404
+ #: inc/class-destination-ftp.php:304
405
  #, php-format
406
  #@ backwpup
407
  msgid "FTP current folder is: %s"
408
  msgstr "Aktueller FTP-Ordner ist: %s"
409
 
410
+ #: inc/class-destination-ftp.php:314
411
  #@ backwpup
412
  msgid "Entering passive mode"
413
  msgstr "Passivmodus gestartet"
414
 
415
+ #: inc/class-destination-ftp.php:316
416
  #@ backwpup
417
  msgid "Cannot enter passive mode"
418
  msgstr "Starten des passiven Modus’ nicht möglich"
419
 
420
+ #: inc/class-destination-ftp.php:320
421
  #@ backwpup
422
  msgid "Entering normal mode"
423
  msgstr "Starte Normalmodus"
424
 
425
+ #: inc/class-destination-ftp.php:322
426
  #@ backwpup
427
  msgid "Cannot enter normal mode"
428
  msgstr "Normalmodus kann nicht gestartet werden"
429
 
430
+ #: inc/class-destination-ftp.php:335
431
  #@ backwpup
432
  msgid "Cannot transfer backup to FTP server!"
433
  msgstr "Datensicherung kann nicht zum FTP-Server übertragen werden!"
434
 
435
+ #: inc/class-destination-ftp.php:341
436
  #, php-format
437
  #@ backwpup
438
  msgid "Backup transferred to FTP server: %s"
439
  msgstr "Datensicherungsdatei übertragen zum FTP-Server: %s"
440
 
441
+ #: inc/class-destination-ftp.php:387
442
  #, php-format
443
  #@ backwpup
444
  msgid "Cannot delete \"%s\" on FTP server!"
490
  #: inc/class-destination-s3.php:205
491
  #: inc/class-jobtype-dbdump.php:67
492
  #: inc/class-jobtype-dbdump.php:110
493
+ #: inc/class-jobtype-wpexp.php:70
494
  #: inc/class-jobtype-wpplugin.php:56
495
  #: inc/class-page-backwpup.php:217
496
+ #: inc/class-page-backwpup.php:282
497
+ #: inc/features/class-jobtype-dbdump-pro.php:160
498
+ #: inc/features/class-jobtype-dbdump-pro.php:218
499
  #@ backwpup
500
  msgid "none"
501
  msgstr "nichts"
520
  msgid "SMTP password"
521
  msgstr "SMTP Passwort"
522
 
523
+ #: inc/class-destination-email.php:314
524
  #, php-format
525
  #@ backwpup
526
  msgid "BackWPup archive from %1$s: %2$s"
527
  msgstr "BackWPup-Archiv vom %1$s: %2$s"
528
 
529
+ #: inc/class-destination-email.php:317
530
  #, php-format
531
  #@ backwpup
532
  msgid "Backup archive: %s"
533
  msgstr "Datensicherungsarchiv: %s"
534
 
535
+ #: inc/class-destination-email.php:436
536
  #@ backwpup
537
  msgid "BackWPup archive sending TEST Message"
538
  msgstr "BackWPup Archiv TEST Nachricht senden"
641
  msgstr "RSC"
642
 
643
  #: inc/class-destination-rsc.php:22
644
+ #: inc/class-page-about.php:238
645
  #@ backwpup
646
  msgid "Backup to Rackspace Cloud Files"
647
  msgstr "Datensicherung in die Rackspace Cloud"
963
  msgstr "%s ist kein gültiger Bucket Name"
964
 
965
  #: inc/class-destination-s3-v1.php:309
966
+ #: inc/class-destination-s3-v1.php:431
967
+ #: inc/class-destination-s3-v1.php:482
968
  #: inc/class-destination-s3.php:317
969
+ #: inc/class-destination-s3.php:421
970
+ #: inc/class-destination-s3.php:451
971
+ #: inc/class-destination-s3.php:472
972
+ #: inc/class-destination-s3.php:531
973
  #: inc/features/class-destination-s3-pro.php:279
974
  #: inc/features/class-destination-s3-v1-pro.php:271
975
  #, php-format
986
  msgid "S3 Bucket \"%s\" does not exist!"
987
  msgstr "Amazon S3 Bucket \"%s\" existiert nicht!"
988
 
989
+ #: inc/class-destination-s3-v1.php:422
990
+ #: inc/class-destination-s3.php:463
991
  #, php-format
992
  #@ backwpup
993
  msgid "Backup transferred to %s."
994
  msgstr "Datensicherung übertragen zu %s"
995
 
996
+ #: inc/class-destination-s3-v1.php:427
997
+ #: inc/class-destination-s3.php:468
998
  #, php-format
999
  #@ backwpup
1000
  msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1001
  msgstr "Datensicherung kann nicht zu Amazon S3 übertragen werden! (%1$d) %2$s"
1002
 
1003
+ #: inc/class-destination-s3-v1.php:472
1004
+ #: inc/class-destination-s3.php:521
1005
  #, php-format
1006
  #@ backwpup
1007
  msgid "Cannot delete backup from %s."
1008
  msgstr "Kann das Backup auf %s nicht löschen"
1009
 
1010
+ #: inc/class-destination-s3-v1.php:476
1011
+ #: inc/class-destination-s3.php:525
1012
  #, php-format
1013
  #@ backwpup
1014
  msgid "One file deleted on S3 Bucket."
1017
  msgstr[1] "%d Dateien im S3-Bucket gelöscht"
1018
 
1019
  #: inc/class-destination-msazure.php:381
1020
+ #: inc/class-destination-s3-v1.php:587
1021
+ #: inc/class-destination-s3.php:628
1022
  #@ backwpup
1023
  msgid "Missing access key!"
1024
  msgstr "Der Zugangsschlüssel (Access Key) fehlt!"
1025
 
1026
+ #: inc/class-destination-s3-v1.php:589
1027
+ #: inc/class-destination-s3.php:630
1028
  #@ backwpup
1029
  msgid "Missing secret access key!"
1030
  msgstr "Der geheime Zugangsschlüssel (Secret Access Key) fehlt!"
1031
 
1032
+ #: inc/class-destination-s3-v1.php:593
1033
+ #: inc/class-destination-s3.php:634
1034
  #@ backwpup
1035
  msgid "No bucket found!"
1036
  msgstr "Kein Bucket gefunden!"
1041
  msgstr "SugarSync"
1042
 
1043
  #: inc/class-destination-sugarsync.php:14
1044
+ #: inc/class-page-about.php:253
1045
  #@ backwpup
1046
  msgid "Backup to SugarSync"
1047
  msgstr "Datensicherung zu SugarSync"
1163
  msgid "Starting job"
1164
  msgstr "Auftrag starten"
1165
 
1166
+ #: inc/class-job.php:214
1167
  #@ backwpup
1168
  msgid "Creates archive"
1169
  msgstr "erstellt Archiv"
1170
 
1171
+ #: inc/class-job.php:245
1172
  #@ backwpup
1173
  msgid "Job End"
1174
  msgstr "Auftragsende"
1175
 
1176
+ #: inc/class-job.php:253
1177
  #, php-format
1178
  #@ backwpup
1179
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1180
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
1181
 
1182
+ #: inc/class-job.php:272
1183
  #@ backwpup
1184
  msgid "[INFO] This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1185
  msgstr "[INFO] Dieses Programm leistet ABSOLUT KEINE GEWÄHR. Dies ist eine freie Software und es steht frei, diese unter gleichen Konditionen weiterzuentwickeln."
1186
 
1187
+ #: inc/class-job.php:273
1188
  #, php-format
1189
  #@ backwpup
1190
  msgid "[INFO] BackWPup job: %1$s; %2$s"
1191
  msgstr "[INFO] BackWPup-Auftrag: %1$s; %2$s"
1192
 
1193
+ #: inc/class-job.php:275
1194
  #@ backwpup
1195
  msgid "[INFO] BackWPup cron:"
1196
  msgstr "[INFO] BackWPup Cron:"
1197
 
1198
+ #: inc/class-job.php:277
1199
  #@ backwpup
1200
  msgid "[INFO] BackWPup job started from wp-cron"
1201
  msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet"
1202
 
1203
+ #: inc/class-job.php:279
1204
  #@ backwpup
1205
  msgid "[INFO] BackWPup job started manually"
1206
  msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet"
1207
 
1208
+ #: inc/class-job.php:281
1209
  #@ backwpup
1210
  msgid "[INFO] BackWPup job started from external url"
1211
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
1212
 
1213
+ #: inc/class-job.php:284
1214
  #@ backwpup
1215
  msgid "[INFO] PHP ver.:"
1216
  msgstr "[INFO] PHP ver.:"
1217
 
1218
+ #: inc/class-job.php:286
1219
  #, php-format
1220
  #@ backwpup
1221
  msgid "[INFO] MySQL ver.: %s"
1222
  msgstr "[INFO] MySQL ver.: %s"
1223
 
1224
+ #: inc/class-job.php:289
1225
  #, php-format
1226
  #@ backwpup
1227
  msgid "[INFO] curl ver.: %1$s; %2$s"
1228
  msgstr "[INFO] curl ver.: %1$s; %2$s"
1229
 
1230
+ #: inc/class-job.php:291
1231
  #, php-format
1232
  #@ backwpup
1233
  msgid "[INFO] Temp folder is: %s"
1234
  msgstr "[INFO] Temp Ordner ist: %s"
1235
 
1236
+ #: inc/class-job.php:292
1237
  #, php-format
1238
  #@ backwpup
1239
  msgid "[INFO] Logfile folder is: %s"
1240
  msgstr "[INFO] Logdatei Ordner ist: %s"
1241
 
1242
+ #: inc/class-job.php:293
1243
  #, php-format
1244
  #@ backwpup
1245
  msgid "[INFO] Backup type is: %s"
1246
  msgstr "[INFO] Backup Typ ist: %s"
1247
 
1248
+ #: inc/class-job.php:295
1249
  #, php-format
1250
  #@ backwpup
1251
  msgid "[INFO] Backup file is: %s"
1252
  msgstr "[INFO] Backup Datei ist: %s"
1253
 
1254
+ #: inc/class-job.php:438
1255
+ #: inc/class-job.php:439
1256
+ #: inc/class-job.php:513
1257
+ #: inc/class-job.php:514
1258
+ #: inc/class-job.php:562
1259
  #@ backwpup
1260
  msgid "Wrong BackWPup JobID"
1261
  msgstr "Falsche BackWPup JobID"
1262
 
1263
+ #: inc/class-job.php:443
1264
+ #: inc/class-job.php:444
1265
+ #: inc/class-job.php:519
1266
+ #: inc/class-job.php:568
1267
  #@ backwpup
1268
  msgid "Log folder does not exist or is not writable for BackWPup"
1269
  msgstr "Log-Ordner existiert nicht oder ist nicht beschreibbar für BackWPup"
1270
 
1271
+ #: inc/class-job.php:447
1272
+ #: inc/class-job.php:448
1273
+ #: inc/class-job.php:523
1274
+ #: inc/class-job.php:573
1275
  #@ backwpup
1276
  msgid "Temp folder does not exist or is not writable for BackWPup"
1277
  msgstr "Temp Ordner existiert nicht oder ist nicht beschreibbar für BackWPup!"
1278
 
1279
+ #: inc/class-job.php:458
1280
+ #: inc/class-job.php:459
1281
  #@ backwpup
1282
  msgid "No BackWPup job running"
1283
  msgstr "Kein aktiver BackWPup-Auftrag"
1284
 
1285
+ #: inc/class-job.php:462
1286
+ #: inc/class-job.php:463
1287
+ #: inc/class-job.php:527
1288
+ #: inc/class-job.php:528
1289
+ #: inc/class-job.php:580
1290
  #@ backwpup
1291
  msgid "A BackWPup job is already running"
1292
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
1293
 
1294
+ #: inc/class-job.php:518
1295
  #@ backwpup
1296
  msgid "Log folder does not exist or is not writable"
1297
  msgstr "Log-Ordner existiert nicht oder ist nicht beschreibbar"
1298
 
1299
+ #: inc/class-job.php:522
1300
  #@ backwpup
1301
  msgid "Temp folder does not exist or is not writable"
1302
  msgstr "Temp Ordner existiert nicht oder ist nicht beschreibbar"
1303
 
1304
+ #: inc/class-job.php:608
1305
  #@ backwpup
1306
  msgid "Job restart due to inactivity for more than 5 minutes."
1307
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet"
1308
 
1309
+ #: inc/class-job.php:720
1310
  #@ backwpup
1311
  msgid "Step aborted: too many attempts!"
1312
  msgstr "Schritt abgebrochen durch zu viele Versuche!"
1313
 
1314
+ #: inc/class-job.php:893
1315
  #, php-format
1316
  #@ backwpup
1317
  msgid "Please use another folder: %1$s"
1318
  msgstr "Bitte einen anderen Ordner auswählen: %1$s"
1319
 
1320
+ #: inc/class-job.php:900
1321
  #, php-format
1322
  #@ backwpup
1323
  msgid "Cannot create folder: %1$s"
1324
  msgstr "Kann keinen Ordner erstellen: %1$s"
1325
 
1326
+ #: inc/class-job.php:908
1327
  #, php-format
1328
  #@ backwpup
1329
  msgid "Folder \"%1$s\" is not writable"
1330
  msgstr "Ordner \"%1$s\" ist nicht beschreibbar"
1331
 
1332
+ #: inc/class-job.php:933
1333
  #, php-format
1334
  #@ backwpup
1335
  msgid "Exception caught in %1$s: %2$s"
1336
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
1337
 
1338
+ #: inc/class-job.php:991
1339
  #@ backwpup
1340
  msgid "WARNING:"
1341
  msgstr "WARNUNG:"
1342
 
1343
+ #: inc/class-job.php:1004
1344
  #@ backwpup
1345
  msgid "DEPRECATED:"
1346
  msgstr "ABGELEHNT:"
1347
 
1348
+ #: inc/class-job.php:1007
1349
  #@ backwpup
1350
  msgid "STRICT NOTICE:"
1351
  msgstr "EXAKTE NOTIZ:"
1352
 
1353
+ #: inc/class-job.php:1010
1354
  #@ backwpup
1355
  msgid "RECOVERABLE ERROR:"
1356
  msgstr "WIEDERHERSTELLUNGS FEHLER:"
1357
 
1358
+ #: inc/class-job.php:1150
1359
  #, php-format
1360
  #@ backwpup
1361
  msgid "One old log deleted"
1363
  msgstr[0] "Eine alte Log-Datei gelöscht"
1364
  msgstr[1] "%d alte Log-Dateien gelöscht"
1365
 
1366
+ #: inc/class-job.php:1155
1367
  #, php-format
1368
  #@ backwpup
1369
  msgid "Job done in %s seconds."
1370
  msgstr "Auftrag erledigt in %s Sekunden."
1371
 
1372
+ #: inc/class-job.php:1220
1373
  #@ backwpup
1374
  msgid "SUCCESSFUL"
1375
  msgstr "ERFOLGREICH"
1376
 
1377
+ #: inc/class-job.php:1223
1378
  #@ backwpup
1379
  msgid "WARNING"
1380
  msgstr "WARNUNG"
1381
 
1382
+ #: inc/class-job.php:1285
1383
  #@ backwpup
1384
  msgid "Set blog into maintenance mode"
1385
  msgstr "Webseite / Blog in den Wartungsmodus versetzen"
1386
 
1387
+ #: inc/class-job.php:1293
1388
  #@ backwpup
1389
  msgid "Cannot set blog into maintenance mode! .maintenance is not writable!"
1390
  msgstr "Die Webseite kann nicht in den Wartungsmodus gesetzt werden! Das Root-Verzeichnis ist nicht beschreibbar!"
1391
 
1392
+ #: inc/class-job.php:1301
1393
  #@ backwpup
1394
  msgid "Set blog to normal mode"
1395
  msgstr "Setze Webseite / Blog zurück in den Normalmodus"
1396
 
1397
+ #: inc/class-job.php:1624
 
 
 
 
 
 
1398
  #, php-format
1399
  #@ backwpup
1400
  msgid "File \"%s\" is not readable!"
1401
  msgstr "Datei \"%s\" ist nicht lesbar!"
1402
 
1403
+ #: inc/class-job.php:1626
1404
  #, php-format
1405
  #@ backwpup
1406
  msgid "Link \"%s\" not followed."
1528
  msgid "(ER_DELETED) Entry has been deleted"
1529
  msgstr "(ER_DELETED) Eintrag wurde gelöscht"
1530
 
1531
+ #: inc/class-job.php:1723
1532
  #, php-format
1533
  #@ backwpup
1534
  msgid "Archive size is %s."
1535
  msgstr "Archivgröße ist %s"
1536
 
1537
+ #: inc/class-job.php:1724
1538
  #, php-format
1539
  #@ backwpup
1540
  msgid "%1$d Files with %2$s in Archive."
1592
  #: inc/class-jobtype-dboptimize.php:50
1593
  #: inc/features/class-jobtype-dbcheck-pro.php:25
1594
  #: inc/features/class-jobtype-dbdump-pro.php:92
1595
+ #: inc/features/class-jobtype-dbdump-pro.php:181
1596
  #: inc/features/class-jobtype-dboptimize-pro.php:26
1597
  #@ backwpup
1598
  msgid "Maintenance mode"
1647
  msgid "Database backup"
1648
  msgstr "Datenbank Backup"
1649
 
 
1650
  #: inc/features/class-jobtype-dbdump-pro.php:80
 
1651
  #@ backwpup
1652
  msgid "Settings for database dump"
1653
  msgstr "Einstellungen für das Datenbank-Backup"
1654
 
 
 
 
 
 
 
1655
  #: inc/class-jobtype-dbdump.php:66
1656
+ #: inc/features/class-jobtype-dbdump-pro.php:159
1657
  #@ backwpup
1658
  msgid "all"
1659
  msgstr "alle"
1660
 
1661
  #: inc/class-jobtype-dbdump.php:95
1662
  #: inc/features/class-jobtype-dbdump-pro.php:96
1663
+ #: inc/features/class-jobtype-dbdump-pro.php:185
1664
  #@ backwpup
1665
  msgid "Activate maintenance mode on database dump"
1666
  msgstr "Aktiviere den Wartungsmodus bei der Datenbank Sicherung"
1667
 
1668
  #: inc/class-jobtype-dbdump.php:99
1669
+ #: inc/features/class-jobtype-dbdump-pro.php:207
1670
  #@ backwpup
1671
  msgid "Dumpfile name"
1672
  msgstr "Name der Backup-Datei"
1673
 
1674
  #: inc/class-jobtype-dbdump.php:107
1675
+ #: inc/features/class-jobtype-dbdump-pro.php:215
1676
  #@ backwpup
1677
  msgid "Dumpfile compression"
1678
  msgstr "Kompression der Backup-Datei"
1679
 
1680
  #: inc/class-jobtype-dbdump.php:112
1681
  #: inc/class-jobtype-dbdump.php:114
1682
+ #: inc/class-jobtype-wpexp.php:72
1683
+ #: inc/class-jobtype-wpexp.php:74
1684
  #: inc/class-jobtype-wpplugin.php:58
1685
  #: inc/class-jobtype-wpplugin.php:60
1686
+ #: inc/features/class-jobtype-dbdump-pro.php:220
1687
+ #: inc/features/class-jobtype-dbdump-pro.php:222
1688
  #@ backwpup
1689
  msgid "GZip"
1690
  msgstr "GZip"
1691
 
1692
  #: inc/class-jobtype-dbdump.php:116
1693
  #: inc/class-jobtype-dbdump.php:118
1694
+ #: inc/class-jobtype-wpexp.php:76
1695
+ #: inc/class-jobtype-wpexp.php:78
1696
  #: inc/class-jobtype-wpplugin.php:62
1697
  #: inc/class-jobtype-wpplugin.php:64
1698
+ #: inc/features/class-jobtype-dbdump-pro.php:224
1699
+ #: inc/features/class-jobtype-dbdump-pro.php:226
1700
  #@ backwpup
1701
  msgid "BZip2"
1702
  msgstr "BZip2"
1703
 
1704
  #: inc/class-jobtype-dbdump.php:179
1705
+ #: inc/features/class-jobtype-dbdump-pro.php:486
1706
+ #: inc/features/class-jobtype-dbdump-pro.php:704
1707
  #, php-format
1708
  #@ backwpup
1709
  msgid "Connected to database %1$s on %2$s"
1718
  #: inc/class-mysqldump.php:294
1719
  #: inc/class-mysqldump.php:315
1720
  #: inc/class-mysqldump.php:329
1721
+ #: inc/features/class-jobtype-dbdump-pro.php:710
1722
+ #: inc/features/class-jobtype-dbdump-pro.php:724
1723
+ #: inc/features/class-jobtype-dbdump-pro.php:773
1724
+ #: inc/features/class-jobtype-dbdump-pro.php:790
1725
+ #: inc/features/class-jobtype-dbdump-pro.php:831
1726
  #, php-format
1727
  #@ backwpup
1728
  msgid "Database error %1$s for query %2$s"
1729
  msgstr "Datenbankfehler %1$s für die Abfrage (Query) %2$s"
1730
 
1731
  #: inc/class-jobtype-dbdump.php:191
1732
+ #: inc/features/class-jobtype-dbdump-pro.php:499
1733
  #@ backwpup
1734
  msgid "No tables to dump."
1735
  msgstr "Es gibt keine Tabellen zu sichern"
1736
 
1737
  #: inc/class-jobtype-dbdump.php:202
1738
+ #: inc/features/class-jobtype-dbdump-pro.php:513
1739
  #, php-format
1740
  #@ backwpup
1741
  msgid "Dump database table \"%s\""
1742
  msgstr "Sichere Datenbanktabelle \"%s\""
1743
 
1744
  #: inc/class-jobtype-dbdump.php:227
1745
+ #: inc/features/class-jobtype-dbdump-pro.php:538
1746
+ #: inc/features/class-jobtype-dbdump-pro.php:656
1747
  #@ backwpup
1748
  msgid "Database dump done!"
1749
  msgstr "Datenbank-Backup fertig!"
1844
  msgid "Plugins"
1845
  msgstr "Plugins"
1846
 
1847
+ #: inc/class-jobtype-file.php:392
1848
+ #: inc/class-jobtype-file.php:399
1849
+ #: inc/class-jobtype-file.php:406
1850
+ #: inc/class-jobtype-file.php:412
1851
+ #: inc/class-jobtype-file.php:418
1852
+ #: inc/class-jobtype-file.php:424
1853
  #, php-format
1854
  #@ backwpup
1855
  msgid "Added \"%s\" to backup file list"
1856
  msgstr "\"%s\" zur Backup Datei-Liste hinzugefügt."
1857
 
1858
+ #: inc/class-jobtype-file.php:429
1859
  #@ backwpup
1860
  msgid "No folder to back up."
1861
  msgstr "Keine Ordner zum Sichern"
1862
 
1863
+ #: inc/class-jobtype-file.php:431
1864
  #, php-format
1865
  #@ backwpup
1866
  msgid "%1$d folders to back up."
1867
  msgstr "%1$d Ordner zu sichern"
1868
 
1869
+ #: inc/class-jobtype-file.php:468
1870
  #, php-format
1871
  #@ backwpup
1872
  msgid "Folder \"%s\" is not readable!"
1878
  msgstr "XML Export"
1879
 
1880
  #: inc/class-jobtype-wpexp.php:14
1881
+ #: inc/class-page-about.php:188
1882
  #@ backwpup
1883
  msgid "WordPress XML export"
1884
  msgstr "WordPress XML Export"
1885
 
1886
+ #: inc/class-jobtype-wpexp.php:48
1887
  #: inc/features/class-jobtype-wpexp-pro.php:16
1888
  #@ backwpup
1889
  msgid "All content"
1890
  msgstr "Gesamter Inhalt"
1891
 
1892
+ #: inc/class-jobtype-wpexp.php:49
1893
  #: inc/features/class-jobtype-wpexp-pro.php:17
1894
  #@ backwpup
1895
  msgid "Posts"
1896
  msgstr "Beiträge"
1897
 
1898
+ #: inc/class-jobtype-wpexp.php:50
1899
  #: inc/features/class-jobtype-wpexp-pro.php:18
1900
  #@ backwpup
1901
  msgid "Pages"
1902
  msgstr "Seiten"
1903
 
1904
+ #: inc/class-jobtype-wpexp.php:126
1905
  #, php-format
1906
  #@ backwpup
1907
  msgid "Added XML export \"%1$s\" with %2$s to backup file list."
1968
  msgstr "Zeit"
1969
 
1970
  #: inc/class-page-backups.php:296
1971
+ #: inc/class-page-jobs.php:219
1972
  #: inc/class-page-logs.php:186
1973
  #@ backwpup
1974
  msgid "Download"
1991
  msgid "%s Dashboard"
1992
  msgstr "%s Dashboard"
1993
 
1994
+ #: inc/class-page-about.php:72
1995
  #@ backwpup
1996
  msgid "Welcome to BackWPup Pro"
1997
  msgstr "Willkommen zu BackWPup Pro"
1998
 
1999
+ #: inc/class-page-about.php:82
2000
  #@ backwpup
2001
  msgid "Welcome to BackWPup"
2002
  msgstr "Willkommen bei BackWPup"
2003
 
2004
  #: inc/class-page-backwpup.php:121
2005
+ #: inc/features/class-page-wizard.php:243
2006
  #@ backwpup
2007
  msgid "Start wizard"
2008
  msgstr "Assistenten starten"
2047
  msgstr "in Arbeit seit %d Sek."
2048
 
2049
  #: inc/class-page-backwpup.php:262
2050
+ #: inc/class-page-jobs.php:482
2051
  #@ backwpup
2052
  msgid "Abort"
2053
  msgstr "Abbrechen"
2054
 
2055
+ #: inc/class-page-backwpup.php:278
2056
  #@ backwpup
2057
  msgid "Edit Job"
2058
  msgstr "Auftrag bearbeiten"
2093
  msgid "Overview"
2094
  msgstr "Überblick"
2095
 
2096
+ #: inc/class-page-editjob.php:175
2097
  #, php-format
2098
  #@ backwpup
2099
  msgid "Changes for job <i>%s</i> saved."
2100
  msgstr "Änderungen für den Auftrag <i>%s</i> gesichert."
2101
 
2102
+ #: inc/class-page-editjob.php:317
2103
  #, php-format
2104
  #@ backwpup
2105
  msgid "ATTENTION: Job runs every %d minutes!"
2106
  msgstr "ACHTUNG: Auftrag läuft alle %d Minuten!"
2107
 
2108
+ #: inc/class-page-editjob.php:323
2109
  #, php-format
2110
  #@ backwpup
2111
  msgid "ATTENTION: Job runs every %d hours!"
2112
  msgstr "ACHTUNG: Auftrag läuft alle %d Stunden!"
2113
 
2114
+ #: inc/class-page-editjob.php:327
2115
  #@ backwpup
2116
  msgid "ATTENTION: Can't calculate cron!"
2117
  msgstr "ACHTUNG: Kann cron nicht berechnen!"
2118
 
2119
+ #: inc/class-page-editjob.php:330
2120
  #@ backwpup
2121
  msgid "Next runtime:"
2122
  msgstr "Nächster Durchlauf:"
2123
 
2124
+ #: inc/class-page-editjob.php:368
2125
  #: inc/class-page-settings.php:103
2126
  #@ backwpup
2127
  msgid "General"
2128
  msgstr "Allgemein"
2129
 
2130
+ #: inc/class-page-editjob.php:368
2131
  #@ backwpup
2132
  msgid "Schedule"
2133
  msgstr "Planen"
2134
 
2135
+ #: inc/class-page-editjob.php:383
2136
  #, php-format
2137
  #@ backwpup
2138
  msgid "To: %s"
2139
  msgstr "Zu: %s"
2140
 
2141
+ #: inc/class-page-editjob.php:389
2142
  #, php-format
2143
  #@ backwpup
2144
  msgid "%s Job:"
2145
  msgstr "%s Auftrag: "
2146
 
2147
+ #: inc/class-page-editjob.php:435
2148
  #: inc/features/class-wizard-job.php:228
2149
  #@ backwpup
2150
  msgid "Job tasks"
2151
  msgstr "Auftragsdetails"
2152
 
2153
+ #: inc/class-page-editjob.php:456
2154
+ #: inc/class-page-editjob.php:459
2155
  #: inc/features/class-wizard-job.php:350
2156
  #: inc/features/class-wizard-job.php:353
2157
  #@ backwpup
2163
  msgid "Sync file by file to destination"
2164
  msgstr "Synchronisiere Datei für Datei zum Zielverzeichnis"
2165
 
2166
+ #: inc/class-page-editjob.php:468
2167
  #: inc/features/class-wizard-job.php:361
2168
  #@ backwpup
2169
  msgid "Create a backup archive"
2170
  msgstr "Backup erstellen"
2171
 
2172
+ #: inc/class-page-editjob.php:514
2173
+ #: inc/class-page-editjob.php:517
2174
  #@ backwpup
2175
  msgid "Archive Format"
2176
  msgstr "Archiv Format"
2177
 
2178
+ #: inc/class-page-editjob.php:520
2179
  #: inc/class-page-editjob.php:522
 
2180
  #: inc/features/class-wizard-job.php:371
2181
  #: inc/features/class-wizard-job.php:373
2182
  #@ backwpup
2190
  msgid "Disabled because missing PHP function."
2191
  msgstr "Aufgrund fehlender PHP Funktion deaktiviert."
2192
 
2193
+ #: inc/class-page-editjob.php:523
2194
  #: inc/features/class-wizard-job.php:374
2195
  #@ backwpup
2196
  msgid "Tar"
2197
  msgstr "Tar"
2198
 
2199
+ #: inc/class-page-editjob.php:525
2200
  #: inc/class-page-editjob.php:527
 
2201
  #: inc/features/class-wizard-job.php:376
2202
  #: inc/features/class-wizard-job.php:378
2203
  #@ backwpup
2204
  msgid "Tar GZip"
2205
  msgstr "Tar GZip"
2206
 
2207
+ #: inc/class-page-editjob.php:529
2208
  #: inc/class-page-editjob.php:531
 
2209
  #: inc/features/class-wizard-job.php:380
2210
  #: inc/features/class-wizard-job.php:382
2211
  #@ backwpup
2224
  msgid "Destinations"
2225
  msgstr "Zielordner"
2226
 
2227
+ #: inc/class-page-editjob.php:600
2228
+ #: inc/class-page-editjob.php:603
2229
  #@ backwpup
2230
  msgid "Start job"
2231
  msgstr "Auftrag starten"
2232
 
2233
+ #: inc/class-page-editjob.php:607
2234
  #@ backwpup
2235
  msgid "manually only"
2236
  msgstr "nur manuell"
2237
 
2238
+ #: inc/class-page-editjob.php:611
2239
  #@ backwpup
2240
  msgid "with WordPress cron"
2241
  msgstr "mit WordPress Cron"
2242
 
2243
+ #: inc/class-page-editjob.php:618
2244
  #@ backwpup
2245
  msgid "with a link"
2246
  msgstr "mit einem Link"
2247
 
2248
+ #: inc/class-page-editjob.php:636
2249
  #@ backwpup
2250
  msgid "Schedule execution time"
2251
  msgstr "Plane Ausführungszeit"
2252
 
2253
+ #: inc/class-page-editjob.php:640
2254
+ #: inc/class-page-editjob.php:643
2255
  #@ backwpup
2256
  msgid "Scheduler type"
2257
  msgstr "Planungstyp"
2258
 
2259
+ #: inc/class-page-editjob.php:648
2260
  #@ backwpup
2261
  msgid "basic"
2262
  msgstr "einfach"
2263
 
2264
+ #: inc/class-page-editjob.php:652
2265
  #@ backwpup
2266
  msgid "advanced"
2267
  msgstr "erweitert"
2268
 
2269
+ #: inc/class-page-editjob.php:681
2270
+ #: inc/class-page-editjob.php:749
2271
  #: inc/features/class-wizard-job.php:275
2272
  #@ backwpup
2273
  msgid "Scheduler"
2274
  msgstr "Planer"
2275
 
2276
+ #: inc/class-page-editjob.php:686
2277
  #: inc/class-page-jobs.php:70
2278
  #: inc/class-page-logs.php:115
2279
  #: inc/features/class-wizard-job.php:280
2281
  msgid "Type"
2282
  msgstr "Typ"
2283
 
2284
+ #: inc/class-page-editjob.php:691
2285
  #: inc/features/class-wizard-job.php:285
2286
  #@ backwpup
2287
  msgid "Hour"
2288
  msgstr "Stunde"
2289
 
2290
+ #: inc/class-page-editjob.php:694
2291
  #: inc/features/class-wizard-job.php:288
2292
  #@ backwpup
2293
  msgid "Minute"
2294
  msgstr "Minute"
2295
 
2296
+ #: inc/class-page-editjob.php:698
2297
  #: inc/features/class-wizard-job.php:292
2298
  #@ backwpup
2299
  msgid "monthly"
2300
  msgstr "monatlich"
2301
 
2302
+ #: inc/class-page-editjob.php:700
2303
  #: inc/features/class-wizard-job.php:294
2304
  #@ backwpup
2305
  msgid "on"
2306
  msgstr "am"
2307
 
2308
+ #: inc/class-page-editjob.php:710
2309
  #: inc/features/class-wizard-job.php:304
2310
  #@ backwpup
2311
  msgid "weekly"
2312
  msgstr "wöchentlich"
2313
 
2314
+ #: inc/class-page-editjob.php:712
2315
+ #: inc/class-page-editjob.php:819
2316
  #: inc/features/class-wizard-job.php:306
2317
  #@ backwpup
2318
  msgid "Sunday"
2319
  msgstr "Sonntag"
2320
 
2321
+ #: inc/class-page-editjob.php:713
2322
+ #: inc/class-page-editjob.php:820
2323
  #: inc/features/class-wizard-job.php:307
2324
  #@ backwpup
2325
  msgid "Monday"
2326
  msgstr "Montag"
2327
 
2328
+ #: inc/class-page-editjob.php:714
2329
+ #: inc/class-page-editjob.php:821
2330
  #: inc/features/class-wizard-job.php:308
2331
  #@ backwpup
2332
  msgid "Tuesday"
2333
  msgstr "Dienstag"
2334
 
2335
+ #: inc/class-page-editjob.php:715
2336
+ #: inc/class-page-editjob.php:822
2337
  #: inc/features/class-wizard-job.php:309
2338
  #@ backwpup
2339
  msgid "Wednesday"
2340
  msgstr "Mittwoch"
2341
 
2342
+ #: inc/class-page-editjob.php:716
2343
+ #: inc/class-page-editjob.php:823
2344
  #: inc/features/class-wizard-job.php:310
2345
  #@ backwpup
2346
  msgid "Thursday"
2347
  msgstr "Donnerstag"
2348
 
2349
+ #: inc/class-page-editjob.php:717
2350
+ #: inc/class-page-editjob.php:824
2351
  #: inc/features/class-wizard-job.php:311
2352
  #@ backwpup
2353
  msgid "Friday"
2354
  msgstr "Freitag"
2355
 
2356
+ #: inc/class-page-editjob.php:718
2357
+ #: inc/class-page-editjob.php:825
2358
  #: inc/features/class-wizard-job.php:312
2359
  #@ backwpup
2360
  msgid "Saturday"
2361
  msgstr "Samstag"
2362
 
2363
+ #: inc/class-page-editjob.php:728
2364
  #: inc/features/class-wizard-job.php:322
2365
  #@ backwpup
2366
  msgid "daily"
2367
  msgstr "täglich"
2368
 
2369
+ #: inc/class-page-editjob.php:738
2370
  #: inc/features/class-wizard-job.php:332
2371
  #@ backwpup
2372
  msgid "hourly"
2373
  msgstr "stündlich"
2374
 
2375
+ #: inc/class-page-editjob.php:754
2376
+ #: inc/class-page-editjob.php:767
2377
+ #: inc/class-page-editjob.php:779
2378
+ #: inc/class-page-editjob.php:793
2379
+ #: inc/class-page-editjob.php:815
2380
  #@ backwpup
2381
  msgid "Any (*)"
2382
  msgstr "Alle (*)"
2383
 
2384
+ #: inc/class-page-editjob.php:764
2385
  #@ backwpup
2386
  msgid "Hours:"
2387
  msgstr "Stunden:"
2388
 
2389
+ #: inc/class-page-editjob.php:777
2390
  #@ backwpup
2391
  msgid "Day of Month:"
2392
  msgstr "Tag des Monats:"
2393
 
2394
+ #: inc/class-page-editjob.php:791
2395
  #@ backwpup
2396
  msgid "Month:"
2397
  msgstr "Monat:"
2398
 
2399
+ #: inc/class-page-editjob.php:797
2400
  #@ backwpup
2401
  msgid "January"
2402
  msgstr "Januar"
2403
 
2404
+ #: inc/class-page-editjob.php:798
2405
  #@ backwpup
2406
  msgid "February"
2407
  msgstr "Februar"
2408
 
2409
+ #: inc/class-page-editjob.php:799
2410
  #@ backwpup
2411
  msgid "March"
2412
  msgstr "März"
2413
 
2414
+ #: inc/class-page-editjob.php:800
2415
  #@ backwpup
2416
  msgid "April"
2417
  msgstr "April"
2418
 
2419
+ #: inc/class-page-editjob.php:801
2420
  #@ backwpup
2421
  msgid "May"
2422
  msgstr "Mai"
2423
 
2424
+ #: inc/class-page-editjob.php:802
2425
  #@ backwpup
2426
  msgid "June"
2427
  msgstr "Juni"
2428
 
2429
+ #: inc/class-page-editjob.php:803
2430
  #@ backwpup
2431
  msgid "July"
2432
  msgstr "Juli"
2433
 
2434
+ #: inc/class-page-editjob.php:804
2435
  #@ backwpup
2436
  msgid "August"
2437
  msgstr "August"
2438
 
2439
+ #: inc/class-page-editjob.php:805
2440
  #@ backwpup
2441
  msgid "September"
2442
  msgstr "September"
2443
 
2444
+ #: inc/class-page-editjob.php:806
2445
  #@ backwpup
2446
  msgid "October"
2447
  msgstr "Oktober"
2448
 
2449
+ #: inc/class-page-editjob.php:807
2450
  #@ backwpup
2451
  msgid "November"
2452
  msgstr "November"
2453
 
2454
+ #: inc/class-page-editjob.php:808
2455
  #@ backwpup
2456
  msgid "December"
2457
  msgstr "Dezember"
2458
 
2459
+ #: inc/class-page-editjob.php:813
2460
  #@ backwpup
2461
  msgid "Day of Week:"
2462
  msgstr "Wochentag:"
2463
 
2464
+ #: inc/class-page-editjob.php:849
2465
  #@ backwpup
2466
  msgid "Save changes"
2467
  msgstr "Änderungen speichern"
2476
  msgid "ID"
2477
  msgstr "ID"
2478
 
2479
+ #: inc/class-page-editjob.php:416
2480
  #: inc/class-page-jobs.php:69
2481
  #@ backwpup
2482
  msgid "Job Name"
2513
  msgid "Running for: %s seconds"
2514
  msgstr "Läuft seit %s Sekunden"
2515
 
2516
+ #: inc/class-page-jobs.php:195
2517
  #, php-format
2518
  #@ backwpup
2519
  msgid "Cron: %s"
2520
  msgstr "Cron: %s"
2521
 
2522
+ #: inc/class-page-backwpup.php:276
2523
+ #: inc/class-page-jobs.php:197
2524
  #@ backwpup
2525
  msgid "Not scheduled!"
2526
  msgstr "Nicht geplant!"
2527
 
2528
+ #: inc/class-page-jobs.php:200
2529
  #@ backwpup
2530
  msgid "Inactive"
2531
  msgstr "Inaktiv"
2532
 
2533
+ #: inc/class-page-jobs.php:219
2534
  #@ backwpup
2535
  msgid "Download last backup"
2536
  msgstr "Letzte Datensicherung herunterladen"
2537
 
2538
+ #: inc/class-page-jobs.php:224
2539
  #@ backwpup
2540
  msgid "Log"
2541
  msgstr "Protokoll"
2542
 
2543
+ #: inc/class-page-jobs.php:271
2544
  #@ backwpup
2545
  msgid "Copy of"
2546
  msgstr "Kopie von"
2547
 
2548
+ #: inc/class-page-jobs.php:363
2549
  #, php-format
2550
  #@ backwpup
2551
  msgid "Job \"%s\" started."
2552
  msgstr "Auftrag \"%s\" wurde gestartet."
2553
 
2554
+ #: inc/class-page-jobs.php:391
2555
  #: inc/class-wp-cli.php:47
2556
  #@ backwpup
2557
  msgid "Aborted by user!"
2558
  msgstr "Abgebrochen vom Benutzer!"
2559
 
2560
+ #: inc/class-page-jobs.php:420
2561
  #: inc/class-wp-cli.php:77
2562
  #@ backwpup
2563
  msgid "Job will be terminated."
2564
  msgstr "Auftrag wird beendet."
2565
 
2566
+ #: inc/class-page-jobs.php:460
2567
  #, php-format
2568
  #@ backwpup
2569
  msgid "%s Jobs"
2570
  msgstr "%s Aufträge"
2571
 
2572
+ #: inc/class-page-jobs.php:479
2573
  #@ backwpup
2574
  msgid "Warnings:"
2575
  msgstr "Warnungen:"
2576
 
2577
+ #: inc/class-page-jobs.php:480
2578
  #@ backwpup
2579
  msgid "Errors:"
2580
  msgstr "Fehler:"
2581
 
2582
+ #: inc/class-page-jobs.php:481
2583
  #@ backwpup
2584
  msgid "Display working log"
2585
  msgstr "Zeige Auftragslog"
2586
 
2587
+ #: inc/class-page-jobs.php:483
2588
  #@ backwpup
2589
  msgid "Close working screen"
2590
  msgstr "Arbeitsfläche schließen"
2591
 
2592
+ #: inc/class-page-jobs.php:483
2593
  #@ backwpup
2594
  msgid "close"
2595
  msgstr "schließen"
2596
 
2597
+ #: inc/class-page-jobs.php:617
2598
  #@ backwpup
2599
  msgid "Job end"
2600
  msgstr "Auftragsende"
2909
  msgid "MySQL Client encoding"
2910
  msgstr "MySQL Client Encoding"
2911
 
2912
+ #: inc/class-page-settings.php:435
2913
  #@ backwpup
2914
  msgid "Blog charset"
2915
  msgstr "Webseiten Charset"
2916
 
2917
+ #: inc/class-page-settings.php:436
2918
  #@ backwpup
2919
  msgid "PHP Memory limit"
2920
  msgstr "PHP Memory Limit"
2921
 
2922
+ #: inc/class-page-settings.php:439
2923
  #@ backwpup
2924
  msgid "Memory in use"
2925
  msgstr "Speicher in Benutzung"
2926
 
2927
+ #: inc/class-page-settings.php:444
2928
  #@ backwpup
2929
  msgid "Disabled PHP Functions:"
2930
  msgstr "Deaktivierte PHP Funktionen:"
2931
 
2932
+ #: inc/class-page-settings.php:449
2933
  #@ backwpup
2934
  msgid "Loaded PHP Extensions:"
2935
  msgstr "Geladene PHP Erweiterungen"
2939
  msgid "Job Types"
2940
  msgstr "Auftragstypen"
2941
 
2942
+ #: inc/class-page-settings.php:461
2943
  #@ backwpup
2944
  msgid "Save Changes"
2945
  msgstr "Änderungen speichern"
2946
 
2947
+ #: inc/class-page-about.php:51
2948
  #, php-format
2949
  #@ backwpup
2950
  msgid "%s Welcome"
3346
  msgid "Charset:"
3347
  msgstr "Charset: "
3348
 
3349
+ #: inc/features/class-jobtype-dbdump-pro.php:144
3350
  #@ backwpup
3351
  msgid "Database:"
3352
  msgstr "Datenbank:"
3353
 
 
 
 
 
 
3354
  #: inc/class-jobtype-dbdump.php:224
3355
+ #: inc/features/class-jobtype-dbdump-pro.php:535
3356
+ #: inc/features/class-jobtype-dbdump-pro.php:653
3357
  #, php-format
3358
  #@ backwpup
3359
  msgid "Added database dump \"%1$s\" with %2$s to backup file list"
3360
  msgstr "Datenbank-Backup erstellt \"%1$s\" mit %2$s zur Backup-Liste"
3361
 
3362
+ #: inc/features/class-jobtype-dbdump-pro.php:638
3363
  #@ backwpup
3364
  msgid "Compressing done."
3365
  msgstr "Komprimierung erledigt."
3366
 
3367
+ #: inc/features/class-jobtype-dbdump-pro.php:731
3368
  #@ backwpup
3369
  msgid "No tables for XML dump"
3370
  msgstr "Es gibt keine Tabellen für ein XML-Backup"
3371
 
3372
+ #: inc/features/class-jobtype-dbdump-pro.php:768
3373
  #, php-format
3374
  #@ backwpup
3375
  msgid "Dump database create view \"%s\""
3376
  msgstr "Datenbank-Backup erstellt \"%s\""
3377
 
3378
+ #: inc/features/class-jobtype-dbdump-pro.php:825
3379
  #, php-format
3380
  #@ backwpup
3381
  msgid "Dump table \"%s\" data"
3382
  msgstr "Backup der Tabellen \"%s\""
3383
 
3384
+ #: inc/features/class-jobtype-dbdump-pro.php:894
3385
  #, php-format
3386
  #@ backwpup
3387
  msgid "Added database XML dump \"%1$s\" with %2$s to backup file list"
3388
  msgstr "XML-Backup der Datenbank \"%1$s\" mit %2$s zur Backup-Liste"
3389
 
3390
+ #: inc/features/class-jobtype-dbdump-pro.php:897
3391
  #@ backwpup
3392
  msgid "Database XML dump done!"
3393
  msgstr "XML-Backup der Datenbank erstellt."
3397
  msgid "Nothing to configure"
3398
  msgstr "Nichts zu konfiguieren"
3399
 
3400
+ #: inc/features/class-page-wizard.php:136
3401
+ #: inc/features/class-page-wizard.php:324
3402
+ #: inc/features/class-page-wizard.php:355
3403
  #@ backwpup
3404
  msgid "Next >"
3405
  msgstr "weiter >"
3406
 
3407
+ #: inc/features/class-page-wizard.php:153
3408
+ #: inc/features/class-page-wizard.php:320
3409
  #@ backwpup
3410
  msgid "< Previous"
3411
  msgstr "< vorher"
3412
 
3413
+ #: inc/features/class-page-wizard.php:101
3414
+ #: inc/features/class-page-wizard.php:329
3415
  #@ backwpup
3416
  msgid "Cancel"
3417
  msgstr "Abbrechen"
3706
  msgid "running"
3707
  msgstr "läuft"
3708
 
3709
+ #: inc/class-job.php:181
3710
  #@ backwpup
3711
  msgid "Job Start"
3712
  msgstr "Auftragsstart"
3713
 
3714
+ #: inc/class-job.php:312
3715
  #@ backwpup
3716
  msgid "No destination correctly defined for backup! Please correct job settings."
3717
  msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
3776
  msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from root."
3777
  msgstr "Sichere wp-config.php, robots.txt, .htaccess, .htpasswd und favicon.ico vom Root"
3778
 
3779
+ #: inc/class-jobtype-wpexp.php:59
3780
  #@ backwpup
3781
  msgid "XML Export file name"
3782
  msgstr "XML Export Datei Name"
3783
 
3784
+ #: inc/class-jobtype-wpexp.php:67
3785
  #: inc/class-jobtype-wpplugin.php:53
3786
  #@ backwpup
3787
  msgid "File compression"
3812
  msgid "Server self connect:"
3813
  msgstr "Verbindung zum Server selbst:"
3814
 
3815
+ #: inc/class-page-jobs.php:353
3816
  #: inc/class-page-settings.php:376
3817
  #, php-format
3818
  #@ backwpup
3819
  msgid "The HTTP response test get a error \"%s\""
3820
  msgstr "Der HTTP Antwort Test bekommt diesen Fehler \"%s\""
3821
 
3822
+ #: inc/class-page-jobs.php:355
3823
  #: inc/class-page-settings.php:378
3824
  #, php-format
3825
  #@ backwpup
3872
  msgid "Disabled WP Cron"
3873
  msgstr "WP Cron abgeschaltet"
3874
 
3875
+ #: inc/class-job.php:285
3876
  #, php-format
3877
  #@ backwpup
3878
  msgid "[INFO] Maximum script execution time is %1$d seconds"
3879
  msgstr "[INFO] Maximale Script ausführungszeit ist %1$d Sekunden"
3880
 
3881
+ #: inc/class-page-jobs.php:212
3882
  #, php-format
3883
  #@ backwpup
3884
  msgid "Runtime: %d seconds"
3885
  msgstr "Ausführungszeit: %d Sekunden"
3886
 
3887
+ #: inc/class-job.php:611
3888
  #@ backwpup
3889
  msgid "Second process start terminated, because a other job is already running!"
3890
  msgstr "Ein zweiter Prozess start wurde abgebrochen, weil der alte Auftrag noch läuft!"
3891
 
3892
+ #: inc/class-job.php:864
3893
  #, php-format
3894
  #@ backwpup
3895
  msgid "Signal %d is sent to script!"
3896
  msgstr "Signal %d wurde zum Script gesendet!"
3897
 
3898
  #: inc/class-page-backups.php:318
3899
+ #: inc/class-page-jobs.php:210
3900
  #: inc/class-page-logs.php:181
3901
  #, php-format
3902
  #@ backwpup
3903
  msgid "%1$s at %2$s"
3904
  msgstr "%1$s um %2$s"
3905
 
3906
+ #: inc/class-page-jobs.php:195
3907
  #, php-format
3908
  #@ backwpup
3909
  msgid "%1$s at %2$s by WP-Cron"
3919
  msgid "Manual"
3920
  msgstr "Handbuch"
3921
 
3922
+ #: inc/class-job.php:283
3923
  #@ backwpup
3924
  msgid "[INFO] BackWPup job started form commandline interface"
3925
  msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
3926
 
3927
+ #: inc/class-job.php:531
3928
  #@ default
3929
  msgid "Job Started"
3930
  msgstr ""
3934
  msgid "DB Backup"
3935
  msgstr "Datenbank-Backup"
3936
 
3937
+ #: inc/class-page-about.php:75
3938
  #, php-format
3939
  #@ backwpup
3940
  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."
3941
  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."
3942
 
3943
+ #: inc/class-page-about.php:85
3944
  #@ backwpup
3945
  msgid "First set up a job, and plan what you want to save."
3946
  msgstr "Erstellen Sie einen Auftrag, dann planen Sie, was Sie sichern möchten."
3947
 
3948
+ #: inc/class-page-about.php:112
3949
  #@ backwpup
3950
  msgid "Save your database"
3951
  msgstr "Sichern Sie Ihre Datenbank"
3952
 
3953
+ #: inc/class-page-about.php:115
3954
  #@ backwpup
3955
  msgid "Save your database regularly"
3956
  msgstr "Sichern Sie Ihre Datenbank regelmäßig"
3957
 
3958
+ #: inc/class-page-about.php:121
3959
+ #: inc/class-page-about.php:125
3960
  #@ backwpup
3961
  msgid "WordPress XML Export"
3962
  msgstr "WordPress-XML-Export"
3963
 
3964
+ #: inc/class-page-about.php:122
3965
  #@ backwpup
3966
  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."
3967
  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."
3968
 
3969
+ #: inc/class-page-about.php:130
3970
  #@ backwpup
3971
  msgid "Save all data from the webserver"
3972
  msgstr "Sichern Sie alle Daten vom Webserver"
3973
 
3974
+ #: inc/class-page-about.php:133
3975
  #@ backwpup
3976
  msgid "Save all files"
3977
  msgstr "Sichern Sie alle Dateien"
3978
 
3979
+ #: inc/class-page-about.php:139
3980
+ #: inc/class-page-about.php:143
3981
  #@ backwpup
3982
  msgid "Security!"
3983
  msgstr "Sicherheit!"
3984
 
3985
+ #: inc/class-page-about.php:140
3986
  #@ backwpup
3987
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3988
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
3989
 
3990
+ #: inc/class-page-about.php:148
3991
+ #: inc/class-page-about.php:151
3992
  #@ backwpup
3993
  msgid "Cloud Support"
3994
  msgstr "Cloud-Support"
3995
 
3996
+ #: inc/class-page-about.php:152
3997
  #@ backwpup
3998
  msgid "BackWPup supports multiple cloud services in parallel. This ensures the backups are redundant."
3999
  msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
4000
 
4001
+ #: inc/class-page-about.php:342
4002
  #@ backwpup
4003
  msgid "Backup now!"
4004
  msgstr "Sichern Sie Ihre Daten jetzt!"
4005
 
4006
+ #: inc/class-page-editjob.php:627
4007
  #@ backwpup
4008
  msgid "Start job with CLI"
4009
  msgstr "Auftrag per CLI starten"
4026
  msgid "Warnings: %1$d Errors: %2$d"
4027
  msgstr "Warnungen: %1$d Fehler: %2$d"
4028
 
4029
+ #: inc/features/class-jobtype-dbdump-pro.php:198
4030
  #@ backwpup
4031
  msgid "Path to <em>mysqldump</em> file"
4032
  msgstr "Pfad zum <em>mysqldump</em>"
4060
  msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
4061
  msgstr "Wir empfehlen, die PHP-Erweiterung FTP zu installieren, um das Speicherziel FTP zu verwenden."
4062
 
4063
+ #: inc/class-page-jobs.php:322
4064
  #, php-format
4065
  #@ backwpup
4066
  msgid "Temp folder %s does not exist and cannot be created. Please create it and set proper write permissions."
4067
  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."
4068
 
4069
+ #: inc/class-page-jobs.php:331
4070
  #, php-format
4071
  #@ backwpup
4072
  msgid "Logs folder %s does not exist and cannot be created. Please create it and set proper write permissions."
4120
  msgid "New Job"
4121
  msgstr "Bitte geben Sie einen Namen ein"
4122
 
4123
+ #: inc/class-page-editjob.php:752
4124
  #@ backwpup
4125
  msgid "Minutes:"
4126
  msgstr "Minuten:"
4161
  msgid "cURL SSL version"
4162
  msgstr "cURL-SSL-Version"
4163
 
4164
+ #: inc/class-page-about.php:61
4165
  #@ backwpup
4166
  msgid "S3 Settings"
4167
  msgstr "S3-Einstellungen"
4168
 
4169
+ #: inc/class-page-about.php:63
4170
  #@ backwpup
4171
  msgid "All your passwords"
4172
  msgstr "All Ihre Passwörter"
4173
 
4174
+ #: inc/class-page-editjob.php:464
4175
  #@ backwpup
4176
  msgid "Synchronize file by file to destination"
4177
  msgstr "Synchronisiere Datei für Datei zum Auftragsziel"
4178
 
4179
+ #: inc/class-page-editjob.php:474
4180
  #@ backwpup
4181
  msgid "Archive name"
4182
  msgstr "Archivname"
4183
 
4184
+ #: inc/class-page-jobs.php:215
4185
  #@ backwpup
4186
  msgid "not yet"
4187
  msgstr "noch nicht"
4214
  msgid "Last message: %s"
4215
  msgstr "Letzte Nachricht: %s"
4216
 
4217
+ #: inc/class-admin.php:404
4218
  #, php-format
4219
  #@ backwpup
4220
  msgctxt "link to Inpsyde.com, link text: Inpsyde GmbH"
4221
  msgid "A project of %s"
4222
  msgstr "Ein Projekt der %s"
4223
 
4224
+ #: inc/class-admin.php:405
4225
  #, php-format
4226
  #@ backwpup
4227
  msgctxt "developer name, link text: Daniel Hüsken"
4228
  msgid "Developer: %s"
4229
  msgstr "Entwickler: %s"
4230
 
4231
+ #: inc/class-page-about.php:73
4232
  #: inc/class-page-backwpup.php:86
4233
  #@ backwpup
4234
  msgid "Here you can schedule backup plans with a wizard."
4235
  msgstr "Hier können Sie Backups mit einem Assistenten planen."
4236
 
4237
+ #: inc/class-page-about.php:74
4238
+ #: inc/class-page-about.php:84
4239
  #: inc/class-page-backwpup.php:87
4240
  #: inc/class-page-backwpup.php:93
4241
  #@ backwpup
4242
  msgid "The backup files can be used to save your whole installation including <code>/wp-content/</code> and push them to an external Backup Service, if you don’t want to save the backups on the same server. With a single backup file you are able to restore an installation."
4243
  msgstr "Die Backup-Dateien können genutzt werden, um Ihre komplette Installation inklusive des Verzeichnisses <code>/wp-content/</code> zu sichern und an einen externen Backup-Dienst zu senden, wenn Sie Ihre Backups nicht auf dem selben Server speichern möchten. Mit einer einzigen Backup-Datei können Sie Ihre komplette Installation wiederherstellen."
4244
 
4245
+ #: inc/class-page-about.php:116
4246
  #, php-format
4247
  #@ backwpup
4248
  msgid "With BackWPup you can schedule the database backup to run automatically. With a single backup file you can restore your database. You should <a href=\"%s\">set up a backup job</a>, so you will never forget it. There is also an option to repair and optimize the database after each backup."
4249
  msgstr "Mit BackWPup können Sie automatische Datenbank-Backups planen. Mit einer einzigen Backup-Datei können Sie Ihre Datenbank wiederherstellen. Sie sollten einen <a href=\\\"%s\\\">Backup-Auftrag einrichten</a>, damit Sie es nie mehr vergessen. Es gibt auch eine Option, um die Datenbank anschließend zu reparieren und zu optimieren."
4250
 
4251
+ #: inc/class-page-about.php:134
4252
  #, php-format
4253
  #@ backwpup
4254
  msgid "You can back up all your attachments, also all system files, plugins and themes in a single file. You can <a href=\"%s\">create a job</a> to update a backup copy of your file system only when files are changed."
4255
  msgstr "Sie können all Ihre Anhänge sichern, ebenso alle Systemdateien, Plugins und Themes – in einer einzigen Datei. Sie können einen <a href=\\\"%s\\\">Auftrag erstellen</a>, um die Sicherungskopie nur dann zu aktualisieren, wenn sich tatsächlich eine Datei geändert hat."
4256
 
4257
+ #: inc/class-page-editjob.php:620
4258
  #@ backwpup
4259
  msgid "Copy the link for an external start. This option has to be activated to make the link work."
4260
  msgstr "Kopieren Sie den Link für einen externen Auftragsstart. Diese Option muss erst aktiviert werden, damit der Link funktioniert."
4261
 
4262
+ #: inc/class-page-editjob.php:630
4263
  #, php-format
4264
  #@ backwpup
4265
  msgid "Use <a href=\"http://wp-cli.org/\">WP-CLI</a> to run jobs from commandline or <a href=\"%s\">get the start script</a>."
4266
  msgstr "Verwenden Sie <a href=\"http://wp-cli.org/\">WP-CLI</a>, um Aufträge per Kommandozeile auszulösen, oder <a href=\"%s\">dieses Start-Script</a>."
4267
 
4268
+ #: inc/class-page-editjob.php:501
4269
  #@ backwpup
4270
  msgid "Replacement patterns:"
4271
  msgstr "Ersetzungsmuster:"
4272
 
4273
+ #: inc/class-page-settings.php:437
4274
  #@ backwpup
4275
  msgid "WP memory limit"
4276
  msgstr "WordPress-Memory-Limit"
4277
 
4278
+ #: inc/class-page-settings.php:438
4279
  #@ backwpup
4280
  msgid "WP Maximum memory limit"
4281
  msgstr "Maximales WordPress-Memory-Limit"
4319
  msgid "First set up a job, and plan what you want to save. Please note: the plugin author gives no warranty for your data."
4320
  msgstr "Erstellen Sie erst einen Auftrag, und planen Sie, was Sie sichern möchten. Bitte beachten Sie: Die Pluginautoren übernehmen keine Gewähr für Ihre Daten."
4321
 
4322
+ #: inc/class-page-editjob.php:308
4323
  #@ backwpup
4324
  msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
4325
  msgstr "Als <a href=\\\"http://de.wikipedia.org/wiki/Cron\\\">Cron-Job</a> ausführen:"
4334
  msgid "Compress log files with GZip."
4335
  msgstr "Komprimiere Logdateien mit Gzip."
4336
 
4337
+ #: inc/features/class-page-wizard.php:220
4338
  #, php-format
4339
  #@ backwpup
4340
  msgctxt "Plugin Name"
4341
  msgid "%s Wizards"
4342
  msgstr "%s-Assistenten"
4343
 
4344
+ #: inc/features/class-page-wizard.php:259
4345
  #, php-format
4346
  #@ backwpup
4347
  msgctxt "Plugin Name"
4358
  msgid "Settings reset to default"
4359
  msgstr "Die Einstellungen wurden zurückgesetzt."
4360
 
4361
+ #: inc/class-page-settings.php:463
4362
  #@ backwpup
4363
  msgid "Reset all settings to default"
4364
  msgstr "Alle Einstellungen zurücksetzen"
4365
 
4366
+ #: inc/features/class-page-wizard.php:332
4367
  #@ backwpup
4368
  msgid "Back to overview"
4369
  msgstr "Zurück zur Übersicht"
4378
  msgid "Include special files"
4379
  msgstr "Spezielle Dateien einschließen"
4380
 
4381
+ #: inc/features/class-jobtype-dbdump-pro.php:785
4382
  #, php-format
4383
  #@ backwpup
4384
  msgid "Dump database structure \"%s\""
4431
  msgid "ZipArchive returns status: %s"
4432
  msgstr "Das Zip-Archive liefert den Status: %s"
4433
 
4434
+ #: inc/class-job.php:1658
4435
  #, php-format
4436
  #@ backwpup
4437
  msgid "%d. Trying to create backup archive &hellip;"
4438
  msgstr "%d. Versuche, Backup zu erstellen …"
4439
 
4440
+ #: inc/class-job.php:1665
4441
  #, php-format
4442
  #@ backwpup
4443
  msgctxt "Archive compression method"
4444
  msgid "Compression method is %s"
4445
  msgstr "Komprimierungsmethode ist %s"
4446
 
4447
+ #: inc/class-job.php:1714
4448
  #@ backwpup
4449
  msgid "Backup archive created."
4450
  msgstr "Backup wurde erstellt."
4460
  msgid "Could not find content for this page. Please try again later."
4461
  msgstr "Konnte den Inhalt der Seite nicht finden. Bitte versuchen Sie es später."
4462
 
4463
+ #: inc/features/class-jobtype-dbdump-pro.php:192
4464
  #@ backwpup
4465
  msgid "SQL File"
4466
  msgstr "SQL-Datei"
4467
 
4468
+ #: inc/features/class-jobtype-dbdump-pro.php:193
4469
  #@ backwpup
4470
  msgid "XML File (phpMyAdmin schema)"
4471
  msgstr "XML-Datei (phpMyAdmin-Schema9"
4472
 
4473
+ #: inc/features/class-jobtype-dbdump-pro.php:625
4474
  #, php-format
4475
  #@ backwpup
4476
  msgctxt "Executed shell_exec() command"
4477
  msgid "CLI Exec: %s"
4478
  msgstr "CLI-Exec: %s"
4479
 
4480
+ #: inc/features/class-jobtype-dbdump-pro.php:628
4481
  #, php-format
4482
  #@ backwpup
4483
  msgctxt "Output of a shell_exec()"
4557
  msgid "Your license for the plugin %s is not valid. The auto-update has been deactivated."
4558
  msgstr "Der Lizenzschlüssel für das Plugin %s ist ungültig. Die automatische Aktualisierung wurde abgeschaltet."
4559
 
4560
+ #: inc/class-job.php:271
4561
  #, php-format
4562
  #@ backwpup
4563
  msgctxt "Plugin name; Plugin Version; WordPress Version"
4564
  msgid "[INFO] %1$s version %2$s; WordPress version %3$s; A project of Inpsyde GmbH developed by Daniel Hüsken"
4565
  msgstr "[INFO] %1$s Version %2$s; WordPress Version %3$s; Ein Projekt der Inpsyde GmbH, entwickelt von Daniel Hüsken"
4566
 
4567
+ #: inc/class-page-about.php:102
4568
  #@ backwpup
4569
  msgid "Please activate your license"
4570
  msgstr "Bitte aktivieren Sie Ihre Lizenz."
4571
 
4572
+ #: inc/class-page-about.php:103
4573
  #@ backwpup
4574
  msgid "Please go to your plugin page and active the license to have the autoupdates enabled."
4575
  msgstr "Bitte gehen Sie auf die Plugin-Seite, und aktivieren Sie die Lizenz, um automatische Aktualisierungen zu aktivieren."
4591
  msgid "Plugin on wordpress.org"
4592
  msgstr "Plugin auf wordpress.org"
4593
 
4594
+ #: inc/class-job.php:1604
4595
  #, php-format
4596
  #@ backwpup
4597
  msgctxt "Folder name"
4598
  msgid "Folder %s not exists"
4599
  msgstr "Verzeichnis %s existiert nicht"
4600
 
4601
+ #: inc/class-job.php:1608
4602
  #, php-format
4603
  #@ backwpup
4604
  msgctxt "Folder name"
4605
  msgid "Folder %s not readable"
4606
  msgstr "Verzeichnis %s ist nicht lesbar"
4607
 
4608
+ #: inc/class-page-jobs.php:319
4609
  #, php-format
4610
  #@ backwpup
4611
  msgid "Temp folder %s not read or writable. Please set proper write permissions."
4612
  msgstr "Das Temporäre Verzeichnis %s ist nicht lesbar oder schreibbar. Bitte setze Schreibberechtigung."
4613
 
4614
+ #: inc/class-page-jobs.php:328
4615
  #, php-format
4616
  #@ backwpup
4617
  msgid "Logs folder %s is not read or writable. Please set proper write permissions."
4618
  msgstr "Das Logdateien Verzeichnis %s ist nicht lesbar oder schreibbar. Bitte setze Schreibberechtigung."
4619
 
4620
+ #: inc/class-page-about.php:160
4621
  #@ backwpup
4622
  msgid "Features / differences between Free and Pro"
4623
  msgstr "Features / Unterschiede zwischen Free und Pro"
4624
 
4625
+ #: inc/class-page-about.php:163
4626
  #@ backwpup
4627
  msgid "Features"
4628
  msgstr "Features"
4629
 
4630
+ #: inc/class-page-about.php:164
4631
  #@ backwpup
4632
  msgid "FREE"
4633
  msgstr "FREE"
4634
 
4635
+ #: inc/class-page-about.php:165
4636
  #@ backwpup
4637
  msgid "PRO"
4638
  msgstr "PRO"
4639
 
4640
+ #: inc/class-page-about.php:168
4641
  #@ backwpup
4642
  msgid "Complete database backup"
4643
  msgstr "Vollständige Datenbanksicherung"
4644
 
4645
+ #: inc/class-page-about.php:173
4646
  #@ backwpup
4647
  msgid "Complete file backup"
4648
  msgstr "Vollständige Dateisicherung"
4649
 
4650
+ #: inc/class-page-about.php:178
4651
  #@ backwpup
4652
  msgid "Database check"
4653
  msgstr "Datenbanküberprüfung"
4654
 
4655
+ #: inc/class-page-about.php:183
4656
  #@ backwpup
4657
  msgid "Data compression"
4658
  msgstr "Datenbankoptimierung"
4659
 
4660
+ #: inc/class-page-about.php:193
4661
  #@ backwpup
4662
  msgid "List of installed plugins"
4663
  msgstr "Liste installierter Plugins"
4664
 
4665
+ #: inc/class-page-about.php:198
4666
  #@ backwpup
4667
  msgid "Backup archives management"
4668
  msgstr "Verwaltung der Backup-Archive"
4669
 
4670
+ #: inc/class-page-about.php:203
4671
  #@ backwpup
4672
  msgid "Log file management"
4673
  msgstr "Verwaltung der Log-Dateien"
4674
 
4675
+ #: inc/class-page-about.php:208
4676
  #@ backwpup
4677
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
4678
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend, WP-CLI"
4679
 
4680
+ #: inc/class-page-about.php:213
4681
  #@ backwpup
4682
  msgid "Log report via email"
4683
  msgstr "Log-Report via E-Mail"
4684
 
4685
+ #: inc/class-page-about.php:218
4686
  #@ backwpup
4687
  msgid "Backup to Microsoft Azure"
4688
  msgstr "Datensicherung zu Microsoft Azure"
4689
 
4690
+ #: inc/class-page-about.php:223
4691
  #@ backwpup
4692
  msgid "Backup as email"
4693
  msgstr "Datensicherung via E-Mail"
4694
 
4695
+ #: inc/class-page-about.php:228
4696
  #@ backwpup
4697
  msgid "Backup to S3 services <small>(Amazon, Google Storage, Hosteurope and more)</small>"
4698
  msgstr "Datensicherung zu S3-Dienstleistern <small>(Amazon, Google Storage, Hosteurope, usw)</small>"
4699
 
4700
+ #: inc/class-page-about.php:243
4701
  #@ backwpup
4702
  msgid "Backup to FTP server"
4703
  msgstr "Datensicherung auf FTP-Server"
4704
 
4705
+ #: inc/class-page-about.php:248
4706
  #@ backwpup
4707
  msgid "Backup to your web space"
4708
  msgstr "Datensicherung auf eigenem Webspace"
4709
 
4710
+ #: inc/class-page-about.php:258
4711
  #@ backwpup
4712
  msgid "Custom API keys for DropBox and SugarSync"
4713
  msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen"
4714
 
4715
+ #: inc/class-page-about.php:263
4716
  #@ backwpup
4717
  msgid "XML database backup as PHPMyAdmin schema"
4718
  msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema"
4719
 
4720
+ #: inc/class-page-about.php:268
4721
  #@ backwpup
4722
  msgid "Database backup as mysqldump per command line"
4723
  msgstr "Datenbanksicherung mit System-Kommando mysqldump"
4724
 
4725
+ #: inc/class-page-about.php:273
4726
  #@ backwpup
4727
  msgid "Database backup for additional MySQL databases"
4728
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
4729
 
4730
+ #: inc/class-page-about.php:278
4731
  #@ backwpup
4732
  msgid "Import and export job settings as XML"
4733
  msgstr "Auftragseinstellungen als XML ex- und importieren"
4734
 
4735
+ #: inc/class-page-about.php:283
4736
  #@ backwpup
4737
  msgid "Wizard for system tests"
4738
  msgstr "Assistent zur Ausführung eines Systemtests"
4739
 
4740
+ #: inc/class-page-about.php:288
4741
  #@ backwpup
4742
  msgid "Wizard for scheduled backup jobs"
4743
  msgstr "Assistent zur Einrichtung von Sicherungsaufträgen"
4744
 
4745
+ #: inc/class-page-about.php:293
4746
  #@ backwpup
4747
  msgid "Wizard to import settings and backup jobs"
4748
  msgstr "Assistent zum Importieren von Einstellungen und Aufträgen"
4749
 
4750
+ #: inc/class-page-about.php:298
4751
  #@ backwpup
4752
  msgid "Differential backup of changed directories to Dropbox"
4753
  msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox"
4754
 
4755
+ #: inc/class-page-about.php:303
4756
  #@ backwpup
4757
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
4758
  msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
4759
 
4760
+ #: inc/class-page-about.php:308
4761
  #@ backwpup
4762
  msgid "Differential backup of changed directories to S3"
4763
  msgstr "Sicherung geänderter Verzeichnisse nach S3"
4764
 
4765
+ #: inc/class-page-about.php:313
4766
  #@ backwpup
4767
  msgid "Differential backup of changed directories to MS Azure"
4768
  msgstr "Sicherung geänderter Verzeichnisse nach MS Azure"
4769
 
4770
+ #: inc/class-page-about.php:318
4771
  #@ backwpup
4772
  msgid "<strong>Premium support</strong>"
4773
  msgstr "<strong>Premium-Support</strong>"
4774
 
4775
+ #: inc/class-page-about.php:323
4776
  #@ backwpup
4777
  msgid "<strong>Dynamically loaded documentation</strong>"
4778
  msgstr "<strong>Integration einer dynamischen Dokumentation</strong>"
4779
 
4780
+ #: inc/class-page-about.php:328
4781
  #@ backwpup
4782
  msgid "<strong>Automatic update from MarketPress</strong>"
4783
  msgstr "<strong>Automatische Aktualisierung durch MarketPress</strong>"
4784
 
4785
+ #: inc/class-page-about.php:335
4786
  #@ backwpup
4787
  msgid "http://marketpress.com/product/backwpup-pro/"
4788
  msgstr "http://marketpress.de/product/backwpup-pro/"
4789
 
4790
+ #: inc/class-page-about.php:335
4791
  #@ backwpup
4792
  msgid "GET PRO"
4793
  msgstr "GET PRO"
4840
  msgid "Folder path \"%1$s\" too long to be saved correctly in %2$s archive!"
4841
  msgstr "Verzeichnis Pfad \"%1$s\" ist zu lang um ihn koreckt zu speichern im %2$s Archiv"
4842
 
4843
+ #: inc/class-job.php:452
4844
+ #: inc/class-job.php:453
4845
  #@ backwpup
4846
  msgid "Backups folder does not exist or is not writable for BackWPup"
4847
  msgstr "Backups Verzeichnis existiert nicht oder ist nicht beschreibbar von BackWPup"
4851
  msgid "No MySQLi extension found. Please install it."
4852
  msgstr "Keine MySQLi Erweiterung gefunden. Bitte installieren Sie diese"
4853
 
4854
+ #: inc/class-page-jobs.php:339
4855
  #, php-format
4856
  #@ backwpup
4857
  msgid "Backups folder %s is not read or writable. Please set proper write permissions."
4858
  msgstr "Backups Verzeichnis nicht lesbar oder nicht beschreibbar. Bitte die richtigen Berechtigungen setzen."
4859
 
4860
+ #: inc/class-page-jobs.php:342
4861
  #, php-format
4862
  #@ backwpup
4863
  msgid "Backups folder %s does not exist and cannot be created. Please create it and set proper write permissions."
4864
  msgstr "Backups Verzeichnis %s existiert nicht und kann nicht angelegt werden. Bitte überprüfen Sie die Berechtigungen."
4865
 
4866
+ #: inc/class-page-jobs.php:481
4867
  #@ backwpup
4868
  msgid "Working job log"
4869
  msgstr "Auftrags lLog"
4873
  msgid "The file name of an archive cannot be empty."
4874
  msgstr "Der Dateiname eines Archivs kann nicht leer sein."
4875
 
4876
+ #: inc/class-admin.php:289
4877
+ #: inc/class-admin.php:295
 
 
 
 
 
 
4878
  #@ backwpup
4879
  msgid "Cheating, huh?"
4880
  msgstr "Mogeln, wie?"
4881
 
4882
+ #: inc/class-admin.php:438
4883
  #, php-format
4884
  #@ backwpup
4885
  msgid "You have activated or updated BackWPup. Please check <a href=\"%s\">this page</a>."
4902
  msgid "Aborted, because no progress for 2 hours!"
4903
  msgstr "Abgebrochen, da seit 2 Stunden kein Fortschritt!"
4904
 
 
 
 
 
 
 
4905
  #: inc/features/class-destination-dropbox-pro.php:40
4906
  #@ backwpup
4907
  msgid "Dropbox authentication not approved!"
4908
  msgstr "Dropbox-Authentifizierung nicht angenommen!"
4909
 
4910
+ #: inc/class-destination-dropbox.php:232
4911
  #, php-format
4912
  #@ backwpup
4913
  msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
4914
  msgstr "%d. Versuche, das Backup zur Dropbox zu senden&#160;&hellip;"
4915
 
4916
+ #: inc/class-destination-dropbox.php:240
4917
  #: inc/features/class-destination-dropbox-pro.php:135
4918
  #, php-format
4919
  #@ backwpup
4920
  msgid "Authenticated with Dropbox of user %s"
4921
  msgstr "Authentifiziert mit Dropbox von Benutzer %s"
4922
 
4923
+ #: inc/class-destination-dropbox.php:245
4924
  #@ backwpup
4925
  msgid "Your Dropbox appears to be full."
4926
  msgstr "Deine Dropbox scheint voll zu sein."
4927
 
4928
+ #: inc/class-destination-dropbox.php:250
4929
  #: inc/features/class-destination-dropbox-pro.php:139
4930
  #, php-format
4931
  #@ backwpup
4932
  msgid "%s available on your Dropbox"
4933
  msgstr "%s verfügbar in deiner Dropbox"
4934
 
4935
+ #: inc/class-destination-dropbox.php:254
4936
  #@ backwpup
4937
  msgid "Uploading to Dropbox&#160;&hellip;"
4938
  msgstr "Hochladen zur Dropbox hat begonnen&#160;&hellip;"
4939
 
4940
+ #: inc/class-destination-dropbox.php:264
4941
  #@ backwpup
4942
  msgid "Uploaded file size and local file size don't match."
4943
  msgstr "Größe der lokalen und der hochgeladenen Datei ist nicht identisch."
4944
 
4945
+ #: inc/class-destination-dropbox.php:313
4946
  #, php-format
4947
  #@ backwpup
4948
  msgid "Error while deleting file from Dropbox: %s"
4949
  msgstr "Fehler beim Löschen der Datei aus der Dropbox: %s"
4950
 
4951
+ #: inc/class-destination-dropbox.php:316
4952
  #, php-format
4953
  #@ backwpup
4954
  msgid "One file deleted from Dropbox"
5047
  msgid "Sending e-mail to %s&hellip;"
5048
  msgstr "Sende E-Mail an %s&hellip;"
5049
 
5050
+ #: inc/class-destination-email.php:331
5051
+ #: inc/class-destination-email.php:452
5052
  #@ backwpup
5053
  msgid "Error while sending e-mail!"
5054
  msgstr "Fehler beim Senden der E-Mail"
5055
 
5056
+ #: inc/class-destination-email.php:337
5057
+ #: inc/class-destination-email.php:454
5058
  #@ backwpup
5059
  msgid "E-Mail sent."
5060
  msgstr "E-Mail gesendet."
5061
 
5062
+ #: inc/class-destination-email.php:439
5063
  #@ backwpup
5064
  msgid "If this message reaches your inbox, sending backup archives via e-mail should work for you."
5065
  msgstr "Wenn dich diese Nachricht erreicht, funktioniert das Senden der Sicherungsarchive per E-Mail."
5130
  #: inc/class-destination-ftp.php:248
5131
  #: inc/class-destination-ftp.php:256
5132
  #: inc/class-destination-ftp.php:267
5133
+ #: inc/class-destination-ftp.php:311
5134
  #, php-format
5135
  #@ backwpup
5136
  msgid "FTP client command: %s"
5140
  #: inc/class-destination-ftp.php:258
5141
  #: inc/class-destination-ftp.php:270
5142
  #: inc/class-destination-ftp.php:272
 
 
 
5143
  #: inc/class-destination-ftp.php:314
5144
+ #: inc/class-destination-ftp.php:316
5145
+ #: inc/class-destination-ftp.php:320
5146
+ #: inc/class-destination-ftp.php:322
5147
  #, php-format
5148
  #@ backwpup
5149
  msgid "FTP server reply: %s"
5150
  msgstr "Antwort des FTP-Servers: %s"
5151
 
5152
+ #: inc/class-destination-ftp.php:326
5153
  #@ backwpup
5154
  msgid "Starting upload to FTP &#160;&hellip;"
5155
  msgstr "Hochladen ins FTP-Verzeichnis hat begonnen&#160;&hellip;"
5156
 
5157
+ #: inc/class-destination-ftp.php:390
5158
  #, php-format
5159
  #@ backwpup
5160
  msgid "One file deleted on FTP server"
5261
  msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Developed by <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
5262
  msgstr "%1$s version %2$s. Ein Projekt der <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Entwickler: <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
5263
 
5264
+ #: inc/class-job.php:868
5265
  #@ backwpup
5266
  msgid "Script stopped! Will start again."
5267
  msgstr "Script angehalten! Wird neu gestartet."
5289
  msgstr "Erstellt ein Datenbank-Backup (.sql, .xml)"
5290
 
5291
  #: inc/class-jobtype-dbdump.php:163
5292
+ #: inc/features/class-jobtype-dbdump-pro.php:463
5293
  #, php-format
5294
  #@ backwpup
5295
  msgid "%d. Try to dump database&#160;&hellip;"
5343
  msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
5344
  msgstr "%d. Versuche, eine Liste der Ordner für das Backup zu erstellen&#160;&hellip;"
5345
 
5346
+ #: inc/class-jobtype-wpexp.php:46
5347
  #@ backwpup
5348
  msgid "Items to export"
5349
  msgstr "Objekte zum Exportieren"
5350
 
5351
+ #: inc/class-jobtype-wpexp.php:105
5352
  #, php-format
5353
  #@ backwpup
5354
  msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
5366
  msgstr "Alle Plugin-Informationen"
5367
 
5368
  #: inc/class-mysqldump.php:90
5369
+ #: inc/features/class-jobtype-dbdump-pro.php:697
5370
  #, php-format
5371
  #@ backwpup
5372
  msgid "Cannot connect to MySQL database %1$d: %2$s"
5377
  msgid "Error while writing file!"
5378
  msgstr "Fehler beim Schreiben!"
5379
 
5380
+ #: inc/class-page-about.php:57
5381
  #@ backwpup
5382
  msgid "Heads up! You have updated from version 2.x"
5383
  msgstr "Achtung! Sie haben von Version 2.x aktualisiert"
5384
 
5385
+ #: inc/class-page-about.php:58
5386
  #, php-format
5387
  #@ backwpup
5388
  msgid "Please <a href=\"%s\">check your settings</a> after updating from version 2.x:"
5389
  msgstr "Bitte <a href=\"%s\">prüfen Sie Ihre Einstellungen</a> nach dem Update von Version 2.x."
5390
 
5391
+ #: inc/class-page-about.php:59
5392
  #@ backwpup
5393
  msgid "Dropbox authentication must be re-entered"
5394
  msgstr "Die Drohbox-Authentifizierung muss wiederholt werden."
5395
 
5396
+ #: inc/class-page-about.php:60
5397
  #@ backwpup
5398
  msgid "SugarSync authentication must be re-entered"
5399
  msgstr "Die SugarSync-Authentifizierung muss wiederholt werden"
5400
 
5401
+ #: inc/class-page-about.php:62
5402
  #@ backwpup
5403
  msgid "Google Storage is now a part of S3 service settings"
5404
  msgstr "Google Storage ist jetzt Teil der S3-Einstellungen"
5420
  #: inc/class-page-backups.php:340
5421
  #: inc/class-page-backups.php:352
5422
  #: inc/class-page-editjob.php:41
5423
+ #: inc/class-page-jobs.php:312
5424
  #@ backwpup
5425
  msgid "Sorry, you don't have permissions to do that."
5426
  msgstr "Sie haben nicht die notwendigen Berechtigungen für diese Aktion."
5440
  msgid "OK"
5441
  msgstr "OK"
5442
 
5443
+ #: inc/class-page-editjob.php:420
5444
  #@ backwpup
5445
  msgid "Please name this job."
5446
  msgstr "Bitte benennen Sie diesen Auftrag."
5447
 
5448
+ #: inc/class-page-editjob.php:428
5449
  #@ backwpup
5450
  msgid "Job Tasks"
5451
  msgstr "Auftragsdetails"
5452
 
5453
+ #: inc/class-page-editjob.php:432
5454
  #: inc/features/class-wizard-job.php:225
5455
  #@ backwpup
5456
  msgid "This job is a&#160;&hellip;"
5457
  msgstr "Dieser Auftrag ist ein&#160;&hellip;"
5458
 
5459
+ #: inc/class-page-editjob.php:451
5460
  #@ backwpup
5461
  msgid "Backup File Creation"
5462
  msgstr "Erstellen der Backup-Datei"
5463
 
5464
+ #: inc/class-page-editjob.php:481
5465
  #, php-format
5466
  #@ backwpup
5467
  msgid "%d = Two digit day of the month, with leading zeros"
5468
  msgstr "%d = Zweistelliger Tag des Monats, mit führenden Nullen"
5469
 
5470
+ #: inc/class-page-editjob.php:482
5471
  #, php-format
5472
  #@ backwpup
5473
  msgid "%j = Day of the month, without leading zeros"
5474
  msgstr "%j = Tag des Monats, ohne führende Nullen"
5475
 
5476
+ #: inc/class-page-editjob.php:483
5477
  #, php-format
5478
  #@ backwpup
5479
  msgid "%m = Day of the month, with leading zeros"
5480
  msgstr "%m = Tag des Monats, mit führenden Nullen"
5481
 
5482
+ #: inc/class-page-editjob.php:484
5483
  #, php-format
5484
  #@ backwpup
5485
  msgid "%n = Representation of the month (without leading zeros)"
5486
  msgstr "%n = Monat als Zahl (ohne führende Nullen)"
5487
 
5488
+ #: inc/class-page-editjob.php:485
5489
  #, php-format
5490
  #@ backwpup
5491
  msgid "%Y = Four digit representation for the year"
5492
  msgstr "%Y = Vierstellige Jahreszahl"
5493
 
5494
+ #: inc/class-page-editjob.php:486
5495
  #, php-format
5496
  #@ backwpup
5497
  msgid "%y = Two digit representation of the year"
5498
  msgstr "%y = Zweistellige Jahreszahl"
5499
 
5500
+ #: inc/class-page-editjob.php:487
5501
  #, php-format
5502
  #@ backwpup
5503
  msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)"
5504
  msgstr "%a = Kleingeschriebenes ante meridiem (am) und post meridiem (pm)"
5505
 
5506
+ #: inc/class-page-editjob.php:488
5507
  #, php-format
5508
  #@ backwpup
5509
  msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)"
5510
  msgstr "%A = Großgeschriebenes ante meridiem (AM) and post meridiem (PM)"
5511
 
5512
+ #: inc/class-page-editjob.php:489
5513
  #, php-format
5514
  #@ backwpup
5515
  msgid "%B = Swatch Internet Time"
5516
  msgstr "%B = Swatch Internet Time"
5517
 
5518
+ #: inc/class-page-editjob.php:490
5519
  #, php-format
5520
  #@ backwpup
5521
  msgid "%g = Hour in 12-hour format, without leading zeros"
5522
  msgstr "%g = Stunde im Zwölfstunden-Format, ohne führende Nullen"
5523
 
5524
+ #: inc/class-page-editjob.php:491
5525
  #, php-format
5526
  #@ backwpup
5527
  msgid "%G = Hour in 24-hour format, without leading zeros"
5528
  msgstr "%G = Stunde im 24-Stunden-Format, ohne führende Nullen"
5529
 
5530
+ #: inc/class-page-editjob.php:492
5531
  #, php-format
5532
  #@ backwpup
5533
  msgid "%h = Hour in 12-hour format, with leading zeros"
5534
  msgstr "%h = Stunde im Zwölfstunden-Format, mit führenden Nullen"
5535
 
5536
+ #: inc/class-page-editjob.php:493
5537
  #, php-format
5538
  #@ backwpup
5539
  msgid "%H = Hour in 24-hour format, with leading zeros"
5540
  msgstr "%H = Stunde im 24-Stunden-Format, mit führenden Nullen"
5541
 
5542
+ #: inc/class-page-editjob.php:494
5543
  #, php-format
5544
  #@ backwpup
5545
  msgid "%i = Two digit representation of the minute"
5546
  msgstr "%i = Zweistellige Minute"
5547
 
5548
+ #: inc/class-page-editjob.php:495
5549
  #, php-format
5550
  #@ backwpup
5551
  msgid "%s = Two digit representation of the second"
5552
  msgstr "%s = Zweistellige Sekunde"
5553
 
5554
+ #: inc/class-page-editjob.php:496
5555
  #, php-format
5556
  #@ backwpup
5557
  msgid "%u = Two digit representation of the microsecond"
5558
  msgstr "%u = Zweistellige Mikrosekunde"
5559
 
5560
+ #: inc/class-page-editjob.php:497
5561
  #, php-format
5562
  #@ backwpup
5563
  msgid "%U = UNIX timestamp (seconds since January 1 1970 00:00:00 GMT)"
5564
  msgstr "%U = UNIX-Zeitstempel (Sekunden seit dem 1. Januar 1970, 00:00:00 GMT)"
5565
 
5566
+ #: inc/class-page-editjob.php:520
5567
  #@ backwpup
5568
  msgid "PHP Zip functions will be used if available (needs less memory). Otherwise the PCLZip class will be used."
5569
  msgstr "PHP-Zip-Funktionen werden verwendet, sofern verfügbar (schneller). Ansonsten wird die Klasse PCLZip verwendet."
5570
 
5571
+ #: inc/class-page-editjob.php:522
5572
+ #: inc/class-page-editjob.php:527
5573
+ #: inc/class-page-editjob.php:531
5574
  #@ backwpup
5575
  msgid "Disabled due to missing PHP function."
5576
  msgstr "Deaktiviert wegen nicht verfügbarer PHP-Funktion."
5577
 
5578
+ #: inc/class-page-editjob.php:523
5579
  #@ backwpup
5580
  msgid "A tarballed, not compressed archive (fast and less memory)"
5581
  msgstr "Ein TAR-Archiv, nicht komprimiert (schnell und speicherschonend)"
5582
 
5583
+ #: inc/class-page-editjob.php:525
5584
  #@ backwpup
5585
  msgid "A tarballed, GZipped archive (fast and less memory)"
5586
  msgstr "Ein TAR-GZ-Archiv (schnell und speicherschonend)"
5587
 
5588
+ #: inc/class-page-editjob.php:529
5589
  #@ backwpup
5590
  msgid "A tarballed, BZipped archive (fast and less memory)"
5591
  msgstr "Ein TAR-BZ-Archiv (schnell und speicherschonend)"
5592
 
5593
+ #: inc/class-page-editjob.php:537
5594
  #@ backwpup
5595
  msgid "Job Destination"
5596
  msgstr "Zielordner des Auftrags"
5597
 
5598
+ #: inc/class-page-editjob.php:541
5599
+ #: inc/class-page-editjob.php:544
5600
  #@ backwpup
5601
  msgid "Where should your backup file be stored?"
5602
  msgstr "Wo soll die Backup-Datei gespeichert werden?"
5603
 
5604
+ #: inc/class-page-editjob.php:560
5605
  #@ backwpup
5606
  msgid "Log Files"
5607
  msgstr "Protokoll-Dateien"
5608
 
5609
+ #: inc/class-page-editjob.php:564
5610
  #@ backwpup
5611
  msgid "Send log to e-mail address"
5612
  msgstr "Protokoll-Datei an E-Mail-Adresse senden"
5613
 
5614
+ #: inc/class-page-editjob.php:568
5615
  #@ backwpup
5616
  msgid "Leave empty to not have log sent."
5617
  msgstr "Leer lassen, um kein Protokoll zu senden."
5618
 
5619
+ #: inc/class-page-editjob.php:572
5620
  #@ backwpup
5621
  msgid "E-Mail FROM field"
5622
  msgstr "VON-Feld der E-Mail"
5623
 
5624
+ #: inc/class-page-editjob.php:580
5625
  #@ backwpup
5626
  msgid "Errors only"
5627
  msgstr "Nur Fehler"
5628
 
5629
+ #: inc/class-page-editjob.php:585
5630
  #@ backwpup
5631
  msgid "Send e-mail with log only when errors occur during job execution."
5632
  msgstr "Sende eine E-Mail mit Protokoll nur, wenn während des Auftrags ein Fehler aufgetreten ist."
5633
 
5634
+ #: inc/class-page-editjob.php:596
5635
  #@ backwpup
5636
  msgid "Job Schedule"
5637
  msgstr "Auftragsplanung"
5638
 
5639
+ #: inc/class-page-editjob.php:631
5640
  #@ backwpup
5641
  msgid "Generate a server script file to let the job start with the server’s cron on command line interface. Alternatively use WP-CLI commands."
5642
  msgstr "Erzeugen Sie ein Serverscript, um einen Auftrag per Kommandoziele auszulösen, oder benutzen Sie WP-CLI."
5643
 
5644
+ #: inc/class-page-jobs.php:478
5645
  #, php-format
5646
  #@ backwpup
5647
  msgid "Job currently running: %s"
5648
  msgstr "Aktueller Auftrag wird bearbeitet: %s"
5649
 
5650
+ #: inc/class-page-jobs.php:618
5651
  #, php-format
5652
  #@ backwpup
5653
  msgid "Job completed in %s seconds."
5821
  msgid "Activate maintenance mode on table check"
5822
  msgstr "Aktiviere den Wartungsmodus bei der Tabellenprüfung"
5823
 
5824
+ #: inc/features/class-jobtype-dbdump-pro.php:203
5825
  #@ backwpup
5826
  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"
5827
  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."
5828
 
5829
+ #: inc/features/class-jobtype-dbdump-pro.php:552
5830
  #, php-format
5831
  #@ backwpup
5832
  msgid "%d. Try to dump MySQL system&#160;&hellip;"
5833
  msgstr "%d. Erstelle MySQL-System-Backup&#160;&hellip;"
5834
 
5835
+ #: inc/features/class-jobtype-dbdump-pro.php:632
5836
  #@ backwpup
5837
  msgid "Compressing file&#160;&hellip;"
5838
  msgstr "Datei wird komprimiert&#160;&hellip;"
5839
 
5840
+ #: inc/features/class-jobtype-dbdump-pro.php:674
5841
  #, php-format
5842
  #@ backwpup
5843
  msgid "%d. Try to dump database XML&#160;&hellip;"
6057
  msgid "Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.<br />ZipArchive = Uses less memory, but many open files at a time.<br />PclZip = Uses more memory, but only 2 open files at a time."
6058
  msgstr "Auto = Nutzt die PHP-Klasse ZipArchive falls verfügbar; andernfalls wird PclZip genutzt.<br />ZipArchive = Benötigt weniger Memory, aber viele offene Dateien gleichzeitig.<br />PclZip = Benötigt mehr Memory, aber nur 2 zur gleichen Zeit offene Dateien."
6059
 
6060
+ #: inc/class-page-editjob.php:576
6061
  #@ backwpup
6062
  msgid "E-Mail \"From\" field (Name &lt;&#160;you@your-email-address.tld&#160;&gt;)"
6063
  msgstr "\"VON\"-Feld der E-Mail (Name &lt;&#160;email@adresse.tld&#160;&gt;)"
6064
 
6065
+ #. translators: plugin header field 'Version'
6066
+ #: backwpup.php:0
6067
+ #@ backwpup
6068
+ msgid "3.0.6"
6069
+ msgstr ""
6070
+
6071
+ #: inc/class-destination-dropbox.php:43
6072
+ #@ backwpup
6073
+ msgid "Dropbox (Sandbox) authentication complete!"
6074
+ msgstr "Dropbox (Sandbox) Authentifizierung komplett!"
6075
+
6076
+ #: inc/class-job.php:1275
6077
+ #@ backwpup
6078
+ msgid "Blog is not setting to maintenance mode, because it is already active."
6079
+ msgstr "Blog wird nicht in den Wartungs Modus versetzt, da dieser bereizt aktiv ist."
6080
+
6081
+ #: inc/class-jobtype-dbdump.php:60
6082
+ #: inc/features/class-jobtype-dbdump-pro.php:111
6083
+ #@ backwpup
6084
+ msgid "Settings for database backup"
6085
+ msgstr "Einstellungen für das Datenbank Backup"
6086
+
6087
+ #: inc/class-jobtype-dbdump.php:64
6088
+ #: inc/features/class-jobtype-dbdump-pro.php:157
6089
+ #@ backwpup
6090
+ msgid "Tables to backup"
6091
+ msgstr "Tabellen zu sichern"
6092
+
6093
+ #: inc/features/class-jobtype-dbdump-pro.php:189
6094
+ #@ backwpup
6095
+ msgid "Database Backup type"
6096
+ msgstr "Datenbank Backup Type"
6097
+
languages/backwpup-es_ES.mo DELETED
Binary file
languages/backwpup-es_ES.po DELETED
@@ -1,1699 +0,0 @@
1
- # Copyright (C) 2010 BackWPup
2
- # This file is distributed under the same license as the BackWPup package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: BackWPup 1.5.0 en español\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2011-03-07 09:19+0100\n"
8
- "PO-Revision-Date: 2011-03-07 09:20+0100\n"
9
- "Last-Translator: Eduardo Larequi <elarequi@educacion.navarra.es>\n"
10
- "Language-Team: Eduardo Larequi <elarequi@gmail.com>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-Language: Spanish\n"
15
- "X-Poedit-Country: Spain\n"
16
- "X-Poedit-Basepath: ..\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_c;_x;esc_html__\n"
18
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: app/backwpup_dojob.php:64
22
- #, php-format
23
- msgid "BackWPup Log for %1$s from %2$s at %3$s"
24
- msgstr "Registro de BackWPup para %1$s, de %2$s, a las %3$s"
25
-
26
- #: app/backwpup_dojob.php:74
27
- msgid "Working Job will closed!!! And a new started!!!"
28
- msgstr "La tarea en ejecución se terminará y comenzará una nueva."
29
-
30
- #: app/backwpup_dojob.php:77
31
- #: app/backwpup_dojob.php:241
32
- #: app/options-save.php:63
33
- msgid "[ERROR]"
34
- msgstr "[ERROR]"
35
-
36
- #: app/backwpup_dojob.php:77
37
- msgid "Backup Aborted working to long!!!"
38
- msgstr "La copia de seguridad ha sido abortada. Tiempo de ejecución demasiado largo."
39
-
40
- #: app/backwpup_dojob.php:94
41
- #, php-format
42
- msgid "Job %1$s already running!!!"
43
- msgstr "La tarea %1$s ya se está ejecutando."
44
-
45
- #: app/backwpup_dojob.php:131
46
- #, php-format
47
- msgid "PHP Safe Mode is on!!! Max exec time is %1$d sec."
48
- msgstr "EL modo seguro (Safe Mode) de PHP está activado. El tiempo máximo de ejecución es de %1$d seg."
49
-
50
- #: app/backwpup_dojob.php:135
51
- #, php-format
52
- msgid "Memory limit set to %1$s ,because cannot use PHP: memory_get_usage() function to dynamically increase the Memory!"
53
- msgstr "El límite de memoria se ha establecido en %1$s, porque no se puede tuilizar la función memory_get_usage() de PHP para incrementar dinámicamente la memoria."
54
-
55
- #: app/backwpup_dojob.php:203
56
- msgid "old Log files deleted!!!"
57
- msgstr "los ficheros antiguos del registro han sido borrados."
58
-
59
- #: app/backwpup_dojob.php:208
60
- #, php-format
61
- msgid "Backup Archive File size is %1s"
62
- msgstr "El fichero de copia de seguridad tiene un tamaño de %1s"
63
-
64
- #: app/backwpup_dojob.php:210
65
- #, php-format
66
- msgid "Job done in %1s sec."
67
- msgstr "Tarea realizada en %1s seg."
68
-
69
- #: app/backwpup_dojob.php:235
70
- msgid "[WARNING]"
71
- msgstr "[ADVERTENCIA]"
72
-
73
- #: app/backwpup_dojob.php:245
74
- msgid "[DEPRECATED]"
75
- msgstr "[OBSOLETO]"
76
-
77
- #: app/backwpup_dojob.php:248
78
- msgid "[STRICT NOTICE]"
79
- msgstr "[AVISO DE SUMA IMPORTANCIA]"
80
-
81
- #: app/backwpup_dojob.php:251
82
- msgid "[RECOVERABLE ERROR]"
83
- msgstr "[ERROR RECUPERABLE]"
84
-
85
- #: app/backwpup_dojob.php:307
86
- #, php-format
87
- msgid "Cannot create Folder: %1$s"
88
- msgstr "No se ha podido crear el directorio: %1$s"
89
-
90
- #: app/backwpup_dojob.php:312
91
- #, php-format
92
- msgid "Cannot write to Folder: %1$s"
93
- msgstr "No se puede escribir en el directorio: %1$s"
94
-
95
- #: app/backwpup_dojob.php:346
96
- #, php-format
97
- msgid "PHP Safe Mode is on!!! Cannot increase Memory Limit is %1$s"
98
- msgstr "El modo seguro (Safe Mode) de PHP está activado. No se puede incrementar el límite de memoria, de %1$s"
99
-
100
- #: app/backwpup_dojob.php:373
101
- #, php-format
102
- msgid "Memory increased from %1$s to %2$s"
103
- msgstr "Memoria incrementada de %1$s a %2$s"
104
-
105
- #: app/backwpup_dojob.php:375
106
- #, php-format
107
- msgid "Cannot increase Memory Limit is %1$s"
108
- msgstr "No se ha podido incrementar el límite de memoria, de %1$s"
109
-
110
- #: app/backwpup_dojob.php:385
111
- msgid "Set Blog to Maintenance Mode"
112
- msgstr "MIentras se realiza la copia de seguridad de la base de datos, el blog se ha puesto en modo de mantenimiento"
113
-
114
- #: app/backwpup_dojob.php:401
115
- msgid "Set Blog to normal Mode"
116
- msgstr "Finalizada la copia de seguridad de la base de datos, el blog ha vuelto al modo normal"
117
-
118
- #: app/backwpup_dojob.php:417
119
- msgid "Run Database check..."
120
- msgstr "Ejecutar comprobación de la base de datos..."
121
-
122
- #: app/backwpup_dojob.php:432
123
- #: app/backwpup_dojob.php:434
124
- #: app/backwpup_dojob.php:436
125
- #, php-format
126
- msgid "Result of table check for %1$s is: %2$s"
127
- msgstr "El resultado de la verificación de la tabla %1$s es: %2$s"
128
-
129
- #: app/backwpup_dojob.php:439
130
- #: app/backwpup_dojob.php:451
131
- #: app/backwpup_dojob.php:475
132
- #: app/backwpup_dojob.php:485
133
- #: app/backwpup_dojob.php:530
134
- #: app/backwpup_dojob.php:542
135
- #: app/backwpup_dojob.php:669
136
- #, php-format
137
- msgid "BackWPup database error %1$s for query %2$s"
138
- msgstr "Error %1$s de la base de datos para la consulta %2$s"
139
-
140
- #: app/backwpup_dojob.php:444
141
- #: app/backwpup_dojob.php:446
142
- #: app/backwpup_dojob.php:448
143
- #, php-format
144
- msgid "Result of table repair for %1$s is: %2$s"
145
- msgstr "El resultado de la reparación de la tabla %1$s es: %2$s"
146
-
147
- #: app/backwpup_dojob.php:456
148
- msgid "Database check done!"
149
- msgstr "Verificación de la base de datos realizada."
150
-
151
- #: app/backwpup_dojob.php:458
152
- msgid "No Tables to check"
153
- msgstr "No hay tablas que verificar"
154
-
155
- #: app/backwpup_dojob.php:523
156
- msgid "Run Database Dump to file..."
157
- msgstr "Ejecutar el volcado de la base de datos al fichero..."
158
-
159
- #: app/backwpup_dojob.php:575
160
- msgid "Dump Database table: "
161
- msgstr "Volcar la tabla de la base de datos:"
162
-
163
- #: app/backwpup_dojob.php:590
164
- msgid "Database Dump done!"
165
- msgstr "Volcado de la base de datos realizado."
166
-
167
- #: app/backwpup_dojob.php:592
168
- msgid "Cannot create Database Dump file"
169
- msgstr "No se puede crear un fichero de volcado de la base de datos"
170
-
171
- #: app/backwpup_dojob.php:595
172
- msgid "No Tables to Dump"
173
- msgstr "No hay tablas para realizar un volcado"
174
-
175
- #: app/backwpup_dojob.php:601
176
- msgid "Add Database Dump to Backup:"
177
- msgstr "Añadir volcado de la base de datos a la copia de seguridad:"
178
-
179
- #: app/backwpup_dojob.php:611
180
- #: app/backwpup_dojob.php:628
181
- msgid "Run Wordpress Export to XML file..."
182
- msgstr "Ejecutar la exportación de WordPress a un fichero XML..."
183
-
184
- #: app/backwpup_dojob.php:620
185
- msgid "cURL:"
186
- msgstr "cURL:"
187
-
188
- #: app/backwpup_dojob.php:630
189
- msgid "Export to XML done!"
190
- msgstr "Exportación a XML realizada."
191
-
192
- #: app/backwpup_dojob.php:632
193
- msgid "Cannot Export to XML!"
194
- msgstr "No se puede exportar a XML."
195
-
196
- #: app/backwpup_dojob.php:635
197
- msgid "Cannot Export to XML! no cURL or allow_url_fopen Support!"
198
- msgstr "No se puede exportar a XML: las funciones cURL o allow_url_fopen no se pueden utilizar."
199
-
200
- #: app/backwpup_dojob.php:639
201
- msgid "Add XML Export to Backup:"
202
- msgstr "Añadir fichero XML de exportación a la copia de seguridad:"
203
-
204
- #: app/backwpup_dojob.php:648
205
- msgid "Run Database optimize..."
206
- msgstr "Ejecutar optimización de la base de datos..."
207
-
208
- #: app/backwpup_dojob.php:662
209
- #: app/backwpup_dojob.php:664
210
- #: app/backwpup_dojob.php:666
211
- #, php-format
212
- msgid "Result of table optimize for %1$s is: %2$s"
213
- msgstr "El resultado de la optimización de la tabla %1$s es: %2$s"
214
-
215
- #: app/backwpup_dojob.php:672
216
- msgid "Database optimize done!"
217
- msgstr "Optimización de la base de datos realizada."
218
-
219
- #: app/backwpup_dojob.php:675
220
- msgid "No Tables to optimize"
221
- msgstr "No hay tablas que optimizar"
222
-
223
- #: app/backwpup_dojob.php:693
224
- msgid "File or Folder is not readable:"
225
- msgstr "El fichero o el directorio no se puede leer:"
226
-
227
- #: app/backwpup_dojob.php:695
228
- msgid "Link not followed:"
229
- msgstr "No se ha seguido el enlace:"
230
-
231
- #: app/backwpup_dojob.php:703
232
- msgid "Is not a file or directory:"
233
- msgstr "No es un fichero o un directorio:"
234
-
235
- #: app/backwpup_dojob.php:713
236
- msgid "Make a list of files to Backup ...."
237
- msgstr "Hacer una lista de ficheros para la copia de seguridad..."
238
-
239
- #: app/backwpup_dojob.php:762
240
- msgid "No files to Backup"
241
- msgstr "No hay ficheros para la copia de seguridadd"
242
-
243
- #: app/backwpup_dojob.php:764
244
- msgid "Files to Backup:"
245
- msgstr "Ficheros para la copia de seguridad:"
246
-
247
- #: app/backwpup_dojob.php:765
248
- msgid "Size of all Files:"
249
- msgstr "Tamaño de todos los ficheros:"
250
-
251
- #: app/backwpup_dojob.php:773
252
- msgid "Create Backup Zip file..."
253
- msgstr "Crear fichero ZIP con la copia de seguridad:"
254
-
255
- #: app/backwpup_dojob.php:781
256
- #: app/backwpup_dojob.php:805
257
- msgid "Add File to ZIP file:"
258
- msgstr "Añadir fichero al fichero ZIP:"
259
-
260
- #: app/backwpup_dojob.php:785
261
- msgid "Cannot add File to ZIP file:"
262
- msgstr "No se puede añadir un fichero al fichero ZIP:"
263
-
264
- #: app/backwpup_dojob.php:789
265
- #: app/backwpup_dojob.php:812
266
- msgid "Backup Zip file create done!"
267
- msgstr "Fichero ZIP de copia de seguridad creado."
268
-
269
- #: app/backwpup_dojob.php:791
270
- msgid "Cannot create Backup ZIP file:"
271
- msgstr "No se puede crear el fichero ZIP de copia de seguridad:"
272
-
273
- #: app/backwpup_dojob.php:802
274
- msgid "Create Backup Zip (PclZip) file..."
275
- msgstr "Crear fichero ZIP (PclZip) de copia de seguridad..."
276
-
277
- #: app/backwpup_dojob.php:810
278
- msgid "Zip file create:"
279
- msgstr "Crear fichero ZIP:"
280
-
281
- #: app/backwpup_dojob.php:829
282
- msgid "Cannot create TAR Backup file"
283
- msgstr "No se ha podido crear el fichero TAR de copia de seguridad"
284
-
285
- #: app/backwpup_dojob.php:832
286
- msgid "Create Backup Archive file..."
287
- msgstr "Crear fichero de copia de seguridad..."
288
-
289
- #: app/backwpup_dojob.php:839
290
- msgid "Add File to Backup Archive:"
291
- msgstr "Añadir fichero al fichero de copia de seguridad:"
292
-
293
- #: app/backwpup_dojob.php:915
294
- msgid "Backup Archive file create done!"
295
- msgstr "Fichero de copia de seguridad creado."
296
-
297
- #: app/backwpup_dojob.php:933
298
- msgid "Connected by SSL-FTP to Server:"
299
- msgstr "Conectado por SSL-FTP al servidor:"
300
-
301
- #: app/backwpup_dojob.php:935
302
- msgid "Cannot connect by SSL-FTP to Server:"
303
- msgstr "No se puede conectar por SSL-FTP al servidor:"
304
-
305
- #: app/backwpup_dojob.php:939
306
- msgid "PHP Function to connect with SSL-FTP to Server not exists!"
307
- msgstr "La función de PHP para conectarse con el servidor por SSL-FTP no existe."
308
-
309
- #: app/backwpup_dojob.php:945
310
- msgid "Connected to FTP Server:"
311
- msgstr "Conectado al servidor FTP:"
312
-
313
- #: app/backwpup_dojob.php:947
314
- msgid "Cannot connect to FTP Server:"
315
- msgstr "No se puede conectar por FTP al servidor:"
316
-
317
- #: app/backwpup_dojob.php:954
318
- #: app/backwpup_dojob.php:961
319
- #: app/backwpup_dojob.php:973
320
- #: app/backwpup_dojob.php:986
321
- msgid "FTP Client command:"
322
- msgstr "Comando del cliente FTP:"
323
-
324
- #: app/backwpup_dojob.php:956
325
- #: app/backwpup_dojob.php:959
326
- #: app/backwpup_dojob.php:963
327
- #: app/backwpup_dojob.php:976
328
- #: app/backwpup_dojob.php:978
329
- #: app/backwpup_dojob.php:981
330
- #: app/backwpup_dojob.php:983
331
- #: app/backwpup_dojob.php:989
332
- #: app/backwpup_dojob.php:991
333
- msgid "FTP Server reply:"
334
- msgstr "Respuesta del servidor FTP:"
335
-
336
- #: app/backwpup_dojob.php:976
337
- msgid "Entering Passive Mode"
338
- msgstr "Entrando en modo pasivo"
339
-
340
- #: app/backwpup_dojob.php:978
341
- msgid "Cannot Entering Passive Mode"
342
- msgstr "No se puede entrar en modo pasivo"
343
-
344
- #: app/backwpup_dojob.php:981
345
- msgid "Entering Normal Mode"
346
- msgstr "Entrando en modo normal"
347
-
348
- #: app/backwpup_dojob.php:983
349
- msgid "Cannot Entering Normal Mode"
350
- msgstr "No se puede entrar en modo normal"
351
-
352
- #: app/backwpup_dojob.php:991
353
- msgid "Error getting SYSTYPE"
354
- msgstr "Error al obtener SYSTYPE"
355
-
356
- #: app/backwpup_dojob.php:999
357
- msgid "FTP Folder on Server not exists!"
358
- msgstr "El directorio FTP en el servidor no existe."
359
-
360
- #: app/backwpup_dojob.php:1001
361
- msgid "FTP Folder created!"
362
- msgstr "Directorio FTP creado."
363
-
364
- #: app/backwpup_dojob.php:1004
365
- msgid "FTP Folder on Server cannot created!"
366
- msgstr "No se ha podido crear el directorio en el servidor FTP."
367
-
368
- #: app/backwpup_dojob.php:1010
369
- msgid "Backup File transferred to FTP Server:"
370
- msgstr "Fichero de copia de seguridad transferido al servidor FTP:"
371
-
372
- #: app/backwpup_dojob.php:1013
373
- msgid "Cannot transfer backup to FTP server."
374
- msgstr "No se ha podido transferir el fichero de copia de seguridad al servidor FTP."
375
-
376
- #: app/backwpup_dojob.php:1029
377
- msgid "Cannot delete file on FTP Server:"
378
- msgstr "No se ha podido borrar el fichero en el servidor FTP:"
379
-
380
- #: app/backwpup_dojob.php:1032
381
- msgid "files deleted on FTP Server:"
382
- msgstr "ficheros borrados en el servidor FTP:"
383
-
384
- #: app/backwpup_dojob.php:1044
385
- msgid "Prepare Sending backup file with mail..."
386
- msgstr "Preparando en envío de fichero de copia de seguridad por email..."
387
-
388
- #: app/backwpup_dojob.php:1064
389
- msgid "Send mail with SMTP"
390
- msgstr "Enviar email con SMTP"
391
-
392
- #: app/backwpup_dojob.php:1068
393
- msgid "Send mail with Sendmail"
394
- msgstr "Enviar email con Sendmail"
395
-
396
- #: app/backwpup_dojob.php:1071
397
- msgid "Send mail with PHP mail"
398
- msgstr "Enviar email con PHP mail"
399
-
400
- #: app/backwpup_dojob.php:1075
401
- msgid "Creating mail"
402
- msgstr "Creando email"
403
-
404
- #: app/backwpup_dojob.php:1079
405
- msgid "BackWPup File from"
406
- msgstr "Fichero BackWPup de"
407
-
408
- #: app/backwpup_dojob.php:1087
409
- msgid "Backup Archive too big for sending by mail"
410
- msgstr "Fichero de copia de seguridad demasiado grande para enviar por email"
411
-
412
- #: app/backwpup_dojob.php:1092
413
- msgid "Adding Attachment to mail"
414
- msgstr "Añadiendo un fichero adjunto al email"
415
-
416
- #: app/backwpup_dojob.php:1096
417
- msgid "Send mail...."
418
- msgstr "Enviar email..."
419
-
420
- #: app/backwpup_dojob.php:1098
421
- msgid "Cannot send mail:"
422
- msgstr "No se puede enviar el email:"
423
-
424
- #: app/backwpup_dojob.php:1100
425
- msgid "Mail send!!!"
426
- msgstr "Email enviado."
427
-
428
- #: app/backwpup_dojob.php:1118
429
- msgid "Connected to S3 Bucket:"
430
- msgstr "Conectado al S3 Bucket:"
431
-
432
- #: app/backwpup_dojob.php:1127
433
- msgid "Backup File transferred to S3://"
434
- msgstr "Fichero de copia de seguridad transferido a S3://"
435
-
436
- #: app/backwpup_dojob.php:1130
437
- msgid "Cannot transfer backup to S3."
438
- msgstr "No se puede transferir la copia de seguridad a S3."
439
-
440
- #: app/backwpup_dojob.php:1149
441
- msgid "Cannot delete file on S3://"
442
- msgstr "No se puede borrar el fichero en S3://"
443
-
444
- #: app/backwpup_dojob.php:1152
445
- msgid "files deleted on S3 Bucket!"
446
- msgstr "ficheros borrados en S3 Bucket."
447
-
448
- #: app/backwpup_dojob.php:1159
449
- msgid "S3 Bucket not exists:"
450
- msgstr "S3 Bucket no existe."
451
-
452
- #: app/backwpup_dojob.php:1162
453
- msgid "Amazon S3 API:"
454
- msgstr "API de Amazon S3:"
455
-
456
- #: app/backwpup_dojob.php:1173
457
- msgid "Cannot load curl extension is needed for Rackspase Cloud!"
458
- msgstr "No se puede cargar la extensión curl, necesaria para Rackspace Cloud."
459
-
460
- #: app/backwpup_dojob.php:1185
461
- msgid "Connected to Rackspase ..."
462
- msgstr "Conectado a Rackspace..."
463
-
464
- #: app/backwpup_dojob.php:1201
465
- #: app/backwpup_dojob.php:1251
466
- msgid "Rackspase Cloud API:"
467
- msgstr "API de Rackspace Cloud:"
468
-
469
- #: app/backwpup_dojob.php:1207
470
- msgid "Rackspase Cloud Container not exists:"
471
- msgstr "Rackspace Cloud Container no existe:"
472
-
473
- #: app/backwpup_dojob.php:1219
474
- msgid "Backup File transferred to RSC://"
475
- msgstr "Fichero de copia de seguridad transferido a RSC://"
476
-
477
- #: app/backwpup_dojob.php:1222
478
- msgid "Cannot transfer backup to RSC."
479
- msgstr "No se puede transferir la copia de seguridad a RSC."
480
-
481
- #: app/backwpup_dojob.php:1244
482
- msgid "Cannot delete file on RSC://"
483
- msgstr "No se puede borrar el fichero en RSC://"
484
-
485
- #: app/backwpup_dojob.php:1247
486
- msgid "files deleted on Racspase Cloud Container!"
487
- msgstr "ficheros borrados en Rackspace Cloud Container."
488
-
489
- #: app/backwpup_dojob.php:1261
490
- msgid "Cannot load curl extension is needed for Microsoft Azure!"
491
- msgstr "No se puede cargar la extensión curl, necesaria para Microsoft Azure."
492
-
493
- #: app/backwpup_dojob.php:1274
494
- msgid "Microsoft Azure Container not exists:"
495
- msgstr "Microsoft Azure Container no existe:"
496
-
497
- #: app/backwpup_dojob.php:1277
498
- msgid "Connected to Microsoft Azure Container:"
499
- msgstr "Conectado a Microsoft Azure Container:"
500
-
501
- #: app/backwpup_dojob.php:1287
502
- msgid "Backup File transferred to azure://"
503
- msgstr "Fichero de copia de seguridad transferido a azure://"
504
-
505
- #: app/backwpup_dojob.php:1290
506
- msgid "Cannot transfer backup to Microsoft Azure."
507
- msgstr "No se puede transferir la copia de seguridad a Microsoft Azure."
508
-
509
- #: app/backwpup_dojob.php:1311
510
- msgid "files deleted on Microsoft Azure Container!"
511
- msgstr "ficheros borrados en Microsoft Azure Container."
512
-
513
- #: app/backwpup_dojob.php:1316
514
- msgid "Microsoft Azure API:"
515
- msgstr "API de Microsoft Azure:"
516
-
517
- #: app/backwpup_dojob.php:1342
518
- msgid "old backup files deleted!!!"
519
- msgstr "los ficheros de copia de seguridad antiguos han sido borrados."
520
-
521
- #: app/backwpup_dojob.php:1352
522
- msgid "Cannot load curl extension is needed for Dropbox!"
523
- msgstr "No se puede cargar la extensión curl, necesaria para Dropbox."
524
-
525
- #: app/backwpup_dojob.php:1366
526
- msgid "Authed to Dropbox API from "
527
- msgstr "Autentificado con el API de Dropbox desde"
528
-
529
- #: app/backwpup_dojob.php:1368
530
- msgid "Cannot Auth with Dropbox API:"
531
- msgstr "No se puede autentificar con el API de Dropbox:"
532
-
533
- #: app/backwpup_dojob.php:1376
534
- msgid "Backup File transferred to Dropbox."
535
- msgstr "Fichero de copia de seguridad transferido a Dropbox."
536
-
537
- #: app/backwpup_dojob.php:1378
538
- msgid "Cannot transfere Backup file to Dropbox:"
539
- msgstr "No se puede transferir la copia de seguridad a Dropbox:"
540
-
541
- #: app/backwpup_dojob.php:1399
542
- msgid "files deleted on Dropbox Folder!"
543
- msgstr "ficheros borrados en el directorio de Dropbox."
544
-
545
- #: app/backwpup_dojob.php:1403
546
- msgid "Dropbox API:"
547
- msgstr "API de Dropbox:"
548
-
549
- #: app/backwpup_dojob.php:1505
550
- msgid "Jobname:"
551
- msgstr "Nombre de la tarea:"
552
-
553
- #: app/backwpup_dojob.php:1506
554
- msgid "Jobtype:"
555
- msgstr "Tipo de la tarea:"
556
-
557
- #: app/backwpup_dojob.php:1508
558
- msgid "Errors:"
559
- msgstr "Errores:"
560
-
561
- #: app/backwpup_dojob.php:1510
562
- msgid "Warnings:"
563
- msgstr "Avisos:"
564
-
565
- #: app/backwpup_dojob.php:1515
566
- msgid "BackWPup Log from"
567
- msgstr "Registro de BackWPup de"
568
-
569
- #: app/list-tables.php:22
570
- #: app/list-tables.php:198
571
- #: app/list-tables.php:375
572
- msgid "No rights"
573
- msgstr "No tienes permisos"
574
-
575
- #: app/list-tables.php:41
576
- msgid "No Jobs."
577
- msgstr "No hay tareas."
578
-
579
- #: app/list-tables.php:46
580
- #: app/list-tables.php:107
581
- msgid "Export"
582
- msgstr "Exportar"
583
-
584
- #: app/list-tables.php:47
585
- #: app/list-tables.php:108
586
- #: app/list-tables.php:254
587
- #: app/list-tables.php:317
588
- #: app/list-tables.php:417
589
- #: app/list-tables.php:483
590
- #: app/options-edit-job.php:45
591
- msgid "Delete"
592
- msgstr "Borrar"
593
-
594
- #: app/list-tables.php:55
595
- msgid "ID"
596
- msgstr "ID"
597
-
598
- #: app/list-tables.php:56
599
- msgid "Job Name"
600
- msgstr "Nombre de la tarea"
601
-
602
- #: app/list-tables.php:57
603
- #: app/list-tables.php:263
604
- msgid "Type"
605
- msgstr "Tipo"
606
-
607
- #: app/list-tables.php:58
608
- msgid "Information"
609
- msgstr "Información"
610
-
611
- #: app/list-tables.php:59
612
- msgid "Next Run"
613
- msgstr "Próxima ejecución"
614
-
615
- #: app/list-tables.php:60
616
- msgid "Last Run"
617
- msgstr "Última ejecución"
618
-
619
- #: app/list-tables.php:102
620
- msgid "Edit:"
621
- msgstr "Editar:"
622
-
623
- #: app/list-tables.php:105
624
- msgid "Edit"
625
- msgstr "Editar"
626
-
627
- #: app/list-tables.php:106
628
- msgid "Copy"
629
- msgstr "Copiar"
630
-
631
- #: app/list-tables.php:108
632
- #: app/options-edit-job.php:45
633
- msgid ""
634
- "You are about to delete this Job. \n"
635
- " 'Cancel' to stop, 'OK' to delete."
636
- msgstr ""
637
- "Estás a punto de borrar esta tarea.\n"
638
- " 'Cancelar' para parar, 'OK' para borrar."
639
-
640
- #: app/list-tables.php:109
641
- msgid "Run Now"
642
- msgstr "Ejecutar ahora"
643
-
644
- #: app/list-tables.php:111
645
- msgid "Clear"
646
- msgstr "Limpiar"
647
-
648
- #: app/list-tables.php:133
649
- msgid "Files Size:"
650
- msgstr "Tamaño de los ficheros:"
651
-
652
- #: app/list-tables.php:135
653
- msgid "Files count:"
654
- msgstr "Número de ficheros:"
655
-
656
- #: app/list-tables.php:140
657
- msgid "DB Size: "
658
- msgstr "Tamaño de la base de datos: "
659
-
660
- #: app/list-tables.php:142
661
- msgid "DB Tables:"
662
- msgstr "Tablas de la base de datos:"
663
-
664
- #: app/list-tables.php:143
665
- msgid "DB Rows:"
666
- msgstr "Registros de la base de datos:"
667
-
668
- #: app/list-tables.php:152
669
- #: app/php-functions.php:419
670
- msgid "Running since:"
671
- msgstr "Funcionando desde:"
672
-
673
- #: app/list-tables.php:152
674
- #: app/list-tables.php:168
675
- #: app/list-tables.php:353
676
- #: app/php-functions.php:419
677
- msgid "sec."
678
- msgstr "seg."
679
-
680
- #: app/list-tables.php:156
681
- msgid "Inactive"
682
- msgstr "Inactivo"
683
-
684
- #: app/list-tables.php:159
685
- msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
686
- msgstr "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
687
-
688
- #: app/list-tables.php:168
689
- msgid "Runtime:"
690
- msgstr "Tiempo de ejecución:"
691
-
692
- #: app/list-tables.php:170
693
- msgid "None"
694
- msgstr "Nunca"
695
-
696
- #: app/list-tables.php:173
697
- msgid "Download last Backup"
698
- msgstr "Descargar la última copia de seguridad"
699
-
700
- #: app/list-tables.php:173
701
- #: app/list-tables.php:318
702
- #: app/list-tables.php:484
703
- msgid "Download"
704
- msgstr "Descargar"
705
-
706
- #: app/list-tables.php:175
707
- msgid "View last Log"
708
- msgstr "Ver el último registro"
709
-
710
- #: app/list-tables.php:175
711
- msgid "Log"
712
- msgstr "Registro"
713
-
714
- #: app/list-tables.php:249
715
- msgid "No Logs."
716
- msgstr "No hay registros."
717
-
718
- #: app/list-tables.php:262
719
- msgid "Job"
720
- msgstr "Tarea"
721
-
722
- #: app/list-tables.php:264
723
- msgid "Backup/Log Date/Time"
724
- msgstr "Fecha y hora del registro/Nombre de la copia de seguridad"
725
-
726
- #: app/list-tables.php:265
727
- msgid "Status"
728
- msgstr "Estado"
729
-
730
- #: app/list-tables.php:266
731
- #: app/list-tables.php:426
732
- msgid "Size"
733
- msgstr "Tamaño"
734
-
735
- #: app/list-tables.php:267
736
- msgid "Runtime"
737
- msgstr "Tiempo de ejecución"
738
-
739
- #: app/list-tables.php:314
740
- msgid "View log"
741
- msgstr "Ver registro"
742
-
743
- #: app/list-tables.php:316
744
- msgid "View"
745
- msgstr "Ver"
746
-
747
- #: app/list-tables.php:334
748
- #: app/php-functions.php:398
749
- msgid "ERROR(S)"
750
- msgstr "ERROR(ES)"
751
-
752
- #: app/list-tables.php:336
753
- #: app/php-functions.php:400
754
- msgid "WARNING(S)"
755
- msgstr "AVISO(S)"
756
-
757
- #: app/list-tables.php:338
758
- #: app/php-functions.php:402
759
- msgid "OK"
760
- msgstr "OK"
761
-
762
- #: app/list-tables.php:347
763
- msgid "only Log"
764
- msgstr "sólo registro"
765
-
766
- #: app/list-tables.php:411
767
- msgid "No Backups."
768
- msgstr "No hay copias de seguridad."
769
-
770
- #: app/list-tables.php:425
771
- msgid "Backupfile"
772
- msgstr "Fichero de copia de seguridad"
773
-
774
- #: app/list-tables.php:483
775
- msgid ""
776
- "You are about to delete this Backup Archive. \n"
777
- " 'Cancel' to stop, 'OK' to delete."
778
- msgstr ""
779
- "Estás a punto de borrar este fichero de copia de seguridad. \n"
780
- " 'Cancelar' para parar, 'OK' para borrar."
781
-
782
- #: app/list-tables.php:501
783
- msgid "?"
784
- msgstr "?"
785
-
786
- #: app/options-edit-job.php:12
787
- msgid "BackWPup Job Settings"
788
- msgstr "Configuración de tareas de BackWPup"
789
-
790
- #: app/options-edit-job.php:33
791
- msgid "Job Type"
792
- msgstr "Tipo de tarea"
793
-
794
- #: app/options-edit-job.php:48
795
- #: app/options-settings.php:22
796
- #: app/options-settings.php:84
797
- #: app/compatibility/class-wp-list-table.php:960
798
- msgid "Save Changes"
799
- msgstr "Guardar cambios"
800
-
801
- #: app/options-edit-job.php:55
802
- msgid "Job Schedule"
803
- msgstr "Programación de tareas"
804
-
805
- #: app/options-edit-job.php:57
806
- msgid "Activate scheduling"
807
- msgstr "Activar programación"
808
-
809
- #: app/options-edit-job.php:60
810
- msgid "Minutes: "
811
- msgstr "Minutos:"
812
-
813
- #: app/options-edit-job.php:68
814
- #: app/options-edit-job.php:85
815
- #: app/options-edit-job.php:102
816
- #: app/options-edit-job.php:120
817
- #: app/options-edit-job.php:144
818
- msgid "Any (*)"
819
- msgstr "Todos (*)"
820
-
821
- #: app/options-edit-job.php:77
822
- msgid "Hours:"
823
- msgstr "Horas:"
824
-
825
- #: app/options-edit-job.php:94
826
- msgid "Days:"
827
- msgstr "Días:"
828
-
829
- #: app/options-edit-job.php:112
830
- msgid "Months:"
831
- msgstr "Meses:"
832
-
833
- #: app/options-edit-job.php:121
834
- msgid "January"
835
- msgstr "Enero"
836
-
837
- #: app/options-edit-job.php:122
838
- msgid "February"
839
- msgstr "Febrero"
840
-
841
- #: app/options-edit-job.php:123
842
- msgid "March"
843
- msgstr "Marzo"
844
-
845
- #: app/options-edit-job.php:124
846
- msgid "April"
847
- msgstr "Abril"
848
-
849
- #: app/options-edit-job.php:125
850
- msgid "May"
851
- msgstr "Mayo"
852
-
853
- #: app/options-edit-job.php:126
854
- msgid "June"
855
- msgstr "Junio"
856
-
857
- #: app/options-edit-job.php:127
858
- msgid "July"
859
- msgstr "Julio"
860
-
861
- #: app/options-edit-job.php:128
862
- msgid "Augest"
863
- msgstr "Agosto"
864
-
865
- #: app/options-edit-job.php:129
866
- msgid "September"
867
- msgstr "Septiembre"
868
-
869
- #: app/options-edit-job.php:130
870
- msgid "October"
871
- msgstr "Octubre"
872
-
873
- #: app/options-edit-job.php:131
874
- msgid "November"
875
- msgstr "Noviembre"
876
-
877
- #: app/options-edit-job.php:132
878
- msgid "December"
879
- msgstr "Diciembre"
880
-
881
- #: app/options-edit-job.php:136
882
- msgid "Weekday:"
883
- msgstr "Día de la semana:"
884
-
885
- #: app/options-edit-job.php:145
886
- msgid "Sunday"
887
- msgstr "Domingo"
888
-
889
- #: app/options-edit-job.php:146
890
- msgid "Monday"
891
- msgstr "Lunes"
892
-
893
- #: app/options-edit-job.php:147
894
- msgid "Tuesday"
895
- msgstr "Martes"
896
-
897
- #: app/options-edit-job.php:148
898
- msgid "Wednesday"
899
- msgstr "Miércoles"
900
-
901
- #: app/options-edit-job.php:149
902
- msgid "Thursday"
903
- msgstr "Jueves"
904
-
905
- #: app/options-edit-job.php:150
906
- msgid "Friday"
907
- msgstr "Viernes"
908
-
909
- #: app/options-edit-job.php:151
910
- msgid "Saturday"
911
- msgstr "Sábado"
912
-
913
- #: app/options-edit-job.php:156
914
- msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
915
- msgstr "Está funcionando como una tarea programada en el <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
916
-
917
- #: app/options-edit-job.php:157
918
- msgid "Next runtime:"
919
- msgstr "Próxima ejecución:"
920
-
921
- #: app/options-edit-job.php:163
922
- msgid "Backup File"
923
- msgstr "Fichero de copia de seguridad"
924
-
925
- #: app/options-edit-job.php:165
926
- msgid "File Prefix:"
927
- msgstr "Prefijo del fichero:"
928
-
929
- #: app/options-edit-job.php:167
930
- msgid "File Formart:"
931
- msgstr "Formato del fichero:"
932
-
933
- #: app/options-edit-job.php:170
934
- #: app/options-edit-job.php:172
935
- msgid "Zip"
936
- msgstr "Zip"
937
-
938
- #: app/options-edit-job.php:173
939
- msgid "Tar"
940
- msgstr "Tar"
941
-
942
- #: app/options-edit-job.php:175
943
- #: app/options-edit-job.php:177
944
- msgid "Tar GZip"
945
- msgstr "Tar GZip"
946
-
947
- #: app/options-edit-job.php:179
948
- #: app/options-edit-job.php:181
949
- msgid "Tar BZip2"
950
- msgstr "Tar BZip2"
951
-
952
- #: app/options-edit-job.php:182
953
- #: app/options-edit-job.php:318
954
- #: app/options-edit-job.php:322
955
- msgid "Example:"
956
- msgstr "Ejemplo:"
957
-
958
- #: app/options-edit-job.php:189
959
- msgid "Send log"
960
- msgstr "Enviar registro"
961
-
962
- #: app/options-edit-job.php:191
963
- #: app/options-edit-job.php:446
964
- msgid "E-Mail-Adress:"
965
- msgstr "Dirección de email:"
966
-
967
- #: app/options-edit-job.php:193
968
- msgid "Send only E-Mail on errors."
969
- msgstr "Solo enviar emails cuando se produzcan errores"
970
-
971
- #: app/options-edit-job.php:205
972
- msgid "Enter Job name here"
973
- msgstr "Escribe aquí el nombre de la tarea"
974
-
975
- #: app/options-edit-job.php:211
976
- msgid "Database Jobs"
977
- msgstr "Tareas de la base de datos"
978
-
979
- #: app/options-edit-job.php:214
980
- msgid "Database Tabels to Exclude:"
981
- msgstr "Tablas de la base de datos que se excluirán:"
982
-
983
- #: app/options-edit-job.php:225
984
- msgid "Use short INSERTs instat of full (with keys)"
985
- msgstr "Use short INSERTs instat of full (with keys)"
986
-
987
- #: app/options-edit-job.php:226
988
- msgid "Set Blog Maintenance Mode on Database Operations"
989
- msgstr "Poner el blog en modo de mantenimiento cuando se lleven a cabo operaciones en la base de datos"
990
-
991
- #: app/options-edit-job.php:231
992
- #: app/php-functions.php:316
993
- msgid "File Backup"
994
- msgstr "Hacer una copia de seguridad de los ficheros de la aplicación"
995
-
996
- #: app/options-edit-job.php:233
997
- msgid "Blog Folders to Backup:"
998
- msgstr "Directorios incluidos en la copia de seguridad:"
999
-
1000
- #: app/options-edit-job.php:236
1001
- msgid "root"
1002
- msgstr "Directorio raíz"
1003
-
1004
- #: app/options-edit-job.php:239
1005
- #: app/options-edit-job.php:255
1006
- #: app/options-edit-job.php:271
1007
- #: app/options-edit-job.php:287
1008
- #: app/options-edit-job.php:303
1009
- msgid "Exclude:"
1010
- msgstr "Excluir:"
1011
-
1012
- #: app/options-edit-job.php:252
1013
- msgid "Content"
1014
- msgstr "Directorio wp-content"
1015
-
1016
- #: app/options-edit-job.php:268
1017
- msgid "Plugins"
1018
- msgstr "Directorio de plugins"
1019
-
1020
- #: app/options-edit-job.php:284
1021
- msgid "Themes"
1022
- msgstr "Directorio de temas"
1023
-
1024
- #: app/options-edit-job.php:300
1025
- msgid "Blog Uploads"
1026
- msgstr "Directorio de subida de archivos"
1027
-
1028
- #: app/options-edit-job.php:317
1029
- msgid "Include Folders to Backup:"
1030
- msgstr "Incluir directorios en la copia de seguridad:"
1031
-
1032
- #: app/options-edit-job.php:321
1033
- msgid "Exclude Files/Folders from Backup:"
1034
- msgstr "Excluir ficheros o directorios de la copia de seguridad"
1035
-
1036
- #: app/options-edit-job.php:328
1037
- msgid "Backup to Directory"
1038
- msgstr "Guardar la copia de seguridad en el directorio"
1039
-
1040
- #: app/options-edit-job.php:330
1041
- msgid "Full Path to Folder for Backup Files:"
1042
- msgstr "Ruta completa al directorio donde se guardarán los ficheros de la copia de seguridad:"
1043
-
1044
- #: app/options-edit-job.php:332
1045
- msgid "Max. Backup Files in Folder:"
1046
- msgstr "Número máximo de ficheros de copia de seguridad que se guardarán en el directorio:"
1047
-
1048
- #: app/options-edit-job.php:332
1049
- #: app/options-edit-job.php:349
1050
- #: app/options-edit-job.php:373
1051
- #: app/options-edit-job.php:399
1052
- #: app/options-edit-job.php:422
1053
- #: app/options-edit-job.php:438
1054
- #: app/options-settings.php:62
1055
- msgid "(Oldest files will deleted first.)"
1056
- msgstr "(los más antiguos se borrarán en primer lugar)"
1057
-
1058
- #: app/options-edit-job.php:338
1059
- msgid "Backup to FTP Server"
1060
- msgstr "Copia de seguridad por FTP"
1061
-
1062
- #: app/options-edit-job.php:340
1063
- msgid "Hostname:"
1064
- msgstr "Nombre del servidor:"
1065
-
1066
- #: app/options-edit-job.php:342
1067
- #: app/options-edit-job.php:412
1068
- msgid "Username:"
1069
- msgstr "Nombre de usuario:"
1070
-
1071
- #: app/options-edit-job.php:344
1072
- #: app/options-edit-job.php:434
1073
- msgid "Password:"
1074
- msgstr "Contraseña:"
1075
-
1076
- #: app/options-edit-job.php:346
1077
- msgid "Directory on Server:"
1078
- msgstr "Directorio en el servidor:"
1079
-
1080
- #: app/options-edit-job.php:349
1081
- msgid "Max. Backup Files in FTP Folder:"
1082
- msgstr "Máximo número de ficheros de copia de seguridad en el directorio FTP:"
1083
-
1084
- #: app/options-edit-job.php:350
1085
- msgid "Use SSL-FTP Connection."
1086
- msgstr "Utilizar conexión SSL-FTP."
1087
-
1088
- #: app/options-edit-job.php:351
1089
- msgid "Use FTP Passiv mode."
1090
- msgstr "Utilizar FTP pasivo."
1091
-
1092
- #: app/options-edit-job.php:358
1093
- msgid "Backup to Amazon S3"
1094
- msgstr "Copia de seguridad en Amazon S3"
1095
-
1096
- #: app/options-edit-job.php:358
1097
- #: app/options-edit-job.php:382
1098
- #: app/options-edit-job.php:407
1099
- #: app/options-edit-job.php:430
1100
- msgid "Create Account"
1101
- msgstr "Crear cuenta"
1102
-
1103
- #: app/options-edit-job.php:361
1104
- #: app/options-edit-job.php:385
1105
- #: app/options-edit-job.php:410
1106
- msgid "curl Support required"
1107
- msgstr "se requiere soporte para curl"
1108
-
1109
- #: app/options-edit-job.php:363
1110
- msgid "Access Key ID:"
1111
- msgstr "ID de clave de acceso:"
1112
-
1113
- #: app/options-edit-job.php:363
1114
- #: app/options-edit-job.php:391
1115
- #: app/options-edit-job.php:414
1116
- msgid "Find it"
1117
- msgstr "Encontrarlo"
1118
-
1119
- #: app/options-edit-job.php:365
1120
- msgid "Secret Access Key:"
1121
- msgstr "Clave de acceso secreta:"
1122
-
1123
- #: app/options-edit-job.php:367
1124
- msgid "Bucket:"
1125
- msgstr "Bucket:"
1126
-
1127
- #: app/options-edit-job.php:370
1128
- msgid "Create Bucket:"
1129
- msgstr "Crear bucket:"
1130
-
1131
- #: app/options-edit-job.php:370
1132
- msgid "Bucket Region"
1133
- msgstr "Región del bucket:"
1134
-
1135
- #: app/options-edit-job.php:370
1136
- msgid "US-East (Northern Virginia)"
1137
- msgstr "Estados Unidos-Este (Northern Virginia)"
1138
-
1139
- #: app/options-edit-job.php:370
1140
- msgid "US-West (Northern California)"
1141
- msgstr "Estados Unidos-Oeste (Northern California)"
1142
-
1143
- #: app/options-edit-job.php:370
1144
- msgid "EU (Ireland)"
1145
- msgstr "Unión Europea (Irlanda)"
1146
-
1147
- #: app/options-edit-job.php:370
1148
- msgid "Asia Pacific (Singapore)"
1149
- msgstr "Asia Pacífico (Singapur)"
1150
-
1151
- #: app/options-edit-job.php:370
1152
- msgid "Asia Pacific (Japan)"
1153
- msgstr "Asia Pacífico (Japón)"
1154
-
1155
- #: app/options-edit-job.php:371
1156
- msgid "Directory in Bucket:"
1157
- msgstr "Directorio en el bucket:"
1158
-
1159
- #: app/options-edit-job.php:373
1160
- msgid "Max. Backup Files in Bucket Folder:"
1161
- msgstr "Máximo número de ficheros de copia de seguridad en el directorio del bucket:"
1162
-
1163
- #: app/options-edit-job.php:374
1164
- msgid "Save Backups with reduced redundancy!"
1165
- msgstr "Guardar copias de seguridad con redundancia reducida."
1166
-
1167
- #: app/options-edit-job.php:382
1168
- msgid "Backup to Micosoft Azure (Blob)"
1169
- msgstr "Copia de seguridad en Microsoft Azure (Blob)"
1170
-
1171
- #: app/options-edit-job.php:387
1172
- msgid "Host:"
1173
- msgstr "Servidor:"
1174
-
1175
- #: app/options-edit-job.php:388
1176
- msgid "Normely: blob.core.windows.net"
1177
- msgstr "Normalmente: blob.core.windows.net"
1178
-
1179
- #: app/options-edit-job.php:389
1180
- msgid "Account Name:"
1181
- msgstr "Nombre de cuenta:"
1182
-
1183
- #: app/options-edit-job.php:391
1184
- msgid "Access Key:"
1185
- msgstr "Clave de acceso:"
1186
-
1187
- #: app/options-edit-job.php:393
1188
- #: app/options-edit-job.php:416
1189
- msgid "Container:"
1190
- msgstr "Contenedor:"
1191
-
1192
- #: app/options-edit-job.php:396
1193
- #: app/options-edit-job.php:419
1194
- msgid "Create Container:"
1195
- msgstr "Crear contenedor:"
1196
-
1197
- #: app/options-edit-job.php:397
1198
- #: app/options-edit-job.php:420
1199
- msgid "Directory in Container:"
1200
- msgstr "Directorio en el contenedor:"
1201
-
1202
- #: app/options-edit-job.php:399
1203
- #: app/options-edit-job.php:422
1204
- msgid "Max. Backup Files in Container Folder:"
1205
- msgstr "Máximo número de ficheros de copia de seguridad en el directorio del contenedor:"
1206
-
1207
- #: app/options-edit-job.php:407
1208
- msgid "Backup to Rackspace Cloud"
1209
- msgstr "Backup en Rackspace Cloud"
1210
-
1211
- #: app/options-edit-job.php:414
1212
- msgid "API Key:"
1213
- msgstr "Clave API:"
1214
-
1215
- #: app/options-edit-job.php:430
1216
- msgid "Backup to Dropbox"
1217
- msgstr "Copia de seguridad con Dropbox"
1218
-
1219
- #: app/options-edit-job.php:432
1220
- msgid "Email:"
1221
- msgstr "Email:"
1222
-
1223
- #: app/options-edit-job.php:436
1224
- msgid "Directory:"
1225
- msgstr "Directorio:"
1226
-
1227
- #: app/options-edit-job.php:438
1228
- msgid "Max. Backup Files in Dopbox Folder:"
1229
- msgstr "Número máximo de ficheros de copia de seguridad en el directorio de Dropbox:"
1230
-
1231
- #: app/options-edit-job.php:444
1232
- msgid "Backup to E-Mail"
1233
- msgstr "Enviar la copia de seguridad por email"
1234
-
1235
- #: app/options-edit-job.php:449
1236
- msgid "Max. File Size for sending Backups with mail:"
1237
- msgstr "Tamaño máximo del fichero para enviar copias de seguridad por email:"
1238
-
1239
- #: app/options-runnow-iframe.php:13
1240
- msgid "Do Job"
1241
- msgstr "Ejecutar la tarea"
1242
-
1243
- #: app/options-save.php:28
1244
- msgid "Copy of"
1245
- msgstr "Copia de"
1246
-
1247
- #: app/options-save.php:63
1248
- msgid "Backup Cleand by User!!!"
1249
- msgstr "Copia de seguridad borrada por el usuario."
1250
-
1251
- #: app/options-save.php:133
1252
- #: app/options-save.php:261
1253
- #: app/options-save.php:377
1254
- msgid "File does not exist."
1255
- msgstr "El fichero no exite"
1256
-
1257
- #: app/options-save.php:413
1258
- msgid "Settings saved"
1259
- msgstr "Configuración guardada"
1260
-
1261
- #: app/options-save.php:577
1262
- msgid "Job '%1' changes saved."
1263
- msgstr "Los cambios en la tarea '%1' se han guardado."
1264
-
1265
- #: app/options-save.php:577
1266
- msgid "Jobs overview."
1267
- msgstr "Vista general de las tareas programadas."
1268
-
1269
- #: app/options-settings.php:10
1270
- msgid "BackWPup Settings"
1271
- msgstr "Configuración de BackWPup"
1272
-
1273
- #: app/options-settings.php:29
1274
- msgid "Send Mail"
1275
- msgstr "Enviar email"
1276
-
1277
- #: app/options-settings.php:31
1278
- msgid "Sender Email:"
1279
- msgstr "Dirección del remitente del email:"
1280
-
1281
- #: app/options-settings.php:32
1282
- msgid "Sender Name:"
1283
- msgstr "Nombre del remitente:"
1284
-
1285
- #: app/options-settings.php:33
1286
- msgid "Send mail method:"
1287
- msgstr "Método de envío del email:"
1288
-
1289
- #: app/options-settings.php:36
1290
- msgid "PHP: mail()"
1291
- msgstr "PHP: mail()"
1292
-
1293
- #: app/options-settings.php:37
1294
- msgid "Sendmail"
1295
- msgstr "Sendmail"
1296
-
1297
- #: app/options-settings.php:38
1298
- msgid "SMTP"
1299
- msgstr "SMTP"
1300
-
1301
- #: app/options-settings.php:41
1302
- msgid "Sendmail Path:"
1303
- msgstr "Ruta del sendmail"
1304
-
1305
- #: app/options-settings.php:43
1306
- msgid "SMTP Hostname:"
1307
- msgstr "Servidor SMTP:"
1308
-
1309
- #: app/options-settings.php:44
1310
- msgid "SMTP Secure Connection:"
1311
- msgstr "Conexión segura SMTP:"
1312
-
1313
- #: app/options-settings.php:46
1314
- #: app/php-functions.php:410
1315
- #: app/php-functions.php:427
1316
- msgid "none"
1317
- msgstr "ninguno"
1318
-
1319
- #: app/options-settings.php:50
1320
- msgid "SMTP Username:"
1321
- msgstr "Nombre de usuario SMTP:"
1322
-
1323
- #: app/options-settings.php:51
1324
- msgid "SMTP Password:"
1325
- msgstr "Contraseña SMTP:"
1326
-
1327
- #: app/options-settings.php:57
1328
- #: app/php-functions.php:191
1329
- msgid "Logs"
1330
- msgstr "Registros"
1331
-
1332
- #: app/options-settings.php:59
1333
- msgid "Log file Folder:"
1334
- msgstr "Directorio para los ficheros de registro:"
1335
-
1336
- #: app/options-settings.php:61
1337
- msgid "Max. Log Files in Folder:"
1338
- msgstr "Máximo número de ficheros en el directorio de registro:"
1339
-
1340
- #: app/options-settings.php:63
1341
- msgid "Gzip Log files!"
1342
- msgstr "Comprimir los ficheros de registro con Gzip."
1343
-
1344
- #: app/options-settings.php:64
1345
- msgid "Log deteiled File list."
1346
- msgstr "Lista detallada de los ficheros de registro."
1347
-
1348
- #: app/options-settings.php:69
1349
- msgid "Disable WP-Cron"
1350
- msgstr "Desactivar el cron de WordPress"
1351
-
1352
- #: app/options-settings.php:71
1353
- msgid "Use Cron job of Hoster and disable WP_Cron"
1354
- msgstr "Utilizar el programador de tareas del servidor y desactivar el WP_Cron"
1355
-
1356
- #: app/options-settings.php:72
1357
- msgid "You must set up a cron job that calls:"
1358
- msgstr "Debes establecer una tarea programada que llame a:"
1359
-
1360
- #: app/options-settings.php:74
1361
- msgid "or URL:"
1362
- msgstr "o bien una URL:"
1363
-
1364
- #: app/options-settings.php:79
1365
- msgid "Temp Folder"
1366
- msgstr "Directorio temporal"
1367
-
1368
- #: app/options-tools.php:8
1369
- msgid "BackWPup Tools"
1370
- msgstr "Herramientas de BackWPup"
1371
-
1372
- #: app/options-tools.php:29
1373
- msgid "Database restore"
1374
- msgstr "Restauración de la base de datos"
1375
-
1376
- #: app/options-tools.php:32
1377
- #: app/options-tools.php:50
1378
- msgid "Restore"
1379
- msgstr "Restaurar"
1380
-
1381
- #: app/options-tools.php:47
1382
- msgid "SQL File to restore:"
1383
- msgstr "Fichero SQL para restaurar:"
1384
-
1385
- #: app/options-tools.php:53
1386
- msgid "Copy SQL file to Blog root folder to use restore."
1387
- msgstr "Para llevar a cabo la restauración, copia el fichero SQL al directorio raíz del blog."
1388
-
1389
- #: app/options-tools.php:61
1390
- msgid "Import Jobs settings"
1391
- msgstr "Importar tareas programadas"
1392
-
1393
- #: app/options-tools.php:63
1394
- msgid "Select File to import:"
1395
- msgstr "Selecciona el fichero para importar:"
1396
-
1397
- #: app/options-tools.php:64
1398
- #: app/options-tools.php:66
1399
- msgid "Upload"
1400
- msgstr "Subir"
1401
-
1402
- #: app/options-tools.php:67
1403
- msgid "Select Jobs to Import:"
1404
- msgstr "Selecciona las tareas que se importarán:"
1405
-
1406
- #: app/options-tools.php:71
1407
- msgid "Import Type"
1408
- msgstr "Importar tipo"
1409
-
1410
- #: app/options-tools.php:71
1411
- msgid "No Import"
1412
- msgstr "No importar"
1413
-
1414
- #: app/options-tools.php:73
1415
- msgid "Overwrite"
1416
- msgstr "Sobrescribir"
1417
-
1418
- #: app/options-tools.php:73
1419
- msgid "Append"
1420
- msgstr "Añadir"
1421
-
1422
- #: app/options-tools.php:75
1423
- #: app/options-tools.php:79
1424
- #: app/options-tools.php:81
1425
- msgid "Import"
1426
- msgstr "Importar"
1427
-
1428
- #: app/options-tools.php:117
1429
- msgid "Jobs imported!"
1430
- msgstr "Las tareas han sido importadas"
1431
-
1432
- #: app/php-functions.php:8
1433
- #: app/php-functions.php:82
1434
- #: app/php-functions.php:264
1435
- msgid "BackWPup"
1436
- msgstr "BackWPup"
1437
-
1438
- #: app/php-functions.php:26
1439
- msgid "BackWPup Logs"
1440
- msgstr "Registros de BackWPup"
1441
-
1442
- #: app/php-functions.php:45
1443
- msgid "BackWPup Manage Backups"
1444
- msgstr "Gestionar copias de seguridad de BackWPup"
1445
-
1446
- #: app/php-functions.php:61
1447
- msgid "BackWPup Job Running"
1448
- msgstr "Tarea de BackWPup en ejecución"
1449
-
1450
- #: app/php-functions.php:64
1451
- msgid "Running Job"
1452
- msgstr "Tarea en ejecución"
1453
-
1454
- #: app/php-functions.php:72
1455
- msgid "BackWPup View Logs"
1456
- msgstr "Ver registros de BackWPup"
1457
-
1458
- #: app/php-functions.php:75
1459
- #: app/php-functions.php:390
1460
- msgid "View Log"
1461
- msgstr "Ver registro"
1462
-
1463
- #: app/php-functions.php:82
1464
- msgid "Add New"
1465
- msgstr "Añadir nuevo"
1466
-
1467
- #: app/php-functions.php:105
1468
- #: app/php-functions.php:256
1469
- msgid "Support"
1470
- msgstr "Suporte"
1471
-
1472
- #: app/php-functions.php:106
1473
- #: app/php-functions.php:255
1474
- msgid "FAQ"
1475
- msgstr "Preguntas más frecuentes (FAQ)"
1476
-
1477
- #: app/php-functions.php:107
1478
- msgid "Plugin Homepage"
1479
- msgstr "Página del plugin"
1480
-
1481
- #: app/php-functions.php:108
1482
- msgid "Plugin Home on WordPress.org"
1483
- msgstr "Página del plugin en WordPress.org"
1484
-
1485
- #: app/php-functions.php:109
1486
- #: app/php-functions.php:257
1487
- msgid "Donate"
1488
- msgstr "Hacer una donación"
1489
-
1490
- #: app/php-functions.php:116
1491
- msgid "Version:"
1492
- msgstr "Versión:"
1493
-
1494
- #: app/php-functions.php:117
1495
- msgid "Author:"
1496
- msgstr "Autor"
1497
-
1498
- #: app/php-functions.php:190
1499
- msgid "Jobs"
1500
- msgstr "Tareas"
1501
-
1502
- #: app/php-functions.php:192
1503
- msgid "Backups"
1504
- msgstr "Copias de seguridad"
1505
-
1506
- #: app/php-functions.php:193
1507
- msgid "Tools"
1508
- msgstr "Herramientas"
1509
-
1510
- #: app/php-functions.php:194
1511
- #: app/php-functions.php:245
1512
- msgid "Settings"
1513
- msgstr "Configuración"
1514
-
1515
- #: app/php-functions.php:245
1516
- msgid "Go to Settings Page"
1517
- msgstr "Ir a la página de configuración"
1518
-
1519
- #: app/php-functions.php:310
1520
- msgid "WP XML Export"
1521
- msgstr "Generar un fichero WP XML de exportación"
1522
-
1523
- #: app/php-functions.php:313
1524
- msgid "Database Backup"
1525
- msgstr "Hacer una copia de seguridad de la base de datos"
1526
-
1527
- #: app/php-functions.php:319
1528
- msgid "Optimize Database Tables"
1529
- msgstr "Optimizar las tablas de la base de datos"
1530
-
1531
- #: app/php-functions.php:322
1532
- msgid "Check Database Tables"
1533
- msgstr "Verificar las tablas de la base de datos"
1534
-
1535
- #: app/php-functions.php:374
1536
- msgid "Logs:"
1537
- msgstr "Registros:"
1538
-
1539
- #: app/php-functions.php:413
1540
- msgid "Scheduled Jobs:"
1541
- msgstr "Tareas programadas:"
1542
-
1543
- #: app/php-functions.php:416
1544
- msgid "Edit Job"
1545
- msgstr "Editar tarea"
1546
-
1547
- #: app/php-functions.php:706
1548
- msgid "- WordPress 2.8 or heiger needed!"
1549
- msgstr "- Se necesita WordPress 2.8 o superior."
1550
-
1551
- #: app/php-functions.php:710
1552
- msgid "- PHP 5.2.0 or higher needed!"
1553
- msgstr "- Se necesita PHP 5.2.0 o superior."
1554
-
1555
- #: app/php-functions.php:714
1556
- msgid "- Logs Folder not exists (Try too create it on first Job run):"
1557
- msgstr "- El directorio de registro no existe (el plugin intentará crearlo la primera vez que se ejecute la tarea programada):"
1558
-
1559
- #: app/php-functions.php:717
1560
- msgid "- Logs Folder not writeable:"
1561
- msgstr "- El servidor no puede escribir en el directorio donde se guardan los registros:"
1562
-
1563
- #: app/php-functions.php:720
1564
- msgid "- Temp Folder not exists (Try too create it on first Job run):"
1565
- msgstr "- El directorio temporal no existe (el plugin intentará crearlo la primera vez que se ejecute la tarea programada):"
1566
-
1567
- #: app/php-functions.php:723
1568
- msgid "- Temp Folder not writeable:"
1569
- msgstr "- El servidor no puede escribir en el directorio temporal:"
1570
-
1571
- #: app/php-functions.php:728
1572
- msgid "- Please Check Scheduling time for Job:"
1573
- msgstr "- Por favor, verifica la programación de la tarea:"
1574
-
1575
- #: app/php-functions.php:731
1576
- msgid "- WP-Cron don't working please check it!"
1577
- msgstr "- El WP-Cron no funciona; por favor, compruébalo."
1578
-
1579
- #: app/php5-functions.php:22
1580
- msgid "New"
1581
- msgstr "Nuevo"
1582
-
1583
- #: app/php5-functions.php:500
1584
- msgid "Missing Access Key ID!"
1585
- msgstr "Falta la ID de la clave de acceso."
1586
-
1587
- #: app/php5-functions.php:507
1588
- msgid "Missing Secret Access Key!"
1589
- msgstr "Falta la clave secreta de acceso."
1590
-
1591
- #: app/php5-functions.php:524
1592
- msgid "No Buckets found!"
1593
- msgstr "No se ha encontrado ningún bucket."
1594
-
1595
- #: app/php5-functions.php:556
1596
- msgid "Missing Username!"
1597
- msgstr "Falta el nombre de usuario."
1598
-
1599
- #: app/php5-functions.php:563
1600
- msgid "Missing API Key!"
1601
- msgstr "Falta la clave API."
1602
-
1603
- #: app/php5-functions.php:584
1604
- msgid "No Containerss found!"
1605
- msgstr "No se ha encontrado ningún contenedor."
1606
-
1607
- #: app/php5-functions.php:618
1608
- msgid "Missing Hostname!"
1609
- msgstr "Falta el nombre del servidor."
1610
-
1611
- #: app/php5-functions.php:625
1612
- msgid "Missing Account Name!"
1613
- msgstr "Falta el nombre de usuario."
1614
-
1615
- #: app/php5-functions.php:632
1616
- msgid "Missing Access Key!"
1617
- msgstr "Falta la clave de acceso."
1618
-
1619
- #: app/php5-functions.php:649
1620
- msgid "No Container found!"
1621
- msgstr "No se ha encontrado el contenedor."
1622
-
1623
- #: app/compatibility/class-wp-list-table.php:181
1624
- msgid "No items found."
1625
- msgstr "No se ha encontrado ningún elemento."
1626
-
1627
- #: app/compatibility/class-wp-list-table.php:284
1628
- msgid "Bulk Actions"
1629
- msgstr "Acciones en masa"
1630
-
1631
- #: app/compatibility/class-wp-list-table.php:289
1632
- msgid "Apply"
1633
- msgstr "Aplicar"
1634
-
1635
- #: app/compatibility/class-wp-list-table.php:363
1636
- msgid "Show all dates"
1637
- msgstr "Mostrar todas las fechas"
1638
-
1639
- #: app/compatibility/class-wp-list-table.php:391
1640
- msgid "List View"
1641
- msgstr "Vista de lista"
1642
-
1643
- #: app/compatibility/class-wp-list-table.php:392
1644
- msgid "Excerpt View"
1645
- msgstr "Vista de resumen"
1646
-
1647
- #: app/compatibility/class-wp-list-table.php:418
1648
- #, php-format
1649
- msgid "%s pending"
1650
- msgstr "%s pendiente"
1651
-
1652
- #: app/compatibility/class-wp-list-table.php:474
1653
- #: app/compatibility/class-wp-list-table.php:870
1654
- #, php-format
1655
- msgid "1 item"
1656
- msgid_plural "%s items"
1657
- msgstr[0] "1 elemento"
1658
- msgstr[1] "%s elementos"
1659
-
1660
- #: app/compatibility/class-wp-list-table.php:515
1661
- #, php-format
1662
- msgid "%1$s of %2$s"
1663
- msgstr "%1$s de %2$s"
1664
-
1665
- #: app/tools/db_restore.php:34
1666
- #: app/tools/db_restore.php:53
1667
- #: app/tools/db_restore.php:68
1668
- #: app/tools/db_restore.php:79
1669
- #: app/tools/db_restore.php:82
1670
- #: app/tools/db_restore.php:85
1671
- #: app/tools/db_restore.php:90
1672
- msgid "ERROR:"
1673
- msgstr "ERROR:"
1674
-
1675
- #: app/tools/db_restore.php:34
1676
- #, php-format
1677
- msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
1678
- msgstr "Por favor, establece la variable <i>$table_prefix = '%1$s';</i> en wp-config.php"
1679
-
1680
- #: app/tools/db_restore.php:53
1681
- #, php-format
1682
- msgid "Pleace set <i>define('DB_iso-8859-1', '%1$s');</i> in wp-config.php"
1683
- msgstr "Por favor, establece la variable <i>define('DB_iso-8859-1', '%1$s');</i> en wp-config.php"
1684
-
1685
- #: app/tools/db_restore.php:74
1686
- #, php-format
1687
- msgid "%1$s Database Querys done."
1688
- msgstr "Se han realizado %1$s consultas a la base de datos."
1689
-
1690
- #: app/tools/db_restore.php:75
1691
- msgid "Make changes for Blogurl and ABSPATH if needed."
1692
- msgstr "Realiza los cambios en Blogurl y ABSPATH si son necesarios."
1693
-
1694
- #: app/tools/db_restore.php:92
1695
- msgid "Restore Done. Please delete the SQL file after Restore."
1696
- msgstr "Restauración realizada. Por favor, borra el fichero SQL después de restaurar."
1697
-
1698
- #~ msgid "Connect to Dropbox ..."
1699
- #~ msgstr "Conectar a Dropbox..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/backwpup-fr_FR.mo ADDED
Binary file
languages/backwpup-fr_FR.po ADDED
@@ -0,0 +1,5222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: BackWPup v3.0.6\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-03-17 18:27+0100\n"
6
+ "PO-Revision-Date: 2013-03-25 16:17+0100\n"
7
+ "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
+ "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.5\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: backwpup.php:42
23
+ msgid ""
24
+ "BackWPup requires PHP version 5.2.6 or greater and WordPress 3.2 or greater."
25
+ msgstr ""
26
+ "BackupWPup nécessite la version 5.2.6 de PHP et la la version 3.2 de "
27
+ "WordPress ou plus."
28
+
29
+ #: inc/class-admin.php:118 inc/class-help.php:29
30
+ msgid "https://marketpress.com/documentation/backwpup-pro/"
31
+ msgstr "https://marketpress.com/documentation/backwpup-pro/"
32
+
33
+ #: inc/class-admin.php:118
34
+ msgid "Documentation"
35
+ msgstr "Documentation"
36
+
37
+ #: inc/class-admin.php:120 inc/class-help.php:26
38
+ msgid "https://marketpress.com/support/forum/plugins/backwpup-pro/"
39
+ msgstr "https://marketpress.com/support/forum/plugins/backwpup-pro/"
40
+
41
+ # @ backwpup
42
+ #: inc/class-admin.php:120 inc/class-help.php:26
43
+ msgid "Pro Support"
44
+ msgstr "Pro Support"
45
+
46
+ #: inc/class-admin.php:122 inc/class-help.php:28
47
+ msgid "http://wordpress.org/support/plugin/backwpup/"
48
+ msgstr "http://wordpress.org/support/plugin/backwpup/"
49
+
50
+ # @ backwpup
51
+ #: inc/class-admin.php:122 inc/class-help.php:28
52
+ msgid "Support"
53
+ msgstr "Aide"
54
+
55
+ # @ backwpup
56
+ #: inc/class-admin.php:141
57
+ msgid "BackWPup Dashboard"
58
+ msgstr "Tableau de bord de BackWPup"
59
+
60
+ #: inc/class-admin.php:141
61
+ msgid "Dashboard"
62
+ msgstr "Tableau de bord"
63
+
64
+ # @ backwpup
65
+ #: inc/class-admin.php:160 inc/class-adminbar.php:83
66
+ #: inc/class-page-settings.php:103
67
+ msgid "Jobs"
68
+ msgstr "Opérations"
69
+
70
+ # @ backwpup
71
+ #: inc/class-admin.php:175
72
+ msgid "Add New Job"
73
+ msgstr "Ajouter une nouvelle opération"
74
+
75
+ # @ backwpup
76
+ #: inc/class-admin.php:191 inc/class-adminbar.php:99
77
+ #: inc/class-page-backups.php:372 inc/class-page-logs.php:281
78
+ #: inc/class-page-settings.php:103
79
+ msgid "Logs"
80
+ msgstr "Fichiers journaux"
81
+
82
+ # @ backwpup
83
+ #: inc/class-admin.php:206 inc/class-adminbar.php:107
84
+ msgid "Backups"
85
+ msgstr "Sauvegardes"
86
+
87
+ # @ backwpup
88
+ #: inc/class-admin.php:221
89
+ msgid "Settings"
90
+ msgstr "Paramètres"
91
+
92
+ #: inc/class-admin.php:235
93
+ msgid "About"
94
+ msgstr "A propos"
95
+
96
+ # @ backwpup
97
+ #: inc/class-admin.php:281 inc/class-admin.php:287
98
+ msgid "Cheating, huh?"
99
+ msgstr "Vous trichez ?"
100
+
101
+ # @ backwpup
102
+ #: inc/class-admin.php:321
103
+ msgid "Jobs overview"
104
+ msgstr "Vue générale des opérations"
105
+
106
+ # @ backwpup
107
+ #: inc/class-admin.php:321 inc/class-page-jobs.php:134
108
+ msgid "Run now"
109
+ msgstr "Lancer maintenant"
110
+
111
+ #: inc/class-admin.php:393
112
+ #, php-format
113
+ msgctxt "link to Inpsyde.com, link text: Inpsyde GmbH"
114
+ msgid "A project of %s"
115
+ msgstr "Un projet de %s"
116
+
117
+ #: inc/class-admin.php:394
118
+ #, php-format
119
+ msgctxt "developer name, link text: Daniel Hüsken"
120
+ msgid "Developer: %s"
121
+ msgstr "Developpeur: %s"
122
+
123
+ #: inc/class-admin.php:411
124
+ #, php-format
125
+ msgid "version %s"
126
+ msgstr "version %s"
127
+
128
+ #: inc/class-admin.php:427
129
+ #, php-format
130
+ msgid ""
131
+ "You have activated or updated BackWPup. Please check <a href=\"%s\">this "
132
+ "page</a>."
133
+ msgstr ""
134
+ "Vous avez activé ou mis à jour BackWPup, merci de vérifier <a href=\"%s"
135
+ "\">ici</a>."
136
+
137
+ # @ backwpup
138
+ #: inc/class-adminbar.php:52
139
+ msgid "running"
140
+ msgstr "en cours"
141
+
142
+ # @ backwpup
143
+ # @ textdomain
144
+ #: inc/class-adminbar.php:61
145
+ msgid "BackWPup"
146
+ msgstr "BackWPup"
147
+
148
+ # @ backwpup
149
+ #: inc/class-adminbar.php:68
150
+ msgid "Now Running"
151
+ msgstr "En cours"
152
+
153
+ # @ backwpup
154
+ #: inc/class-adminbar.php:74
155
+ msgid "Abort!"
156
+ msgstr "Abandonner!"
157
+
158
+ # @ backwpup
159
+ #: inc/class-adminbar.php:91
160
+ msgid "Add New"
161
+ msgstr "Ajouter"
162
+
163
+ # @ backwpup
164
+ #: inc/class-adminbar.php:129
165
+ msgid "Run Now"
166
+ msgstr "Lancer maintenant"
167
+
168
+ #: inc/class-create-archive.php:72
169
+ msgid "The file name of an archive cannot be empty."
170
+ msgstr "Le nom d'un fichier archive ne peut pas être vide."
171
+
172
+ #: inc/class-create-archive.php:79
173
+ #, php-format
174
+ msgctxt "%s = Folder name"
175
+ msgid "Folder %s for archive not found"
176
+ msgstr "Le répertoire %s pour les archives n'a pas été trouvé"
177
+
178
+ #: inc/class-create-archive.php:85 inc/class-create-archive.php:116
179
+ #: inc/class-create-archive.php:131 inc/class-mysqldump.php:110
180
+ msgid "Functions for gz compression not available"
181
+ msgstr "Les fonctions pour la compression gz ne sont pas disponibles"
182
+
183
+ #: inc/class-create-archive.php:91 inc/class-create-archive.php:137
184
+ #: inc/class-mysqldump.php:114
185
+ msgid "Functions for bz2 compression not available"
186
+ msgstr "Les fonctions pour la compression bz2 ne sont pas disponibles"
187
+
188
+ # @ backwpup
189
+ #: inc/class-create-archive.php:112
190
+ #, php-format
191
+ msgctxt "ZipArchive open() result"
192
+ msgid "Cannot create zip archive: %d"
193
+ msgstr "Création de l'archive zip impossible : %d"
194
+
195
+ #: inc/class-create-archive.php:142
196
+ #, php-format
197
+ msgctxt "%s = file name"
198
+ msgid "Method to archive file %s not detected"
199
+ msgstr "La méthode pour archiver le fichier %s n'a pas été trouvée"
200
+
201
+ # @ backwpup
202
+ #: inc/class-create-archive.php:147
203
+ msgid "Cannot open archive file"
204
+ msgstr "Impossible d'ouvrir le fichier archive"
205
+
206
+ # @ backwpup
207
+ #: inc/class-create-archive.php:165 inc/class-create-archive.php:285
208
+ #, php-format
209
+ msgid "PclZip archive add error: %s"
210
+ msgstr "Erreur d'ajout à l'archive PclZipp : %s"
211
+
212
+ #: inc/class-create-archive.php:219
213
+ msgid "File name cannot be empty"
214
+ msgstr "Un nom de fichier ne peut pas être vide"
215
+
216
+ # @ backwpup
217
+ #: inc/class-create-archive.php:222
218
+ #, php-format
219
+ msgctxt "File path to add to archive"
220
+ msgid "File %s does not exist or is not readable"
221
+ msgstr "Le fichier \"%s\" n'existe pas ou n'est pas accessible! "
222
+
223
+ #: inc/class-create-archive.php:232 inc/class-create-archive.php:246
224
+ #: inc/class-create-archive.php:322 inc/class-create-archive.php:326
225
+ msgid "This archive method can only add one file"
226
+ msgstr "Cette méthode d'archivage ne peut ajouter qu'un fichier"
227
+
228
+ # @ backwpup
229
+ #: inc/class-create-archive.php:237 inc/class-create-archive.php:251
230
+ #: inc/class-create-archive.php:418
231
+ #, php-format
232
+ msgid "Cannot open source file %s to archive"
233
+ msgstr "Impossible d'ajouter le fichier %s à l'archive"
234
+
235
+ # @ backwpup
236
+ #: inc/class-create-archive.php:277 inc/class-create-archive.php:337
237
+ #, php-format
238
+ msgid "Cannot add \"%s\" to zip archive!"
239
+ msgstr "Impossible d'ajouter \"%s\" à l'archive zip!"
240
+
241
+ #: inc/class-create-archive.php:310
242
+ msgid "Folder name cannot be empty"
243
+ msgstr "Le nom du répertoire ne peut pas être vide"
244
+
245
+ # @ backwpup
246
+ #: inc/class-create-archive.php:313
247
+ #, php-format
248
+ msgctxt "Folder path to add to archive"
249
+ msgid "Folder %s does not exist or is not readable"
250
+ msgstr "Le répertoire \"%s\" n'existe pas ou n'est pas accessible"
251
+
252
+ #: inc/class-create-archive.php:361
253
+ msgid "(ER_MULTIDISK) Multi-disk zip archives not supported"
254
+ msgstr "(ER_MULTIDISK) Multi-disc zip archives non supporté"
255
+
256
+ #: inc/class-create-archive.php:362
257
+ msgid "(ER_RENAME) Renaming temporary file failed"
258
+ msgstr "(ER_RENAME) Erreur du renomage du fichier temporaire"
259
+
260
+ #: inc/class-create-archive.php:363
261
+ msgid "(ER_CLOSE) Closing zip archive failed"
262
+ msgstr "(ER_CLOSE) La fermeture de l'archive Zip a échouée"
263
+
264
+ #: inc/class-create-archive.php:364
265
+ msgid "(ER_SEEK) Seek error"
266
+ msgstr "(ER_SEEK) Erreur de recherche (seek)"
267
+
268
+ #: inc/class-create-archive.php:365
269
+ msgid "(ER_READ) Read error"
270
+ msgstr "(ER_READ) Erreur de lecture"
271
+
272
+ #: inc/class-create-archive.php:366
273
+ msgid "(ER_WRITE) Write error"
274
+ msgstr "(ER_WRITE) Erreur d'écriture"
275
+
276
+ #: inc/class-create-archive.php:367
277
+ msgid "(ER_CRC) CRC error"
278
+ msgstr "(ER_CRC) Ereur de CRC"
279
+
280
+ #: inc/class-create-archive.php:368
281
+ msgid "(ER_ZIPCLOSED) Containing zip archive was closed"
282
+ msgstr "(ER_ZIPCLOSED) Larchive Zip contenu a été fermée"
283
+
284
+ #: inc/class-create-archive.php:369
285
+ msgid "(ER_NOENT) No such file"
286
+ msgstr "(ER_NOENT) Fichier non trouvé"
287
+
288
+ #: inc/class-create-archive.php:370
289
+ msgid "(ER_EXISTS) File already exists"
290
+ msgstr "(ER_EXISTS) Le fichier existe déjà"
291
+
292
+ #: inc/class-create-archive.php:371
293
+ msgid "(ER_OPEN) Can't open file"
294
+ msgstr "(ER_OPEN) Impossible d'ouvrir le fichier"
295
+
296
+ #: inc/class-create-archive.php:372
297
+ msgid "(ER_TMPOPEN) Failure to create temporary file"
298
+ msgstr "(ER_TMPOPEN) Impossible de créer un fichier temporaire"
299
+
300
+ #: inc/class-create-archive.php:373
301
+ msgid "(ER_ZLIB) Zlib error"
302
+ msgstr "(ER_ZLIB) Erreur Zlib"
303
+
304
+ #: inc/class-create-archive.php:374
305
+ msgid "(ER_MEMORY) Malloc failure"
306
+ msgstr "(ER_MEMORY) Ereur d'allocation mémoire (malloc)"
307
+
308
+ #: inc/class-create-archive.php:375
309
+ msgid "(ER_CHANGED) Entry has been changed"
310
+ msgstr "(ER_CHANGED) L'entrée a été modifiée"
311
+
312
+ #: inc/class-create-archive.php:376
313
+ msgid "(ER_COMPNOTSUPP) Compression method not supported"
314
+ msgstr "(ER_COMPNOTSUPP) Méhtode de compression non supportée"
315
+
316
+ #: inc/class-create-archive.php:377
317
+ msgid "(ER_EOF) Premature EOF"
318
+ msgstr "(ER_EOF) EOF (fin de fichier) trouvée trop tôt"
319
+
320
+ #: inc/class-create-archive.php:378
321
+ msgid "(ER_INVAL) Invalid argument"
322
+ msgstr "(ER_INVAL)Argument invalide"
323
+
324
+ #: inc/class-create-archive.php:379
325
+ msgid "(ER_NOZIP) Not a zip archive"
326
+ msgstr "(ER_NOZIP) Ce n'est pas une archive au format zip"
327
+
328
+ #: inc/class-create-archive.php:380
329
+ msgid "(ER_INTERNAL) Internal error"
330
+ msgstr "(ER_INTERNAL) Erreur interne"
331
+
332
+ #: inc/class-create-archive.php:381
333
+ msgid "(ER_INCONS) Zip archive inconsistent"
334
+ msgstr "(ER_INCONS) Archive Zip inconsistente"
335
+
336
+ #: inc/class-create-archive.php:382
337
+ msgid "(ER_REMOVE) Can't remove file"
338
+ msgstr "(ER_REMOVE) Impossible de supprimer le fichier"
339
+
340
+ #: inc/class-create-archive.php:383
341
+ msgid "(ER_DELETED) Entry has been deleted"
342
+ msgstr "(ER_DELETED) L'entrée a été supprimée"
343
+
344
+ # @ backwpup
345
+ #: inc/class-create-archive.php:390
346
+ #, php-format
347
+ msgctxt "Text of ZipArchive status Message"
348
+ msgid "ZipArchive returns status: %s"
349
+ msgstr "Zip a renvoyé le statut : %s"
350
+
351
+ # @ backwpup
352
+ #: inc/class-create-archive.php:410
353
+ #, php-format
354
+ msgid "File name \"%1$s\" too long to be saved correctly in %2$s archive!"
355
+ msgstr ""
356
+ "Le nom de fichier \"%1$s\" est trop long pour s'enregistrer correctement "
357
+ "dans l'archive %2$s!"
358
+
359
+ # @ backwpup
360
+ #: inc/class-create-archive.php:412
361
+ #, php-format
362
+ msgid "File path \"%1$s\" too long to be saved correctly in %2$s archive!"
363
+ msgstr ""
364
+ "Le chemin vers \"%1$s\" est trop long pour s'enregistrer correctement dans "
365
+ "l'archive %2$s!"
366
+
367
+ #: inc/class-create-archive.php:422 inc/class-create-archive.php:423
368
+ #: inc/class-create-archive.php:506 inc/class-create-archive.php:507
369
+ msgid "Unknown"
370
+ msgstr "Inconnu"
371
+
372
+ # @ backwpup
373
+ #: inc/class-create-archive.php:499
374
+ #, php-format
375
+ msgid "Folder name \"%1$s\" too long to be saved correctly in %2$s archive!"
376
+ msgstr ""
377
+ "Le nom de répertoire \"%1$s\" est trop long pour s'enregistrer correctement "
378
+ "dans l'archive %2$s!"
379
+
380
+ # @ backwpup
381
+ #: inc/class-create-archive.php:501
382
+ #, php-format
383
+ msgid "Folder path \"%1$s\" too long to be saved correctly in %2$s archive!"
384
+ msgstr ""
385
+ "Le chemin vers \"%1$s\" est trop long pour s'enregistrer correctement dans "
386
+ "l'archive %2$s!"
387
+
388
+ # @ backwpup
389
+ #: inc/class-cron.php:53 inc/class-job.php:1004 inc/class-page-jobs.php:391
390
+ #: inc/class-wp-cli.php:47
391
+ msgid "ERROR:"
392
+ msgstr "ERREUR:"
393
+
394
+ #: inc/class-cron.php:53
395
+ msgid "Aborted, because no progress for 2 hours!"
396
+ msgstr "Abandonné, car aucun progrès en 2 heures!"
397
+
398
+ # @ backwpup
399
+ #: inc/class-cron.php:84 inc/class-job.php:1235
400
+ #, php-format
401
+ msgid "[%3$s] BackWPup log %1$s: %2$s"
402
+ msgstr "[%3$s] trace BackWPup%1$s: %2$s"
403
+
404
+ # @ backwpup
405
+ #: inc/class-cron.php:84 inc/class-job.php:1231
406
+ msgid "ERROR"
407
+ msgstr "ERREUR"
408
+
409
+ # @ backwpup
410
+ #: inc/class-destination-dropbox.php:13
411
+ msgid "Dropbox"
412
+ msgstr "DropBox"
413
+
414
+ # @ backwpup
415
+ #: inc/class-destination-dropbox.php:14 inc/class-page-about.php:234
416
+ msgid "Backup to Dropbox"
417
+ msgstr "Sauvegarder vers DropBox"
418
+
419
+ # @ backwpup
420
+ #: inc/class-destination-dropbox.php:46 inc/class-destination-dropbox.php:60
421
+ msgid "Dropbox authentication complete!"
422
+ msgstr "Authentification DropBox réussie!"
423
+
424
+ # @ backwpup
425
+ #: inc/class-destination-dropbox.php:49 inc/class-destination-dropbox.php:63
426
+ #: inc/class-destination-dropbox.php:85 inc/class-destination-dropbox.php:99
427
+ #: inc/class-destination-dropbox.php:280 inc/class-destination-dropbox.php:330
428
+ #, php-format
429
+ msgid "Dropbox API: %s"
430
+ msgstr "DropBox API: %s"
431
+
432
+ # @ backwpup
433
+ #: inc/class-destination-dropbox.php:66
434
+ msgid "Wrong token for Dropbox authentication!"
435
+ msgstr "Le jeton d'enregistrement DropBox reçu est invalide!"
436
+
437
+ # @ backwpup
438
+ #: inc/class-destination-dropbox.php:70
439
+ msgid "Dropbox authentication not approved!"
440
+ msgstr "Authentification DropBox non réussie!"
441
+
442
+ # @ backwpup
443
+ #: inc/class-destination-dropbox.php:103
444
+ msgid "Login"
445
+ msgstr "Login"
446
+
447
+ # @ backwpup
448
+ #: inc/class-destination-dropbox.php:107
449
+ msgid "Authenticate"
450
+ msgstr "Authentification"
451
+
452
+ # @ backwpup
453
+ #: inc/class-destination-dropbox.php:109
454
+ msgid "Not authenticated!"
455
+ msgstr "Non authentifié!"
456
+
457
+ # @ backwpup
458
+ #: inc/class-destination-dropbox.php:109
459
+ msgid "Create Account"
460
+ msgstr "Créer un compte"
461
+
462
+ # @ backwpup
463
+ #: inc/class-destination-dropbox.php:110
464
+ msgid "Authenticate (Sandbox)"
465
+ msgstr "Authentification (Sandbox)"
466
+
467
+ # @ backwpup
468
+ #: inc/class-destination-dropbox.php:111
469
+ msgid "Authenticate (full Dropbox)"
470
+ msgstr "Authentification (full Dropbox)"
471
+
472
+ # @ backwpup
473
+ #: inc/class-destination-dropbox.php:113
474
+ #: inc/class-destination-sugarsync.php:63
475
+ msgid "Authenticated!"
476
+ msgstr "Enregistré!"
477
+
478
+ # @ backwpup
479
+ #: inc/class-destination-dropbox.php:114
480
+ msgid "Reauthenticate (Sandbox)"
481
+ msgstr "Ré-authentification (Sandbox)"
482
+
483
+ #: inc/class-destination-dropbox.php:115
484
+ msgid "Reauthenticate (full Dropbox)"
485
+ msgstr "Nouvelle authentification (DropBox)"
486
+
487
+ # @ backwpup
488
+ #: inc/class-destination-dropbox.php:122 inc/class-destination-folder.php:41
489
+ #: inc/class-destination-ftp.php:67 inc/class-destination-msazure.php:86
490
+ #: inc/class-destination-sugarsync.php:100
491
+ msgid "Backup settings"
492
+ msgstr "Paramètres BackWPup"
493
+
494
+ # @ backwpup
495
+ #: inc/class-destination-dropbox.php:126
496
+ msgid "Folder in Dropbox"
497
+ msgstr "Répertoire dans Dropbox"
498
+
499
+ #: inc/class-destination-dropbox.php:132 inc/class-destination-folder.php:51
500
+ #: inc/class-destination-ftp.php:77 inc/class-destination-sugarsync.php:110
501
+ msgid "File Deletion"
502
+ msgstr "Suppression de fichier"
503
+
504
+ #: inc/class-destination-dropbox.php:138 inc/class-destination-folder.php:57
505
+ #: inc/class-destination-msazure.php:102 inc/class-destination-rsc.php:111
506
+ #: inc/class-destination-s3-v1.php:172 inc/class-destination-s3.php:177
507
+ #: inc/class-destination-sugarsync.php:116
508
+ msgid "Number of files to keep in folder."
509
+ msgstr "Nombre de fichiers à garder dans le répertoire."
510
+
511
+ # @ backwpup
512
+ #: inc/class-destination-dropbox.php:138 inc/class-destination-folder.php:57
513
+ #: inc/class-destination-ftp.php:83 inc/class-destination-msazure.php:102
514
+ #: inc/class-destination-rsc.php:111 inc/class-destination-s3-v1.php:172
515
+ #: inc/class-destination-s3.php:177 inc/class-destination-sugarsync.php:116
516
+ msgid "Oldest files will be deleted first. 0 = no deletion"
517
+ msgstr ""
518
+ "Les plus vieux fichiers seront effacés en premier. 0 = pas de suppression"
519
+
520
+ #: inc/class-destination-dropbox.php:142 inc/class-destination-folder.php:61
521
+ #: inc/class-destination-ftp.php:87 inc/class-destination-msazure.php:106
522
+ #: inc/class-destination-rsc.php:115 inc/class-destination-s3-v1.php:176
523
+ #: inc/class-destination-s3.php:181 inc/class-destination-sugarsync.php:120
524
+ msgid "Do not delete files while syncing to destination!"
525
+ msgstr "Ne pas supprimer les fichies après l'envoi à la destination!"
526
+
527
+ # @ backwpup
528
+ #: inc/class-destination-dropbox.php:240
529
+ #, php-format
530
+ msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
531
+ msgstr "%d. Tentative d'envoi de fichiers vers Dropbox&#160;&hellip;"
532
+
533
+ # @ backwpup
534
+ #: inc/class-destination-dropbox.php:248
535
+ #, php-format
536
+ msgid "Authenticated with Dropbox of user %s"
537
+ msgstr "Authentifié chez DropBox avec l'utilisateur %s"
538
+
539
+ #: inc/class-destination-dropbox.php:253
540
+ msgid "Your Dropbox appears to be full."
541
+ msgstr "Votre compte DropBox semble plein."
542
+
543
+ # @ backwpup
544
+ #: inc/class-destination-dropbox.php:258
545
+ #, php-format
546
+ msgid "%s available on your Dropbox"
547
+ msgstr "%s de libre sur votre DropBox"
548
+
549
+ # @ backwpup
550
+ #: inc/class-destination-dropbox.php:262
551
+ msgid "Uploading to Dropbox&#160;&hellip;"
552
+ msgstr "Envoi vers DropBox commencé&#160;&hellip;"
553
+
554
+ # @ backwpup
555
+ #: inc/class-destination-dropbox.php:268 inc/class-destination-msazure.php:249
556
+ #: inc/class-destination-sugarsync.php:272
557
+ #, php-format
558
+ msgid "Backup transferred to %s"
559
+ msgstr "Sauvegarde envoyée vers %s"
560
+
561
+ #: inc/class-destination-dropbox.php:272
562
+ msgid "Uploaded file size and local file size don't match."
563
+ msgstr "Le fichier chargé et le fichier en local n'ont pas la même taille."
564
+
565
+ # @ backwpup
566
+ #: inc/class-destination-dropbox.php:274
567
+ #, php-format
568
+ msgid "Error on transfer backup to Dropbox: %s"
569
+ msgstr "Impossible d'envoyer la sauvegarde vers DropBox : %s"
570
+
571
+ #: inc/class-destination-dropbox.php:321
572
+ #, php-format
573
+ msgid "Error while deleting file from Dropbox: %s"
574
+ msgstr "Erreur lors de la suppression du fichier sur Dropbox : %s"
575
+
576
+ # @ backwpup
577
+ #: inc/class-destination-dropbox.php:324
578
+ #, php-format
579
+ msgid "One file deleted from Dropbox"
580
+ msgid_plural "%d files deleted on Dropbox"
581
+ msgstr[0] "Un fichier supprimé sur DropBox"
582
+ msgstr[1] "%d fichiers supprimé sur Dropbox"
583
+
584
+ #: inc/class-destination-email.php:19
585
+ msgid "E-Mail"
586
+ msgstr "E-Mail"
587
+
588
+ # @ backwpup
589
+ #: inc/class-destination-email.php:20
590
+ msgid "Backup sent by e-mail"
591
+ msgstr "Sauvegarder envoyée par E-mail"
592
+
593
+ # @ backwpup
594
+ #: inc/class-destination-email.php:55
595
+ msgid "E-Mail Address"
596
+ msgstr "Adresse E-mail:"
597
+
598
+ # @ backwpup
599
+ #: inc/class-destination-email.php:58
600
+ msgid "E-Mail address"
601
+ msgstr "Adresse E-mail:"
602
+
603
+ #: inc/class-destination-email.php:62
604
+ msgid "E-Mail address to which Backups are sent."
605
+ msgstr "Adresse de courriel pour l'envoi de la sauvegarde."
606
+
607
+ # @ backwpup
608
+ #: inc/class-destination-email.php:66 inc/class-destination-email.php:68
609
+ msgid "Send test e-mail"
610
+ msgstr "Envoyer un courriel de test"
611
+
612
+ # @ backwpup
613
+ #: inc/class-destination-email.php:73
614
+ msgid "Send e-mail settings"
615
+ msgstr "Paramètres pour l'envoi des courriels"
616
+
617
+ #: inc/class-destination-email.php:76
618
+ msgid "Maximum file size"
619
+ msgstr "Taille maximum du fichier"
620
+
621
+ #: inc/class-destination-email.php:77
622
+ msgid "MB"
623
+ msgstr "MB"
624
+
625
+ #: inc/class-destination-email.php:78
626
+ msgid "Maximum file size to be included in an e-mail. 0 = unlimited"
627
+ msgstr "Taille maximum du fichier pour l'envoi par courriel. 0 = pas de limite"
628
+
629
+ # @ backwpup
630
+ #: inc/class-destination-email.php:82 inc/class-destination-email.php:86
631
+ msgid "Sender e-mail address"
632
+ msgstr "E-mail de l'emetteur"
633
+
634
+ # @ backwpup
635
+ #: inc/class-destination-email.php:90
636
+ msgid "Sender name"
637
+ msgstr "Nom de l'emetteur"
638
+
639
+ #: inc/class-destination-email.php:94
640
+ msgid "Name of e-mail sender"
641
+ msgstr "Nom de l'émetteur du courriel"
642
+
643
+ # @ backwpup
644
+ #: inc/class-destination-email.php:98
645
+ msgid "Sending method"
646
+ msgstr "Méthode d'envoi du courriel"
647
+
648
+ #: inc/class-destination-email.php:102
649
+ msgid "Use site settings"
650
+ msgstr "Utilisation des paramètres du site"
651
+
652
+ # @ backwpup
653
+ #: inc/class-destination-email.php:103
654
+ msgid "PHP: mail()"
655
+ msgstr "PHP:mail()"
656
+
657
+ # @ backwpup
658
+ #: inc/class-destination-email.php:104
659
+ msgid "Sendmail"
660
+ msgstr "Sendmail"
661
+
662
+ # @ backwpup
663
+ #: inc/class-destination-email.php:105
664
+ msgid "SMTP"
665
+ msgstr "SMTP"
666
+
667
+ #: inc/class-destination-email.php:108
668
+ msgid ""
669
+ "- Use site settings: retrieves the e-mail settings of your site. -PHP mail"
670
+ "(): needs more PHP memory"
671
+ msgstr ""
672
+ "- Utilisation des paramètre du Blog: prendre les valeurs des paramètre du "
673
+ "blog. - PHP mail() nécessite plus de mémoire pour PHP"
674
+
675
+ # @ backwpup
676
+ #: inc/class-destination-email.php:113
677
+ msgid "Sendmail path"
678
+ msgstr "Chemin de Sendmail"
679
+
680
+ # @ backwpup
681
+ #: inc/class-destination-email.php:122
682
+ msgid "SMTP host name"
683
+ msgstr "Nom d'hôte SMTP"
684
+
685
+ # @ backwpup
686
+ #: inc/class-destination-email.php:127 inc/class-destination-ftp.php:46
687
+ msgid "Port:"
688
+ msgstr "Port:"
689
+
690
+ # @ backwpup
691
+ #: inc/class-destination-email.php:134
692
+ msgid "SMTP secure connection"
693
+ msgstr "Connexion sécurisée SMTP"
694
+
695
+ # @ backwpup
696
+ #: inc/class-destination-email.php:138 inc/class-destination-s3-v1.php:189
697
+ #: inc/class-destination-s3.php:205 inc/class-jobtype-dbdump.php:67
698
+ #: inc/class-jobtype-dbdump.php:110 inc/class-jobtype-wpexp.php:69
699
+ #: inc/class-jobtype-wpplugin.php:56 inc/class-page-backwpup.php:217
700
+ #: inc/class-page-backwpup.php:282
701
+ msgid "none"
702
+ msgstr "aucune"
703
+
704
+ #: inc/class-destination-email.php:139
705
+ msgid "SSL"
706
+ msgstr "SSL"
707
+
708
+ #: inc/class-destination-email.php:140
709
+ msgid "TLS"
710
+ msgstr "TLS"
711
+
712
+ # @ backwpup
713
+ #: inc/class-destination-email.php:146
714
+ msgid "SMTP username"
715
+ msgstr "Nom d'utilisateur SMTP"
716
+
717
+ # @ backwpup
718
+ #: inc/class-destination-email.php:154
719
+ msgid "SMTP password"
720
+ msgstr "Mot de passe SMTP"
721
+
722
+ # @ backwpup
723
+ #: inc/class-destination-email.php:230
724
+ #, php-format
725
+ msgid "%d. Trying to send backup with e-mail&hellip;"
726
+ msgstr "%d. Tentative d'envoi de la sauvegarde par mail&hellip;"
727
+
728
+ # @ backwpup
729
+ #: inc/class-destination-email.php:235
730
+ msgid "Backup archive too big to be sent by e-mail!"
731
+ msgstr "Fichier de sauvegarde trop volumineux pour être envoyé par mail!"
732
+
733
+ #: inc/class-destination-email.php:242
734
+ #, php-format
735
+ msgid "Sending e-mail to %s&hellip;"
736
+ msgstr "Envoie du courriel à %s&hellip;"
737
+
738
+ # @ backwpup
739
+ #: inc/class-destination-email.php:316
740
+ #, php-format
741
+ msgid "BackWPup archive from %1$s: %2$s"
742
+ msgstr "L'archive BackWPup de %1$s: %2$s"
743
+
744
+ # @ backwpup
745
+ #: inc/class-destination-email.php:319
746
+ #, php-format
747
+ msgid "Backup archive: %s"
748
+ msgstr "Archivage de: %s"
749
+
750
+ # @ backwpup
751
+ #: inc/class-destination-email.php:333 inc/class-destination-email.php:454
752
+ msgid "Error while sending e-mail!"
753
+ msgstr "Erreur en envoyant le mail!"
754
+
755
+ # @ backwpup
756
+ #: inc/class-destination-email.php:339 inc/class-destination-email.php:456
757
+ msgid "E-Mail sent."
758
+ msgstr "Mail envoyé."
759
+
760
+ # @ backwpup
761
+ #: inc/class-destination-email.php:438
762
+ msgid "BackWPup archive sending TEST Message"
763
+ msgstr "BzckWPup archive envoie un message de TEST"
764
+
765
+ #: inc/class-destination-email.php:441
766
+ msgid ""
767
+ "If this message reaches your inbox, sending backup archives via e-mail "
768
+ "should work for you."
769
+ msgstr ""
770
+ "If this message reaches your inbox, sending backup archives via e-mail "
771
+ "should work for you."
772
+
773
+ # @ backwpup
774
+ #: inc/class-destination-folder.php:13 inc/class-page-backups.php:234
775
+ msgid "Folder"
776
+ msgstr "Répertoire"
777
+
778
+ # @ backwpup
779
+ #: inc/class-destination-folder.php:14
780
+ msgid "Backup to Folder"
781
+ msgstr "Sauvegarder dans le répertoire"
782
+
783
+ #: inc/class-destination-folder.php:45
784
+ msgid "Folder to store backups in"
785
+ msgstr "Folder to store backups in"
786
+
787
+ # @ backwpup
788
+ #: inc/class-destination-folder.php:207
789
+ #, php-format
790
+ msgid "One backup file deleted"
791
+ msgid_plural "%d backup files deleted"
792
+ msgstr[0] "Un fichier de sauvegarde supprimé"
793
+ msgstr[1] "%d fichiers de sauvegarde supprimés"
794
+
795
+ #: inc/class-destination-ftp.php:13
796
+ msgid "FTP"
797
+ msgstr "FTP"
798
+
799
+ # @ backwpup
800
+ #: inc/class-destination-ftp.php:14
801
+ msgid "Backup to FTP"
802
+ msgstr "Sauvegarder vers le serveur FTP"
803
+
804
+ # @ backwpup
805
+ #: inc/class-destination-ftp.php:38
806
+ msgid "FTP server and login"
807
+ msgstr "Serveur FTP et compte"
808
+
809
+ # @ backwpup
810
+ #: inc/class-destination-ftp.php:42
811
+ msgid "FTP server"
812
+ msgstr "FTP server"
813
+
814
+ # @ backwpup
815
+ #: inc/class-destination-ftp.php:52 inc/class-destination-rsc.php:48
816
+ msgid "Username"
817
+ msgstr "Nom d'utilisateur"
818
+
819
+ # @ backwpup
820
+ #: inc/class-destination-ftp.php:59
821
+ msgid "Password"
822
+ msgstr "Mot de passe"
823
+
824
+ #: inc/class-destination-ftp.php:71
825
+ msgid "Folder to store files in"
826
+ msgstr "Répertoire pour stocker les fichiers"
827
+
828
+ # @ backwpup
829
+ #: inc/class-destination-ftp.php:83
830
+ msgid "Maximum number of files to keep in folder."
831
+ msgstr "Nombre maximum de fichiers dans le répertoire"
832
+
833
+ #: inc/class-destination-ftp.php:93
834
+ msgid "FTP specific settings"
835
+ msgstr "Paramètres FTP spécifiques"
836
+
837
+ # @ backwpup
838
+ #: inc/class-destination-ftp.php:97
839
+ msgid "Timeout for FTP connection"
840
+ msgstr "Délai d'attente pour la connexion FTP"
841
+
842
+ #: inc/class-destination-ftp.php:101 inc/class-page-logs.php:212
843
+ #: inc/class-page-settings.php:413
844
+ msgid "seconds"
845
+ msgstr "secondes"
846
+
847
+ # @ backwpup
848
+ #: inc/class-destination-ftp.php:105
849
+ msgid "SSL-FTP connection"
850
+ msgstr "Connexion SSL-FTP"
851
+
852
+ # @ backwpup
853
+ #: inc/class-destination-ftp.php:109
854
+ msgid "Use explicit SSL-FTP connection."
855
+ msgstr "Utiliser une connexion SSL-FTP."
856
+
857
+ # @ backwpup
858
+ #: inc/class-destination-ftp.php:114
859
+ msgid "FTP Passive Mode"
860
+ msgstr "FTP en mode passif"
861
+
862
+ # @ backwpup
863
+ #: inc/class-destination-ftp.php:118
864
+ msgid "Use FTP Passive Mode."
865
+ msgstr "Utiliser une connexion FTP en mode passif."
866
+
867
+ # @ backwpup
868
+ #: inc/class-destination-ftp.php:194
869
+ msgid "FTP: Login failure!"
870
+ msgstr "FTP : Échec d'authentification!"
871
+
872
+ # @ backwpup
873
+ #: inc/class-destination-ftp.php:217
874
+ #, php-format
875
+ msgid "%d. Try to send backup file to an FTP server&#160;&hellip;"
876
+ msgstr ""
877
+ "%d. Tentative d'envoi du fichier sauvegarde vers un serveur FTP&#160;&hellip;"
878
+
879
+ # @ backwpup
880
+ #: inc/class-destination-ftp.php:223
881
+ #, php-format
882
+ msgid "Connected via explicit SSL-FTP to server: %s"
883
+ msgstr "Connexion sécurisée par SSL-FTP au serveur: %s"
884
+
885
+ # @ backwpup
886
+ #: inc/class-destination-ftp.php:225
887
+ #, php-format
888
+ msgid "Cannot connect via explicit SSL-FTP to server: %s"
889
+ msgstr "Impossible de se connecter par SSL-FTP au serveur: %s"
890
+
891
+ # @ backwpup
892
+ #: inc/class-destination-ftp.php:231
893
+ msgid "PHP function to connect with explicit SSL-FTP to server does not exist!"
894
+ msgstr ""
895
+ "La fonction PHP pour se connecter au serveur avec SSL-FTP n'existe pas!"
896
+
897
+ # @ backwpup
898
+ #: inc/class-destination-ftp.php:239
899
+ #, php-format
900
+ msgid "Connected to FTP server: %s"
901
+ msgstr "Connecté au serveur FTP: %s"
902
+
903
+ # @ backwpup
904
+ #: inc/class-destination-ftp.php:241
905
+ #, php-format
906
+ msgid "Cannot connect to FTP server: %s"
907
+ msgstr "Impossible de se connecter au serveur FTP: %s"
908
+
909
+ # @ backwpup
910
+ #: inc/class-destination-ftp.php:248 inc/class-destination-ftp.php:256
911
+ #: inc/class-destination-ftp.php:267 inc/class-destination-ftp.php:303
912
+ #, php-format
913
+ msgid "FTP client command: %s"
914
+ msgstr "Commande client FTP: %s "
915
+
916
+ # @ backwpup
917
+ #: inc/class-destination-ftp.php:250
918
+ #, php-format
919
+ msgid "FTP server response: %s"
920
+ msgstr "Réponse du serveur FTP: %s"
921
+
922
+ # @ backwpup
923
+ #: inc/class-destination-ftp.php:254 inc/class-destination-ftp.php:258
924
+ #: inc/class-destination-ftp.php:270 inc/class-destination-ftp.php:272
925
+ #: inc/class-destination-ftp.php:306 inc/class-destination-ftp.php:308
926
+ #: inc/class-destination-ftp.php:312 inc/class-destination-ftp.php:314
927
+ #, php-format
928
+ msgid "FTP server reply: %s"
929
+ msgstr "Réponse du serveur FTP: %s"
930
+
931
+ # @ backwpup
932
+ #: inc/class-destination-ftp.php:272
933
+ msgid "Error getting SYSTYPE"
934
+ msgstr "Erreur en essayant d'avoir SYSTYPE"
935
+
936
+ # @ backwpup
937
+ #: inc/class-destination-ftp.php:282
938
+ #, php-format
939
+ msgid "FTP Folder \"%s\" created!"
940
+ msgstr "Répertoire FTP \"%s\" créé!"
941
+
942
+ # @ backwpup
943
+ #: inc/class-destination-ftp.php:286
944
+ #, php-format
945
+ msgid "FTP Folder \"%s\" cannot be created!"
946
+ msgstr "Le répertoire FTP \"%s\" ne peut pas être créé!"
947
+
948
+ #: inc/class-destination-ftp.php:296
949
+ #, php-format
950
+ msgid "FTP current folder is: %s"
951
+ msgstr "Le répertoire FTP actuel est : %s"
952
+
953
+ # @ backwpup
954
+ #: inc/class-destination-ftp.php:306
955
+ msgid "Entering passive mode"
956
+ msgstr "Passage en mode passif"
957
+
958
+ # @ backwpup
959
+ #: inc/class-destination-ftp.php:308
960
+ msgid "Cannot enter passive mode"
961
+ msgstr "Impossible de passer en mode passif"
962
+
963
+ # @ backwpup
964
+ #: inc/class-destination-ftp.php:312
965
+ msgid "Entering normal mode"
966
+ msgstr "Passage en mode normal"
967
+
968
+ # @ backwpup
969
+ #: inc/class-destination-ftp.php:314
970
+ msgid "Cannot enter normal mode"
971
+ msgstr "Impossible de passer en mode normal"
972
+
973
+ #: inc/class-destination-ftp.php:318
974
+ msgid "Starting upload to FTP &#160;&hellip;"
975
+ msgstr "Début du chargement par FTP &#160;&hellip;"
976
+
977
+ # @ backwpup
978
+ #: inc/class-destination-ftp.php:327
979
+ msgid "Cannot transfer backup to FTP server!"
980
+ msgstr "Impossible d'envoyer la sauvegarde vers le serveur FTP!"
981
+
982
+ # @ backwpup
983
+ #: inc/class-destination-ftp.php:333
984
+ #, php-format
985
+ msgid "Backup transferred to FTP server: %s"
986
+ msgstr "Sauvegarde envoyée vers le serveur FTP: %s"
987
+
988
+ # @ backwpup
989
+ #: inc/class-destination-ftp.php:379
990
+ #, php-format
991
+ msgid "Cannot delete \"%s\" on FTP server!"
992
+ msgstr "Impossible d'effacer \"%s\" sur le serveur FTP!"
993
+
994
+ # @ backwpup
995
+ #: inc/class-destination-ftp.php:383
996
+ #, php-format
997
+ msgid "One file deleted on FTP server"
998
+ msgid_plural "%d files deleted on FTP server"
999
+ msgstr[0] "Un fichier supprimé sur le serveur FTP"
1000
+ msgstr[1] "%d fichiers supprimés sur le serveur FTP"
1001
+
1002
+ #: inc/class-destination-msazure.php:21
1003
+ msgid "MS Azure"
1004
+ msgstr "MS Azure"
1005
+
1006
+ # @ backwpup
1007
+ #: inc/class-destination-msazure.php:22
1008
+ msgid "Backup to Microsoft Azure (Blob)"
1009
+ msgstr "Sauvegarder vers Microsoft Azure (blob)"
1010
+
1011
+ # @ backwpup
1012
+ #: inc/class-destination-msazure.php:44
1013
+ msgid "MS Azure access keys"
1014
+ msgstr "Clé MS Azure"
1015
+
1016
+ # @ backwpup
1017
+ #: inc/class-destination-msazure.php:48
1018
+ msgid "Account name"
1019
+ msgstr "Nom du compte"
1020
+
1021
+ # @ backwpup
1022
+ #: inc/class-destination-msazure.php:55
1023
+ msgid "Access key"
1024
+ msgstr "Clé d'accès"
1025
+
1026
+ # @ backwpup
1027
+ #: inc/class-destination-msazure.php:63
1028
+ msgid "Blob container"
1029
+ msgstr "Contenu de type blob"
1030
+
1031
+ # @ backwpup
1032
+ #: inc/class-destination-msazure.php:67 inc/class-destination-rsc.php:76
1033
+ msgid "Container selection"
1034
+ msgstr "Sélection du contenu"
1035
+
1036
+ # @ backwpup
1037
+ #: inc/class-destination-msazure.php:79 inc/class-destination-rsc.php:88
1038
+ msgid "Create a new container"
1039
+ msgstr "Créer un nouveau contenu"
1040
+
1041
+ # @ backwpup
1042
+ #: inc/class-destination-msazure.php:90
1043
+ msgid "Folder in container"
1044
+ msgstr "Répertoire dans le contenu"
1045
+
1046
+ #: inc/class-destination-msazure.php:96 inc/class-destination-rsc.php:105
1047
+ #: inc/class-destination-s3-v1.php:166 inc/class-destination-s3.php:171
1048
+ msgid "File deletion"
1049
+ msgstr "Suppression de fichier"
1050
+
1051
+ # @ backwpup
1052
+ #: inc/class-destination-msazure.php:143
1053
+ #, php-format
1054
+ msgid "MS Azure container \"%s\" created."
1055
+ msgstr "Le contenant Microsoft Azure \"%s\" a été créé."
1056
+
1057
+ #: inc/class-destination-msazure.php:146
1058
+ #, php-format
1059
+ msgid "MS Azure container create: %s"
1060
+ msgstr "Contenant MS Azure créé : %s"
1061
+
1062
+ # @ backwpup
1063
+ #: inc/class-destination-msazure.php:221
1064
+ #, php-format
1065
+ msgid "%d. Try sending backup to a Microsoft Azure (Blob)&#160;&hellip;"
1066
+ msgstr ""
1067
+ "%d. Tentative d'envoi de la sauvegarde vers Microsoft Azure (Blob&#160;"
1068
+ "&hellip;"
1069
+
1070
+ # @ backwpup
1071
+ #: inc/class-destination-msazure.php:238
1072
+ #, php-format
1073
+ msgid "MS Azure container \"%s\" does not exist!"
1074
+ msgstr "Le contenant Microsoft Azure \"%s\" n'existe pas!"
1075
+
1076
+ # @ backwpup
1077
+ #: inc/class-destination-msazure.php:242
1078
+ #, php-format
1079
+ msgid "Connected to MS Azure container \"%s\"."
1080
+ msgstr "Connecté au contenant Microsoft Azure \"%s\"."
1081
+
1082
+ # @ backwpup
1083
+ #: inc/class-destination-msazure.php:246
1084
+ msgid "Starting upload to MS Azure&#160;&hellip;"
1085
+ msgstr "Envoi vers MS Azure commencé&#160;&hellip;"
1086
+
1087
+ # @ backwpup
1088
+ #: inc/class-destination-msazure.php:291
1089
+ #, php-format
1090
+ msgid "One file deleted on Microsoft Azure container."
1091
+ msgid_plural "%d files deleted on Microsoft Azure container."
1092
+ msgstr[0] "Un fichier supprimé sur Microsoft Azure."
1093
+ msgstr[1] "%d fichiers supprimés sur Microsoft Azure."
1094
+
1095
+ # @ backwpup
1096
+ #: inc/class-destination-msazure.php:297
1097
+ #, php-format
1098
+ msgid "Microsoft Azure API: %s"
1099
+ msgstr "Microsoft Azure API: %s"
1100
+
1101
+ # @ backwpup
1102
+ #: inc/class-destination-msazure.php:379
1103
+ msgid "Missing account name!"
1104
+ msgstr "Nom du compte non fourni!"
1105
+
1106
+ # @ backwpup
1107
+ #: inc/class-destination-msazure.php:381 inc/class-destination-s3-v1.php:590
1108
+ #: inc/class-destination-s3.php:632
1109
+ msgid "Missing access key!"
1110
+ msgstr "Clé d'accès manquante!"
1111
+
1112
+ # @ backwpup
1113
+ #: inc/class-destination-msazure.php:385
1114
+ msgid "No container found!"
1115
+ msgstr "Aucun container trouvé!"
1116
+
1117
+ #: inc/class-destination-rsc.php:21
1118
+ msgid "RSC"
1119
+ msgstr "RackSpace"
1120
+
1121
+ # @ backwpup
1122
+ #: inc/class-destination-rsc.php:22 inc/class-page-about.php:239
1123
+ msgid "Backup to Rackspace Cloud Files"
1124
+ msgstr "Sauvegarder vers RackSpace Cloud"
1125
+
1126
+ # @ backwpup
1127
+ #: inc/class-destination-rsc.php:44
1128
+ msgid "Rack Space Cloud Keys"
1129
+ msgstr "Clé Rackspase Cloud"
1130
+
1131
+ # @ backwpup
1132
+ #: inc/class-destination-rsc.php:55
1133
+ msgid "API Key"
1134
+ msgstr "Clé API"
1135
+
1136
+ # @ backwpup
1137
+ #: inc/class-destination-rsc.php:63
1138
+ msgid "Select region"
1139
+ msgstr "Sélectionner une région"
1140
+
1141
+ # @ backwpup
1142
+ #: inc/class-destination-rsc.php:67 inc/class-destination-rsc.php:69
1143
+ msgid "Rackspace Cloud Files Region"
1144
+ msgstr "Rackspace Cloud Files Region"
1145
+
1146
+ #: inc/class-destination-rsc.php:70
1147
+ msgid "Dallas (DFW)"
1148
+ msgstr "Dallas (DFW)"
1149
+
1150
+ #: inc/class-destination-rsc.php:71
1151
+ msgid "Chicago (ORD)"
1152
+ msgstr "Chicago (ORD)"
1153
+
1154
+ # @ backwpup
1155
+ #: inc/class-destination-rsc.php:95 inc/class-destination-s3-v1.php:156
1156
+ #: inc/class-destination-s3.php:161
1157
+ msgid "S3 Backup settings"
1158
+ msgstr "Paramètres S3"
1159
+
1160
+ # @ backwpup
1161
+ #: inc/class-destination-rsc.php:99 inc/class-destination-s3-v1.php:160
1162
+ #: inc/class-destination-s3.php:165
1163
+ msgid "Folder in bucket"
1164
+ msgstr "Répertoire dans le panier"
1165
+
1166
+ # @ backwpup
1167
+ #: inc/class-destination-rsc.php:156
1168
+ #, php-format
1169
+ msgid "Rackspace Cloud container \"%s\" created."
1170
+ msgstr "Le contenant sur Rackspace Cloud \"%s\" créé."
1171
+
1172
+ # @ backwpup
1173
+ #: inc/class-destination-rsc.php:160 inc/class-destination-rsc.php:269
1174
+ #: inc/class-destination-rsc.php:297 inc/class-destination-rsc.php:345
1175
+ #, php-format
1176
+ msgid "Rackspace Cloud API: %s"
1177
+ msgstr "Rackspase Cloud API : %s"
1178
+
1179
+ # @ backwpup
1180
+ #: inc/class-destination-rsc.php:250
1181
+ #, php-format
1182
+ msgid "%d. Trying to send backup file to Rackspace cloud &hellip;"
1183
+ msgstr "%d. Tentative d'envoi de la sauvegarde vers Rackspace Cloud..."
1184
+
1185
+ # @ backwpup
1186
+ #: inc/class-destination-rsc.php:266
1187
+ #, php-format
1188
+ msgid "Connected to Rackspace cloud files container %s"
1189
+ msgstr "Connecté au contenant Rackspace \"%s\""
1190
+
1191
+ # @ backwpup
1192
+ #: inc/class-destination-rsc.php:278
1193
+ msgid "Upload to Rackspace cloud started &hellip;"
1194
+ msgstr "Envoi vers RackSpace commencé..."
1195
+
1196
+ # @ backwpup
1197
+ #: inc/class-destination-rsc.php:287
1198
+ msgid "Backup File transferred to RSC://"
1199
+ msgstr "Fichier de sauvegarde transféré vers RackSpace://"
1200
+
1201
+ # @ backwpup
1202
+ #: inc/class-destination-rsc.php:291
1203
+ msgid "Cannot transfer backup to Rackspace cloud."
1204
+ msgstr "Impossible d'envoyer la sauvegarde vers RackSpace."
1205
+
1206
+ # @ backwpup
1207
+ #: inc/class-destination-rsc.php:339
1208
+ #, php-format
1209
+ msgid "One file deleted on Rackspace cloud container."
1210
+ msgid_plural "%d files deleted on Rackspace cloud container."
1211
+ msgstr[0] "Un fichier supprimé sur Rackspace"
1212
+ msgstr[1] "%d fichiers supprimés sur RackSpace"
1213
+
1214
+ # @ backwpup
1215
+ #: inc/class-destination-rsc.php:449
1216
+ msgid "Missing username!"
1217
+ msgstr "Nom d'utilisateur manquant!"
1218
+
1219
+ # @ backwpup
1220
+ #: inc/class-destination-rsc.php:451
1221
+ msgid "Missing API Key!"
1222
+ msgstr "Clé API manquante!"
1223
+
1224
+ # @ backwpup
1225
+ #: inc/class-destination-rsc.php:455
1226
+ msgid "A container could not be found!"
1227
+ msgstr "Un container ne peut pas être trouvé!"
1228
+
1229
+ #: inc/class-destination-s3-v1.php:21 inc/class-destination-s3-v1.php:84
1230
+ #: inc/class-destination-s3.php:26 inc/class-destination-s3.php:89
1231
+ msgid "S3 Service"
1232
+ msgstr "S3 Service"
1233
+
1234
+ # @ backwpup
1235
+ #: inc/class-destination-s3-v1.php:22 inc/class-destination-s3.php:27
1236
+ msgid "Backup to an S3 Service"
1237
+ msgstr "Sauvegarder vers le service S3"
1238
+
1239
+ #: inc/class-destination-s3-v1.php:88 inc/class-destination-s3.php:93
1240
+ msgid "Select an S3 service"
1241
+ msgstr "Sélectionner un service S3"
1242
+
1243
+ #: inc/class-destination-s3-v1.php:90 inc/class-destination-s3.php:95
1244
+ msgid "Amazon S3 Region"
1245
+ msgstr "Amazon S3 Région"
1246
+
1247
+ #: inc/class-destination-s3-v1.php:91 inc/class-destination-s3.php:96
1248
+ msgid "Amazon S3: US Standard"
1249
+ msgstr "Amazon S3: US Standard"
1250
+
1251
+ # @ backwpup
1252
+ #: inc/class-destination-s3-v1.php:92 inc/class-destination-s3.php:97
1253
+ msgid "Amazon S3: US West (Northern California)"
1254
+ msgstr "Amazon S3 : Ouest des Etats Unis (Nord de la Californie)"
1255
+
1256
+ # @ backwpup
1257
+ #: inc/class-destination-s3-v1.php:93 inc/class-destination-s3.php:98
1258
+ msgid "Amazon S3: US West (Oregon)"
1259
+ msgstr "Amazon S3: Ouest des Etats Unis (Oregon)"
1260
+
1261
+ # @ backwpup
1262
+ #: inc/class-destination-s3-v1.php:94 inc/class-destination-s3.php:99
1263
+ msgid "Amazon S3: EU (Ireland)"
1264
+ msgstr "Amazon S3: Europe (Irelande)"
1265
+
1266
+ #: inc/class-destination-s3-v1.php:95 inc/class-destination-s3.php:100
1267
+ msgid "Amazon S3: Asia Pacific (Tokyo)"
1268
+ msgstr "Amazon S3: Asia Pacific (Tokyo)"
1269
+
1270
+ # @ backwpup
1271
+ #: inc/class-destination-s3-v1.php:96 inc/class-destination-s3.php:101
1272
+ msgid "Amazon S3: Asia Pacific (Singapore)"
1273
+ msgstr "Amazon S3: Asie et pacifique (Singapore)"
1274
+
1275
+ # @ backwpup
1276
+ #: inc/class-destination-s3-v1.php:97 inc/class-destination-s3.php:102
1277
+ msgid "Amazon S3: Asia Pacific (Sydney)"
1278
+ msgstr "Amazon S3: Asie et pacifique (Sydney)"
1279
+
1280
+ # @ backwpup
1281
+ #: inc/class-destination-s3-v1.php:98 inc/class-destination-s3.php:103
1282
+ msgid "Amazon S3: South America (Sao Paulo)"
1283
+ msgstr "Amazon S3: Amérique du sud (Sao Paulo)"
1284
+
1285
+ #: inc/class-destination-s3-v1.php:99 inc/class-destination-s3.php:104
1286
+ msgid "Google Storage (Interoperable Access)"
1287
+ msgstr "Google Storage (Interoperable Access)"
1288
+
1289
+ #: inc/class-destination-s3-v1.php:100 inc/class-destination-s3.php:105
1290
+ msgid "Hosteurope Cloud Storage"
1291
+ msgstr "Hosteurope Cloud Storage"
1292
+
1293
+ #: inc/class-destination-s3-v1.php:101 inc/class-destination-s3.php:106
1294
+ msgid "Dream Host Cloud Storage"
1295
+ msgstr "Dream Host Cloud Storage"
1296
+
1297
+ #: inc/class-destination-s3-v1.php:106 inc/class-destination-s3.php:111
1298
+ msgid "Or an S3 Server URL"
1299
+ msgstr "Ou l'url d'un serveur S3"
1300
+
1301
+ # @ backwpup
1302
+ #: inc/class-destination-s3-v1.php:113 inc/class-destination-s3.php:118
1303
+ msgid "S3 Access Keys"
1304
+ msgstr "Clé d'accès S3"
1305
+
1306
+ # @ backwpup
1307
+ #: inc/class-destination-s3-v1.php:117 inc/class-destination-s3.php:122
1308
+ msgid "Access Key"
1309
+ msgstr "Clé d'accès"
1310
+
1311
+ # @ backwpup
1312
+ #: inc/class-destination-s3-v1.php:124 inc/class-destination-s3.php:129
1313
+ msgid "Secret Key"
1314
+ msgstr "Clé secrète"
1315
+
1316
+ # @ backwpup
1317
+ #: inc/class-destination-s3-v1.php:132 inc/class-destination-s3.php:137
1318
+ msgid "S3 Bucket"
1319
+ msgstr "Panier S3"
1320
+
1321
+ # @ backwpup
1322
+ #: inc/class-destination-s3-v1.php:136 inc/class-destination-s3.php:141
1323
+ msgid "Bucket selection"
1324
+ msgstr "Sélction du panier"
1325
+
1326
+ # @ backwpup
1327
+ #: inc/class-destination-s3-v1.php:149 inc/class-destination-s3.php:154
1328
+ msgid "Create a new bucket"
1329
+ msgstr "Créer un panier"
1330
+
1331
+ #: inc/class-destination-s3-v1.php:182 inc/class-destination-s3.php:198
1332
+ msgid "Amazon specific settings"
1333
+ msgstr "Paramètres spécifique pour Amazon"
1334
+
1335
+ #: inc/class-destination-s3-v1.php:186 inc/class-destination-s3-v1.php:188
1336
+ #: inc/class-destination-s3.php:202 inc/class-destination-s3.php:204
1337
+ msgid "Amazon: Storage Class"
1338
+ msgstr "Amazon: Storage Class"
1339
+
1340
+ #: inc/class-destination-s3-v1.php:190 inc/class-destination-s3.php:206
1341
+ msgid "Reduced Redundancy"
1342
+ msgstr "Diminuer la redondance"
1343
+
1344
+ #: inc/class-destination-s3-v1.php:195 inc/class-destination-s3.php:211
1345
+ msgid "Server side encryption"
1346
+ msgstr "Encodage du côté serveur"
1347
+
1348
+ #: inc/class-destination-s3-v1.php:199 inc/class-destination-s3.php:215
1349
+ msgid "Save files encrypted (AES256) on server."
1350
+ msgstr "Enregistrer le fichier encodé (AES256) sur le serveur."
1351
+
1352
+ #: inc/class-destination-s3-v1.php:260 inc/class-destination-s3.php:271
1353
+ #, php-format
1354
+ msgid "Bucket %1$s created in %2$s."
1355
+ msgstr "Le panier %1$s dans %2$s a été créé."
1356
+
1357
+ # @ backwpup
1358
+ #: inc/class-destination-s3-v1.php:262 inc/class-destination-s3.php:273
1359
+ #, php-format
1360
+ msgid "Bucket %s could not be created."
1361
+ msgstr "Le panier %s ne peut pas être créé."
1362
+
1363
+ # @ backwpup
1364
+ #: inc/class-destination-s3-v1.php:309 inc/class-destination-s3-v1.php:434
1365
+ #: inc/class-destination-s3-v1.php:485 inc/class-destination-s3.php:317
1366
+ #: inc/class-destination-s3.php:424 inc/class-destination-s3.php:455
1367
+ #: inc/class-destination-s3.php:476 inc/class-destination-s3.php:535
1368
+ #, php-format
1369
+ msgid "S3 Service API: %s"
1370
+ msgstr "S3 Service API: %s"
1371
+
1372
+ # @ backwpup
1373
+ #: inc/class-destination-s3-v1.php:374 inc/class-destination-s3.php:380
1374
+ #, php-format
1375
+ msgid "%d. Trying to send backup file to S3 Service&#160;&hellip;"
1376
+ msgstr ""
1377
+ "%d. Tentative d'envoi du fichier sauvegarde vers le service S3&#160;&hellip;"
1378
+
1379
+ # @ backwpup
1380
+ #: inc/class-destination-s3-v1.php:395 inc/class-destination-s3.php:392
1381
+ #, php-format
1382
+ msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1383
+ msgstr "Connecté au panier S3 \"%1$s\" dans %2$s"
1384
+
1385
+ # @ backwpup
1386
+ #: inc/class-destination-s3-v1.php:398 inc/class-destination-s3.php:395
1387
+ #, php-format
1388
+ msgid "S3 Bucket \"%s\" does not exist!"
1389
+ msgstr "Panier S3 \"%s\" n'existe pas!"
1390
+
1391
+ # @ backwpup
1392
+ #: inc/class-destination-s3-v1.php:404 inc/class-destination-s3.php:401
1393
+ msgid "Starting upload to S3 Service&#160;&hellip;"
1394
+ msgstr "Envoi vers le service S3 commencé&#160;&hellip;"
1395
+
1396
+ # @ backwpup
1397
+ #: inc/class-destination-s3-v1.php:425 inc/class-destination-s3.php:467
1398
+ #, php-format
1399
+ msgid "Backup transferred to %s."
1400
+ msgstr "Sauvegarde envoyée vers %s."
1401
+
1402
+ # @ backwpup
1403
+ #: inc/class-destination-s3-v1.php:430 inc/class-destination-s3.php:472
1404
+ #, php-format
1405
+ msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1406
+ msgstr "Impossible d'envoyer la sauvegarde vers le service S3! (%1$d) %2$s"
1407
+
1408
+ # @ backwpup
1409
+ #: inc/class-destination-s3-v1.php:475 inc/class-destination-s3.php:525
1410
+ #, php-format
1411
+ msgid "Cannot delete backup from %s."
1412
+ msgstr "Impossible d'effacer la sauvegarde sur %s."
1413
+
1414
+ # @ backwpup
1415
+ #: inc/class-destination-s3-v1.php:479 inc/class-destination-s3.php:529
1416
+ #, php-format
1417
+ msgid "One file deleted on S3 Bucket."
1418
+ msgid_plural "%d files deleted on S3 Bucket"
1419
+ msgstr[0] "Un fichier supprimé sur S3 Bucket"
1420
+ msgstr[1] "%d fichiers supprimés sur S3"
1421
+
1422
+ # @ backwpup
1423
+ #: inc/class-destination-s3-v1.php:592 inc/class-destination-s3.php:634
1424
+ msgid "Missing secret access key!"
1425
+ msgstr "Clé secrète manquante!"
1426
+
1427
+ # @ backwpup
1428
+ #: inc/class-destination-s3-v1.php:596 inc/class-destination-s3.php:638
1429
+ msgid "No bucket found!"
1430
+ msgstr "Aucun panier trouvé!"
1431
+
1432
+ #: inc/class-destination-s3.php:187
1433
+ msgid "Multipart Upload"
1434
+ msgstr "Toutes les parties ont été chargées"
1435
+
1436
+ #: inc/class-destination-s3.php:191
1437
+ msgid "Use multipart upload for uploading a file"
1438
+ msgstr "Utiliser un chargement en plusieurs parties pour le fichier"
1439
+
1440
+ #: inc/class-destination-s3.php:192
1441
+ msgid ""
1442
+ "Multipart splits file into multiple chunks while uploading. This is "
1443
+ "necessary for displaying the upload process and to transfer bigger files. "
1444
+ "Beware: There is a known issue at Google storage with this option!"
1445
+ msgstr ""
1446
+ "Le chargement en parties découpe le fichier en morceaux pendant son "
1447
+ "chargement. C'est nécessaire pour afficher le processus de transfert et "
1448
+ "permet de transférer des fichiers plus gros. En ce moment, il y a des "
1449
+ "problèmes avec le stockage Google si cette option est mise en oeuvre."
1450
+
1451
+ #: inc/class-destination-s3.php:275
1452
+ #, php-format
1453
+ msgid " %s is not a valid bucket name."
1454
+ msgstr "%s n'estpas un nom de panier correct."
1455
+
1456
+ # @ backwpup
1457
+ #: inc/class-destination-sugarsync.php:13
1458
+ msgid "SugarSync"
1459
+ msgstr "SugarSync"
1460
+
1461
+ # @ backwpup
1462
+ #: inc/class-destination-sugarsync.php:14 inc/class-page-about.php:254
1463
+ msgid "Backup to SugarSync"
1464
+ msgstr "Sauvegarder vers SugarSync"
1465
+
1466
+ # @ backwpup
1467
+ #: inc/class-destination-sugarsync.php:36
1468
+ msgid "Sugarsync Login"
1469
+ msgstr "Compte SygarSync"
1470
+
1471
+ # @ backwpup
1472
+ #: inc/class-destination-sugarsync.php:42
1473
+ #: inc/class-destination-sugarsync.php:61 inc/class-page-settings.php:318
1474
+ msgid "Authentication"
1475
+ msgstr "Authentification"
1476
+
1477
+ # @ backwpup
1478
+ #: inc/class-destination-sugarsync.php:44
1479
+ msgid "E-Mail address:"
1480
+ msgstr "Adresse E-mail:"
1481
+
1482
+ # @ backwpup
1483
+ #: inc/class-destination-sugarsync.php:48 inc/class-page-settings.php:330
1484
+ msgid "Password:"
1485
+ msgstr "Mot de passe:"
1486
+
1487
+ # @ backwpup
1488
+ #: inc/class-destination-sugarsync.php:54
1489
+ #: inc/class-destination-sugarsync.php:135
1490
+ msgid "Sugarsync authenticate!"
1491
+ msgstr "Authentification SugarSync !"
1492
+
1493
+ # @ backwpup
1494
+ #: inc/class-destination-sugarsync.php:56
1495
+ #: inc/class-destination-sugarsync.php:151
1496
+ msgid "Create Sugarsync account"
1497
+ msgstr "Créer un compte SugarSync"
1498
+
1499
+ # @ backwpup
1500
+ #: inc/class-destination-sugarsync.php:65
1501
+ #: inc/class-destination-sugarsync.php:147
1502
+ msgid "Delete Sugarsync authentication!"
1503
+ msgstr "Suppression de l'authentification SugarSync!"
1504
+
1505
+ # @ backwpup
1506
+ #: inc/class-destination-sugarsync.php:71
1507
+ msgid "SugarSync Root"
1508
+ msgstr "SugarSync Root"
1509
+
1510
+ # @ backwpup
1511
+ #: inc/class-destination-sugarsync.php:75
1512
+ msgid "Sync folder selection"
1513
+ msgstr "Sélection du répertoire de synchronisation"
1514
+
1515
+ # @ backwpup
1516
+ #: inc/class-destination-sugarsync.php:83
1517
+ msgid "No Syncfolders found!"
1518
+ msgstr "Aucun répertoire de synchronisation trouvé!"
1519
+
1520
+ # @ backwpup
1521
+ #: inc/class-destination-sugarsync.php:104
1522
+ msgid "Folder in root"
1523
+ msgstr "Répertoire dans le répertoire principal"
1524
+
1525
+ # @ backwpup
1526
+ #: inc/class-destination-sugarsync.php:243
1527
+ #, php-format
1528
+ msgid "%d. Try to send backup to SugarSync&#160;&hellip;"
1529
+ msgstr "%d. Tentatives d'envoi de la sauvegarde vers SugarSync&#160;&hellip;"
1530
+
1531
+ # @ backwpup
1532
+ #: inc/class-destination-sugarsync.php:250
1533
+ #, php-format
1534
+ msgid "Authenticated to SugarSync with nickname %s"
1535
+ msgstr "Authentifié chez SugarSync avec le compte %s"
1536
+
1537
+ #: inc/class-destination-sugarsync.php:253
1538
+ #, php-format
1539
+ msgctxt "Available space on SugarSync"
1540
+ msgid "Not enough disk space available on SugarSync. Available: %s."
1541
+ msgstr "Pas assez d'espace disque disponible sur SugarSync. Libre : %s."
1542
+
1543
+ # @ backwpup
1544
+ #: inc/class-destination-sugarsync.php:259
1545
+ #, php-format
1546
+ msgid "%s available at SugarSync"
1547
+ msgstr "%s de libre chez SugarSync"
1548
+
1549
+ # @ backwpup
1550
+ #: inc/class-destination-sugarsync.php:266
1551
+ msgid "Starting upload to SugarSync&#160;&hellip;"
1552
+ msgstr "Début de l'envoi vers SugarSync&#160;&hellip;"
1553
+
1554
+ # @ backwpup
1555
+ #: inc/class-destination-sugarsync.php:275
1556
+ msgid "Cannot transfer backup to SugarSync!"
1557
+ msgstr "Impossible de transférer la sauvegarde vers SugarSync!"
1558
+
1559
+ # @ backwpup
1560
+ #: inc/class-destination-sugarsync.php:314
1561
+ #, php-format
1562
+ msgid "One file deleted on SugarSync folder"
1563
+ msgid_plural "%d files deleted on SugarSync folder"
1564
+ msgstr[0] "Un fichier supprimé sur SugarSync"
1565
+ msgstr[1] "%d fichiers supprimés sur SugarSync"
1566
+
1567
+ # @ backwpup
1568
+ #: inc/class-destination-sugarsync.php:320
1569
+ #, php-format
1570
+ msgid "SugarSync API: %s"
1571
+ msgstr "SugarSync API: %s"
1572
+
1573
+ # @ backwpup
1574
+ #: inc/class-help.php:15
1575
+ msgid "Plugin Info"
1576
+ msgstr "Info extension"
1577
+
1578
+ #: inc/class-help.php:17
1579
+ #, php-format
1580
+ msgctxt "Plugin name and link; Plugin Version"
1581
+ msgid ""
1582
+ "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</"
1583
+ "a>. Developed by <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
1584
+ msgstr ""
1585
+ "%1$s version %2$s. Un projet de <a href=\"http://inpsyde.com\">Inpsyde GmbH</"
1586
+ "a>. Développer par <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
1587
+
1588
+ # @ backwpup
1589
+ #: inc/class-help.php:18
1590
+ msgid ""
1591
+ "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you "
1592
+ "are welcome to redistribute it under certain conditions."
1593
+ msgstr ""
1594
+ "BackWPup est livré sans AUCUNE GARANTIE. C'est un logiciel libre, et vous "
1595
+ "êtes invités à le redistribuer sous certaines conditions."
1596
+
1597
+ # @ backwpup
1598
+ #: inc/class-help.php:21
1599
+ msgid "For more information:"
1600
+ msgstr "Pour plus d'informations:"
1601
+
1602
+ #: inc/class-help.php:23
1603
+ msgid "Plugin on wordpress.org"
1604
+ msgstr "Plugin sur wordpress.org"
1605
+
1606
+ #: inc/class-help.php:24
1607
+ msgid "https://marketpress.com/news/"
1608
+ msgstr "https://marketpress.com/news/"
1609
+
1610
+ #: inc/class-help.php:24
1611
+ msgid "News"
1612
+ msgstr "Nouveautés"
1613
+
1614
+ # @ backwpup
1615
+ #: inc/class-help.php:29
1616
+ msgid "Manual"
1617
+ msgstr "Manuel"
1618
+
1619
+ # @ backwpup
1620
+ #: inc/class-install.php:48
1621
+ msgid "BackWPup Admin"
1622
+ msgstr "Administration BackWPup"
1623
+
1624
+ # @ backwpup
1625
+ #: inc/class-install.php:61
1626
+ msgid "BackWPup jobs checker"
1627
+ msgstr "Vérification des opérations BackWPup"
1628
+
1629
+ # @ backwpup
1630
+ #: inc/class-install.php:74
1631
+ msgid "BackWPup jobs helper"
1632
+ msgstr "Aide sur les opérations BackWPup"
1633
+
1634
+ # @ backwpup
1635
+ #: inc/class-job.php:164
1636
+ msgid "Starting job"
1637
+ msgstr "Lacement de l'opération"
1638
+
1639
+ #: inc/class-job.php:181
1640
+ msgid "Job Start"
1641
+ msgstr "Début de l'opération"
1642
+
1643
+ # @ backwpup
1644
+ #: inc/class-job.php:214
1645
+ msgid "Creates archive"
1646
+ msgstr "Créer une archive"
1647
+
1648
+ #: inc/class-job.php:245
1649
+ msgid "Job End"
1650
+ msgstr "Fin de l'opération"
1651
+
1652
+ # @ backwpup
1653
+ #: inc/class-job.php:253
1654
+ #, php-format
1655
+ msgid "BackWPup log for %1$s from %2$s at %3$s"
1656
+ msgstr "Fichier journal BackWPup pour %1$s de %2$s à %3$s"
1657
+
1658
+ #: inc/class-job.php:271
1659
+ #, php-format
1660
+ msgctxt "Plugin name; Plugin Version; WordPress Version"
1661
+ msgid ""
1662
+ "[INFO] %1$s version %2$s; WordPress version %3$s; A project of Inpsyde GmbH "
1663
+ "developed by Daniel Hüsken"
1664
+ msgstr ""
1665
+ "[INFO] %1$s version %2$s; WordPress version %3$s; Un projet de Inpsyde GmbH "
1666
+ "developé par Daniel Hüsken"
1667
+
1668
+ # @ backwpup
1669
+ #: inc/class-job.php:272
1670
+ msgid ""
1671
+ "[INFO] This program comes with ABSOLUTELY NO WARRANTY. This is free "
1672
+ "software, and you are welcome to redistribute it under certain conditions."
1673
+ msgstr ""
1674
+ "[INFO]: BackWPup n'est accompagné d'AUCUNE GARANTIE. C'est un logiciel "
1675
+ "libre, et vous êtes libre de le redistribuer sous certaines conditions."
1676
+
1677
+ # @ backwpup
1678
+ #: inc/class-job.php:273
1679
+ #, php-format
1680
+ msgid "[INFO] BackWPup job: %1$s; %2$s"
1681
+ msgstr "[INFO]: BackWPup opération: %1$s; %2$s"
1682
+
1683
+ # @ backwpup
1684
+ #: inc/class-job.php:275
1685
+ msgid "[INFO] BackWPup cron:"
1686
+ msgstr "[INFO] BackWPup cron:"
1687
+
1688
+ # @ backwpup
1689
+ #: inc/class-job.php:277
1690
+ msgid "[INFO] BackWPup job started from wp-cron"
1691
+ msgstr "[INFO] Opération BackWPup démarrée par wp-cron"
1692
+
1693
+ # @ backwpup
1694
+ #: inc/class-job.php:279
1695
+ msgid "[INFO] BackWPup job started manually"
1696
+ msgstr "[INFO] Opération BackWPup démarrée manuellement"
1697
+
1698
+ # @ backwpup
1699
+ #: inc/class-job.php:281
1700
+ msgid "[INFO] BackWPup job started from external url"
1701
+ msgstr "[INFO] Opération BackWPup démarrée par une URL externe"
1702
+
1703
+ # @ backwpup
1704
+ #: inc/class-job.php:283
1705
+ msgid "[INFO] BackWPup job started form commandline interface"
1706
+ msgstr ""
1707
+ "[INFO] Opération BackWPup démarrée par l'interface en ligne de commande"
1708
+
1709
+ # @ backwpup
1710
+ #: inc/class-job.php:284
1711
+ msgid "[INFO] PHP ver.:"
1712
+ msgstr "[INFO] version PHP:"
1713
+
1714
+ # @ backwpup
1715
+ #: inc/class-job.php:285
1716
+ #, php-format
1717
+ msgid "[INFO] Maximum script execution time is %1$d seconds"
1718
+ msgstr "[INFO] Le temps d’exécution maximum d'un script est %1$d secondes. "
1719
+
1720
+ # @ backwpup
1721
+ #: inc/class-job.php:286
1722
+ #, php-format
1723
+ msgid "[INFO] MySQL ver.: %s"
1724
+ msgstr "[INFO] Version MySQL: %s"
1725
+
1726
+ # @ backwpup
1727
+ #: inc/class-job.php:289
1728
+ #, php-format
1729
+ msgid "[INFO] curl ver.: %1$s; %2$s"
1730
+ msgstr "[INFO] Version curl : %1$s; %2$s"
1731
+
1732
+ # @ backwpup
1733
+ #: inc/class-job.php:291
1734
+ #, php-format
1735
+ msgid "[INFO] Temp folder is: %s"
1736
+ msgstr "[INFO] Répertoire temporaire : %s"
1737
+
1738
+ # @ backwpup
1739
+ #: inc/class-job.php:292
1740
+ #, php-format
1741
+ msgid "[INFO] Logfile folder is: %s"
1742
+ msgstr "[INFO] Répertoire des fichiers journaux : %s"
1743
+
1744
+ # @ backwpup
1745
+ #: inc/class-job.php:293
1746
+ #, php-format
1747
+ msgid "[INFO] Backup type is: %s"
1748
+ msgstr "[INFO] Type de sauvegarde : %s"
1749
+
1750
+ # @ backwpup
1751
+ #: inc/class-job.php:295
1752
+ #, php-format
1753
+ msgid "[INFO] Backup file is: %s"
1754
+ msgstr "[INFO] Fichier sauvegarde : %s"
1755
+
1756
+ # @ backwpup
1757
+ #: inc/class-job.php:312
1758
+ msgid ""
1759
+ "No destination correctly defined for backup! Please correct job settings."
1760
+ msgstr ""
1761
+ "Pas de cible définie pour la sauvegarde! Veuillez corriger les paramètres de "
1762
+ "l'opération."
1763
+
1764
+ # @ backwpup
1765
+ #: inc/class-job.php:442 inc/class-job.php:443 inc/class-job.php:517
1766
+ #: inc/class-job.php:518 inc/class-job.php:566
1767
+ msgid "Wrong BackWPup JobID"
1768
+ msgstr "Erreur d'identification d'opération BackWPup"
1769
+
1770
+ # @ backwpup
1771
+ #: inc/class-job.php:447 inc/class-job.php:448 inc/class-job.php:523
1772
+ #: inc/class-job.php:572
1773
+ msgid "Log folder does not exist or is not writable for BackWPup"
1774
+ msgstr ""
1775
+ "Le répertoire des fichiers journaux n'existe pas ou bien n'est pas "
1776
+ "accessible en écriture pour BackWPup"
1777
+
1778
+ # @ backwpup
1779
+ #: inc/class-job.php:451 inc/class-job.php:452 inc/class-job.php:527
1780
+ #: inc/class-job.php:577
1781
+ msgid "Temp folder does not exist or is not writable for BackWPup"
1782
+ msgstr ""
1783
+ "Le répertoire temporaire n'existe pas ou bien n'est pas accessible en "
1784
+ "écriture pour BackWPup"
1785
+
1786
+ #: inc/class-job.php:456 inc/class-job.php:457
1787
+ msgid "Backups folder does not exist or is not writable for BackWPup"
1788
+ msgstr ""
1789
+ "Le répertoire de sauvegarde n'existe pas ou bien il n'est pas accessible en "
1790
+ "écriture par BackWPup"
1791
+
1792
+ # @ backwpup
1793
+ #: inc/class-job.php:462 inc/class-job.php:463
1794
+ msgid "No BackWPup job running"
1795
+ msgstr "Pas d'opération BackWPup en cours"
1796
+
1797
+ # @ backwpup
1798
+ #: inc/class-job.php:466 inc/class-job.php:467 inc/class-job.php:531
1799
+ #: inc/class-job.php:532 inc/class-job.php:584
1800
+ msgid "A BackWPup job is already running"
1801
+ msgstr "Une opération BackWPup est déjà en cours"
1802
+
1803
+ # @ backwpup
1804
+ #: inc/class-job.php:522
1805
+ msgid "Log folder does not exist or is not writable"
1806
+ msgstr ""
1807
+ "Le répertoire des fichiers journaux n'existe pas ou n'est pas accessible en "
1808
+ "écriture"
1809
+
1810
+ # @ backwpup
1811
+ #: inc/class-job.php:526
1812
+ msgid "Temp folder does not exist or is not writable"
1813
+ msgstr ""
1814
+ "Le répertoire temporaire n'existe pas ou n'est pas accessible en écriture"
1815
+
1816
+ # @ backwpup
1817
+ #: inc/class-job.php:535
1818
+ msgid "Job Started"
1819
+ msgstr "Opération démarrée"
1820
+
1821
+ #: inc/class-job.php:612
1822
+ msgid "Job restart due to inactivity for more than 5 minutes."
1823
+ msgstr ""
1824
+ "L'opération a été relancée pour cause d'inactivitée depuis plus de 5 minutes."
1825
+
1826
+ # @ backwpup
1827
+ #: inc/class-job.php:615
1828
+ msgid ""
1829
+ "Second process start terminated, because a other job is already running!"
1830
+ msgstr ""
1831
+ "Redémarrage de l'opération interrompu, car d'autres opérations sont en cours!"
1832
+
1833
+ # @ backwpup
1834
+ #: inc/class-job.php:724
1835
+ msgid "Step aborted: too many attempts!"
1836
+ msgstr "Étape abandonnée : trop de tentatives !"
1837
+
1838
+ # @ backwpup
1839
+ #: inc/class-job.php:868
1840
+ #, php-format
1841
+ msgid "Signal %d is sent to script!"
1842
+ msgstr "Signal %d envoyé au script!"
1843
+
1844
+ # @ backwpup
1845
+ #: inc/class-job.php:872
1846
+ msgid "Script stopped! Will start again."
1847
+ msgstr "Arrêt du script! Il sera relancé."
1848
+
1849
+ #: inc/class-job.php:897
1850
+ #, php-format
1851
+ msgid "Please use another folder: %1$s"
1852
+ msgstr "Merci d'utiliser un autre répertoire : %1$s"
1853
+
1854
+ # @ backwpup
1855
+ #: inc/class-job.php:904
1856
+ #, php-format
1857
+ msgid "Cannot create folder: %1$s"
1858
+ msgstr "Impossible de créer le répertoire : %1$s"
1859
+
1860
+ # @ backwpup
1861
+ #: inc/class-job.php:912
1862
+ #, php-format
1863
+ msgid "Folder \"%1$s\" is not writable"
1864
+ msgstr "Le répertoire \"%1$s\" n'est pas accessible en écriture"
1865
+
1866
+ #: inc/class-job.php:937
1867
+ #, php-format
1868
+ msgid "Exception caught in %1$s: %2$s"
1869
+ msgstr "Exception trouvée dans %1$s: %2$s"
1870
+
1871
+ # @ backwpup
1872
+ #: inc/class-job.php:995
1873
+ msgid "WARNING:"
1874
+ msgstr "AVERTISSEMENT :"
1875
+
1876
+ # @ backwpup
1877
+ #: inc/class-job.php:1008
1878
+ msgid "DEPRECATED:"
1879
+ msgstr "DÉPRÉCIÉE :"
1880
+
1881
+ # @ backwpup
1882
+ #: inc/class-job.php:1011
1883
+ msgid "STRICT NOTICE:"
1884
+ msgstr "SIMPLE NOTE :"
1885
+
1886
+ # @ backwpup
1887
+ #: inc/class-job.php:1014
1888
+ msgid "RECOVERABLE ERROR:"
1889
+ msgstr "ERREUR RÉCUPÉRABLE :"
1890
+
1891
+ # @ backwpup
1892
+ #: inc/class-job.php:1154
1893
+ #, php-format
1894
+ msgid "One old log deleted"
1895
+ msgid_plural "%d old logs deleted"
1896
+ msgstr[0] "Un ancien fichier de trace supprimé"
1897
+ msgstr[1] "%d anciens fichiers de traces supprimés"
1898
+
1899
+ # @ backwpup
1900
+ #: inc/class-job.php:1159
1901
+ #, php-format
1902
+ msgid "Job done in %s seconds."
1903
+ msgstr "Opération effectuée en %s secondes."
1904
+
1905
+ #: inc/class-job.php:1224
1906
+ msgid "SUCCESSFUL"
1907
+ msgstr "SUCCES"
1908
+
1909
+ # @ backwpup
1910
+ #: inc/class-job.php:1227
1911
+ msgid "WARNING"
1912
+ msgstr "AVERTISSEMENT"
1913
+
1914
+ # @ backwpup
1915
+ #: inc/class-job.php:1293
1916
+ msgid "Set blog into maintenance mode"
1917
+ msgstr "Mettre le blog en mode maintenance"
1918
+
1919
+ # @ backwpup
1920
+ #: inc/class-job.php:1301
1921
+ msgid "Cannot set blog into maintenance mode! .maintenance is not writable!"
1922
+ msgstr ""
1923
+ "Impossible de mettre le blog en mode maintenance! le fichier .maintenance ne "
1924
+ "peut pas être écrit!"
1925
+
1926
+ # @ backwpup
1927
+ #: inc/class-job.php:1309
1928
+ msgid "Set blog to normal mode"
1929
+ msgstr "Mettre le blog en mode normal"
1930
+
1931
+ # @ backwpup
1932
+ #: inc/class-job.php:1337
1933
+ #, php-format
1934
+ msgid "Memory increased from %1$s to %2$s"
1935
+ msgstr "Mémoire augmentée de %1$s à %2$s"
1936
+
1937
+ # @ backwpup
1938
+ #: inc/class-job.php:1613
1939
+ #, php-format
1940
+ msgctxt "Folder name"
1941
+ msgid "Folder %s not exists"
1942
+ msgstr "Le répertoire %s n'existe pas"
1943
+
1944
+ # @ backwpup
1945
+ #: inc/class-job.php:1617
1946
+ #, php-format
1947
+ msgctxt "Folder name"
1948
+ msgid "Folder %s not readable"
1949
+ msgstr "Le répertoire %s ne peut être lu"
1950
+
1951
+ # @ backwpup
1952
+ #: inc/class-job.php:1633
1953
+ #, php-format
1954
+ msgid "File \"%s\" is not readable!"
1955
+ msgstr "Le fichier \"%s\" ne peut être lu!"
1956
+
1957
+ # @ backwpup
1958
+ #: inc/class-job.php:1635
1959
+ #, php-format
1960
+ msgid "Link \"%s\" not followed."
1961
+ msgstr "Le lien \"%s\" n'a pas été suivi"
1962
+
1963
+ # @ backwpup
1964
+ #: inc/class-job.php:1667
1965
+ #, php-format
1966
+ msgid "%d. Trying to create backup archive &hellip;"
1967
+ msgstr "%d. Tentative de création de l'archive..."
1968
+
1969
+ # @ backwpup
1970
+ #: inc/class-job.php:1674
1971
+ #, php-format
1972
+ msgctxt "Archive compression method"
1973
+ msgid "Compression method is %s"
1974
+ msgstr "La méthode de compression est %s"
1975
+
1976
+ # @ backwpup
1977
+ #: inc/class-job.php:1723
1978
+ msgid "Backup archive created."
1979
+ msgstr "Archive de sauvegarde créée."
1980
+
1981
+ # @ backwpup
1982
+ #: inc/class-job.php:1732
1983
+ #, php-format
1984
+ msgid "Archive size is %s."
1985
+ msgstr "La taille de l'archive est de %s."
1986
+
1987
+ # @ backwpup
1988
+ #: inc/class-job.php:1733
1989
+ #, php-format
1990
+ msgid "%1$d Files with %2$s in Archive."
1991
+ msgstr "%1$d fichiers avec %2$s à sauvegarder"
1992
+
1993
+ #: inc/class-jobtype-dbcheck.php:13
1994
+ msgid "DB Check"
1995
+ msgstr "Vérification de la base (DB)"
1996
+
1997
+ # @ backwpup
1998
+ #: inc/class-jobtype-dbcheck.php:14
1999
+ msgid "Check database tables"
2000
+ msgstr "Vérification des tables"
2001
+
2002
+ # @ backwpup
2003
+ #: inc/class-jobtype-dbcheck.php:35
2004
+ msgid "Settings for database check"
2005
+ msgstr "Paramètre de la vérification de la base de données"
2006
+
2007
+ #: inc/class-jobtype-dbcheck.php:39 inc/class-jobtype-dboptimize.php:40
2008
+ msgid "WordPress tables only"
2009
+ msgstr "Table Wordpress seulement"
2010
+
2011
+ # @ backwpup
2012
+ #: inc/class-jobtype-dbcheck.php:44
2013
+ msgid "Check WordPress database tables only"
2014
+ msgstr "Vérification des tables WordPress uniquement"
2015
+
2016
+ # @ backwpup
2017
+ #: inc/class-jobtype-dbcheck.php:49 inc/class-jobtype-dbdump.php:91
2018
+ #: inc/class-jobtype-dboptimize.php:50
2019
+ msgid "Maintenance mode"
2020
+ msgstr "Mettre le blog en mode maintenance"
2021
+
2022
+ #: inc/class-jobtype-dbcheck.php:54
2023
+ msgid "Activate maintenance mode during table check"
2024
+ msgstr ""
2025
+ "Activer le mode maintenance pendant la vérification des tables de la base de "
2026
+ "données"
2027
+
2028
+ #: inc/class-jobtype-dbcheck.php:59
2029
+ msgid "Repair"
2030
+ msgstr "Réparation"
2031
+
2032
+ #: inc/class-jobtype-dbcheck.php:64
2033
+ msgid "Try to repair defect table"
2034
+ msgstr "Essai de réparation de la table"
2035
+
2036
+ # @ backwpup
2037
+ #: inc/class-jobtype-dbcheck.php:89
2038
+ #, php-format
2039
+ msgid "%d. Trying to check database&#160;&hellip;"
2040
+ msgstr "%d. Tentative de vérification de la base de données&#160;&hellip;"
2041
+
2042
+ #: inc/class-jobtype-dbcheck.php:121
2043
+ #, php-format
2044
+ msgid "Table %1$s is a view. Not checked."
2045
+ msgstr "La table %1$s est une vue. Pas de vérification."
2046
+
2047
+ #: inc/class-jobtype-dbcheck.php:126
2048
+ #, php-format
2049
+ msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked."
2050
+ msgstr "La table %1$s n'est pas une table MyISAM/InnoDB. Pas de vérification."
2051
+
2052
+ # @ backwpup
2053
+ #: inc/class-jobtype-dbcheck.php:133 inc/class-jobtype-dbcheck.php:135
2054
+ #: inc/class-jobtype-dbcheck.php:137
2055
+ #, php-format
2056
+ msgid "Result of table check for %1$s is: %2$s"
2057
+ msgstr "Le résultat de la vérification de la table %1$s est: %2$s"
2058
+
2059
+ # @ backwpup
2060
+ #: inc/class-jobtype-dbcheck.php:143 inc/class-jobtype-dbcheck.php:145
2061
+ #: inc/class-jobtype-dbcheck.php:147
2062
+ #, php-format
2063
+ msgid "Result of table repair for %1$s is: %2$s"
2064
+ msgstr "Le résultat de la réparation de la table %1$s est: %2$s"
2065
+
2066
+ # @ backwpup
2067
+ #: inc/class-jobtype-dbcheck.php:153
2068
+ msgid "Database check done!"
2069
+ msgstr "Vérification de la base de donnée réussie!"
2070
+
2071
+ # @ backwpup
2072
+ #: inc/class-jobtype-dbcheck.php:156
2073
+ msgid "No tables to check."
2074
+ msgstr "Aucune table à vérifier."
2075
+
2076
+ # @ backwpup
2077
+ #: inc/class-jobtype-dbdump.php:13
2078
+ msgid "DB Backup"
2079
+ msgstr "Sauvegardes de base de données"
2080
+
2081
+ # @ backwpup
2082
+ #: inc/class-jobtype-dbdump.php:14
2083
+ msgid "Database backup"
2084
+ msgstr "Sauvegarde de la base de données"
2085
+
2086
+ # @ backwpup
2087
+ #: inc/class-jobtype-dbdump.php:15
2088
+ msgid "Creates an .sql database dump file"
2089
+ msgstr "Créer une sauvegarde de la base de données au formart dump .sql"
2090
+
2091
+ # @ backwpup
2092
+ #: inc/class-jobtype-dbdump.php:60
2093
+ msgid "Settings for database dump"
2094
+ msgstr "Paramètre pour les dump de la base de données"
2095
+
2096
+ # @ backwpup
2097
+ #: inc/class-jobtype-dbdump.php:64
2098
+ msgid "Tables to dump"
2099
+ msgstr "Tables pour le dump"
2100
+
2101
+ #: inc/class-jobtype-dbdump.php:66
2102
+ msgid "all"
2103
+ msgstr "tous"
2104
+
2105
+ # @ backwpup
2106
+ #: inc/class-jobtype-dbdump.php:95
2107
+ msgid "Activate maintenance mode on database dump"
2108
+ msgstr ""
2109
+ "Mettre le site en mode maintenance pendant les opérations sur la base données"
2110
+
2111
+ #: inc/class-jobtype-dbdump.php:99
2112
+ msgid "Dumpfile name"
2113
+ msgstr "Nom du fichier de sauvegarde (dump)"
2114
+
2115
+ # @ backwpup
2116
+ #: inc/class-jobtype-dbdump.php:107
2117
+ msgid "Dumpfile compression"
2118
+ msgstr "Compression du fichier de dump"
2119
+
2120
+ # @ backwpup
2121
+ #: inc/class-jobtype-dbdump.php:112 inc/class-jobtype-dbdump.php:114
2122
+ #: inc/class-jobtype-wpexp.php:71 inc/class-jobtype-wpexp.php:73
2123
+ #: inc/class-jobtype-wpplugin.php:58 inc/class-jobtype-wpplugin.php:60
2124
+ msgid "GZip"
2125
+ msgstr "GZip"
2126
+
2127
+ # @ backwpup
2128
+ #: inc/class-jobtype-dbdump.php:116 inc/class-jobtype-dbdump.php:118
2129
+ #: inc/class-jobtype-wpexp.php:75 inc/class-jobtype-wpexp.php:77
2130
+ #: inc/class-jobtype-wpplugin.php:62 inc/class-jobtype-wpplugin.php:64
2131
+ msgid "BZip2"
2132
+ msgstr "BZip2"
2133
+
2134
+ # @ backwpup
2135
+ #: inc/class-jobtype-dbdump.php:163
2136
+ #, php-format
2137
+ msgid "%d. Try to dump database&#160;&hellip;"
2138
+ msgstr "%d. Tentative de dump de la base de données&#160;&hellip;"
2139
+
2140
+ # @ backwpup
2141
+ #: inc/class-jobtype-dbdump.php:179
2142
+ #, php-format
2143
+ msgid "Connected to database %1$s on %2$s"
2144
+ msgstr "Connexion à la base de données %1$s sur %2$s"
2145
+
2146
+ # @ backwpup
2147
+ #: inc/class-jobtype-dbdump.php:191
2148
+ msgid "No tables to dump."
2149
+ msgstr "Aucune table pour le dump."
2150
+
2151
+ # @ backwpup
2152
+ #: inc/class-jobtype-dbdump.php:202
2153
+ #, php-format
2154
+ msgid "Dump database table \"%s\""
2155
+ msgstr "Dump de la table \"%s\""
2156
+
2157
+ # @ backwpup
2158
+ #: inc/class-jobtype-dbdump.php:224
2159
+ #, php-format
2160
+ msgid "Added database dump \"%1$s\" with %2$s to backup file list"
2161
+ msgstr "Ajout du dump \"%1$s\" avec %2$s a la liste des fichiers à sauvegarder"
2162
+
2163
+ # @ backwpup
2164
+ #: inc/class-jobtype-dbdump.php:227
2165
+ msgid "Database dump done!"
2166
+ msgstr "Dump de la base de donnée réussie!"
2167
+
2168
+ #: inc/class-jobtype-dboptimize.php:13
2169
+ msgid "DB Optimize"
2170
+ msgstr "Optimisation de la base"
2171
+
2172
+ # @ backwpup
2173
+ #: inc/class-jobtype-dboptimize.php:14
2174
+ msgid "Optimize database tables"
2175
+ msgstr "Optimisation des tables"
2176
+
2177
+ # @ backwpup
2178
+ #: inc/class-jobtype-dboptimize.php:36
2179
+ msgid "Settings for database optimization"
2180
+ msgstr "Paramètres pour l'optimisation des tables"
2181
+
2182
+ # @ backwpup
2183
+ #: inc/class-jobtype-dboptimize.php:45
2184
+ msgid "Optimize WordPress Database tables only"
2185
+ msgstr "Optimisation des tables WordPress uniquement"
2186
+
2187
+ #: inc/class-jobtype-dboptimize.php:55
2188
+ msgid "Activate maintenance mode during table optimize"
2189
+ msgstr "Activer le mode maintenance durant l'optimisation des tables"
2190
+
2191
+ # @ backwpup
2192
+ #: inc/class-jobtype-dboptimize.php:61 inc/class-jobtype-dboptimize.php:64
2193
+ msgid "Table types to optimize"
2194
+ msgstr "Type de table à optimiser"
2195
+
2196
+ # @ backwpup
2197
+ #: inc/class-jobtype-dboptimize.php:68
2198
+ msgid "Optimize MyISAM Tables"
2199
+ msgstr "Optimisation des tables MyISAM"
2200
+
2201
+ #: inc/class-jobtype-dboptimize.php:69
2202
+ msgid "Optimize will be done with OPTIMIZE TABLE `table`."
2203
+ msgstr "L'optimisation sera faites avec OPTIMIZE TABLE `table`."
2204
+
2205
+ # @ backwpup
2206
+ #: inc/class-jobtype-dboptimize.php:73
2207
+ msgid "Optimize InnoDB tables"
2208
+ msgstr "Optimisation des tables InnoDB"
2209
+
2210
+ #: inc/class-jobtype-dboptimize.php:74
2211
+ msgid "Optimize will done with ALTER TABLE `table` ENGINE=InnoDB"
2212
+ msgstr "L'optimisation sera faites avec ALTER TABLE `table` ENGINE=InnoDB"
2213
+
2214
+ #: inc/class-jobtype-dboptimize.php:101
2215
+ #, php-format
2216
+ msgid "%d. Trying to optimize database&#160;&hellip;"
2217
+ msgstr "%d. Tentative d'optimisation de la base de données&#160;&hellip;"
2218
+
2219
+ #: inc/class-jobtype-dboptimize.php:130
2220
+ #, php-format
2221
+ msgid "Views cannot optimize! View %1$s"
2222
+ msgstr "Les vues ne peuvent pas être optimisées! Vue %1$s"
2223
+
2224
+ # @ backwpup
2225
+ #: inc/class-jobtype-dboptimize.php:137 inc/class-jobtype-dboptimize.php:139
2226
+ #: inc/class-jobtype-dboptimize.php:141
2227
+ #, php-format
2228
+ msgid "Result of MyISAM table optimize for %1$s is: %2$s"
2229
+ msgstr "Le résultat de l'optimisation de la table MyISAM %1$s est: %2$s"
2230
+
2231
+ #: inc/class-jobtype-dboptimize.php:146
2232
+ #, php-format
2233
+ msgid "InnoDB Table %1$s optimizing done."
2234
+ msgstr "La table InnoDB %1$s a été optimisée."
2235
+
2236
+ # @ backwpup
2237
+ #: inc/class-jobtype-dboptimize.php:149
2238
+ #, php-format
2239
+ msgid "%2$s table %1$s not optimized."
2240
+ msgstr "%2$s table %1$s non optimisée."
2241
+
2242
+ # @ backwpup
2243
+ #: inc/class-jobtype-dboptimize.php:154
2244
+ msgid "Database optimization done!"
2245
+ msgstr "Optimisation de la base de données réussie!"
2246
+
2247
+ # @ backwpup
2248
+ #: inc/class-jobtype-dboptimize.php:158
2249
+ msgid "No tables to optimize."
2250
+ msgstr "Aucune table à optimiser."
2251
+
2252
+ # @ backwpup
2253
+ #: inc/class-jobtype-file.php:13
2254
+ msgid "Files"
2255
+ msgstr "Fichiers"
2256
+
2257
+ # @ backwpup
2258
+ #: inc/class-jobtype-file.php:14
2259
+ msgid "File backup"
2260
+ msgstr "Sauvegarde des fichiers"
2261
+
2262
+ # @ backwpup
2263
+ #: inc/class-jobtype-file.php:60
2264
+ msgid "Folders to backup"
2265
+ msgstr "Répertoires du site à sauvegarder"
2266
+
2267
+ # @ backwpup
2268
+ #: inc/class-jobtype-file.php:64
2269
+ msgid "Backup root folder"
2270
+ msgstr "Sauvegarde du répertoire principal (root)"
2271
+
2272
+ # @ backwpup
2273
+ #: inc/class-jobtype-file.php:75 inc/class-jobtype-file.php:102
2274
+ #: inc/class-jobtype-file.php:129 inc/class-jobtype-file.php:156
2275
+ #: inc/class-jobtype-file.php:183
2276
+ msgid "Exclude:"
2277
+ msgstr "Exclure:"
2278
+
2279
+ # @ backwpup
2280
+ #: inc/class-jobtype-file.php:91
2281
+ msgid "Backup content folder"
2282
+ msgstr "Sauvegarde du répertoire contenu (content)"
2283
+
2284
+ # @ backwpup
2285
+ #: inc/class-jobtype-file.php:118
2286
+ msgid "Backup plugins"
2287
+ msgstr "Sauvegarde des plugins"
2288
+
2289
+ # @ backwpup
2290
+ #: inc/class-jobtype-file.php:145
2291
+ msgid "Backup themes"
2292
+ msgstr "Sauvegarde des thèmes"
2293
+
2294
+ # @ backwpup
2295
+ #: inc/class-jobtype-file.php:172
2296
+ msgid "Backup uploads folder"
2297
+ msgstr "Sauvegarde du répertoire des fichiers ajoutés (uploads) "
2298
+
2299
+ # @ backwpup
2300
+ #: inc/class-jobtype-file.php:199
2301
+ msgid "Extra folders to backup"
2302
+ msgstr "Autres répertoires à sauvegarder"
2303
+
2304
+ #: inc/class-jobtype-file.php:199
2305
+ msgid ""
2306
+ "Separate folder names with a line-break or a comma. Folders must be set with "
2307
+ "their absolute path!"
2308
+ msgstr ""
2309
+ "Séparer les noms de répertoire par un retour à la ligne ou une virgule. Les "
2310
+ "répertoires doivent être défini avec leur chemin complet!"
2311
+
2312
+ # @ backwpup
2313
+ #: inc/class-jobtype-file.php:206
2314
+ msgid "Exclude from backup"
2315
+ msgstr "Exclure des fichiers/répertoires de la sauvegarde"
2316
+
2317
+ #: inc/class-jobtype-file.php:210
2318
+ msgid "Thumbnails in uploads"
2319
+ msgstr "Vignettes dans le répertoire de chargement"
2320
+
2321
+ # @ backwpup
2322
+ #: inc/class-jobtype-file.php:214
2323
+ msgid "Don't backup thumbnails from the site's uploads folder."
2324
+ msgstr ""
2325
+ "Ne pas sauvegarder les fichiers vignettes (thumbnails) du répertoire des "
2326
+ "fichiers ajoutés."
2327
+
2328
+ #: inc/class-jobtype-file.php:214
2329
+ msgid ""
2330
+ "All images with -???x???. will be excluded. Use a plugin like Regenerate "
2331
+ "Thumbnails to rebuild them after a restore."
2332
+ msgstr ""
2333
+ "Toutes les images avec -???x???. seront exclues. Utiliser un plugin comme "
2334
+ "Regenerate Thumbnails pour les refaire après la restauration."
2335
+
2336
+ # @ backwpup
2337
+ #: inc/class-jobtype-file.php:218
2338
+ msgid "Exclude files/folders from backup"
2339
+ msgstr "Exclure des fichiers/répertoires de la sauvegarde"
2340
+
2341
+ #: inc/class-jobtype-file.php:218
2342
+ msgid ""
2343
+ "Separate file / folder name parts with a line-break or a comma. For example /"
2344
+ "logs/,.log,.tmp"
2345
+ msgstr ""
2346
+ "Séparer les fichiers / répertoires avec un retour à la ligne ou une virgule. "
2347
+ "Par exemple /logs/,.log,.tmp"
2348
+
2349
+ #: inc/class-jobtype-file.php:225
2350
+ msgid "Special option"
2351
+ msgstr "Option spéciale"
2352
+
2353
+ #: inc/class-jobtype-file.php:229
2354
+ msgid "Include special files"
2355
+ msgstr "Inclure les fichiers spéciaux"
2356
+
2357
+ #: inc/class-jobtype-file.php:233
2358
+ msgid ""
2359
+ "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico from "
2360
+ "root."
2361
+ msgstr ""
2362
+ "Sauvegarder wp-config.php, robots.txt, .htaccess, .htpasswd et favicon.ico "
2363
+ "depuis la racine."
2364
+
2365
+ #: inc/class-jobtype-file.php:233
2366
+ msgid ""
2367
+ "If the WordPress root folder is not included in this backup job, check this "
2368
+ "option to additionally include wp-config.php, robots.txt, .htaccess, ."
2369
+ "htpasswd and favicon.ico into the backup. Your wp-config.php will be "
2370
+ "included even if you placed it in the parent directory of your root folder."
2371
+ msgstr ""
2372
+ "Si le dossier racine de votre installation WordPress n'est pas inclu dans "
2373
+ "l'opération de sauvegarde, valider cette option pour ajouter les fichiers wp-"
2374
+ "config.php, robots.txt, .htaccess, .htpasswd et favicon.ico dans la "
2375
+ "sauvegarde. Votre fichier wp-config.php sera inclu même si vous l'avez mis "
2376
+ "dans le répertoire racine de votre installation."
2377
+
2378
+ # @ backwpup
2379
+ #: inc/class-jobtype-file.php:310
2380
+ #, php-format
2381
+ msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
2382
+ msgstr ""
2383
+ "%d. Tentative de création de liste des répertoires à sauvegarder&#160;"
2384
+ "&hellip;"
2385
+
2386
+ # @ backwpup
2387
+ #: inc/class-jobtype-file.php:395 inc/class-jobtype-file.php:402
2388
+ #: inc/class-jobtype-file.php:409 inc/class-jobtype-file.php:415
2389
+ #: inc/class-jobtype-file.php:421 inc/class-jobtype-file.php:427
2390
+ #, php-format
2391
+ msgid "Added \"%s\" to backup file list"
2392
+ msgstr "Ajout \"%s\" à la liste des fichiers à sauvegarder"
2393
+
2394
+ # @ backwpup
2395
+ #: inc/class-jobtype-file.php:432
2396
+ msgid "No folder to back up."
2397
+ msgstr "Aucun répertoire à sauvegarder."
2398
+
2399
+ # @ backwpup
2400
+ #: inc/class-jobtype-file.php:434
2401
+ #, php-format
2402
+ msgid "%1$d folders to back up."
2403
+ msgstr "%1$d répertoires à sauvegarder."
2404
+
2405
+ # @ backwpup
2406
+ #: inc/class-jobtype-file.php:471
2407
+ #, php-format
2408
+ msgid "Folder \"%s\" is not readable!"
2409
+ msgstr "Le répertoire \"%s\" n'est pas accessible! "
2410
+
2411
+ # @ backwpup
2412
+ #: inc/class-jobtype-wpexp.php:13
2413
+ msgid "XML export"
2414
+ msgstr "Export XML"
2415
+
2416
+ # @ backwpup
2417
+ #: inc/class-jobtype-wpexp.php:14 inc/class-page-about.php:189
2418
+ msgid "WordPress XML export"
2419
+ msgstr "Export XML WordPress"
2420
+
2421
+ #: inc/class-jobtype-wpexp.php:45
2422
+ msgid "Items to export"
2423
+ msgstr "Quoi exporter"
2424
+
2425
+ # @ backwpup
2426
+ #: inc/class-jobtype-wpexp.php:47
2427
+ msgid "All content"
2428
+ msgstr "Tous les contenus"
2429
+
2430
+ #: inc/class-jobtype-wpexp.php:48
2431
+ msgid "Posts"
2432
+ msgstr "Articles"
2433
+
2434
+ #: inc/class-jobtype-wpexp.php:49
2435
+ msgid "Pages"
2436
+ msgstr "Pages"
2437
+
2438
+ # @ backwpup
2439
+ #: inc/class-jobtype-wpexp.php:58
2440
+ msgid "XML Export file name"
2441
+ msgstr "Nom du fichier de l'export XML"
2442
+
2443
+ # @ backwpup
2444
+ #: inc/class-jobtype-wpexp.php:66 inc/class-jobtype-wpplugin.php:53
2445
+ msgid "File compression"
2446
+ msgstr "Compression"
2447
+
2448
+ # @ backwpup
2449
+ #: inc/class-jobtype-wpexp.php:104
2450
+ #, php-format
2451
+ msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
2452
+ msgstr "%d. Tentative d'export au format XML WordPress&#160;&hellip;"
2453
+
2454
+ # @ backwpup
2455
+ #: inc/class-jobtype-wpexp.php:132
2456
+ #, php-format
2457
+ msgid "Added XML export \"%1$s\" with %2$s to backup file list."
2458
+ msgstr ""
2459
+ "Ajout de l'export XML \"%1$s\" avec %2$s à la liste des fichiers à "
2460
+ "sauvegarder."
2461
+
2462
+ # @ backwpup
2463
+ #: inc/class-jobtype-wpplugin.php:13
2464
+ msgid "Plugins"
2465
+ msgstr "Extensions"
2466
+
2467
+ #: inc/class-jobtype-wpplugin.php:14
2468
+ msgid "Installed plugins list"
2469
+ msgstr "Liste des plugins installés"
2470
+
2471
+ #: inc/class-jobtype-wpplugin.php:45
2472
+ msgid "Plugin list file name"
2473
+ msgstr "Liste des fichiers du plugin"
2474
+
2475
+ #: inc/class-jobtype-wpplugin.php:91
2476
+ #, php-format
2477
+ msgid "%d. Trying to generate a file with installed plugin names&#160;&hellip;"
2478
+ msgstr ""
2479
+ "%d. Tentative de créer un fichier avec les noms des plugins installés&#160;"
2480
+ "&hellip;"
2481
+
2482
+ # @ backwpup
2483
+ #: inc/class-jobtype-wpplugin.php:118
2484
+ msgid "All plugin information:"
2485
+ msgstr "Toutes les informations sur les plugins:"
2486
+
2487
+ #: inc/class-jobtype-wpplugin.php:120
2488
+ #, php-format
2489
+ msgid "from %s"
2490
+ msgstr "de %s"
2491
+
2492
+ #: inc/class-jobtype-wpplugin.php:122
2493
+ msgid "Active plugins:"
2494
+ msgstr "Plugings actifs:"
2495
+
2496
+ # @ backwpup
2497
+ #: inc/class-jobtype-wpplugin.php:128
2498
+ msgid "Inactive plugins:"
2499
+ msgstr "Plugins inactifs:"
2500
+
2501
+ # @ backwpup
2502
+ #: inc/class-jobtype-wpplugin.php:140
2503
+ #, php-format
2504
+ msgid "Added plugin list file \"%1$s\" with %2$s to backup file list."
2505
+ msgstr ""
2506
+ "Ajout de la liste des fichiers de plugin \"%1$s\" avec %2$s à la liste des "
2507
+ "fichiers à sauvegarder."
2508
+
2509
+ #: inc/class-mysqldump.php:56
2510
+ msgid "No MySQLi extension found. Please install it."
2511
+ msgstr "Pas d'extension MySQLi de trouvée. Merci de l'installer."
2512
+
2513
+ # @ backwpup
2514
+ #: inc/class-mysqldump.php:90
2515
+ #, php-format
2516
+ msgid "Cannot connect to MySQL database %1$d: %2$s"
2517
+ msgstr ""
2518
+ "Impossible de se connecter au serveur à la base de données MySQL %1$d: %2$s"
2519
+
2520
+ #: inc/class-mysqldump.php:96
2521
+ #, php-format
2522
+ msgctxt "Database Charset"
2523
+ msgid "Cannot set DB charset to %s"
2524
+ msgstr "Impossible de mettre le jeux de caractère à %s sur la base de données"
2525
+
2526
+ # @ backwpup
2527
+ #: inc/class-mysqldump.php:126
2528
+ msgid "Cannot open dump file"
2529
+ msgstr "Impossible d'ouvir le fichier de dump"
2530
+
2531
+ # @ backwpup
2532
+ #: inc/class-mysqldump.php:131 inc/class-mysqldump.php:141
2533
+ #: inc/class-mysqldump.php:218 inc/class-mysqldump.php:230
2534
+ #: inc/class-mysqldump.php:243 inc/class-mysqldump.php:255
2535
+ #: inc/class-mysqldump.php:294 inc/class-mysqldump.php:315
2536
+ #: inc/class-mysqldump.php:329
2537
+ #, php-format
2538
+ msgid "Database error %1$s for query %2$s"
2539
+ msgstr "Erreur base de données %1$s pour la requête %2$s"
2540
+
2541
+ # @ backwpup
2542
+ #: inc/class-mysqldump.php:391
2543
+ msgid "Error while writing file!"
2544
+ msgstr "Erreur d'ecriture du fichier!"
2545
+
2546
+ # @ backwpup
2547
+ #: inc/class-option.php:115
2548
+ msgid "New Job"
2549
+ msgstr "Nouvelle opération"
2550
+
2551
+ #: inc/class-page-about.php:52
2552
+ #, php-format
2553
+ msgid "%s Welcome"
2554
+ msgstr "%s bienvenue"
2555
+
2556
+ #: inc/class-page-about.php:58
2557
+ msgid "Heads up! You have updated from version 2.x"
2558
+ msgstr "Attention! Vous avez fais une mise à jour depuis une version 2.x"
2559
+
2560
+ #: inc/class-page-about.php:59
2561
+ #, php-format
2562
+ msgid ""
2563
+ "Please <a href=\"%s\">check your settings</a> after updating from version 2."
2564
+ "x:"
2565
+ msgstr ""
2566
+ "Merci <a href=\"%s\">de vérifier vos paramètres</a> après une mise à jour "
2567
+ "depuis la version 2.x:"
2568
+
2569
+ # @ backwpup
2570
+ #: inc/class-page-about.php:60
2571
+ msgid "Dropbox authentication must be re-entered"
2572
+ msgstr "L'autorisation DropBox doit être faite de nouveau"
2573
+
2574
+ # @ backwpup
2575
+ #: inc/class-page-about.php:61
2576
+ msgid "SugarSync authentication must be re-entered"
2577
+ msgstr "L'autorisation SugarSync doit être faite de nouveau"
2578
+
2579
+ # @ backwpup
2580
+ #: inc/class-page-about.php:62
2581
+ msgid "S3 Settings"
2582
+ msgstr "Paramètres S3"
2583
+
2584
+ #: inc/class-page-about.php:63
2585
+ msgid "Google Storage is now a part of S3 service settings"
2586
+ msgstr "Google Storage est maintenant dans les paramètre du service S3"
2587
+
2588
+ #: inc/class-page-about.php:64
2589
+ msgid "All your passwords"
2590
+ msgstr "Tous vos mots de passe"
2591
+
2592
+ #: inc/class-page-about.php:73
2593
+ msgid "Welcome to BackWPup Pro"
2594
+ msgstr "Bienvenue sur BackWPup Pro"
2595
+
2596
+ #: inc/class-page-about.php:74 inc/class-page-backwpup.php:86
2597
+ msgid "Here you can schedule backup plans with a wizard."
2598
+ msgstr ""
2599
+ "Ici vous pouvez définir la programation de vos sauvegardes avec un assistant."
2600
+
2601
+ #: inc/class-page-about.php:75 inc/class-page-about.php:85
2602
+ #: inc/class-page-backwpup.php:87 inc/class-page-backwpup.php:93
2603
+ msgid ""
2604
+ "The backup files can be used to save your whole installation including "
2605
+ "<code>/wp-content/</code> and push them to an external Backup Service, if "
2606
+ "you don’t want to save the backups on the same server. With a single backup "
2607
+ "file you are able to restore an installation."
2608
+ msgstr ""
2609
+ "La sauvegarde peut être utilisée pour sauvegarder toute votre installation "
2610
+ "en incluant <code>/wp-content/</code> et ensuite permet de les envoyer vers "
2611
+ "un service externe, si vous désirez que votre sauvegarde ne reste pas sur le "
2612
+ "même serveur. Avec un seul fichier de sauvegarde vous pouvez restaurer toute "
2613
+ "votre installation."
2614
+
2615
+ #: inc/class-page-about.php:76
2616
+ #, php-format
2617
+ msgid ""
2618
+ "First <a href=\"%1$s\">set up a job</a>, and plan what you want to save. You "
2619
+ "can <a href=\"%2$s\">use the wizards</a> or the expert mode."
2620
+ msgstr ""
2621
+ "En premier <a href=\"%1$s\">définir une opération</a>, et définir ce que "
2622
+ "vous voulez sauvegarder. Vous pouvez <a href=\"%2$s\">utilisez l'assistant</"
2623
+ "a> ou le mode expert."
2624
+
2625
+ # @ backwpup
2626
+ #: inc/class-page-about.php:83
2627
+ msgid "Welcome to BackWPup"
2628
+ msgstr "Bienvenue à BackWPup"
2629
+
2630
+ #: inc/class-page-about.php:86
2631
+ msgid "First set up a job, and plan what you want to save."
2632
+ msgstr ""
2633
+ "En premier créer une opération, puis définisser ce que vous voulez "
2634
+ "sauvegarder."
2635
+
2636
+ #: inc/class-page-about.php:103
2637
+ msgid "Please activate your license"
2638
+ msgstr "Merci d'activer votre licence"
2639
+
2640
+ #: inc/class-page-about.php:104
2641
+ msgid ""
2642
+ "Please go to your plugin page and active the license to have the autoupdates "
2643
+ "enabled."
2644
+ msgstr ""
2645
+ "Merci d'aller sur la page de l'extension et d'activer votre licence pour que "
2646
+ "la mise à jour automatique soit possible."
2647
+
2648
+ #: inc/class-page-about.php:113
2649
+ msgid "Save your database"
2650
+ msgstr "Sauvegarder votre base de données"
2651
+
2652
+ #: inc/class-page-about.php:116
2653
+ msgid "Save your database regularly"
2654
+ msgstr "Sauvegarder votre base de données régulièrement"
2655
+
2656
+ #: inc/class-page-about.php:117
2657
+ #, php-format
2658
+ msgid ""
2659
+ "With BackWPup you can schedule the database backup to run automatically. "
2660
+ "With a single backup file you can restore your database. You should <a href="
2661
+ "\"%s\">set up a backup job</a>, so you will never forget it. There is also "
2662
+ "an option to repair and optimize the database after each backup."
2663
+ msgstr ""
2664
+ "Avec BackWPup vous pouvez définir une automatisation de la sauvegarde de vos "
2665
+ "bases de données. Avec un seul fichier de sauvegarde, vous pouvez restaurer "
2666
+ "votre base de données. Vous devez <a href=\"%s\">définir une opération de "
2667
+ "sauvegarde</a>, ainsi vous n'oublierez jamais . Il y a aussi une option pour "
2668
+ "réparer et optimiser la base de données après chaque sauvegarde."
2669
+
2670
+ # @ backwpup
2671
+ #: inc/class-page-about.php:122 inc/class-page-about.php:126
2672
+ msgid "WordPress XML Export"
2673
+ msgstr "Export WordPress XML"
2674
+
2675
+ #: inc/class-page-about.php:123
2676
+ msgid ""
2677
+ "You can choose the built-in WordPress export format in addition or exclusive "
2678
+ "to save your data. This works in automated backups too of course. The "
2679
+ "advantage is: you can import these files into a blog with the regular "
2680
+ "WordPress importer."
2681
+ msgstr ""
2682
+ "Vous pouvez choisir le format interne d'export WordPress en plus ou "
2683
+ "seulement pour sauvegarder vos données. Cela fonctionne aussi dans les "
2684
+ "sauvegardes programmées. L'avantage en est : vous pouvez restaurer ces "
2685
+ "fichiers dans votre installation avec l'importateur WordPress."
2686
+
2687
+ #: inc/class-page-about.php:131
2688
+ msgid "Save all data from the webserver"
2689
+ msgstr "Sauvegarder toutes les données depuis le serveur web"
2690
+
2691
+ # @ backwpup
2692
+ #: inc/class-page-about.php:134
2693
+ msgid "Save all files"
2694
+ msgstr "Sauvegarder tous les fichiers"
2695
+
2696
+ #: inc/class-page-about.php:135
2697
+ #, php-format
2698
+ msgid ""
2699
+ "You can back up all your attachments, also all system files, plugins and "
2700
+ "themes in a single file. You can <a href=\"%s\">create a job</a> to update a "
2701
+ "backup copy of your file system only when files are changed."
2702
+ msgstr ""
2703
+ "Vous pouvez sauvegarder tous vos fichiers joints, ainsi que tous les "
2704
+ "fichiers systèmes, les plugins et les thémes dans un seul fichier. Vous "
2705
+ "pouvez <a href=\"%s\">créer une opération</a> pour mettre à jour votre "
2706
+ "sauvegarde avec uniquement les fichiers qui ont été modifiés (différentiel)"
2707
+
2708
+ #: inc/class-page-about.php:140 inc/class-page-about.php:144
2709
+ msgid "Security!"
2710
+ msgstr "Sécurité!"
2711
+
2712
+ #: inc/class-page-about.php:141
2713
+ msgid ""
2714
+ "By default everything is encrypted: connections to external services, local "
2715
+ "files and access to directories."
2716
+ msgstr ""
2717
+ "Par défaut tout est chiffré:connexions aux services externes, fichiers "
2718
+ "locaux et accès au répertoires."
2719
+
2720
+ # @ backwpup
2721
+ #: inc/class-page-about.php:149 inc/class-page-about.php:152
2722
+ msgid "Cloud Support"
2723
+ msgstr "Support du cloud"
2724
+
2725
+ #: inc/class-page-about.php:153
2726
+ msgid ""
2727
+ "BackWPup supports multiple cloud services in parallel. This ensures the "
2728
+ "backups are redundant."
2729
+ msgstr ""
2730
+ "BackWPup supporte plusieurs services cloud en paralèlle. Cela permet d'avoir "
2731
+ "des sauvegardes redondantes."
2732
+
2733
+ #: inc/class-page-about.php:161
2734
+ msgid "Features / differences between Free and Pro"
2735
+ msgstr ""
2736
+ "Fonctionnalités / différences entre la version gratuite et la version payante"
2737
+
2738
+ #: inc/class-page-about.php:164
2739
+ msgid "Features"
2740
+ msgstr "Fonctionnalités"
2741
+
2742
+ #: inc/class-page-about.php:165
2743
+ msgid "FREE"
2744
+ msgstr "GRATUIT"
2745
+
2746
+ #: inc/class-page-about.php:166
2747
+ msgid "PRO"
2748
+ msgstr "PRO"
2749
+
2750
+ # @ backwpup
2751
+ #: inc/class-page-about.php:169
2752
+ msgid "Complete database backup"
2753
+ msgstr "Sauvegarde complète de la base de données"
2754
+
2755
+ # @ backwpup
2756
+ #: inc/class-page-about.php:174
2757
+ msgid "Complete file backup"
2758
+ msgstr "Sauvegarde complète des fichiers"
2759
+
2760
+ # @ backwpup
2761
+ #: inc/class-page-about.php:179
2762
+ msgid "Database check"
2763
+ msgstr "Vérification de la base de données"
2764
+
2765
+ # @ backwpup
2766
+ #: inc/class-page-about.php:184
2767
+ msgid "Data compression"
2768
+ msgstr "Compression des données"
2769
+
2770
+ #: inc/class-page-about.php:194
2771
+ msgid "List of installed plugins"
2772
+ msgstr "Liste des plugins installés"
2773
+
2774
+ # @ backwpup
2775
+ #: inc/class-page-about.php:199
2776
+ msgid "Backup archives management"
2777
+ msgstr "Gestion des archives de sauvegarde"
2778
+
2779
+ #: inc/class-page-about.php:204
2780
+ msgid "Log file management"
2781
+ msgstr "Gestion des fichiers journaux"
2782
+
2783
+ #: inc/class-page-about.php:209
2784
+ msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
2785
+ msgstr ""
2786
+ "Démarer les opérations par WP-Cron, URL, système, administration ou WP-CLI"
2787
+
2788
+ #: inc/class-page-about.php:214
2789
+ msgid "Log report via email"
2790
+ msgstr "Raport par courriel des fichiers journaux"
2791
+
2792
+ # @ backwpup
2793
+ #: inc/class-page-about.php:219
2794
+ msgid "Backup to Microsoft Azure"
2795
+ msgstr "Sauvegarder vers Microsoft Azure"
2796
+
2797
+ # @ backwpup
2798
+ #: inc/class-page-about.php:224
2799
+ msgid "Backup as email"
2800
+ msgstr "Sauvegarder vers E-mail"
2801
+
2802
+ #: inc/class-page-about.php:229
2803
+ msgid ""
2804
+ "Backup to S3 services <small>(Amazon, Google Storage, Hosteurope and more)</"
2805
+ "small>"
2806
+ msgstr ""
2807
+ "Sauvegarde vers le service S3 <small>(Amazon, Google Storage, Hosteurope et "
2808
+ "plus)</small>"
2809
+
2810
+ # @ backwpup
2811
+ #: inc/class-page-about.php:244
2812
+ msgid "Backup to FTP server"
2813
+ msgstr "Sauvegarder vers serveur FTP"
2814
+
2815
+ # @ backwpup
2816
+ #: inc/class-page-about.php:249
2817
+ msgid "Backup to your web space"
2818
+ msgstr "Sauvegarder vers votre espace Web"
2819
+
2820
+ #: inc/class-page-about.php:259
2821
+ msgid "Custom API keys for DropBox and SugarSync"
2822
+ msgstr "Clé d'API pour DropBox et SygarSync"
2823
+
2824
+ #: inc/class-page-about.php:264
2825
+ msgid "XML database backup as PHPMyAdmin schema"
2826
+ msgstr ""
2827
+ "Sauvegarde de la base de données en XML comme un schéma pour PHPMyAdmin"
2828
+
2829
+ #: inc/class-page-about.php:269
2830
+ msgid "Database backup as mysqldump per command line"
2831
+ msgstr ""
2832
+ "Sauvegarde de la base de données au format mysqldump en ligne de commande"
2833
+
2834
+ #: inc/class-page-about.php:274
2835
+ msgid "Database backup for additional MySQL databases"
2836
+ msgstr "Sauvegarde pour des bases de données supplémentaire de type MySQL"
2837
+
2838
+ # @ backwpup
2839
+ #: inc/class-page-about.php:279
2840
+ msgid "Import and export job settings as XML"
2841
+ msgstr "Enregistrer et charger les paramètres des opérations au format XML"
2842
+
2843
+ #: inc/class-page-about.php:284
2844
+ msgid "Wizard for system tests"
2845
+ msgstr "Assistant pour les tests systèmes"
2846
+
2847
+ #: inc/class-page-about.php:289
2848
+ msgid "Wizard for scheduled backup jobs"
2849
+ msgstr "Assistant pour la programation des opérations de sauvegarde"
2850
+
2851
+ #: inc/class-page-about.php:294
2852
+ msgid "Wizard to import settings and backup jobs"
2853
+ msgstr ""
2854
+ "Assistant pour le chargement des paramètres et des définitions des opérations"
2855
+
2856
+ #: inc/class-page-about.php:299
2857
+ msgid "Differential backup of changed directories to Dropbox"
2858
+ msgstr "Sauvegarde différentielle des répertoires modifiés vers Dropbox"
2859
+
2860
+ #: inc/class-page-about.php:304
2861
+ msgid "Differential backup of changed directories to Rackspace Cloud Files"
2862
+ msgstr ""
2863
+ "Sauvegarde différentielle des répertoires modifiés vers Rackspace Cloud"
2864
+
2865
+ #: inc/class-page-about.php:309
2866
+ msgid "Differential backup of changed directories to S3"
2867
+ msgstr "Sauvegarde différentielle des répertoires modifiés vers le service S3"
2868
+
2869
+ #: inc/class-page-about.php:314
2870
+ msgid "Differential backup of changed directories to MS Azure"
2871
+ msgstr "Sauvegarde différentielle des répertoires modifiés vers MS Azure"
2872
+
2873
+ #: inc/class-page-about.php:319
2874
+ msgid "<strong>Premium support</strong>"
2875
+ msgstr "<strong>Premium support</strong>"
2876
+
2877
+ #: inc/class-page-about.php:324
2878
+ msgid "<strong>Dynamically loaded documentation</strong>"
2879
+ msgstr "<strong>Documentation mise à disposition dynamiquement </strong>"
2880
+
2881
+ #: inc/class-page-about.php:329
2882
+ msgid "<strong>Automatic update from MarketPress</strong>"
2883
+ msgstr "<strong>Mise à jour automatique depuis le MarketPress</strong>"
2884
+
2885
+ #: inc/class-page-about.php:336
2886
+ msgid "http://marketpress.com/product/backwpup-pro/"
2887
+ msgstr "http://marketpress.com/product/backwpup-pro/"
2888
+
2889
+ #: inc/class-page-about.php:336
2890
+ msgid "GET PRO"
2891
+ msgstr "Passer à la version PRO"
2892
+
2893
+ # @ backwpup
2894
+ #: inc/class-page-about.php:343
2895
+ msgid "Backup now!"
2896
+ msgstr "Sauvegarder maintenant!"
2897
+
2898
+ #: inc/class-page-backups.php:153
2899
+ msgid "No files could be found. (List will be generated during next backup.)"
2900
+ msgstr ""
2901
+ "Pas de fichier trouvé. (La liste sera construite à la prochaine sauvegarde)"
2902
+
2903
+ # @ default
2904
+ # @ backwpup
2905
+ #: inc/class-page-backups.php:165 inc/class-page-backups.php:294
2906
+ #: inc/class-page-jobs.php:56 inc/class-page-jobs.php:130
2907
+ #: inc/class-page-logs.php:103 inc/class-page-logs.php:185
2908
+ msgid "Delete"
2909
+ msgstr "Effacer"
2910
+
2911
+ # @ backwpup
2912
+ #: inc/class-page-backups.php:195
2913
+ msgid "Change destination"
2914
+ msgstr "Modifier la destination"
2915
+
2916
+ # @ backwpup
2917
+ #: inc/class-page-backups.php:233
2918
+ msgid "File"
2919
+ msgstr "Fichier"
2920
+
2921
+ # @ backwpup
2922
+ #: inc/class-page-backups.php:235 inc/class-page-logs.php:118
2923
+ msgid "Size"
2924
+ msgstr "Taille"
2925
+
2926
+ # @ backwpup
2927
+ #: inc/class-page-backups.php:236 inc/class-page-backwpup.php:175
2928
+ #: inc/class-page-backwpup.php:236
2929
+ msgid "Time"
2930
+ msgstr "Heure"
2931
+
2932
+ # @ backwpup
2933
+ #: inc/class-page-backups.php:294
2934
+ msgid ""
2935
+ "You are about to delete this backup archive. \n"
2936
+ " 'Cancel' to stop, 'OK' to delete."
2937
+ msgstr ""
2938
+ "Vous allez effacer cette archive de sauvegarde. \n"
2939
+ " 'Annuler' pour arrêter, 'OK' pour effacer."
2940
+
2941
+ # @ backwpup
2942
+ #: inc/class-page-backups.php:296 inc/class-page-jobs.php:219
2943
+ #: inc/class-page-logs.php:186
2944
+ msgid "Download"
2945
+ msgstr "Télécharger"
2946
+
2947
+ # @ backwpup
2948
+ #: inc/class-page-backups.php:311
2949
+ msgid "?"
2950
+ msgstr "?"
2951
+
2952
+ #: inc/class-page-backups.php:318 inc/class-page-jobs.php:210
2953
+ #: inc/class-page-logs.php:181
2954
+ #, php-format
2955
+ msgid "%1$s at %2$s"
2956
+ msgstr "%1$s à %2$s"
2957
+
2958
+ #: inc/class-page-backups.php:340 inc/class-page-backups.php:352
2959
+ #: inc/class-page-editjob.php:41 inc/class-page-jobs.php:312
2960
+ msgid "Sorry, you don't have permissions to do that."
2961
+ msgstr "Désoler, vous n'avez pas le droit de faire cela."
2962
+
2963
+ # @ backwpup
2964
+ #: inc/class-page-backups.php:418
2965
+ #, php-format
2966
+ msgid "%s Manage Backup Archives"
2967
+ msgstr "%s Gestion des archives de sauvegarde"
2968
+
2969
+ #: inc/class-page-backwpup.php:80
2970
+ #, php-format
2971
+ msgid "%s Dashboard"
2972
+ msgstr "%s Tableau de bord"
2973
+
2974
+ #: inc/class-page-backwpup.php:88
2975
+ msgid ""
2976
+ "First set up a job, and plan what you want to save. You can use the wizards "
2977
+ "or the normal mode. Please note: the plugin author gives no warranty for "
2978
+ "your data."
2979
+ msgstr ""
2980
+ "Premièrement définissez une opération, et choisissez ce que vous voulez "
2981
+ "sauvegarder. Vous pouvez utliser les assitants ou le mode normal. Veuiller "
2982
+ "noter : l'autheur du plugin ne donne aucune garantie sur la sauvegarde de "
2983
+ "vos données."
2984
+
2985
+ #: inc/class-page-backwpup.php:92
2986
+ msgid ""
2987
+ "Use the short links in the <b>First steps</b> box to schedule backup plans."
2988
+ msgstr ""
2989
+ "Utiliser le raccourci dans le cartouche <b>Premières étapes</b> pour "
2990
+ "planifier vos sauvegardes."
2991
+
2992
+ #: inc/class-page-backwpup.php:94
2993
+ msgid ""
2994
+ "First set up a job, and plan what you want to save. Please note: the plugin "
2995
+ "author gives no warranty for your data."
2996
+ msgstr ""
2997
+ "Premièrement définissez une opération, et choisissez ce que vous voulez "
2998
+ "sauvegarder. Veuiller noter : l'autheur du plugin ne donne aucune garantie "
2999
+ "sur la sauvegarde de vos données."
3000
+
3001
+ #: inc/class-page-backwpup.php:121
3002
+ msgid "Start wizard"
3003
+ msgstr "Démarrer l'assistant"
3004
+
3005
+ #: inc/class-page-backwpup.php:130
3006
+ msgid "First Steps"
3007
+ msgstr "Première étape"
3008
+
3009
+ #: inc/class-page-backwpup.php:134
3010
+ msgid "Test the installation"
3011
+ msgstr "Tester l'application"
3012
+
3013
+ # @ backwpup
3014
+ #: inc/class-page-backwpup.php:135 inc/class-page-backwpup.php:138
3015
+ msgid "Create a Job"
3016
+ msgstr "Créer une opération"
3017
+
3018
+ # @ backwpup
3019
+ #: inc/class-page-backwpup.php:137
3020
+ msgid "Check the installation"
3021
+ msgstr "Vérifier l'installation"
3022
+
3023
+ #: inc/class-page-backwpup.php:140
3024
+ msgid "Run the created job"
3025
+ msgstr "Executer l'opération crée"
3026
+
3027
+ #: inc/class-page-backwpup.php:141
3028
+ msgid "Check the job log"
3029
+ msgstr "Vérifier le fichier journal de l'opération"
3030
+
3031
+ #: inc/class-page-backwpup.php:149
3032
+ msgid "One click backup"
3033
+ msgstr "Sauvegarde en un clic"
3034
+
3035
+ #: inc/class-page-backwpup.php:151
3036
+ msgid ""
3037
+ "Generate a database backup of WordPress tables and download it right away!"
3038
+ msgstr ""
3039
+ "Générer une sauvegarde de la base de données de Wordpress et la télécharger "
3040
+ "immédiatement!"
3041
+
3042
+ # @ backwpup
3043
+ #: inc/class-page-backwpup.php:151
3044
+ msgid "Download database backup"
3045
+ msgstr "Télécharger la sauvegarde"
3046
+
3047
+ #: inc/class-page-backwpup.php:174
3048
+ msgid "Last logs"
3049
+ msgstr "Derniers journaux"
3050
+
3051
+ # @ backwpup
3052
+ #: inc/class-page-backwpup.php:175 inc/class-page-backwpup.php:237
3053
+ #: inc/class-page-logs.php:114
3054
+ msgid "Job"
3055
+ msgstr "Opération"
3056
+
3057
+ #: inc/class-page-backwpup.php:175
3058
+ msgid "Result"
3059
+ msgstr "Résultats"
3060
+
3061
+ # @ backwpup
3062
+ #: inc/class-page-backwpup.php:205
3063
+ #, php-format
3064
+ msgid "%d ERROR"
3065
+ msgid_plural "%d ERRORS"
3066
+ msgstr[0] "%d ERREUR"
3067
+ msgstr[1] "%d ERREURS"
3068
+
3069
+ # @ backwpup
3070
+ #: inc/class-page-backwpup.php:207
3071
+ #, php-format
3072
+ msgid "%d WARNING"
3073
+ msgid_plural "%d WARNINGS"
3074
+ msgstr[0] "%d AVERTISSEMENT"
3075
+ msgstr[1] "%d AVERTISSEMENTS"
3076
+
3077
+ # @ backwpup
3078
+ #: inc/class-page-backwpup.php:209
3079
+ msgid "OK"
3080
+ msgstr "OK"
3081
+
3082
+ #: inc/class-page-backwpup.php:234
3083
+ msgid "Next scheduled jobs"
3084
+ msgstr "Prochaines opérations"
3085
+
3086
+ # @ backwpup
3087
+ #: inc/class-page-backwpup.php:260
3088
+ #, php-format
3089
+ msgid "working since %d seconds"
3090
+ msgstr "en cours depuis %d secondes."
3091
+
3092
+ # @ backwpup
3093
+ #: inc/class-page-backwpup.php:262 inc/class-page-jobs.php:482
3094
+ msgid "Abort"
3095
+ msgstr "Abandonner"
3096
+
3097
+ # @ backwpup
3098
+ #: inc/class-page-backwpup.php:276 inc/class-page-jobs.php:197
3099
+ msgid "Not scheduled!"
3100
+ msgstr "Pas de programmation !"
3101
+
3102
+ # @ backwpup
3103
+ #: inc/class-page-backwpup.php:278
3104
+ msgid "Edit Job"
3105
+ msgstr "Modifier l'opération"
3106
+
3107
+ # @ backwpup
3108
+ #: inc/class-page-editjob.php:28
3109
+ msgid "Overview"
3110
+ msgstr "Vue générale"
3111
+
3112
+ #: inc/class-page-editjob.php:175
3113
+ #, php-format
3114
+ msgid "Changes for job <i>%s</i> saved."
3115
+ msgstr "Les modifications de l'opération <i>%s</i> sont enregistrées."
3116
+
3117
+ # @ backwpup
3118
+ #: inc/class-page-editjob.php:308
3119
+ msgid ""
3120
+ "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
3121
+ msgstr ""
3122
+ "Lancé en tant qu'opération programmée <a href=\"http://wikipedia.org/wiki/"
3123
+ "Cron\" target=\"_blank\">Cron</a> :"
3124
+
3125
+ # @ backwpup
3126
+ #: inc/class-page-editjob.php:317
3127
+ #, php-format
3128
+ msgid "ATTENTION: Job runs every %d minutes!"
3129
+ msgstr "ATTENTION: Opération exécutée toutes les %d minutes!"
3130
+
3131
+ # @ backwpup
3132
+ #: inc/class-page-editjob.php:323
3133
+ #, php-format
3134
+ msgid "ATTENTION: Job runs every %d hours!"
3135
+ msgstr "ATTENTION: Opération exécutée toutes les %d heures!"
3136
+
3137
+ # @ backwpup
3138
+ #: inc/class-page-editjob.php:327
3139
+ msgid "ATTENTION: Can't calculate cron!"
3140
+ msgstr "ATTENTION: Impossible de calculer cron!"
3141
+
3142
+ # @ backwpup
3143
+ #: inc/class-page-editjob.php:330
3144
+ msgid "Next runtime:"
3145
+ msgstr "Prochaine exécution:"
3146
+
3147
+ #: inc/class-page-editjob.php:368 inc/class-page-settings.php:103
3148
+ msgid "General"
3149
+ msgstr "Général"
3150
+
3151
+ # @ backwpup
3152
+ #: inc/class-page-editjob.php:368
3153
+ msgid "Schedule"
3154
+ msgstr "Programmation"
3155
+
3156
+ #: inc/class-page-editjob.php:383
3157
+ #, php-format
3158
+ msgid "To: %s"
3159
+ msgstr "A: %s"
3160
+
3161
+ #: inc/class-page-editjob.php:389
3162
+ #, php-format
3163
+ msgid "%s Job:"
3164
+ msgstr "%s Opération:"
3165
+
3166
+ # @ backwpup
3167
+ #: inc/class-page-editjob.php:416 inc/class-page-jobs.php:69
3168
+ msgid "Job Name"
3169
+ msgstr "Nom de l'opération"
3170
+
3171
+ #: inc/class-page-editjob.php:420
3172
+ msgid "Please name this job."
3173
+ msgstr "Nom de cette opération."
3174
+
3175
+ #: inc/class-page-editjob.php:428
3176
+ msgid "Job Tasks"
3177
+ msgstr "Taches de l'opération"
3178
+
3179
+ #: inc/class-page-editjob.php:432
3180
+ msgid "This job is a&#160;&hellip;"
3181
+ msgstr "Cette opération est une &#160;&hellip;"
3182
+
3183
+ #: inc/class-page-editjob.php:435
3184
+ msgid "Job tasks"
3185
+ msgstr "Taches de l'opération"
3186
+
3187
+ # @ backwpup
3188
+ #: inc/class-page-editjob.php:451
3189
+ msgid "Backup File Creation"
3190
+ msgstr "Paramètres de création des sauvegardes"
3191
+
3192
+ # @ backwpup
3193
+ #: inc/class-page-editjob.php:456 inc/class-page-editjob.php:459
3194
+ msgid "Backup type"
3195
+ msgstr "Type de sauvegarde"
3196
+
3197
+ #: inc/class-page-editjob.php:464
3198
+ msgid "Synchronize file by file to destination"
3199
+ msgstr "Synchroniser fichier par fichier vers la destination"
3200
+
3201
+ # @ backwpup
3202
+ #: inc/class-page-editjob.php:468
3203
+ msgid "Create a backup archive"
3204
+ msgstr "Création de l'archive"
3205
+
3206
+ # @ backwpup
3207
+ #: inc/class-page-editjob.php:474
3208
+ msgid "Archive name"
3209
+ msgstr "Nom de l'archive"
3210
+
3211
+ #: inc/class-page-editjob.php:481
3212
+ #, php-format
3213
+ msgid "%d = Two digit day of the month, with leading zeros"
3214
+ msgstr "%d = Jour du mois sur deux chiffres avec un zéro significatifs"
3215
+
3216
+ #: inc/class-page-editjob.php:482
3217
+ msgid "%j = Day of the month, without leading zeros"
3218
+ msgstr "%j = Jour du mois sans zéro significatifs"
3219
+
3220
+ #: inc/class-page-editjob.php:483
3221
+ msgid "%m = Day of the month, with leading zeros"
3222
+ msgstr "%j = Jour du mois avec zéro significatifs"
3223
+
3224
+ #: inc/class-page-editjob.php:484
3225
+ msgid "%n = Representation of the month (without leading zeros)"
3226
+ msgstr "%n = Numéro du mois sans zéro significatifs"
3227
+
3228
+ #: inc/class-page-editjob.php:485
3229
+ msgid "%Y = Four digit representation for the year"
3230
+ msgstr "%Y = Quatre chiffres représentant l'année"
3231
+
3232
+ #: inc/class-page-editjob.php:486
3233
+ msgid "%y = Two digit representation of the year"
3234
+ msgstr "%y = Deux chiffres représentant l'année"
3235
+
3236
+ #: inc/class-page-editjob.php:487
3237
+ msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)"
3238
+ msgstr "%a = am et pm en minuscule"
3239
+
3240
+ #: inc/class-page-editjob.php:488
3241
+ msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)"
3242
+ msgstr "%A = AM et PM en majuscule"
3243
+
3244
+ #: inc/class-page-editjob.php:489
3245
+ msgid "%B = Swatch Internet Time"
3246
+ msgstr "%B = Swatch Internet time"
3247
+
3248
+ #: inc/class-page-editjob.php:490
3249
+ msgid "%g = Hour in 12-hour format, without leading zeros"
3250
+ msgstr "%g = Format d'heure sur 12 heures, pas de zéro significatif"
3251
+
3252
+ #: inc/class-page-editjob.php:491
3253
+ msgid "%G = Hour in 24-hour format, without leading zeros"
3254
+ msgstr "%G = Format d'heure sur 24 heures, pas de zéro significatif"
3255
+
3256
+ #: inc/class-page-editjob.php:492
3257
+ msgid "%h = Hour in 12-hour format, with leading zeros"
3258
+ msgstr "%h = Format d'heures sur 12 heures avec des zéros devant"
3259
+
3260
+ #: inc/class-page-editjob.php:493
3261
+ msgid "%H = Hour in 24-hour format, with leading zeros"
3262
+ msgstr "%H = Format d'heure sur 24 heures, avec des zéros devant"
3263
+
3264
+ #: inc/class-page-editjob.php:494
3265
+ msgid "%i = Two digit representation of the minute"
3266
+ msgstr "%i = Deux chiffres représentants les minutes"
3267
+
3268
+ #: inc/class-page-editjob.php:495
3269
+ #, php-format
3270
+ msgid "%s = Two digit representation of the second"
3271
+ msgstr "%s = Deux chiffres représentants les secondes"
3272
+
3273
+ #: inc/class-page-editjob.php:496
3274
+ #, php-format
3275
+ msgid "%u = Two digit representation of the microsecond"
3276
+ msgstr "%u= Deux chiffres représentant les microsecondes"
3277
+
3278
+ #: inc/class-page-editjob.php:497
3279
+ msgid "%U = UNIX timestamp (seconds since January 1 1970 00:00:00 GMT)"
3280
+ msgstr "%U = UNIX timestamp (secondes depuis le 1 janvier 1970 00:00:00 GMT)"
3281
+
3282
+ #: inc/class-page-editjob.php:501
3283
+ msgid "Replacement patterns:"
3284
+ msgstr "Motifs de remplacement : "
3285
+
3286
+ # @ backwpup
3287
+ #: inc/class-page-editjob.php:514 inc/class-page-editjob.php:517
3288
+ msgid "Archive Format"
3289
+ msgstr "Format de l'archive"
3290
+
3291
+ # @ backwpup
3292
+ #: inc/class-page-editjob.php:520 inc/class-page-editjob.php:522
3293
+ msgid "Zip"
3294
+ msgstr "Zip"
3295
+
3296
+ #: inc/class-page-editjob.php:520
3297
+ msgid ""
3298
+ "PHP Zip functions will be used if available (needs less memory). Otherwise "
3299
+ "the PCLZip class will be used."
3300
+ msgstr ""
3301
+ "La fonction PHP Zip sera utilisée si elle est disponible (elle nécessite "
3302
+ "moins de mémoire). Sinon la classe PCLZip sera utilisée."
3303
+
3304
+ #: inc/class-page-editjob.php:522 inc/class-page-editjob.php:527
3305
+ #: inc/class-page-editjob.php:531
3306
+ msgid "Disabled due to missing PHP function."
3307
+ msgstr "Désactiver car les fonctions PHP ne sont pas disponibles."
3308
+
3309
+ # @ backwpup
3310
+ #: inc/class-page-editjob.php:523
3311
+ msgid "Tar"
3312
+ msgstr "Tar"
3313
+
3314
+ #: inc/class-page-editjob.php:523
3315
+ msgid "A tarballed, not compressed archive (fast and less memory)"
3316
+ msgstr "Une archive tar (rapide et nécessitant moins de mémoire)"
3317
+
3318
+ # @ backwpup
3319
+ #: inc/class-page-editjob.php:525 inc/class-page-editjob.php:527
3320
+ msgid "Tar GZip"
3321
+ msgstr "Tar GZip"
3322
+
3323
+ #: inc/class-page-editjob.php:525
3324
+ msgid "A tarballed, GZipped archive (fast and less memory)"
3325
+ msgstr "Une archive tar puis GZIP (rapide et nécessitant moins de mémoire)"
3326
+
3327
+ # @ backwpup
3328
+ #: inc/class-page-editjob.php:529 inc/class-page-editjob.php:531
3329
+ msgid "Tar BZip2"
3330
+ msgstr "Tar BZip2"
3331
+
3332
+ #: inc/class-page-editjob.php:529
3333
+ msgid "A tarballed, BZipped archive (fast and less memory)"
3334
+ msgstr "Une archive tar et BZip (rapide et nécessitant moins de mémoire)"
3335
+
3336
+ # @ backwpup
3337
+ #: inc/class-page-editjob.php:537
3338
+ msgid "Job Destination"
3339
+ msgstr "Destinations de l'opération"
3340
+
3341
+ #: inc/class-page-editjob.php:541 inc/class-page-editjob.php:544
3342
+ msgid "Where should your backup file be stored?"
3343
+ msgstr "Où doit être mis votre fichier de sauvegarde ?"
3344
+
3345
+ # @ backwpup
3346
+ #: inc/class-page-editjob.php:560
3347
+ msgid "Log Files"
3348
+ msgstr "Fichiers journaux"
3349
+
3350
+ # @ backwpup
3351
+ #: inc/class-page-editjob.php:564
3352
+ msgid "Send log to e-mail address"
3353
+ msgstr "Envoyer les journaux à l'adresse de courriel"
3354
+
3355
+ #: inc/class-page-editjob.php:568
3356
+ msgid "Leave empty to not have log sent."
3357
+ msgstr "Laisser vide et les fichiers journaux ne seront pas envoyés."
3358
+
3359
+ #: inc/class-page-editjob.php:572
3360
+ msgid "E-Mail FROM field"
3361
+ msgstr "Champ émetteur du courriel"
3362
+
3363
+ #: inc/class-page-editjob.php:576
3364
+ msgid ""
3365
+ "E-Mail \"From\" field (Name &lt;&#160;you@your-email-address.tld&#160;&gt;)"
3366
+ msgstr ""
3367
+ "Courriel champ \"émetteur\" (Nom &lt;&#160;vous@vous-email-addreses."
3368
+ "tld&#160;&gt;)"
3369
+
3370
+ # @ backwpup
3371
+ #: inc/class-page-editjob.php:580
3372
+ msgid "Errors only"
3373
+ msgstr "Erreurs seulement"
3374
+
3375
+ #: inc/class-page-editjob.php:585
3376
+ msgid "Send e-mail with log only when errors occur during job execution."
3377
+ msgstr ""
3378
+ "Envoyer les fichiers journaux uniquement quand une erreur est survenue dans "
3379
+ "le déroulement de l'opération."
3380
+
3381
+ # @ backwpup
3382
+ #: inc/class-page-editjob.php:596
3383
+ msgid "Job Schedule"
3384
+ msgstr "Programmation"
3385
+
3386
+ #: inc/class-page-editjob.php:600 inc/class-page-editjob.php:603
3387
+ msgid "Start job"
3388
+ msgstr "Démarrer l'opération"
3389
+
3390
+ #: inc/class-page-editjob.php:607
3391
+ msgid "manually only"
3392
+ msgstr "seulement manuellement"
3393
+
3394
+ #: inc/class-page-editjob.php:611
3395
+ msgid "with WordPress cron"
3396
+ msgstr "avec le cron de Wordpress"
3397
+
3398
+ #: inc/class-page-editjob.php:618
3399
+ msgid "with a link"
3400
+ msgstr "avec un lien"
3401
+
3402
+ #: inc/class-page-editjob.php:620
3403
+ msgid ""
3404
+ "Copy the link for an external start. This option has to be activated to make "
3405
+ "the link work."
3406
+ msgstr ""
3407
+ "Copier le lien pour un lancement externe. Cette option doit être activée "
3408
+ "pour que le lien fonctionne."
3409
+
3410
+ #: inc/class-page-editjob.php:627
3411
+ msgid "Start job with CLI"
3412
+ msgstr "Démarrer l'opération avec la CLI"
3413
+
3414
+ #: inc/class-page-editjob.php:630
3415
+ #, php-format
3416
+ msgid ""
3417
+ "Use <a href=\"http://wp-cli.org/\">WP-CLI</a> to run jobs from commandline "
3418
+ "or <a href=\"%s\">get the start script</a>."
3419
+ msgstr ""
3420
+ "Utiliser <a href=\"http://wp-cli.org/\">WP-CLI</a> pour exécuter les "
3421
+ "opérations à partir de la ligne de commande ou <a href=\"%s\">récupérer le "
3422
+ "script de lancement</a>."
3423
+
3424
+ #: inc/class-page-editjob.php:631
3425
+ msgid ""
3426
+ "Generate a server script file to let the job start with the server’s cron on "
3427
+ "command line interface. Alternatively use WP-CLI commands."
3428
+ msgstr ""
3429
+ "Produire un script pour lancer l'opération à partir du cron serveur ou sur "
3430
+ "la ligne de commande. Ou pour utliser les commandes WP-CLI."
3431
+
3432
+ #: inc/class-page-editjob.php:636
3433
+ msgid "Schedule execution time"
3434
+ msgstr "Heure d'excution de la programmation"
3435
+
3436
+ # @ backwpup
3437
+ #: inc/class-page-editjob.php:640 inc/class-page-editjob.php:643
3438
+ msgid "Scheduler type"
3439
+ msgstr "Type de programmation"
3440
+
3441
+ # @ backwpup
3442
+ #: inc/class-page-editjob.php:648
3443
+ msgid "basic"
3444
+ msgstr "basique"
3445
+
3446
+ # @ backwpup
3447
+ #: inc/class-page-editjob.php:652
3448
+ msgid "advanced"
3449
+ msgstr "avancés"
3450
+
3451
+ # @ backwpup
3452
+ #: inc/class-page-editjob.php:681 inc/class-page-editjob.php:749
3453
+ msgid "Scheduler"
3454
+ msgstr "Programmation"
3455
+
3456
+ # @ backwpup
3457
+ #: inc/class-page-editjob.php:686 inc/class-page-jobs.php:70
3458
+ #: inc/class-page-logs.php:115
3459
+ msgid "Type"
3460
+ msgstr "Type"
3461
+
3462
+ # @ backwpup
3463
+ #: inc/class-page-editjob.php:691
3464
+ msgid "Hour"
3465
+ msgstr "Heure"
3466
+
3467
+ # @ backwpup
3468
+ #: inc/class-page-editjob.php:694
3469
+ msgid "Minute"
3470
+ msgstr "Minute"
3471
+
3472
+ # @ backwpup
3473
+ #: inc/class-page-editjob.php:698
3474
+ msgid "monthly"
3475
+ msgstr "Mensuelle"
3476
+
3477
+ # @ backwpup
3478
+ #: inc/class-page-editjob.php:700
3479
+ msgid "on"
3480
+ msgstr "le"
3481
+
3482
+ # @ backwpup
3483
+ #: inc/class-page-editjob.php:710
3484
+ msgid "weekly"
3485
+ msgstr "Hebdomadaire"
3486
+
3487
+ # @ backwpup
3488
+ #: inc/class-page-editjob.php:712 inc/class-page-editjob.php:819
3489
+ msgid "Sunday"
3490
+ msgstr "Dimanche"
3491
+
3492
+ # @ backwpup
3493
+ #: inc/class-page-editjob.php:713 inc/class-page-editjob.php:820
3494
+ msgid "Monday"
3495
+ msgstr "Lundi"
3496
+
3497
+ # @ backwpup
3498
+ #: inc/class-page-editjob.php:714 inc/class-page-editjob.php:821
3499
+ msgid "Tuesday"
3500
+ msgstr "Mardi"
3501
+
3502
+ # @ backwpup
3503
+ #: inc/class-page-editjob.php:715 inc/class-page-editjob.php:822
3504
+ msgid "Wednesday"
3505
+ msgstr "Mercredi"
3506
+
3507
+ # @ backwpup
3508
+ #: inc/class-page-editjob.php:716 inc/class-page-editjob.php:823
3509
+ msgid "Thursday"
3510
+ msgstr "Jeudi"
3511
+
3512
+ # @ backwpup
3513
+ #: inc/class-page-editjob.php:717 inc/class-page-editjob.php:824
3514
+ msgid "Friday"
3515
+ msgstr "Vendredi"
3516
+
3517
+ # @ backwpup
3518
+ #: inc/class-page-editjob.php:718 inc/class-page-editjob.php:825
3519
+ msgid "Saturday"
3520
+ msgstr "Samedi"
3521
+
3522
+ # @ backwpup
3523
+ #: inc/class-page-editjob.php:728
3524
+ msgid "daily"
3525
+ msgstr "Quotidien"
3526
+
3527
+ # @ backwpup
3528
+ #: inc/class-page-editjob.php:738
3529
+ msgid "hourly"
3530
+ msgstr "Toutes les heures"
3531
+
3532
+ # @ backwpup
3533
+ #: inc/class-page-editjob.php:752
3534
+ msgid "Minutes:"
3535
+ msgstr "Minutes:"
3536
+
3537
+ # @ backwpup
3538
+ #: inc/class-page-editjob.php:754 inc/class-page-editjob.php:767
3539
+ #: inc/class-page-editjob.php:779 inc/class-page-editjob.php:793
3540
+ #: inc/class-page-editjob.php:815
3541
+ msgid "Any (*)"
3542
+ msgstr "Toutes (*)"
3543
+
3544
+ # @ backwpup
3545
+ #: inc/class-page-editjob.php:764
3546
+ msgid "Hours:"
3547
+ msgstr "Heures:"
3548
+
3549
+ # @ backwpup
3550
+ #: inc/class-page-editjob.php:777
3551
+ msgid "Day of Month:"
3552
+ msgstr "Jour dans le mois:"
3553
+
3554
+ # @ backwpup
3555
+ #: inc/class-page-editjob.php:791
3556
+ msgid "Month:"
3557
+ msgstr "Mois:"
3558
+
3559
+ # @ backwpup
3560
+ #: inc/class-page-editjob.php:797
3561
+ msgid "January"
3562
+ msgstr "Janvier"
3563
+
3564
+ # @ backwpup
3565
+ #: inc/class-page-editjob.php:798
3566
+ msgid "February"
3567
+ msgstr "Février"
3568
+
3569
+ # @ backwpup
3570
+ #: inc/class-page-editjob.php:799
3571
+ msgid "March"
3572
+ msgstr "Mars"
3573
+
3574
+ # @ backwpup
3575
+ #: inc/class-page-editjob.php:800
3576
+ msgid "April"
3577
+ msgstr "Avril"
3578
+
3579
+ # @ backwpup
3580
+ #: inc/class-page-editjob.php:801
3581
+ msgid "May"
3582
+ msgstr "Mai"
3583
+
3584
+ # @ backwpup
3585
+ #: inc/class-page-editjob.php:802
3586
+ msgid "June"
3587
+ msgstr "Juin"
3588
+
3589
+ # @ backwpup
3590
+ #: inc/class-page-editjob.php:803
3591
+ msgid "July"
3592
+ msgstr "Juillet"
3593
+
3594
+ #: inc/class-page-editjob.php:804
3595
+ msgid "August"
3596
+ msgstr "Aout"
3597
+
3598
+ # @ backwpup
3599
+ #: inc/class-page-editjob.php:805
3600
+ msgid "September"
3601
+ msgstr "Septembre"
3602
+
3603
+ # @ backwpup
3604
+ #: inc/class-page-editjob.php:806
3605
+ msgid "October"
3606
+ msgstr "Octobre"
3607
+
3608
+ # @ backwpup
3609
+ #: inc/class-page-editjob.php:807
3610
+ msgid "November"
3611
+ msgstr "Novembre"
3612
+
3613
+ # @ backwpup
3614
+ #: inc/class-page-editjob.php:808
3615
+ msgid "December"
3616
+ msgstr "Décembre"
3617
+
3618
+ # @ backwpup
3619
+ #: inc/class-page-editjob.php:813
3620
+ msgid "Day of Week:"
3621
+ msgstr "Jour de la semaine:"
3622
+
3623
+ # @ backwpup
3624
+ #: inc/class-page-editjob.php:849
3625
+ msgid "Save changes"
3626
+ msgstr "Sauvegarder les changements"
3627
+
3628
+ # @ backwpup
3629
+ #: inc/class-page-jobs.php:44
3630
+ msgid "No Jobs."
3631
+ msgstr "Aucune opération."
3632
+
3633
+ # @ backwpup
3634
+ #: inc/class-page-jobs.php:68
3635
+ msgid "ID"
3636
+ msgstr "ID"
3637
+
3638
+ # @ backwpup
3639
+ #: inc/class-page-jobs.php:71
3640
+ msgid "Destinations"
3641
+ msgstr "Destinations"
3642
+
3643
+ # @ backwpup
3644
+ #: inc/class-page-jobs.php:72
3645
+ msgid "Next Run"
3646
+ msgstr "Prochain exécution"
3647
+
3648
+ # @ backwpup
3649
+ #: inc/class-page-jobs.php:73
3650
+ msgid "Last Run"
3651
+ msgstr "Dernière exécution"
3652
+
3653
+ # @ default
3654
+ #: inc/class-page-jobs.php:128
3655
+ msgid "Edit"
3656
+ msgstr "Modifier"
3657
+
3658
+ # @ backwpup
3659
+ #: inc/class-page-jobs.php:129
3660
+ msgid "Copy"
3661
+ msgstr "Copier"
3662
+
3663
+ #: inc/class-page-jobs.php:181
3664
+ msgid "Not needed or set"
3665
+ msgstr "Pas nécessaire ou pas défini"
3666
+
3667
+ #: inc/class-page-jobs.php:189
3668
+ #, php-format
3669
+ msgid "Running for: %s seconds"
3670
+ msgstr "En cours depuis : %s secondes"
3671
+
3672
+ #: inc/class-page-jobs.php:195
3673
+ #, php-format
3674
+ msgid "Cron: %s"
3675
+ msgstr "Cron: %s"
3676
+
3677
+ #: inc/class-page-jobs.php:195
3678
+ #, php-format
3679
+ msgid "%1$s at %2$s by WP-Cron"
3680
+ msgstr "%1$s sur %2$s par WP-Cron"
3681
+
3682
+ # @ backwpup
3683
+ #: inc/class-page-jobs.php:200
3684
+ msgid "Inactive"
3685
+ msgstr "Inactive"
3686
+
3687
+ #: inc/class-page-jobs.php:212
3688
+ #, php-format
3689
+ msgid "Runtime: %d seconds"
3690
+ msgstr "Temps d'exécution : %d secondes"
3691
+
3692
+ #: inc/class-page-jobs.php:215
3693
+ msgid "not yet"
3694
+ msgstr "pas maintenant"
3695
+
3696
+ # @ backwpup
3697
+ #: inc/class-page-jobs.php:219
3698
+ msgid "Download last backup"
3699
+ msgstr "Télécharger la dernière sauvegarde"
3700
+
3701
+ # @ backwpup
3702
+ #: inc/class-page-jobs.php:224
3703
+ msgid "Log"
3704
+ msgstr "Fichier journal"
3705
+
3706
+ # @ backwpup
3707
+ #: inc/class-page-jobs.php:271
3708
+ msgid "Copy of"
3709
+ msgstr "Copie de"
3710
+
3711
+ #: inc/class-page-jobs.php:319
3712
+ #, php-format
3713
+ msgid ""
3714
+ "Temp folder %s not read or writable. Please set proper write permissions."
3715
+ msgstr ""
3716
+ "Le répertoire temporaire %s n'est pas consultable ou n'est pas accessible en "
3717
+ "écriture. Merci de mettre les bonnes autorisations."
3718
+
3719
+ #: inc/class-page-jobs.php:322
3720
+ #, php-format
3721
+ msgid ""
3722
+ "Temp folder %s does not exist and cannot be created. Please create it and "
3723
+ "set proper write permissions."
3724
+ msgstr ""
3725
+ "Le répertoire temporaire %s n'existe pas et ne peut pas être créé. Merci de "
3726
+ "le créer et de mettre les bonnes permissions."
3727
+
3728
+ #: inc/class-page-jobs.php:328
3729
+ #, php-format
3730
+ msgid ""
3731
+ "Logs folder %s is not read or writable. Please set proper write permissions."
3732
+ msgstr ""
3733
+ "Le répertoire des journaux %s n'est pas accessible en lecture ou en "
3734
+ "écriture. Merci de mettre les bonnes permissions."
3735
+
3736
+ #: inc/class-page-jobs.php:331
3737
+ #, php-format
3738
+ msgid ""
3739
+ "Logs folder %s does not exist and cannot be created. Please create it and "
3740
+ "set proper write permissions."
3741
+ msgstr ""
3742
+ "Le répertoire des jounaux %s n'existe pas et ne peut pas être créé. Merci de "
3743
+ "le créer et de mettre les bonnes permissions."
3744
+
3745
+ #: inc/class-page-jobs.php:339
3746
+ #, php-format
3747
+ msgid ""
3748
+ "Backups folder %s is not read or writable. Please set proper write "
3749
+ "permissions."
3750
+ msgstr ""
3751
+ "Le répertoire de sauvegarde %s n'est pas accessible en lecture ou en "
3752
+ "écriture. Merci de mettre les bonnes permissions."
3753
+
3754
+ #: inc/class-page-jobs.php:342
3755
+ #, php-format
3756
+ msgid ""
3757
+ "Backups folder %s does not exist and cannot be created. Please create it and "
3758
+ "set proper write permissions."
3759
+ msgstr ""
3760
+ "Le répertoire de sauvegarde %s n'existe pas et ne peut pas être créé. Merci "
3761
+ "de le créer et de mettre les bonnes permissions."
3762
+
3763
+ #: inc/class-page-jobs.php:353 inc/class-page-settings.php:376
3764
+ #, php-format
3765
+ msgid "The HTTP response test get a error \"%s\""
3766
+ msgstr "La réponse HTTP de test reçue est une erreur \"%s\""
3767
+
3768
+ #: inc/class-page-jobs.php:355 inc/class-page-settings.php:378
3769
+ #, php-format
3770
+ msgid "The HTTP response test get a false http status (%s)"
3771
+ msgstr "La réponse HTTP de test est un status http inconnu (%s)"
3772
+
3773
+ # @ backwpup
3774
+ #: inc/class-page-jobs.php:363
3775
+ #, php-format
3776
+ msgid "Job \"%s\" started."
3777
+ msgstr "Opération \"%s\" commencée."
3778
+
3779
+ # @ backwpup
3780
+ #: inc/class-page-jobs.php:391 inc/class-wp-cli.php:47
3781
+ msgid "Aborted by user!"
3782
+ msgstr "Arrêté par l'utilisateur!"
3783
+
3784
+ # @ backwpup
3785
+ #: inc/class-page-jobs.php:420 inc/class-wp-cli.php:77
3786
+ msgid "Job will be terminated."
3787
+ msgstr "L'opération va être interrompue."
3788
+
3789
+ # @ backwpup
3790
+ #: inc/class-page-jobs.php:460
3791
+ #, php-format
3792
+ msgid "%s Jobs"
3793
+ msgstr "%s Opérations"
3794
+
3795
+ #: inc/class-page-jobs.php:478
3796
+ #, php-format
3797
+ msgid "Job currently running: %s"
3798
+ msgstr "Opération actuellement en cours : %s"
3799
+
3800
+ # @ backwpup
3801
+ #: inc/class-page-jobs.php:479
3802
+ msgid "Warnings:"
3803
+ msgstr "Avertissements:"
3804
+
3805
+ # @ backwpup
3806
+ #: inc/class-page-jobs.php:480
3807
+ msgid "Errors:"
3808
+ msgstr "Erreurs:"
3809
+
3810
+ # @ backwpup
3811
+ #: inc/class-page-jobs.php:481
3812
+ msgid "Working job log"
3813
+ msgstr "Journal de l'opération en cours"
3814
+
3815
+ #: inc/class-page-jobs.php:481
3816
+ msgid "Display working log"
3817
+ msgstr "Afficher les journaux de travail"
3818
+
3819
+ #: inc/class-page-jobs.php:483
3820
+ msgid "Close working screen"
3821
+ msgstr "Fermer l'écran de travail"
3822
+
3823
+ #: inc/class-page-jobs.php:483
3824
+ msgid "close"
3825
+ msgstr "fermer"
3826
+
3827
+ # @ backwpup
3828
+ #: inc/class-page-jobs.php:612
3829
+ msgid "Job end"
3830
+ msgstr "Fin de l'opération"
3831
+
3832
+ # @ backwpup
3833
+ #: inc/class-page-jobs.php:613
3834
+ #, php-format
3835
+ msgid "Job completed in %s seconds."
3836
+ msgstr "Opération effectuée en %s secondes."
3837
+
3838
+ # @ backwpup
3839
+ #: inc/class-page-logs.php:91
3840
+ msgid "No Logs."
3841
+ msgstr "Aucun fichier journal!"
3842
+
3843
+ # @ backwpup
3844
+ #: inc/class-page-logs.php:116
3845
+ msgid "Backup/Log Date/Time"
3846
+ msgstr "Sauvegarde/Date des journaux/heure"
3847
+
3848
+ # @ backwpup
3849
+ #: inc/class-page-logs.php:117
3850
+ msgid "Status"
3851
+ msgstr "Statut"
3852
+
3853
+ # @ backwpup
3854
+ #: inc/class-page-logs.php:119
3855
+ msgid "Runtime"
3856
+ msgstr "Temps d'exécution"
3857
+
3858
+ # @ backwpup
3859
+ #: inc/class-page-logs.php:183
3860
+ msgid "View"
3861
+ msgstr "Voir"
3862
+
3863
+ # @ backwpup
3864
+ #: inc/class-page-logs.php:193
3865
+ #, php-format
3866
+ msgid "1 ERROR"
3867
+ msgid_plural "%d ERRORS"
3868
+ msgstr[0] "1 ERREUR"
3869
+ msgstr[1] "%d ERREURS"
3870
+
3871
+ # @ backwpup
3872
+ #: inc/class-page-logs.php:195
3873
+ #, php-format
3874
+ msgid "1 WARNING"
3875
+ msgid_plural "%d WARNINGS"
3876
+ msgstr[0] "1 AVERTISSEMENT"
3877
+ msgstr[1] "%d AVERTISSEMENTS"
3878
+
3879
+ # @ backwpup
3880
+ #: inc/class-page-logs.php:197
3881
+ msgid "O.K."
3882
+ msgstr "O.K."
3883
+
3884
+ #: inc/class-page-logs.php:206
3885
+ msgid "Log only"
3886
+ msgstr "Journaux seulement"
3887
+
3888
+ # @ backwpup
3889
+ #: inc/class-page-logs.php:336
3890
+ #, php-format
3891
+ msgid "%s Logs"
3892
+ msgstr "%s Fichiers journaux"
3893
+
3894
+ # @ backwpup
3895
+ #: inc/class-page-settings.php:55
3896
+ msgid "Settings reset to default"
3897
+ msgstr "Paramètres remis aux valeurs par défaut"
3898
+
3899
+ # @ backwpup
3900
+ #: inc/class-page-settings.php:89
3901
+ msgid "Settings saved"
3902
+ msgstr "Paramètres sauvegardés"
3903
+
3904
+ # @ backwpup
3905
+ #: inc/class-page-settings.php:101
3906
+ #, php-format
3907
+ msgid "%s Settings"
3908
+ msgstr "%s Paramètres"
3909
+
3910
+ #: inc/class-page-settings.php:103
3911
+ msgid "Network"
3912
+ msgstr "Réseau"
3913
+
3914
+ # @ backwpup
3915
+ #: inc/class-page-settings.php:103
3916
+ msgid "API Keys"
3917
+ msgstr "Clé API:"
3918
+
3919
+ # @ backwpup
3920
+ #: inc/class-page-settings.php:103
3921
+ msgid "Information"
3922
+ msgstr "Information"
3923
+
3924
+ # @ backwpup
3925
+ #: inc/class-page-settings.php:120
3926
+ msgid "Display Settings"
3927
+ msgstr "Paramètres"
3928
+
3929
+ # @ backwpup
3930
+ #: inc/class-page-settings.php:121
3931
+ msgid "Do you want to see BackWPup in the WordPress admin bar?"
3932
+ msgstr "Voir BackWPup dans la barre d'administration WordPress?"
3933
+
3934
+ # @ backwpup
3935
+ #: inc/class-page-settings.php:124
3936
+ msgid "Admin bar"
3937
+ msgstr "Barre d'administration"
3938
+
3939
+ # @ backwpup
3940
+ #: inc/class-page-settings.php:127
3941
+ msgid "Admin Bar"
3942
+ msgstr "Barre d'administration"
3943
+
3944
+ # @ backwpup
3945
+ #: inc/class-page-settings.php:132
3946
+ msgid "Show BackWPup links in admin bar."
3947
+ msgstr "Voir les liens BackWPup dans la barre d'administration."
3948
+
3949
+ # @ backwpup
3950
+ #: inc/class-page-settings.php:137 inc/class-page-settings.php:140
3951
+ msgid "Folder sizes"
3952
+ msgstr "Taille du répertoire"
3953
+
3954
+ #: inc/class-page-settings.php:145
3955
+ msgid ""
3956
+ "Display folder sizes on Files tab if job edited. (Might increase loading "
3957
+ "time of Files tab.)"
3958
+ msgstr ""
3959
+ "Afficher la taille du répertoire dans l'onglet fichier si l'opération est "
3960
+ "modifiée (Cela peut provoquer un affichage plus lent de l'onglet)"
3961
+
3962
+ #: inc/class-page-settings.php:150
3963
+ msgid "Security"
3964
+ msgstr "Sécurité"
3965
+
3966
+ #: inc/class-page-settings.php:151
3967
+ msgid "Security option for BackWPup"
3968
+ msgstr "Option de sécurité pour BackWPup"
3969
+
3970
+ #: inc/class-page-settings.php:154 inc/class-page-settings.php:157
3971
+ msgid "Protect folders"
3972
+ msgstr "Répertoires protégés"
3973
+
3974
+ #: inc/class-page-settings.php:162
3975
+ msgid ""
3976
+ "Protect BackWPup folders ( Temp, Log and Backups ) with <code>.htaccess</"
3977
+ "code> and <code>index.php</code>"
3978
+ msgstr ""
3979
+ "Protéger les répertoires de BackWPup (Temporaire, Journaux et Sauvegardes) "
3980
+ "avec <code>.htaccess</code> et <code>index.php</code>"
3981
+
3982
+ #: inc/class-page-settings.php:175
3983
+ msgid ""
3984
+ "Every time BackWPup runs a backup job a log file is being generated. Choose "
3985
+ "where to store your log files and how many of them."
3986
+ msgstr ""
3987
+ "Chaque fois que BackWPUp exécute une opération de sauvegarde, un fichier "
3988
+ "journal est créé. Choissiez où vos fichiers journaux sont stockés et combien "
3989
+ "vous désirez en garder."
3990
+
3991
+ # @ backwpup
3992
+ #: inc/class-page-settings.php:178
3993
+ msgid "Log file folder"
3994
+ msgstr "Répertoire des fichiers journaux"
3995
+
3996
+ # @ backwpup
3997
+ #: inc/class-page-settings.php:186
3998
+ msgid "Maximum number of log files in folder"
3999
+ msgstr "Nombre maximum de fichiers journaux dans le répertoire"
4000
+
4001
+ # @ backwpup
4002
+ #: inc/class-page-settings.php:191
4003
+ msgid "Oldest files will be deleted first."
4004
+ msgstr "Les plus vieux seront effacés en premier."
4005
+
4006
+ # @ backwpup
4007
+ #: inc/class-page-settings.php:195 inc/class-page-settings.php:198
4008
+ msgid "Compression"
4009
+ msgstr "Compression"
4010
+
4011
+ #: inc/class-page-settings.php:203
4012
+ msgid "Compress log files with GZip."
4013
+ msgstr "Compresser les fichiers journaux avec GZip."
4014
+
4015
+ #: inc/class-page-settings.php:212
4016
+ msgid "There are a couple of general options for backup jobs. Set them here."
4017
+ msgstr ""
4018
+ "Il y a un certain nombres d'option globale pour les opérations de "
4019
+ "sauvegarde. Définissez les ici."
4020
+
4021
+ # @ backwpup
4022
+ #: inc/class-page-settings.php:216
4023
+ msgid "Maximum number of retries for job steps"
4024
+ msgstr "Nombre d'essais maximum par étape d'opération"
4025
+
4026
+ #: inc/class-page-settings.php:224 inc/class-page-settings.php:227
4027
+ msgid "Restart on every main step"
4028
+ msgstr "Relancer sur toutes les étapes principales"
4029
+
4030
+ #: inc/class-page-settings.php:232
4031
+ msgid "Restart the job on every main step on a running job"
4032
+ msgstr ""
4033
+ "Relancer l'opération sur toutes les étapes principales de l'opération en "
4034
+ "cours"
4035
+
4036
+ #: inc/class-page-settings.php:233
4037
+ msgid ""
4038
+ "The job will be restarted on every main step to prevent running in an "
4039
+ "execution time out. This will not work on cli run. If "
4040
+ "<code>ALTERNATE_WP_CRON</code> has been defined, WordPress Cron will be used."
4041
+ msgstr ""
4042
+ "L'opération sera relancée sur toutes les étapes principales pour prévenir un "
4043
+ "temps d'exécution trop long. Cela ne fonctionera pas sur la ligne de "
4044
+ "commande ou si <code>ALTERNATE_WP_CRON</code> a été défini."
4045
+
4046
+ #: inc/class-page-settings.php:239 inc/class-page-settings.php:242
4047
+ msgid "Restart on archive creation"
4048
+ msgstr "Relancer sur la création de l'archive"
4049
+
4050
+ #: inc/class-page-settings.php:247
4051
+ msgid ""
4052
+ "MB. 0 = disabled. Restart the job once a given number of Megabytes has been "
4053
+ "added to an archive"
4054
+ msgstr ""
4055
+ "MB. 0 = inactif. Relance l'opération quand un certain nombre de méga-octects "
4056
+ "ont été ajouté à l'archive."
4057
+
4058
+ #: inc/class-page-settings.php:248
4059
+ msgid ""
4060
+ "The job will be restarted once a given number of Megabytes has been added to "
4061
+ "an archive to prevent running in an execution time out. This will not work "
4062
+ "on cli run. If <code>ALTERNATE_WP_CRON</code> has been defined, WordPress "
4063
+ "Cron will be used."
4064
+ msgstr ""
4065
+ "L'opération sera relancée quand un certain nombre de méga-octects auront été "
4066
+ "ajoutés à l'archive pour prévenir un temps d'exécution trop long. Cela ne "
4067
+ "fonctionera pas sur la ligne de commande ou si <code>ALTERNATE_WP_CRON</"
4068
+ "code> a été défini."
4069
+
4070
+ #: inc/class-page-settings.php:254 inc/class-page-settings.php:257
4071
+ msgid "Method for creating ZIP archive"
4072
+ msgstr "Méthode pour créer les archive ZIP"
4073
+
4074
+ #: inc/class-page-settings.php:261
4075
+ msgid "Auto"
4076
+ msgstr "Auto"
4077
+
4078
+ # @ backwpup
4079
+ #: inc/class-page-settings.php:262
4080
+ msgid "ZipArchive"
4081
+ msgstr "Archive ZIP"
4082
+
4083
+ #: inc/class-page-settings.php:263
4084
+ msgid "PclZip"
4085
+ msgstr "PclZip"
4086
+
4087
+ #: inc/class-page-settings.php:266
4088
+ msgid ""
4089
+ "Auto = Uses PHP class ZipArchive if available; otherwise uses PclZip.<br /"
4090
+ ">ZipArchive = Uses less memory, but many open files at a time.<br />PclZip = "
4091
+ "Uses more memory, but only 2 open files at a time."
4092
+ msgstr ""
4093
+ "Auto = Utilise la classe ZipArchive si elle est disponible, sinon utilise "
4094
+ "PclZip.<br />ZipArchive = Utilise moins de mémoire, mais beaucoup de "
4095
+ "fichiers ouverts à la fois.<br />PclZip = Utilise plus de mémoire, mais deux "
4096
+ "fichiers ouverts en même temps."
4097
+
4098
+ #: inc/class-page-settings.php:272
4099
+ msgid "Key to start jobs externally with an URL"
4100
+ msgstr "Clé pour lancer l'opération de manière externe avec une URL"
4101
+
4102
+ #: inc/class-page-settings.php:277
4103
+ msgid ""
4104
+ "empty = deactivated. Will be used to protect job starts from unauthorized "
4105
+ "persons."
4106
+ msgstr ""
4107
+ "vide = inactif. Cela servira pour empêcher le lancement d'une opération par "
4108
+ "une personne non autorsiée."
4109
+
4110
+ #: inc/class-page-settings.php:281
4111
+ msgid "No translation"
4112
+ msgstr "Pas de traduction"
4113
+
4114
+ #: inc/class-page-settings.php:284
4115
+ msgid "No Translation"
4116
+ msgstr "Pas de traduction"
4117
+
4118
+ #: inc/class-page-settings.php:289
4119
+ msgid "No translation for the job, the log will be written in English"
4120
+ msgstr ""
4121
+ "Pas de traduction pour l'opération, les journaux seront écris en Anglais"
4122
+
4123
+ #: inc/class-page-settings.php:295 inc/class-page-settings.php:298
4124
+ msgid "Reduce server load"
4125
+ msgstr "Réduire la charge du serveur"
4126
+
4127
+ #: inc/class-page-settings.php:302
4128
+ msgid "disabled"
4129
+ msgstr "inactif"
4130
+
4131
+ #: inc/class-page-settings.php:303
4132
+ msgid "minimum"
4133
+ msgstr "minimum"
4134
+
4135
+ #: inc/class-page-settings.php:304
4136
+ msgid "medium"
4137
+ msgstr "médium"
4138
+
4139
+ #: inc/class-page-settings.php:305
4140
+ msgid "maximum"
4141
+ msgstr "maximum"
4142
+
4143
+ #: inc/class-page-settings.php:308
4144
+ msgid ""
4145
+ "This adds short pauses to the process. Can be used to reduce the CPU load. "
4146
+ "Disabled = off, minimum = shortest sleep, maximum = longest sleep"
4147
+ msgstr ""
4148
+ "Cela ajoute une courte pause durant le traitement. A utiliser pour réduire "
4149
+ "la consommation CPU. Inactif = sans, minimum = petit délai, maximum = délai "
4150
+ "long"
4151
+
4152
+ # @ backwpup
4153
+ #: inc/class-page-settings.php:319
4154
+ msgid ""
4155
+ "Is your blog protected with HTTP basic authentication (.htaccess)? Then "
4156
+ "please set the username and password for authentication here."
4157
+ msgstr ""
4158
+ "Votre site se trouve-t'il derrière une authentification http basique (."
4159
+ "htaccess)? Si oui entrez le nom d'utilisateur et le mot de passe pour celle-"
4160
+ "ci."
4161
+
4162
+ # @ backwpup
4163
+ #: inc/class-page-settings.php:322
4164
+ msgid "Username:"
4165
+ msgstr "Nom d'utilisateur:"
4166
+
4167
+ # @ backwpup
4168
+ #: inc/class-page-settings.php:350 inc/class-page-settings.php:351
4169
+ msgid "Setting"
4170
+ msgstr "Paramètres"
4171
+
4172
+ #: inc/class-page-settings.php:350 inc/class-page-settings.php:351
4173
+ msgid "Value"
4174
+ msgstr "Valeur"
4175
+
4176
+ #: inc/class-page-settings.php:352
4177
+ msgid "WordPress version"
4178
+ msgstr "WordPress version"
4179
+
4180
+ # @ backwpup
4181
+ #: inc/class-page-settings.php:354
4182
+ msgid "BackWPup version"
4183
+ msgstr "BackWPup version"
4184
+
4185
+ #: inc/class-page-settings.php:354
4186
+ msgid "Get pro."
4187
+ msgstr "Obtenir la version pro."
4188
+
4189
+ # @ backwpup
4190
+ #: inc/class-page-settings.php:356
4191
+ msgid "BackWPup Pro version"
4192
+ msgstr "BackWPup Pro version"
4193
+
4194
+ #: inc/class-page-settings.php:357
4195
+ msgid "PHP version"
4196
+ msgstr "PHP version"
4197
+
4198
+ #: inc/class-page-settings.php:358
4199
+ msgid "MySQL version"
4200
+ msgstr "MySQL version"
4201
+
4202
+ #: inc/class-page-settings.php:361 inc/class-page-settings.php:365
4203
+ msgid "cURL version"
4204
+ msgstr "cURL version"
4205
+
4206
+ #: inc/class-page-settings.php:362
4207
+ msgid "cURL SSL version"
4208
+ msgstr "cURL SSL version"
4209
+
4210
+ #: inc/class-page-settings.php:365
4211
+ msgid "unavailable"
4212
+ msgstr "pas disponible"
4213
+
4214
+ #: inc/class-page-settings.php:373
4215
+ msgid "Server self connect:"
4216
+ msgstr "Connexion au serveur:"
4217
+
4218
+ #: inc/class-page-settings.php:380
4219
+ #, php-format
4220
+ msgid "The HTTP response gives back the false body \"%s\""
4221
+ msgstr "La réponse HTTP ne contient pas les bonnes informations \"%s\""
4222
+
4223
+ #: inc/class-page-settings.php:383
4224
+ msgid "Response Test O.K."
4225
+ msgstr "La réponse au test est positive."
4226
+
4227
+ # @ backwpup
4228
+ #: inc/class-page-settings.php:389
4229
+ msgid "Temp folder:"
4230
+ msgstr "Répertoire temporaire:"
4231
+
4232
+ # @ backwpup
4233
+ #: inc/class-page-settings.php:391
4234
+ #, php-format
4235
+ msgid "Temp folder %s not exist and can't created."
4236
+ msgstr "Le répertoire temporaire %s n'exsite pas et ne peut pas être créé."
4237
+
4238
+ # @ backwpup
4239
+ #: inc/class-page-settings.php:393
4240
+ #, php-format
4241
+ msgid "Temp folder %s not writable."
4242
+ msgstr "Le répertoire temporaire '%s' n'est pas inscriptible."
4243
+
4244
+ # @ backwpup
4245
+ #: inc/class-page-settings.php:399
4246
+ msgid "Logs folder:"
4247
+ msgstr "Répertoire des fichiers journaux:"
4248
+
4249
+ # @ backwpup
4250
+ #: inc/class-page-settings.php:401
4251
+ #, php-format
4252
+ msgid "Logs folder %s not exist and can't created."
4253
+ msgstr ""
4254
+ "Le répertoire des fichiers journaux %s n'existe pas et ne peut pas être créé."
4255
+
4256
+ # @ backwpup
4257
+ #: inc/class-page-settings.php:403
4258
+ #, php-format
4259
+ msgid "Logs folder %s not writable."
4260
+ msgstr "Répertoire des fichiers journaux %s non inscriptible."
4261
+
4262
+ #: inc/class-page-settings.php:407
4263
+ msgid "Server"
4264
+ msgstr "Serveur"
4265
+
4266
+ #: inc/class-page-settings.php:408
4267
+ msgid "Operating System"
4268
+ msgstr "Système d'exploitation"
4269
+
4270
+ #: inc/class-page-settings.php:409
4271
+ msgid "PHP SAPI"
4272
+ msgstr "PHP SAPI"
4273
+
4274
+ #: inc/class-page-settings.php:410
4275
+ msgid "Current PHP user"
4276
+ msgstr "Utilisateur PHP actuel"
4277
+
4278
+ #: inc/class-page-settings.php:411 inc/class-page-settings.php:415
4279
+ #: inc/class-page-settings.php:419
4280
+ msgid "On"
4281
+ msgstr "On"
4282
+
4283
+ #: inc/class-page-settings.php:411 inc/class-page-settings.php:417
4284
+ #: inc/class-page-settings.php:421
4285
+ msgid "Off"
4286
+ msgstr "Off"
4287
+
4288
+ #: inc/class-page-settings.php:412
4289
+ msgid "Safe Mode"
4290
+ msgstr "Safe Mode"
4291
+
4292
+ #: inc/class-page-settings.php:413
4293
+ msgid "Maximum execution time"
4294
+ msgstr "Temps maximum d'exécution"
4295
+
4296
+ #: inc/class-page-settings.php:415 inc/class-page-settings.php:417
4297
+ msgid "Alternative WP Cron"
4298
+ msgstr "WP Cron de remplacement"
4299
+
4300
+ #: inc/class-page-settings.php:419 inc/class-page-settings.php:421
4301
+ msgid "Disabled WP Cron"
4302
+ msgstr "WP Cron inactif"
4303
+
4304
+ #: inc/class-page-settings.php:423 inc/class-page-settings.php:425
4305
+ msgid "CHMOD Dir"
4306
+ msgstr "CHMOD Dir"
4307
+
4308
+ #: inc/class-page-settings.php:427
4309
+ msgid "Server Time"
4310
+ msgstr "Heure du serveur"
4311
+
4312
+ # @ backwpup
4313
+ #: inc/class-page-settings.php:428
4314
+ msgid "Blog Time"
4315
+ msgstr "Heure"
4316
+
4317
+ #: inc/class-page-settings.php:429
4318
+ msgid "Blog Timezone"
4319
+ msgstr "Timezone du blog"
4320
+
4321
+ #: inc/class-page-settings.php:430
4322
+ msgid "Blog Time offset"
4323
+ msgstr "Offset de temps du Blog"
4324
+
4325
+ #: inc/class-page-settings.php:430
4326
+ #, php-format
4327
+ msgid "%s hours"
4328
+ msgstr "%s heures"
4329
+
4330
+ #: inc/class-page-settings.php:431
4331
+ msgid "Blog language"
4332
+ msgstr "Langue du Blog"
4333
+
4334
+ #: inc/class-page-settings.php:432
4335
+ msgid "MySQL Client encoding"
4336
+ msgstr "Type d'encodage du client MySql"
4337
+
4338
+ #: inc/class-page-settings.php:433
4339
+ msgid "Blog charset"
4340
+ msgstr "Type de codage du blog"
4341
+
4342
+ #: inc/class-page-settings.php:434
4343
+ msgid "PHP Memory limit"
4344
+ msgstr "Limite mémoire de PHP"
4345
+
4346
+ #: inc/class-page-settings.php:435
4347
+ msgid "WP memory limit"
4348
+ msgstr "Limite mémoire de WP"
4349
+
4350
+ #: inc/class-page-settings.php:436
4351
+ msgid "WP Maximum memory limit"
4352
+ msgstr "Limite mémoire maximum de WP"
4353
+
4354
+ #: inc/class-page-settings.php:437
4355
+ msgid "Memory in use"
4356
+ msgstr "Mémoire utilisée"
4357
+
4358
+ #: inc/class-page-settings.php:442
4359
+ msgid "Disabled PHP Functions:"
4360
+ msgstr "Interdire les fonctions PHP:"
4361
+
4362
+ #: inc/class-page-settings.php:447
4363
+ msgid "Loaded PHP Extensions:"
4364
+ msgstr "Extension PHP chargées:"
4365
+
4366
+ # @ backwpup
4367
+ #: inc/class-page-settings.php:459
4368
+ msgid "Save Changes"
4369
+ msgstr "Sauvegarder les changements"
4370
+
4371
+ #: inc/class-page-settings.php:461
4372
+ msgid "Reset all settings to default"
4373
+ msgstr "Remettre toutes les valeurs des paramètres à leur valeur par défaut"
4374
+
4375
+ # @ backwpup
4376
+ #: inc/class-wp-cli.php:18
4377
+ msgid "A job is already running."
4378
+ msgstr "Une opération est déjà en cours."
4379
+
4380
+ #: inc/class-wp-cli.php:21
4381
+ msgid "No job ID specified!"
4382
+ msgstr "Pas d'identifiant d'opération fourni!"
4383
+
4384
+ # @ backwpup
4385
+ #: inc/class-wp-cli.php:25
4386
+ msgid "Job ID does not exist!"
4387
+ msgstr "L'identifiant de l'opération n'existe pas!"
4388
+
4389
+ #: inc/class-wp-cli.php:40
4390
+ msgid "Nothing to abort!"
4391
+ msgstr "Rien à abandonner!"
4392
+
4393
+ #: inc/class-wp-cli.php:89
4394
+ msgid "List of jobs"
4395
+ msgstr "Liste des opérations"
4396
+
4397
+ #: inc/class-wp-cli.php:92 inc/class-wp-cli.php:111
4398
+ #, php-format
4399
+ msgid "ID: %1$d Name: %2$s"
4400
+ msgstr "ID: %1$d Nom: %2$s"
4401
+
4402
+ #: inc/class-wp-cli.php:108
4403
+ msgid "No job running"
4404
+ msgstr "Pas d'opération en cours"
4405
+
4406
+ # @ backwpup
4407
+ #: inc/class-wp-cli.php:109
4408
+ msgid "Running job"
4409
+ msgstr "Opération en cours"
4410
+
4411
+ #: inc/class-wp-cli.php:112
4412
+ #, php-format
4413
+ msgid "Warnings: %1$d Errors: %2$d"
4414
+ msgstr "Avertissements: %1$d Ereurs: %2$d"
4415
+
4416
+ #: inc/class-wp-cli.php:113
4417
+ #, php-format
4418
+ msgid "Steps in percent: %1$d percent of step: %2$d"
4419
+ msgstr "Etapes en pourcentage : %1$d pourcent de l'étape : %2$d"
4420
+
4421
+ #: inc/class-wp-cli.php:114
4422
+ #, php-format
4423
+ msgid "On step: %s"
4424
+ msgstr "A l'étape : %s"
4425
+
4426
+ #: inc/class-wp-cli.php:115
4427
+ #, php-format
4428
+ msgid "Last message: %s"
4429
+ msgstr "Dernier message: %s"
4430
+
4431
+ #: sdk/OpenCloud/base.php:74
4432
+ msgid "URL method must be overridden in class definition"
4433
+ msgstr "URL method must be overridden in class definition"
4434
+
4435
+ #: sdk/OpenCloud/base.php:116
4436
+ #, php-format
4437
+ msgid "Unrecognized attribute [%s] for [%s]"
4438
+ msgstr "Unrecognized attribute [%s] for [%s]"
4439
+
4440
+ #: sdk/OpenCloud/base.php:160
4441
+ msgid "JSON error: The maximum stack depth has been exceeded"
4442
+ msgstr "JSON error: The maximum stack depth has been exceeded"
4443
+
4444
+ #: sdk/OpenCloud/base.php:164
4445
+ msgid "JSON error: Invalid or malformed JSON"
4446
+ msgstr "JSON error: Invalid or malformed JSON"
4447
+
4448
+ #: sdk/OpenCloud/base.php:168
4449
+ msgid "JSON error: Control character error, possibly incorrectly encoded"
4450
+ msgstr "JSON error: Control character error, possibly incorrectly encoded"
4451
+
4452
+ #: sdk/OpenCloud/base.php:172
4453
+ msgid "JSON error: Syntax error"
4454
+ msgstr "JSON error: Syntax error"
4455
+
4456
+ #: sdk/OpenCloud/base.php:176
4457
+ msgid "JSON error: Malformed UTF-8 characters, possibly incorrectly encoded"
4458
+ msgstr "JSON error: Malformed UTF-8 characters, possibly incorrectly encoded"
4459
+
4460
+ #: sdk/OpenCloud/base.php:180
4461
+ msgid "Unexpected JSON error"
4462
+ msgstr "Unexpected JSON error"
4463
+
4464
+ #: sdk/OpenCloud/collection.php:58
4465
+ msgid "Cannot create a Collection without an array"
4466
+ msgstr "Cannot create a Collection without an array"
4467
+
4468
+ #: sdk/OpenCloud/collection.php:178
4469
+ msgid "Callback function for Collection::Select() did not return boolean"
4470
+ msgstr "Callback function for Collection::Select() did not return boolean"
4471
+
4472
+ #: sdk/OpenCloud/compute.php:70
4473
+ msgid "initializing Compute..."
4474
+ msgstr "initializing Compute..."
4475
+
4476
+ #: sdk/OpenCloud/compute.php:83
4477
+ #, php-format
4478
+ msgid "Sorry; API version /v1 is not supported [%s]"
4479
+ msgstr "Sorry; API version /v1 is not supported [%s]"
4480
+
4481
+ #: sdk/OpenCloud/compute.php:138
4482
+ msgid "First argument for Compute::ServerList() must be boolean"
4483
+ msgstr "First argument for Compute::ServerList() must be boolean"
4484
+
4485
+ #: sdk/OpenCloud/compute.php:141
4486
+ msgid "Second argument for Compute::ServerList() must be array"
4487
+ msgstr "Second argument for Compute::ServerList() must be array"
4488
+
4489
+ #: sdk/OpenCloud/compute.php:208
4490
+ msgid "Invalid argument for Compute::ImageList(); boolean required"
4491
+ msgstr "Invalid argument for Compute::ImageList(); boolean required"
4492
+
4493
+ #: sdk/OpenCloud/container.php:44
4494
+ msgid "Initializing Container..."
4495
+ msgstr "Initializing Container..."
4496
+
4497
+ # @ backwpup
4498
+ #: sdk/OpenCloud/container.php:58
4499
+ #, php-format
4500
+ msgid "Getting container [%s]"
4501
+ msgstr "Getting container [%s]"
4502
+
4503
+ #: sdk/OpenCloud/container.php:72
4504
+ msgid "Container does not have an identifier"
4505
+ msgstr "Container does not have an identifier"
4506
+
4507
+ #: sdk/OpenCloud/container.php:105
4508
+ #, php-format
4509
+ msgid "Problem creating container [%s] status [%d] response [%s]"
4510
+ msgstr "Problem creating container [%s] status [%d] response [%s]"
4511
+
4512
+ #: sdk/OpenCloud/container.php:132
4513
+ #, php-format
4514
+ msgid "Problem updating container [%s] status [%d] response [%s]"
4515
+ msgstr "Problem updating container [%s] status [%d] response [%s]"
4516
+
4517
+ # @ backwpup
4518
+ #: sdk/OpenCloud/container.php:157 sdk/OpenCloud/container.php:244
4519
+ #, php-format
4520
+ msgid "Container [%s] not found"
4521
+ msgstr "Container [%s] not found"
4522
+
4523
+ #: sdk/OpenCloud/container.php:161
4524
+ #, php-format
4525
+ msgid "Container [%s] must be empty before deleting"
4526
+ msgstr "Container [%s] must be empty before deleting"
4527
+
4528
+ #: sdk/OpenCloud/container.php:166
4529
+ #, php-format
4530
+ msgid "Problem deleting container [%s] status [%d] response [%s]"
4531
+ msgstr "Problem deleting container [%s] status [%d] response [%s]"
4532
+
4533
+ #: sdk/OpenCloud/container.php:249
4534
+ #, php-format
4535
+ msgid "Error retrieving Container, status [%d] response [%s]"
4536
+ msgstr "Error retrieving Container, status [%d] response [%s]"
4537
+
4538
+ #: sdk/OpenCloud/container.php:268
4539
+ msgid "Container name cannot be blank"
4540
+ msgstr "Container name cannot be blank"
4541
+
4542
+ #: sdk/OpenCloud/container.php:271
4543
+ msgid "\"0\" is not a valid container name"
4544
+ msgstr "\"0\" is not a valid container name"
4545
+
4546
+ #: sdk/OpenCloud/container.php:274
4547
+ msgid "Container name cannot contain \"/\""
4548
+ msgstr "Container name cannot contain \"/\""
4549
+
4550
+ #: sdk/OpenCloud/container.php:277
4551
+ msgid "Container name is too long"
4552
+ msgstr "Container name is too long"
4553
+
4554
+ #: sdk/OpenCloud/container.php:307
4555
+ #, php-format
4556
+ msgid "TTL value [%s] must be an integer"
4557
+ msgstr "TTL value [%s] must be an integer"
4558
+
4559
+ #: sdk/OpenCloud/container.php:319
4560
+ #, php-format
4561
+ msgid "HTTP error publishing to CDN, status [%d] response [%s]"
4562
+ msgstr "HTTP error publishing to CDN, status [%d] response [%s]"
4563
+
4564
+ #: sdk/OpenCloud/container.php:358
4565
+ #, php-format
4566
+ msgid "HTTP error disabling CDN, status [%d] response [%s]"
4567
+ msgstr "HTTP error disabling CDN, status [%d] response [%s]"
4568
+
4569
+ #: sdk/OpenCloud/container.php:377
4570
+ #, php-format
4571
+ msgid "Error creating static website for [%s], status [%d] response [%s]"
4572
+ msgstr "Error creating static website for [%s], status [%d] response [%s]"
4573
+
4574
+ #: sdk/OpenCloud/container.php:398
4575
+ #, php-format
4576
+ msgid ""
4577
+ "Error creating static site error page for [%s], status [%d] response [%s]"
4578
+ msgstr ""
4579
+ "Error creating static site error page for [%s], status [%d] response [%s]"
4580
+
4581
+ #: sdk/OpenCloud/container.php:411
4582
+ msgid "CDN service is not available"
4583
+ msgstr "CDN service is not available"
4584
+
4585
+ #: sdk/OpenCloud/database.php:57
4586
+ msgid "Database parameter must be an object, array, or string"
4587
+ msgstr "Database parameter must be an object, array, or string"
4588
+
4589
+ #: sdk/OpenCloud/database.php:69
4590
+ msgid "The database does not have a Url yet"
4591
+ msgstr "The database does not have a Url yet"
4592
+
4593
+ #: sdk/OpenCloud/database.php:119
4594
+ #, php-format
4595
+ msgid "Error creating database [%s], status [%d] response [%s]"
4596
+ msgstr "Error creating database [%s], status [%d] response [%s]"
4597
+
4598
+ #: sdk/OpenCloud/database.php:135
4599
+ msgid "Updates are not currently permitted on Database objects"
4600
+ msgstr "Updates are not currently permitted on Database objects"
4601
+
4602
+ #: sdk/OpenCloud/database.php:148
4603
+ #, php-format
4604
+ msgid "Error deleting database [%s], status [%d] response [%s]"
4605
+ msgstr "Error deleting database [%s], status [%d] response [%s]"
4606
+
4607
+ # @ backwpup
4608
+ #: sdk/OpenCloud/database.php:168
4609
+ msgid "Database name is required"
4610
+ msgstr "Database name is required"
4611
+
4612
+ #: sdk/OpenCloud/dataobject.php:90
4613
+ msgid "Object has no name"
4614
+ msgstr "Object has no name"
4615
+
4616
+ #: sdk/OpenCloud/dataobject.php:117
4617
+ #, php-format
4618
+ msgid "Could not open file [%s] for reading"
4619
+ msgstr "Could not open file [%s] for reading"
4620
+
4621
+ #: sdk/OpenCloud/dataobject.php:164
4622
+ #, php-format
4623
+ msgid "Problem saving/updating object [%s] HTTP status [%s] response [%s]"
4624
+ msgstr "Problem saving/updating object [%s] HTTP status [%s] response [%s]"
4625
+
4626
+ #: sdk/OpenCloud/dataobject.php:225
4627
+ #, php-format
4628
+ msgid "Problem deleting object [%s] HTTP status [%s] response [%s]"
4629
+ msgstr "Problem deleting object [%s] HTTP status [%s] response [%s]"
4630
+
4631
+ #: sdk/OpenCloud/dataobject.php:256
4632
+ #, php-format
4633
+ msgid "Error copying object [%s], status [%d] response [%s]"
4634
+ msgstr "Error copying object [%s], status [%d] response [%s]"
4635
+
4636
+ #: sdk/OpenCloud/dataobject.php:300
4637
+ #, php-format
4638
+ msgid "Bad method [%s] for TempUrl; only GET or PUT supported"
4639
+ msgstr "Bad method [%s] for TempUrl; only GET or PUT supported"
4640
+
4641
+ #: sdk/OpenCloud/dataobject.php:370
4642
+ #, php-format
4643
+ msgid "Could not open file [%s] for writing"
4644
+ msgstr "Could not open file [%s] for writing"
4645
+
4646
+ #: sdk/OpenCloud/dataobject.php:413
4647
+ msgid "Container is not CDN-enabled"
4648
+ msgstr "Container is not CDN-enabled"
4649
+
4650
+ #: sdk/OpenCloud/dataobject.php:421
4651
+ #, php-format
4652
+ msgid "Error purging object, status [%d] response [%s]"
4653
+ msgstr "Error purging object, status [%d] response [%s]"
4654
+
4655
+ #: sdk/OpenCloud/dataobject.php:478
4656
+ msgid "Parameter [type] is deprecated; use \"content_type\""
4657
+ msgstr "Parameter [type] is deprecated; use \"content_type\""
4658
+
4659
+ #: sdk/OpenCloud/dataobject.php:485
4660
+ #, php-format
4661
+ msgid "Unrecognized parameter [%s] for object [%s]"
4662
+ msgstr "Unrecognized parameter [%s] for object [%s]"
4663
+
4664
+ #: sdk/OpenCloud/dataobject.php:500
4665
+ msgid "Cannot retrieve an unnamed object"
4666
+ msgstr "Cannot retrieve an unnamed object"
4667
+
4668
+ #: sdk/OpenCloud/dataobject.php:509
4669
+ #, php-format
4670
+ msgid "Problem retrieving object [%s]"
4671
+ msgstr "Problem retrieving object [%s]"
4672
+
4673
+ #: sdk/OpenCloud/dataobject.php:603
4674
+ msgid "Required Content-Type not set"
4675
+ msgstr "Required Content-Type not set"
4676
+
4677
+ #: sdk/OpenCloud/dns.php:33
4678
+ msgid "initializing DNS..."
4679
+ msgstr "initializing DNS..."
4680
+
4681
+ #: sdk/OpenCloud/dns.php:149
4682
+ #, php-format
4683
+ msgid ""
4684
+ "Unexpected HTTP status for async request: URL [%s] method [%s] status [%s] "
4685
+ "response [%s]"
4686
+ msgstr ""
4687
+ "Unexpected HTTP status for async request: URL [%s] method [%s] status [%s] "
4688
+ "response [%s]"
4689
+
4690
+ #: sdk/OpenCloud/dns.php:235
4691
+ #, php-format
4692
+ msgid "Unexpected status [%s] for URL [%s], body [%s]"
4693
+ msgstr "Unexpected status [%s] for URL [%s], body [%s]"
4694
+
4695
+ #: sdk/OpenCloud/dns.php:242
4696
+ #, php-format
4697
+ msgid "Limit Types JSON [%s]"
4698
+ msgstr "Limit Types JSON [%s]"
4699
+
4700
+ # @ backwpup
4701
+ #: sdk/OpenCloud/dnsobject.php:75
4702
+ msgid "Missing [_create_keys]"
4703
+ msgstr "Missing [_create_keys]"
4704
+
4705
+ # @ backwpup
4706
+ #: sdk/OpenCloud/dnsobject.php:89
4707
+ msgid "Missing [_update_keys]"
4708
+ msgstr "Missing [_update_keys]"
4709
+
4710
+ #: sdk/OpenCloud/http.php:68
4711
+ #, php-format
4712
+ msgid "Setting option %s=%s"
4713
+ msgstr "Setting option %s=%s"
4714
+
4715
+ #: sdk/OpenCloud/http.php:75
4716
+ #, php-format
4717
+ msgid "WARNING: RAXSDK_SSL_VERIFYHOST has reduced security, value [%d]\n"
4718
+ msgstr "WARNING: RAXSDK_SSL_VERIFYHOST has reduced security, value [%d]\n"
4719
+
4720
+ #: sdk/OpenCloud/http.php:171
4721
+ msgid "Value passed to CurlRequest::setheaders() must be array"
4722
+ msgstr "Value passed to CurlRequest::setheaders() must be array"
4723
+
4724
+ #: sdk/OpenCloud/http.php:211
4725
+ #, php-format
4726
+ msgid "Curl error [%d]; retrying [%s]"
4727
+ msgstr "Curl error [%d]; retrying [%s]"
4728
+
4729
+ #: sdk/OpenCloud/http.php:219
4730
+ #, php-format
4731
+ msgid "No more retries available, last error [%d]"
4732
+ msgstr "No more retries available, last error [%d]"
4733
+
4734
+ #: sdk/OpenCloud/http.php:228
4735
+ #, php-format
4736
+ msgid "Malformed URL [%s]"
4737
+ msgstr "Malformed URL [%s]"
4738
+
4739
+ #: sdk/OpenCloud/http.php:232
4740
+ msgid "Operation timed out; check RAXSDK_TIMEOUT value"
4741
+ msgstr "Operation timed out; check RAXSDK_TIMEOUT value"
4742
+
4743
+ #: sdk/OpenCloud/http.php:237
4744
+ #, php-format
4745
+ msgid "HTTP error on [%s], curl code [%d] message [%s]"
4746
+ msgstr "HTTP error on [%s], curl code [%d] message [%s]"
4747
+
4748
+ #: sdk/OpenCloud/instance.php:71
4749
+ msgid "Updates are not currently supported by Cloud Databases"
4750
+ msgstr "Updates are not currently supported by Cloud Databases"
4751
+
4752
+ #: sdk/OpenCloud/instance.php:119 sdk/OpenCloud/instance.php:145
4753
+ #, php-format
4754
+ msgid "Error enabling root user for instance [%s], status [%d] response [%s]"
4755
+ msgstr "Error enabling root user for instance [%s], status [%d] response [%s]"
4756
+
4757
+ #: sdk/OpenCloud/instance.php:193
4758
+ #, php-format
4759
+ msgid "Error listing databases for instance [%s], status [%d] response [%s]"
4760
+ msgstr "Error listing databases for instance [%s], status [%d] response [%s]"
4761
+
4762
+ #: sdk/OpenCloud/instance.php:221
4763
+ #, php-format
4764
+ msgid "Error listing users for instance [%s], status [%d] response [%s]"
4765
+ msgstr "Error listing users for instance [%s], status [%d] response [%s]"
4766
+
4767
+ #: sdk/OpenCloud/instance.php:251
4768
+ msgid "a flavor must be specified"
4769
+ msgstr "a flavor must be specified"
4770
+
4771
+ #: sdk/OpenCloud/instance.php:254
4772
+ msgid "the [flavor] attribute must be a Flavor object"
4773
+ msgstr "the [flavor] attribute must be a Flavor object"
4774
+
4775
+ #: sdk/OpenCloud/instance.php:260
4776
+ msgid "Instance name is required"
4777
+ msgstr "Instance name is required"
4778
+
4779
+ #: sdk/OpenCloud/lbresources.php:120
4780
+ #, php-format
4781
+ msgid "%s-%s"
4782
+ msgstr "%s-%s"
4783
+
4784
+ #: sdk/OpenCloud/loadbalancer.php:102
4785
+ #, php-format
4786
+ msgid "Value [%s] for Node::condition is not valid"
4787
+ msgstr "Value [%s] for Node::condition is not valid"
4788
+
4789
+ #: sdk/OpenCloud/loadbalancer.php:112
4790
+ #, php-format
4791
+ msgid "Value [%s] for Node::type is not valid"
4792
+ msgstr "Value [%s] for Node::type is not valid"
4793
+
4794
+ #: sdk/OpenCloud/loadbalancer.php:120
4795
+ #, php-format
4796
+ msgid "Value [%s] for Node::weight must be integer"
4797
+ msgstr "Value [%s] for Node::weight must be integer"
4798
+
4799
+ #: sdk/OpenCloud/loadbalancer.php:138
4800
+ msgid "Cannot add nodes; no nodes are defined"
4801
+ msgstr "Cannot add nodes; no nodes are defined"
4802
+
4803
+ #: sdk/OpenCloud/loadbalancer.php:184
4804
+ #, php-format
4805
+ msgid "Value [%s] for ipVersion is not valid"
4806
+ msgstr "Value [%s] for ipVersion is not valid"
4807
+
4808
+ #: sdk/OpenCloud/metadata.php:69
4809
+ #, php-format
4810
+ msgid "Setting [%s] to [%s]"
4811
+ msgstr "Setting [%s] to [%s]"
4812
+
4813
+ #: sdk/OpenCloud/network.php:69
4814
+ msgid "Isolated networks cannot be updated"
4815
+ msgstr "Isolated networks cannot be updated"
4816
+
4817
+ #: sdk/OpenCloud/network.php:83
4818
+ msgid "Network may not be deleted"
4819
+ msgstr "Network may not be deleted"
4820
+
4821
+ #: sdk/OpenCloud/nova.php:49
4822
+ msgid "initializing Nova..."
4823
+ msgstr "initializing Nova..."
4824
+
4825
+ #: sdk/OpenCloud/objectstore.php:118
4826
+ msgid "initializing ObjectStore..."
4827
+ msgstr "initializing ObjectStore..."
4828
+
4829
+ #: sdk/OpenCloud/objectstore.php:158
4830
+ #, php-format
4831
+ msgid "Error in request, status [%d] for URL [%s] [%s]"
4832
+ msgstr "Error in request, status [%d] for URL [%s] [%s]"
4833
+
4834
+ #: sdk/OpenCloud/objectstore.php:219
4835
+ msgid "Invalid method call; no CDN() on the CDN object"
4836
+ msgstr "Invalid method call; no CDN() on the CDN object"
4837
+
4838
+ #: sdk/OpenCloud/objstorebase.php:94
4839
+ #, php-format
4840
+ msgid "name attribute does not exist for [%s]"
4841
+ msgstr "name attribute does not exist for [%s]"
4842
+
4843
+ #: sdk/OpenCloud/objstorebase.php:134
4844
+ #, php-format
4845
+ msgid "Unrecognized metadata type [%s]"
4846
+ msgstr "Unrecognized metadata type [%s]"
4847
+
4848
+ #: sdk/OpenCloud/openstack.php:160
4849
+ msgid "initializing"
4850
+ msgstr "initializing"
4851
+
4852
+ #: sdk/OpenCloud/openstack.php:164
4853
+ msgid "[secret] must be an array"
4854
+ msgstr "[secret] must be an array"
4855
+
4856
+ #: sdk/OpenCloud/openstack.php:168
4857
+ msgid "[options] must be an array"
4858
+ msgstr "[options] must be an array"
4859
+
4860
+ #: sdk/OpenCloud/openstack.php:280
4861
+ msgid "Unrecognized credential secret"
4862
+ msgstr "Unrecognized credential secret"
4863
+
4864
+ #: sdk/OpenCloud/openstack.php:303
4865
+ #, php-format
4866
+ msgid "Authentication failure, status [%d], response [%s]"
4867
+ msgstr "Authentication failure, status [%d], response [%s]"
4868
+
4869
+ #: sdk/OpenCloud/openstack.php:348
4870
+ #, php-format
4871
+ msgid "Resource [%s] method [%s] body [%s]"
4872
+ msgstr "Resource [%s] method [%s] body [%s]"
4873
+
4874
+ #: sdk/OpenCloud/openstack.php:355
4875
+ #, php-format
4876
+ msgid "Headers: [%s]"
4877
+ msgstr "Headers: [%s]"
4878
+
4879
+ #: sdk/OpenCloud/openstack.php:379
4880
+ msgid "The Content-Length: header must be specified for file uploads"
4881
+ msgstr "The Content-Length: header must be specified for file uploads"
4882
+
4883
+ #: sdk/OpenCloud/openstack.php:396
4884
+ msgid "Unrecognized data type for PUT/POST body, must be string or resource"
4885
+ msgstr "Unrecognized data type for PUT/POST body, must be string or resource"
4886
+
4887
+ #: sdk/OpenCloud/openstack.php:422
4888
+ #, php-format
4889
+ msgid ""
4890
+ "Over limit; next available request [%s][%s] is not for [%d] seconds at [%s]"
4891
+ msgstr ""
4892
+ "Over limit; next available request [%s][%s] is not for [%d] seconds at [%s]"
4893
+
4894
+ #: sdk/OpenCloud/openstack.php:438
4895
+ #, php-format
4896
+ msgid "401 Unauthorized for [%s] [%s]"
4897
+ msgstr "401 Unauthorized for [%s] [%s]"
4898
+
4899
+ #: sdk/OpenCloud/openstack.php:443
4900
+ #, php-format
4901
+ msgid "403 Forbidden for [%s] [%s]"
4902
+ msgstr "403 Forbidden for [%s] [%s]"
4903
+
4904
+ #: sdk/OpenCloud/openstack.php:448
4905
+ #, php-format
4906
+ msgid "413 Over limit for [%s] [%s]"
4907
+ msgstr "413 Over limit for [%s] [%s]"
4908
+
4909
+ #: sdk/OpenCloud/openstack.php:459
4910
+ #, php-format
4911
+ msgid "HTTP STATUS [%s]"
4912
+ msgstr "HTTP STATUS [%s]"
4913
+
4914
+ #: sdk/OpenCloud/openstack.php:498
4915
+ #, php-format
4916
+ msgid "Service [%s] is not recognized"
4917
+ msgstr "Service [%s] is not recognized"
4918
+
4919
+ #: sdk/OpenCloud/openstack.php:601
4920
+ #, php-format
4921
+ msgid "Cannot find file descriptor for URL [%s]"
4922
+ msgstr "Cannot find file descriptor for URL [%s]"
4923
+
4924
+ #: sdk/OpenCloud/openstack.php:639
4925
+ msgid "ImportCredentials() requires an array"
4926
+ msgstr "ImportCredentials() requires an array"
4927
+
4928
+ #: sdk/OpenCloud/openstack.php:721 sdk/OpenCloud/openstack.php:723
4929
+ #: sdk/OpenCloud/openstack.php:725
4930
+ msgid "No value for "
4931
+ msgstr "No value for "
4932
+
4933
+ #: sdk/OpenCloud/persistentobject.php:98
4934
+ #, php-format
4935
+ msgid "Argument for [%s] must be string or object"
4936
+ msgstr "Argument for [%s] must be string or object"
4937
+
4938
+ #: sdk/OpenCloud/persistentobject.php:136
4939
+ #, php-format
4940
+ msgid "Error creating [%s] [%s], status [%d] response [%s]"
4941
+ msgstr "Error creating [%s] [%s], status [%d] response [%s]"
4942
+
4943
+ #: sdk/OpenCloud/persistentobject.php:189
4944
+ #, php-format
4945
+ msgid "Error updating [%s] with [%s], status [%d] response [%s]"
4946
+ msgstr "Error updating [%s] with [%s], status [%d] response [%s]"
4947
+
4948
+ #: sdk/OpenCloud/persistentobject.php:214
4949
+ #, php-format
4950
+ msgid "Error deleting [%s] [%s], status [%d] response [%s]"
4951
+ msgstr "Error deleting [%s] [%s], status [%d] response [%s]"
4952
+
4953
+ #: sdk/OpenCloud/persistentobject.php:262
4954
+ #, php-format
4955
+ msgid "%s does not have a URL yet"
4956
+ msgstr "%s does not have a URL yet"
4957
+
4958
+ #: sdk/OpenCloud/persistentobject.php:356
4959
+ #, php-format
4960
+ msgid "%s has no ID; cannot be refreshed"
4961
+ msgstr "%s has no ID; cannot be refreshed"
4962
+
4963
+ #: sdk/OpenCloud/persistentobject.php:359
4964
+ #, php-format
4965
+ msgid "%s id [%s]"
4966
+ msgstr "%s id [%s]"
4967
+
4968
+ #: sdk/OpenCloud/persistentobject.php:372
4969
+ #, php-format
4970
+ msgid "%s [%s] not found [%s]"
4971
+ msgstr "%s [%s] not found [%s]"
4972
+
4973
+ #: sdk/OpenCloud/persistentobject.php:377
4974
+ #, php-format
4975
+ msgid "Unexpected %s error [%d] [%s]"
4976
+ msgstr "Unexpected %s error [%d] [%s]"
4977
+
4978
+ #: sdk/OpenCloud/persistentobject.php:385
4979
+ #, php-format
4980
+ msgid "%s::Refresh() unexpected empty response, URL [%s]"
4981
+ msgstr "%s::Refresh() unexpected empty response, URL [%s]"
4982
+
4983
+ #: sdk/OpenCloud/persistentobject.php:395
4984
+ #, php-format
4985
+ msgid "JSON parse error on %s refresh"
4986
+ msgstr "JSON parse error on %s refresh"
4987
+
4988
+ #: sdk/OpenCloud/persistentobject.php:425
4989
+ #, php-format
4990
+ msgid "Name attribute does not exist for [%s]"
4991
+ msgstr "Name attribute does not exist for [%s]"
4992
+
4993
+ #: sdk/OpenCloud/persistentobject.php:465
4994
+ #, php-format
4995
+ msgid "Extension [%s] is not installed"
4996
+ msgstr "Extension [%s] is not installed"
4997
+
4998
+ #: sdk/OpenCloud/persistentobject.php:500
4999
+ #, php-format
5000
+ msgid "%s is not defined"
5001
+ msgstr "%s is not defined"
5002
+
5003
+ #: sdk/OpenCloud/persistentobject.php:505
5004
+ #, php-format
5005
+ msgid "%s::Action() requires an object as its parameter"
5006
+ msgstr "%s::Action() requires an object as its parameter"
5007
+
5008
+ #: sdk/OpenCloud/persistentobject.php:515
5009
+ #, php-format
5010
+ msgid "%s::Action [%s]"
5011
+ msgstr "%s::Action [%s]"
5012
+
5013
+ #: sdk/OpenCloud/persistentobject.php:529
5014
+ #, php-format
5015
+ msgid "Invalid response for %s::Action() request"
5016
+ msgstr "Invalid response for %s::Action() request"
5017
+
5018
+ #: sdk/OpenCloud/persistentobject.php:536
5019
+ #, php-format
5020
+ msgid "%s::Action() [%s] failed; response [%s]"
5021
+ msgstr "%s::Action() [%s] failed; response [%s]"
5022
+
5023
+ #: sdk/OpenCloud/persistentobject.php:598
5024
+ #, php-format
5025
+ msgid "No JSON object defined for class [%s] in JsonName()"
5026
+ msgstr "No JSON object defined for class [%s] in JsonName()"
5027
+
5028
+ #: sdk/OpenCloud/persistentobject.php:651
5029
+ #, php-format
5030
+ msgid "No URL resource defined for class [%s] in ResourceName()"
5031
+ msgstr "No URL resource defined for class [%s] in ResourceName()"
5032
+
5033
+ #: sdk/OpenCloud/persistentobject.php:664
5034
+ #, php-format
5035
+ msgid "[%s] CreateJson() must be overridden"
5036
+ msgstr "[%s] CreateJson() must be overridden"
5037
+
5038
+ #: sdk/OpenCloud/persistentobject.php:677
5039
+ #, php-format
5040
+ msgid "[%s] UpdateJson() must be overridden"
5041
+ msgstr "[%s] UpdateJson() must be overridden"
5042
+
5043
+ #: sdk/OpenCloud/persistentobject.php:688
5044
+ #, php-format
5045
+ msgid "[%s] does not support Create()"
5046
+ msgstr "[%s] does not support Create()"
5047
+
5048
+ #: sdk/OpenCloud/persistentobject.php:698
5049
+ #, php-format
5050
+ msgid "[%s] does not support Delete()"
5051
+ msgstr "[%s] does not support Delete()"
5052
+
5053
+ #: sdk/OpenCloud/persistentobject.php:708
5054
+ #, php-format
5055
+ msgid "[%s] does not support Update()"
5056
+ msgstr "[%s] does not support Update()"
5057
+
5058
+ #: sdk/OpenCloud/ptrrecord.php:43
5059
+ #, php-format
5060
+ msgid "Invalid record type [%s], must be PTR"
5061
+ msgstr "Invalid record type [%s], must be PTR"
5062
+
5063
+ #: sdk/OpenCloud/server.php:105
5064
+ msgid "Invalid IP address type; must be 4 or 6"
5065
+ msgstr "Invalid IP address type; must be 4 or 6"
5066
+
5067
+ #: sdk/OpenCloud/server.php:132
5068
+ #, php-format
5069
+ msgid "Server::Create() [%s]"
5070
+ msgstr "Server::Create() [%s]"
5071
+
5072
+ #: sdk/OpenCloud/server.php:142
5073
+ #, php-format
5074
+ msgid "Invalid response for Server::%s() request"
5075
+ msgstr "Invalid response for Server::%s() request"
5076
+
5077
+ #: sdk/OpenCloud/server.php:147
5078
+ #, php-format
5079
+ msgid "Problem creating server with [%s], status [%d] response [%s]"
5080
+ msgstr "Problem creating server with [%s], status [%d] response [%s]"
5081
+
5082
+ #: sdk/OpenCloud/server.php:153
5083
+ msgid "Unexpected error in Server::Create()"
5084
+ msgstr "Unexpected error in Server::Create()"
5085
+
5086
+ #: sdk/OpenCloud/server.php:208
5087
+ msgid "Image name is required to create an image"
5088
+ msgstr "Image name is required to create an image"
5089
+
5090
+ #: sdk/OpenCloud/server.php:289
5091
+ msgid "Server has no ID; cannot Rescue()"
5092
+ msgstr "Server has no ID; cannot Rescue()"
5093
+
5094
+ #: sdk/OpenCloud/server.php:298
5095
+ #, php-format
5096
+ msgid "Rescue() method failed unexpectedly, status [%s] response [%s]"
5097
+ msgstr "Rescue() method failed unexpectedly, status [%s] response [%s]"
5098
+
5099
+ #: sdk/OpenCloud/server.php:318
5100
+ msgid "Server has no ID; cannot Unescue()"
5101
+ msgstr "Server has no ID; cannot Unescue()"
5102
+
5103
+ #: sdk/OpenCloud/server.php:362
5104
+ #, php-format
5105
+ msgid "Error in Server::ips(), status [%d], response [%s]"
5106
+ msgstr "Error in Server::ips(), status [%d], response [%s]"
5107
+
5108
+ #: sdk/OpenCloud/server.php:476
5109
+ #, php-format
5110
+ msgid ""
5111
+ "\"networks\" parameter must be an array of Compute\\Network objects; [%s] "
5112
+ "found"
5113
+ msgstr ""
5114
+ "\"networks\" parameter must be an array of Compute\\Network objects; [%s] "
5115
+ "found"
5116
+
5117
+ #: sdk/OpenCloud/servermetadata.php:56
5118
+ #, php-format
5119
+ msgid "Unable to retrieve metadata [%s], response [%s]"
5120
+ msgstr "Unable to retrieve metadata [%s], response [%s]"
5121
+
5122
+ #: sdk/OpenCloud/servermetadata.php:59
5123
+ #, php-format
5124
+ msgid "Metadata for [%s] is [%s]"
5125
+ msgstr "Metadata for [%s] is [%s]"
5126
+
5127
+ #: sdk/OpenCloud/servermetadata.php:79
5128
+ msgid "Metadata has no URL (new object)"
5129
+ msgstr "Metadata has no URL (new object)"
5130
+
5131
+ #: sdk/OpenCloud/servermetadata.php:108
5132
+ #, php-format
5133
+ msgid "Error setting metadata on [%s], response [%s]"
5134
+ msgstr "Error setting metadata on [%s], response [%s]"
5135
+
5136
+ #: sdk/OpenCloud/servermetadata.php:131
5137
+ #, php-format
5138
+ msgid "Error updating metadata on [%s], response [%s]"
5139
+ msgstr "Error updating metadata on [%s], response [%s]"
5140
+
5141
+ #: sdk/OpenCloud/servermetadata.php:153
5142
+ #, php-format
5143
+ msgid "Error deleting metadata on [%s], response [%s]"
5144
+ msgstr "Error deleting metadata on [%s], response [%s]"
5145
+
5146
+ #: sdk/OpenCloud/servermetadata.php:180
5147
+ #, php-format
5148
+ msgid "You cannot set extra values on [%s]"
5149
+ msgstr "You cannot set extra values on [%s]"
5150
+
5151
+ #: sdk/OpenCloud/servermetadata.php:211
5152
+ msgid "Unable to encode JSON for metadata"
5153
+ msgstr "Unable to encode JSON for metadata"
5154
+
5155
+ #: sdk/OpenCloud/service.php:165
5156
+ #, php-format
5157
+ msgid "Unable to retrieve [%s] list from [%s], status [%d] response [%s]"
5158
+ msgstr "Unable to retrieve [%s] list from [%s], status [%d] response [%s]"
5159
+
5160
+ #: sdk/OpenCloud/service.php:190
5161
+ msgid "unexpected [links] found with no [href]"
5162
+ msgstr "unexpected [links] found with no [href]"
5163
+
5164
+ #: sdk/OpenCloud/service.php:307
5165
+ #, php-format
5166
+ msgid ""
5167
+ "No endpoints for service type [%s], name [%s], region [%s] and urlType [%s]"
5168
+ msgstr ""
5169
+ "No endpoints for service type [%s], name [%s], region [%s] and urlType [%s]"
5170
+
5171
+ #: sdk/OpenCloud/service.php:347
5172
+ #, php-format
5173
+ msgid "Error accessing [%s] - status [%d], response [%s]"
5174
+ msgstr "Error accessing [%s] - status [%d], response [%s]"
5175
+
5176
+ #: sdk/OpenCloud/snapshot.php:53 sdk/OpenCloud/volumetype.php:52
5177
+ msgid "VolumeType cannot be updated"
5178
+ msgstr "VolumeType cannot be updated"
5179
+
5180
+ #: sdk/OpenCloud/user.php:67
5181
+ msgid "User parameter must be an object, array, or string"
5182
+ msgstr "User parameter must be an object, array, or string"
5183
+
5184
+ #: sdk/OpenCloud/user.php:79
5185
+ msgid "The user does not have a Url yet"
5186
+ msgstr "The user does not have a Url yet"
5187
+
5188
+ # @ backwpup
5189
+ #: sdk/OpenCloud/user.php:127
5190
+ msgid "Cannot create a database user without a name"
5191
+ msgstr "Cannot create a database user without a name"
5192
+
5193
+ #: sdk/OpenCloud/user.php:141
5194
+ #, php-format
5195
+ msgid "Error creating user [%s], status [%d] response [%s]"
5196
+ msgstr "Error creating user [%s], status [%d] response [%s]"
5197
+
5198
+ #: sdk/OpenCloud/user.php:156
5199
+ msgid "You cannot update a database user at this time"
5200
+ msgstr "You cannot update a database user at this time"
5201
+
5202
+ #: sdk/OpenCloud/user.php:175
5203
+ #, php-format
5204
+ msgid "Error deleting user [%s], status [%d] response [%s]"
5205
+ msgstr "Error deleting user [%s], status [%d] response [%s]"
5206
+
5207
+ #: sdk/OpenCloud/volume.php:60
5208
+ msgid "Block storage volumes cannot be updated"
5209
+ msgstr "Block storage volumes cannot be updated"
5210
+
5211
+ #: sdk/OpenCloud/volumeattachment.php:61
5212
+ msgid "Updates are not permitted"
5213
+ msgstr "Updates are not permitted"
5214
+
5215
+ # @ backwpup
5216
+ #: sdk/OpenCloud/volumetype.php:42
5217
+ msgid "VolumeType cannot be created"
5218
+ msgstr "VolumeType cannot be created"
5219
+
5220
+ #: sdk/OpenCloud/volumetype.php:62
5221
+ msgid "VolumeType cannot be deleted"
5222
+ msgstr "VolumeType cannot be deleted"
languages/backwpup-nl_NL.mo DELETED
Binary file
languages/backwpup-nl_NL.po DELETED
@@ -1,3305 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: BackWPup 3.0-Dev\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/backwpup\n"
5
- "POT-Creation-Date: 2012-01-19 09:12:05+00:00\n"
6
- "PO-Revision-Date: 2012-02-14 12:11+0100\n"
7
- "Last-Translator: Alfred van Hoorn <email@alfredvanhoorn.nl>\n"
8
- "Language-Team: Alfred van Hoorn\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Dutch\n"
14
- "X-Poedit-Country: NETHERLANDS\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: inc/class-page-backups.php:370
23
- #@ backwpup
24
- msgid "BackWPup Manage Backups"
25
- msgstr "BackWPup Backups beheren"
26
-
27
- #: backwpup.php:282
28
- #: inc/class-page-logs.php:99
29
- #@ backwpup
30
- msgid "BackWPup Logs"
31
- msgstr "BackWPup Logboeken"
32
-
33
- #: inc/class-page-logs-table.php:84
34
- #@ backwpup
35
- msgid "No Logs."
36
- msgstr "Geen logboeken"
37
-
38
- #: inc/class-page-backups-table.php:149
39
- #: inc/class-page-backups-table.php:259
40
- #: inc/class-page-backwpup-table.php:66
41
- #: inc/class-page-backwpup-table.php:131
42
- #: inc/class-page-editjob-metaboxes.php:41
43
- #: inc/class-page-logs-table.php:92
44
- #: inc/class-page-logs-table.php:155
45
- #@ default
46
- #@ backwpup
47
- msgid "Delete"
48
- msgstr "Verwijder"
49
-
50
- #: inc/class-page-logs-table.php:102
51
- #@ backwpup
52
- msgid "Job"
53
- msgstr "Taak"
54
-
55
- #: inc/class-page-backwpup-table.php:79
56
- #: inc/class-page-editjob-metaboxes.php:218
57
- #: inc/class-page-logs-table.php:103
58
- #@ backwpup
59
- msgid "Type"
60
- msgstr "Type"
61
-
62
- #: inc/class-page-logs-table.php:104
63
- #@ backwpup
64
- msgid "Backup/Log Date/Time"
65
- msgstr "Backup-datum en -tijd"
66
-
67
- #: inc/class-page-logs-table.php:105
68
- #@ backwpup
69
- msgid "Status"
70
- msgstr "Status"
71
-
72
- #: inc/class-page-backups-table.php:214
73
- #: inc/class-page-logs-table.php:106
74
- #@ backwpup
75
- msgid "Size"
76
- msgstr "Grootte"
77
-
78
- #: inc/class-page-logs-table.php:107
79
- #@ backwpup
80
- msgid "Runtime"
81
- msgstr "Verwerkingstijd"
82
-
83
- #: inc/class-page-logs-table.php:152
84
- #@ backwpup
85
- msgid "View log"
86
- msgstr "Bekijk logboek"
87
-
88
- #: inc/class-page-logs-table.php:154
89
- #@ backwpup
90
- msgid "View"
91
- msgstr "Bekijken"
92
-
93
- #: inc/class-page-backups-table.php:260
94
- #: inc/class-page-backwpup-table.php:217
95
- #: inc/class-page-logs-table.php:156
96
- #@ backwpup
97
- msgid "Download"
98
- msgstr "Downloaden"
99
-
100
- #: inc/class-adminbar.php:85
101
- #: inc/class-dashboard.php:35
102
- #: inc/class-page-logs-table.php:163
103
- #, php-format
104
- #@ backwpup
105
- msgid "%d ERROR"
106
- msgid_plural "%d ERRORS"
107
- msgstr[0] "%d FOUT"
108
- msgstr[1] "%d FOUTEN"
109
-
110
- #: inc/class-adminbar.php:87
111
- #: inc/class-dashboard.php:37
112
- #: inc/class-page-logs-table.php:165
113
- #, php-format
114
- #@ backwpup
115
- msgid "%d WARNING"
116
- msgid_plural "%d WARNINGS"
117
- msgstr[0] "%d WAARSCHUWING"
118
- msgstr[1] "%d WAARSCHUWINGEN"
119
-
120
- #: inc/class-adminbar.php:89
121
- #: inc/class-dashboard.php:39
122
- #: inc/class-page-logs-table.php:167
123
- #@ backwpup
124
- msgid "O.K."
125
- msgstr "OK"
126
-
127
- #: inc/class-page-logs-table.php:175
128
- #@ backwpup
129
- msgid "only Log"
130
- msgstr "alleen logboek"
131
-
132
- #: inc/class-page-backwpup-table.php:188
133
- #: inc/class-page-backwpup-table.php:211
134
- #: inc/class-page-editjob-metaboxes.php:319
135
- #: inc/class-page-logs-table.php:181
136
- #@ backwpup
137
- msgid "sec."
138
- msgstr "sec."
139
-
140
- #: inc/class-page-tools.php:16
141
- #: inc/class-page-tools.php:151
142
- #@ backwpup
143
- msgid "Put DB restore tool to blog root..."
144
- msgstr "Plaats DB herstelprogramma in blog-hoofdmap..."
145
-
146
- #: inc/class-page-tools.php:34
147
- #@ backwpup
148
- msgid "Files for restore transferred!"
149
- msgstr "Bestanden voor herstel verzonden!"
150
-
151
- #: inc/class-page-tools.php:38
152
- #: inc/class-page-tools.php:154
153
- #@ backwpup
154
- msgid "Delete restore tool from blog root..."
155
- msgstr "Verwijder herstelprogramma uit blog-hoofdmap..."
156
-
157
- #: inc/class-page-tools.php:46
158
- #@ backwpup
159
- msgid "Files for restore deleted!"
160
- msgstr "Bestanden voor herstel verwijderd!"
161
-
162
- #: inc/class-page-tools.php:49
163
- #: inc/class-page-tools.php:236
164
- #@ backwpup
165
- msgid "Save to config!"
166
- msgstr "Opslaan naar instellingen!"
167
-
168
- #: inc/class-page-tools.php:55
169
- #, php-format
170
- #@ backwpup
171
- msgid "Max. execution time saved with %d sec."
172
- msgstr "Max. verwerkingstijd %d sec."
173
-
174
- #: inc/class-page-tools.php:59
175
- #: inc/class-page-tools.php:230
176
- #: inc/class-page-tools.php:235
177
- #@ backwpup
178
- msgid "Start time test..."
179
- msgstr "Start tijdtest..."
180
-
181
- #: inc/class-page-tools.php:91
182
- #: inc/class-page-tools.php:241
183
- #@ backwpup
184
- msgid "Terminate time test!"
185
- msgstr "Stop tijdtest!"
186
-
187
- #: inc/class-page-tools.php:94
188
- #@ backwpup
189
- msgid "Execution Time test terminated!"
190
- msgstr "Tijdtest afgebroken!"
191
-
192
- #: inc/class-page-backups.php:334
193
- #: inc/class-page-backwpup.php:142
194
- #: inc/class-page-editjob.php:403
195
- #: inc/class-page-logs.php:65
196
- #: inc/class-page-settings.php:86
197
- #: inc/class-page-tools.php:101
198
- #: inc/class-page-working.php:30
199
- #@ default
200
- msgid "Overview"
201
- msgstr "Overzicht"
202
-
203
- #: inc/class-page-working.php:32
204
- #@ backwpup
205
- msgid "Here you see a working jobs or a logfile"
206
- msgstr "Hier zie je een actieve taak of een logboekbestand"
207
-
208
- #: inc/class-ajax-editjob.php:60
209
- #@ backwpup
210
- msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
211
- msgstr "Taak gepland met <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
212
-
213
- #: inc/class-ajax-editjob.php:67
214
- #, php-format
215
- #@ backwpup
216
- msgid "ATTENTION: Job runs every %d mins.!!!"
217
- msgstr "ATTENTIE: Taak start elke %d min.!!!"
218
-
219
- #: inc/class-ajax-editjob.php:73
220
- #, php-format
221
- #@ backwpup
222
- msgid "ATTENTION: Job runs every %d houers.!!!"
223
- msgstr "ATTENTIE: Taak start elke %d uren!!!"
224
-
225
- #: inc/class-ajax-editjob.php:77
226
- #@ backwpup
227
- msgid "ATTENTION: Can't calculate cron!!!"
228
- msgstr "ATTENTIE: Kan cron niet bepalen!!!"
229
-
230
- #: inc/class-ajax-editjob.php:79
231
- #@ backwpup
232
- msgid "Next runtime:"
233
- msgstr "Volgende start op:"
234
-
235
- #: inc/class-ajax-editjob.php:125
236
- #: inc/class-ajax-editjob.php:185
237
- #@ backwpup
238
- msgid "Missing access key!"
239
- msgstr "Toegangsleutel ontbreekt!"
240
-
241
- #: inc/class-ajax-editjob.php:127
242
- #: inc/class-ajax-editjob.php:187
243
- #@ backwpup
244
- msgid "Missing secret access key!"
245
- msgstr "Geheime toegangsleutel ontbreekt!"
246
-
247
- #: inc/class-ajax-editjob.php:133
248
- #: inc/class-ajax-editjob.php:193
249
- #@ backwpup
250
- msgid "No bucket fount!"
251
- msgstr "Geen bucket gevonden!"
252
-
253
- #: inc/class-ajax-editjob.php:242
254
- #: inc/class-ajax-editjob.php:351
255
- #@ backwpup
256
- msgid "Missing Username!"
257
- msgstr "Gebruikersnaam ontbreekt!"
258
-
259
- #: inc/class-ajax-editjob.php:244
260
- #@ backwpup
261
- msgid "Missing API Key!"
262
- msgstr "API sleutel ontbreekt!"
263
-
264
- #: inc/class-ajax-editjob.php:248
265
- #@ backwpup
266
- msgid "No Container's found!"
267
- msgstr "Geen containers gevonden!"
268
-
269
- #: inc/class-ajax-editjob.php:296
270
- #@ backwpup
271
- msgid "Missing Hostname!"
272
- msgstr "Hostnaam ontbreekt!"
273
-
274
- #: inc/class-ajax-editjob.php:298
275
- #@ backwpup
276
- msgid "Missing Account Name!"
277
- msgstr "Accountnaam ontbreekt!"
278
-
279
- #: inc/class-ajax-editjob.php:300
280
- #@ backwpup
281
- msgid "Missing Access Key!"
282
- msgstr "Toegangsleutel ontbreekt!"
283
-
284
- #: inc/class-ajax-editjob.php:304
285
- #@ backwpup
286
- msgid "No Container found!"
287
- msgstr "Geen container gevonden!"
288
-
289
- #: inc/class-ajax-editjob.php:353
290
- #@ backwpup
291
- msgid "Missing Password!"
292
- msgstr "Wachtwoord ontbreekt!"
293
-
294
- #: inc/class-ajax-editjob.php:357
295
- #@ backwpup
296
- msgid "No Syncfolders found!"
297
- msgstr "Geen synchronisatiemap gevonden!"
298
-
299
- #: inc/class-page-working.php:61
300
- #@ backwpup
301
- msgid "BackWPup Working"
302
- msgstr "BackWPup Logboek"
303
-
304
- #: inc/class-page-working.php:66
305
- #, php-format
306
- #@ backwpup
307
- msgid "Job \"%s\" is running."
308
- msgstr "Taak \"%s\" is actief."
309
-
310
- #: inc/class-adminbar.php:31
311
- #: inc/class-dashboard.php:99
312
- #: inc/class-page-backwpup-table.php:139
313
- #: inc/class-page-working.php:67
314
- #@ backwpup
315
- msgid "Abort!"
316
- msgstr "Afbreken!"
317
-
318
- #: inc/class-page-working.php:97
319
- #@ backwpup
320
- msgid "Warnings:"
321
- msgstr "Waarschuwingen:"
322
-
323
- #: inc/class-page-working.php:101
324
- #@ backwpup
325
- msgid "Errors:"
326
- msgstr "Fouten:"
327
-
328
- #: inc/class-page-backwpup.php:259
329
- #@ backwpup
330
- msgid "BackWPup Jobs"
331
- msgstr "BackWPup Taken"
332
-
333
- #: backwpup.php:223
334
- #: inc/class-adminbar.php:40
335
- #: inc/class-page-backwpup.php:259
336
- #: inc/class-page-editjob.php:456
337
- #@ backwpup
338
- msgid "Add New"
339
- msgstr "Nieuwe taak"
340
-
341
- #: inc/class-page-tools.php:136
342
- #@ backwpup
343
- msgid "BackWPup Tools"
344
- msgstr "BackWPup Gereedschappen"
345
-
346
- #: inc/class-page-tools.php:142
347
- #@ backwpup
348
- msgid "Database restore"
349
- msgstr "Herstellen Database"
350
-
351
- #: inc/class-page-tools.php:145
352
- #@ backwpup
353
- msgid "DB Restore"
354
- msgstr "DB herstellen"
355
-
356
- #: inc/class-page-tools.php:149
357
- #@ backwpup
358
- msgid "Download manually DB restore tool: <a href=\"http://api.backwpup.com/download/backwpup_db_restore.zip\">http://api.backwpup.com/download/backwpup_db_restore.zip</a>"
359
- msgstr "Download handmatig het DB herstelprogramma: <a href=\"http://api.backwpup.com/download/backwpup_db_restore.zip\">http://api.backwpup.com/download/backwpup_db_restore.zip</a>"
360
-
361
- #: inc/class-page-tools.php:155
362
- #, php-format
363
- #@ backwpup
364
- msgid "Make a DB restore: <a href=\"%1$s/backwpup_db_restore.php\">%1$s/backwpup_db_restore.php</a>"
365
- msgstr "Herstel de DB: <a href=\"%1$s/backwpup_db_restore.php\">%1$s/backwpup_db_restore.php</a>"
366
-
367
- #: inc/class-page-tools.php:162
368
- #@ backwpup
369
- msgid "Import Jobs settings"
370
- msgstr "Importeer taakinstellingen"
371
-
372
- #: inc/class-page-tools.php:165
373
- #@ backwpup
374
- msgid "Select file to import:"
375
- msgstr "Selecteer te importeren bestand:"
376
-
377
- #: inc/class-page-tools.php:168
378
- #: inc/class-page-tools.php:173
379
- #@ backwpup
380
- msgid "Upload"
381
- msgstr "Uploaden"
382
-
383
- #: inc/class-page-tools.php:174
384
- #@ backwpup
385
- msgid "Select jobs to import"
386
- msgstr "Selecteer te importeren taken"
387
-
388
- #: inc/class-page-tools.php:178
389
- #@ backwpup
390
- msgid "Import Type"
391
- msgstr "Importtype"
392
-
393
- #: inc/class-page-tools.php:178
394
- #@ backwpup
395
- msgid "No Import"
396
- msgstr "Geen import"
397
-
398
- #: inc/class-page-tools.php:180
399
- #@ backwpup
400
- msgid "Overwrite"
401
- msgstr "Overschrijven"
402
-
403
- #: inc/class-page-tools.php:180
404
- #@ backwpup
405
- msgid "Append"
406
- msgstr "Toevoegen"
407
-
408
- #: inc/class-page-tools.php:182
409
- #: inc/class-page-tools.php:187
410
- #: inc/class-page-tools.php:189
411
- #: inc/class-page-tools.php:190
412
- #@ backwpup
413
- msgid "Import"
414
- msgstr "Importeren"
415
-
416
- #: inc/class-page-tools.php:214
417
- #@ backwpup
418
- msgid "Jobs imported!"
419
- msgstr "Taken geïmporteerd!"
420
-
421
- #: inc/class-page-tools.php:221
422
- #@ backwpup
423
- msgid "Test max. script execution time"
424
- msgstr "Maximaal toegestane verwerkingstijd:"
425
-
426
- #: inc/class-page-tools.php:224
427
- #@ backwpup
428
- msgid "Test result:"
429
- msgstr "Testresultaat:"
430
-
431
- #: inc/class-page-tools.php:229
432
- #@ default
433
- msgid "No result"
434
- msgstr "Geen resultaat"
435
-
436
- #: inc/class-page-tools.php:234
437
- #: inc/class-page-tools.php:240
438
- #, php-format
439
- #@ backwpup
440
- msgid "%d sec."
441
- msgstr "%d sec."
442
-
443
- #: inc/class-page-tools.php:240
444
- #@ default
445
- msgid "In progress"
446
- msgstr "In behandeling"
447
-
448
- #: inc/class-page-settings.php:79
449
- #@ backwpup
450
- msgid "Settings saved"
451
- msgstr "Instellingen opgeslagen"
452
-
453
- #: inc/class-page-logs.php:66
454
- #@ backwpup
455
- msgid "Here you can manage the log files of the jobs. You can download, view, or delete them."
456
- msgstr "Hier kun je logfiles van uitgevoerde taken downloaden, bekijken of verwijderen."
457
-
458
- #: backwpup.php:239
459
- #: inc/class-adminbar.php:44
460
- #: inc/class-page-backups.php:339
461
- #: inc/class-page-logs.php:69
462
- #: inc/class-page-settings.php:162
463
- #@ backwpup
464
- msgid "Logs"
465
- msgstr "Logboeken"
466
-
467
- #: inc/class-page-backups.php:67
468
- #, php-format
469
- #@ backwpup
470
- msgid "GStorage API: %s"
471
- msgstr "GStorage API: %s"
472
-
473
- #: inc/class-page-backups.php:168
474
- #@ backwpup
475
- msgid "Login failure!"
476
- msgstr "Login fout!"
477
-
478
- #: inc/class-page-backups.php:336
479
- #@ backwpup
480
- msgid "Here you see a list of backup files. Change the destination to jobname:destination to become a list of backups from other destinations and jobs. Then you can delete or download backup files. <br />NOTE: The lists will be only generated on backup jobs to reduce traffic."
481
- msgstr "Hier zie je een lijst van backupfiles. Verander de bestemming naar taaknaam:bestemming om de backups van andere bestemmingen en taken in te zien. Daarna kun je backupfiles verwijderen of downloaden. <br />NOTE: Om het netwerkverkeer te beperken zal de lijst zal alleen worden aangemaakt voor backuptaken."
482
-
483
- #: inc/class-page-backwpup-table.php:57
484
- #@ backwpup
485
- msgid "No Jobs."
486
- msgstr "Geen taken."
487
-
488
- #: inc/class-page-backwpup-table.php:65
489
- #: inc/class-page-backwpup-table.php:130
490
- #@ default
491
- #@ backwpup
492
- msgid "Export"
493
- msgstr "Exporteren"
494
-
495
- #: inc/class-page-backwpup-table.php:77
496
- #@ backwpup
497
- msgid "ID"
498
- msgstr "ID"
499
-
500
- #: inc/class-page-backwpup-table.php:78
501
- #@ backwpup
502
- msgid "Job Name"
503
- msgstr "Taaknaam"
504
-
505
- #: inc/class-page-backwpup-table.php:80
506
- #@ backwpup
507
- msgid "Information"
508
- msgstr "Details"
509
-
510
- #: inc/class-page-backwpup-table.php:81
511
- #@ backwpup
512
- msgid "Next Run"
513
- msgstr "Volgende run"
514
-
515
- #: inc/class-page-backwpup-table.php:82
516
- #@ backwpup
517
- msgid "Last Run"
518
- msgstr "Vorige run"
519
-
520
- #: inc/class-page-backwpup-table.php:125
521
- #@ backwpup
522
- msgid "Edit:"
523
- msgstr "Bewerken:"
524
-
525
- #: inc/class-page-backwpup-table.php:128
526
- #@ default
527
- msgid "Edit"
528
- msgstr "Bewerken"
529
-
530
- #: inc/class-page-backwpup-table.php:129
531
- #@ backwpup
532
- msgid "Copy"
533
- msgstr "Kopiëren"
534
-
535
- #: inc/class-page-backwpup-table.php:134
536
- #: inc/class-page-editjob.php:367
537
- #@ backwpup
538
- msgid "Run now"
539
- msgstr "Starten"
540
-
541
- #: inc/class-dashboard.php:98
542
- #: inc/class-page-backwpup-table.php:138
543
- #@ backwpup
544
- msgid "View!"
545
- msgstr "Bekijken!"
546
-
547
- #: inc/class-page-backwpup-table.php:188
548
- #@ backwpup
549
- msgid "Running since:"
550
- msgstr "Actief sinds:"
551
-
552
- #: inc/class-page-backwpup-table.php:199
553
- #@ backwpup
554
- msgid "Inactive"
555
- msgstr "Inactief"
556
-
557
- #: inc/class-page-backwpup-table.php:202
558
- #@ backwpup
559
- msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
560
- msgstr "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
561
-
562
- #: inc/class-page-backwpup-table.php:211
563
- #@ backwpup
564
- msgid "Runtime:"
565
- msgstr "Verwerkingstijd:"
566
-
567
- #: inc/class-page-backwpup-table.php:213
568
- #@ backwpup
569
- msgid "None"
570
- msgstr "Geen"
571
-
572
- #: inc/class-page-backwpup-table.php:217
573
- #@ backwpup
574
- msgid "Download last Backup"
575
- msgstr "Download laatste backup"
576
-
577
- #: inc/class-page-backwpup-table.php:219
578
- #@ backwpup
579
- msgid "View last Log"
580
- msgstr "Bekijk laatste logboek"
581
-
582
- #: inc/class-page-backwpup-table.php:219
583
- #@ backwpup
584
- msgid "Log"
585
- msgstr "Logboek"
586
-
587
- #: inc/class-page-backwpup.php:41
588
- #@ backwpup
589
- msgid "Copy of"
590
- msgstr "Kopie van"
591
-
592
- #: inc/class-job.php:424
593
- #: inc/class-page-backwpup.php:96
594
- #@ backwpup
595
- msgid "ERROR:"
596
- msgstr "FOUT:"
597
-
598
- #: inc/class-page-backwpup.php:96
599
- #@ backwpup
600
- msgid "Aborted by user!!!"
601
- msgstr "Afgebroken door gebruiker!!!"
602
-
603
- #: inc/class-page-backwpup.php:112
604
- #@ backwpup
605
- msgid "Job will be terminated."
606
- msgstr "Taak wordt afgebroken."
607
-
608
- #: inc/class-page-backwpup.php:115
609
- #@ backwpup
610
- msgid "Process killed with PID:"
611
- msgstr "Proces afgebroken met PID:"
612
-
613
- #: inc/class-page-backwpup.php:117
614
- #@ backwpup
615
- msgid "Can't kill process with PID:"
616
- msgstr "Kan proces niet afbreken met PID:"
617
-
618
- #: inc/class-page-backwpup.php:144
619
- #@ backwpup
620
- msgid "Here can see some information about the jobs. How many can be switched with the view button. Also you can manage the jobs and abort working. With the links you have direct access to the last log or download."
621
- msgstr "Hier kun je informatie over taken zien, taken beheren en actieve taken afbreken. Met de links heb je toegang tot het logboek van de laatste actieve taak."
622
-
623
- #: inc/class-page-backwpup.php:179
624
- #@ backwpup
625
- msgid "- MySQL 5.0 or higher is needed!"
626
- msgstr "- MySQL 5.0 of hoger is noodzakelijk!"
627
-
628
- #: inc/class-page-backwpup.php:182
629
- #, php-format
630
- #@ backwpup
631
- msgid "- Log folder '%s' is not in open_basedir path!"
632
- msgstr "- Logboek-map '%s' niet opgenomen in open_basedir pad!"
633
-
634
- #: inc/class-page-backwpup.php:186
635
- #, php-format
636
- #@ backwpup
637
- msgid "- Log folder '%s' not exists!"
638
- msgstr "- Logboek-map '%s' bestaat niet!"
639
-
640
- #: inc/class-page-backwpup.php:188
641
- #, php-format
642
- #@ backwpup
643
- msgid "- Log folder '%s' is not writable!"
644
- msgstr "- Logboek-map '%s' niet beschrijfbaar!"
645
-
646
- #: inc/class-page-backwpup.php:203
647
- #, php-format
648
- #@ backwpup
649
- msgid "- Temp folder '%s' is not in open_basedir path!"
650
- msgstr "- Tijdelijke map '%s' niet opgenomen in open_basedir pad!"
651
-
652
- #: inc/class-page-backwpup.php:207
653
- #, php-format
654
- #@ backwpup
655
- msgid "- Temp folder '%s' not exists!"
656
- msgstr "- Tijdelijk map '%s' bestaat niet!"
657
-
658
- #: inc/class-page-backwpup.php:209
659
- #, php-format
660
- #@ backwpup
661
- msgid "- Temp folder '%s' is not writable!"
662
- msgstr "- Tijdelijke map '%s' niet beschrijfbaar!"
663
-
664
- #: inc/class-page-backwpup.php:223
665
- #, php-format
666
- #@ backwpup
667
- msgid "- WP_CONTENT_URL '%s' must set as a full URL!"
668
- msgstr "- WP_CONTENT_URL '%s' moet volledig URL zijn!"
669
-
670
- #: inc/class-page-backwpup.php:226
671
- #, php-format
672
- #@ backwpup
673
- msgid "- WP_PLUGIN_URL '%s' must set as a full URL!"
674
- msgstr "- WP_PLUGIN_URL '%s' moet voledig URL zijn!"
675
-
676
- #: inc/class-page-backwpup.php:234
677
- #@ backwpup
678
- msgid "- BackWPup DB restore script found in Blog root please delete it, for security!"
679
- msgstr "- BackWPup DB-herstelprogramma gevonden in de blog-hoofdmap. Om beveiligingsredenen s.v.p. verwijderen!"
680
-
681
- #: inc/class-page-backwpup.php:246
682
- #, php-format
683
- #@ backwpup
684
- msgid "- SQL dumps '%s' found in Blog root please delete it, for security!"
685
- msgstr "- SQL-dump(s) '%s' gevonden in blog-hoofdmap. Om beveiligingsredenen s.v.p. verwijderen!"
686
-
687
- #: inc/class-page-settings.php:118
688
- #@ backwpup
689
- msgid "BackWPup Settings"
690
- msgstr "BackWPup Instellingen"
691
-
692
- #: inc/class-page-settings.php:144
693
- #@ backwpup
694
- msgid "Send Mail"
695
- msgstr "Verzend email"
696
-
697
- #: inc/class-page-settings.php:146
698
- #@ backwpup
699
- msgid "Here you can set the options for email sending. The settings will be used in jobs for sending backups via email or for sending log files."
700
- msgstr "Opties voor verzending van backup- en logboek-files via email."
701
-
702
- #: inc/class-page-settings.php:149
703
- #@ backwpup
704
- msgid "Sender email"
705
- msgstr "Email afzender"
706
-
707
- #: inc/class-page-settings.php:155
708
- #@ backwpup
709
- msgid "Sender name"
710
- msgstr "Naam afzender"
711
-
712
- #: inc/class-page-settings.php:164
713
- #@ backwpup
714
- msgid "Here you can set Logfile related options."
715
- msgstr "Opties voor logboek-bestanden."
716
-
717
- #: inc/class-page-settings.php:167
718
- #@ backwpup
719
- msgid "Log file Folder"
720
- msgstr "Map logboek-bestanden"
721
-
722
- #: inc/class-page-settings.php:173
723
- #@ backwpup
724
- msgid "Max. Log Files in Folder"
725
- msgstr "Max. aantal logboek-bestanden in map"
726
-
727
- #: inc/class-page-editjob-metaboxes.php:291
728
- #: inc/class-page-settings.php:176
729
- #@ backwpup
730
- msgid "(Oldest files will deleted first.)"
731
- msgstr "(Oudste bestanden worden het eerst verwijderd.)"
732
-
733
- #: inc/class-page-settings.php:180
734
- #: inc/class-page-settings.php:183
735
- #@ backwpup
736
- msgid "Compression"
737
- msgstr "Compressie"
738
-
739
- #: inc/class-page-settings.php:187
740
- #@ backwpup
741
- msgid "Gzip Log files!"
742
- msgstr "Gzip logboek-bestanden!"
743
-
744
- #: backwpup.php:219
745
- #: inc/class-adminbar.php:36
746
- #: inc/class-page-settings.php:192
747
- #@ backwpup
748
- msgid "Jobs"
749
- msgstr "Taken"
750
-
751
- #: inc/class-page-settings.php:194
752
- #@ backwpup
753
- msgid "Here you can set Job related options."
754
- msgstr "Opties voor taken."
755
-
756
- #: inc/class-page-settings.php:197
757
- #: inc/class-page-settings.php:201
758
- #@ backwpup
759
- msgid "Alternate run noe job start"
760
- msgstr "Alternatieve methode starten taak"
761
-
762
- #: inc/class-page-settings.php:205
763
- #@ backwpup
764
- msgid "If problems with redirect on run now job start you can try this"
765
- msgstr "Je kunt dit proberen bij problemen met starten van taken"
766
-
767
- #: inc/class-page-settings.php:212
768
- #@ backwpup
769
- msgid "Where to store working data"
770
- msgstr "Opslaan gegevens actieve taak in"
771
-
772
- #: inc/class-page-settings.php:216
773
- #@ backwpup
774
- msgid "Database"
775
- msgstr "Database"
776
-
777
- #: inc/class-page-backups-table.php:212
778
- #: inc/class-page-settings.php:217
779
- #@ backwpup
780
- msgid "File"
781
- msgstr "Bestand"
782
-
783
- #: inc/class-page-settings.php:219
784
- #@ backwpup
785
- msgid "(The data will stored every second if a job run!)"
786
- msgstr "(Tijdens de uitvoering van een taak worden de gegevens elke seconde opgeslagen!)"
787
-
788
- #: inc/class-page-settings.php:224
789
- #@ backwpup
790
- msgid "Max. Script Execution time"
791
- msgstr "Max. uitvoeringstijd voor een script"
792
-
793
- #: inc/class-page-settings.php:227
794
- #@ backwpup
795
- msgid "(0 = endless; Default. You can test the time under Tools. The job will be automatic restarted after this time.)"
796
- msgstr "(0 = zonder begrenzing; Default. Je kunt de tijd testen bij Gereedschappen. De taak wordt na de ingestelde tijd automatisch gestart.)"
797
-
798
- #: inc/class-page-settings.php:231
799
- #@ backwpup
800
- msgid "Max. retrys for job steps"
801
- msgstr "Max. aantal pogingen voor een taakstap"
802
-
803
- #: inc/class-page-settings.php:238
804
- #@ backwpup
805
- msgid "Max. retrys for job script retries"
806
- msgstr "Max. aantal pogingen voor een taakscript"
807
-
808
- #: inc/class-page-settings.php:245
809
- #@ backwpup
810
- msgid "Temp file Folder"
811
- msgstr "Map voor tijdelijke bestanden"
812
-
813
- #: inc/class-page-settings.php:252
814
- #@ backwpup
815
- msgid "Key for start jobs external with a URL"
816
- msgstr "Sleutel om taken extern via een URL te starten"
817
-
818
- #: inc/class-page-settings.php:256
819
- #: inc/class-page-settings.php:309
820
- #, php-format
821
- #@ backwpup
822
- msgid "A unique key is: %s"
823
- msgstr "Een unieke sleutel is: %s"
824
-
825
- #: inc/class-page-settings.php:257
826
- #: inc/class-page-settings.php:310
827
- #@ backwpup
828
- msgid "(empty = deactivated. Will be used for, that nobody else can use the job start URLs.)"
829
- msgstr "(leeg = gedeactiveerd. Een sleutel wordt gebruikt om te voorkomen dat iemand anders de taak kan starten via URL)"
830
-
831
- #: inc/class-page-settings.php:262
832
- #@ backwpup
833
- msgid "WP Admin Bar"
834
- msgstr "WP Admin Bar"
835
-
836
- #: inc/class-page-settings.php:264
837
- #@ backwpup
838
- msgid "Will you see BackWPup in the WordPress Admin Bar?"
839
- msgstr "Optie voor weergave BackWPup-icoon op de WordPress Admin Bar."
840
-
841
- #: inc/class-page-settings.php:267
842
- #: inc/class-page-settings.php:270
843
- #@ backwpup
844
- msgid "Admin Bar"
845
- msgstr "Admin Bar"
846
-
847
- #: inc/class-page-settings.php:273
848
- #@ backwpup
849
- msgid "Show BackWPup Links in Admin Bar."
850
- msgstr "Toon BackWPup op de Admin Bar"
851
-
852
- #: inc/class-page-settings.php:279
853
- #@ backwpup
854
- msgid "Http basic authentication"
855
- msgstr "Http basis-verificatie"
856
-
857
- #: inc/class-page-settings.php:281
858
- #@ backwpup
859
- msgid "Is your blog behind a http basic authentication (.htaccess)? Only then you must set the username and password for authentication to get jobs working."
860
- msgstr "Een gebruikersnaam en wachtwoord zijn alleen noodzakelijk als de blog zich bevindt achter een http basis-aanmelding (.htaccess)."
861
-
862
- #: inc/class-page-editjob-metaboxes.php:305
863
- #: inc/class-page-editjob-metaboxes.php:442
864
- #: inc/class-page-settings.php:284
865
- #@ backwpup
866
- msgid "Username:"
867
- msgstr "Gebruikersnaam:"
868
-
869
- #: inc/class-page-editjob-metaboxes.php:308
870
- #: inc/class-page-editjob-metaboxes.php:511
871
- #: inc/class-page-settings.php:290
872
- #@ backwpup
873
- msgid "Password:"
874
- msgstr "Wachtwoord:"
875
-
876
- #: inc/class-page-settings.php:295
877
- #@ backwpup
878
- msgid "Cron service of BackWPup.com"
879
- msgstr "Cron service van BackWPup.com"
880
-
881
- #: inc/class-page-settings.php:297
882
- #@ backwpup
883
- msgid "Use cron service of backwpup.com"
884
- msgstr "Gebruik de cron-service van backwpup.com"
885
-
886
- #: inc/class-page-settings.php:300
887
- #: inc/class-page-settings.php:304
888
- #@ backwpup
889
- msgid "Key for cron service"
890
- msgstr "Sleutel voor cron-service"
891
-
892
- #: inc/class-page-settings.php:315
893
- #@ backwpup
894
- msgid "Terms of service"
895
- msgstr "Algemene gebruiksvoorwaarden"
896
-
897
- #: inc/class-page-settings.php:317
898
- #@ backwpup
899
- msgid "If you use this service in jobs, the schedule will submitted to api.backwpup.com. The api.backwpup.com will call the script to start the job directly. <em>Use this service only if you have not a cron service of your hoster, or a blog that has a few visitors.</em> The cron service can start a job behind a basic authentication (.htaccess), on that the http authentication data will transferred too! Please make a little donation for the plugin if you use this service. The service can be removed by me without a message."
900
- msgstr "Als je deze service in een taak gebruikt dan wordt de taakplanning verzonden naar api.backwpup.com. Api.backwpup.com zal het script aanroepen om de taak te starten. <em>Gebruik deze service alleen als je geen cron-service hebt van je provider of wanneer je blog weinig bezoekers heeft.</em> De cron-service kan een taak starten achter een http basis-aanmelding (.htaccess)! Doneer een klein bedrag als je deze service gebruikt. De service kan zonder aankondiging worden verwijderd."
901
-
902
- #: inc/class-page-editjob-metaboxes.php:34
903
- #@ backwpup
904
- msgid "PHP curl functions not available! Most backup destinations deaktivated!"
905
- msgstr "PHP curl-functies zijn niet beschikbaar! De meeste backup bestemmingen zijn uitgeschakeld!"
906
-
907
- #: inc/class-page-editjob-metaboxes.php:41
908
- #@ backwpup
909
- msgid ""
910
- "You are about to delete this Job. \n"
911
- " 'Cancel' to stop, 'OK' to delete."
912
- msgstr ""
913
- "Je staat op het punt om deze taak te verwijderen. \n"
914
- " 'Annuleer' om te stoppen, 'OK' om te verwijderen."
915
-
916
- #: inc/class-page-editjob-metaboxes.php:44
917
- #: inc/class-page-settings.php:324
918
- #@ backwpup
919
- msgid "Save Changes"
920
- msgstr "Wijzigingen opslaan"
921
-
922
- #: inc/class-page-editjob-metaboxes.php:55
923
- #@ backwpup
924
- msgid "Backup type:"
925
- msgstr "Backup-type:"
926
-
927
- #: inc/class-page-editjob-metaboxes.php:57
928
- #@ backwpup
929
- msgid "Sync files with destination"
930
- msgstr "Synchroniseer bestanden met bestemming"
931
-
932
- #: inc/class-page-editjob-metaboxes.php:58
933
- #@ backwpup
934
- msgid "Create backup archive"
935
- msgstr "Maak backup-bestand"
936
-
937
- #: inc/class-page-editjob-metaboxes.php:61
938
- #@ backwpup
939
- msgid "File Prefix:"
940
- msgstr "Bestandsnaam:"
941
-
942
- #: inc/class-page-editjob-metaboxes.php:63
943
- #@ backwpup
944
- msgid "File Formart:"
945
- msgstr "Bestandsindeling:"
946
-
947
- #: inc/class-page-editjob-metaboxes.php:66
948
- #: inc/class-page-editjob-metaboxes.php:68
949
- #@ backwpup
950
- msgid "Zip"
951
- msgstr "Zip"
952
-
953
- #: inc/class-page-editjob-metaboxes.php:69
954
- #@ backwpup
955
- msgid "Tar"
956
- msgstr "Tar"
957
-
958
- #: inc/class-page-editjob-metaboxes.php:71
959
- #: inc/class-page-editjob-metaboxes.php:73
960
- #@ backwpup
961
- msgid "Tar GZip"
962
- msgstr "Tar GZip"
963
-
964
- #: inc/class-page-editjob-metaboxes.php:75
965
- #: inc/class-page-editjob-metaboxes.php:77
966
- #@ backwpup
967
- msgid "Tar BZip2"
968
- msgstr "Tar BZip2"
969
-
970
- #: inc/class-page-editjob-metaboxes.php:78
971
- #@ backwpup
972
- msgid "Preview:"
973
- msgstr "Voorbeeld:"
974
-
975
- #: inc/class-page-editjob-metaboxes.php:86
976
- #@ backwpup
977
- msgid "E-Mail-Adress:"
978
- msgstr "Email-adres:"
979
-
980
- #: inc/class-page-editjob-metaboxes.php:90
981
- #@ backwpup
982
- msgid "Only send an e-mail if there are errors."
983
- msgstr "Verstuur e-mail alleen bij fouten"
984
-
985
- #: inc/class-page-editjob-metaboxes.php:95
986
- #@ backwpup
987
- msgid "Run job with:"
988
- msgstr "Start taak:"
989
-
990
- #: inc/class-page-editjob-metaboxes.php:96
991
- #@ backwpup
992
- msgid "Manually"
993
- msgstr "Handmatig"
994
-
995
- #: inc/class-page-editjob-metaboxes.php:97
996
- #@ backwpup
997
- msgid "WordPress Cron"
998
- msgstr "WordPress Cron"
999
-
1000
- #: inc/class-page-editjob-metaboxes.php:101
1001
- #@ backwpup
1002
- msgid "BackWPup external cron service"
1003
- msgstr "BackWPup externe cron service"
1004
-
1005
- #: inc/class-page-editjob-metaboxes.php:131
1006
- #@ backwpup
1007
- msgid "advanced"
1008
- msgstr "geavanceerd"
1009
-
1010
- #: inc/class-page-editjob-metaboxes.php:132
1011
- #@ backwpup
1012
- msgid "basic"
1013
- msgstr "standaard"
1014
-
1015
- #: inc/class-page-editjob-metaboxes.php:136
1016
- #@ backwpup
1017
- msgid "Minutes: "
1018
- msgstr "Minuten:"
1019
-
1020
- #: inc/class-page-editjob-metaboxes.php:138
1021
- #: inc/class-page-editjob-metaboxes.php:151
1022
- #: inc/class-page-editjob-metaboxes.php:162
1023
- #: inc/class-page-editjob-metaboxes.php:176
1024
- #: inc/class-page-editjob-metaboxes.php:198
1025
- #@ backwpup
1026
- msgid "Any (*)"
1027
- msgstr "Elke (*)"
1028
-
1029
- #: inc/class-page-editjob-metaboxes.php:148
1030
- #@ backwpup
1031
- msgid "Hours:"
1032
- msgstr "Uren:"
1033
-
1034
- #: inc/class-page-editjob-metaboxes.php:161
1035
- #@ backwpup
1036
- msgid "Day of Month:"
1037
- msgstr "Dag van de maand:"
1038
-
1039
- #: inc/class-page-editjob-metaboxes.php:174
1040
- #@ backwpup
1041
- msgid "Month:"
1042
- msgstr "Maand:"
1043
-
1044
- #: inc/class-page-editjob-metaboxes.php:180
1045
- #@ backwpup
1046
- msgid "January"
1047
- msgstr "januari"
1048
-
1049
- #: inc/class-page-editjob-metaboxes.php:181
1050
- #@ backwpup
1051
- msgid "February"
1052
- msgstr "februari"
1053
-
1054
- #: inc/class-page-editjob-metaboxes.php:182
1055
- #@ backwpup
1056
- msgid "March"
1057
- msgstr "maart"
1058
-
1059
- #: inc/class-page-editjob-metaboxes.php:183
1060
- #@ backwpup
1061
- msgid "April"
1062
- msgstr "april"
1063
-
1064
- #: inc/class-page-editjob-metaboxes.php:184
1065
- #@ backwpup
1066
- msgid "May"
1067
- msgstr "mei"
1068
-
1069
- #: inc/class-page-editjob-metaboxes.php:185
1070
- #@ backwpup
1071
- msgid "June"
1072
- msgstr "juni"
1073
-
1074
- #: inc/class-page-editjob-metaboxes.php:186
1075
- #@ backwpup
1076
- msgid "July"
1077
- msgstr "juli"
1078
-
1079
- #: inc/class-page-editjob-metaboxes.php:187
1080
- #@ backwpup
1081
- msgid "Augest"
1082
- msgstr "augustus"
1083
-
1084
- #: inc/class-page-editjob-metaboxes.php:188
1085
- #@ backwpup
1086
- msgid "September"
1087
- msgstr "september"
1088
-
1089
- #: inc/class-page-editjob-metaboxes.php:189
1090
- #@ backwpup
1091
- msgid "October"
1092
- msgstr "oktober"
1093
-
1094
- #: inc/class-page-editjob-metaboxes.php:190
1095
- #@ backwpup
1096
- msgid "November"
1097
- msgstr "november"
1098
-
1099
- #: inc/class-page-editjob-metaboxes.php:191
1100
- #@ backwpup
1101
- msgid "December"
1102
- msgstr "december"
1103
-
1104
- #: inc/class-page-editjob-metaboxes.php:196
1105
- #@ backwpup
1106
- msgid "Day of Week:"
1107
- msgstr "Weekdag:"
1108
-
1109
- #: inc/class-page-editjob-metaboxes.php:202
1110
- #: inc/class-page-editjob-metaboxes.php:244
1111
- #@ backwpup
1112
- msgid "Sunday"
1113
- msgstr "zondag"
1114
-
1115
- #: inc/class-page-editjob-metaboxes.php:203
1116
- #: inc/class-page-editjob-metaboxes.php:245
1117
- #@ backwpup
1118
- msgid "Monday"
1119
- msgstr "maandag"
1120
-
1121
- #: inc/class-page-editjob-metaboxes.php:204
1122
- #: inc/class-page-editjob-metaboxes.php:246
1123
- #@ backwpup
1124
- msgid "Tuesday"
1125
- msgstr "dinsdag"
1126
-
1127
- #: inc/class-page-editjob-metaboxes.php:205
1128
- #: inc/class-page-editjob-metaboxes.php:247
1129
- #@ backwpup
1130
- msgid "Wednesday"
1131
- msgstr "woensdag"
1132
-
1133
- #: inc/class-page-editjob-metaboxes.php:206
1134
- #: inc/class-page-editjob-metaboxes.php:248
1135
- #@ backwpup
1136
- msgid "Thursday"
1137
- msgstr "donderdag"
1138
-
1139
- #: inc/class-page-editjob-metaboxes.php:207
1140
- #: inc/class-page-editjob-metaboxes.php:249
1141
- #@ backwpup
1142
- msgid "Friday"
1143
- msgstr "vrijdag"
1144
-
1145
- #: inc/class-page-editjob-metaboxes.php:208
1146
- #: inc/class-page-editjob-metaboxes.php:250
1147
- #@ backwpup
1148
- msgid "Saturday"
1149
- msgstr "zaterdag"
1150
-
1151
- #: inc/class-page-editjob-metaboxes.php:223
1152
- #@ backwpup
1153
- msgid "Hour"
1154
- msgstr "Uur"
1155
-
1156
- #: inc/class-page-editjob-metaboxes.php:226
1157
- #@ backwpup
1158
- msgid "Minute"
1159
- msgstr "Minuut"
1160
-
1161
- #: inc/class-page-editjob-metaboxes.php:230
1162
- #@ backwpup
1163
- msgid "monthly"
1164
- msgstr "elke maand"
1165
-
1166
- #: inc/class-page-editjob-metaboxes.php:232
1167
- #@ backwpup
1168
- msgid "on"
1169
- msgstr "op"
1170
-
1171
- #: inc/class-page-editjob-metaboxes.php:242
1172
- #@ backwpup
1173
- msgid "weekly"
1174
- msgstr "elke week"
1175
-
1176
- #: inc/class-page-editjob-metaboxes.php:260
1177
- #@ backwpup
1178
- msgid "daily"
1179
- msgstr "elke dag"
1180
-
1181
- #: inc/class-page-editjob-metaboxes.php:270
1182
- #@ backwpup
1183
- msgid "hourly"
1184
- msgstr "elk uur"
1185
-
1186
- #: inc/class-page-editjob-metaboxes.php:285
1187
- #@ backwpup
1188
- msgid "Full Path to folder for Backup Files:"
1189
- msgstr "Volledig pad naar de bacukup-map:"
1190
-
1191
- #: inc/class-page-editjob-metaboxes.php:288
1192
- #@ backwpup
1193
- msgid "Your WordPress dir is:"
1194
- msgstr "Uw Wordpress-directory is:"
1195
-
1196
- #: inc/class-page-editjob-metaboxes.php:290
1197
- #: inc/class-page-editjob-metaboxes.php:521
1198
- #@ backwpup
1199
- msgid "Maximum number of backup files to keep in folder:"
1200
- msgstr "Max. aantal backup-bestanden in map:"
1201
-
1202
- #: inc/class-page-editjob-metaboxes.php:292
1203
- #: inc/class-page-editjob-metaboxes.php:316
1204
- #: inc/class-page-editjob-metaboxes.php:358
1205
- #: inc/class-page-editjob-metaboxes.php:394
1206
- #: inc/class-page-editjob-metaboxes.php:428
1207
- #: inc/class-page-editjob-metaboxes.php:457
1208
- #: inc/class-page-editjob-metaboxes.php:495
1209
- #: inc/class-page-editjob-metaboxes.php:523
1210
- #@ backwpup
1211
- msgid "Do not delete files while syncing to destination!"
1212
- msgstr "Verwijder geen bestanden op de synchronisatiebestemming!"
1213
-
1214
- #: inc/class-page-editjob-metaboxes.php:299
1215
- #@ backwpup
1216
- msgid "Hostname:"
1217
- msgstr "Hostnaam:"
1218
-
1219
- #: inc/class-page-editjob-metaboxes.php:302
1220
- #@ backwpup
1221
- msgid "Port:"
1222
- msgstr "Poort:"
1223
-
1224
- #: inc/class-page-editjob-metaboxes.php:311
1225
- #@ backwpup
1226
- msgid "Folder on Server:"
1227
- msgstr "Map op de server:"
1228
-
1229
- #: inc/class-page-editjob-metaboxes.php:314
1230
- #@ backwpup
1231
- msgid "Max. backup files in FTP folder:"
1232
- msgstr "Max. aantal backup-bestanden in FTP-map:"
1233
-
1234
- #: inc/class-page-editjob-metaboxes.php:315
1235
- #: inc/class-page-editjob-metaboxes.php:357
1236
- #: inc/class-page-editjob-metaboxes.php:393
1237
- #: inc/class-page-editjob-metaboxes.php:427
1238
- #: inc/class-page-editjob-metaboxes.php:456
1239
- #: inc/class-page-editjob-metaboxes.php:494
1240
- #: inc/class-page-editjob-metaboxes.php:522
1241
- #@ backwpup
1242
- msgid "(Oldest files will be deleted first.)"
1243
- msgstr "(Oudste bestanden worden het eerst verwijderd.)"
1244
-
1245
- #: inc/class-page-editjob-metaboxes.php:318
1246
- #@ backwpup
1247
- msgid "Timeout for FTP connection:"
1248
- msgstr "Timeout van FTP-verbinding:"
1249
-
1250
- #: inc/class-page-editjob-metaboxes.php:321
1251
- #@ backwpup
1252
- msgid "Use SSL-FTP Connection."
1253
- msgstr "Gebruik SSL FTP-verbinding:"
1254
-
1255
- #: inc/class-page-editjob-metaboxes.php:323
1256
- #@ backwpup
1257
- msgid "Use FTP Passiv mode."
1258
- msgstr "Gebruik FTP passiv mode."
1259
-
1260
- #: inc/class-page-editjob-metaboxes.php:331
1261
- #@ backwpup
1262
- msgid "Access Key ID:"
1263
- msgstr "Toeganssleutel ID:"
1264
-
1265
- #: inc/class-page-editjob-metaboxes.php:333
1266
- #@ backwpup
1267
- msgid "Secret Access Key:"
1268
- msgstr "Geheime toegangssleutel:"
1269
-
1270
- #: inc/class-page-editjob-metaboxes.php:335
1271
- #: inc/class-page-editjob-metaboxes.php:383
1272
- #@ backwpup
1273
- msgid "Bucket:"
1274
- msgstr "Bucket:"
1275
-
1276
- #: inc/class-page-editjob-metaboxes.php:341
1277
- #: inc/class-page-editjob-metaboxes.php:388
1278
- #@ backwpup
1279
- msgid "Create bucket:"
1280
- msgstr "Maak bucket:"
1281
-
1282
- #: inc/class-page-editjob-metaboxes.php:343
1283
- #@ backwpup
1284
- msgid "Bucket Region"
1285
- msgstr "Bucket regio"
1286
-
1287
- #: inc/class-page-editjob-metaboxes.php:344
1288
- #@ backwpup
1289
- msgid "US-Standard (Northern Virginia & Washington State)"
1290
- msgstr "US-Standard (Northern Virginia & Washington State)"
1291
-
1292
- #: inc/class-page-editjob-metaboxes.php:345
1293
- #@ backwpup
1294
- msgid "US-West 1 (Northern California)"
1295
- msgstr "US-West 1 (Northern California)"
1296
-
1297
- #: inc/class-page-editjob-metaboxes.php:346
1298
- #@ backwpup
1299
- msgid "US-West 2 (Oregon)"
1300
- msgstr "US-West 2 (Oregon)"
1301
-
1302
- #: inc/class-page-editjob-metaboxes.php:347
1303
- #@ backwpup
1304
- msgid "EU (Ireland)"
1305
- msgstr "EU (Ireland)"
1306
-
1307
- #: inc/class-page-editjob-metaboxes.php:348
1308
- #@ backwpup
1309
- msgid "Asia Pacific (Singapore)"
1310
- msgstr "Asia Pacific (Singapore)"
1311
-
1312
- #: inc/class-page-editjob-metaboxes.php:349
1313
- #@ backwpup
1314
- msgid "Asia Pacific (Japan)"
1315
- msgstr "Asia Pacific (Japan)"
1316
-
1317
- #: inc/class-page-editjob-metaboxes.php:350
1318
- #@ backwpup
1319
- msgid "South America (Sao Paulo)"
1320
- msgstr "South America (Sao Paulo)"
1321
-
1322
- #: inc/class-page-editjob-metaboxes.php:351
1323
- #@ backwpup
1324
- msgid "United States GovCloud"
1325
- msgstr "United States GovCloud"
1326
-
1327
- #: inc/class-page-editjob-metaboxes.php:352
1328
- #@ backwpup
1329
- msgid "United States GovCloud FIPS 140-2"
1330
- msgstr "United States GovCloud FIPS 140-2"
1331
-
1332
- #: inc/class-page-editjob-metaboxes.php:354
1333
- #: inc/class-page-editjob-metaboxes.php:390
1334
- #@ backwpup
1335
- msgid "Folder in bucket:"
1336
- msgstr "Map in bucket:"
1337
-
1338
- #: inc/class-page-editjob-metaboxes.php:356
1339
- #: inc/class-page-editjob-metaboxes.php:392
1340
- #@ backwpup
1341
- msgid "Max. backup files in bucket folder:"
1342
- msgstr "Max. aantal backup-bestanden in bucket-map:"
1343
-
1344
- #: inc/class-page-editjob-metaboxes.php:360
1345
- #@ backwpup
1346
- msgid "Save Files with reduced redundancy!"
1347
- msgstr "Bestanden opslaan met gereduceerde redundantie!"
1348
-
1349
- #: inc/class-page-editjob-metaboxes.php:362
1350
- #@ backwpup
1351
- msgid "Save Files Server Side Encrypted!"
1352
- msgstr "Bestanden op de server versleuteld opslaan!"
1353
-
1354
- #: inc/class-page-editjob-metaboxes.php:364
1355
- #@ backwpup
1356
- msgid "Disable SSL connection on transfer!"
1357
- msgstr "Schakel SSL-verbinding uit tijdens verzending!"
1358
-
1359
- #: inc/class-page-editjob-metaboxes.php:368
1360
- #: inc/class-page-editjob-metaboxes.php:398
1361
- #: inc/class-page-editjob-metaboxes.php:432
1362
- #: inc/class-page-editjob-metaboxes.php:461
1363
- #: inc/class-page-editjob-metaboxes.php:499
1364
- #: inc/class-page-editjob-metaboxes.php:527
1365
- #@ backwpup
1366
- msgid "Create Account"
1367
- msgstr "Maak account"
1368
-
1369
- #: inc/class-page-editjob-metaboxes.php:369
1370
- #: inc/class-page-editjob-metaboxes.php:399
1371
- #@ backwpup
1372
- msgid "Find Keys"
1373
- msgstr "Zoek sleutels"
1374
-
1375
- #: inc/class-page-editjob-metaboxes.php:370
1376
- #: inc/class-page-editjob-metaboxes.php:400
1377
- #: inc/class-page-editjob-metaboxes.php:463
1378
- #: inc/class-page-editjob-metaboxes.php:500
1379
- #: inc/class-page-editjob-metaboxes.php:528
1380
- #@ backwpup
1381
- msgid "Webinterface"
1382
- msgstr "Webinterface"
1383
-
1384
- #: inc/class-page-editjob-metaboxes.php:379
1385
- #: inc/class-page-editjob-metaboxes.php:414
1386
- #@ backwpup
1387
- msgid "Access Key:"
1388
- msgstr "Toegangsleutel:"
1389
-
1390
- #: inc/class-page-editjob-metaboxes.php:381
1391
- #@ backwpup
1392
- msgid "Secret:"
1393
- msgstr "Geheim"
1394
-
1395
- #: inc/class-page-editjob-metaboxes.php:388
1396
- #@ backwpup
1397
- msgid "Please create it in Webinterface!"
1398
- msgstr " s.v.p. in webinterface aanmaken!"
1399
-
1400
- #: inc/class-page-editjob-metaboxes.php:410
1401
- #@ backwpup
1402
- msgid "Host:"
1403
- msgstr "Host:"
1404
-
1405
- #: inc/class-page-editjob-metaboxes.php:411
1406
- #@ backwpup
1407
- msgid "Normely: blob.core.windows.net"
1408
- msgstr "Normaal: blob.core.windows.net"
1409
-
1410
- #: inc/class-page-editjob-metaboxes.php:412
1411
- #@ backwpup
1412
- msgid "Account Name:"
1413
- msgstr "Accountnaam:"
1414
-
1415
- #: inc/class-page-editjob-metaboxes.php:416
1416
- #: inc/class-page-editjob-metaboxes.php:446
1417
- #@ backwpup
1418
- msgid "Container:"
1419
- msgstr "Container:"
1420
-
1421
- #: inc/class-page-editjob-metaboxes.php:422
1422
- #: inc/class-page-editjob-metaboxes.php:451
1423
- #@ backwpup
1424
- msgid "Create Container:"
1425
- msgstr "Maak container:"
1426
-
1427
- #: inc/class-page-editjob-metaboxes.php:424
1428
- #@ backwpup
1429
- msgid "Folder in Container:"
1430
- msgstr "Map in container:"
1431
-
1432
- #: inc/class-page-editjob-metaboxes.php:426
1433
- #: inc/class-page-editjob-metaboxes.php:455
1434
- #@ backwpup
1435
- msgid "Max. backup files in container folder:"
1436
- msgstr "Max. aantal backup-bestanden in container-map:"
1437
-
1438
- #: inc/class-page-editjob-metaboxes.php:433
1439
- #: inc/class-page-editjob-metaboxes.php:462
1440
- #@ backwpup
1441
- msgid "Find Key"
1442
- msgstr "Zoek sleutel"
1443
-
1444
- #: inc/class-page-editjob-metaboxes.php:444
1445
- #@ backwpup
1446
- msgid "API Key:"
1447
- msgstr "API-sleutel:"
1448
-
1449
- #: inc/class-page-editjob-metaboxes.php:453
1450
- #@ backwpup
1451
- msgid "Folder in container:"
1452
- msgstr "Map in container"
1453
-
1454
- #: inc/class-page-editjob-metaboxes.php:473
1455
- #: inc/class-page-editjob-metaboxes.php:484
1456
- #: inc/class-page-editjob-metaboxes.php:513
1457
- #@ backwpup
1458
- msgid "Root:"
1459
- msgstr "Hoofdmap:"
1460
-
1461
- #: inc/class-page-editjob-metaboxes.php:475
1462
- #: inc/class-page-editjob-metaboxes.php:484
1463
- #@ backwpup
1464
- msgid "Sandbox (App folder)"
1465
- msgstr "Sandbox (App map)"
1466
-
1467
- #: inc/class-page-editjob-metaboxes.php:476
1468
- #: inc/class-page-editjob-metaboxes.php:484
1469
- #@ backwpup
1470
- msgid "Dropbox (full Dropbox)"
1471
- msgstr "Dropbox (volledige Dropbox)"
1472
-
1473
- #: inc/class-page-editjob-metaboxes.php:478
1474
- #: inc/class-page-editjob-metaboxes.php:486
1475
- #@ backwpup
1476
- msgid "Login:"
1477
- msgstr "Login:"
1478
-
1479
- #: inc/class-page-editjob-metaboxes.php:479
1480
- #@ backwpup
1481
- msgid "Not authenticated!"
1482
- msgstr "Niet aangemeld!"
1483
-
1484
- #: inc/class-page-editjob-metaboxes.php:480
1485
- #: inc/class-page-editjob.php:351
1486
- #@ backwpup
1487
- msgid "Dropbox authenticate!"
1488
- msgstr "Aanmelden bij Dropbox!"
1489
-
1490
- #: inc/class-page-editjob-metaboxes.php:487
1491
- #@ backwpup
1492
- msgid "Authenticated!"
1493
- msgstr "Aangemeld!"
1494
-
1495
- #: inc/class-page-editjob-metaboxes.php:488
1496
- #: inc/class-page-editjob.php:344
1497
- #@ backwpup
1498
- msgid "Delete Dropbox authentication!"
1499
- msgstr "Afmelden bij Dropbox!"
1500
-
1501
- #: inc/class-page-editjob-metaboxes.php:491
1502
- #: inc/class-page-editjob-metaboxes.php:519
1503
- #@ backwpup
1504
- msgid "Folder:"
1505
- msgstr "Map:"
1506
-
1507
- #: inc/class-page-editjob-metaboxes.php:493
1508
- #@ backwpup
1509
- msgid "Max. backup files in Dropbox folder:"
1510
- msgstr "Max. aantal backup-bestanden in Dropbox-map:"
1511
-
1512
- #: inc/class-page-editjob-metaboxes.php:509
1513
- #: inc/class-page-editjob-metaboxes.php:536
1514
- #@ backwpup
1515
- msgid "E-mail address:"
1516
- msgstr "Email adres:"
1517
-
1518
- #: inc/class-page-editjob-metaboxes.php:539
1519
- #@ backwpup
1520
- msgid "Max. File Size for sending Backups with mail:"
1521
- msgstr "Max. grootte backup-bestand bij verzending via email:"
1522
-
1523
- #: inc/class-page-editjob.php:442
1524
- #@ backwpup
1525
- msgid "Job Type"
1526
- msgstr "Taaktype"
1527
-
1528
- #: inc/class-page-editjob.php:443
1529
- #@ backwpup
1530
- msgid "Job Schedule"
1531
- msgstr "Planning taak"
1532
-
1533
- #: inc/class-page-editjob.php:456
1534
- #@ backwpup
1535
- msgid "BackWPup Job Settings"
1536
- msgstr "BackWpup Taakinstellingen"
1537
-
1538
- #: inc/class-page-editjob.php:481
1539
- #@ backwpup
1540
- msgid "Enter Job name here"
1541
- msgstr "Type hier de taaknaam"
1542
-
1543
- #: inc/class-page-editjob.php:490
1544
- #@ backwpup
1545
- msgid "External start link:"
1546
- msgstr "Link voor externe activering:"
1547
-
1548
- #: inc/class-page-editjob.php:494
1549
- #@ backwpup
1550
- msgid "Commandline start:"
1551
- msgstr "Commandoregel:"
1552
-
1553
- #: inc/class-page-editjob.php:504
1554
- #@ backwpup
1555
- msgid "Database Jobs"
1556
- msgstr "Database taken"
1557
-
1558
- #: inc/class-page-editjob.php:508
1559
- #@ backwpup
1560
- msgid "Database tables for use:"
1561
- msgstr "Selecteer database-tabellen:"
1562
-
1563
- #: inc/class-page-editjob.php:520
1564
- #@ backwpup
1565
- msgid "Filename for Dump:"
1566
- msgstr "Bestandsnaam voor sql-dump"
1567
-
1568
- #: inc/class-page-editjob.php:521
1569
- #@ backwpup
1570
- msgid "Copmpression for dump:"
1571
- msgstr "Compressie van dump:"
1572
-
1573
- #: inc/class-dashboard.php:47
1574
- #: inc/class-dashboard.php:79
1575
- #: inc/class-page-editjob.php:523
1576
- #: inc/class-page-editjob.php:547
1577
- #@ backwpup
1578
- msgid "none"
1579
- msgstr "geen"
1580
-
1581
- #: inc/class-page-editjob.php:525
1582
- #: inc/class-page-editjob.php:527
1583
- #: inc/class-page-editjob.php:549
1584
- #: inc/class-page-editjob.php:551
1585
- #@ backwpup
1586
- msgid "GZip"
1587
- msgstr "GZip"
1588
-
1589
- #: inc/class-page-editjob.php:529
1590
- #: inc/class-page-editjob.php:531
1591
- #: inc/class-page-editjob.php:553
1592
- #: inc/class-page-editjob.php:555
1593
- #@ backwpup
1594
- msgid "BZip2"
1595
- msgstr "BZip2"
1596
-
1597
- #: inc/class-page-editjob.php:534
1598
- #@ backwpup
1599
- msgid "Set Blog Maintenance Mode on Database Operations"
1600
- msgstr "Zet blog in onderhoudsmodus tijdens databasebewerkingen"
1601
-
1602
- #: inc/class-page-editjob.php:540
1603
- #@ backwpup
1604
- msgid "Wordpress Export"
1605
- msgstr "Wordpress export"
1606
-
1607
- #: inc/class-page-editjob.php:565
1608
- #: inc/functions.php:366
1609
- #@ backwpup
1610
- msgid "File Backup"
1611
- msgstr "Backup bestanden"
1612
-
1613
- #: inc/class-page-editjob.php:568
1614
- #@ backwpup
1615
- msgid "Blog Folders to Backup:"
1616
- msgstr "Te backuppen blogmappen:"
1617
-
1618
- #: inc/class-page-editjob.php:572
1619
- #@ backwpup
1620
- msgid "root"
1621
- msgstr "root (hoofdmap)"
1622
-
1623
- #: inc/class-page-editjob.php:577
1624
- #: inc/class-page-editjob.php:595
1625
- #: inc/class-page-editjob.php:613
1626
- #: inc/class-page-editjob.php:631
1627
- #: inc/class-page-editjob.php:649
1628
- #@ backwpup
1629
- msgid "Exclude:"
1630
- msgstr "Uitsluiten:"
1631
-
1632
- #: inc/class-page-editjob.php:590
1633
- #@ backwpup
1634
- msgid "Content"
1635
- msgstr "Inhoud"
1636
-
1637
- #: inc/class-page-editjob.php:608
1638
- #@ backwpup
1639
- msgid "Plugins"
1640
- msgstr "Plugins"
1641
-
1642
- #: inc/class-page-editjob.php:626
1643
- #@ backwpup
1644
- msgid "Themes"
1645
- msgstr "Thema's"
1646
-
1647
- #: inc/class-page-editjob.php:644
1648
- #@ backwpup
1649
- msgid "Blog uploads"
1650
- msgstr "Blog-uploads"
1651
-
1652
- #: inc/class-page-editjob.php:662
1653
- #@ backwpup
1654
- msgid "Don't backup thumbnails in blog uploads folder"
1655
- msgstr "Thumbnails uit de blog-uploadmap niet meenemen in backup"
1656
-
1657
- #: inc/class-page-editjob.php:664
1658
- #@ backwpup
1659
- msgid "Backup wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico form root if it not selected"
1660
- msgstr "Bestanden wp-config.php, robots.txt, .htaccess, .htpasswd and favicon.ico uit hoofdmap niet meenemen in backup"
1661
-
1662
- #: inc/class-page-editjob.php:666
1663
- #@ backwpup
1664
- msgid "Include folders to backup:"
1665
- msgstr "Backupmappen:"
1666
-
1667
- #: inc/class-page-editjob.php:667
1668
- #: inc/class-page-editjob.php:671
1669
- #@ backwpup
1670
- msgid "Example:"
1671
- msgstr "Voorbeeld:"
1672
-
1673
- #: inc/class-page-editjob.php:670
1674
- #@ backwpup
1675
- msgid "Exclude files/folders from backup:"
1676
- msgstr "Bestanden/mappen uitsluiten van backup:"
1677
-
1678
- #: inc/class-page-editjob.php:29
1679
- #@ backwpup
1680
- msgid "Dropbox authentication complete!"
1681
- msgstr "Dropbox aanmelding gelukt!"
1682
-
1683
- #: inc/class-page-editjob.php:31
1684
- #@ backwpup
1685
- msgid "Wrong token for Dropbox authentication received!"
1686
- msgstr "Onjuist token voor Dropbox aanmelding ontvangen!"
1687
-
1688
- #: inc/class-page-editjob.php:34
1689
- #@ backwpup
1690
- msgid "No Dropbox authentication received!"
1691
- msgstr "Geen Dropbox aanmelding ontvangen!"
1692
-
1693
- #: inc/class-page-editjob.php:305
1694
- #, php-format
1695
- #@ backwpup
1696
- msgid "S3 bucket \"%s\" created."
1697
- msgstr "S3 bucket \"%s\" aangemaakt."
1698
-
1699
- #: inc/class-page-editjob.php:308
1700
- #: inc/class-page-editjob.php:311
1701
- #, php-format
1702
- #@ backwpup
1703
- msgid "S3 bucket create: %s"
1704
- msgstr "S3 bucket maken: %s"
1705
-
1706
- #: inc/class-page-editjob.php:321
1707
- #, php-format
1708
- #@ backwpup
1709
- msgid "MS azure container \"%s\" created."
1710
- msgstr "MS azure container \"%s\" aangemaakt."
1711
-
1712
- #: inc/class-page-editjob.php:324
1713
- #, php-format
1714
- #@ backwpup
1715
- msgid "MS azure container create: %s"
1716
- msgstr "MS azure container maken: %s"
1717
-
1718
- #: inc/class-page-editjob.php:336
1719
- #, php-format
1720
- #@ backwpup
1721
- msgid "Rackspase Cloud container \"%s\" created."
1722
- msgstr "Rackspase Cloud container \"%s\" aangemaakt."
1723
-
1724
- #: inc/class-page-editjob.php:339
1725
- #, php-format
1726
- #@ backwpup
1727
- msgid "Rackspase Cloud container create: %s"
1728
- msgstr "Rackspase Cloud container maken: %s"
1729
-
1730
- #: inc/class-page-editjob.php:347
1731
- #@ backwpup
1732
- msgid "Dropbox authentication deleted!"
1733
- msgstr "Dropbox aanmelding verwijderd!"
1734
-
1735
- #: inc/class-page-editjob.php:367
1736
- #, php-format
1737
- #@ backwpup
1738
- msgid "Job '%1' changes saved."
1739
- msgstr "Wijzigingen taak '%1' opgeslagen."
1740
-
1741
- #: inc/class-page-editjob.php:367
1742
- #@ backwpup
1743
- msgid "Jobs overview"
1744
- msgstr "Taakoverzicht"
1745
-
1746
- #: inc/class-page-editjob.php:373
1747
- #@ backwpup
1748
- msgid "Backup File"
1749
- msgstr "Backup-bestand"
1750
-
1751
- #: inc/class-page-editjob.php:374
1752
- #@ backwpup
1753
- msgid "Send log"
1754
- msgstr "Verzend logboek"
1755
-
1756
- #: inc/class-page-editjob.php:376
1757
- #@ backwpup
1758
- msgid "Backup to Folder"
1759
- msgstr "Backup naar map"
1760
-
1761
- #: inc/class-page-editjob.php:378
1762
- #@ backwpup
1763
- msgid "Backup to E-Mail"
1764
- msgstr "Backup naar email"
1765
-
1766
- #: inc/class-page-editjob.php:380
1767
- #@ backwpup
1768
- msgid "Backup to FTP Server"
1769
- msgstr "Backup naar FTP-server"
1770
-
1771
- #: inc/class-page-editjob.php:382
1772
- #@ backwpup
1773
- msgid "Backup to Dropbox"
1774
- msgstr "Backup naar Dropbox"
1775
-
1776
- #: inc/class-page-editjob.php:384
1777
- #@ backwpup
1778
- msgid "Backup to SugarSync"
1779
- msgstr "Backup naar SugarSync"
1780
-
1781
- #: inc/class-page-editjob.php:386
1782
- #@ backwpup
1783
- msgid "Backup to Amazon S3"
1784
- msgstr "Backup naar Amazon S3"
1785
-
1786
- #: inc/class-page-editjob.php:388
1787
- #@ backwpup
1788
- msgid "Backup to Google storage"
1789
- msgstr "Backup naar Google Cloud Storage"
1790
-
1791
- #: inc/class-page-editjob.php:390
1792
- #@ backwpup
1793
- msgid "Backup to Micosoft Azure (Blob)"
1794
- msgstr "Backup naar Microsoft Azure (Blob)"
1795
-
1796
- #: inc/class-page-editjob.php:392
1797
- #@ backwpup
1798
- msgid "Backup to Rackspace Cloud"
1799
- msgstr "Backup naar Rackspace Cloud"
1800
-
1801
- #: inc/class-page-backups-table.php:141
1802
- #@ backwpup
1803
- msgid "No Files found. (List will be generated on next backup)"
1804
- msgstr "Geen bestanden gevonden"
1805
-
1806
- #: inc/class-page-backups-table.php:168
1807
- #@ backwpup
1808
- msgid "Change Destination"
1809
- msgstr "Wijzig bestemming"
1810
-
1811
- #: inc/class-page-backups-table.php:213
1812
- #: inc/class-page-backups-table.php:215
1813
- #@ backwpup
1814
- msgid "Folder"
1815
- msgstr "Map"
1816
-
1817
- #: inc/class-page-backups-table.php:216
1818
- #@ backwpup
1819
- msgid "Time"
1820
- msgstr "Tijd"
1821
-
1822
- #: inc/class-page-backups-table.php:259
1823
- #@ backwpup
1824
- msgid ""
1825
- "You are about to delete this Backup Archive. \n"
1826
- " 'Cancel' to stop, 'OK' to delete."
1827
- msgstr ""
1828
- "Je staat op het punt om dit Backup-bestand te verwijderen. \n"
1829
- " 'Annuleer' om te stoppen, 'OK' om te verwijderen."
1830
-
1831
- #: inc/class-page-backups-table.php:274
1832
- #@ backwpup
1833
- msgid "?"
1834
- msgstr "?"
1835
-
1836
- #: job.php:36
1837
- #: job.php:62
1838
- #@ backwpup
1839
- msgid "JOBID check"
1840
- msgstr "JOBID controle"
1841
-
1842
- #: job.php:58
1843
- #@ backwpup
1844
- msgid "Nonce pre check"
1845
- msgstr "Nonce pre controle"
1846
-
1847
- #: job.php:60
1848
- #@ backwpup
1849
- msgid "Starttype check"
1850
- msgstr "Starttype controle"
1851
-
1852
- #: job.php:65
1853
- #: job.php:67
1854
- #: job.php:69
1855
- #: job.php:71
1856
- #@ backwpup
1857
- msgid "Nonce check"
1858
- msgstr "Nonce controle"
1859
-
1860
- #: job.php:78
1861
- #@ backwpup
1862
- msgid "Wrong JOBID check"
1863
- msgstr "Onjuist JOBID gevonden"
1864
-
1865
- #: job.php:85
1866
- #@ backwpup
1867
- msgid "API run on false time"
1868
- msgstr "API start op onjuiste tijd"
1869
-
1870
- #: job.php:89
1871
- #@ backwpup
1872
- msgid "Log folder not exists or is not writable"
1873
- msgstr "Logboek-map bestaat niet of is niet beschrijfbaar"
1874
-
1875
- #: job.php:91
1876
- #@ backwpup
1877
- msgid "Temp folder not exists or is not writable"
1878
- msgstr "Tijdelijke map bestaat niet of is niet beschrijfbaar"
1879
-
1880
- #: job.php:94
1881
- #@ backwpup
1882
- msgid "A job already running"
1883
- msgstr "Er is al een taak actief"
1884
-
1885
- #: job.php:96
1886
- #@ backwpup
1887
- msgid "No job running"
1888
- msgstr "Geen taak actief"
1889
-
1890
- #: inc/class-api.php:143
1891
- #@ default
1892
- msgid "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
1893
- msgstr "Er heeft zich overwachte HTTP fout voorgedaan gedurende het API-verzoek.</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Probeer opnieuw</a>"
1894
-
1895
- #: inc/class-api.php:147
1896
- #@ default
1897
- msgid "An unknown error occurred"
1898
- msgstr "Onbekende fout opgetreden"
1899
-
1900
- #. translators: plugin header field 'Name'
1901
- #: backwpup.php:0
1902
- #: backwpup.php:218
1903
- #: inc/class-adminbar.php:23
1904
- #@ backwpup
1905
- msgid "BackWPup"
1906
- msgstr "BackWPup"
1907
-
1908
- #: backwpup.php:228
1909
- #@ backwpup
1910
- msgid "Working Job"
1911
- msgstr "Actieve taak"
1912
-
1913
- #: backwpup.php:234
1914
- #@ backwpup
1915
- msgid "Watch Log"
1916
- msgstr "Bekijk logboek"
1917
-
1918
- #: backwpup.php:242
1919
- #: inc/class-adminbar.php:48
1920
- #@ backwpup
1921
- msgid "Backups"
1922
- msgstr "Backups"
1923
-
1924
- #: backwpup.php:245
1925
- #@ backwpup
1926
- msgid "Tools"
1927
- msgstr "Gereedschappen"
1928
-
1929
- #: backwpup.php:248
1930
- #@ backwpup
1931
- msgid "Settings"
1932
- msgstr "Instellingen"
1933
-
1934
- #: inc/class-help.php:17
1935
- #@ backwpup
1936
- msgid "Plugin Info"
1937
- msgstr "Plugin Info"
1938
-
1939
- #: inc/class-help.php:19
1940
- #: inc/class-help.php:31
1941
- #@ backwpup
1942
- msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1943
- msgstr "De maker van BackWPup is ABSOLUUT NIET AANSPRAKELIJK voor het gebruik van de plugin. Deze gratis software kunt je onder voorwaarden vrij verspreiden."
1944
-
1945
- #: inc/class-help.php:22
1946
- #: inc/class-help.php:32
1947
- #@ backwpup
1948
- msgid "For more information:"
1949
- msgstr "Voor meer informatie:"
1950
-
1951
- #: backwpup.php:264
1952
- #: inc/class-help.php:23
1953
- #: inc/class-help.php:33
1954
- #@ backwpup
1955
- msgid "<a href=\"http://backwpup.com/manual/\" target=\"_blank\">Documentation</a>"
1956
- msgstr "<a href=\"http://backwpup.com/manual/\" target=\"_blank\">Documentatie</a>"
1957
-
1958
- #: backwpup.php:265
1959
- #: inc/class-help.php:24
1960
- #: inc/class-help.php:34
1961
- #@ backwpup
1962
- msgid "<a href=\"http://backwpup.com/faq/\" target=\"_blank\">FAQ</a>"
1963
- msgstr "<a href=\"http://backwpup.com/faq/\" target=\"_blank\">FAQ</a>"
1964
-
1965
- #: backwpup.php:266
1966
- #: inc/class-help.php:25
1967
- #: inc/class-help.php:35
1968
- #@ backwpup
1969
- msgid "<a href=\"http://backwpup.com/forums/\" target=\"_blank\">Support Forums</a>"
1970
- msgstr "<a href=\"http://backwpup.com/forums/\" target=\"_blank\">Ondersteuningforums</a>"
1971
-
1972
- #: backwpup.php:267
1973
- #: inc/class-help.php:26
1974
- #: inc/class-help.php:36
1975
- #@ backwpup
1976
- msgid "<a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q3QSVRSFXBLSE\" target=\"_blank\">Donate</a>"
1977
- msgstr "<a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q3QSVRSFXBLSE\" target=\"_blank\">Doneer</a>"
1978
-
1979
- #: backwpup.php:283
1980
- #@ backwpup
1981
- msgid "BackWPup Active Jobs"
1982
- msgstr "BackWPup Actieve taken"
1983
-
1984
- #: inc/class-dashboard.php:33
1985
- #@ backwpup
1986
- msgid "View Log:"
1987
- msgstr "Logboek bekijken:"
1988
-
1989
- #: inc/class-dashboard.php:64
1990
- #@ backwpup
1991
- msgid "How many of the lastes logs would you like to display?"
1992
- msgstr "Hoeveel logboeken moeten worden getoond?"
1993
-
1994
- #: inc/class-dashboard.php:97
1995
- #, php-format
1996
- #@ backwpup
1997
- msgid "working since %d sec."
1998
- msgstr "actief sinds %d sec."
1999
-
2000
- #: inc/class-dashboard.php:104
2001
- #@ backwpup
2002
- msgid "Edit Job"
2003
- msgstr "Taak bewerken"
2004
-
2005
- #: inc/class-adminbar.php:27
2006
- #@ backwpup
2007
- msgid "See Working!"
2008
- msgstr "Zie actief!"
2009
-
2010
- #: inc/class-adminbar.php:61
2011
- #@ backwpup
2012
- msgid "Run Now"
2013
- msgstr "Starten"
2014
-
2015
- #: inc/functions.php:58
2016
- #@ backwpup
2017
- msgid "New"
2018
- msgstr "Nieuw"
2019
-
2020
- #: inc/functions.php:363
2021
- #@ backwpup
2022
- msgid "WP XML Export"
2023
- msgstr "WP XML export"
2024
-
2025
- #: inc/functions.php:369
2026
- #@ backwpup
2027
- msgid "Database Backup"
2028
- msgstr "Backup database"
2029
-
2030
- #: inc/functions.php:372
2031
- #@ backwpup
2032
- msgid "Optimize Database Tables"
2033
- msgstr "Optimalisatie DB-tabellen"
2034
-
2035
- #: inc/functions.php:375
2036
- #@ backwpup
2037
- msgid "Check Database Tables"
2038
- msgstr "Controle DB-tabellen"
2039
-
2040
- #: inc/class-job.php:53
2041
- #@ backwpup
2042
- msgid "Job restart terminated, because job runs!"
2043
- msgstr "Er is al een taak actief: taakstart afgebroken!"
2044
-
2045
- #: inc/class-job.php:58
2046
- #, php-format
2047
- #@ backwpup
2048
- msgid "Second process is running, but old job runs! Start type is %s"
2049
- msgstr "Tweede taak is actief! Taaktype is %s"
2050
-
2051
- #: inc/class-job.php:93
2052
- #@ backwpup
2053
- msgid "Step aborted has too many tries!"
2054
- msgstr "Max. aantal pogingen bereikt: taakstap afgebroken!"
2055
-
2056
- #: inc/class-job.php:95
2057
- #, php-format
2058
- #@ backwpup
2059
- msgid "Cannot find job step method %s!"
2060
- msgstr "Kan methode voor taakstappen niet vinden %s!"
2061
-
2062
- #: inc/class-job.php:121
2063
- #, php-format
2064
- #@ backwpup
2065
- msgid "Signal %d send to script!"
2066
- msgstr "Signaal %d naar naar script verzenden!"
2067
-
2068
- #: inc/class-job.php:126
2069
- #@ backwpup
2070
- msgid "Cannot restart on alternate cron...."
2071
- msgstr "Kan niet herstarten van alternatieve cron..."
2072
-
2073
- #: inc/class-job.php:128
2074
- #@ backwpup
2075
- msgid "To many restarts...."
2076
- msgstr "Te veel startpogingen..."
2077
-
2078
- #: inc/class-job.php:141
2079
- #, php-format
2080
- #@ backwpup
2081
- msgid "%d. Script stop! Will started again now!"
2082
- msgstr "%d. Script gestopt! Start opnieuw!"
2083
-
2084
- #: inc/class-job.php:158
2085
- #@ backwpup
2086
- msgid "Run!"
2087
- msgstr "Starten!"
2088
-
2089
- #: inc/class-job.php:292
2090
- #, php-format
2091
- #@ backwpup
2092
- msgid "BackWPup log for %1$s from %2$s at %3$s"
2093
- msgstr "BackWPup log voor %1$s van %2$s om %3$s"
2094
-
2095
- #: inc/class-job.php:293
2096
- #, php-format
2097
- #@ default
2098
- msgid "[INFO]: BackWPup version %1$s, WordPress version %4$s Copyright %2$s %3$s"
2099
- msgstr "[INFO]: BackWPup versie %1$s, WordPress versie %4$s Copyright %2$s %3$s"
2100
-
2101
- #: inc/class-job.php:295
2102
- #@ backwpup
2103
- msgid "[INFO]: BackWPup job:"
2104
- msgstr "[INFO]: BackWPup taak:"
2105
-
2106
- #: inc/class-job.php:297
2107
- #@ backwpup
2108
- msgid "[INFO]: BackWPup cron:"
2109
- msgstr "[INFO]: BackWPup cron:"
2110
-
2111
- #: inc/class-job.php:299
2112
- #@ backwpup
2113
- msgid "[INFO]: BackWPup job started from wp-cron"
2114
- msgstr "[INFO]: BackWPup taak gestart via wp-cron"
2115
-
2116
- #: inc/class-job.php:301
2117
- #@ backwpup
2118
- msgid "[INFO]: BackWPup job started manually"
2119
- msgstr "[INFO]: BackWPup taak handmatig gestart"
2120
-
2121
- #: inc/class-job.php:303
2122
- #@ backwpup
2123
- msgid "[INFO]: BackWPup job started external from url"
2124
- msgstr "[INFO]: BackWPup taak gestart vanuit een externe url"
2125
-
2126
- #: inc/class-job.php:305
2127
- #@ backwpup
2128
- msgid "[INFO]: BackWPup job started by its API"
2129
- msgstr "[INFO]: BackWPup gestart via API"
2130
-
2131
- #: inc/class-job.php:307
2132
- #@ backwpup
2133
- msgid "[INFO]: BackWPup job started form commandline"
2134
- msgstr "[INFO]: BackWPup gestart via een commandoregel"
2135
-
2136
- #: inc/class-job.php:308
2137
- #@ backwpup
2138
- msgid "[INFO]: PHP ver.:"
2139
- msgstr "[INFO]: PHP ver.:"
2140
-
2141
- #: inc/class-job.php:310
2142
- #, php-format
2143
- #@ backwpup
2144
- msgid "[INFO]: PHP Safe mode is ON! Maximum script execution time is %1$d sec."
2145
- msgstr "[INFO]: PHP veilige modus is AAN! Maximale toegestane verwerkingstijd is %1$d sec."
2146
-
2147
- #: inc/class-job.php:311
2148
- #, php-format
2149
- #@ backwpup
2150
- msgid "[INFO]: MySQL ver.: %s"
2151
- msgstr "[INFO]: MySQL ver.: %s"
2152
-
2153
- #: inc/class-job.php:314
2154
- #, php-format
2155
- #@ backwpup
2156
- msgid "[INFO]: curl ver.: %1$s; %2$s"
2157
- msgstr "[INFO]: curl ver.: %1$s; %2$s"
2158
-
2159
- #: inc/class-job.php:316
2160
- #, php-format
2161
- #@ backwpup
2162
- msgid "[INFO]: Temp folder is: %s"
2163
- msgstr "[INFO]: Tijdelijke map is: %s"
2164
-
2165
- #: inc/class-job.php:317
2166
- #, php-format
2167
- #@ backwpup
2168
- msgid "[INFO]: Logfile folder is: %s"
2169
- msgstr "[INFO]: Log-file map is: %s"
2170
-
2171
- #: inc/class-job.php:318
2172
- #, php-format
2173
- #@ backwpup
2174
- msgid "[INFO]: Backup type is: %s"
2175
- msgstr "[INFO]: Backup-type is: %s"
2176
-
2177
- #: inc/class-job.php:320
2178
- #, php-format
2179
- #@ backwpup
2180
- msgid "[INFO]: Backup file is: %s"
2181
- msgstr "[INFO]: Backup-bestand is: %s"
2182
-
2183
- #: inc/class-job.php:332
2184
- #@ backwpup
2185
- msgid "No destination defined for backup!!! Please correct job settings"
2186
- msgstr "Geen bestemming gedefinieerd voor backup-bestand!!! Corrigeer de taakinstellingen"
2187
-
2188
- #: inc/class-job.php:353
2189
- #, php-format
2190
- #@ backwpup
2191
- msgid "Cannot create folder: %1$s"
2192
- msgstr "Kan map niet maken: %1$s"
2193
-
2194
- #: inc/class-job.php:369
2195
- #, php-format
2196
- #@ backwpup
2197
- msgid "Not writable folder: %1$s"
2198
- msgstr "Map niet beschrijfbaar: %1$s"
2199
-
2200
- #: inc/class-job.php:382
2201
- #, php-format
2202
- #@ backwpup
2203
- msgid "Exception caught in %1$s: %2$s"
2204
- msgstr "Uitzondering gevonden in %1$s: %2$s"
2205
-
2206
- #: inc/class-job.php:415
2207
- #@ backwpup
2208
- msgid "WARNING:"
2209
- msgstr "WAARSCHUWING:"
2210
-
2211
- #: inc/class-job.php:428
2212
- #@ backwpup
2213
- msgid "DEPRECATED:"
2214
- msgstr "AFGESCHAFT:"
2215
-
2216
- #: inc/class-job.php:431
2217
- #@ backwpup
2218
- msgid "STRICT NOTICE:"
2219
- msgstr "BELANGRIJKE BERICHT:"
2220
-
2221
- #: inc/class-job.php:434
2222
- #@ backwpup
2223
- msgid "RECOVERABLE ERROR:"
2224
- msgstr "HERSTELBARE FOUT:"
2225
-
2226
- #: inc/class-job.php:497
2227
- #@ backwpup
2228
- msgid "Database connection is gone create a new one."
2229
- msgstr "Verbinding met database verbroken. Verbindt opnieuw."
2230
-
2231
- #: inc/class-job.php:558
2232
- #, php-format
2233
- #@ backwpup
2234
- msgid "One old log deleted"
2235
- msgid_plural "%d old logs deleted"
2236
- msgstr[0] "Een oud logboek verwijderd"
2237
- msgstr[1] "%d oude logboeken verwijderd"
2238
-
2239
- #: inc/class-job.php:564
2240
- #, php-format
2241
- #@ backwpup
2242
- msgid "Job done in %s sec."
2243
- msgstr "Taak afgerond in %s sec."
2244
-
2245
- #: inc/class-job.php:638
2246
- #, php-format
2247
- #@ backwpup
2248
- msgid "[%3$s] BackWPup log %1$s: %2$s"
2249
- msgstr "[%3$s] BackWPup logboek %1$s: %2$s"
2250
-
2251
- #: inc/class-job.php:665
2252
- #@ backwpup
2253
- msgid "Done!"
2254
- msgstr "Gereed!"
2255
-
2256
- #: inc/class-job.php:679
2257
- #@ backwpup
2258
- msgid "Set Blog to maintenance mode"
2259
- msgstr "Zet de blog in onderhoudsmodus"
2260
-
2261
- #: inc/class-job.php:689
2262
- #@ backwpup
2263
- msgid "Cannot set Blog to maintenance mode! Root folder is not writable!"
2264
- msgstr "Kan blog niet in onderhoudsmodus zetten! Hoofd-map is niet beschrijfbaar!"
2265
-
2266
- #: inc/class-job.php:692
2267
- #@ backwpup
2268
- msgid "Set Blog to normal mode"
2269
- msgstr "Zet de blog in normale modus"
2270
-
2271
- #: inc/class-job.php:741
2272
- #, php-format
2273
- #@ backwpup
2274
- msgid "Memory increased from %1$s to %2$s"
2275
- msgstr "Geheugen vergroot van %1$s naar %2$s"
2276
-
2277
- #: inc/class-job.php:743
2278
- #, php-format
2279
- #@ backwpup
2280
- msgid "Cannot increase memory limit is %1$s"
2281
- msgstr "Kan geheugen niet vergroten. De limiet is %1$s"
2282
-
2283
- #: inc/class-job.php:989
2284
- #, php-format
2285
- #@ backwpup
2286
- msgid "%d. Try for database dump..."
2287
- msgstr "%d. Database dump starten..."
2288
-
2289
- #: inc/class-job.php:1021
2290
- #, php-format
2291
- #@ backwpup
2292
- msgid "Cannot create database dump file! \"%s\""
2293
- msgstr "Kan database dump-bestand niet maken! \"%s\""
2294
-
2295
- #: inc/class-job.php:1032
2296
- #: inc/class-job.php:1042
2297
- #: inc/class-job.php:1107
2298
- #: inc/class-job.php:1138
2299
- #: inc/class-job.php:1260
2300
- #: inc/class-job.php:1276
2301
- #: inc/class-job.php:1290
2302
- #: inc/class-job.php:1325
2303
- #: inc/class-job.php:1336
2304
- #: inc/class-job.php:1350
2305
- #: inc/class-job.php:1360
2306
- #, php-format
2307
- #@ backwpup
2308
- msgid "Database error %1$s for query %2$s"
2309
- msgstr "Database fout %1$s met query %2$s"
2310
-
2311
- #: inc/class-job.php:1049
2312
- #@ backwpup
2313
- msgid "No tables to dump"
2314
- msgstr "Geen tabellen voor dump gevonden"
2315
-
2316
- #: inc/class-job.php:1094
2317
- #, php-format
2318
- #@ backwpup
2319
- msgid "Dump database table \"%s\""
2320
- msgstr "Dump database tabel \"%s\""
2321
-
2322
- #: inc/class-job.php:1230
2323
- #@ backwpup
2324
- msgid "Database dump done!"
2325
- msgstr "Database dump gereed!"
2326
-
2327
- #: inc/class-job.php:1237
2328
- #, php-format
2329
- #@ backwpup
2330
- msgid "Added database dump \"%1$s\" with %2$s to backup file list"
2331
- msgstr "Database dump \"%1$s\" van %2$s toegevoegd aan lijst met backup-bestanden"
2332
-
2333
- #: inc/class-job.php:1252
2334
- #, php-format
2335
- #@ backwpup
2336
- msgid "%d. Try for database check..."
2337
- msgstr "%d. Database controle starten..."
2338
-
2339
- #: inc/class-job.php:1280
2340
- #: inc/class-job.php:1282
2341
- #: inc/class-job.php:1284
2342
- #, php-format
2343
- #@ backwpup
2344
- msgid "Result of table check for %1$s is: %2$s"
2345
- msgstr "Controle-resultaat van tabel %1$s is: %2$s"
2346
-
2347
- #: inc/class-job.php:1294
2348
- #: inc/class-job.php:1296
2349
- #: inc/class-job.php:1298
2350
- #, php-format
2351
- #@ backwpup
2352
- msgid "Result of table repair for %1$s is: %2$s"
2353
- msgstr "Reparatie-resultaat van table %1$s is: %2$s"
2354
-
2355
- #: inc/class-job.php:1304
2356
- #@ backwpup
2357
- msgid "Database check done!"
2358
- msgstr "Database controle gereed!"
2359
-
2360
- #: inc/class-job.php:1306
2361
- #@ backwpup
2362
- msgid "No tables to check"
2363
- msgstr "Geen tabellen om te controleren"
2364
-
2365
- #: inc/class-job.php:1317
2366
- #, php-format
2367
- #@ backwpup
2368
- msgid "%d. Try for database optimize..."
2369
- msgstr "%d. Database optimalisatie starten..."
2370
-
2371
- #: inc/class-job.php:1352
2372
- #: inc/class-job.php:1354
2373
- #: inc/class-job.php:1356
2374
- #, php-format
2375
- #@ backwpup
2376
- msgid "Result of table optimize for %1$s is: %2$s"
2377
- msgstr "Optimalisatie-resultaat van tabel %1$s is: %2$s"
2378
-
2379
- #: inc/class-job.php:1362
2380
- #, php-format
2381
- #@ backwpup
2382
- msgid "InnoDB Table %1$s optimize done"
2383
- msgstr "Optimalisatie InnoDB tabel %1$s gereed!"
2384
-
2385
- #: inc/class-job.php:1367
2386
- #@ backwpup
2387
- msgid "Database optimize done!"
2388
- msgstr "Database optimalisatie gereed!"
2389
-
2390
- #: inc/class-job.php:1370
2391
- #@ backwpup
2392
- msgid "No tables to optimize"
2393
- msgstr "Geen tabellen gevonden voor optimalisatie"
2394
-
2395
- #: inc/class-job.php:1382
2396
- #, php-format
2397
- #@ backwpup
2398
- msgid "%d. Try to make a WordPress Export to XML file..."
2399
- msgstr "%d. WordPress naar XML-bestand exporteren..."
2400
-
2401
- #: inc/class-job.php:1427
2402
- #, php-format
2403
- #@ backwpup
2404
- msgid "Added XML export \"%1$s\" with %2$s to backup file list"
2405
- msgstr "XML export \"%1$s\" van %2$s toegevoegd aan lijst met backup-bestanden"
2406
-
2407
- #: inc/class-job.php:1515
2408
- #, php-format
2409
- #@ backwpup
2410
- msgid "%d. Try to make list of folder to backup...."
2411
- msgstr "%d. Lijst van mappen maken die in backup worden opgenomen..."
2412
-
2413
- #: inc/class-job.php:1576
2414
- #: inc/class-job.php:1581
2415
- #: inc/class-job.php:1587
2416
- #: inc/class-job.php:1593
2417
- #: inc/class-job.php:1599
2418
- #: inc/class-job.php:1605
2419
- #, php-format
2420
- #@ backwpup
2421
- msgid "Added \"%s\" to backup file list"
2422
- msgstr "\"%s\" toegevoegd aan lijst met backup-bestanden"
2423
-
2424
- #: inc/class-job.php:1610
2425
- #@ backwpup
2426
- msgid "No Folder to backup"
2427
- msgstr "Geen map voor backup gevonden"
2428
-
2429
- #: inc/class-job.php:1612
2430
- #, php-format
2431
- #@ backwpup
2432
- msgid "%1$d Folders to backup"
2433
- msgstr "%1$d Mappen in de backup"
2434
-
2435
- #: inc/class-job.php:1647
2436
- #, php-format
2437
- #@ backwpup
2438
- msgid "Folder \"%s\" is not readable!"
2439
- msgstr "Map \"%s\" kan niet worden gelezen!"
2440
-
2441
- #: inc/class-job.php:1681
2442
- #, php-format
2443
- #@ backwpup
2444
- msgid "File \"%s\" is not readable!"
2445
- msgstr "Bestand \"%s\" kan niet worden gelezen!"
2446
-
2447
- #: inc/class-job.php:1683
2448
- #, php-format
2449
- #@ backwpup
2450
- msgid "Link \"%s\" not followed"
2451
- msgstr "Link \"%s\" niet gevolgd"
2452
-
2453
- #: inc/class-job.php:1703
2454
- #, php-format
2455
- #@ backwpup
2456
- msgid "%d. Trying to create backup zip archive..."
2457
- msgstr "%d. Backup-bestand (zip) maken..."
2458
-
2459
- #: inc/class-job.php:1708
2460
- #, php-format
2461
- #@ backwpup
2462
- msgid "Cannot create backup zip archive: %d!"
2463
- msgstr "Kan backup-bestand niet maken: %d!"
2464
-
2465
- #: inc/class-job.php:1717
2466
- #: inc/class-job.php:1736
2467
- #, php-format
2468
- #@ backwpup
2469
- msgid "Cannot add \"%s\" to zip archive!"
2470
- msgstr "Kan \"%s\" niet toevoegen aan backup-bestand!"
2471
-
2472
- #: inc/class-job.php:1729
2473
- #, php-format
2474
- #@ backwpup
2475
- msgid "Cannot add dir \"%s\" to zip archive!"
2476
- msgstr "Kan map \"%s\" niet toevoegen aan backup-bestand!"
2477
-
2478
- #: inc/class-job.php:1745
2479
- #: inc/class-job.php:1777
2480
- #@ backwpup
2481
- msgid "(4) ER_SEEK"
2482
- msgstr "(4) ER_SEEK"
2483
-
2484
- #: inc/class-job.php:1747
2485
- #: inc/class-job.php:1779
2486
- #@ backwpup
2487
- msgid "(5) ER_READ"
2488
- msgstr "(5) ER_READ"
2489
-
2490
- #: inc/class-job.php:1749
2491
- #: inc/class-job.php:1781
2492
- #@ backwpup
2493
- msgid "(9) ER_NOENT"
2494
- msgstr "(9) ER_NOENT"
2495
-
2496
- #: inc/class-job.php:1751
2497
- #: inc/class-job.php:1783
2498
- #@ backwpup
2499
- msgid "(10) ER_EXISTS"
2500
- msgstr "(10) ER_EXISTS"
2501
-
2502
- #: inc/class-job.php:1753
2503
- #: inc/class-job.php:1785
2504
- #@ backwpup
2505
- msgid "(11) ER_OPEN"
2506
- msgstr "(11) ER_OPEN"
2507
-
2508
- #: inc/class-job.php:1755
2509
- #: inc/class-job.php:1787
2510
- #@ backwpup
2511
- msgid "(14) ER_MEMORY"
2512
- msgstr "(14) ER_MEMORY"
2513
-
2514
- #: inc/class-job.php:1757
2515
- #: inc/class-job.php:1789
2516
- #@ backwpup
2517
- msgid "(18) ER_INVAL"
2518
- msgstr "(18) ER_INVAL"
2519
-
2520
- #: inc/class-job.php:1759
2521
- #: inc/class-job.php:1791
2522
- #@ backwpup
2523
- msgid "(19) ER_NOZIP"
2524
- msgstr "(19) ER_NOZIP"
2525
-
2526
- #: inc/class-job.php:1761
2527
- #: inc/class-job.php:1793
2528
- #@ backwpup
2529
- msgid "(21) ER_INCONS"
2530
- msgstr "(21) ER_INCONS"
2531
-
2532
- #: inc/class-job.php:1762
2533
- #: inc/class-job.php:1794
2534
- #, php-format
2535
- #@ backwpup
2536
- msgid "Zip returns status: %s"
2537
- msgstr "Status zip-resultaat: %s"
2538
-
2539
- #: inc/class-job.php:1797
2540
- #: inc/class-job.php:1835
2541
- #@ backwpup
2542
- msgid "Backup zip archive created"
2543
- msgstr "Backup-bestand gemaakt"
2544
-
2545
- #: inc/class-job.php:1807
2546
- #, php-format
2547
- #@ backwpup
2548
- msgid "%d. Trying to create backup zip (PclZip) archive..."
2549
- msgstr "%d. Backup-bestand (PclZip) maken..."
2550
-
2551
- #: inc/class-job.php:1816
2552
- #: inc/class-job.php:1829
2553
- #, php-format
2554
- #@ backwpup
2555
- msgid "Zip archive add error: %s"
2556
- msgstr "Zip toevoeg-fout: %s"
2557
-
2558
- #: inc/class-job.php:1846
2559
- #@ backwpup
2560
- msgid "Cannot create tar arcive file!"
2561
- msgstr "Kan tar-bestand niet maken!"
2562
-
2563
- #: inc/class-job.php:1850
2564
- #, php-format
2565
- #@ backwpup
2566
- msgid "%1$d. Trying to create %2$s archive file..."
2567
- msgstr "%1$d. Backup-bestand %2$s maken..."
2568
-
2569
- #: inc/class-job.php:1884
2570
- #, php-format
2571
- #@ backwpup
2572
- msgid "%s archive created"
2573
- msgstr "%s backup-bestand gemaakt"
2574
-
2575
- #: inc/class-job.php:1889
2576
- #, php-format
2577
- #@ backwpup
2578
- msgid "Archive size is %s"
2579
- msgstr "Backup-bestand is %s"
2580
-
2581
- #: inc/class-job.php:1890
2582
- #, php-format
2583
- #@ backwpup
2584
- msgid " %1$d Files with %2$s in Archive"
2585
- msgstr " %1$d Bestanden met %2$s in backup-bestand"
2586
-
2587
- #: inc/class-job.php:1913
2588
- #, php-format
2589
- #@ backwpup
2590
- msgid "File name \"%1$s\" to long to save correctly in %2$s archive!"
2591
- msgstr "Bestandsnaam \"%1$s\" te lang om correct te kunnen opslaan in %2$s backup-bestand!"
2592
-
2593
- #: inc/class-job.php:1915
2594
- #, php-format
2595
- #@ backwpup
2596
- msgid "File path \"%1$s\" to long to save correctly in %2$s archive!"
2597
- msgstr "Bestandspad \"%1$s\" te lang om correct te kunnen opslaan in %2$s backup-bestand!"
2598
-
2599
- #: inc/class-job.php:1920
2600
- #: inc/class-job.php:1921
2601
- #@ backwpup
2602
- msgid "Unknown"
2603
- msgstr "Onbekend"
2604
-
2605
- #: inc/class-job.php:2026
2606
- #, php-format
2607
- #@ backwpup
2608
- msgid "One backup file deleted"
2609
- msgid_plural "%d backup files deleted"
2610
- msgstr[0] "Een backup-bestand verwijderd"
2611
- msgstr[1] "%d backup-bestanden verwijderd"
2612
-
2613
- #: inc/class-job.php:2037
2614
- #, php-format
2615
- #@ backwpup
2616
- msgid "%d. Try to sync files with folder..."
2617
- msgstr "%d. Bestanden met map synchroniseren..."
2618
-
2619
- #: inc/class-job.php:2039
2620
- #@ backwpup
2621
- msgid "No files/folder will deleted on destination!"
2622
- msgstr "Geen bestanden/mappen verwijderd op bestemming!"
2623
-
2624
- #: inc/class-job.php:2077
2625
- #, php-format
2626
- #@ backwpup
2627
- msgid "File or folder \"%s\" is not readable!"
2628
- msgstr "Bestand of map \"%s\" is onleesbaar!"
2629
-
2630
- #: inc/class-job.php:2084
2631
- #, php-format
2632
- #@ backwpup
2633
- msgid "Folder deleted %s"
2634
- msgstr "Map verwijderd %s"
2635
-
2636
- #: inc/class-job.php:2098
2637
- #, php-format
2638
- #@ backwpup
2639
- msgid "File deleted %s"
2640
- msgstr "Bestand verwijderd %s"
2641
-
2642
- #: inc/class-job.php:2118
2643
- #, php-format
2644
- #@ backwpup
2645
- msgid "%d. Try to sending backup file to Dropbox..."
2646
- msgstr "%d. Backup-bestand naar Dropbox verzenden..."
2647
-
2648
- #: inc/class-job.php:2126
2649
- #, php-format
2650
- #@ backwpup
2651
- msgid "Authed with Dropbox from %s"
2652
- msgstr "Aangemeld bij Dropbox met %s"
2653
-
2654
- #: inc/class-job.php:2131
2655
- #@ backwpup
2656
- msgid "No free space left on Dropbox!!!"
2657
- msgstr "Geen vrije ruimte op Dropbox!!"
2658
-
2659
- #: inc/class-job.php:2135
2660
- #, php-format
2661
- #@ backwpup
2662
- msgid "%s free on Dropbox"
2663
- msgstr "%s vrij op Dropbox"
2664
-
2665
- #: inc/class-job.php:2141
2666
- #@ backwpup
2667
- msgid "Upload to Dropbox now started... "
2668
- msgstr "Verzending naar Dropbox gestart..."
2669
-
2670
- #: inc/class-job.php:2147
2671
- #: inc/class-job.php:2400
2672
- #: inc/class-job.php:2492
2673
- #: inc/class-job.php:2614
2674
- #: inc/class-job.php:2803
2675
- #, php-format
2676
- #@ backwpup
2677
- msgid "Backup transferred to %s"
2678
- msgstr "Backup-bestand verzonden naar %s"
2679
-
2680
- #: inc/class-job.php:2150
2681
- #@ backwpup
2682
- msgid "Uploaded file size and local file size not the same!!!"
2683
- msgstr "Bestandsgrootte locale en verzonden bestand ongelijk!!!"
2684
-
2685
- #: inc/class-job.php:2152
2686
- #, php-format
2687
- #@ backwpup
2688
- msgid "Error on transfer backup to Dropbox: %s"
2689
- msgstr "Fout tijdens verzending backup-bestand naar Dropbox: %s"
2690
-
2691
- #: inc/class-job.php:2156
2692
- #: inc/class-job.php:2202
2693
- #, php-format
2694
- #@ backwpup
2695
- msgid "Dropbox API: %s"
2696
- msgstr "Dropbox API: %s"
2697
-
2698
- #: inc/class-job.php:2194
2699
- #, php-format
2700
- #@ backwpup
2701
- msgid "Error on delete file on Dropbox: %s"
2702
- msgstr "Fout bij verwijderen bestand van Dropbox: %s"
2703
-
2704
- #: inc/class-job.php:2197
2705
- #, php-format
2706
- #@ backwpup
2707
- msgid "One file deleted on Dropbox"
2708
- msgid_plural "%d files deleted on Dropbox"
2709
- msgstr[0] "Een bestand verwijderd van Dropbox"
2710
- msgstr[1] "%d bestanden verwijderd van Dropbox"
2711
-
2712
- #: inc/class-job.php:2214
2713
- #, php-format
2714
- #@ backwpup
2715
- msgid "%d. Try to sending backup file to a FTP Server..."
2716
- msgstr "%d. Backup-bestand naar FTP-server verzenden..."
2717
-
2718
- #: inc/class-job.php:2222
2719
- #, php-format
2720
- #@ backwpup
2721
- msgid "Connected by SSL-FTP to Server: %s"
2722
- msgstr "Via SSL verbonden met FTP-server: %s"
2723
-
2724
- #: inc/class-job.php:2224
2725
- #, php-format
2726
- #@ backwpup
2727
- msgid "Cannot connect by SSL-FTP to Server: %s"
2728
- msgstr "Kan via SSL niet verbinden met FTP-server: %s"
2729
-
2730
- #: inc/class-job.php:2228
2731
- #@ backwpup
2732
- msgid "PHP function to connect with SSL-FTP to server not exists!"
2733
- msgstr "PHP-functie voor SSL-verbinding naar FTP-server bestaat niet!"
2734
-
2735
- #: inc/class-job.php:2235
2736
- #, php-format
2737
- #@ backwpup
2738
- msgid "Connected to FTP server: %s"
2739
- msgstr "Verbonden met FTP-server: %s"
2740
-
2741
- #: inc/class-job.php:2237
2742
- #, php-format
2743
- #@ backwpup
2744
- msgid "Cannot connect to FTP server: %s"
2745
- msgstr "Kan niet verbinden met FTP-server: %s"
2746
-
2747
- #: inc/class-job.php:2243
2748
- #: inc/class-job.php:2250
2749
- #: inc/class-job.php:2261
2750
- #: inc/class-job.php:2274
2751
- #, php-format
2752
- #@ backwpup
2753
- msgid "FTP Client command: %s"
2754
- msgstr "FTP-client commando: %s"
2755
-
2756
- #: inc/class-job.php:2245
2757
- #: inc/class-job.php:2248
2758
- #: inc/class-job.php:2252
2759
- #: inc/class-job.php:2264
2760
- #: inc/class-job.php:2266
2761
- #: inc/class-job.php:2269
2762
- #: inc/class-job.php:2271
2763
- #: inc/class-job.php:2277
2764
- #: inc/class-job.php:2279
2765
- #, php-format
2766
- #@ backwpup
2767
- msgid "FTP Server reply: %s"
2768
- msgstr "Antwoord van FTP-server: %s"
2769
-
2770
- #: inc/class-job.php:2264
2771
- #@ backwpup
2772
- msgid "Entering Passive Mode"
2773
- msgstr "Passive mode starten"
2774
-
2775
- #: inc/class-job.php:2266
2776
- #@ backwpup
2777
- msgid "Cannot Entering Passive Mode"
2778
- msgstr "Kan Passive mode niet starten"
2779
-
2780
- #: inc/class-job.php:2269
2781
- #@ backwpup
2782
- msgid "Entering Normal Mode"
2783
- msgstr "Normal mode starten"
2784
-
2785
- #: inc/class-job.php:2271
2786
- #@ backwpup
2787
- msgid "Cannot Entering Normal Mode"
2788
- msgstr "Kan Normal mode niet starten"
2789
-
2790
- #: inc/class-job.php:2279
2791
- #@ backwpup
2792
- msgid "Error getting SYSTYPE"
2793
- msgstr "Fout verkregen van SYSTYPE"
2794
-
2795
- #: inc/class-job.php:2289
2796
- #, php-format
2797
- #@ backwpup
2798
- msgid "FTP Folder \"%s\" created!"
2799
- msgstr "FTP-map \"%s\" gemaakt!"
2800
-
2801
- #: inc/class-job.php:2292
2802
- #, php-format
2803
- #@ backwpup
2804
- msgid "FTP Folder \"%s\" cannot created!"
2805
- msgstr "FTP-map \"%s\" kan niet worden gemaakt!"
2806
-
2807
- #: inc/class-job.php:2297
2808
- #@ backwpup
2809
- msgid "Upload to FTP now started ... "
2810
- msgstr "Verzending naar FTP-server gestart ..."
2811
-
2812
- #: inc/class-job.php:2300
2813
- #, php-format
2814
- #@ backwpup
2815
- msgid "Backup transferred to FTP server: %s"
2816
- msgstr "Backup-bestand verzonden naar FTP-server: %s"
2817
-
2818
- #: inc/class-job.php:2304
2819
- #@ backwpup
2820
- msgid "Cannot transfer backup to FTP server!"
2821
- msgstr "Kan backup-bestand niet verzenden naar FTP-server!"
2822
-
2823
- #: inc/class-job.php:2347
2824
- #, php-format
2825
- #@ backwpup
2826
- msgid "Cannot delete \"%s\" on FTP server!"
2827
- msgstr "Kan \"%s\" niet verwijderen van FTP-server!"
2828
-
2829
- #: inc/class-job.php:2351
2830
- #, php-format
2831
- #@ backwpup
2832
- msgid "One file deleted on FTP Server"
2833
- msgid_plural "%d files deleted on FTP Server"
2834
- msgstr[0] "Een bestand verwijderd van de FTP-server"
2835
- msgstr[1] "%d bestanden verwijderd van de FTP-Server"
2836
-
2837
- #: inc/class-job.php:2367
2838
- #, php-format
2839
- #@ backwpup
2840
- msgid "%d. Try to sending backup file to Amazon S3..."
2841
- msgstr "%d. Backup-bestand naar Amazon S3 verzenden..."
2842
-
2843
- #: inc/class-job.php:2376
2844
- #, php-format
2845
- #@ backwpup
2846
- msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
2847
- msgstr "Verbonden met S3 Bucket \"%1$s\" in %2$s"
2848
-
2849
- #: inc/class-job.php:2378
2850
- #, php-format
2851
- #@ backwpup
2852
- msgid "S3 Bucket \"%s\" not exists!"
2853
- msgstr "S3 Bucket \"%s\" bestaat niet!"
2854
-
2855
- #: inc/class-job.php:2395
2856
- #@ backwpup
2857
- msgid "Upload to Amazon S3 now started... "
2858
- msgstr "Verzending naar Amazon S3 gestart..."
2859
-
2860
- #: inc/class-job.php:2404
2861
- #, php-format
2862
- #@ backwpup
2863
- msgid "Cannot transfer backup to S3! (%1$d) %2$s"
2864
- msgstr "Kan backup-bestand niet verzenden naar S3! (%1$d) %2$s"
2865
-
2866
- #: inc/class-job.php:2408
2867
- #: inc/class-job.php:2454
2868
- #, php-format
2869
- #@ backwpup
2870
- msgid "Amazon API: %s"
2871
- msgstr "Amazon API: %s"
2872
-
2873
- #: inc/class-job.php:2445
2874
- #, php-format
2875
- #@ backwpup
2876
- msgid "Cannot delete backup from S3://%s"
2877
- msgstr "Kan backup niet verwijderen van S3://%s"
2878
-
2879
- #: inc/class-job.php:2448
2880
- #, php-format
2881
- #@ backwpup
2882
- msgid "One file deleted on S3 Bucket"
2883
- msgid_plural "%d files deleted on S3 Bucket"
2884
- msgstr[0] "Een bestand verwijderd van S3 Bucket"
2885
- msgstr[1] "%d bestanden verwijderd van S3 Bucket"
2886
-
2887
- #: inc/class-job.php:2466
2888
- #, php-format
2889
- #@ backwpup
2890
- msgid "%d. Try to sending backup file to Google Storage..."
2891
- msgstr "%d. Backup-bestand naar Google Storage verzenden..."
2892
-
2893
- #: inc/class-job.php:2474
2894
- #, php-format
2895
- #@ backwpup
2896
- msgid "Connected to Google Storage Bucket \"%1$s\""
2897
- msgstr "Verbonden met Google Storage Bucket \"%1$s\""
2898
-
2899
- #: inc/class-job.php:2476
2900
- #, php-format
2901
- #@ backwpup
2902
- msgid "Google Storage Bucket \"%s\" not exists!"
2903
- msgstr "Google Storage Bucket \"%s\" bestaat niet!"
2904
-
2905
- #: inc/class-job.php:2487
2906
- #@ backwpup
2907
- msgid "Upload to Google Storage now started... "
2908
- msgstr "Verzending naar Google Cloud Storage gestart..."
2909
-
2910
- #: inc/class-job.php:2496
2911
- #, php-format
2912
- #@ backwpup
2913
- msgid "Cannot transfer backup to Google Storage! (%1$d) %2$s"
2914
- msgstr "Kan backup-bestand niet verzenden naar Google Storage! (%1$d) %2$s"
2915
-
2916
- #: inc/class-job.php:2500
2917
- #: inc/class-job.php:2546
2918
- #, php-format
2919
- #@ backwpup
2920
- msgid "Google Storage API: %s"
2921
- msgstr "Google Storage API: %s"
2922
-
2923
- #: inc/class-job.php:2537
2924
- #, php-format
2925
- #@ backwpup
2926
- msgid "Cannot delete backup from Google Storage://%s"
2927
- msgstr "Kan backup-file niet verwijderen van Google Storage://%s"
2928
-
2929
- #: inc/class-job.php:2540
2930
- #, php-format
2931
- #@ backwpup
2932
- msgid "One file deleted on Google Storage Bucket"
2933
- msgid_plural "%d files deleted on Google Storage Bucket"
2934
- msgstr[0] "Een bestand verwijderd van de Google Storage Bucket"
2935
- msgstr[1] "%d bestanden verwijderd van de Google Storage Bucket"
2936
-
2937
- #: inc/class-job.php:2558
2938
- #, php-format
2939
- #@ backwpup
2940
- msgid "%d. Try to sending backup with mail..."
2941
- msgstr "%d. Email verzending backup-bestand starten..."
2942
-
2943
- #: inc/class-job.php:2563
2944
- #@ backwpup
2945
- msgid "Backup archive too big for sending by mail!"
2946
- msgstr "Backup-bestand te groot voor verzending via email!"
2947
-
2948
- #: inc/class-job.php:2570
2949
- #@ backwpup
2950
- msgid "Sending mail..."
2951
- msgstr "Verzending email..."
2952
-
2953
- #: inc/class-job.php:2578
2954
- #, php-format
2955
- #@ backwpup
2956
- msgid "BackWPup archive from %1$s: %2$s"
2957
- msgstr "BackWPup backup-bestand van %1$s: %2$s"
2958
-
2959
- #: inc/class-job.php:2579
2960
- #, php-format
2961
- #@ backwpup
2962
- msgid "Backup archive: %s"
2963
- msgstr "Backup-bestand: %s"
2964
-
2965
- #: inc/class-job.php:2583
2966
- #@ backwpup
2967
- msgid "Error on sending mail!"
2968
- msgstr "Fout bij verzending email!"
2969
-
2970
- #: inc/class-job.php:2586
2971
- #@ backwpup
2972
- msgid "Mail sent."
2973
- msgstr "Email verzonden."
2974
-
2975
- #: inc/class-job.php:2597
2976
- #, php-format
2977
- #@ backwpup
2978
- msgid "%d. Try sending backup to a Microsoft Azure (Blob)..."
2979
- msgstr "%d. Verzending backup-bestand naar Microsoft Azure (Blob) starten..."
2980
-
2981
- #: inc/class-job.php:2602
2982
- #, php-format
2983
- #@ backwpup
2984
- msgid "Microsoft Azure container \"%s\" not exists!"
2985
- msgstr "Microsoft Azure container \"%s\" bestaat niet!"
2986
-
2987
- #: inc/class-job.php:2605
2988
- #, php-format
2989
- #@ backwpup
2990
- msgid "Connected to Microsoft Azure container \"%s\""
2991
- msgstr "Verbonden met Microsoft Azure container \"%s\""
2992
-
2993
- #: inc/class-job.php:2608
2994
- #@ backwpup
2995
- msgid "Upload to MS Azure now started... "
2996
- msgstr "Verzending naar MS Azure gestart..."
2997
-
2998
- #: inc/class-job.php:2618
2999
- #@ backwpup
3000
- msgid "Cannot transfer backup to Microsoft Azure!"
3001
- msgstr "Kan backup-bestand niet verzenden naar Microsoft Azure!"
3002
-
3003
- #: inc/class-job.php:2653
3004
- #, php-format
3005
- #@ backwpup
3006
- msgid "One file deleted on Microsoft Azure container"
3007
- msgid_plural "%d files deleted on Microsoft Azure container"
3008
- msgstr[0] "Een bestand verwijderd van de Microsoft Azure container"
3009
- msgstr[1] "%d bestanden verwijderd van de Microsoft Azure container"
3010
-
3011
- #: inc/class-job.php:2658
3012
- #, php-format
3013
- #@ backwpup
3014
- msgid "Microsoft Azure API: %s"
3015
- msgstr "Microsoft Azure API: %s"
3016
-
3017
- #: inc/class-job.php:2671
3018
- #, php-format
3019
- #@ backwpup
3020
- msgid "%d. Try to sending backup file to Rackspace cloud..."
3021
- msgstr "%d. Verzending backup-bestand naar Rackspace cloud starten..."
3022
-
3023
- #: inc/class-job.php:2676
3024
- #@ backwpup
3025
- msgid "Connected to Rackspase cloud ..."
3026
- msgstr "Verbonden met Rackspase cloud..."
3027
-
3028
- #: inc/class-job.php:2692
3029
- #: inc/class-job.php:2718
3030
- #: inc/class-job.php:2763
3031
- #, php-format
3032
- #@ backwpup
3033
- msgid "Rackspase Cloud API: %s"
3034
- msgstr "Rackspase Cloud API: %s"
3035
-
3036
- #: inc/class-job.php:2697
3037
- #@ backwpup
3038
- msgid "Rackspase cloud Container not exists:"
3039
- msgstr "Rackspase cloud container bestaat niet:"
3040
-
3041
- #: inc/class-job.php:2708
3042
- #@ backwpup
3043
- msgid "Upload to Rackspase cloud now started ... "
3044
- msgstr "Verzending naar Rackspase Cloud gestart ..."
3045
-
3046
- #: inc/class-job.php:2711
3047
- #@ backwpup
3048
- msgid "Backup File transferred to RSC://"
3049
- msgstr "Backup-bestand verzonden naar Rackspase cloud://"
3050
-
3051
- #: inc/class-job.php:2715
3052
- #@ backwpup
3053
- msgid "Cannot transfer backup to Rackspase cloud."
3054
- msgstr "Kan backup-bestand niet verzenden naar Rackspase cloud."
3055
-
3056
- #: inc/class-job.php:2755
3057
- #@ backwpup
3058
- msgid "Cannot delete file on RSC://"
3059
- msgstr "Kan bestand niet verwijderen van Rackspase cloud://"
3060
-
3061
- #: inc/class-job.php:2758
3062
- #, php-format
3063
- #@ backwpup
3064
- msgid "One file deleted on Rackspase cloud container"
3065
- msgid_plural "%d files deleted on Rackspase cloud container"
3066
- msgstr[0] "Een bestand verwijderd van de Rackspase Cloud container"
3067
- msgstr[1] "%d bestanden verwijderd van de Rackspase Cloud container"
3068
-
3069
- #: inc/class-job.php:2775
3070
- #, php-format
3071
- #@ backwpup
3072
- msgid "%d. Try to sending backup to SugarSync..."
3073
- msgstr "%d. Verzending backup-bestand naar SugarSync starten..."
3074
-
3075
- #: inc/class-job.php:2781
3076
- #, php-format
3077
- #@ backwpup
3078
- msgid "Authed to SugarSync with Nick %s"
3079
- msgstr "Aangemeld bij SugarSync met Nick %s"
3080
-
3081
- #: inc/class-job.php:2784
3082
- #@ backwpup
3083
- msgid "No free space left on SugarSync!!!"
3084
- msgstr "Geen vrije ruimte beschikbaar op SugarSync!!!"
3085
-
3086
- #: inc/class-job.php:2789
3087
- #, php-format
3088
- #@ backwpup
3089
- msgid "%s free on SugarSync"
3090
- msgstr "%s vrij op SugarSync"
3091
-
3092
- #: inc/class-job.php:2797
3093
- #@ backwpup
3094
- msgid "Upload to SugarSync now started... "
3095
- msgstr "Verzending naar SugarSync gestart..."
3096
-
3097
- #: inc/class-job.php:2805
3098
- #@ backwpup
3099
- msgid "Cannot transfer backup to SugarSync!"
3100
- msgstr "Kan backup-bestand niet verzenden naar SugarSync!"
3101
-
3102
- #: inc/class-job.php:2842
3103
- #, php-format
3104
- #@ backwpup
3105
- msgid "One file deleted on SugarSync folder"
3106
- msgid_plural "%d files deleted on SugarSync folder"
3107
- msgstr[0] "Een bestand verwijderd van de SugarSync map"
3108
- msgstr[1] "%d bestanden verwijderd van de SugarSync map"
3109
-
3110
- #: inc/class-job.php:2847
3111
- #, php-format
3112
- #@ backwpup
3113
- msgid "SugarSync API: %s"
3114
- msgstr "SugarSync API: %s"
3115
-
3116
- #. translators: plugin header field 'PluginURI'
3117
- #: backwpup.php:0
3118
- #@ backwpup
3119
- msgid "http://backwpup.com"
3120
- msgstr "http://backwpup.com"
3121
-
3122
- #. translators: plugin header field 'Description'
3123
- #: backwpup.php:0
3124
- #@ backwpup
3125
- msgid "WordPress Backup and more..."
3126
- msgstr "WordPress Backup en meer..."
3127
-
3128
- #. translators: plugin header field 'Author'
3129
- #: backwpup.php:0
3130
- #@ backwpup
3131
- msgid "Daniel H&uuml;sken"
3132
- msgstr "Daniel H&uuml;sken"
3133
-
3134
- #. translators: plugin header field 'AuthorURI'
3135
- #: backwpup.php:0
3136
- #@ backwpup
3137
- msgid "http://danielhuesken.de"
3138
- msgstr "http://danielhuesken.de"
3139
-
3140
- #. translators: plugin header field 'Version'
3141
- #: backwpup.php:0
3142
- #@ backwpup
3143
- msgid "3.0-Dev"
3144
- msgstr "3.0-Dev"
3145
-
3146
- #: backwpup.php:268
3147
- #: inc/class-help.php:27
3148
- #: inc/class-help.php:37
3149
- #@ backwpup
3150
- msgid "<a href=\"https://plus.google.com/112659782148359984250/\" target=\"_blank\">Google+</a>"
3151
- msgstr "<a href=\"https://plus.google.com/112659782148359984250/\" target=\"_blank\">Google+</a>"
3152
-
3153
- #: inc/class-ajax-fileinfo.php:130
3154
- #: inc/class-page-backwpup-table.php:175
3155
- #, php-format
3156
- #@ backwpup
3157
- msgid "Files Size: %s"
3158
- msgstr "Omvang bestanden: %s"
3159
-
3160
- #: inc/class-ajax-fileinfo.php:132
3161
- #: inc/class-page-backwpup-table.php:177
3162
- #, php-format
3163
- #@ backwpup
3164
- msgid "Folder count: %d"
3165
- msgstr "Aantal mappen: %d"
3166
-
3167
- #: inc/class-ajax-fileinfo.php:133
3168
- #: inc/class-page-backwpup-table.php:178
3169
- #, php-format
3170
- #@ backwpup
3171
- msgid "Files count: %d"
3172
- msgstr "Aantal bestanden: %d"
3173
-
3174
- #: inc/class-job.php:56
3175
- #@ backwpup
3176
- msgid "Job restart due to inactivity for more than 5 min.!"
3177
- msgstr "Taak opnieuw gestart na inactiviteit van meer dan 5 min.!"
3178
-
3179
- #: inc/class-job.php:294
3180
- #@ backwpup
3181
- msgid "[INFO]: This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
3182
- msgstr "[INFO]: De maker van BackWPup is ABSOLUUT NIET AANSPRAKELIJK voor het gebruik van de plugin. Deze gratis software kun je onder voorwaarden vrij verspreiden."
3183
-
3184
- #: inc/class-job.php:1458
3185
- #, php-format
3186
- #@ backwpup
3187
- msgid "%d. Try to generate a file with installed Plugin names..."
3188
- msgstr "%d. Bestand met geïnstalleerde plugins maken..."
3189
-
3190
- #: inc/class-job.php:1483
3191
- #@ backwpup
3192
- msgid "All plugins information:"
3193
- msgstr "Info over alle plugins:"
3194
-
3195
- #: inc/class-job.php:1485
3196
- #, php-format
3197
- #@ backwpup
3198
- msgid "from %s"
3199
- msgstr "van %s"
3200
-
3201
- #: inc/class-job.php:1487
3202
- #@ backwpup
3203
- msgid "Active plugins:"
3204
- msgstr "Actieve plugins:"
3205
-
3206
- #: inc/class-job.php:1492
3207
- #@ backwpup
3208
- msgid "Inactive plugins:"
3209
- msgstr "Niet actieve plugins:"
3210
-
3211
- #: inc/class-job.php:1503
3212
- #, php-format
3213
- #@ backwpup
3214
- msgid "Added plugin list file \"%1$s\" with %2$s to backup file list"
3215
- msgstr "Bestand \"%1$s\" met pluginlijst van %2$s toegevoegd aan backup-bestand"
3216
-
3217
- #: inc/class-page-backwpup-table.php:165
3218
- #, php-format
3219
- #@ backwpup
3220
- msgid "DB Size: %s"
3221
- msgstr "DB grootte: %s"
3222
-
3223
- #: inc/class-page-backwpup-table.php:167
3224
- #, php-format
3225
- #@ backwpup
3226
- msgid "DB Tables: %d"
3227
- msgstr "DB tabellen: %d"
3228
-
3229
- #: inc/class-page-backwpup-table.php:168
3230
- #, php-format
3231
- #@ backwpup
3232
- msgid "DB Rows: %d"
3233
- msgstr "DB rijen: %d"
3234
-
3235
- #: inc/class-page-backwpup-table.php:194
3236
- #@ backwpup
3237
- msgid "Not scheduled!"
3238
- msgstr "Niet gepland!"
3239
-
3240
- #: inc/class-page-backwpup.php:251
3241
- #, php-format
3242
- #@ backwpup
3243
- msgid "- Server host '%1$s (%2$s)' cannot resolved correctly! Resolved IP '%3$s'. Check Server config!"
3244
- msgstr "- Server host '%1$s (%2$s)' kan niet worden bepaald! Gevonden IP '%3$s'. Controleer de server-configuratie!"
3245
-
3246
- #: inc/class-page-backwpup.php:262
3247
- #@ backwpup
3248
- msgid "BackWPup:"
3249
- msgstr "BackWPup:"
3250
-
3251
- #: inc/class-page-editjob.php:543
3252
- #@ backwpup
3253
- msgid "Filename for the WP export file:"
3254
- msgstr "WP-export bestandsnaam:"
3255
-
3256
- #: inc/class-page-editjob.php:546
3257
- #@ backwpup
3258
- msgid "Compression:"
3259
- msgstr "Compressie:"
3260
-
3261
- #: inc/class-page-editjob.php:558
3262
- #@ backwpup
3263
- msgid "Filename for export a list of installed plugins:"
3264
- msgstr "Naam bestand met de lijst van geïnstalleerde plugins:"
3265
-
3266
- #: inc/class-page-settings.php:126
3267
- #@ backwpup
3268
- msgid "Updates"
3269
- msgstr "Updates"
3270
-
3271
- #: inc/class-page-settings.php:128
3272
- #@ backwpup
3273
- msgid "Wath type for Updates you would check for."
3274
- msgstr "Te controleren plugin-versie-type voor updates."
3275
-
3276
- #: inc/class-page-settings.php:131
3277
- #@ backwpup
3278
- msgid "Update version type"
3279
- msgstr "Update versie-type"
3280
-
3281
- #: inc/class-page-settings.php:135
3282
- #@ backwpup
3283
- msgid "Released Versions"
3284
- msgstr "Officële versies"
3285
-
3286
- #: inc/class-page-settings.php:136
3287
- #@ backwpup
3288
- msgid "Release candidates"
3289
- msgstr "Release candidates"
3290
-
3291
- #: inc/class-page-settings.php:137
3292
- #@ backwpup
3293
- msgid "Beta Versions"
3294
- msgstr "Bèta versies"
3295
-
3296
- #: inc/class-page-settings.php:138
3297
- #@ backwpup
3298
- msgid "Development Versions (Nightly Builds)"
3299
- msgstr "Ontwikkelversies (Nightly builds)"
3300
-
3301
- #: inc/class-page-settings.php:319
3302
- #@ backwpup
3303
- msgid "<a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q3QSVRSFXBLSE\" target=\"_blank\"><img src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" border=\"0\" title=\"PayPal - The safer, easier way to pay online!\"></a>"
3304
- msgstr "<a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q3QSVRSFXBLSE\" target=\"_blank\"><img src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" border=\"0\" title=\"PayPal - The safer, easier way to pay online!\"></a>"
3305
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: inpsyde, danielhuesken, Bueltge, nullbyte
3
  Tags: backup, dump, database, file, ftp, xml, time, upload, multisite, cloud, dropbox, storage, S3
4
  Requires at least: 3.2
5
  Tested up to: 3.5.1
6
- Stable tag: 3.0.6
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -179,6 +179,16 @@ Please check all settings after the update:
179
 
180
 
181
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
182
  = Version 3.0.6 =
183
  * Fixed: Massages on empty DB prefix
184
  * Fixed: Bug in cron calculation
3
  Tags: backup, dump, database, file, ftp, xml, time, upload, multisite, cloud, dropbox, storage, S3
4
  Requires at least: 3.2
5
  Tested up to: 3.5.1
6
+ Stable tag: 3.0.7
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
179
 
180
 
181
  == Changelog ==
182
+ = Version 3.0.7 =
183
+ * Improved: All job requests will done over wp-cron.php now
184
+ * Improved: Ajax calls if blog in maintenance mode
185
+ * Improved: Getting of DB_CHARSET
186
+ * Improved: FTP file deletion
187
+ * Improved: Dropbox authentication (If restrict to job settings page not work you can open the settings page manually again to authenticate)
188
+ * Fixed: No maintenance mode, if a maintenance mode already active
189
+ * Fixed: Archive file deletion
190
+ * Updated: AWS SDK to Version 2.2.1 (PHP 5.3.3+)
191
+
192
  = Version 3.0.6 =
193
  * Fixed: Massages on empty DB prefix
194
  * Fixed: Bug in cron calculation
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.2.0';
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.2.1';
31
 
32
  /**
33
  * Create a new service locator for the AWS SDK
sdk/Aws/Aws/Common/Client/AbstractClient.php CHANGED
@@ -52,6 +52,17 @@ abstract class AbstractClient extends Client implements AwsClientInterface
52
  */
53
  protected $waiterFactory;
54
 
 
 
 
 
 
 
 
 
 
 
 
55
  /**
56
  * @param CredentialsInterface $credentials AWS credentials
57
  * @param SignatureInterface $signature Signature implementation
@@ -130,6 +141,23 @@ abstract class AbstractClient extends Client implements AwsClientInterface
130
  return $this->credentials;
131
  }
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  /**
134
  * {@inheritdoc}
135
  */
@@ -160,6 +188,8 @@ abstract class AbstractClient extends Client implements AwsClientInterface
160
  public function setRegion($region)
161
  {
162
  $config = $this->getConfig();
 
 
163
  $baseUrl = self::getEndpoint($this->serviceDescription, $region, $config->get(Options::SCHEME));
164
  $this->setBaseUrl($baseUrl);
165
  $config->set(Options::BASE_URL, $baseUrl)->set(Options::REGION, $region);
@@ -171,6 +201,12 @@ abstract class AbstractClient extends Client implements AwsClientInterface
171
  $signature->setRegionName($region);
172
  }
173
 
 
 
 
 
 
 
174
  return $this;
175
  }
176
 
52
  */
53
  protected $waiterFactory;
54
 
55
+ /**
56
+ * {@inheritdoc}
57
+ */
58
+ public static function getAllEvents()
59
+ {
60
+ return array_merge(Client::getAllEvents(), array(
61
+ 'client.region_changed',
62
+ 'client.credentials_changed',
63
+ ));
64
+ }
65
+
66
  /**
67
  * @param CredentialsInterface $credentials AWS credentials
68
  * @param SignatureInterface $signature Signature implementation
141
  return $this->credentials;
142
  }
143
 
144
+ /**
145
+ * {@inheritdoc}
146
+ */
147
+ public function setCredentials(CredentialsInterface $credentials)
148
+ {
149
+ $formerCredentials = $this->credentials;
150
+ $this->credentials = $credentials;
151
+
152
+ // Dispatch an event that the credentials have been changed
153
+ $this->dispatch('client.credentials_changed', array(
154
+ 'credentials' => $credentials,
155
+ 'former_credentials' => $formerCredentials,
156
+ ));
157
+
158
+ return $this;
159
+ }
160
+
161
  /**
162
  * {@inheritdoc}
163
  */
188
  public function setRegion($region)
189
  {
190
  $config = $this->getConfig();
191
+ $formerRegion = $config->get(Options::REGION);
192
+
193
  $baseUrl = self::getEndpoint($this->serviceDescription, $region, $config->get(Options::SCHEME));
194
  $this->setBaseUrl($baseUrl);
195
  $config->set(Options::BASE_URL, $baseUrl)->set(Options::REGION, $region);
201
  $signature->setRegionName($region);
202
  }
203
 
204
+ // Dispatch an event that the region has been changed
205
+ $this->dispatch('client.region_changed', array(
206
+ 'region' => $region,
207
+ 'former_region' => $formerRegion,
208
+ ));
209
+
210
  return $this;
211
  }
212
 
sdk/Aws/Aws/Common/Client/AwsClientInterface.php CHANGED
@@ -34,6 +34,15 @@ interface AwsClientInterface extends ClientInterface
34
  */
35
  public function getCredentials();
36
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * Returns the signature implementation used with the client
39
  *
34
  */
35
  public function getCredentials();
36
 
37
+ /**
38
+ * Sets the credentials object associated with the client
39
+ *
40
+ * @param CredentialsInterface $credentials Credentials object to use
41
+ *
42
+ * @return self
43
+ */
44
+ public function setCredentials(CredentialsInterface $credentials);
45
+
46
  /**
47
  * Returns the signature implementation used with the client
48
  *
sdk/Aws/Aws/Common/Credentials/Credentials.php CHANGED
@@ -18,6 +18,7 @@ namespace Aws\Common\Credentials;
18
 
19
  use Aws\Common\Enum\ClientOptions as Options;
20
  use Aws\Common\Exception\InvalidArgumentException;
 
21
  use Aws\Common\Exception\RuntimeException;
22
  use Guzzle\Http\ClientInterface;
23
  use Guzzle\Common\FromConfigInterface;
@@ -130,7 +131,8 @@ class Credentials implements CredentialsInterface, FromConfigInterface
130
  // If no cache adapter was provided, then create one for the user
131
  // @codeCoverageIgnoreStart
132
  if (!extension_loaded('apc')) {
133
- throw new RuntimeException('PHP has not been compiled with APC. Unable to cache credentials.');
 
134
  } elseif (!class_exists('Doctrine\Common\Cache\ApcCache')) {
135
  throw new RuntimeException(
136
  'Cannot set ' . Options::CREDENTIALS_CACHE . ' to true because the Doctrine cache component is '
18
 
19
  use Aws\Common\Enum\ClientOptions as Options;
20
  use Aws\Common\Exception\InvalidArgumentException;
21
+ use Aws\Common\Exception\RequiredExtensionNotLoadedException;
22
  use Aws\Common\Exception\RuntimeException;
23
  use Guzzle\Http\ClientInterface;
24
  use Guzzle\Common\FromConfigInterface;
131
  // If no cache adapter was provided, then create one for the user
132
  // @codeCoverageIgnoreStart
133
  if (!extension_loaded('apc')) {
134
+ throw new RequiredExtensionNotLoadedException('PHP has not been compiled with APC. Unable to cache '
135
+ . 'the credentials.');
136
  } elseif (!class_exists('Doctrine\Common\Cache\ApcCache')) {
137
  throw new RuntimeException(
138
  'Cannot set ' . Options::CREDENTIALS_CACHE . ' to true because the Doctrine cache component is '
sdk/Aws/Aws/Common/Exception/RequiredExtensionNotLoadedException.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License").
6
+ * You may not use this file except in compliance with the License.
7
+ * A copy of the License is located at
8
+ *
9
+ * http://aws.amazon.com/apache2.0
10
+ *
11
+ * or in the "license" file accompanying this file. This file is distributed
12
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
+ * express or implied. See the License for the specific language governing
14
+ * permissions and limitations under the License.
15
+ */
16
+
17
+ namespace Aws\Common\Exception;
18
+
19
+ /**
20
+ * Thrown when a particular PHP extension is required to execute the guarded logic, but the extension is not loaded
21
+ */
22
+ class RequiredExtensionNotLoadedException extends RuntimeException {}
sdk/Aws/Aws/Glacier/GlacierClient.php CHANGED
@@ -48,6 +48,9 @@ use Guzzle\Service\Resource\Model;
48
  * @method Model uploadMultipartPart(array $args = array()) {@command Glacier UploadMultipartPart}
49
  * @method waitUntilVaultExists(array $input) Wait until a vault can be accessed. The input array uses the parameters of the DescribeVault operation and waiter specific settings
50
  * @method waitUntilVaultNotExists(array $input) Wait until a vault is deleted. The input array uses the parameters of the DescribeVault operation and waiter specific settings
 
 
 
51
  */
52
  class GlacierClient extends AbstractClient
53
  {
48
  * @method Model uploadMultipartPart(array $args = array()) {@command Glacier UploadMultipartPart}
49
  * @method waitUntilVaultExists(array $input) Wait until a vault can be accessed. The input array uses the parameters of the DescribeVault operation and waiter specific settings
50
  * @method waitUntilVaultNotExists(array $input) Wait until a vault is deleted. The input array uses the parameters of the DescribeVault operation and waiter specific settings
51
+ *
52
+ * @link http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/service-glacier.html User guide
53
+ * @link http://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.Glacier.GlacierClient.html API docs
54
  */
55
  class GlacierClient extends AbstractClient
56
  {
sdk/Aws/Aws/S3/Command/S3Command.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License").
6
+ * You may not use this file except in compliance with the License.
7
+ * A copy of the License is located at
8
+ *
9
+ * http://aws.amazon.com/apache2.0
10
+ *
11
+ * or in the "license" file accompanying this file. This file is distributed
12
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
+ * express or implied. See the License for the specific language governing
14
+ * permissions and limitations under the License.
15
+ */
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:
24
+ * - Adds the PutObject URL to a response
25
+ * - Allows creating a Pre-signed URL from any command
26
+ */
27
+ class S3Command extends OperationCommand
28
+ {
29
+ /**
30
+ * Create a pre-signed URL for the operation
31
+ *
32
+ * @param int|string $expires The Unix timestamp to expire at or a string that can be evaluated by strtotime
33
+ *
34
+ * @return string
35
+ */
36
+ public function createPresignedUrl($expires)
37
+ {
38
+ return $this->client->createPresignedUrl($this->prepare(), $expires);
39
+ }
40
+
41
+ /**
42
+ * {@inheritdoc}
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', $this->getRequest()->getUrl());
51
+ }
52
+ }
53
+ }
sdk/Aws/Aws/S3/Model/MultipartUpload/AbstractTransfer.php CHANGED
@@ -33,7 +33,7 @@ abstract class AbstractTransfer extends CommonAbstractTransfer
33
 
34
  /**
35
  * {@inheritdoc}
36
- * @throws RuntimeException if the part size cannot be calculated from the provided data
37
  */
38
  protected function init()
39
  {
33
 
34
  /**
35
  * {@inheritdoc}
36
+ * @throws RuntimeException if the part size can not be calculated from the provided data
37
  */
38
  protected function init()
39
  {
sdk/Aws/Aws/S3/Resources/s3-2006-03-01.php CHANGED
@@ -75,7 +75,7 @@ return array (
75
  'AbortMultipartUpload' => array(
76
  'httpMethod' => 'DELETE',
77
  'uri' => '/{Bucket}{/Key*}',
78
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
79
  'responseClass' => 'AbortMultipartUploadOutput',
80
  'responseType' => 'model',
81
  'summary' => 'Aborts a multipart upload.',
@@ -111,7 +111,7 @@ return array (
111
  'CompleteMultipartUpload' => array(
112
  'httpMethod' => 'POST',
113
  'uri' => '/{Bucket}{/Key*}',
114
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
115
  'responseClass' => 'CompleteMultipartUploadOutput',
116
  'responseType' => 'model',
117
  'summary' => 'Completes a multipart upload by assembling previously uploaded parts.',
@@ -174,7 +174,7 @@ return array (
174
  'CopyObject' => array(
175
  'httpMethod' => 'PUT',
176
  'uri' => '/{Bucket}{/Key*}',
177
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
178
  'responseClass' => 'CopyObjectOutput',
179
  'responseType' => 'model',
180
  'summary' => 'Creates a copy of an object that is already stored in Amazon S3.',
@@ -387,7 +387,7 @@ return array (
387
  'CreateBucket' => array(
388
  'httpMethod' => 'PUT',
389
  'uri' => '/{Bucket}',
390
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
391
  'responseClass' => 'CreateBucketOutput',
392
  'responseType' => 'model',
393
  'summary' => 'Creates a new bucket.',
@@ -480,7 +480,7 @@ return array (
480
  'CreateMultipartUpload' => array(
481
  'httpMethod' => 'POST',
482
  'uri' => '/{Bucket}{/Key*}',
483
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
484
  'responseClass' => 'CreateMultipartUploadOutput',
485
  'responseType' => 'model',
486
  'summary' => 'Initiates a multipart upload and returns an upload ID.',
@@ -633,7 +633,7 @@ return array (
633
  'DeleteBucket' => array(
634
  'httpMethod' => 'DELETE',
635
  'uri' => '/{Bucket}',
636
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
637
  'responseClass' => 'DeleteBucketOutput',
638
  'responseType' => 'model',
639
  'summary' => 'Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.',
@@ -649,7 +649,7 @@ return array (
649
  'DeleteBucketCors' => array(
650
  'httpMethod' => 'DELETE',
651
  'uri' => '/{Bucket}',
652
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
653
  'responseClass' => 'DeleteBucketCorsOutput',
654
  'responseType' => 'model',
655
  'summary' => 'Deletes the cors configuration information set for the bucket.',
@@ -672,7 +672,7 @@ return array (
672
  'DeleteBucketLifecycle' => array(
673
  'httpMethod' => 'DELETE',
674
  'uri' => '/{Bucket}',
675
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
676
  'responseClass' => 'DeleteBucketLifecycleOutput',
677
  'responseType' => 'model',
678
  'summary' => 'Deletes the lifecycle configuration from the bucket.',
@@ -695,7 +695,7 @@ return array (
695
  'DeleteBucketPolicy' => array(
696
  'httpMethod' => 'DELETE',
697
  'uri' => '/{Bucket}',
698
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
699
  'responseClass' => 'DeleteBucketPolicyOutput',
700
  'responseType' => 'model',
701
  'summary' => 'Deletes the policy from the bucket.',
@@ -718,7 +718,7 @@ return array (
718
  'DeleteBucketTagging' => array(
719
  'httpMethod' => 'DELETE',
720
  'uri' => '/{Bucket}',
721
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
722
  'responseClass' => 'DeleteBucketTaggingOutput',
723
  'responseType' => 'model',
724
  'summary' => 'Deletes the tags from the bucket.',
@@ -741,7 +741,7 @@ return array (
741
  'DeleteBucketWebsite' => array(
742
  'httpMethod' => 'DELETE',
743
  'uri' => '/{Bucket}',
744
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
745
  'responseClass' => 'DeleteBucketWebsiteOutput',
746
  'responseType' => 'model',
747
  'summary' => 'This operation removes the website configuration from the bucket.',
@@ -764,7 +764,7 @@ return array (
764
  'DeleteObject' => array(
765
  'httpMethod' => 'DELETE',
766
  'uri' => '/{Bucket}{/Key*}',
767
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
768
  'responseClass' => 'DeleteObjectOutput',
769
  'responseType' => 'model',
770
  'summary' => 'Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn\'\'t a null version, Amazon S3 does not remove any objects.',
@@ -788,7 +788,7 @@ return array (
788
  'DeleteObjects' => array(
789
  'httpMethod' => 'POST',
790
  'uri' => '/{Bucket}',
791
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
792
  'responseClass' => 'DeleteObjectsOutput',
793
  'responseType' => 'model',
794
  'summary' => 'This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.',
@@ -862,7 +862,7 @@ return array (
862
  'GetBucketAcl' => array(
863
  'httpMethod' => 'GET',
864
  'uri' => '/{Bucket}',
865
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
866
  'responseClass' => 'GetBucketAclOutput',
867
  'responseType' => 'model',
868
  'summary' => 'Gets the access control policy for the bucket.',
@@ -889,7 +889,7 @@ return array (
889
  'GetBucketCors' => array(
890
  'httpMethod' => 'GET',
891
  'uri' => '/{Bucket}',
892
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
893
  'responseClass' => 'GetBucketCorsOutput',
894
  'responseType' => 'model',
895
  'summary' => 'Returns the cors configuration for the bucket.',
@@ -916,7 +916,7 @@ return array (
916
  'GetBucketLifecycle' => array(
917
  'httpMethod' => 'GET',
918
  'uri' => '/{Bucket}',
919
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
920
  'responseClass' => 'GetBucketLifecycleOutput',
921
  'responseType' => 'model',
922
  'summary' => 'Returns the lifecycle configuration information set on the bucket.',
@@ -943,7 +943,7 @@ return array (
943
  'GetBucketLocation' => array(
944
  'httpMethod' => 'GET',
945
  'uri' => '/{Bucket}',
946
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
947
  'responseClass' => 'GetBucketLocationOutput',
948
  'responseType' => 'model',
949
  'summary' => 'Returns the region the bucket resides in.',
@@ -966,7 +966,7 @@ return array (
966
  'GetBucketLogging' => array(
967
  'httpMethod' => 'GET',
968
  'uri' => '/{Bucket}',
969
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
970
  'responseClass' => 'GetBucketLoggingOutput',
971
  'responseType' => 'model',
972
  'summary' => 'Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.',
@@ -993,7 +993,7 @@ return array (
993
  'GetBucketNotification' => array(
994
  'httpMethod' => 'GET',
995
  'uri' => '/{Bucket}',
996
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
997
  'responseClass' => 'GetBucketNotificationOutput',
998
  'responseType' => 'model',
999
  'summary' => 'Return the notification configuration of a bucket.',
@@ -1020,7 +1020,7 @@ return array (
1020
  'GetBucketPolicy' => array(
1021
  'httpMethod' => 'GET',
1022
  'uri' => '/{Bucket}',
1023
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1024
  'responseClass' => 'GetBucketPolicyOutput',
1025
  'responseType' => 'model',
1026
  'summary' => 'Returns the policy of a specified bucket.',
@@ -1043,7 +1043,7 @@ return array (
1043
  'GetBucketRequestPayment' => array(
1044
  'httpMethod' => 'GET',
1045
  'uri' => '/{Bucket}',
1046
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1047
  'responseClass' => 'GetBucketRequestPaymentOutput',
1048
  'responseType' => 'model',
1049
  'summary' => 'Returns the request payment configuration of a bucket.',
@@ -1070,7 +1070,7 @@ return array (
1070
  'GetBucketTagging' => array(
1071
  'httpMethod' => 'GET',
1072
  'uri' => '/{Bucket}',
1073
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1074
  'responseClass' => 'GetBucketTaggingOutput',
1075
  'responseType' => 'model',
1076
  'summary' => 'Returns the tag set associated with the bucket.',
@@ -1097,7 +1097,7 @@ return array (
1097
  'GetBucketVersioning' => array(
1098
  'httpMethod' => 'GET',
1099
  'uri' => '/{Bucket}',
1100
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1101
  'responseClass' => 'GetBucketVersioningOutput',
1102
  'responseType' => 'model',
1103
  'summary' => 'Returns the versioning state of a bucket.',
@@ -1124,7 +1124,7 @@ return array (
1124
  'GetBucketWebsite' => array(
1125
  'httpMethod' => 'GET',
1126
  'uri' => '/{Bucket}',
1127
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1128
  'responseClass' => 'GetBucketWebsiteOutput',
1129
  'responseType' => 'model',
1130
  'summary' => 'Returns the website configuration for a bucket.',
@@ -1151,7 +1151,7 @@ return array (
1151
  'GetObject' => array(
1152
  'httpMethod' => 'GET',
1153
  'uri' => '/{Bucket}{/Key*}',
1154
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1155
  'responseClass' => 'GetObjectOutput',
1156
  'responseType' => 'model',
1157
  'summary' => 'Retrieves objects from Amazon S3.',
@@ -1271,7 +1271,7 @@ return array (
1271
  'GetObjectAcl' => array(
1272
  'httpMethod' => 'GET',
1273
  'uri' => '/{Bucket}{/Key*}',
1274
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1275
  'responseClass' => 'GetObjectAclOutput',
1276
  'responseType' => 'model',
1277
  'summary' => 'Returns the access control list (ACL) of an object.',
@@ -1318,7 +1318,7 @@ return array (
1318
  'GetObjectTorrent' => array(
1319
  'httpMethod' => 'GET',
1320
  'uri' => '/{Bucket}{/Key*}',
1321
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1322
  'responseClass' => 'GetObjectTorrentOutput',
1323
  'responseType' => 'model',
1324
  'summary' => 'Return torrent files from a bucket.',
@@ -1349,7 +1349,7 @@ return array (
1349
  'HeadBucket' => array(
1350
  'httpMethod' => 'HEAD',
1351
  'uri' => '/{Bucket}',
1352
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1353
  'responseClass' => 'HeadBucketOutput',
1354
  'responseType' => 'model',
1355
  'summary' => 'This operation is useful to determine if a bucket exists and you have permission to access it.',
@@ -1371,7 +1371,7 @@ return array (
1371
  'HeadObject' => array(
1372
  'httpMethod' => 'HEAD',
1373
  'uri' => '/{Bucket}{/Key*}',
1374
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1375
  'responseClass' => 'HeadObjectOutput',
1376
  'responseType' => 'model',
1377
  'summary' => 'The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you\'\'re only interested in an object\'\'s metadata. To use HEAD, you must have READ access to the object.',
@@ -1446,7 +1446,7 @@ return array (
1446
  'ListBuckets' => array(
1447
  'httpMethod' => 'GET',
1448
  'uri' => '/',
1449
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1450
  'responseClass' => 'ListBucketsOutput',
1451
  'responseType' => 'model',
1452
  'summary' => 'Returns a list of all buckets owned by the authenticated sender of the request.',
@@ -1461,7 +1461,7 @@ return array (
1461
  'ListMultipartUploads' => array(
1462
  'httpMethod' => 'GET',
1463
  'uri' => '/{Bucket}',
1464
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1465
  'responseClass' => 'ListMultipartUploadsOutput',
1466
  'responseType' => 'model',
1467
  'summary' => 'This operation lists in-progress multipart uploads.',
@@ -1518,7 +1518,7 @@ return array (
1518
  'ListObjectVersions' => array(
1519
  'httpMethod' => 'GET',
1520
  'uri' => '/{Bucket}',
1521
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1522
  'responseClass' => 'ListObjectVersionsOutput',
1523
  'responseType' => 'model',
1524
  'summary' => 'Returns metadata about all of the versions of objects in a bucket.',
@@ -1575,7 +1575,7 @@ return array (
1575
  'ListObjects' => array(
1576
  'httpMethod' => 'GET',
1577
  'uri' => '/{Bucket}',
1578
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1579
  'responseClass' => 'ListObjectsOutput',
1580
  'responseType' => 'model',
1581
  'summary' => 'Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.',
@@ -1625,7 +1625,7 @@ return array (
1625
  'ListParts' => array(
1626
  'httpMethod' => 'GET',
1627
  'uri' => '/{Bucket}{/Key*}',
1628
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1629
  'responseClass' => 'ListPartsOutput',
1630
  'responseType' => 'model',
1631
  'summary' => 'Lists the parts that have been uploaded for a specific multipart upload.',
@@ -1672,7 +1672,7 @@ return array (
1672
  'PutBucketAcl' => array(
1673
  'httpMethod' => 'PUT',
1674
  'uri' => '/{Bucket}',
1675
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1676
  'responseClass' => 'PutBucketAclOutput',
1677
  'responseType' => 'model',
1678
  'summary' => 'Sets the permissions on a bucket using access control lists (ACL).',
@@ -1826,7 +1826,7 @@ return array (
1826
  'PutBucketCors' => array(
1827
  'httpMethod' => 'PUT',
1828
  'uri' => '/{Bucket}',
1829
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1830
  'responseClass' => 'PutBucketCorsOutput',
1831
  'responseType' => 'model',
1832
  'summary' => 'Sets the cors configuration for a bucket.',
@@ -1910,7 +1910,7 @@ return array (
1910
  'PutBucketLifecycle' => array(
1911
  'httpMethod' => 'PUT',
1912
  'uri' => '/{Bucket}',
1913
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
1914
  'responseClass' => 'PutBucketLifecycleOutput',
1915
  'responseType' => 'model',
1916
  'summary' => 'Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.',
@@ -2022,7 +2022,7 @@ return array (
2022
  'PutBucketLogging' => array(
2023
  'httpMethod' => 'PUT',
2024
  'uri' => '/{Bucket}',
2025
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2026
  'responseClass' => 'PutBucketLoggingOutput',
2027
  'responseType' => 'model',
2028
  'summary' => 'Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.',
@@ -2119,7 +2119,7 @@ return array (
2119
  'PutBucketNotification' => array(
2120
  'httpMethod' => 'PUT',
2121
  'uri' => '/{Bucket}',
2122
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2123
  'responseClass' => 'PutBucketNotificationOutput',
2124
  'responseType' => 'model',
2125
  'summary' => 'Enables notifications of specified events for a bucket.',
@@ -2171,7 +2171,7 @@ return array (
2171
  'PutBucketPolicy' => array(
2172
  'httpMethod' => 'PUT',
2173
  'uri' => '/{Bucket}',
2174
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2175
  'responseClass' => 'PutBucketPolicyOutput',
2176
  'responseType' => 'model',
2177
  'summary' => 'Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it.',
@@ -2206,7 +2206,7 @@ return array (
2206
  'PutBucketRequestPayment' => array(
2207
  'httpMethod' => 'PUT',
2208
  'uri' => '/{Bucket}',
2209
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2210
  'responseClass' => 'PutBucketRequestPaymentOutput',
2211
  'responseType' => 'model',
2212
  'summary' => 'Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download.',
@@ -2250,7 +2250,7 @@ return array (
2250
  'PutBucketTagging' => array(
2251
  'httpMethod' => 'PUT',
2252
  'uri' => '/{Bucket}',
2253
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2254
  'responseClass' => 'PutBucketTaggingOutput',
2255
  'responseType' => 'model',
2256
  'summary' => 'Sets the tags for a bucket.',
@@ -2306,7 +2306,7 @@ return array (
2306
  'PutBucketVersioning' => array(
2307
  'httpMethod' => 'PUT',
2308
  'uri' => '/{Bucket}',
2309
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2310
  'responseClass' => 'PutBucketVersioningOutput',
2311
  'responseType' => 'model',
2312
  'summary' => 'Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.',
@@ -2364,7 +2364,7 @@ return array (
2364
  'PutBucketWebsite' => array(
2365
  'httpMethod' => 'PUT',
2366
  'uri' => '/{Bucket}',
2367
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2368
  'responseClass' => 'PutBucketWebsiteOutput',
2369
  'responseType' => 'model',
2370
  'summary' => 'Set the website configuration for a bucket.',
@@ -2496,7 +2496,7 @@ return array (
2496
  'PutObject' => array(
2497
  'httpMethod' => 'PUT',
2498
  'uri' => '/{Bucket}{/Key*}',
2499
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2500
  'responseClass' => 'PutObjectOutput',
2501
  'responseType' => 'model',
2502
  'summary' => 'Adds an object to a bucket.',
@@ -2654,7 +2654,7 @@ return array (
2654
  'PutObjectAcl' => array(
2655
  'httpMethod' => 'PUT',
2656
  'uri' => '/{Bucket}{/Key*}',
2657
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2658
  'responseClass' => 'PutObjectAclOutput',
2659
  'responseType' => 'model',
2660
  'summary' => 'uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket',
@@ -2822,7 +2822,7 @@ return array (
2822
  'RestoreObject' => array(
2823
  'httpMethod' => 'POST',
2824
  'uri' => '/{Bucket}{/Key*}',
2825
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2826
  'responseClass' => 'RestoreObjectOutput',
2827
  'responseType' => 'model',
2828
  'summary' => 'Restores an archived copy of an object back into Amazon S3',
@@ -2873,7 +2873,7 @@ return array (
2873
  'UploadPart' => array(
2874
  'httpMethod' => 'PUT',
2875
  'uri' => '/{Bucket}{/Key*}',
2876
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2877
  'responseClass' => 'UploadPartOutput',
2878
  'responseType' => 'model',
2879
  'summary' => 'Uploads a part in a multipart upload.',
@@ -2927,7 +2927,7 @@ return array (
2927
  'UploadPartCopy' => array(
2928
  'httpMethod' => 'PUT',
2929
  'uri' => '/{Bucket}{/Key*}',
2930
- 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
2931
  'responseClass' => 'UploadPartCopyOutput',
2932
  'responseType' => 'model',
2933
  'summary' => 'Uploads a part by copying data from an existing object as data source.',
@@ -4783,6 +4783,9 @@ return array (
4783
  'location' => 'header',
4784
  'sentAs' => 'x-amz-request-id',
4785
  ),
 
 
 
4786
  ),
4787
  ),
4788
  'PutObjectAclOutput' => array(
75
  'AbortMultipartUpload' => array(
76
  'httpMethod' => 'DELETE',
77
  'uri' => '/{Bucket}{/Key*}',
78
+ 'class' => 'Aws\\S3\\Command\\S3Command',
79
  'responseClass' => 'AbortMultipartUploadOutput',
80
  'responseType' => 'model',
81
  'summary' => 'Aborts a multipart upload.',
111
  'CompleteMultipartUpload' => array(
112
  'httpMethod' => 'POST',
113
  'uri' => '/{Bucket}{/Key*}',
114
+ 'class' => 'Aws\\S3\\Command\\S3Command',
115
  'responseClass' => 'CompleteMultipartUploadOutput',
116
  'responseType' => 'model',
117
  'summary' => 'Completes a multipart upload by assembling previously uploaded parts.',
174
  'CopyObject' => array(
175
  'httpMethod' => 'PUT',
176
  'uri' => '/{Bucket}{/Key*}',
177
+ 'class' => 'Aws\\S3\\Command\\S3Command',
178
  'responseClass' => 'CopyObjectOutput',
179
  'responseType' => 'model',
180
  'summary' => 'Creates a copy of an object that is already stored in Amazon S3.',
387
  'CreateBucket' => array(
388
  'httpMethod' => 'PUT',
389
  'uri' => '/{Bucket}',
390
+ 'class' => 'Aws\\S3\\Command\\S3Command',
391
  'responseClass' => 'CreateBucketOutput',
392
  'responseType' => 'model',
393
  'summary' => 'Creates a new bucket.',
480
  'CreateMultipartUpload' => array(
481
  'httpMethod' => 'POST',
482
  'uri' => '/{Bucket}{/Key*}',
483
+ 'class' => 'Aws\\S3\\Command\\S3Command',
484
  'responseClass' => 'CreateMultipartUploadOutput',
485
  'responseType' => 'model',
486
  'summary' => 'Initiates a multipart upload and returns an upload ID.',
633
  'DeleteBucket' => array(
634
  'httpMethod' => 'DELETE',
635
  'uri' => '/{Bucket}',
636
+ 'class' => 'Aws\\S3\\Command\\S3Command',
637
  'responseClass' => 'DeleteBucketOutput',
638
  'responseType' => 'model',
639
  'summary' => 'Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.',
649
  'DeleteBucketCors' => array(
650
  'httpMethod' => 'DELETE',
651
  'uri' => '/{Bucket}',
652
+ 'class' => 'Aws\\S3\\Command\\S3Command',
653
  'responseClass' => 'DeleteBucketCorsOutput',
654
  'responseType' => 'model',
655
  'summary' => 'Deletes the cors configuration information set for the bucket.',
672
  'DeleteBucketLifecycle' => array(
673
  'httpMethod' => 'DELETE',
674
  'uri' => '/{Bucket}',
675
+ 'class' => 'Aws\\S3\\Command\\S3Command',
676
  'responseClass' => 'DeleteBucketLifecycleOutput',
677
  'responseType' => 'model',
678
  'summary' => 'Deletes the lifecycle configuration from the bucket.',
695
  'DeleteBucketPolicy' => array(
696
  'httpMethod' => 'DELETE',
697
  'uri' => '/{Bucket}',
698
+ 'class' => 'Aws\\S3\\Command\\S3Command',
699
  'responseClass' => 'DeleteBucketPolicyOutput',
700
  'responseType' => 'model',
701
  'summary' => 'Deletes the policy from the bucket.',
718
  'DeleteBucketTagging' => array(
719
  'httpMethod' => 'DELETE',
720
  'uri' => '/{Bucket}',
721
+ 'class' => 'Aws\\S3\\Command\\S3Command',
722
  'responseClass' => 'DeleteBucketTaggingOutput',
723
  'responseType' => 'model',
724
  'summary' => 'Deletes the tags from the bucket.',
741
  'DeleteBucketWebsite' => array(
742
  'httpMethod' => 'DELETE',
743
  'uri' => '/{Bucket}',
744
+ 'class' => 'Aws\\S3\\Command\\S3Command',
745
  'responseClass' => 'DeleteBucketWebsiteOutput',
746
  'responseType' => 'model',
747
  'summary' => 'This operation removes the website configuration from the bucket.',
764
  'DeleteObject' => array(
765
  'httpMethod' => 'DELETE',
766
  'uri' => '/{Bucket}{/Key*}',
767
+ 'class' => 'Aws\\S3\\Command\\S3Command',
768
  'responseClass' => 'DeleteObjectOutput',
769
  'responseType' => 'model',
770
  'summary' => 'Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn\'\'t a null version, Amazon S3 does not remove any objects.',
788
  'DeleteObjects' => array(
789
  'httpMethod' => 'POST',
790
  'uri' => '/{Bucket}',
791
+ 'class' => 'Aws\\S3\\Command\\S3Command',
792
  'responseClass' => 'DeleteObjectsOutput',
793
  'responseType' => 'model',
794
  'summary' => 'This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.',
862
  'GetBucketAcl' => array(
863
  'httpMethod' => 'GET',
864
  'uri' => '/{Bucket}',
865
+ 'class' => 'Aws\\S3\\Command\\S3Command',
866
  'responseClass' => 'GetBucketAclOutput',
867
  'responseType' => 'model',
868
  'summary' => 'Gets the access control policy for the bucket.',
889
  'GetBucketCors' => array(
890
  'httpMethod' => 'GET',
891
  'uri' => '/{Bucket}',
892
+ 'class' => 'Aws\\S3\\Command\\S3Command',
893
  'responseClass' => 'GetBucketCorsOutput',
894
  'responseType' => 'model',
895
  'summary' => 'Returns the cors configuration for the bucket.',
916
  'GetBucketLifecycle' => array(
917
  'httpMethod' => 'GET',
918
  'uri' => '/{Bucket}',
919
+ 'class' => 'Aws\\S3\\Command\\S3Command',
920
  'responseClass' => 'GetBucketLifecycleOutput',
921
  'responseType' => 'model',
922
  'summary' => 'Returns the lifecycle configuration information set on the bucket.',
943
  'GetBucketLocation' => array(
944
  'httpMethod' => 'GET',
945
  'uri' => '/{Bucket}',
946
+ 'class' => 'Aws\\S3\\Command\\S3Command',
947
  'responseClass' => 'GetBucketLocationOutput',
948
  'responseType' => 'model',
949
  'summary' => 'Returns the region the bucket resides in.',
966
  'GetBucketLogging' => array(
967
  'httpMethod' => 'GET',
968
  'uri' => '/{Bucket}',
969
+ 'class' => 'Aws\\S3\\Command\\S3Command',
970
  'responseClass' => 'GetBucketLoggingOutput',
971
  'responseType' => 'model',
972
  'summary' => 'Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.',
993
  'GetBucketNotification' => array(
994
  'httpMethod' => 'GET',
995
  'uri' => '/{Bucket}',
996
+ 'class' => 'Aws\\S3\\Command\\S3Command',
997
  'responseClass' => 'GetBucketNotificationOutput',
998
  'responseType' => 'model',
999
  'summary' => 'Return the notification configuration of a bucket.',
1020
  'GetBucketPolicy' => array(
1021
  'httpMethod' => 'GET',
1022
  'uri' => '/{Bucket}',
1023
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1024
  'responseClass' => 'GetBucketPolicyOutput',
1025
  'responseType' => 'model',
1026
  'summary' => 'Returns the policy of a specified bucket.',
1043
  'GetBucketRequestPayment' => array(
1044
  'httpMethod' => 'GET',
1045
  'uri' => '/{Bucket}',
1046
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1047
  'responseClass' => 'GetBucketRequestPaymentOutput',
1048
  'responseType' => 'model',
1049
  'summary' => 'Returns the request payment configuration of a bucket.',
1070
  'GetBucketTagging' => array(
1071
  'httpMethod' => 'GET',
1072
  'uri' => '/{Bucket}',
1073
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1074
  'responseClass' => 'GetBucketTaggingOutput',
1075
  'responseType' => 'model',
1076
  'summary' => 'Returns the tag set associated with the bucket.',
1097
  'GetBucketVersioning' => array(
1098
  'httpMethod' => 'GET',
1099
  'uri' => '/{Bucket}',
1100
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1101
  'responseClass' => 'GetBucketVersioningOutput',
1102
  'responseType' => 'model',
1103
  'summary' => 'Returns the versioning state of a bucket.',
1124
  'GetBucketWebsite' => array(
1125
  'httpMethod' => 'GET',
1126
  'uri' => '/{Bucket}',
1127
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1128
  'responseClass' => 'GetBucketWebsiteOutput',
1129
  'responseType' => 'model',
1130
  'summary' => 'Returns the website configuration for a bucket.',
1151
  'GetObject' => array(
1152
  'httpMethod' => 'GET',
1153
  'uri' => '/{Bucket}{/Key*}',
1154
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1155
  'responseClass' => 'GetObjectOutput',
1156
  'responseType' => 'model',
1157
  'summary' => 'Retrieves objects from Amazon S3.',
1271
  'GetObjectAcl' => array(
1272
  'httpMethod' => 'GET',
1273
  'uri' => '/{Bucket}{/Key*}',
1274
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1275
  'responseClass' => 'GetObjectAclOutput',
1276
  'responseType' => 'model',
1277
  'summary' => 'Returns the access control list (ACL) of an object.',
1318
  'GetObjectTorrent' => array(
1319
  'httpMethod' => 'GET',
1320
  'uri' => '/{Bucket}{/Key*}',
1321
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1322
  'responseClass' => 'GetObjectTorrentOutput',
1323
  'responseType' => 'model',
1324
  'summary' => 'Return torrent files from a bucket.',
1349
  'HeadBucket' => array(
1350
  'httpMethod' => 'HEAD',
1351
  'uri' => '/{Bucket}',
1352
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1353
  'responseClass' => 'HeadBucketOutput',
1354
  'responseType' => 'model',
1355
  'summary' => 'This operation is useful to determine if a bucket exists and you have permission to access it.',
1371
  'HeadObject' => array(
1372
  'httpMethod' => 'HEAD',
1373
  'uri' => '/{Bucket}{/Key*}',
1374
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1375
  'responseClass' => 'HeadObjectOutput',
1376
  'responseType' => 'model',
1377
  'summary' => 'The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you\'\'re only interested in an object\'\'s metadata. To use HEAD, you must have READ access to the object.',
1446
  'ListBuckets' => array(
1447
  'httpMethod' => 'GET',
1448
  'uri' => '/',
1449
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1450
  'responseClass' => 'ListBucketsOutput',
1451
  'responseType' => 'model',
1452
  'summary' => 'Returns a list of all buckets owned by the authenticated sender of the request.',
1461
  'ListMultipartUploads' => array(
1462
  'httpMethod' => 'GET',
1463
  'uri' => '/{Bucket}',
1464
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1465
  'responseClass' => 'ListMultipartUploadsOutput',
1466
  'responseType' => 'model',
1467
  'summary' => 'This operation lists in-progress multipart uploads.',
1518
  'ListObjectVersions' => array(
1519
  'httpMethod' => 'GET',
1520
  'uri' => '/{Bucket}',
1521
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1522
  'responseClass' => 'ListObjectVersionsOutput',
1523
  'responseType' => 'model',
1524
  'summary' => 'Returns metadata about all of the versions of objects in a bucket.',
1575
  'ListObjects' => array(
1576
  'httpMethod' => 'GET',
1577
  'uri' => '/{Bucket}',
1578
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1579
  'responseClass' => 'ListObjectsOutput',
1580
  'responseType' => 'model',
1581
  'summary' => 'Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.',
1625
  'ListParts' => array(
1626
  'httpMethod' => 'GET',
1627
  'uri' => '/{Bucket}{/Key*}',
1628
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1629
  'responseClass' => 'ListPartsOutput',
1630
  'responseType' => 'model',
1631
  'summary' => 'Lists the parts that have been uploaded for a specific multipart upload.',
1672
  'PutBucketAcl' => array(
1673
  'httpMethod' => 'PUT',
1674
  'uri' => '/{Bucket}',
1675
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1676
  'responseClass' => 'PutBucketAclOutput',
1677
  'responseType' => 'model',
1678
  'summary' => 'Sets the permissions on a bucket using access control lists (ACL).',
1826
  'PutBucketCors' => array(
1827
  'httpMethod' => 'PUT',
1828
  'uri' => '/{Bucket}',
1829
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1830
  'responseClass' => 'PutBucketCorsOutput',
1831
  'responseType' => 'model',
1832
  'summary' => 'Sets the cors configuration for a bucket.',
1910
  'PutBucketLifecycle' => array(
1911
  'httpMethod' => 'PUT',
1912
  'uri' => '/{Bucket}',
1913
+ 'class' => 'Aws\\S3\\Command\\S3Command',
1914
  'responseClass' => 'PutBucketLifecycleOutput',
1915
  'responseType' => 'model',
1916
  'summary' => 'Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.',
2022
  'PutBucketLogging' => array(
2023
  'httpMethod' => 'PUT',
2024
  'uri' => '/{Bucket}',
2025
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2026
  'responseClass' => 'PutBucketLoggingOutput',
2027
  'responseType' => 'model',
2028
  'summary' => 'Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.',
2119
  'PutBucketNotification' => array(
2120
  'httpMethod' => 'PUT',
2121
  'uri' => '/{Bucket}',
2122
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2123
  'responseClass' => 'PutBucketNotificationOutput',
2124
  'responseType' => 'model',
2125
  'summary' => 'Enables notifications of specified events for a bucket.',
2171
  'PutBucketPolicy' => array(
2172
  'httpMethod' => 'PUT',
2173
  'uri' => '/{Bucket}',
2174
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2175
  'responseClass' => 'PutBucketPolicyOutput',
2176
  'responseType' => 'model',
2177
  'summary' => 'Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it.',
2206
  'PutBucketRequestPayment' => array(
2207
  'httpMethod' => 'PUT',
2208
  'uri' => '/{Bucket}',
2209
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2210
  'responseClass' => 'PutBucketRequestPaymentOutput',
2211
  'responseType' => 'model',
2212
  'summary' => 'Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download.',
2250
  'PutBucketTagging' => array(
2251
  'httpMethod' => 'PUT',
2252
  'uri' => '/{Bucket}',
2253
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2254
  'responseClass' => 'PutBucketTaggingOutput',
2255
  'responseType' => 'model',
2256
  'summary' => 'Sets the tags for a bucket.',
2306
  'PutBucketVersioning' => array(
2307
  'httpMethod' => 'PUT',
2308
  'uri' => '/{Bucket}',
2309
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2310
  'responseClass' => 'PutBucketVersioningOutput',
2311
  'responseType' => 'model',
2312
  'summary' => 'Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.',
2364
  'PutBucketWebsite' => array(
2365
  'httpMethod' => 'PUT',
2366
  'uri' => '/{Bucket}',
2367
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2368
  'responseClass' => 'PutBucketWebsiteOutput',
2369
  'responseType' => 'model',
2370
  'summary' => 'Set the website configuration for a bucket.',
2496
  'PutObject' => array(
2497
  'httpMethod' => 'PUT',
2498
  'uri' => '/{Bucket}{/Key*}',
2499
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2500
  'responseClass' => 'PutObjectOutput',
2501
  'responseType' => 'model',
2502
  'summary' => 'Adds an object to a bucket.',
2654
  'PutObjectAcl' => array(
2655
  'httpMethod' => 'PUT',
2656
  'uri' => '/{Bucket}{/Key*}',
2657
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2658
  'responseClass' => 'PutObjectAclOutput',
2659
  'responseType' => 'model',
2660
  'summary' => 'uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket',
2822
  'RestoreObject' => array(
2823
  'httpMethod' => 'POST',
2824
  'uri' => '/{Bucket}{/Key*}',
2825
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2826
  'responseClass' => 'RestoreObjectOutput',
2827
  'responseType' => 'model',
2828
  'summary' => 'Restores an archived copy of an object back into Amazon S3',
2873
  'UploadPart' => array(
2874
  'httpMethod' => 'PUT',
2875
  'uri' => '/{Bucket}{/Key*}',
2876
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2877
  'responseClass' => 'UploadPartOutput',
2878
  'responseType' => 'model',
2879
  'summary' => 'Uploads a part in a multipart upload.',
2927
  'UploadPartCopy' => array(
2928
  'httpMethod' => 'PUT',
2929
  'uri' => '/{Bucket}{/Key*}',
2930
+ 'class' => 'Aws\\S3\\Command\\S3Command',
2931
  'responseClass' => 'UploadPartCopyOutput',
2932
  'responseType' => 'model',
2933
  'summary' => 'Uploads a part by copying data from an existing object as data source.',
4783
  'location' => 'header',
4784
  'sentAs' => 'x-amz-request-id',
4785
  ),
4786
+ 'ObjectURL' => array(
4787
+ 'description' => 'URL of the uploaded object',
4788
+ ),
4789
  ),
4790
  ),
4791
  'PutObjectAclOutput' => array(
sdk/Aws/Aws/S3/S3Client.php CHANGED
@@ -94,6 +94,9 @@ use Guzzle\Service\Command\Factory\CompositeFactory;
94
  * @method waitUntilBucketExists(array $input) Wait until a bucket exists. The input array uses the parameters of the HeadBucket operation and waiter specific settings
95
  * @method waitUntilBucketNotExists(array $input) Wait until a bucket does not exist. The input array uses the parameters of the HeadBucket operation and waiter specific settings
96
  * @method waitUntilObjectExists(array $input) Wait until an object exists. The input array uses the parameters of the HeadObject operation and waiter specific settings
 
 
 
97
  */
98
  class S3Client extends AbstractClient
99
  {
94
  * @method waitUntilBucketExists(array $input) Wait until a bucket exists. The input array uses the parameters of the HeadBucket operation and waiter specific settings
95
  * @method waitUntilBucketNotExists(array $input) Wait until a bucket does not exist. The input array uses the parameters of the HeadBucket operation and waiter specific settings
96
  * @method waitUntilObjectExists(array $input) Wait until an object exists. The input array uses the parameters of the HeadObject operation and waiter specific settings
97
+ *
98
+ * @link http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/service-s3.html User guide
99
+ * @link http://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.S3.S3Client.html API docs
100
  */
101
  class S3Client extends AbstractClient
102
  {