BackWPup – WordPress Backup Plugin - Version 3.6.3

Version Description

Download this release

Release Info

Developer wido
Plugin Icon 128x128 BackWPup – WordPress Backup Plugin
Version 3.6.3
Comparing to
See all releases

Code changes from version 3.6.2 to 3.6.3

assets/images/backwpupbanner.png DELETED
Binary file
backwpup.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: WordPress Backup Plugin
6
  * Author: Inpsyde GmbH
7
  * Author URI: http://inpsyde.com
8
- * Version: 3.6.2
9
  * Text Domain: backwpup
10
  * Domain Path: /languages/
11
  * Network: true
5
  * Description: WordPress Backup Plugin
6
  * Author: Inpsyde GmbH
7
  * Author URI: http://inpsyde.com
8
+ * Version: 3.6.3
9
  * Text Domain: backwpup
10
  * Domain Path: /languages/
11
  * Network: true
inc/class-job.php CHANGED
@@ -19,120 +19,148 @@ final class BackWPup_Job {
19
  * @var string the logfile
20
  */
21
  public $logfile = '';
 
22
  /**
23
  * @var array for temp values
24
  */
25
  public $temp = array();
 
26
  /**
27
  * @var string Folder where is Backup files in
28
  */
29
  public $backup_folder = '';
 
30
  /**
31
  * @var string the name of the Backup archive file
32
  */
33
  public $backup_file = '';
 
34
  /**
35
  * @var int The size of the Backup archive file
36
  */
37
  public $backup_filesize = 0;
 
38
  /**
39
  * @var int PID of script
40
  */
41
  public $pid = 0;
 
42
  /**
43
  * @var float Timestamp of last update off .running file
44
  */
45
  public $timestamp_last_update = 0;
 
46
  /**
47
  * @var int Number of warnings
48
  */
49
  public $warnings = 0;
 
50
  /**
51
  * @var int Number of errors
52
  */
53
  public $errors = 0;
 
54
  /**
55
  * @var string the last log notice message
56
  */
57
  public $lastmsg = '';
 
58
  /**
59
  * @var string the last log error/waring message
60
  */
61
  public $lasterrormsg = '';
 
62
  /**
63
  * @var array of steps to do
64
  */
65
  public $steps_todo = array( 'CREATE' );
 
66
  /**
67
  * @var array of done steps
68
  */
69
  public $steps_done = array();
 
70
  /**
71
  * @var array of steps data
72
  */
73
  public $steps_data = array();
 
74
  /**
75
  * @var string working on step
76
  */
77
  public $step_working = 'CREATE';
 
78
  /**
79
  * @var int Number of sub steps must do in step
80
  */
81
  public $substeps_todo = 0;
 
82
  /**
83
  * @var int Number of sub steps done in step
84
  */
85
  public $substeps_done = 0;
 
86
  /**
87
  * @var int Percent of steps done
88
  */
89
  public $step_percent = 1;
 
90
  /**
91
  * @var int Percent of sub steps done
92
  */
93
  public $substep_percent = 1;
 
94
  /**
95
  * @var array of files to additional to backup
96
  */
97
  public $additional_files_to_backup = array();
 
98
  /**
99
  * @var array of files/folder to exclude from backup
100
  */
101
  public $exclude_from_backup = array();
 
102
  /**
103
  * @var int count of affected files
104
  */
105
  public $count_files = 0;
 
106
  /**
107
  * @var int count of affected file sizes
108
  */
109
  public $count_files_size = 0;
 
110
  /**
111
  * @var int count of affected folders
112
  */
113
  public $count_folder = 0;
 
114
  /**
115
  * If job aborted from user
116
  *
117
  * @var bool
118
  */
119
  public $user_abort = false;
 
120
  /**
121
  * A uniqid ID uniqid('', true); to identify process
122
  *
123
  * @var string
124
  */
125
  public $uniqid = '';
 
126
  /**
127
  * @var float Timestamp of script start
128
  */
129
  private $timestamp_script_start = 0;
 
130
  /**
131
  * Stores data that will only used in a single run
132
  *
133
  * @var array
134
  */
135
  private $run = array();
 
136
  /**
137
  * @var string logging level (normal|normal_untranslated|debug|debug_untranslated)
138
  */
@@ -270,7 +298,9 @@ final class BackWPup_Job {
270
  //set Logfile
271
  $log_folder = get_site_option( 'backwpup_cfg_logfolder' );
272
  $log_folder = BackWPup_File::get_absolute_path( $log_folder );
273
- $this->logfile = $log_folder . 'backwpup_log_' . BackWPup::get_plugin_data( 'hash' ) . '_' . date( 'Y-m-d_H-i-s', current_time( 'timestamp' ) ) . '.html';
 
 
274
  //write settings to job
275
  BackWPup_Option::update( $this->job['jobid'], 'lastrun', $this->start_time );
276
  BackWPup_Option::update( $this->job['jobid'], 'logfile', $this->logfile ); //Set current logfile
@@ -377,12 +407,14 @@ final class BackWPup_Job {
377
 
378
  //set log level
379
  $this->log_level = get_site_option( 'backwpup_cfg_loglevel', 'normal_translated' );
380
- if ( ! in_array( $this->log_level, array(
 
381
  'normal_translated',
382
  'normal',
383
  'debug_translated',
384
  'debug',
385
- ), true ) ) {
 
386
  $this->log_level = 'normal_translated';
387
  }
388
  //create log file
@@ -392,25 +424,44 @@ final class BackWPup_Job {
392
  $head .= "<html lang=\"" . str_replace( '_', '-', get_locale() ) . "\">" . PHP_EOL;
393
  $head .= "<head>" . PHP_EOL;
394
  $head .= "<meta charset=\"" . get_bloginfo( 'charset' ) . "\" />" . PHP_EOL;
395
- $head .= "<title>" . sprintf( __( 'BackWPup log for %1$s from %2$s at %3$s', 'backwpup' ), $this->job['name'], date_i18n( get_option( 'date_format' ) ), date_i18n( get_option( 'time_format' ) ) ) . "</title>" . PHP_EOL;
 
 
 
396
  $head .= "<meta name=\"robots\" content=\"noindex, nofollow\" />" . PHP_EOL;
397
- $head .= "<meta name=\"copyright\" content=\"Copyright &copy; 2012 - " . date( 'Y' ) . " Inpsyde GmbH\" />" . PHP_EOL;
 
 
398
  $head .= "<meta name=\"author\" content=\"Inpsyde GmbH\" />" . PHP_EOL;
399
- $head .= "<meta name=\"generator\" content=\"BackWPup " . BackWPup::get_plugin_data( 'Version' ) . "\" />" . PHP_EOL;
 
 
400
  $head .= "<meta http-equiv=\"cache-control\" content=\"no-cache\" />" . PHP_EOL;
401
  $head .= "<meta http-equiv=\"pragma\" content=\"no-cache\" />" . PHP_EOL;
402
  $head .= "<meta name=\"date\" content=\"" . date( 'c' ) . "\" />" . PHP_EOL;
403
  $head .= str_pad( '<meta name="backwpup_errors" content="0" />', 100 ) . PHP_EOL;
404
  $head .= str_pad( '<meta name="backwpup_warnings" content="0" />', 100 ) . PHP_EOL;
405
  $head .= "<meta name=\"backwpup_jobid\" content=\"" . $this->job['jobid'] . "\" />" . PHP_EOL;
406
- $head .= "<meta name=\"backwpup_jobname\" content=\"" . esc_attr( $this->job['name'] ) . "\" />" . PHP_EOL;
407
- $head .= "<meta name=\"backwpup_jobtype\" content=\"" . implode( '+', $this->job['type'] ) . "\" />" . PHP_EOL;
 
 
 
 
408
  $head .= str_pad( '<meta name="backwpup_backupfilesize" content="0" />', 100 ) . PHP_EOL;
409
  $head .= str_pad( '<meta name="backwpup_jobruntime" content="0" />', 100 ) . PHP_EOL;
410
  $head .= '</head>' . PHP_EOL;
411
  $head .= '<body style="margin:0;padding:3px;font-family:monospace;font-size:12px;line-height:15px;background-color:black;color:#c0c0c0;white-space:nowrap;">' . PHP_EOL;
412
- $info .= sprintf( _x( '[INFO] %1$s %2$s; A project of Inpsyde GmbH', 'Plugin name; Plugin Version; plugin url', 'backwpup' ), BackWPup::get_plugin_data( 'name' ), BackWPup::get_plugin_data( 'Version' ), __( 'http://backwpup.com', 'backwpup' ) ) . '<br />' . PHP_EOL;
413
- $info .= sprintf( _x( '[INFO] WordPress %1$s on %2$s', 'WordPress Version; Blog url', 'backwpup' ), BackWPup::get_plugin_data( 'wp_version' ), esc_attr( site_url( '/' ) ) ) . '<br />' . PHP_EOL;
 
 
 
 
 
 
 
 
414
  $level = __( 'Normal', 'backwpup' );
415
  $translated = '';
416
  if ( $this->is_debug() ) {
@@ -419,7 +470,9 @@ final class BackWPup_Job {
419
  if ( is_textdomain_loaded( 'backwpup' ) ) {
420
  $translated = __( '(translated)', 'backwpup' );
421
  }
422
- $info .= sprintf( __( '[INFO] Log Level: %1$s %2$s', 'backwpup' ), $level, $translated ) . '<br />' . PHP_EOL;
 
 
423
  $job_name = esc_attr( $this->job['name'] );
424
  if ( $this->is_debug() ) {
425
  $job_name .= '; ' . implode( '+', $this->job['type'] );
@@ -427,7 +480,10 @@ final class BackWPup_Job {
427
  $info .= sprintf( __( '[INFO] BackWPup job: %1$s', 'backwpup' ), $job_name ) . '<br />' . PHP_EOL;
428
  if ( $this->is_debug() ) {
429
  $current_user = wp_get_current_user();
430
- $info .= sprintf( __( '[INFO] Runs with user: %1$s (%2$d) ', 'backwpup' ), $current_user->user_login, $current_user->ID ) . '<br />' . PHP_EOL;
 
 
 
431
  }
432
  if ( $this->job['activetype'] === 'wpcron' ) {
433
  //check next run
@@ -443,9 +499,13 @@ final class BackWPup_Job {
443
  if ( ! $cron_next ) {
444
  $cron_next = __( 'Not scheduled!', 'backwpup' );
445
  } else {
446
- $cron_next = date_i18n( 'D, j M Y @ H:i', $cron_next + ( get_option( 'gmt_offset' ) * 3600 ), true );
 
 
447
  }
448
- $info .= sprintf( __( '[INFO] Cron: %s; Next: %s ', 'backwpup' ), $this->job['cron'], $cron_next ) . '<br />' . PHP_EOL;
 
 
449
  }
450
  } elseif ( $this->job['activetype'] == 'link' && $this->is_debug() ) {
451
  $info .= __( '[INFO] BackWPup job start with link is active', 'backwpup' ) . '<br />' . PHP_EOL;
@@ -455,7 +515,9 @@ final class BackWPup_Job {
455
  if ( $this->is_debug() ) {
456
  $cron_next = BackWPup_Cron::cron_next( $this->job['cron'] );
457
  $cron_next = date_i18n( 'D, j M Y @ H:i', $cron_next + ( get_option( 'gmt_offset' ) * 3600 ), true );
458
- $info .= sprintf( __( '[INFO] Cron: %s; Next: %s ', 'backwpup' ), $this->job['cron'], $cron_next ) . '<br />' . PHP_EOL;
 
 
459
  }
460
  } elseif ( $this->is_debug() ) {
461
  $info .= __( '[INFO] BackWPup no automatic job start configured', 'backwpup' ) . '<br />' . PHP_EOL;
@@ -468,7 +530,9 @@ final class BackWPup_Job {
468
  } elseif ( $start_type == 'runext' ) {
469
  $info .= __( '[INFO] BackWPup job started from external url', 'backwpup' ) . '<br />' . PHP_EOL;
470
  } elseif ( $start_type == 'runcli' ) {
471
- $info .= __( '[INFO] BackWPup job started form commandline interface', 'backwpup' ) . '<br />' . PHP_EOL;
 
 
472
  }
473
  $bit = '';
474
  if ( PHP_INT_SIZE === 4 ) {
@@ -477,23 +541,40 @@ final class BackWPup_Job {
477
  if ( PHP_INT_SIZE === 8 ) {
478
  $bit = ' (64bit)';
479
  }
480
- $info .= __( '[INFO] PHP ver.:', 'backwpup' ) . ' ' . PHP_VERSION . $bit . '; ' . PHP_SAPI . '; ' . PHP_OS . '<br />' . PHP_EOL;
481
- $info .= sprintf( __( '[INFO] Maximum PHP script execution time is %1$d seconds', 'backwpup' ), ini_get( 'max_execution_time' ) ) . '<br />' . PHP_EOL;
 
 
 
 
 
482
  if ( php_sapi_name() != 'cli' ) {
483
  $job_max_execution_time = get_site_option( 'backwpup_cfg_jobmaxexecutiontime' );
484
  if ( ! empty( $job_max_execution_time ) ) {
485
- $info .= sprintf( __( '[INFO] Script restart time is configured to %1$d seconds', 'backwpup' ), $job_max_execution_time ) . '<br />' . PHP_EOL;
 
 
 
486
  }
487
  }
488
- $info .= sprintf( __( '[INFO] MySQL ver.: %s', 'backwpup' ), $wpdb->get_var( "SELECT VERSION() AS version" ) ) . '<br />' . PHP_EOL;
 
 
489
  if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) {
490
- $info .= sprintf( __( '[INFO] Web Server: %s', 'backwpup' ), $_SERVER['SERVER_SOFTWARE'] ) . '<br />' . PHP_EOL;
 
 
491
  }
492
  if ( function_exists( 'curl_init' ) ) {
493
  $curlversion = curl_version();
494
- $info .= sprintf( __( '[INFO] curl ver.: %1$s; %2$s', 'backwpup' ), $curlversion['version'], $curlversion['ssl_version'] ) . '<br />' . PHP_EOL;
 
 
 
495
  }
496
- $info .= sprintf( __( '[INFO] Temp folder is: %s', 'backwpup' ), BackWPup::get_plugin_data( 'TEMP' ) ) . '<br />' . PHP_EOL;
 
 
497
  }
498
  if ( $this->is_debug() ) {
499
  $logfile = $this->logfile;
@@ -509,7 +590,9 @@ final class BackWPup_Job {
509
  }
510
  $info .= sprintf( __( '[INFO] Backup file is: %s', 'backwpup' ), $backupfile ) . '<br />' . PHP_EOL;
511
  } else {
512
- $info .= sprintf( __( '[INFO] Backup type is: %s', 'backwpup' ), $this->job['backuptype'] ) . '<br />' . PHP_EOL;
 
 
513
  }
514
  //output info on cli
515
  if ( php_sapi_name() == 'cli' && defined( 'STDOUT' ) ) {
@@ -529,7 +612,10 @@ final class BackWPup_Job {
529
  }
530
  }
531
  if ( ! $desttest ) {
532
- $this->log( __( 'No destination correctly defined for backup! Please correct job settings.', 'backwpup' ), E_USER_ERROR );
 
 
 
533
  $this->steps_todo = array( 'END' );
534
  }
535
  }
@@ -561,7 +647,11 @@ final class BackWPup_Job {
561
 
562
  $name = BackWPup_Option::substitute_date_vars( $name );
563
  $name .= $suffix;
564
- if ( $delete_temp_file && is_writeable( BackWPup::get_plugin_data( 'TEMP' ) . $name ) && ! is_dir( BackWPup::get_plugin_data( 'TEMP' ) . $name ) && ! is_link( BackWPup::get_plugin_data( 'TEMP' ) . $name ) ) {
 
 
 
 
565
  unlink( BackWPup::get_plugin_data( 'TEMP' ) . $name );
566
  }
567
 
@@ -647,7 +737,9 @@ final class BackWPup_Job {
647
  }
648
 
649
  //if first the type an second the message switch it on user errors
650
- if ( ! is_int( $type ) && is_int( $message ) && in_array( $message, array(
 
 
651
  1,
652
  2,
653
  4,
@@ -663,7 +755,8 @@ final class BackWPup_Job {
663
  4096,
664
  8192,
665
  16384,
666
- ), true )
 
667
  ) {
668
  $temp = $message;
669
  $message = $type;
@@ -741,26 +834,39 @@ final class BackWPup_Job {
741
  }
742
  WP_CLI::line( $output_message );
743
  } elseif ( php_sapi_name() == 'cli' && defined( 'STDOUT' ) ) {
744
- $output_message = str_replace( array( '&hellip;', '&#160;' ), array(
 
745
  '...',
746
  ' ',
747
- ), esc_html( $message ) ) . PHP_EOL;
 
748
  fwrite( STDOUT, $output_message );
749
  }
750
 
751
  //timestamp for log file
752
  $debug_info = '';
753
  if ( $this->is_debug() ) {
754
- $debug_info = ' title="[Type: ' . $type . '|Line: ' . $line . '|File: ' . $in_file . '|Mem: ' . size_format( @memory_get_usage( true ), 2 ) . '|Mem Max: ' . size_format( @memory_get_peak_usage( true ), 2 ) . '|Mem Limit: ' . ini_get( 'memory_limit' ) . '|PID: ' . self::get_pid() . ' | UniqID: ' . $this->uniqid . '|Queries: ' . get_num_queries() . ']"';
 
 
 
 
 
755
  }
756
- $timestamp = '<span datetime="' . date( 'c' ) . '" ' . $debug_info . '>[' . date( 'd-M-Y H:i:s', current_time( 'timestamp' ) ) . ']</span> ';
 
 
757
 
758
  //set last Message
759
  if ( $error ) {
760
- $output_message = '<span style="background-color:#ff6766;color:black;padding:0 2px;">' . esc_html( $message ) . '</span>';
 
 
761
  $this->lasterrormsg = $output_message;
762
  } elseif ( $warning ) {
763
- $output_message = '<span style="background-color:#ffc766;color:black;padding:0 2px;">' . esc_html( $message ) . '</span>';
 
 
764
  $this->lasterrormsg = $output_message;
765
  } else {
766
  $output_message = esc_html( $message );
@@ -768,7 +874,9 @@ final class BackWPup_Job {
768
  }
769
  //write log file
770
  if ( $this->logfile ) {
771
- if ( ! file_put_contents( $this->logfile, $timestamp . $output_message . '<br />' . PHP_EOL, FILE_APPEND ) ) {
 
 
772
  $this->logfile = '';
773
  restore_error_handler();
774
  trigger_error( esc_html( $message ), $type );
@@ -782,12 +890,20 @@ final class BackWPup_Job {
782
  $line = fgets( $fd );
783
  if ( $error && stripos( $line, '<meta name="backwpup_errors" content="' ) !== false ) {
784
  fseek( $fd, $file_pos );
785
- fwrite( $fd, str_pad( '<meta name="backwpup_errors" content="' . $this->errors . '" />', 100 ) . PHP_EOL );
 
 
 
 
786
  break;
787
  }
788
  if ( $warning && stripos( $line, '<meta name="backwpup_warnings" content="' ) !== false ) {
789
  fseek( $fd, $file_pos );
790
- fwrite( $fd, str_pad( '<meta name="backwpup_warnings" content="' . $this->warnings . '" />', 100 ) . PHP_EOL );
 
 
 
 
791
  break;
792
  }
793
  $file_pos = ftell( $fd );
@@ -868,7 +984,10 @@ final class BackWPup_Job {
868
  global $wpdb;
869
 
870
  //to reduce server load
871
- if ( get_site_option( 'backwpup_cfg_jobwaittimems' ) > 0 && get_site_option( 'backwpup_cfg_jobwaittimems' ) <= 500000 ) {
 
 
 
872
  usleep( get_site_option( 'backwpup_cfg_jobwaittimems' ) );
873
  }
874
 
@@ -981,7 +1100,10 @@ final class BackWPup_Job {
981
  $dir = new BackWPup_Directory( $log_folder );
982
 
983
  foreach ( $dir as $file ) {
984
- if ( ! $file->isDot() && strpos( $file->getFilename(), 'backwpup_log_' ) === 0 && strpos( $file->getFilename(), '.html' ) !== false ) {
 
 
 
985
  $log_file_list[ $file->getMTime() ] = clone $file;
986
  }
987
  }
@@ -1002,25 +1124,45 @@ final class BackWPup_Job {
1002
  $num_delete_files ++;
1003
  }
1004
  if ( $num_delete_files > 0 ) {
1005
- $this->log( sprintf( _n( 'One old log deleted', '%d old logs deleted', $num_delete_files, 'backwpup' ), $num_delete_files ) );
 
 
 
 
 
1006
  }
1007
  }
1008
  }
1009
 
1010
  //Display job working time
1011
  if ( $this->errors > 0 ) {
1012
- $this->log( sprintf( __( 'Job has ended with errors in %s seconds. You must resolve the errors for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time ), E_USER_ERROR );
 
 
 
 
 
 
 
1013
  } elseif ( $this->warnings > 0 ) {
1014
- $this->log( sprintf( __( 'Job finished with warnings in %s seconds. Please resolve them for correct execution.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time ), E_USER_WARNING );
 
 
 
 
 
 
 
1015
  } else {
1016
- $this->log( sprintf( __( 'Job done in %s seconds.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time ) );
 
 
1017
  }
1018
 
1019
  //Update job options
1020
  $this->job['lastruntime'] = current_time( 'timestamp' ) - $this->start_time;
1021
  BackWPup_Option::update( $this->job['jobid'], 'lastruntime', $this->job['lastruntime'] );
1022
 
1023
-
1024
  //write header info
1025
  if ( ! empty( $this->logfile ) ) {
1026
 
@@ -1031,12 +1173,22 @@ final class BackWPup_Job {
1031
  $line = fgets( $fd );
1032
  if ( stripos( $line, '<meta name="backwpup_jobruntime"' ) !== false ) {
1033
  fseek( $fd, $filepos );
1034
- fwrite( $fd, str_pad( '<meta name="backwpup_jobruntime" content="' . $this->job['lastruntime'] . '" />', 100 ) . PHP_EOL );
 
 
 
 
 
1035
  $found ++;
1036
  }
1037
  if ( stripos( $line, '<meta name="backwpup_backupfilesize"' ) !== false ) {
1038
  fseek( $fd, $filepos );
1039
- fwrite( $fd, str_pad( '<meta name="backwpup_backupfilesize" content="' . $this->backup_filesize . '" />', 100 ) . PHP_EOL );
 
 
 
 
 
1040
  $found ++;
1041
  }
1042
  if ( $found >= 2 ) {
@@ -1065,22 +1217,29 @@ final class BackWPup_Job {
1065
  $status = __( 'ERROR', 'backwpup' );
1066
  }
1067
 
1068
- $subject = sprintf( __( '[%3$s] BackWPup log %1$s: %2$s', 'backwpup' ), date_i18n( 'd-M-Y H:i', $this->start_time, true ), esc_attr( $this->job['name'] ), $status );
 
 
 
1069
  $headers = array();
1070
  $headers[] = 'Content-Type: text/html; charset=' . get_bloginfo( 'charset' );
1071
  if ( $this->job['mailaddresssenderlog'] ) {
1072
- $this->job['mailaddresssenderlog'] = str_replace( array( '&lt;', '&gt;' ), array(
 
1073
  '<',
1074
  '>',
1075
- ), $this->job['mailaddresssenderlog'] );
 
1076
 
1077
  $bracket_pos = strpos( $this->job['mailaddresssenderlog'], '<' );
1078
  $at_pos = strpos( $this->job['mailaddresssenderlog'], '@' );
1079
  if ( $bracket_pos === false || $at_pos === false ) {
1080
- $this->job['mailaddresssenderlog'] = str_replace( array(
1081
- '<',
1082
- '>',
1083
- ), '', $this->job['mailaddresssenderlog'] ) . ' <' . get_bloginfo( 'admin_email' ) . '>';
 
 
1084
  }
1085
 
1086
  $headers[] = 'From: ' . $this->job['mailaddresssenderlog'];
@@ -1122,7 +1281,9 @@ final class BackWPup_Job {
1122
  try {
1123
  $dir = new BackWPup_Directory( $temp_dir );
1124
  foreach ( $dir as $file ) {
1125
- if ( in_array( $file->getFilename(), $do_not_delete_files, true ) || $file->isDir() || $file->isLink() ) {
 
 
1126
  continue;
1127
  }
1128
  if ( $file->isWritable() ) {
@@ -1208,18 +1369,22 @@ final class BackWPup_Job {
1208
  */
1209
  public static function get_jobrun_url( $starttype, $jobid = 0 ) {
1210
 
1211
- $authentication = get_site_option( 'backwpup_cfg_authentication', array(
1212
- 'method' => '',
1213
- 'basic_user' => '',
1214
- 'basic_password' => '',
1215
- 'user_id' => 0,
1216
- 'query_arg' => '',
1217
- ) );
 
 
1218
  $url = site_url( 'wp-cron.php' );
1219
  $header = array( 'Cache-Control' => 'no-cache' );
1220
  $authurl = '';
1221
  $query_args = array(
1222
- '_nonce' => substr( wp_hash( wp_nonce_tick() . 'backwpup_job_run-' . $starttype, 'nonce' ), - 12, 10 ),
 
 
1223
  'doing_wp_cron' => sprintf( '%.22F', microtime( true ) ),
1224
  );
1225
 
@@ -1232,8 +1397,14 @@ final class BackWPup_Job {
1232
  }
1233
 
1234
  if ( ! empty( $authentication['basic_user'] ) && ! empty( $authentication['basic_password'] ) && $authentication['method'] == 'basic' ) {
1235
- $header['Authorization'] = 'Basic ' . base64_encode( $authentication['basic_user'] . ':' . BackWPup_Encryption::decrypt( $authentication['basic_password'] ) );
1236
- $authurl = urlencode( $authentication['basic_user'] ) . ':' . urlencode( BackWPup_Encryption::decrypt( $authentication['basic_password'] ) ) . '@';
 
 
 
 
 
 
1237
  }
1238
 
1239
  if ( ! empty( $authentication['query_arg'] ) && $authentication['method'] == 'query_arg' ) {
@@ -1250,7 +1421,9 @@ final class BackWPup_Job {
1250
  }
1251
 
1252
  if ( $starttype === 'runnowlink' && ( ! defined( 'ALTERNATE_WP_CRON' ) || ! ALTERNATE_WP_CRON ) ) {
1253
- $url = wp_nonce_url( network_admin_url( 'admin.php' ), 'backwpup_job_run-' . $starttype );
 
 
1254
  $query_args['page'] = 'backwpupjobs';
1255
  $query_args['action'] = 'runnow';
1256
  $query_args['doing_wp_cron'] = null;
@@ -1259,7 +1432,9 @@ final class BackWPup_Job {
1259
 
1260
  if ( $starttype === 'runnowlink' && defined( 'ALTERNATE_WP_CRON' ) && ALTERNATE_WP_CRON ) {
1261
  $query_args['backwpup_run'] = 'runnowalt';
1262
- $query_args['_nonce'] = substr( wp_hash( wp_nonce_tick() . 'backwpup_job_run-runnowalt', 'nonce' ), - 12, 10 );
 
 
1263
  $query_args['doing_wp_cron'] = null;
1264
  }
1265
 
@@ -1284,7 +1459,9 @@ final class BackWPup_Job {
1284
  $expiration = time() + ( 2 * DAY_IN_SECONDS );
1285
  $manager = WP_Session_Tokens::get_instance( $wp_admin_user[0]->ID );
1286
  $token = $manager->create( $expiration );
1287
- $cookies[ LOGGED_IN_COOKIE ] = wp_generate_auth_cookie( $wp_admin_user[0]->ID, $expiration, 'logged_in', $token );
 
 
1288
  }
1289
  set_site_transient( 'backwpup_cookies', $cookies, 2 * DAY_IN_SECONDS );
1290
  }
@@ -1445,13 +1622,17 @@ final class BackWPup_Job {
1445
  }
1446
  //calc step percent
1447
  if ( count( $this->steps_done ) > 0 ) {
1448
- $this->step_percent = min( round( count( $this->steps_done ) / count( $this->steps_todo ) * 100 ), 100 );
 
 
1449
  } else {
1450
  $this->step_percent = 1;
1451
  }
1452
  // do step tries
1453
  while ( true ) {
1454
- if ( $this->steps_data[ $this->step_working ]['STEP_TRY'] >= get_site_option( 'backwpup_cfg_jobstepretry' ) ) {
 
 
1455
  $this->log( __( 'Step aborted: too many attempts!', 'backwpup' ), E_USER_ERROR );
1456
  $this->temp = array();
1457
  $this->steps_done[] = $this->step_working;
@@ -1477,9 +1658,11 @@ final class BackWPup_Job {
1477
  } elseif ( strstr( $this->step_working, 'JOB_' ) ) {
1478
  $done = $job_types[ str_replace( 'JOB_', '', $this->step_working ) ]->job_run( $this );
1479
  } elseif ( strstr( $this->step_working, 'DEST_SYNC_' ) ) {
1480
- $done = BackWPup::get_destination( str_replace( 'DEST_SYNC_', '', $this->step_working ) )->job_run_sync( $this );
 
1481
  } elseif ( strstr( $this->step_working, 'DEST_' ) ) {
1482
- $done = BackWPup::get_destination( str_replace( 'DEST_', '', $this->step_working ) )->job_run_archive( $this );
 
1483
  } elseif ( ! empty( $this->steps_data[ $this->step_working ]['CALLBACK'] ) ) {
1484
  $done = $this->steps_data[ $this->step_working ]['CALLBACK']( $this );
1485
  }
@@ -1520,12 +1703,20 @@ final class BackWPup_Job {
1520
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1521
  }
1522
 
1523
- if ( $this->steps_data[ $this->step_working ]['on_folder'] == '' && $this->steps_data[ $this->step_working ]['on_file'] == '' && is_file( $this->backup_folder . $this->backup_file ) ) {
 
 
 
1524
  unlink( $this->backup_folder . $this->backup_file );
1525
  }
1526
 
1527
  if ( $this->steps_data[ $this->step_working ]['SAVE_STEP_TRY'] != $this->steps_data[ $this->step_working ]['STEP_TRY'] ) {
1528
- $this->log( sprintf( __( '%d. Trying to create backup archive &hellip;', 'backwpup' ), $this->steps_data[ $this->step_working ]['STEP_TRY'] ), E_USER_NOTICE );
 
 
 
 
 
1529
  }
1530
 
1531
  try {
@@ -1533,13 +1724,20 @@ final class BackWPup_Job {
1533
 
1534
  //show method for creation
1535
  if ( $this->substeps_done == 0 ) {
1536
- $this->log( sprintf( _x( 'Compressing files as %s. Please be patient, this may take a moment.', 'Archive compression method', 'backwpup' ), $backup_archive->get_method() ) );
 
 
 
 
 
 
 
1537
  }
1538
 
1539
  //add extra files
1540
  if ( $this->substeps_done == 0 ) {
1541
  if ( ! empty( $this->additional_files_to_backup ) && $this->substeps_done == 0 ) {
1542
- $this->log(print_r($this->additional_files_to_backup, true));
1543
  if ( $this->is_debug() ) {
1544
  $this->log( __( 'Adding Extra files to Archive', 'backwpup' ) );
1545
  }
@@ -1552,7 +1750,10 @@ final class BackWPup_Job {
1552
  $backup_archive->close();
1553
  $this->steps_data[ $this->step_working ]['on_file'] = '';
1554
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1555
- $this->log( __( 'Cannot create backup archive correctly. Aborting creation.', 'backwpup' ), E_USER_ERROR );
 
 
 
1556
 
1557
  return false;
1558
  }
@@ -1586,17 +1787,10 @@ final class BackWPup_Job {
1586
  if ( in_array( $this->steps_data[ $this->step_working ]['on_file'], $files_in_folder, true ) ) {
1587
  continue;
1588
  }
1589
-
1590
- // Check if the file matches a filename in $this->additional_files_to_backup
1591
- // This prevents .sql files from being overwritten,
1592
- // as well as manifest.json, etc.
1593
- $alreadyAdded = count( array_filter( $this->additional_files_to_backup, function( $value ) use ( $file )
1594
- {
1595
- return strstr( $value, basename( $file ) );
1596
- })) > 0;
1597
- if ( $alreadyAdded ) {
1598
  continue;
1599
  }
 
1600
  $this->steps_data[ $this->step_working ]['on_file'] = $file;
1601
  //restart if needed
1602
  $restart_time = $this->get_restart_time();
@@ -1619,11 +1813,15 @@ final class BackWPup_Job {
1619
  $this->steps_data[ $this->step_working ]['on_file'] = '';
1620
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1621
  $this->substeps_done = 0;
1622
- $this->backup_filesize = filesize( $this->backup_folder . $this->backup_file );
 
 
1623
  if ( $this->backup_filesize === false ) {
1624
  $this->backup_filesize = PHP_INT_MAX;
1625
  }
1626
- $this->log( __( 'Cannot create backup archive correctly. Aborting creation.', 'backwpup' ), E_USER_ERROR );
 
 
1627
 
1628
  return false;
1629
  }
@@ -1647,13 +1845,26 @@ final class BackWPup_Job {
1647
  }
1648
 
1649
  if ( $this->backup_filesize >= PHP_INT_MAX ) {
1650
- $this->log( __( 'The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.', 'backwpup' ), E_USER_ERROR );
 
 
 
 
 
1651
  $this->end();
1652
  } else {
1653
- $this->log( sprintf( __( 'Archive size is %s.', 'backwpup' ), size_format( $this->backup_filesize, 2 ) ), E_USER_NOTICE );
 
 
 
1654
  }
1655
 
1656
- $this->log( sprintf( __( '%1$d Files with %2$s in Archive.', 'backwpup' ), $this->count_files, size_format( $this->count_files_size, 2 ) ), E_USER_NOTICE );
 
 
 
 
 
1657
 
1658
  return true;
1659
  }
@@ -1668,7 +1879,7 @@ final class BackWPup_Job {
1668
  private function encrypt_archive() {
1669
 
1670
  // Substeps is number of 128 KB chunks
1671
- $block_size = 128 * 1024;
1672
  $this->substeps_todo = ceil( $this->backup_filesize / $block_size );
1673
 
1674
  if ( ! isset( $this->steps_data[ $this->step_working ]['encrypted_filename'] ) ) {
@@ -1680,20 +1891,28 @@ final class BackWPup_Job {
1680
 
1681
  if ( ! isset( $this->steps_data[ $this->step_working ]['key'] ) ) {
1682
  if ( get_site_option( 'backwpup_cfg_encryption' ) == 'symmetric' ) {
1683
- $this->steps_data[ $this->step_working ]['key'] = pack( 'H*', get_site_option( 'backwpup_cfg_encryptionkey' ) );
 
 
1684
  } elseif ( get_site_option( 'backwpup_cfg_encryption' ) == 'asymmetric' ) {
1685
  // Generate random symmetric key
1686
  $this->steps_data[ $this->step_working ]['key'] = \phpseclib\Crypt\Random::string( 32 );
1687
  }
1688
  if ( empty( $this->steps_data[ $this->step_working ]['key'] ) ) {
1689
  $this->log( __( 'No encryption key was provided. Aborting encryption.', 'backwpup' ), E_USER_WARNING );
 
1690
  return false;
1691
  }
1692
  }
1693
 
1694
  if ( $this->steps_data[ $this->step_working ]['SAVE_STEP_TRY'] != $this->steps_data[ $this->step_working ]['STEP_TRY'] ) {
1695
  // Show initial log message
1696
- $this->log( sprintf( __( '%d. Trying to encrypt archive &hellip;', 'backwpup' ), $this->steps_data[ $this->step_working ]['STEP_TRY'] ), E_USER_NOTICE );
 
 
 
 
 
1697
  }
1698
 
1699
  $aes = new \phpseclib\Crypt\AES( \phpseclib\Crypt\AES::MODE_CBC );
@@ -1704,12 +1923,14 @@ final class BackWPup_Job {
1704
  $file_in = fopen( $this->backup_folder . $this->backup_file, 'rb' );
1705
  if ( ! $file_in ) {
1706
  $this->log( __( 'Cannot open the archive for reading. Aborting encryption.', 'backwpup' ), E_USER_ERROR );
 
1707
  return false;
1708
  }
1709
 
1710
  $file_out = fopen( $this->steps_data[ $this->step_working ]['encrypted_filename'], 'a+b' );
1711
  if ( ! $file_out ) {
1712
  $this->log( __( 'Cannot write the encrypted archive. Aborting encryption.', 'backwpup' ), E_USER_ERROR );
 
1713
  return false;
1714
  }
1715
 
@@ -1743,12 +1964,12 @@ final class BackWPup_Job {
1743
  $length = strlen( $data );
1744
  if ( $this->substeps_done == $this->substeps_todo - 1 ) {
1745
  // Pad as necessary
1746
- $pad = 16 - ($length % 16);
1747
  $data = str_pad( $data, $length + $pad, chr( $pad ) );
1748
  }
1749
  fwrite( $file_out, $aes->encrypt( $data ) );
1750
 
1751
- $this->substeps_done++;
1752
  $bytes_read += strlen( $data );
1753
  $this->update_working_data();
1754
 
@@ -1766,15 +1987,21 @@ final class BackWPup_Job {
1766
  fclose( $file_in );
1767
  fclose( $file_out );
1768
 
1769
- $this->log( sprintf( __( 'Encrypted %s of data.', 'backwpup' ), size_format( $bytes_read, 2 ) ), E_USER_NOTICE );
 
 
1770
 
1771
  // Remove the original file then rename the encrypted file
1772
  if ( ! unlink( $this->backup_folder . $this->backup_file ) ) {
1773
  $this->log( __( 'Unable to delete unencrypted archive.', 'backwpup' ) );
 
1774
  return false;
1775
  }
1776
- if ( ! rename( $this->steps_data[ $this->step_working ]['encrypted_filename'], $this->backup_folder . $this->backup_file ) ) {
 
 
1777
  $this->log( __( 'Unable to rename encrypted archive.', 'backwpup' ) );
 
1778
  return false;
1779
  }
1780
 
@@ -1828,13 +2055,17 @@ final class BackWPup_Job {
1828
  $folder = trailingslashit( $folder );
1829
 
1830
  if ( ! is_dir( $folder ) ) {
1831
- $this->log( sprintf( _x( 'Folder %s does not exist', 'Folder name', 'backwpup' ), $folder ), E_USER_WARNING );
 
 
1832
 
1833
  return $files;
1834
  }
1835
 
1836
  if ( ! is_readable( $folder ) ) {
1837
- $this->log( sprintf( _x( 'Folder %s is not readable', 'Folder name', 'backwpup' ), $folder ), E_USER_WARNING );
 
 
1838
 
1839
  return $files;
1840
  }
@@ -1853,17 +2084,32 @@ final class BackWPup_Job {
1853
  continue 2;
1854
  }
1855
  }
1856
- if ( $this->job['backupexcludethumbs'] && strpos( $folder, BackWPup_File::get_upload_dir() ) !== false && preg_match( "/\-[0-9]{1,4}x[0-9]{1,4}.+\.(jpg|png|gif)$/i", $file->getFilename() ) ) {
 
 
 
 
1857
  continue;
1858
  }
1859
  if ( $file->isLink() ) {
1860
- $this->log( sprintf( __( 'Link "%s" not following.', 'backwpup' ), $file->getPathname() ), E_USER_WARNING );
 
 
1861
  } elseif ( ! $file->isReadable() ) {
1862
- $this->log( sprintf( __( 'File "%s" is not readable!', 'backwpup' ), $file->getPathname() ), E_USER_WARNING );
 
 
1863
  } else {
1864
  $file_size = $file->getSize();
1865
  if ( ! is_int( $file_size ) || $file_size < 0 || $file_size > 2147483647 ) {
1866
- $this->log( sprintf( __( 'File size of “%s” cannot be retrieved. File might be too large and will not be added to queue.', 'backwpup' ), $file->getPathname() . ' ' . $file_size ), E_USER_WARNING );
 
 
 
 
 
 
 
1867
  continue;
1868
  }
1869
  $files[] = BackWPup_Path_Fixer::slashify( realpath( $path ) );
@@ -1946,7 +2192,12 @@ final class BackWPup_Job {
1946
 
1947
  $this->substeps_todo = 3;
1948
 
1949
- $this->log( sprintf( __( '%d. Trying to generate a manifest file&#160;&hellip;', 'backwpup' ), $this->steps_data[ $this->step_working ]['STEP_TRY'] ) );
 
 
 
 
 
1950
 
1951
  //build manifest
1952
  $manifest = array();
@@ -1983,16 +2234,24 @@ final class BackWPup_Job {
1983
  $manifest['archive']['abspath'] = trailingslashit( $this->get_destination_path_replacement( ABSPATH ) );
1984
  }
1985
  if ( $this->job['backupuploads'] ) {
1986
- $manifest['archive']['uploads'] = trailingslashit( $this->get_destination_path_replacement( BackWPup_File::get_upload_dir() ) );
 
 
1987
  }
1988
  if ( $this->job['backupcontent'] ) {
1989
- $manifest['archive']['contents'] = trailingslashit( $this->get_destination_path_replacement( WP_CONTENT_DIR ) );
 
 
1990
  }
1991
  if ( $this->job['backupplugins'] ) {
1992
- $manifest['archive']['plugins'] = trailingslashit( $this->get_destination_path_replacement( WP_PLUGIN_DIR ) );
 
 
1993
  }
1994
  if ( $this->job['backupthemes'] ) {
1995
- $manifest['archive']['themes'] = trailingslashit( $this->get_destination_path_replacement( get_theme_root() ) );
 
 
1996
  }
1997
  }
1998
 
@@ -2003,8 +2262,12 @@ final class BackWPup_Job {
2003
 
2004
  //Create backwpup_readme.txt
2005
  $readme_text = __( 'You may have noticed the manifest.json file in this archive.', 'backwpup' ) . PHP_EOL;
2006
- $readme_text .= __( 'manifest.json might be needed for later restoring a backup from this archive.', 'backwpup' ) . PHP_EOL;
2007
- $readme_text .= __( 'Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored.', 'backwpup' ) . PHP_EOL;
 
 
 
 
2008
  if ( ! file_put_contents( BackWPup::get_plugin_data( 'TEMP' ) . 'backwpup_readme.txt', $readme_text ) ) {
2009
  return false;
2010
  }
@@ -2014,7 +2277,12 @@ final class BackWPup_Job {
2014
  if ( is_readable( BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json' ) ) {
2015
  $this->additional_files_to_backup[] = BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json';
2016
  $this->additional_files_to_backup[] = BackWPup::get_plugin_data( 'TEMP' ) . 'backwpup_readme.txt';
2017
- $this->log( sprintf( __( 'Added manifest.json file with %1$s to backup file list.', 'backwpup' ), size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json' ), 2 ) ) );
 
 
 
 
 
2018
  }
2019
  $this->substeps_done = 3;
2020
 
@@ -2425,7 +2693,7 @@ final class BackWPup_Job {
2425
  */
2426
  public static function mysqldump_installed( $dbdumpmysqlfolder ) {
2427
 
2428
- if( false === self::is_exec() ) {
2429
  return false;
2430
  }
2431
 
@@ -2447,13 +2715,15 @@ final class BackWPup_Job {
2447
 
2448
  $output = '';
2449
 
2450
- if( false === self::is_exec() ) {
2451
- $output = '<span style="color:#999;">'. __( 'exec command is not active.', 'backwpup' ) .'</span>';
 
2452
  return $output;
2453
  }
2454
 
2455
  if ( ! file_exists( $dbdumpmysqlfolder ) || ! is_executable( $dbdumpmysqlfolder ) ) {
2456
- $output = '<span style="color:#999;">'. __( 'mysqldump binary not found.', 'backwpup' ) .'</span>';
 
2457
  return $output;
2458
  }
2459
 
@@ -2479,78 +2749,133 @@ final class BackWPup_Job {
2479
  //known signals
2480
  $signals = array(
2481
  'SIGHUP' => array(
2482
- 'description' => _x( 'Hangup detected on controlling terminal or death of controlling process', 'SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2483
  'error' => E_USER_ERROR,
2484
  ),
2485
  'SIGINT' => array(
2486
- 'description' => _x( 'Interrupt from keyboard', 'SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2487
  'error' => E_USER_ERROR,
2488
  ),
2489
  'SIGQUIT' => array(
2490
- 'description' => _x( 'Quit from keyboard', 'SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2491
  'error' => E_USER_ERROR,
2492
  ),
2493
  'SIGILL' => array(
2494
- 'description' => _x( 'Illegal Instruction', 'SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2495
  'error' => E_USER_ERROR,
2496
  ),
2497
  'SIGABRT' => array(
2498
- 'description' => _x( 'Abort signal from abort(3)', 'SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2499
  'error' => E_USER_NOTICE,
2500
  ),
2501
  'SIGBUS' => array(
2502
- 'description' => _x( 'Bus error (bad memory access)', 'SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2503
  'error' => E_USER_ERROR,
2504
  ),
2505
  'SIGFPE' => array(
2506
- 'description' => _x( 'Floating point exception', 'SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2507
  'error' => E_USER_ERROR,
2508
  ),
2509
  'SIGSEGV' => array(
2510
- 'description' => _x( 'Invalid memory reference', 'SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2511
  'error' => E_USER_ERROR,
2512
  ),
2513
  'SIGTERM' => array(
2514
- 'description' => _x( 'Termination signal', 'SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2515
  'error' => E_USER_WARNING,
2516
  ),
2517
  'SIGSTKFLT' => array(
2518
- 'description' => _x( 'Stack fault on coprocessor', 'SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2519
  'error' => E_USER_ERROR,
2520
  ),
2521
  'SIGUSR1' => array(
2522
- 'description' => _x( 'User-defined signal 1', 'SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2523
  'error' => E_USER_NOTICE,
2524
  ),
2525
  'SIGUSR2' => array(
2526
- 'description' => _x( 'User-defined signal 2', 'SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2527
  'error' => E_USER_NOTICE,
2528
  ),
2529
  'SIGURG' => array(
2530
- 'description' => _x( 'Urgent condition on socket', 'SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2531
  'error' => E_USER_NOTICE,
2532
  ),
2533
  'SIGXCPU' => array(
2534
- 'description' => _x( 'CPU time limit exceeded', 'SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2535
  'error' => E_USER_ERROR,
2536
  ),
2537
  'SIGXFSZ' => array(
2538
- 'description' => _x( 'File size limit exceeded', 'SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2539
  'error' => E_USER_ERROR,
2540
  ),
2541
  'SIGPWR' => array(
2542
- 'description' => _x( 'Power failure', 'SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2543
  'error' => E_USER_ERROR,
2544
  ),
2545
  'SIGSYS' => array(
2546
- 'description' => _x( 'Bad argument to routine', 'SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup' ),
 
 
 
2547
  'error' => E_USER_ERROR,
2548
  ),
2549
  );
2550
 
2551
  foreach ( $signals as $signal => $config ) {
2552
  if ( defined( $signal ) && $signal_send === constant( $signal ) ) {
2553
- $this->log( sprintf( __( 'Signal "%1$s" (%2$s) is sent to script!', 'backwpup' ), $signal, $config['description'] ), $config['error'] );
 
 
 
 
2554
  $this->signal = $signal_send;
2555
  break;
2556
  }
@@ -2612,7 +2937,11 @@ final class BackWPup_Job {
2612
  */
2613
  public function exception_handler( $exception ) {
2614
 
2615
- $this->log( sprintf( __( 'Exception caught in %1$s: %2$s', 'backwpup' ), get_class( $exception ), $exception->getMessage() ), E_USER_ERROR, $exception->getFile(), $exception->getLine() );
 
 
 
 
2616
  }
2617
 
2618
  /**
@@ -2661,7 +2990,9 @@ final class BackWPup_Job {
2661
 
2662
  $storage = strtolower( $storage );
2663
 
2664
- $file = BackWPup::get_plugin_data( 'temp' ) . 'backwpup-' . BackWPup::get_plugin_data( 'hash' ) . '-' . $storage . '.json';
 
 
2665
 
2666
  if ( ! empty( $data ) ) {
2667
  file_put_contents( $file, json_encode( $data ) );
@@ -2701,4 +3032,23 @@ final class BackWPup_Job {
2701
  }
2702
  }
2703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2704
  }
19
  * @var string the logfile
20
  */
21
  public $logfile = '';
22
+
23
  /**
24
  * @var array for temp values
25
  */
26
  public $temp = array();
27
+
28
  /**
29
  * @var string Folder where is Backup files in
30
  */
31
  public $backup_folder = '';
32
+
33
  /**
34
  * @var string the name of the Backup archive file
35
  */
36
  public $backup_file = '';
37
+
38
  /**
39
  * @var int The size of the Backup archive file
40
  */
41
  public $backup_filesize = 0;
42
+
43
  /**
44
  * @var int PID of script
45
  */
46
  public $pid = 0;
47
+
48
  /**
49
  * @var float Timestamp of last update off .running file
50
  */
51
  public $timestamp_last_update = 0;
52
+
53
  /**
54
  * @var int Number of warnings
55
  */
56
  public $warnings = 0;
57
+
58
  /**
59
  * @var int Number of errors
60
  */
61
  public $errors = 0;
62
+
63
  /**
64
  * @var string the last log notice message
65
  */
66
  public $lastmsg = '';
67
+
68
  /**
69
  * @var string the last log error/waring message
70
  */
71
  public $lasterrormsg = '';
72
+
73
  /**
74
  * @var array of steps to do
75
  */
76
  public $steps_todo = array( 'CREATE' );
77
+
78
  /**
79
  * @var array of done steps
80
  */
81
  public $steps_done = array();
82
+
83
  /**
84
  * @var array of steps data
85
  */
86
  public $steps_data = array();
87
+
88
  /**
89
  * @var string working on step
90
  */
91
  public $step_working = 'CREATE';
92
+
93
  /**
94
  * @var int Number of sub steps must do in step
95
  */
96
  public $substeps_todo = 0;
97
+
98
  /**
99
  * @var int Number of sub steps done in step
100
  */
101
  public $substeps_done = 0;
102
+
103
  /**
104
  * @var int Percent of steps done
105
  */
106
  public $step_percent = 1;
107
+
108
  /**
109
  * @var int Percent of sub steps done
110
  */
111
  public $substep_percent = 1;
112
+
113
  /**
114
  * @var array of files to additional to backup
115
  */
116
  public $additional_files_to_backup = array();
117
+
118
  /**
119
  * @var array of files/folder to exclude from backup
120
  */
121
  public $exclude_from_backup = array();
122
+
123
  /**
124
  * @var int count of affected files
125
  */
126
  public $count_files = 0;
127
+
128
  /**
129
  * @var int count of affected file sizes
130
  */
131
  public $count_files_size = 0;
132
+
133
  /**
134
  * @var int count of affected folders
135
  */
136
  public $count_folder = 0;
137
+
138
  /**
139
  * If job aborted from user
140
  *
141
  * @var bool
142
  */
143
  public $user_abort = false;
144
+
145
  /**
146
  * A uniqid ID uniqid('', true); to identify process
147
  *
148
  * @var string
149
  */
150
  public $uniqid = '';
151
+
152
  /**
153
  * @var float Timestamp of script start
154
  */
155
  private $timestamp_script_start = 0;
156
+
157
  /**
158
  * Stores data that will only used in a single run
159
  *
160
  * @var array
161
  */
162
  private $run = array();
163
+
164
  /**
165
  * @var string logging level (normal|normal_untranslated|debug|debug_untranslated)
166
  */
298
  //set Logfile
299
  $log_folder = get_site_option( 'backwpup_cfg_logfolder' );
300
  $log_folder = BackWPup_File::get_absolute_path( $log_folder );
301
+ $this->logfile = $log_folder . 'backwpup_log_' . BackWPup::get_plugin_data( 'hash' ) . '_' . date(
302
+ 'Y-m-d_H-i-s', current_time( 'timestamp' )
303
+ ) . '.html';
304
  //write settings to job
305
  BackWPup_Option::update( $this->job['jobid'], 'lastrun', $this->start_time );
306
  BackWPup_Option::update( $this->job['jobid'], 'logfile', $this->logfile ); //Set current logfile
407
 
408
  //set log level
409
  $this->log_level = get_site_option( 'backwpup_cfg_loglevel', 'normal_translated' );
410
+ if ( ! in_array(
411
+ $this->log_level, array(
412
  'normal_translated',
413
  'normal',
414
  'debug_translated',
415
  'debug',
416
+ ), true
417
+ ) ) {
418
  $this->log_level = 'normal_translated';
419
  }
420
  //create log file
424
  $head .= "<html lang=\"" . str_replace( '_', '-', get_locale() ) . "\">" . PHP_EOL;
425
  $head .= "<head>" . PHP_EOL;
426
  $head .= "<meta charset=\"" . get_bloginfo( 'charset' ) . "\" />" . PHP_EOL;
427
+ $head .= "<title>" . sprintf(
428
+ __( 'BackWPup log for %1$s from %2$s at %3$s', 'backwpup' ), $this->job['name'],
429
+ date_i18n( get_option( 'date_format' ) ), date_i18n( get_option( 'time_format' ) )
430
+ ) . "</title>" . PHP_EOL;
431
  $head .= "<meta name=\"robots\" content=\"noindex, nofollow\" />" . PHP_EOL;
432
+ $head .= "<meta name=\"copyright\" content=\"Copyright &copy; 2012 - " . date(
433
+ 'Y'
434
+ ) . " Inpsyde GmbH\" />" . PHP_EOL;
435
  $head .= "<meta name=\"author\" content=\"Inpsyde GmbH\" />" . PHP_EOL;
436
+ $head .= "<meta name=\"generator\" content=\"BackWPup " . BackWPup::get_plugin_data(
437
+ 'Version'
438
+ ) . "\" />" . PHP_EOL;
439
  $head .= "<meta http-equiv=\"cache-control\" content=\"no-cache\" />" . PHP_EOL;
440
  $head .= "<meta http-equiv=\"pragma\" content=\"no-cache\" />" . PHP_EOL;
441
  $head .= "<meta name=\"date\" content=\"" . date( 'c' ) . "\" />" . PHP_EOL;
442
  $head .= str_pad( '<meta name="backwpup_errors" content="0" />', 100 ) . PHP_EOL;
443
  $head .= str_pad( '<meta name="backwpup_warnings" content="0" />', 100 ) . PHP_EOL;
444
  $head .= "<meta name=\"backwpup_jobid\" content=\"" . $this->job['jobid'] . "\" />" . PHP_EOL;
445
+ $head .= "<meta name=\"backwpup_jobname\" content=\"" . esc_attr(
446
+ $this->job['name']
447
+ ) . "\" />" . PHP_EOL;
448
+ $head .= "<meta name=\"backwpup_jobtype\" content=\"" . implode(
449
+ '+', $this->job['type']
450
+ ) . "\" />" . PHP_EOL;
451
  $head .= str_pad( '<meta name="backwpup_backupfilesize" content="0" />', 100 ) . PHP_EOL;
452
  $head .= str_pad( '<meta name="backwpup_jobruntime" content="0" />', 100 ) . PHP_EOL;
453
  $head .= '</head>' . PHP_EOL;
454
  $head .= '<body style="margin:0;padding:3px;font-family:monospace;font-size:12px;line-height:15px;background-color:black;color:#c0c0c0;white-space:nowrap;">' . PHP_EOL;
455
+ $info .= sprintf(
456
+ _x(
457
+ '[INFO] %1$s %2$s; A project of Inpsyde GmbH', 'Plugin name; Plugin Version; plugin url', 'backwpup'
458
+ ), BackWPup::get_plugin_data( 'name' ), BackWPup::get_plugin_data( 'Version' ),
459
+ __( 'http://backwpup.com', 'backwpup' )
460
+ ) . '<br />' . PHP_EOL;
461
+ $info .= sprintf(
462
+ _x( '[INFO] WordPress %1$s on %2$s', 'WordPress Version; Blog url', 'backwpup' ),
463
+ BackWPup::get_plugin_data( 'wp_version' ), esc_attr( site_url( '/' ) )
464
+ ) . '<br />' . PHP_EOL;
465
  $level = __( 'Normal', 'backwpup' );
466
  $translated = '';
467
  if ( $this->is_debug() ) {
470
  if ( is_textdomain_loaded( 'backwpup' ) ) {
471
  $translated = __( '(translated)', 'backwpup' );
472
  }
473
+ $info .= sprintf(
474
+ __( '[INFO] Log Level: %1$s %2$s', 'backwpup' ), $level, $translated
475
+ ) . '<br />' . PHP_EOL;
476
  $job_name = esc_attr( $this->job['name'] );
477
  if ( $this->is_debug() ) {
478
  $job_name .= '; ' . implode( '+', $this->job['type'] );
480
  $info .= sprintf( __( '[INFO] BackWPup job: %1$s', 'backwpup' ), $job_name ) . '<br />' . PHP_EOL;
481
  if ( $this->is_debug() ) {
482
  $current_user = wp_get_current_user();
483
+ $info .= sprintf(
484
+ __( '[INFO] Runs with user: %1$s (%2$d) ', 'backwpup' ), $current_user->user_login,
485
+ $current_user->ID
486
+ ) . '<br />' . PHP_EOL;
487
  }
488
  if ( $this->job['activetype'] === 'wpcron' ) {
489
  //check next run
499
  if ( ! $cron_next ) {
500
  $cron_next = __( 'Not scheduled!', 'backwpup' );
501
  } else {
502
+ $cron_next = date_i18n(
503
+ 'D, j M Y @ H:i', $cron_next + ( get_option( 'gmt_offset' ) * 3600 ), true
504
+ );
505
  }
506
+ $info .= sprintf(
507
+ __( '[INFO] Cron: %s; Next: %s ', 'backwpup' ), $this->job['cron'], $cron_next
508
+ ) . '<br />' . PHP_EOL;
509
  }
510
  } elseif ( $this->job['activetype'] == 'link' && $this->is_debug() ) {
511
  $info .= __( '[INFO] BackWPup job start with link is active', 'backwpup' ) . '<br />' . PHP_EOL;
515
  if ( $this->is_debug() ) {
516
  $cron_next = BackWPup_Cron::cron_next( $this->job['cron'] );
517
  $cron_next = date_i18n( 'D, j M Y @ H:i', $cron_next + ( get_option( 'gmt_offset' ) * 3600 ), true );
518
+ $info .= sprintf(
519
+ __( '[INFO] Cron: %s; Next: %s ', 'backwpup' ), $this->job['cron'], $cron_next
520
+ ) . '<br />' . PHP_EOL;
521
  }
522
  } elseif ( $this->is_debug() ) {
523
  $info .= __( '[INFO] BackWPup no automatic job start configured', 'backwpup' ) . '<br />' . PHP_EOL;
530
  } elseif ( $start_type == 'runext' ) {
531
  $info .= __( '[INFO] BackWPup job started from external url', 'backwpup' ) . '<br />' . PHP_EOL;
532
  } elseif ( $start_type == 'runcli' ) {
533
+ $info .= __(
534
+ '[INFO] BackWPup job started form commandline interface', 'backwpup'
535
+ ) . '<br />' . PHP_EOL;
536
  }
537
  $bit = '';
538
  if ( PHP_INT_SIZE === 4 ) {
541
  if ( PHP_INT_SIZE === 8 ) {
542
  $bit = ' (64bit)';
543
  }
544
+ $info .= __(
545
+ '[INFO] PHP ver.:', 'backwpup'
546
+ ) . ' ' . PHP_VERSION . $bit . '; ' . PHP_SAPI . '; ' . PHP_OS . '<br />' . PHP_EOL;
547
+ $info .= sprintf(
548
+ __( '[INFO] Maximum PHP script execution time is %1$d seconds', 'backwpup' ),
549
+ ini_get( 'max_execution_time' )
550
+ ) . '<br />' . PHP_EOL;
551
  if ( php_sapi_name() != 'cli' ) {
552
  $job_max_execution_time = get_site_option( 'backwpup_cfg_jobmaxexecutiontime' );
553
  if ( ! empty( $job_max_execution_time ) ) {
554
+ $info .= sprintf(
555
+ __( '[INFO] Script restart time is configured to %1$d seconds', 'backwpup' ),
556
+ $job_max_execution_time
557
+ ) . '<br />' . PHP_EOL;
558
  }
559
  }
560
+ $info .= sprintf(
561
+ __( '[INFO] MySQL ver.: %s', 'backwpup' ), $wpdb->get_var( "SELECT VERSION() AS version" )
562
+ ) . '<br />' . PHP_EOL;
563
  if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) {
564
+ $info .= sprintf(
565
+ __( '[INFO] Web Server: %s', 'backwpup' ), $_SERVER['SERVER_SOFTWARE']
566
+ ) . '<br />' . PHP_EOL;
567
  }
568
  if ( function_exists( 'curl_init' ) ) {
569
  $curlversion = curl_version();
570
+ $info .= sprintf(
571
+ __( '[INFO] curl ver.: %1$s; %2$s', 'backwpup' ), $curlversion['version'],
572
+ $curlversion['ssl_version']
573
+ ) . '<br />' . PHP_EOL;
574
  }
575
+ $info .= sprintf(
576
+ __( '[INFO] Temp folder is: %s', 'backwpup' ), BackWPup::get_plugin_data( 'TEMP' )
577
+ ) . '<br />' . PHP_EOL;
578
  }
579
  if ( $this->is_debug() ) {
580
  $logfile = $this->logfile;
590
  }
591
  $info .= sprintf( __( '[INFO] Backup file is: %s', 'backwpup' ), $backupfile ) . '<br />' . PHP_EOL;
592
  } else {
593
+ $info .= sprintf(
594
+ __( '[INFO] Backup type is: %s', 'backwpup' ), $this->job['backuptype']
595
+ ) . '<br />' . PHP_EOL;
596
  }
597
  //output info on cli
598
  if ( php_sapi_name() == 'cli' && defined( 'STDOUT' ) ) {
612
  }
613
  }
614
  if ( ! $desttest ) {
615
+ $this->log(
616
+ __( 'No destination correctly defined for backup! Please correct job settings.', 'backwpup' ),
617
+ E_USER_ERROR
618
+ );
619
  $this->steps_todo = array( 'END' );
620
  }
621
  }
647
 
648
  $name = BackWPup_Option::substitute_date_vars( $name );
649
  $name .= $suffix;
650
+ if ( $delete_temp_file && is_writeable( BackWPup::get_plugin_data( 'TEMP' ) . $name )
651
+ && ! is_dir(
652
+ BackWPup::get_plugin_data( 'TEMP' ) . $name
653
+ )
654
+ && ! is_link( BackWPup::get_plugin_data( 'TEMP' ) . $name ) ) {
655
  unlink( BackWPup::get_plugin_data( 'TEMP' ) . $name );
656
  }
657
 
737
  }
738
 
739
  //if first the type an second the message switch it on user errors
740
+ if ( ! is_int( $type ) && is_int( $message )
741
+ && in_array(
742
+ $message, array(
743
  1,
744
  2,
745
  4,
755
  4096,
756
  8192,
757
  16384,
758
+ ), true
759
+ )
760
  ) {
761
  $temp = $message;
762
  $message = $type;
834
  }
835
  WP_CLI::line( $output_message );
836
  } elseif ( php_sapi_name() == 'cli' && defined( 'STDOUT' ) ) {
837
+ $output_message = str_replace(
838
+ array( '&hellip;', '&#160;' ), array(
839
  '...',
840
  ' ',
841
+ ), esc_html( $message )
842
+ ) . PHP_EOL;
843
  fwrite( STDOUT, $output_message );
844
  }
845
 
846
  //timestamp for log file
847
  $debug_info = '';
848
  if ( $this->is_debug() ) {
849
+ $debug_info = ' title="[Type: ' . $type . '|Line: ' . $line . '|File: ' . $in_file . '|Mem: ' . size_format(
850
+ @memory_get_usage( true ), 2
851
+ ) . '|Mem Max: ' . size_format( @memory_get_peak_usage( true ), 2 ) . '|Mem Limit: ' . ini_get(
852
+ 'memory_limit'
853
+ ) . '|PID: ' . self::get_pid() . ' | UniqID: ' . $this->uniqid . '|Queries: ' . get_num_queries(
854
+ ) . ']"';
855
  }
856
+ $timestamp = '<span datetime="' . date( 'c' ) . '" ' . $debug_info . '>[' . date(
857
+ 'd-M-Y H:i:s', current_time( 'timestamp' )
858
+ ) . ']</span> ';
859
 
860
  //set last Message
861
  if ( $error ) {
862
+ $output_message = '<span style="background-color:#ff6766;color:black;padding:0 2px;">' . esc_html(
863
+ $message
864
+ ) . '</span>';
865
  $this->lasterrormsg = $output_message;
866
  } elseif ( $warning ) {
867
+ $output_message = '<span style="background-color:#ffc766;color:black;padding:0 2px;">' . esc_html(
868
+ $message
869
+ ) . '</span>';
870
  $this->lasterrormsg = $output_message;
871
  } else {
872
  $output_message = esc_html( $message );
874
  }
875
  //write log file
876
  if ( $this->logfile ) {
877
+ if ( ! file_put_contents(
878
+ $this->logfile, $timestamp . $output_message . '<br />' . PHP_EOL, FILE_APPEND
879
+ ) ) {
880
  $this->logfile = '';
881
  restore_error_handler();
882
  trigger_error( esc_html( $message ), $type );
890
  $line = fgets( $fd );
891
  if ( $error && stripos( $line, '<meta name="backwpup_errors" content="' ) !== false ) {
892
  fseek( $fd, $file_pos );
893
+ fwrite(
894
+ $fd, str_pad(
895
+ '<meta name="backwpup_errors" content="' . $this->errors . '" />', 100
896
+ ) . PHP_EOL
897
+ );
898
  break;
899
  }
900
  if ( $warning && stripos( $line, '<meta name="backwpup_warnings" content="' ) !== false ) {
901
  fseek( $fd, $file_pos );
902
+ fwrite(
903
+ $fd, str_pad(
904
+ '<meta name="backwpup_warnings" content="' . $this->warnings . '" />', 100
905
+ ) . PHP_EOL
906
+ );
907
  break;
908
  }
909
  $file_pos = ftell( $fd );
984
  global $wpdb;
985
 
986
  //to reduce server load
987
+ if ( get_site_option( 'backwpup_cfg_jobwaittimems' ) > 0
988
+ && get_site_option(
989
+ 'backwpup_cfg_jobwaittimems'
990
+ ) <= 500000 ) {
991
  usleep( get_site_option( 'backwpup_cfg_jobwaittimems' ) );
992
  }
993
 
1100
  $dir = new BackWPup_Directory( $log_folder );
1101
 
1102
  foreach ( $dir as $file ) {
1103
+ if ( ! $file->isDot() && strpos( $file->getFilename(), 'backwpup_log_' ) === 0
1104
+ && strpos(
1105
+ $file->getFilename(), '.html'
1106
+ ) !== false ) {
1107
  $log_file_list[ $file->getMTime() ] = clone $file;
1108
  }
1109
  }
1124
  $num_delete_files ++;
1125
  }
1126
  if ( $num_delete_files > 0 ) {
1127
+ $this->log(
1128
+ sprintf(
1129
+ _n( 'One old log deleted', '%d old logs deleted', $num_delete_files, 'backwpup' ),
1130
+ $num_delete_files
1131
+ )
1132
+ );
1133
  }
1134
  }
1135
  }
1136
 
1137
  //Display job working time
1138
  if ( $this->errors > 0 ) {
1139
+ $this->log(
1140
+ sprintf(
1141
+ __(
1142
+ 'Job has ended with errors in %s seconds. You must resolve the errors for correct execution.',
1143
+ 'backwpup'
1144
+ ), current_time( 'timestamp' ) - $this->start_time
1145
+ ), E_USER_ERROR
1146
+ );
1147
  } elseif ( $this->warnings > 0 ) {
1148
+ $this->log(
1149
+ sprintf(
1150
+ __(
1151
+ 'Job finished with warnings in %s seconds. Please resolve them for correct execution.',
1152
+ 'backwpup'
1153
+ ), current_time( 'timestamp' ) - $this->start_time
1154
+ ), E_USER_WARNING
1155
+ );
1156
  } else {
1157
+ $this->log(
1158
+ sprintf( __( 'Job done in %s seconds.', 'backwpup' ), current_time( 'timestamp' ) - $this->start_time )
1159
+ );
1160
  }
1161
 
1162
  //Update job options
1163
  $this->job['lastruntime'] = current_time( 'timestamp' ) - $this->start_time;
1164
  BackWPup_Option::update( $this->job['jobid'], 'lastruntime', $this->job['lastruntime'] );
1165
 
 
1166
  //write header info
1167
  if ( ! empty( $this->logfile ) ) {
1168
 
1173
  $line = fgets( $fd );
1174
  if ( stripos( $line, '<meta name="backwpup_jobruntime"' ) !== false ) {
1175
  fseek( $fd, $filepos );
1176
+ fwrite(
1177
+ $fd, str_pad(
1178
+ '<meta name="backwpup_jobruntime" content="' . $this->job['lastruntime'] . '" />',
1179
+ 100
1180
+ ) . PHP_EOL
1181
+ );
1182
  $found ++;
1183
  }
1184
  if ( stripos( $line, '<meta name="backwpup_backupfilesize"' ) !== false ) {
1185
  fseek( $fd, $filepos );
1186
+ fwrite(
1187
+ $fd, str_pad(
1188
+ '<meta name="backwpup_backupfilesize" content="' . $this->backup_filesize . '" />',
1189
+ 100
1190
+ ) . PHP_EOL
1191
+ );
1192
  $found ++;
1193
  }
1194
  if ( $found >= 2 ) {
1217
  $status = __( 'ERROR', 'backwpup' );
1218
  }
1219
 
1220
+ $subject = sprintf(
1221
+ __( '[%3$s] BackWPup log %1$s: %2$s', 'backwpup' ),
1222
+ date_i18n( 'd-M-Y H:i', $this->start_time, true ), esc_attr( $this->job['name'] ), $status
1223
+ );
1224
  $headers = array();
1225
  $headers[] = 'Content-Type: text/html; charset=' . get_bloginfo( 'charset' );
1226
  if ( $this->job['mailaddresssenderlog'] ) {
1227
+ $this->job['mailaddresssenderlog'] = str_replace(
1228
+ array( '&lt;', '&gt;' ), array(
1229
  '<',
1230
  '>',
1231
+ ), $this->job['mailaddresssenderlog']
1232
+ );
1233
 
1234
  $bracket_pos = strpos( $this->job['mailaddresssenderlog'], '<' );
1235
  $at_pos = strpos( $this->job['mailaddresssenderlog'], '@' );
1236
  if ( $bracket_pos === false || $at_pos === false ) {
1237
+ $this->job['mailaddresssenderlog'] = str_replace(
1238
+ array(
1239
+ '<',
1240
+ '>',
1241
+ ), '', $this->job['mailaddresssenderlog']
1242
+ ) . ' <' . get_bloginfo( 'admin_email' ) . '>';
1243
  }
1244
 
1245
  $headers[] = 'From: ' . $this->job['mailaddresssenderlog'];
1281
  try {
1282
  $dir = new BackWPup_Directory( $temp_dir );
1283
  foreach ( $dir as $file ) {
1284
+ if ( in_array( $file->getFilename(), $do_not_delete_files, true )
1285
+ || $file->isDir()
1286
+ || $file->isLink() ) {
1287
  continue;
1288
  }
1289
  if ( $file->isWritable() ) {
1369
  */
1370
  public static function get_jobrun_url( $starttype, $jobid = 0 ) {
1371
 
1372
+ $authentication = get_site_option(
1373
+ 'backwpup_cfg_authentication', array(
1374
+ 'method' => '',
1375
+ 'basic_user' => '',
1376
+ 'basic_password' => '',
1377
+ 'user_id' => 0,
1378
+ 'query_arg' => '',
1379
+ )
1380
+ );
1381
  $url = site_url( 'wp-cron.php' );
1382
  $header = array( 'Cache-Control' => 'no-cache' );
1383
  $authurl = '';
1384
  $query_args = array(
1385
+ '_nonce' => substr(
1386
+ wp_hash( wp_nonce_tick() . 'backwpup_job_run-' . $starttype, 'nonce' ), - 12, 10
1387
+ ),
1388
  'doing_wp_cron' => sprintf( '%.22F', microtime( true ) ),
1389
  );
1390
 
1397
  }
1398
 
1399
  if ( ! empty( $authentication['basic_user'] ) && ! empty( $authentication['basic_password'] ) && $authentication['method'] == 'basic' ) {
1400
+ $header['Authorization'] = 'Basic ' . base64_encode(
1401
+ $authentication['basic_user'] . ':' . BackWPup_Encryption::decrypt(
1402
+ $authentication['basic_password']
1403
+ )
1404
+ );
1405
+ $authurl = urlencode( $authentication['basic_user'] ) . ':' . urlencode(
1406
+ BackWPup_Encryption::decrypt( $authentication['basic_password'] )
1407
+ ) . '@';
1408
  }
1409
 
1410
  if ( ! empty( $authentication['query_arg'] ) && $authentication['method'] == 'query_arg' ) {
1421
  }
1422
 
1423
  if ( $starttype === 'runnowlink' && ( ! defined( 'ALTERNATE_WP_CRON' ) || ! ALTERNATE_WP_CRON ) ) {
1424
+ $url = wp_nonce_url(
1425
+ network_admin_url( 'admin.php' ), 'backwpup_job_run-' . $starttype
1426
+ );
1427
  $query_args['page'] = 'backwpupjobs';
1428
  $query_args['action'] = 'runnow';
1429
  $query_args['doing_wp_cron'] = null;
1432
 
1433
  if ( $starttype === 'runnowlink' && defined( 'ALTERNATE_WP_CRON' ) && ALTERNATE_WP_CRON ) {
1434
  $query_args['backwpup_run'] = 'runnowalt';
1435
+ $query_args['_nonce'] = substr(
1436
+ wp_hash( wp_nonce_tick() . 'backwpup_job_run-runnowalt', 'nonce' ), - 12, 10
1437
+ );
1438
  $query_args['doing_wp_cron'] = null;
1439
  }
1440
 
1459
  $expiration = time() + ( 2 * DAY_IN_SECONDS );
1460
  $manager = WP_Session_Tokens::get_instance( $wp_admin_user[0]->ID );
1461
  $token = $manager->create( $expiration );
1462
+ $cookies[ LOGGED_IN_COOKIE ] = wp_generate_auth_cookie(
1463
+ $wp_admin_user[0]->ID, $expiration, 'logged_in', $token
1464
+ );
1465
  }
1466
  set_site_transient( 'backwpup_cookies', $cookies, 2 * DAY_IN_SECONDS );
1467
  }
1622
  }
1623
  //calc step percent
1624
  if ( count( $this->steps_done ) > 0 ) {
1625
+ $this->step_percent = min(
1626
+ round( count( $this->steps_done ) / count( $this->steps_todo ) * 100 ), 100
1627
+ );
1628
  } else {
1629
  $this->step_percent = 1;
1630
  }
1631
  // do step tries
1632
  while ( true ) {
1633
+ if ( $this->steps_data[ $this->step_working ]['STEP_TRY'] >= get_site_option(
1634
+ 'backwpup_cfg_jobstepretry'
1635
+ ) ) {
1636
  $this->log( __( 'Step aborted: too many attempts!', 'backwpup' ), E_USER_ERROR );
1637
  $this->temp = array();
1638
  $this->steps_done[] = $this->step_working;
1658
  } elseif ( strstr( $this->step_working, 'JOB_' ) ) {
1659
  $done = $job_types[ str_replace( 'JOB_', '', $this->step_working ) ]->job_run( $this );
1660
  } elseif ( strstr( $this->step_working, 'DEST_SYNC_' ) ) {
1661
+ $done = BackWPup::get_destination( str_replace( 'DEST_SYNC_', '', $this->step_working ) )
1662
+ ->job_run_sync( $this );
1663
  } elseif ( strstr( $this->step_working, 'DEST_' ) ) {
1664
+ $done = BackWPup::get_destination( str_replace( 'DEST_', '', $this->step_working ) )
1665
+ ->job_run_archive( $this );
1666
  } elseif ( ! empty( $this->steps_data[ $this->step_working ]['CALLBACK'] ) ) {
1667
  $done = $this->steps_data[ $this->step_working ]['CALLBACK']( $this );
1668
  }
1703
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1704
  }
1705
 
1706
+ if ( $this->steps_data[ $this->step_working ]['on_folder'] == '' && $this->steps_data[ $this->step_working ]['on_file'] == ''
1707
+ && is_file(
1708
+ $this->backup_folder . $this->backup_file
1709
+ ) ) {
1710
  unlink( $this->backup_folder . $this->backup_file );
1711
  }
1712
 
1713
  if ( $this->steps_data[ $this->step_working ]['SAVE_STEP_TRY'] != $this->steps_data[ $this->step_working ]['STEP_TRY'] ) {
1714
+ $this->log(
1715
+ sprintf(
1716
+ __( '%d. Trying to create backup archive &hellip;', 'backwpup' ),
1717
+ $this->steps_data[ $this->step_working ]['STEP_TRY']
1718
+ ), E_USER_NOTICE
1719
+ );
1720
  }
1721
 
1722
  try {
1724
 
1725
  //show method for creation
1726
  if ( $this->substeps_done == 0 ) {
1727
+ $this->log(
1728
+ sprintf(
1729
+ _x(
1730
+ 'Compressing files as %s. Please be patient, this may take a moment.',
1731
+ 'Archive compression method', 'backwpup'
1732
+ ), $backup_archive->get_method()
1733
+ )
1734
+ );
1735
  }
1736
 
1737
  //add extra files
1738
  if ( $this->substeps_done == 0 ) {
1739
  if ( ! empty( $this->additional_files_to_backup ) && $this->substeps_done == 0 ) {
1740
+ $this->log( print_r( $this->additional_files_to_backup, true ) );
1741
  if ( $this->is_debug() ) {
1742
  $this->log( __( 'Adding Extra files to Archive', 'backwpup' ) );
1743
  }
1750
  $backup_archive->close();
1751
  $this->steps_data[ $this->step_working ]['on_file'] = '';
1752
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1753
+ $this->log(
1754
+ __( 'Cannot create backup archive correctly. Aborting creation.', 'backwpup' ),
1755
+ E_USER_ERROR
1756
+ );
1757
 
1758
  return false;
1759
  }
1787
  if ( in_array( $this->steps_data[ $this->step_working ]['on_file'], $files_in_folder, true ) ) {
1788
  continue;
1789
  }
1790
+ if ( $this->maybe_sql_dump( $file ) ) {
 
 
 
 
 
 
 
 
1791
  continue;
1792
  }
1793
+
1794
  $this->steps_data[ $this->step_working ]['on_file'] = $file;
1795
  //restart if needed
1796
  $restart_time = $this->get_restart_time();
1813
  $this->steps_data[ $this->step_working ]['on_file'] = '';
1814
  $this->steps_data[ $this->step_working ]['on_folder'] = '';
1815
  $this->substeps_done = 0;
1816
+ $this->backup_filesize = filesize(
1817
+ $this->backup_folder . $this->backup_file
1818
+ );
1819
  if ( $this->backup_filesize === false ) {
1820
  $this->backup_filesize = PHP_INT_MAX;
1821
  }
1822
+ $this->log(
1823
+ __( 'Cannot create backup archive correctly. Aborting creation.', 'backwpup' ), E_USER_ERROR
1824
+ );
1825
 
1826
  return false;
1827
  }
1845
  }
1846
 
1847
  if ( $this->backup_filesize >= PHP_INT_MAX ) {
1848
+ $this->log(
1849
+ __(
1850
+ 'The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.',
1851
+ 'backwpup'
1852
+ ), E_USER_ERROR
1853
+ );
1854
  $this->end();
1855
  } else {
1856
+ $this->log(
1857
+ sprintf( __( 'Archive size is %s.', 'backwpup' ), size_format( $this->backup_filesize, 2 ) ),
1858
+ E_USER_NOTICE
1859
+ );
1860
  }
1861
 
1862
+ $this->log(
1863
+ sprintf(
1864
+ __( '%1$d Files with %2$s in Archive.', 'backwpup' ), $this->count_files,
1865
+ size_format( $this->count_files_size, 2 )
1866
+ ), E_USER_NOTICE
1867
+ );
1868
 
1869
  return true;
1870
  }
1879
  private function encrypt_archive() {
1880
 
1881
  // Substeps is number of 128 KB chunks
1882
+ $block_size = 128 * 1024;
1883
  $this->substeps_todo = ceil( $this->backup_filesize / $block_size );
1884
 
1885
  if ( ! isset( $this->steps_data[ $this->step_working ]['encrypted_filename'] ) ) {
1891
 
1892
  if ( ! isset( $this->steps_data[ $this->step_working ]['key'] ) ) {
1893
  if ( get_site_option( 'backwpup_cfg_encryption' ) == 'symmetric' ) {
1894
+ $this->steps_data[ $this->step_working ]['key'] = pack(
1895
+ 'H*', get_site_option( 'backwpup_cfg_encryptionkey' )
1896
+ );
1897
  } elseif ( get_site_option( 'backwpup_cfg_encryption' ) == 'asymmetric' ) {
1898
  // Generate random symmetric key
1899
  $this->steps_data[ $this->step_working ]['key'] = \phpseclib\Crypt\Random::string( 32 );
1900
  }
1901
  if ( empty( $this->steps_data[ $this->step_working ]['key'] ) ) {
1902
  $this->log( __( 'No encryption key was provided. Aborting encryption.', 'backwpup' ), E_USER_WARNING );
1903
+
1904
  return false;
1905
  }
1906
  }
1907
 
1908
  if ( $this->steps_data[ $this->step_working ]['SAVE_STEP_TRY'] != $this->steps_data[ $this->step_working ]['STEP_TRY'] ) {
1909
  // Show initial log message
1910
+ $this->log(
1911
+ sprintf(
1912
+ __( '%d. Trying to encrypt archive &hellip;', 'backwpup' ),
1913
+ $this->steps_data[ $this->step_working ]['STEP_TRY']
1914
+ ), E_USER_NOTICE
1915
+ );
1916
  }
1917
 
1918
  $aes = new \phpseclib\Crypt\AES( \phpseclib\Crypt\AES::MODE_CBC );
1923
  $file_in = fopen( $this->backup_folder . $this->backup_file, 'rb' );
1924
  if ( ! $file_in ) {
1925
  $this->log( __( 'Cannot open the archive for reading. Aborting encryption.', 'backwpup' ), E_USER_ERROR );
1926
+
1927
  return false;
1928
  }
1929
 
1930
  $file_out = fopen( $this->steps_data[ $this->step_working ]['encrypted_filename'], 'a+b' );
1931
  if ( ! $file_out ) {
1932
  $this->log( __( 'Cannot write the encrypted archive. Aborting encryption.', 'backwpup' ), E_USER_ERROR );
1933
+
1934
  return false;
1935
  }
1936
 
1964
  $length = strlen( $data );
1965
  if ( $this->substeps_done == $this->substeps_todo - 1 ) {
1966
  // Pad as necessary
1967
+ $pad = 16 - ( $length % 16 );
1968
  $data = str_pad( $data, $length + $pad, chr( $pad ) );
1969
  }
1970
  fwrite( $file_out, $aes->encrypt( $data ) );
1971
 
1972
+ $this->substeps_done ++;
1973
  $bytes_read += strlen( $data );
1974
  $this->update_working_data();
1975
 
1987
  fclose( $file_in );
1988
  fclose( $file_out );
1989
 
1990
+ $this->log(
1991
+ sprintf( __( 'Encrypted %s of data.', 'backwpup' ), size_format( $bytes_read, 2 ) ), E_USER_NOTICE
1992
+ );
1993
 
1994
  // Remove the original file then rename the encrypted file
1995
  if ( ! unlink( $this->backup_folder . $this->backup_file ) ) {
1996
  $this->log( __( 'Unable to delete unencrypted archive.', 'backwpup' ) );
1997
+
1998
  return false;
1999
  }
2000
+ if ( ! rename(
2001
+ $this->steps_data[ $this->step_working ]['encrypted_filename'], $this->backup_folder . $this->backup_file
2002
+ ) ) {
2003
  $this->log( __( 'Unable to rename encrypted archive.', 'backwpup' ) );
2004
+
2005
  return false;
2006
  }
2007
 
2055
  $folder = trailingslashit( $folder );
2056
 
2057
  if ( ! is_dir( $folder ) ) {
2058
+ $this->log(
2059
+ sprintf( _x( 'Folder %s does not exist', 'Folder name', 'backwpup' ), $folder ), E_USER_WARNING
2060
+ );
2061
 
2062
  return $files;
2063
  }
2064
 
2065
  if ( ! is_readable( $folder ) ) {
2066
+ $this->log(
2067
+ sprintf( _x( 'Folder %s is not readable', 'Folder name', 'backwpup' ), $folder ), E_USER_WARNING
2068
+ );
2069
 
2070
  return $files;
2071
  }
2084
  continue 2;
2085
  }
2086
  }
2087
+ if ( $this->job['backupexcludethumbs']
2088
+ && strpos(
2089
+ $folder, BackWPup_File::get_upload_dir()
2090
+ ) !== false
2091
+ && preg_match( "/\-[0-9]{1,4}x[0-9]{1,4}.+\.(jpg|png|gif)$/i", $file->getFilename() ) ) {
2092
  continue;
2093
  }
2094
  if ( $file->isLink() ) {
2095
+ $this->log(
2096
+ sprintf( __( 'Link "%s" not following.', 'backwpup' ), $file->getPathname() ), E_USER_WARNING
2097
+ );
2098
  } elseif ( ! $file->isReadable() ) {
2099
+ $this->log(
2100
+ sprintf( __( 'File "%s" is not readable!', 'backwpup' ), $file->getPathname() ), E_USER_WARNING
2101
+ );
2102
  } else {
2103
  $file_size = $file->getSize();
2104
  if ( ! is_int( $file_size ) || $file_size < 0 || $file_size > 2147483647 ) {
2105
+ $this->log(
2106
+ sprintf(
2107
+ __(
2108
+ 'File size of “%s” cannot be retrieved. File might be too large and will not be added to queue.',
2109
+ 'backwpup'
2110
+ ), $file->getPathname() . ' ' . $file_size
2111
+ ), E_USER_WARNING
2112
+ );
2113
  continue;
2114
  }
2115
  $files[] = BackWPup_Path_Fixer::slashify( realpath( $path ) );
2192
 
2193
  $this->substeps_todo = 3;
2194
 
2195
+ $this->log(
2196
+ sprintf(
2197
+ __( '%d. Trying to generate a manifest file&#160;&hellip;', 'backwpup' ),
2198
+ $this->steps_data[ $this->step_working ]['STEP_TRY']
2199
+ )
2200
+ );
2201
 
2202
  //build manifest
2203
  $manifest = array();
2234
  $manifest['archive']['abspath'] = trailingslashit( $this->get_destination_path_replacement( ABSPATH ) );
2235
  }
2236
  if ( $this->job['backupuploads'] ) {
2237
+ $manifest['archive']['uploads'] = trailingslashit(
2238
+ $this->get_destination_path_replacement( BackWPup_File::get_upload_dir() )
2239
+ );
2240
  }
2241
  if ( $this->job['backupcontent'] ) {
2242
+ $manifest['archive']['contents'] = trailingslashit(
2243
+ $this->get_destination_path_replacement( WP_CONTENT_DIR )
2244
+ );
2245
  }
2246
  if ( $this->job['backupplugins'] ) {
2247
+ $manifest['archive']['plugins'] = trailingslashit(
2248
+ $this->get_destination_path_replacement( WP_PLUGIN_DIR )
2249
+ );
2250
  }
2251
  if ( $this->job['backupthemes'] ) {
2252
+ $manifest['archive']['themes'] = trailingslashit(
2253
+ $this->get_destination_path_replacement( get_theme_root() )
2254
+ );
2255
  }
2256
  }
2257
 
2262
 
2263
  //Create backwpup_readme.txt
2264
  $readme_text = __( 'You may have noticed the manifest.json file in this archive.', 'backwpup' ) . PHP_EOL;
2265
+ $readme_text .= __(
2266
+ 'manifest.json might be needed for later restoring a backup from this archive.', 'backwpup'
2267
+ ) . PHP_EOL;
2268
+ $readme_text .= __(
2269
+ 'Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored.', 'backwpup'
2270
+ ) . PHP_EOL;
2271
  if ( ! file_put_contents( BackWPup::get_plugin_data( 'TEMP' ) . 'backwpup_readme.txt', $readme_text ) ) {
2272
  return false;
2273
  }
2277
  if ( is_readable( BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json' ) ) {
2278
  $this->additional_files_to_backup[] = BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json';
2279
  $this->additional_files_to_backup[] = BackWPup::get_plugin_data( 'TEMP' ) . 'backwpup_readme.txt';
2280
+ $this->log(
2281
+ sprintf(
2282
+ __( 'Added manifest.json file with %1$s to backup file list.', 'backwpup' ),
2283
+ size_format( filesize( BackWPup::get_plugin_data( 'TEMP' ) . 'manifest.json' ), 2 )
2284
+ )
2285
+ );
2286
  }
2287
  $this->substeps_done = 3;
2288
 
2693
  */
2694
  public static function mysqldump_installed( $dbdumpmysqlfolder ) {
2695
 
2696
+ if ( false === self::is_exec() ) {
2697
  return false;
2698
  }
2699
 
2715
 
2716
  $output = '';
2717
 
2718
+ if ( false === self::is_exec() ) {
2719
+ $output = '<span style="color:#999;">' . __( 'exec command is not active.', 'backwpup' ) . '</span>';
2720
+
2721
  return $output;
2722
  }
2723
 
2724
  if ( ! file_exists( $dbdumpmysqlfolder ) || ! is_executable( $dbdumpmysqlfolder ) ) {
2725
+ $output = '<span style="color:#999;">' . __( 'mysqldump binary not found.', 'backwpup' ) . '</span>';
2726
+
2727
  return $output;
2728
  }
2729
 
2749
  //known signals
2750
  $signals = array(
2751
  'SIGHUP' => array(
2752
+ 'description' => _x(
2753
+ 'Hangup detected on controlling terminal or death of controlling process',
2754
+ 'SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2755
+ ),
2756
  'error' => E_USER_ERROR,
2757
  ),
2758
  'SIGINT' => array(
2759
+ 'description' => _x(
2760
+ 'Interrupt from keyboard',
2761
+ 'SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2762
+ ),
2763
  'error' => E_USER_ERROR,
2764
  ),
2765
  'SIGQUIT' => array(
2766
+ 'description' => _x(
2767
+ 'Quit from keyboard',
2768
+ 'SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2769
+ ),
2770
  'error' => E_USER_ERROR,
2771
  ),
2772
  'SIGILL' => array(
2773
+ 'description' => _x(
2774
+ 'Illegal Instruction',
2775
+ 'SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2776
+ ),
2777
  'error' => E_USER_ERROR,
2778
  ),
2779
  'SIGABRT' => array(
2780
+ 'description' => _x(
2781
+ 'Abort signal from abort(3)',
2782
+ 'SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2783
+ ),
2784
  'error' => E_USER_NOTICE,
2785
  ),
2786
  'SIGBUS' => array(
2787
+ 'description' => _x(
2788
+ 'Bus error (bad memory access)',
2789
+ 'SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2790
+ ),
2791
  'error' => E_USER_ERROR,
2792
  ),
2793
  'SIGFPE' => array(
2794
+ 'description' => _x(
2795
+ 'Floating point exception',
2796
+ 'SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2797
+ ),
2798
  'error' => E_USER_ERROR,
2799
  ),
2800
  'SIGSEGV' => array(
2801
+ 'description' => _x(
2802
+ 'Invalid memory reference',
2803
+ 'SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2804
+ ),
2805
  'error' => E_USER_ERROR,
2806
  ),
2807
  'SIGTERM' => array(
2808
+ 'description' => _x(
2809
+ 'Termination signal',
2810
+ 'SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2811
+ ),
2812
  'error' => E_USER_WARNING,
2813
  ),
2814
  'SIGSTKFLT' => array(
2815
+ 'description' => _x(
2816
+ 'Stack fault on coprocessor',
2817
+ 'SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2818
+ ),
2819
  'error' => E_USER_ERROR,
2820
  ),
2821
  'SIGUSR1' => array(
2822
+ 'description' => _x(
2823
+ 'User-defined signal 1',
2824
+ 'SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2825
+ ),
2826
  'error' => E_USER_NOTICE,
2827
  ),
2828
  'SIGUSR2' => array(
2829
+ 'description' => _x(
2830
+ 'User-defined signal 2',
2831
+ 'SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2832
+ ),
2833
  'error' => E_USER_NOTICE,
2834
  ),
2835
  'SIGURG' => array(
2836
+ 'description' => _x(
2837
+ 'Urgent condition on socket',
2838
+ 'SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2839
+ ),
2840
  'error' => E_USER_NOTICE,
2841
  ),
2842
  'SIGXCPU' => array(
2843
+ 'description' => _x(
2844
+ 'CPU time limit exceeded',
2845
+ 'SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2846
+ ),
2847
  'error' => E_USER_ERROR,
2848
  ),
2849
  'SIGXFSZ' => array(
2850
+ 'description' => _x(
2851
+ 'File size limit exceeded',
2852
+ 'SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2853
+ ),
2854
  'error' => E_USER_ERROR,
2855
  ),
2856
  'SIGPWR' => array(
2857
+ 'description' => _x(
2858
+ 'Power failure',
2859
+ 'SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2860
+ ),
2861
  'error' => E_USER_ERROR,
2862
  ),
2863
  'SIGSYS' => array(
2864
+ 'description' => _x(
2865
+ 'Bad argument to routine',
2866
+ 'SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details', 'backwpup'
2867
+ ),
2868
  'error' => E_USER_ERROR,
2869
  ),
2870
  );
2871
 
2872
  foreach ( $signals as $signal => $config ) {
2873
  if ( defined( $signal ) && $signal_send === constant( $signal ) ) {
2874
+ $this->log(
2875
+ sprintf(
2876
+ __( 'Signal "%1$s" (%2$s) is sent to script!', 'backwpup' ), $signal, $config['description']
2877
+ ), $config['error']
2878
+ );
2879
  $this->signal = $signal_send;
2880
  break;
2881
  }
2937
  */
2938
  public function exception_handler( $exception ) {
2939
 
2940
+ $this->log(
2941
+ sprintf(
2942
+ __( 'Exception caught in %1$s: %2$s', 'backwpup' ), get_class( $exception ), $exception->getMessage()
2943
+ ), E_USER_ERROR, $exception->getFile(), $exception->getLine()
2944
+ );
2945
  }
2946
 
2947
  /**
2990
 
2991
  $storage = strtolower( $storage );
2992
 
2993
+ $file = BackWPup::get_plugin_data( 'temp' ) . 'backwpup-' . BackWPup::get_plugin_data(
2994
+ 'hash'
2995
+ ) . '-' . $storage . '.json';
2996
 
2997
  if ( ! empty( $data ) ) {
2998
  file_put_contents( $file, json_encode( $data ) );
3032
  }
3033
  }
3034
 
3035
+ /**
3036
+ * Check if file is a dbdump.
3037
+ *
3038
+ * @param $file
3039
+ *
3040
+ * @return bool
3041
+ */
3042
+ private function maybe_sql_dump( $file ) {
3043
+
3044
+ $file_name = BackWPup_Option::get( $this->job['jobid'], 'dbdumpfile' );
3045
+
3046
+ $dump_files = array(
3047
+ $file_name . '.sql',
3048
+ $file_name . '.sql.gz',
3049
+ $file_name . '.xml',
3050
+ );
3051
+
3052
+ return in_array( basename( $file ), $dump_files, true );
3053
+ }
3054
  }
inc/class-page-about.php CHANGED
@@ -354,11 +354,6 @@ class BackWPup_Page_About {
354
  */
355
  public static function page() {
356
 
357
- $lang = substr( get_locale(), 0 ,2 );
358
- if ( $lang !== 'de' ) {
359
- $lang = 'en';
360
- }
361
-
362
  ?>
363
  <div class="wrap" id="backwpup-page">
364
  <?php BackWPup_Admin::display_messages(); ?>
@@ -367,28 +362,22 @@ class BackWPup_Page_About {
367
  <?php if ( class_exists( 'BackWPup_Pro', FALSE ) ) { ?>
368
  <div class="welcometxt">
369
  <div class="backwpup-welcome">
370
- <img class="backwpup-banner-img" src="<?php echo BackWPup::get_plugin_data( 'URL' );?>/assets/images/backwpupbanner.png" />
371
  <h1><?php esc_html_e( 'Welcome to BackWPup Pro', 'backwpup' ); ?></h1>
372
  <p><?php esc_html_e( 'BackWPup’s job wizards make planning and scheduling your backup jobs a breeze.', 'backwpup' ); echo ' ';
373
- _e( 'Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files.', 'backwpup' ); ?></p>
374
  <p><?php echo str_replace( '\"','"', sprintf( __( 'Ready to <a href="%1$s">set up a backup job</a>? You can <a href="%2$s">use the wizards</a> or plan your backup in expert mode.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' , network_admin_url( 'admin.php').'?page=backwpupwizard' ) ); ?></p>
375
  </div>
376
- <?php if ( '2016-06-30' > date( 'Y-m-d' ) ) { ?>
377
- <a href="https://www.surveymonkey.com/r/BQJZSG2"><img class="backwpup-umfage" src="<?php echo BackWPup::get_plugin_data( 'URL' );?>/assets/images/banner-survey-<?php echo $lang ?>.png" style="height:auto;margin: 26px auto;max-width:100%;" /></a>
378
- <?php } ?>
379
  </div>
380
  <?php } else {?>
381
  <div class="welcometxt">
382
  <div class="backwpup-welcome">
383
- <img class="backwpup-banner-img" src="<?php echo esc_attr( BackWPup::get_plugin_data( 'URL' ));?>/assets/images/backwpupbanner.png" />
384
  <h1><?php esc_html_e( 'Welcome to BackWPup', 'backwpup' ); ?></h1>
385
  <p><?php
386
- _e( 'Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files.', 'backwpup' ); ?></p>
387
  <p><?php esc_html_e( 'Ready to set up a backup job? Use one of the wizards to plan what you want to save.', 'backwpup' ); ?></p>
388
  </div>
389
- <?php if ( '2016-06-30' > date( 'Y-m-d' ) ) { ?>
390
- <a href="https://www.surveymonkey.com/r/BQJZSG2"><img class="backwpup-umfage" src="<?php echo BackWPup::get_plugin_data( 'URL' );?>/assets/images/banner-survey-<?php echo $lang ?>.png" style="height:auto;margin: 26px auto;max-width:100%;" /></a>
391
- <?php } ?>
392
  </div>
393
  <?php } ?>
394
  <div>
@@ -540,6 +529,26 @@ _e( 'Use your backup archives to save your entire WordPress installation includi
540
  <td class="tick"></td>
541
  <td class="tick"></td>
542
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  <tr class="odd">
544
  <td><?php esc_html_e( 'Backup to Google Drive', 'backwpup' ); ?></td>
545
  <td class="error"></td>
354
  */
355
  public static function page() {
356
 
 
 
 
 
 
357
  ?>
358
  <div class="wrap" id="backwpup-page">
359
  <?php BackWPup_Admin::display_messages(); ?>
362
  <?php if ( class_exists( 'BackWPup_Pro', FALSE ) ) { ?>
363
  <div class="welcometxt">
364
  <div class="backwpup-welcome">
365
+ <a href="<?php esc_html_e( 'http://backwpup.com', 'backwpup' ); ?>"><img class="backwpup-banner-img" src="https://images.inpsyde.com/backwpup/banner.jpg" alt="<?php esc_html_e( 'BackWPup banner', 'backwpup' ); ?>" /></a>
366
  <h1><?php esc_html_e( 'Welcome to BackWPup Pro', 'backwpup' ); ?></h1>
367
  <p><?php esc_html_e( 'BackWPup’s job wizards make planning and scheduling your backup jobs a breeze.', 'backwpup' ); echo ' ';
368
+ _e( 'Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely.', 'backwpup' ); ?></p>
369
  <p><?php echo str_replace( '\"','"', sprintf( __( 'Ready to <a href="%1$s">set up a backup job</a>? You can <a href="%2$s">use the wizards</a> or plan your backup in expert mode.', 'backwpup' ), network_admin_url( 'admin.php').'?page=backwpupeditjob' , network_admin_url( 'admin.php').'?page=backwpupwizard' ) ); ?></p>
370
  </div>
 
 
 
371
  </div>
372
  <?php } else {?>
373
  <div class="welcometxt">
374
  <div class="backwpup-welcome">
375
+ <a href="<?php esc_html_e( 'http://backwpup.com', 'backwpup' ); ?>"><img class="backwpup-banner-img" src="https://images.inpsyde.com/backwpup/banner.jpg" alt="<?php esc_html_e( 'BackWPup banner', 'backwpup' ); ?>" /></a>
376
  <h1><?php esc_html_e( 'Welcome to BackWPup', 'backwpup' ); ?></h1>
377
  <p><?php
378
+ _e( 'Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely.', 'backwpup' ); ?></p>
379
  <p><?php esc_html_e( 'Ready to set up a backup job? Use one of the wizards to plan what you want to save.', 'backwpup' ); ?></p>
380
  </div>
 
 
 
381
  </div>
382
  <?php } ?>
383
  <div>
529
  <td class="tick"></td>
530
  <td class="tick"></td>
531
  </tr>
532
+ <tr class="odd">
533
+ <td><?php esc_html_e( 'Restore manually uploaded Backup Archives', 'backwpup' ); ?></td>
534
+ <td class="error"></td>
535
+ <td class="tick"></td>
536
+ </tr>
537
+ <tr class="even">
538
+ <td><?php esc_html_e( 'Standalone Restore App', 'backwpup' ); ?></td>
539
+ <td class="error"></td>
540
+ <td class="tick"></td>
541
+ </tr>
542
+ <tr class="odd">
543
+ <td><?php esc_html_e( 'Encrypt Backup Archives', 'backwpup' ); ?></td>
544
+ <td class="error"></td>
545
+ <td class="tick"></td>
546
+ </tr>
547
+ <tr class="even">
548
+ <td><?php esc_html_e( 'Restore Encrypted Backups', 'backwpup' ); ?></td>
549
+ <td class="error"></td>
550
+ <td class="tick"></td>
551
+ </tr>
552
  <tr class="odd">
553
  <td><?php esc_html_e( 'Backup to Google Drive', 'backwpup' ); ?></td>
554
  <td class="error"></td>
inc/class-page-backwpup.php CHANGED
@@ -74,7 +74,7 @@ class BackWPup_Page_BackWPup {
74
  <h3><?php _ex( 'Planning backups', 'Dashboard heading', 'backwpup' ); ?></h3>
75
  <p><?php _e('BackWPup’s job wizards make planning and scheduling your backup jobs a breeze.','backwpup' ); echo ' '; _e('Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server.','backwpup'); ?></p>
76
  <h3><?php _ex( 'Restoring backups', 'Dashboard heading', 'backwpup' ); ?></h3>
77
- <p><?php _e( 'With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files.', 'backwpup' ) ?></p>
78
  <h3><?php _ex( 'Ready to set up a backup job?', 'Dashboard heading','backwpup' ); ?></h3>
79
  <p><?php printf( __('Use one of the wizards to plan a backup, or use <a href="%s">expert mode</a> for full control over all options.','backwpup'), network_admin_url( 'admin.php') . '?page=backwpupeditjob' ); echo ' '; _e( '<strong>Please note: You are solely responsible for the security of your data; the authors of this plugin are not.</strong>', 'backwpup' ); ?></p>
80
  </div>
@@ -83,7 +83,7 @@ class BackWPup_Page_BackWPup {
83
  <h3><?php _ex( 'Planning backups', 'Dashboard heading', 'backwpup' ); ?></h3>
84
  <p><?php _e('Use the short links in the <strong>First steps</strong> box to plan and schedule backup jobs.','backwpup' ); echo ' '; _e('Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server.','backwpup'); ?></p>
85
  <h3><?php _ex( 'Restoring backups', 'Dashboard heading', 'backwpup' ); ?></h3>
86
- <p><?php _e( 'With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files.', 'backwpup' ) ?></p>
87
  <h3><?php _ex( 'Ready to set up a backup job?', 'Dashboard heading','backwpup' ); ?></h3>
88
  <p><?php printf( __('<a href="%s">Add a new backup job</a> and plan what you want to save.','backwpup'), network_admin_url( 'admin.php') . '?page=backwpupeditjob' ); ?>
89
  <br /><?php _e( '<strong>Please note: You are solely responsible for the security of your data; the authors of this plugin are not.</strong>', 'backwpup' ); ?></p>
@@ -251,7 +251,7 @@ class BackWPup_Page_BackWPup {
251
  <div id="backwpup-thank-you" class="metabox-holder postbox backwpup-cleared-postbox backwpup-max-width">
252
  <h3 class="hndle"><span><?php _ex( 'Thank you for using BackWPup!', 'Pro teaser box', 'backwpup' ); ?></span></h3>
253
  <div class="inside">
254
- <p><img class="backwpup-banner-img" src="<?php echo BackWPup::get_plugin_data( 'URL' ) . '/assets/images/backwpupbanner.png'; ?>" alt="BackWPup Banner" /></p>
255
  <h3 class="backwpup-text-center"><?php _ex( 'Get access to:', 'Pro teaser box', 'backwpup' ); ?></h3>
256
  <ul class="backwpup-text-center">
257
  <li><?php _ex( 'First-class <strong>dedicated support</strong> at backwpup.com.', 'Pro teaser box', 'backwpup' ); ?></li>
74
  <h3><?php _ex( 'Planning backups', 'Dashboard heading', 'backwpup' ); ?></h3>
75
  <p><?php _e('BackWPup’s job wizards make planning and scheduling your backup jobs a breeze.','backwpup' ); echo ' '; _e('Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server.','backwpup'); ?></p>
76
  <h3><?php _ex( 'Restoring backups', 'Dashboard heading', 'backwpup' ); ?></h3>
77
+ <p><?php _e( 'With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely.', 'backwpup' ) ?></p>
78
  <h3><?php _ex( 'Ready to set up a backup job?', 'Dashboard heading','backwpup' ); ?></h3>
79
  <p><?php printf( __('Use one of the wizards to plan a backup, or use <a href="%s">expert mode</a> for full control over all options.','backwpup'), network_admin_url( 'admin.php') . '?page=backwpupeditjob' ); echo ' '; _e( '<strong>Please note: You are solely responsible for the security of your data; the authors of this plugin are not.</strong>', 'backwpup' ); ?></p>
80
  </div>
83
  <h3><?php _ex( 'Planning backups', 'Dashboard heading', 'backwpup' ); ?></h3>
84
  <p><?php _e('Use the short links in the <strong>First steps</strong> box to plan and schedule backup jobs.','backwpup' ); echo ' '; _e('Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server.','backwpup'); ?></p>
85
  <h3><?php _ex( 'Restoring backups', 'Dashboard heading', 'backwpup' ); ?></h3>
86
+ <p><?php _e( 'With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely.', 'backwpup' ) ?></p>
87
  <h3><?php _ex( 'Ready to set up a backup job?', 'Dashboard heading','backwpup' ); ?></h3>
88
  <p><?php printf( __('<a href="%s">Add a new backup job</a> and plan what you want to save.','backwpup'), network_admin_url( 'admin.php') . '?page=backwpupeditjob' ); ?>
89
  <br /><?php _e( '<strong>Please note: You are solely responsible for the security of your data; the authors of this plugin are not.</strong>', 'backwpup' ); ?></p>
251
  <div id="backwpup-thank-you" class="metabox-holder postbox backwpup-cleared-postbox backwpup-max-width">
252
  <h3 class="hndle"><span><?php _ex( 'Thank you for using BackWPup!', 'Pro teaser box', 'backwpup' ); ?></span></h3>
253
  <div class="inside">
254
+ <p><a href="<?php esc_html_e( 'http://backwpup.com', 'backwpup' ); ?>"><img class="backwpup-banner-img" src="https://images.inpsyde.com/backwpup/banner.jpg" alt="<?php esc_html_e( 'BackWPup banner', 'backwpup' ); ?>" /></a></p>
255
  <h3 class="backwpup-text-center"><?php _ex( 'Get access to:', 'Pro teaser box', 'backwpup' ); ?></h3>
256
  <ul class="backwpup-text-center">
257
  <li><?php _ex( 'First-class <strong>dedicated support</strong> at backwpup.com.', 'Pro teaser box', 'backwpup' ); ?></li>
languages/backwpup-de_DE.mo CHANGED
Binary file
languages/backwpup-de_DE.po CHANGED
@@ -31,8 +31,8 @@ msgstr "API Key"
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
34
- #: inc/class-page-backups.php:243
35
  #: backwpup.php:286
 
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Ordner"
@@ -77,14 +77,15 @@ msgstr "Dropbox"
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
 
80
  #: vendor_dist/backwpup.php:335
81
  msgid "Backup to Dropbox"
82
  msgstr "Backup in die Dropbox"
83
 
84
  #: backwpup.php:339
85
  #: inc/class-destination-s3.php:41
86
- #: inc/class-destination-s3.php:42
87
  #: backwpup.php:350
 
88
  #: vendor_dist/backwpup.php:350
89
  msgid "S3 Service"
90
  msgstr "S3 Service"
@@ -116,6 +117,7 @@ msgstr "RSC"
116
  #: backwpup.php:377
117
  #: inc/class-page-about.php:524
118
  #: backwpup.php:388
 
119
  #: vendor_dist/backwpup.php:388
120
  msgid "Backup to Rackspace Cloud Files"
121
  msgstr "Backup in die Rackspace Cloud"
@@ -129,6 +131,7 @@ msgstr "SugarSync"
129
  #: backwpup.php:397
130
  #: inc/class-page-about.php:539
131
  #: backwpup.php:408
 
132
  #: vendor_dist/backwpup.php:408
133
  msgid "Backup to SugarSync"
134
  msgstr "Backup zu SugarSync"
@@ -205,8 +208,8 @@ msgstr "Anzahl der Dateien, die im Ordner bleiben sollen."
205
  #: inc/class-destination-rsc.php:118
206
  #: inc/class-destination-s3.php:214
207
  #: inc/class-destination-sugarsync.php:104
208
- #: inc/Pro/class-destination-gdrive.php:462
209
  #: inc/class-destination-s3.php:245
 
210
  msgid "Do not delete files while syncing to destination!"
211
  msgstr "Lösche keine Dateien, während sie mit dem Zielort synchronisiert werden!"
212
 
@@ -263,11 +266,11 @@ msgstr "Passwort:"
263
  #: inc/class-destination-folder-downloader.php:55
264
  #: inc/class-destination-ftp-downloader.php:89
265
  #: inc/class-destination-s3-downloader.php:63
266
- #: inc/Pro/class-destination-gdrive-downloader.php:102
267
- #: inc/class-destination-ftp-downloader.php:126
268
- #: inc/class-destination-folder-downloader.php:137
269
  #: inc/class-destination-dropbox-downloader.php:104
 
 
270
  #: inc/class-destination-s3-downloader.php:112
 
271
  msgid "File could not be opened for writing."
272
  msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
273
 
@@ -276,10 +279,10 @@ msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
276
  #: inc/class-destination-folder-downloader.php:79
277
  #: inc/class-destination-ftp-downloader.php:100
278
  #: inc/class-destination-s3-downloader.php:69
279
- #: inc/Pro/class-destination-gdrive-downloader.php:74
280
- #: inc/class-destination-ftp-downloader.php:72
281
  #: inc/class-destination-dropbox-downloader.php:72
 
282
  #: inc/class-destination-s3-downloader.php:83
 
283
  msgid "Could not write data to file."
284
  msgstr "Kann nicht in die Datei schreiben."
285
 
@@ -334,9 +337,9 @@ msgstr "<strong>Warnung</strong>: Dateien, die zu diesem Job gehören, werden je
334
  #: inc/class-destination-rsc.php:292
335
  #: inc/class-destination-s3.php:825
336
  #: inc/class-destination-s3.php:940
337
- #: inc/Pro/class-destination-gdrive.php:905
338
  #: inc/class-destination-s3.php:843
339
  #: inc/class-destination-s3.php:958
 
340
  msgid "Can not open source file for transfer."
341
  msgstr "Kann die Quelldatei nicht für den Transfer öffnen."
342
 
@@ -816,11 +819,13 @@ msgstr "Starte Assistenten"
816
 
817
  #: inc/Pro/class-pro.php:131
818
  #: inc/class-page-about.php:549
 
819
  msgid "Backup to Amazon Glacier"
820
  msgstr "Backup zu Amazon Glacier"
821
 
822
  #: inc/Pro/class-pro.php:152
823
  #: inc/class-page-about.php:544
 
824
  msgid "Backup to Google Drive"
825
  msgstr "Backup zu Google Drive"
826
 
@@ -850,6 +855,11 @@ msgstr "Restore"
850
  #: inc/class-page-backwpup.php:260
851
  #: inc/class-page-backwpup.php:262
852
  #: inc/class-page-settings.php:1134
 
 
 
 
 
853
  #: inc/class-page-settings.php:1123
854
  msgid "http://backwpup.com"
855
  msgstr "https://backwpup.de"
@@ -2062,64 +2072,79 @@ msgid "BackWPup jobs helper"
2062
  msgstr "BackWPup Auftragshelfer"
2063
 
2064
  #: inc/class-job.php:269
 
2065
  msgid "Starting job"
2066
  msgstr "Auftrag starten"
2067
 
2068
  #: inc/class-job.php:284
 
2069
  msgid "Job Start"
2070
  msgstr "Auftragsstart"
2071
 
2072
  #: inc/class-job.php:304
 
2073
  msgid "Creates manifest file"
2074
  msgstr "Erstellt Manifest-Datei"
2075
 
2076
  #: inc/class-job.php:326
 
2077
  msgid "Creates archive"
2078
  msgstr "Erstellt Archiv"
2079
 
2080
  #: inc/class-job.php:332
 
2081
  msgid "Encrypts the archive"
2082
  msgstr "Verschlüsselt das Archiv"
2083
 
2084
  #: inc/class-job.php:373
 
2085
  msgid "End of Job"
2086
  msgstr "Auftragsende"
2087
 
2088
  #: inc/class-job.php:395
 
2089
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2090
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
2091
 
2092
  #: inc/class-job.php:412
 
2093
  msgctxt "Plugin name; Plugin Version; plugin url"
2094
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2095
  msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH"
2096
 
2097
  #: inc/class-job.php:413
 
2098
  msgctxt "WordPress Version; Blog url"
2099
  msgid "[INFO] WordPress %1$s on %2$s"
2100
  msgstr "[INFO] WordPress %1$s auf %2$s"
2101
 
2102
  #: inc/class-job.php:414
 
2103
  msgid "Normal"
2104
  msgstr "Normal"
2105
 
2106
  #: inc/class-job.php:417
 
2107
  msgid "Debug"
2108
  msgstr "Debug"
2109
 
2110
  #: inc/class-job.php:420
 
2111
  msgid "(translated)"
2112
  msgstr "(übersetzt)"
2113
 
2114
  #: inc/class-job.php:422
 
2115
  msgid "[INFO] Log Level: %1$s %2$s"
2116
  msgstr "[INFO] Log Level: %1$s %2$s"
2117
 
2118
  #: inc/class-job.php:427
 
2119
  msgid "[INFO] BackWPup job: %1$s"
2120
  msgstr "[INFO] BackWPup Auftrag: %1$s"
2121
 
2122
  #: inc/class-job.php:430
 
2123
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2124
  msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2125
 
@@ -2127,121 +2152,151 @@ msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2127
  #: inc/class-page-backwpup.php:323
2128
  #: inc/class-page-jobs.php:282
2129
  #: inc/class-page-jobs.php:291
 
2130
  msgid "Not scheduled!"
2131
  msgstr "Nicht geplant!"
2132
 
2133
  #: inc/class-job.php:448
2134
  #: inc/class-job.php:458
 
 
2135
  msgid "[INFO] Cron: %s; Next: %s "
2136
  msgstr "[INFO] Cron: %s; Nächster: %s "
2137
 
2138
  #: inc/class-job.php:451
 
2139
  msgid "[INFO] BackWPup job start with link is active"
2140
  msgstr "[INFO] BackWPup Auftragsstart mit Link ist aktiv"
2141
 
2142
  #: inc/class-job.php:453
 
2143
  msgid "[INFO] BackWPup job start with EasyCron.com"
2144
  msgstr "[INFO] BackWPup Auftragsstart mit EasyCron.com"
2145
 
2146
  #: inc/class-job.php:461
 
2147
  msgid "[INFO] BackWPup no automatic job start configured"
2148
  msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert"
2149
 
2150
  #: inc/class-job.php:465
 
2151
  msgid "[INFO] BackWPup job started from wp-cron"
2152
  msgstr "[INFO] BackWPup Auftrag wurde per wp-cron gestartet"
2153
 
2154
  #: inc/class-job.php:467
 
2155
  msgid "[INFO] BackWPup job started manually"
2156
  msgstr "[INFO] BackWPup Auftrag wurde manuell gestartet"
2157
 
2158
  #: inc/class-job.php:469
 
2159
  msgid "[INFO] BackWPup job started from external url"
2160
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
2161
 
2162
  #: inc/class-job.php:471
 
2163
  msgid "[INFO] BackWPup job started form commandline interface"
2164
  msgstr "[INFO] BackWPup Auftrag per Kommandozeilenschnittstelle gestartet"
2165
 
2166
  #: inc/class-job.php:480
 
2167
  msgid "[INFO] PHP ver.:"
2168
  msgstr "[INFO] PHP ver.:"
2169
 
2170
  #: inc/class-job.php:481
 
2171
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2172
  msgstr "[INFO] Maximum PHP Script Ausführungszeit ist %1$d Sekunden"
2173
 
2174
  #: inc/class-job.php:485
 
2175
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2176
  msgstr "[INFO] Script-Restart-Zeit ist auf %1$d Sekunden konfiguriert"
2177
 
2178
  #: inc/class-job.php:488
 
2179
  msgid "[INFO] MySQL ver.: %s"
2180
  msgstr "[INFO] MySQL ver.: %s"
2181
 
2182
  #: inc/class-job.php:490
 
2183
  msgid "[INFO] Web Server: %s"
2184
  msgstr "[INFO] Webserver: %s"
2185
 
2186
  #: inc/class-job.php:494
 
2187
  msgid "[INFO] curl ver.: %1$s; %2$s"
2188
  msgstr "[INFO] curl ver.: %1$s; %2$s"
2189
 
2190
  #: inc/class-job.php:496
 
2191
  msgid "[INFO] Temp folder is: %s"
2192
  msgstr "[INFO] Temp Ordner ist: %s"
2193
 
2194
  #: inc/class-job.php:503
 
2195
  msgid "[INFO] Logfile is: %s"
2196
  msgstr "[INFO] Log-Datei ist: %s"
2197
 
2198
  #: inc/class-job.php:510
 
2199
  msgid "[INFO] Backup file is: %s"
2200
  msgstr "[INFO] Backup Datei ist: %s"
2201
 
2202
  #: inc/class-job.php:512
 
2203
  msgid "[INFO] Backup type is: %s"
2204
  msgstr "[INFO] Backup Typ ist: %s"
2205
 
2206
  #: inc/class-job.php:520
 
2207
  msgid "Could not write log file"
2208
  msgstr "Kann nicht in die Log-Datei schreiben"
2209
 
2210
  #: inc/class-job.php:532
 
2211
  msgid "No destination correctly defined for backup! Please correct job settings."
2212
  msgstr "Es wurde kein Ziel für Backups richtig definiert! Bitte überprüfe die Auftragseinstellungen."
2213
 
2214
  #: inc/class-job.php:628
 
2215
  msgid "Cannot write progress to working file. Job will be aborted."
2216
  msgstr "Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird abgebrochen."
2217
 
2218
  #: inc/class-job.php:700
2219
  #: inc/class-page-jobs.php:786
 
2220
  msgid "WARNING:"
2221
  msgstr "WARNUNG:"
2222
 
2223
  #: inc/class-job.php:709
2224
  #: inc/class-page-jobs.php:784
 
2225
  msgid "ERROR:"
2226
  msgstr "FEHLER:"
2227
 
2228
  #: inc/class-job.php:713
 
2229
  msgid "DEPRECATED:"
2230
  msgstr "ABGELEHNT:"
2231
 
2232
  #: inc/class-job.php:716
 
2233
  msgid "STRICT NOTICE:"
2234
  msgstr "EXAKTE NOTIZ:"
2235
 
2236
  #: inc/class-job.php:721
 
2237
  msgid "RECOVERABLE ERROR:"
2238
  msgstr "WIEDERHERSTELLUNGSFEHLER:"
2239
 
2240
  #: inc/class-job.php:972
 
2241
  msgid "Aborted by user!"
2242
  msgstr "Durch Benutzer abgebrochen!"
2243
 
2244
  #: inc/class-job.php:1005
 
2245
  msgid "One old log deleted"
2246
  msgid_plural "%d old logs deleted"
2247
  msgstr[0] "Eine alte Log-Datei gelöscht"
@@ -2249,324 +2304,337 @@ msgstr[1] "%d alte Log-Dateien gelöscht"
2249
 
2250
  #: inc/class-job.php:1012
2251
  #: inc/class-page-jobs.php:784
 
2252
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2253
  msgstr "Auftrag mit Fehlern in %s Sekunden beendet. Du musst die Fehler für eine korrekte Ausführung beheben."
2254
 
2255
  #: inc/class-job.php:1014
 
2256
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2257
  msgstr "Auftrag mit Warnungen in %s Sekunden beendet. Bitte behebe die Warnungen für eine korrekte Ausführung."
2258
 
2259
  #: inc/class-job.php:1016
2260
  #: inc/class-page-jobs.php:788
 
2261
  msgid "Job done in %s seconds."
2262
  msgstr "Auftrag erledigt in %s Sekunden."
2263
 
2264
  #: inc/class-job.php:1060
 
2265
  msgid "SUCCESSFUL"
2266
  msgstr "ERFOLGREICH"
2267
 
2268
  #: inc/class-job.php:1062
 
2269
  msgid "WARNING"
2270
  msgstr "WARNUNG"
2271
 
2272
  #: inc/class-job.php:1065
 
2273
  msgid "ERROR"
2274
  msgstr "FEHLER"
2275
 
2276
  #: inc/class-job.php:1068
 
2277
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2278
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
2279
 
2280
  #: inc/class-job.php:1180
 
2281
  msgid "Restart after %1$d seconds."
2282
  msgstr "Neustart nach %1$d Sekunden."
2283
 
2284
  #: inc/class-job.php:1182
 
2285
  msgid "Restart after getting signal."
2286
  msgstr "Neustart nach Erhalt des Signals."
2287
 
2288
  #: inc/class-job.php:1357
 
2289
  msgid "Job restarts due to inactivity for more than 5 minutes."
2290
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet."
2291
 
2292
  #: inc/class-job.php:1455
 
2293
  msgid "Step aborted: too many attempts!"
2294
  msgstr "Schritt abgebrochen: zu viele Versuche!"
2295
 
2296
  #: inc/class-job.php:1528
 
2297
  msgid "%d. Trying to create backup archive &hellip;"
2298
  msgstr "%d. Versuche, Backup zu erstellen &hellip;"
2299
 
2300
  #: inc/class-job.php:1536
 
2301
  msgctxt "Archive compression method"
2302
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2303
  msgstr "Komprimiere Dateien als %s. Bitte habe einen Moment Geduld."
2304
 
2305
  #: inc/class-job.php:1543
2306
- #: inc/class-job.php:1544
2307
  msgid "Adding Extra files to Archive"
2308
  msgstr "Extradateien zum Archiv hinzufügen"
2309
 
2310
  #: inc/class-job.php:1554
2311
  #: inc/class-job.php:1614
2312
- #: inc/class-job.php:1555
2313
- #: inc/class-job.php:1626
2314
  msgid "Cannot create backup archive correctly. Aborting creation."
2315
  msgstr "Backup Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen."
2316
 
2317
  #: inc/class-job.php:1570
2318
- #: inc/class-job.php:1571
2319
  msgid "Archiving Folder: %s"
2320
  msgstr "Archiviere Verzeichnis: %s"
2321
 
2322
  #: inc/class-job.php:1624
2323
- #: inc/class-job.php:1636
2324
  msgid "Backup archive created."
2325
  msgstr "Backup wurde erstellt."
2326
 
2327
  #: inc/class-job.php:1638
2328
- #: inc/class-job.php:1650
2329
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2330
  msgstr "Das Backup Archiv wird zu groß für Operationen mit dieser PHP Version. Du solltest die Sicherung in mehrere Backup-Aufträge mit weniger Dateien je Auftrag aufteilen."
2331
 
2332
  #: inc/class-job.php:1641
2333
- #: inc/class-job.php:1653
2334
  msgid "Archive size is %s."
2335
  msgstr "Archivgröße ist %s."
2336
 
2337
  #: inc/class-job.php:1644
2338
- #: inc/class-job.php:1656
2339
  msgid "%1$d Files with %2$s in Archive."
2340
  msgstr "%1$d Dateien mit %2$s in Archiven."
2341
 
2342
  #: inc/class-job.php:1677
2343
- #: inc/class-job.php:1689
2344
  msgid "No encryption key was provided. Aborting encryption."
2345
  msgstr "Es wurde kein Schlüssel eingegeben. Verschlüsselung wird abgebrochen."
2346
 
2347
  #: inc/class-job.php:1684
2348
- #: inc/class-job.php:1696
2349
  msgid "%d. Trying to encrypt archive &hellip;"
2350
  msgstr "%d. Versuche Archiv zu verschlüsseln &hellip;"
2351
 
2352
  #: inc/class-job.php:1694
2353
- #: inc/class-job.php:1706
2354
  msgid "Cannot open the archive for reading. Aborting encryption."
2355
  msgstr "Das Archiv kann nicht zum Lesen geöffnet werden. Verschlüsselung wird abgebrochen."
2356
 
2357
  #: inc/class-job.php:1700
2358
- #: inc/class-job.php:1712
2359
  msgid "Cannot write the encrypted archive. Aborting encryption."
2360
  msgstr "Das verschlüsselte Archiv kann nicht erstellt werden. Verschlüsselung wird abgebrochen."
2361
 
2362
  #: inc/class-job.php:1757
2363
- #: inc/class-job.php:1769
2364
  msgid "Encrypted %s of data."
2365
  msgstr "Verschlüsselt %s der Daten."
2366
 
2367
  #: inc/class-job.php:1761
2368
- #: inc/class-job.php:1773
2369
  msgid "Unable to delete unencrypted archive."
2370
  msgstr "Unverschlüsseltes Archiv kann nicht gelöscht werden."
2371
 
2372
  #: inc/class-job.php:1765
2373
- #: inc/class-job.php:1777
2374
  msgid "Unable to rename encrypted archive."
2375
  msgstr "Verschlüsseltes Archiv kann nicht umbenannt werden."
2376
 
2377
  #: inc/class-job.php:1770
2378
- #: inc/class-job.php:1782
2379
  msgid "Archive has been successfully encrypted."
2380
  msgstr "Archiv wurde erfolgreich verschlüsselt."
2381
 
2382
  #: inc/class-job.php:1819
2383
- #: inc/class-job.php:1831
2384
  msgctxt "Folder name"
2385
  msgid "Folder %s does not exist"
2386
  msgstr "Verzeichnis %s existiert nicht"
2387
 
2388
  #: inc/class-job.php:1825
2389
- #: inc/class-job.php:1837
2390
  msgctxt "Folder name"
2391
  msgid "Folder %s is not readable"
2392
  msgstr "Ordner \"%s\" ist nicht lesbar"
2393
 
2394
  #: inc/class-job.php:1848
2395
- #: inc/class-job.php:1860
2396
  msgid "Link \"%s\" not following."
2397
  msgstr "Link \"%s\" folgt nicht."
2398
 
2399
  #: inc/class-job.php:1850
2400
- #: inc/class-job.php:1862
2401
  msgid "File \"%s\" is not readable!"
2402
  msgstr "Datei \"%s\" ist nicht lesbar!"
2403
 
2404
  #: inc/class-job.php:1854
2405
- #: inc/class-job.php:1866
2406
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2407
  msgstr "Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß sein und wird nicht zur Warteschlange hinzugefügt."
2408
 
2409
  #: inc/class-job.php:1937
2410
- #: inc/class-job.php:1949
2411
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2412
  msgstr "%d. Versuche eine Manifest-Datei zu generieren&#160;&hellip;"
2413
 
2414
  #: inc/class-job.php:1993
2415
- #: inc/class-job.php:2005
2416
  msgid "You may have noticed the manifest.json file in this archive."
2417
  msgstr "Du wirst vielleicht die manifest.json Datei in diesem Archiv bemerkt haben."
2418
 
2419
  #: inc/class-job.php:1994
2420
- #: inc/class-job.php:2006
2421
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2422
  msgstr "manifest.json könnte für die spätere Wiederherstellung ein Backup von diesem Archiv benötigen."
2423
 
2424
  #: inc/class-job.php:1995
2425
- #: inc/class-job.php:2007
2426
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2427
  msgstr "Bitte lasse die manifest.json unberührt an ihrem Platz. Du kannst sie ansonsten einfach ignorieren."
2428
 
2429
  #: inc/class-job.php:2005
2430
- #: inc/class-job.php:2017
2431
  msgid "Added manifest.json file with %1$s to backup file list."
2432
  msgstr "Die manifest.json Datei mit %1$s zur Backup-Datei-Liste hinzugefügt."
2433
 
2434
  #: inc/class-job.php:2044
2435
- #: inc/class-job.php:2056
2436
  msgid "Wrong BackWPup JobID"
2437
  msgstr "Falsche BackWPup Auftrags-ID"
2438
 
2439
  #: inc/class-job.php:2057
2440
- #: inc/class-job.php:2069
2441
  msgid "A BackWPup job is already running"
2442
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
2443
 
2444
  #: inc/class-job.php:2439
2445
- #: inc/class-job.php:2451
2446
  msgid "exec command is not active."
2447
  msgstr "exec command ist nicht aktiv."
2448
 
2449
  #: inc/class-job.php:2444
2450
- #: inc/class-job.php:2456
2451
  msgid "mysqldump binary not found."
2452
  msgstr "mysqldump binary wurde nicht gefunden."
2453
 
2454
  #: inc/class-job.php:2470
2455
- #: inc/class-job.php:2482
2456
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2457
  msgid "Hangup detected on controlling terminal or death of controlling process"
2458
  msgstr "Aufhängen von Controllingterminal erkannt oder Controllingprozess ausgefallen"
2459
 
2460
  #: inc/class-job.php:2474
2461
- #: inc/class-job.php:2486
2462
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2463
  msgid "Interrupt from keyboard"
2464
  msgstr "Interrupt von Keyboard"
2465
 
2466
  #: inc/class-job.php:2478
2467
- #: inc/class-job.php:2490
2468
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2469
  msgid "Quit from keyboard"
2470
  msgstr "Quit von Keyboard"
2471
 
2472
  #: inc/class-job.php:2482
2473
- #: inc/class-job.php:2494
2474
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2475
  msgid "Illegal Instruction"
2476
  msgstr "Unerlaubte Anweisung"
2477
 
2478
  #: inc/class-job.php:2486
2479
- #: inc/class-job.php:2498
2480
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2481
  msgid "Abort signal from abort(3)"
2482
  msgstr "Abortsignal von Abbruch(3)"
2483
 
2484
  #: inc/class-job.php:2490
2485
- #: inc/class-job.php:2502
2486
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2487
  msgid "Bus error (bad memory access)"
2488
  msgstr "Bus Error (schlechter Speicherzugang)"
2489
 
2490
  #: inc/class-job.php:2494
2491
- #: inc/class-job.php:2506
2492
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2493
  msgid "Floating point exception"
2494
  msgstr "Floating Point Ausnahme"
2495
 
2496
  #: inc/class-job.php:2498
2497
- #: inc/class-job.php:2510
2498
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2499
  msgid "Invalid memory reference"
2500
  msgstr "Ungültige Speicherreferenz"
2501
 
2502
  #: inc/class-job.php:2502
2503
- #: inc/class-job.php:2514
2504
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2505
  msgid "Termination signal"
2506
  msgstr "Beendigungssignal"
2507
 
2508
  #: inc/class-job.php:2506
2509
- #: inc/class-job.php:2518
2510
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2511
  msgid "Stack fault on coprocessor"
2512
  msgstr "Stack Fault auf Co-Prozessor"
2513
 
2514
  #: inc/class-job.php:2510
2515
- #: inc/class-job.php:2522
2516
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2517
  msgid "User-defined signal 1"
2518
  msgstr "Benutzerdefiniertes Signal 1"
2519
 
2520
  #: inc/class-job.php:2514
2521
- #: inc/class-job.php:2526
2522
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2523
  msgid "User-defined signal 2"
2524
  msgstr "Benutzerdefiniertes Signal 2"
2525
 
2526
  #: inc/class-job.php:2518
2527
- #: inc/class-job.php:2530
2528
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2529
  msgid "Urgent condition on socket"
2530
  msgstr "Urgent Condition auf Socket"
2531
 
2532
  #: inc/class-job.php:2522
2533
- #: inc/class-job.php:2534
2534
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2535
  msgid "CPU time limit exceeded"
2536
  msgstr "CPU Zeitlimit überschritten"
2537
 
2538
  #: inc/class-job.php:2526
2539
- #: inc/class-job.php:2538
2540
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2541
  msgid "File size limit exceeded"
2542
  msgstr "Dateigrößenlimit überschritten"
2543
 
2544
  #: inc/class-job.php:2530
2545
- #: inc/class-job.php:2542
2546
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2547
  msgid "Power failure"
2548
  msgstr "Netzausfall"
2549
 
2550
  #: inc/class-job.php:2534
2551
- #: inc/class-job.php:2546
2552
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2553
  msgid "Bad argument to routine"
2554
  msgstr "Bad Argument bei Routine"
2555
 
2556
  #: inc/class-job.php:2541
2557
- #: inc/class-job.php:2553
2558
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2559
  msgstr "Signal \"%1$s\" (%2$s) wurde zum Script gesandt!"
2560
 
2561
  #: inc/class-job.php:2575
2562
  #: inc/class-job.php:2588
2563
- #: inc/class-job.php:2587
2564
- #: inc/class-job.php:2600
2565
  msgid "System: %s"
2566
  msgstr "System: %s"
2567
 
2568
  #: inc/class-job.php:2603
2569
- #: inc/class-job.php:2615
2570
  msgid "Exception caught in %1$s: %2$s"
2571
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
2572
 
@@ -2746,6 +2814,7 @@ msgstr "XML Export"
2746
 
2747
  #: inc/class-jobtype-wpexp.php:14
2748
  #: inc/class-page-about.php:474
 
2749
  msgid "WordPress XML export"
2750
  msgstr "WordPress XML Export"
2751
 
@@ -2897,231 +2966,284 @@ msgid "New Job"
2897
  msgstr "Neuer Auftrag"
2898
 
2899
  #: inc/class-page-about.php:371
 
2900
  msgid "Welcome to BackWPup Pro"
2901
  msgstr "Willkommen zu BackWPup Pro"
2902
 
2903
  #: inc/class-page-about.php:372
2904
  #: inc/class-page-backwpup.php:75
 
2905
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2906
  msgstr "Die Assistenten in BackWPup machen das Planen und Terminieren deiner Sicherungen zu einem Spaziergang."
2907
 
2908
- #: inc/class-page-about.php:373
2909
- #: inc/class-page-about.php:386
2910
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2911
- msgstr "Benutze deine Backup-Archive, um deine gesamte WordPress-Installation zu sichern, einschließlich <code>/wp-content/</code>. Lade sie zu einem externen Dienst hoch, wenn du deine Backups nicht auf demselben Server speichern möchtest. Mit einem einzigen Backup-Archiv kannst du deine Installation wiederherstellen. Benutze ein serverseitiges Tool wie phpMyAdmin, um deine Datenbanksicherung wiederherzustellen."
2912
-
2913
  #: inc/class-page-about.php:374
 
2914
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2915
  msgstr "<a href=\"%1$s\">Bereit, einen Backup-Auftrag anzulegen</a>? Benutze die <a href=\"%2$s\">Assistenten</a>, oder plane dein Backup im Expertenmodus."
2916
 
2917
  #: inc/class-page-about.php:384
 
2918
  msgid "Welcome to BackWPup"
2919
  msgstr "Willkommen bei BackWPup"
2920
 
2921
  #: inc/class-page-about.php:387
 
2922
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2923
  msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutze einen der Assistenten, um deine Sicherung zu planen."
2924
 
2925
  #: inc/class-page-about.php:400
 
2926
  msgid "Save your database"
2927
  msgstr "Sichere deine Datenbank"
2928
 
2929
  #: inc/class-page-about.php:403
 
2930
  msgid "Save your database regularly"
2931
  msgstr "Sichere deine Datenbank regelmäßig"
2932
 
2933
  #: inc/class-page-about.php:404
 
2934
  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."
2935
  msgstr "Mit BackWPup kannst du automatische Datenbank-Backups planen. Mit einer einzigen Backup-Datei kannst du die Datenbank wiederherstellen. Du solltest einen <a href=\"%s\">Backup-Auftrag einrichten</a>, damit du es nie mehr vergisst. Es gibt auch eine Option, um die Datenbank nach jedem Backup zu reparieren und zu optimieren."
2936
 
2937
  #: inc/class-page-about.php:409
2938
  #: inc/class-page-about.php:413
 
 
2939
  msgid "WordPress XML Export"
2940
  msgstr "WordPress-XML-Export"
2941
 
2942
  #: inc/class-page-about.php:410
 
2943
  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."
2944
  msgstr "Du kannst das interne WordPress-Export-Format zusätzlich oder ausschließlich wählen, um deine Daten zu sichern. Das funktioniert natürlich auch in automatischen Backups. Der Vorteil: Du kannst diese Daten mit dem normalen WordPress-Importer-Plugin in einen Blog importieren."
2945
 
2946
  #: inc/class-page-about.php:418
 
2947
  msgid "Save all data from the webserver"
2948
  msgstr "Sichere alle Daten vom Webserver"
2949
 
2950
  #: inc/class-page-about.php:421
 
2951
  msgid "Save all files"
2952
  msgstr "Sichere alle Dateien"
2953
 
2954
  #: inc/class-page-about.php:422
 
2955
  msgid "You can backup 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."
2956
  msgstr "Du kannst alle deine Anhänge sichern, ebenso alle Systemdateien, Plugins und Themes – in einer einzigen Datei. Du kannst einen <a href=\"%s\">Auftrag erstellen</a>, um die Sicherungskopie nur dann zu aktualisieren, wenn sich tatsächlich eine Datei geändert hat."
2957
 
2958
  #: inc/class-page-about.php:427
2959
  #: inc/class-page-about.php:431
 
 
2960
  msgid "Security!"
2961
  msgstr "Sicherheit!"
2962
 
2963
  #: inc/class-page-about.php:428
 
2964
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2965
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
2966
 
2967
  #: inc/class-page-about.php:436
2968
  #: inc/class-page-about.php:439
 
 
2969
  msgid "Cloud Support"
2970
  msgstr "Cloud-Support"
2971
 
2972
  #: inc/class-page-about.php:440
 
2973
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2974
  msgstr "BackWPup unterstützt parallel mehrere Cloud-Dienste. Damit wird sichergestellt, dass du redundante Backups anlegen kannst."
2975
 
2976
  #: inc/class-page-about.php:446
 
2977
  msgid "Features / differences between Free and Pro"
2978
  msgstr "Features / Unterschiede zwischen Free und Pro"
2979
 
2980
  #: inc/class-page-about.php:449
 
2981
  msgid "Features"
2982
  msgstr "Features"
2983
 
2984
  #: inc/class-page-about.php:450
 
2985
  msgid "FREE"
2986
  msgstr "FREE"
2987
 
2988
  #: inc/class-page-about.php:451
 
2989
  msgid "PRO"
2990
  msgstr "PRO"
2991
 
2992
  #: inc/class-page-about.php:454
 
2993
  msgid "Complete database backup"
2994
  msgstr "Vollständige Datenbanksicherung"
2995
 
2996
  #: inc/class-page-about.php:459
 
2997
  msgid "Complete file backup"
2998
  msgstr "Vollständige Dateisicherung"
2999
 
3000
  #: inc/class-page-about.php:464
 
3001
  msgid "Database check"
3002
  msgstr "Datenbanküberprüfung"
3003
 
3004
  #: inc/class-page-about.php:469
 
3005
  msgid "Data compression"
3006
  msgstr "Datenkompression"
3007
 
3008
  #: inc/class-page-about.php:479
 
3009
  msgid "List of installed plugins"
3010
  msgstr "Liste installierter Plugins"
3011
 
3012
  #: inc/class-page-about.php:484
 
3013
  msgid "Backup archives management"
3014
  msgstr "Verwaltung der Backup-Archive"
3015
 
3016
  #: inc/class-page-about.php:489
 
3017
  msgid "Log file management"
3018
  msgstr "Verwaltung der Log-Dateien"
3019
 
3020
  #: inc/class-page-about.php:494
 
3021
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3022
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend oder WP-CLI"
3023
 
3024
  #: inc/class-page-about.php:499
 
3025
  msgid "Log report via email"
3026
  msgstr "Log-Report via E-Mail"
3027
 
3028
  #: inc/class-page-about.php:504
 
3029
  msgid "Backup to Microsoft Azure"
3030
  msgstr "Backup zu Microsoft Azure"
3031
 
3032
  #: inc/class-page-about.php:509
 
3033
  msgid "Backup as email"
3034
  msgstr "Backup per E-Mail"
3035
 
3036
  #: inc/class-page-about.php:514
 
3037
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3038
  msgstr "Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, usw.)"
3039
 
3040
  #: inc/class-page-about.php:529
 
3041
  msgid "Backup to FTP server"
3042
  msgstr "Backup auf FTP-Server"
3043
 
3044
  #: inc/class-page-about.php:534
 
3045
  msgid "Backup to your web space"
3046
  msgstr "Backup auf eigenem Webspace"
3047
 
3048
  #: inc/class-page-about.php:554
 
3049
  msgid "Custom API keys for DropBox and SugarSync"
3050
  msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen"
3051
 
3052
  #: inc/class-page-about.php:559
 
3053
  msgid "XML database backup as PHPMyAdmin schema"
3054
  msgstr "XML-Datenbanksicherung nach PHPMyAdmin-Schema"
3055
 
3056
  #: inc/class-page-about.php:564
 
3057
  msgid "Database backup as mysqldump per command line"
3058
  msgstr "Datenbanksicherung als mysqldump über Kommandozeile"
3059
 
3060
  #: inc/class-page-about.php:569
 
3061
  msgid "Database backup for additional MySQL databases"
3062
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
3063
 
3064
  #: inc/class-page-about.php:574
 
3065
  msgid "Import and export job settings as XML"
3066
  msgstr "Auftragseinstellungen als XML exportieren und importieren"
3067
 
3068
  #: inc/class-page-about.php:579
 
3069
  msgid "Wizard for system tests"
3070
  msgstr "Assistent zur Ausführung eines Systemtests"
3071
 
3072
  #: inc/class-page-about.php:584
 
3073
  msgid "Wizard for scheduled backup jobs"
3074
  msgstr "Assistent zur Einrichtung von geplanten Sicherungsaufträgen"
3075
 
3076
  #: inc/class-page-about.php:589
 
3077
  msgid "Wizard to import settings and backup jobs"
3078
  msgstr "Assistent zum Importieren von Einstellungen und Sicherungsaufträgen"
3079
 
3080
  #: inc/class-page-about.php:594
 
3081
  msgid "Differential backup of changed directories to Dropbox"
3082
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse in Dropbox"
3083
 
3084
  #: inc/class-page-about.php:599
 
3085
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3086
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
3087
 
3088
  #: inc/class-page-about.php:604
 
3089
  msgid "Differential backup of changed directories to S3"
3090
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach S3"
3091
 
3092
  #: inc/class-page-about.php:609
 
3093
  msgid "Differential backup of changed directories to MS Azure"
3094
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach MS Azure"
3095
 
3096
  #: inc/class-page-about.php:614
 
3097
  msgid "Restore from Folder"
3098
  msgstr "Wiederherstellung aus Ordner"
3099
 
3100
  #: inc/class-page-about.php:619
 
3101
  msgid "Restore from Google Drive"
3102
  msgstr "Wiederherstellung von Google Drive"
3103
 
3104
  #: inc/class-page-about.php:624
 
3105
  msgid "Restore from Amazon S3"
3106
  msgstr "Wiederherstellung von Amazon S3"
3107
 
3108
  #: inc/class-page-about.php:629
 
3109
  msgid "Restore from Dropbox"
3110
  msgstr "Wiederherstellung aus Dropbox"
3111
 
3112
  #: inc/class-page-about.php:634
 
3113
  msgid "Restore from FTP"
3114
  msgstr "Wiederherstellung aus FTP"
3115
 
3116
  #: inc/class-page-about.php:639
 
3117
  msgid "<strong>Premium support</strong>"
3118
  msgstr "<strong>Premium Support</strong>"
3119
 
3120
  #: inc/class-page-about.php:644
 
3121
  msgid "<strong>Automatic updates</strong>"
3122
  msgstr "Automatische Updates"
3123
 
3124
  #: inc/class-page-about.php:651
 
3125
  msgid "GET PRO"
3126
  msgstr "PRO KAUFEN"
3127
 
@@ -3288,11 +3410,6 @@ msgctxt "Dashboard heading"
3288
  msgid "Restoring backups"
3289
  msgstr "Backups wiederherstellen"
3290
 
3291
- #: inc/class-page-backwpup.php:77
3292
- #: inc/class-page-backwpup.php:86
3293
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3294
- msgstr "Mit einem einzigen Backup-Archiv kannst du deine Installation wiederherstellen. Benutze ein serverseitiges Tool wie phpMyAdmin, um deine Datenbanksicherung wiederherzustellen."
3295
-
3296
  #: inc/class-page-backwpup.php:78
3297
  #: inc/class-page-backwpup.php:87
3298
  msgctxt "Dashboard heading"
@@ -4879,33 +4996,65 @@ msgstr "Wiederherstellung der Verzeichnisse erfolgreich."
4879
 
4880
  #: inc/class-destination-folder-downloader.php:64
4881
  msgid "Could not read data from source file."
4882
- msgstr ""
4883
 
4884
  #: inc/class-destination-folder-downloader.php:69
4885
  msgid "Could not write data into target file."
4886
- msgstr ""
4887
 
4888
  #. translators: $1 is the path of the local file where the backup will be stored
4889
  #: inc/class-destination-folder-downloader.php:141
4890
  msgid "%s is a directory not a file."
4891
- msgstr ""
 
 
 
 
4892
 
4893
  #: inc/class-destination-s3.php:102
4894
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
4895
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4896
 
4897
  #: inc/class-page-backups.php:575
4898
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
4899
- msgstr ""
4900
-
4901
- #: inc/class-page-settings.php:981
4902
- msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4903
- msgstr ""
4904
 
4905
- #: inc/class-destination-s3-downloader.php:76
4906
- msgid "Could not write data to file. Empty source file."
4907
- msgstr ""
 
4908
 
4909
  #: inc/class-page-editjob.php:452
4910
  msgid "Preview: "
4911
- msgstr ""
 
 
 
 
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
 
34
  #: backwpup.php:286
35
+ #: inc/class-page-backups.php:243
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Ordner"
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
80
+ #: inc/class-page-about.php:508
81
  #: vendor_dist/backwpup.php:335
82
  msgid "Backup to Dropbox"
83
  msgstr "Backup in die Dropbox"
84
 
85
  #: backwpup.php:339
86
  #: inc/class-destination-s3.php:41
 
87
  #: backwpup.php:350
88
+ #: inc/class-destination-s3.php:42
89
  #: vendor_dist/backwpup.php:350
90
  msgid "S3 Service"
91
  msgstr "S3 Service"
117
  #: backwpup.php:377
118
  #: inc/class-page-about.php:524
119
  #: backwpup.php:388
120
+ #: inc/class-page-about.php:513
121
  #: vendor_dist/backwpup.php:388
122
  msgid "Backup to Rackspace Cloud Files"
123
  msgstr "Backup in die Rackspace Cloud"
131
  #: backwpup.php:397
132
  #: inc/class-page-about.php:539
133
  #: backwpup.php:408
134
+ #: inc/class-page-about.php:528
135
  #: vendor_dist/backwpup.php:408
136
  msgid "Backup to SugarSync"
137
  msgstr "Backup zu SugarSync"
208
  #: inc/class-destination-rsc.php:118
209
  #: inc/class-destination-s3.php:214
210
  #: inc/class-destination-sugarsync.php:104
 
211
  #: inc/class-destination-s3.php:245
212
+ #: inc/Pro/class-destination-gdrive.php:462
213
  msgid "Do not delete files while syncing to destination!"
214
  msgstr "Lösche keine Dateien, während sie mit dem Zielort synchronisiert werden!"
215
 
266
  #: inc/class-destination-folder-downloader.php:55
267
  #: inc/class-destination-ftp-downloader.php:89
268
  #: inc/class-destination-s3-downloader.php:63
 
 
 
269
  #: inc/class-destination-dropbox-downloader.php:104
270
+ #: inc/class-destination-folder-downloader.php:137
271
+ #: inc/class-destination-ftp-downloader.php:126
272
  #: inc/class-destination-s3-downloader.php:112
273
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
274
  msgid "File could not be opened for writing."
275
  msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
276
 
279
  #: inc/class-destination-folder-downloader.php:79
280
  #: inc/class-destination-ftp-downloader.php:100
281
  #: inc/class-destination-s3-downloader.php:69
 
 
282
  #: inc/class-destination-dropbox-downloader.php:72
283
+ #: inc/class-destination-ftp-downloader.php:72
284
  #: inc/class-destination-s3-downloader.php:83
285
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
286
  msgid "Could not write data to file."
287
  msgstr "Kann nicht in die Datei schreiben."
288
 
337
  #: inc/class-destination-rsc.php:292
338
  #: inc/class-destination-s3.php:825
339
  #: inc/class-destination-s3.php:940
 
340
  #: inc/class-destination-s3.php:843
341
  #: inc/class-destination-s3.php:958
342
+ #: inc/Pro/class-destination-gdrive.php:905
343
  msgid "Can not open source file for transfer."
344
  msgstr "Kann die Quelldatei nicht für den Transfer öffnen."
345
 
819
 
820
  #: inc/Pro/class-pro.php:131
821
  #: inc/class-page-about.php:549
822
+ #: inc/class-page-about.php:558
823
  msgid "Backup to Amazon Glacier"
824
  msgstr "Backup zu Amazon Glacier"
825
 
826
  #: inc/Pro/class-pro.php:152
827
  #: inc/class-page-about.php:544
828
+ #: inc/class-page-about.php:553
829
  msgid "Backup to Google Drive"
830
  msgstr "Backup zu Google Drive"
831
 
855
  #: inc/class-page-backwpup.php:260
856
  #: inc/class-page-backwpup.php:262
857
  #: inc/class-page-settings.php:1134
858
+ #: inc/class-job.php:459
859
+ #: inc/class-page-about.php:365
860
+ #: inc/class-page-about.php:375
861
+ #: inc/class-page-about.php:660
862
+ #: inc/class-page-backwpup.php:254
863
  #: inc/class-page-settings.php:1123
864
  msgid "http://backwpup.com"
865
  msgstr "https://backwpup.de"
2072
  msgstr "BackWPup Auftragshelfer"
2073
 
2074
  #: inc/class-job.php:269
2075
+ #: inc/class-job.php:297
2076
  msgid "Starting job"
2077
  msgstr "Auftrag starten"
2078
 
2079
  #: inc/class-job.php:284
2080
+ #: inc/class-job.php:314
2081
  msgid "Job Start"
2082
  msgstr "Auftragsstart"
2083
 
2084
  #: inc/class-job.php:304
2085
+ #: inc/class-job.php:334
2086
  msgid "Creates manifest file"
2087
  msgstr "Erstellt Manifest-Datei"
2088
 
2089
  #: inc/class-job.php:326
2090
+ #: inc/class-job.php:356
2091
  msgid "Creates archive"
2092
  msgstr "Erstellt Archiv"
2093
 
2094
  #: inc/class-job.php:332
2095
+ #: inc/class-job.php:362
2096
  msgid "Encrypts the archive"
2097
  msgstr "Verschlüsselt das Archiv"
2098
 
2099
  #: inc/class-job.php:373
2100
+ #: inc/class-job.php:403
2101
  msgid "End of Job"
2102
  msgstr "Auftragsende"
2103
 
2104
  #: inc/class-job.php:395
2105
+ #: inc/class-job.php:428
2106
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2107
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
2108
 
2109
  #: inc/class-job.php:412
2110
+ #: inc/class-job.php:456
2111
  msgctxt "Plugin name; Plugin Version; plugin url"
2112
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2113
  msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH"
2114
 
2115
  #: inc/class-job.php:413
2116
+ #: inc/class-job.php:462
2117
  msgctxt "WordPress Version; Blog url"
2118
  msgid "[INFO] WordPress %1$s on %2$s"
2119
  msgstr "[INFO] WordPress %1$s auf %2$s"
2120
 
2121
  #: inc/class-job.php:414
2122
+ #: inc/class-job.php:465
2123
  msgid "Normal"
2124
  msgstr "Normal"
2125
 
2126
  #: inc/class-job.php:417
2127
+ #: inc/class-job.php:468
2128
  msgid "Debug"
2129
  msgstr "Debug"
2130
 
2131
  #: inc/class-job.php:420
2132
+ #: inc/class-job.php:471
2133
  msgid "(translated)"
2134
  msgstr "(übersetzt)"
2135
 
2136
  #: inc/class-job.php:422
2137
+ #: inc/class-job.php:474
2138
  msgid "[INFO] Log Level: %1$s %2$s"
2139
  msgstr "[INFO] Log Level: %1$s %2$s"
2140
 
2141
  #: inc/class-job.php:427
2142
+ #: inc/class-job.php:480
2143
  msgid "[INFO] BackWPup job: %1$s"
2144
  msgstr "[INFO] BackWPup Auftrag: %1$s"
2145
 
2146
  #: inc/class-job.php:430
2147
+ #: inc/class-job.php:484
2148
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2149
  msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2150
 
2152
  #: inc/class-page-backwpup.php:323
2153
  #: inc/class-page-jobs.php:282
2154
  #: inc/class-page-jobs.php:291
2155
+ #: inc/class-job.php:500
2156
  msgid "Not scheduled!"
2157
  msgstr "Nicht geplant!"
2158
 
2159
  #: inc/class-job.php:448
2160
  #: inc/class-job.php:458
2161
+ #: inc/class-job.php:507
2162
+ #: inc/class-job.php:519
2163
  msgid "[INFO] Cron: %s; Next: %s "
2164
  msgstr "[INFO] Cron: %s; Nächster: %s "
2165
 
2166
  #: inc/class-job.php:451
2167
+ #: inc/class-job.php:511
2168
  msgid "[INFO] BackWPup job start with link is active"
2169
  msgstr "[INFO] BackWPup Auftragsstart mit Link ist aktiv"
2170
 
2171
  #: inc/class-job.php:453
2172
+ #: inc/class-job.php:513
2173
  msgid "[INFO] BackWPup job start with EasyCron.com"
2174
  msgstr "[INFO] BackWPup Auftragsstart mit EasyCron.com"
2175
 
2176
  #: inc/class-job.php:461
2177
+ #: inc/class-job.php:523
2178
  msgid "[INFO] BackWPup no automatic job start configured"
2179
  msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert"
2180
 
2181
  #: inc/class-job.php:465
2182
+ #: inc/class-job.php:527
2183
  msgid "[INFO] BackWPup job started from wp-cron"
2184
  msgstr "[INFO] BackWPup Auftrag wurde per wp-cron gestartet"
2185
 
2186
  #: inc/class-job.php:467
2187
+ #: inc/class-job.php:529
2188
  msgid "[INFO] BackWPup job started manually"
2189
  msgstr "[INFO] BackWPup Auftrag wurde manuell gestartet"
2190
 
2191
  #: inc/class-job.php:469
2192
+ #: inc/class-job.php:531
2193
  msgid "[INFO] BackWPup job started from external url"
2194
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
2195
 
2196
  #: inc/class-job.php:471
2197
+ #: inc/class-job.php:533
2198
  msgid "[INFO] BackWPup job started form commandline interface"
2199
  msgstr "[INFO] BackWPup Auftrag per Kommandozeilenschnittstelle gestartet"
2200
 
2201
  #: inc/class-job.php:480
2202
+ #: inc/class-job.php:544
2203
  msgid "[INFO] PHP ver.:"
2204
  msgstr "[INFO] PHP ver.:"
2205
 
2206
  #: inc/class-job.php:481
2207
+ #: inc/class-job.php:548
2208
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2209
  msgstr "[INFO] Maximum PHP Script Ausführungszeit ist %1$d Sekunden"
2210
 
2211
  #: inc/class-job.php:485
2212
+ #: inc/class-job.php:555
2213
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2214
  msgstr "[INFO] Script-Restart-Zeit ist auf %1$d Sekunden konfiguriert"
2215
 
2216
  #: inc/class-job.php:488
2217
+ #: inc/class-job.php:561
2218
  msgid "[INFO] MySQL ver.: %s"
2219
  msgstr "[INFO] MySQL ver.: %s"
2220
 
2221
  #: inc/class-job.php:490
2222
+ #: inc/class-job.php:565
2223
  msgid "[INFO] Web Server: %s"
2224
  msgstr "[INFO] Webserver: %s"
2225
 
2226
  #: inc/class-job.php:494
2227
+ #: inc/class-job.php:571
2228
  msgid "[INFO] curl ver.: %1$s; %2$s"
2229
  msgstr "[INFO] curl ver.: %1$s; %2$s"
2230
 
2231
  #: inc/class-job.php:496
2232
+ #: inc/class-job.php:576
2233
  msgid "[INFO] Temp folder is: %s"
2234
  msgstr "[INFO] Temp Ordner ist: %s"
2235
 
2236
  #: inc/class-job.php:503
2237
+ #: inc/class-job.php:584
2238
  msgid "[INFO] Logfile is: %s"
2239
  msgstr "[INFO] Log-Datei ist: %s"
2240
 
2241
  #: inc/class-job.php:510
2242
+ #: inc/class-job.php:591
2243
  msgid "[INFO] Backup file is: %s"
2244
  msgstr "[INFO] Backup Datei ist: %s"
2245
 
2246
  #: inc/class-job.php:512
2247
+ #: inc/class-job.php:594
2248
  msgid "[INFO] Backup type is: %s"
2249
  msgstr "[INFO] Backup Typ ist: %s"
2250
 
2251
  #: inc/class-job.php:520
2252
+ #: inc/class-job.php:603
2253
  msgid "Could not write log file"
2254
  msgstr "Kann nicht in die Log-Datei schreiben"
2255
 
2256
  #: inc/class-job.php:532
2257
+ #: inc/class-job.php:616
2258
  msgid "No destination correctly defined for backup! Please correct job settings."
2259
  msgstr "Es wurde kein Ziel für Backups richtig definiert! Bitte überprüfe die Auftragseinstellungen."
2260
 
2261
  #: inc/class-job.php:628
2262
+ #: inc/class-job.php:718
2263
  msgid "Cannot write progress to working file. Job will be aborted."
2264
  msgstr "Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird abgebrochen."
2265
 
2266
  #: inc/class-job.php:700
2267
  #: inc/class-page-jobs.php:786
2268
+ #: inc/class-job.php:793
2269
  msgid "WARNING:"
2270
  msgstr "WARNUNG:"
2271
 
2272
  #: inc/class-job.php:709
2273
  #: inc/class-page-jobs.php:784
2274
+ #: inc/class-job.php:802
2275
  msgid "ERROR:"
2276
  msgstr "FEHLER:"
2277
 
2278
  #: inc/class-job.php:713
2279
+ #: inc/class-job.php:806
2280
  msgid "DEPRECATED:"
2281
  msgstr "ABGELEHNT:"
2282
 
2283
  #: inc/class-job.php:716
2284
+ #: inc/class-job.php:809
2285
  msgid "STRICT NOTICE:"
2286
  msgstr "EXAKTE NOTIZ:"
2287
 
2288
  #: inc/class-job.php:721
2289
+ #: inc/class-job.php:814
2290
  msgid "RECOVERABLE ERROR:"
2291
  msgstr "WIEDERHERSTELLUNGSFEHLER:"
2292
 
2293
  #: inc/class-job.php:972
2294
+ #: inc/class-job.php:1091
2295
  msgid "Aborted by user!"
2296
  msgstr "Durch Benutzer abgebrochen!"
2297
 
2298
  #: inc/class-job.php:1005
2299
+ #: inc/class-job.php:1129
2300
  msgid "One old log deleted"
2301
  msgid_plural "%d old logs deleted"
2302
  msgstr[0] "Eine alte Log-Datei gelöscht"
2304
 
2305
  #: inc/class-job.php:1012
2306
  #: inc/class-page-jobs.php:784
2307
+ #: inc/class-job.php:1141
2308
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2309
  msgstr "Auftrag mit Fehlern in %s Sekunden beendet. Du musst die Fehler für eine korrekte Ausführung beheben."
2310
 
2311
  #: inc/class-job.php:1014
2312
+ #: inc/class-job.php:1150
2313
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2314
  msgstr "Auftrag mit Warnungen in %s Sekunden beendet. Bitte behebe die Warnungen für eine korrekte Ausführung."
2315
 
2316
  #: inc/class-job.php:1016
2317
  #: inc/class-page-jobs.php:788
2318
+ #: inc/class-job.php:1158
2319
  msgid "Job done in %s seconds."
2320
  msgstr "Auftrag erledigt in %s Sekunden."
2321
 
2322
  #: inc/class-job.php:1060
2323
+ #: inc/class-job.php:1212
2324
  msgid "SUCCESSFUL"
2325
  msgstr "ERFOLGREICH"
2326
 
2327
  #: inc/class-job.php:1062
2328
+ #: inc/class-job.php:1214
2329
  msgid "WARNING"
2330
  msgstr "WARNUNG"
2331
 
2332
  #: inc/class-job.php:1065
2333
+ #: inc/class-job.php:1217
2334
  msgid "ERROR"
2335
  msgstr "FEHLER"
2336
 
2337
  #: inc/class-job.php:1068
2338
+ #: inc/class-job.php:1221
2339
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2340
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
2341
 
2342
  #: inc/class-job.php:1180
2343
+ #: inc/class-job.php:1341
2344
  msgid "Restart after %1$d seconds."
2345
  msgstr "Neustart nach %1$d Sekunden."
2346
 
2347
  #: inc/class-job.php:1182
2348
+ #: inc/class-job.php:1343
2349
  msgid "Restart after getting signal."
2350
  msgstr "Neustart nach Erhalt des Signals."
2351
 
2352
  #: inc/class-job.php:1357
2353
+ #: inc/class-job.php:1534
2354
  msgid "Job restarts due to inactivity for more than 5 minutes."
2355
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet."
2356
 
2357
  #: inc/class-job.php:1455
2358
+ #: inc/class-job.php:1636
2359
  msgid "Step aborted: too many attempts!"
2360
  msgstr "Schritt abgebrochen: zu viele Versuche!"
2361
 
2362
  #: inc/class-job.php:1528
2363
+ #: inc/class-job.php:1716
2364
  msgid "%d. Trying to create backup archive &hellip;"
2365
  msgstr "%d. Versuche, Backup zu erstellen &hellip;"
2366
 
2367
  #: inc/class-job.php:1536
2368
+ #: inc/class-job.php:1729
2369
  msgctxt "Archive compression method"
2370
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2371
  msgstr "Komprimiere Dateien als %s. Bitte habe einen Moment Geduld."
2372
 
2373
  #: inc/class-job.php:1543
2374
+ #: inc/class-job.php:1742
2375
  msgid "Adding Extra files to Archive"
2376
  msgstr "Extradateien zum Archiv hinzufügen"
2377
 
2378
  #: inc/class-job.php:1554
2379
  #: inc/class-job.php:1614
2380
+ #: inc/class-job.php:1754
2381
+ #: inc/class-job.php:1823
2382
  msgid "Cannot create backup archive correctly. Aborting creation."
2383
  msgstr "Backup Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen."
2384
 
2385
  #: inc/class-job.php:1570
2386
+ #: inc/class-job.php:1772
2387
  msgid "Archiving Folder: %s"
2388
  msgstr "Archiviere Verzeichnis: %s"
2389
 
2390
  #: inc/class-job.php:1624
2391
+ #: inc/class-job.php:1834
2392
  msgid "Backup archive created."
2393
  msgstr "Backup wurde erstellt."
2394
 
2395
  #: inc/class-job.php:1638
2396
+ #: inc/class-job.php:1849
2397
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2398
  msgstr "Das Backup Archiv wird zu groß für Operationen mit dieser PHP Version. Du solltest die Sicherung in mehrere Backup-Aufträge mit weniger Dateien je Auftrag aufteilen."
2399
 
2400
  #: inc/class-job.php:1641
2401
+ #: inc/class-job.php:1857
2402
  msgid "Archive size is %s."
2403
  msgstr "Archivgröße ist %s."
2404
 
2405
  #: inc/class-job.php:1644
2406
+ #: inc/class-job.php:1864
2407
  msgid "%1$d Files with %2$s in Archive."
2408
  msgstr "%1$d Dateien mit %2$s in Archiven."
2409
 
2410
  #: inc/class-job.php:1677
2411
+ #: inc/class-job.php:1902
2412
  msgid "No encryption key was provided. Aborting encryption."
2413
  msgstr "Es wurde kein Schlüssel eingegeben. Verschlüsselung wird abgebrochen."
2414
 
2415
  #: inc/class-job.php:1684
2416
+ #: inc/class-job.php:1912
2417
  msgid "%d. Trying to encrypt archive &hellip;"
2418
  msgstr "%d. Versuche Archiv zu verschlüsseln &hellip;"
2419
 
2420
  #: inc/class-job.php:1694
2421
+ #: inc/class-job.php:1925
2422
  msgid "Cannot open the archive for reading. Aborting encryption."
2423
  msgstr "Das Archiv kann nicht zum Lesen geöffnet werden. Verschlüsselung wird abgebrochen."
2424
 
2425
  #: inc/class-job.php:1700
2426
+ #: inc/class-job.php:1932
2427
  msgid "Cannot write the encrypted archive. Aborting encryption."
2428
  msgstr "Das verschlüsselte Archiv kann nicht erstellt werden. Verschlüsselung wird abgebrochen."
2429
 
2430
  #: inc/class-job.php:1757
2431
+ #: inc/class-job.php:1991
2432
  msgid "Encrypted %s of data."
2433
  msgstr "Verschlüsselt %s der Daten."
2434
 
2435
  #: inc/class-job.php:1761
2436
+ #: inc/class-job.php:1996
2437
  msgid "Unable to delete unencrypted archive."
2438
  msgstr "Unverschlüsseltes Archiv kann nicht gelöscht werden."
2439
 
2440
  #: inc/class-job.php:1765
2441
+ #: inc/class-job.php:2003
2442
  msgid "Unable to rename encrypted archive."
2443
  msgstr "Verschlüsseltes Archiv kann nicht umbenannt werden."
2444
 
2445
  #: inc/class-job.php:1770
2446
+ #: inc/class-job.php:2009
2447
  msgid "Archive has been successfully encrypted."
2448
  msgstr "Archiv wurde erfolgreich verschlüsselt."
2449
 
2450
  #: inc/class-job.php:1819
2451
+ #: inc/class-job.php:2059
2452
  msgctxt "Folder name"
2453
  msgid "Folder %s does not exist"
2454
  msgstr "Verzeichnis %s existiert nicht"
2455
 
2456
  #: inc/class-job.php:1825
2457
+ #: inc/class-job.php:2067
2458
  msgctxt "Folder name"
2459
  msgid "Folder %s is not readable"
2460
  msgstr "Ordner \"%s\" ist nicht lesbar"
2461
 
2462
  #: inc/class-job.php:1848
2463
+ #: inc/class-job.php:2096
2464
  msgid "Link \"%s\" not following."
2465
  msgstr "Link \"%s\" folgt nicht."
2466
 
2467
  #: inc/class-job.php:1850
2468
+ #: inc/class-job.php:2100
2469
  msgid "File \"%s\" is not readable!"
2470
  msgstr "Datei \"%s\" ist nicht lesbar!"
2471
 
2472
  #: inc/class-job.php:1854
2473
+ #: inc/class-job.php:2107
2474
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2475
  msgstr "Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß sein und wird nicht zur Warteschlange hinzugefügt."
2476
 
2477
  #: inc/class-job.php:1937
2478
+ #: inc/class-job.php:2197
2479
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2480
  msgstr "%d. Versuche eine Manifest-Datei zu generieren&#160;&hellip;"
2481
 
2482
  #: inc/class-job.php:1993
2483
+ #: inc/class-job.php:2264
2484
  msgid "You may have noticed the manifest.json file in this archive."
2485
  msgstr "Du wirst vielleicht die manifest.json Datei in diesem Archiv bemerkt haben."
2486
 
2487
  #: inc/class-job.php:1994
2488
+ #: inc/class-job.php:2265
2489
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2490
  msgstr "manifest.json könnte für die spätere Wiederherstellung ein Backup von diesem Archiv benötigen."
2491
 
2492
  #: inc/class-job.php:1995
2493
+ #: inc/class-job.php:2268
2494
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2495
  msgstr "Bitte lasse die manifest.json unberührt an ihrem Platz. Du kannst sie ansonsten einfach ignorieren."
2496
 
2497
  #: inc/class-job.php:2005
2498
+ #: inc/class-job.php:2282
2499
  msgid "Added manifest.json file with %1$s to backup file list."
2500
  msgstr "Die manifest.json Datei mit %1$s zur Backup-Datei-Liste hinzugefügt."
2501
 
2502
  #: inc/class-job.php:2044
2503
+ #: inc/class-job.php:2324
2504
  msgid "Wrong BackWPup JobID"
2505
  msgstr "Falsche BackWPup Auftrags-ID"
2506
 
2507
  #: inc/class-job.php:2057
2508
+ #: inc/class-job.php:2337
2509
  msgid "A BackWPup job is already running"
2510
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
2511
 
2512
  #: inc/class-job.php:2439
2513
+ #: inc/class-job.php:2719
2514
  msgid "exec command is not active."
2515
  msgstr "exec command ist nicht aktiv."
2516
 
2517
  #: inc/class-job.php:2444
2518
+ #: inc/class-job.php:2725
2519
  msgid "mysqldump binary not found."
2520
  msgstr "mysqldump binary wurde nicht gefunden."
2521
 
2522
  #: inc/class-job.php:2470
2523
+ #: inc/class-job.php:2752
2524
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2525
  msgid "Hangup detected on controlling terminal or death of controlling process"
2526
  msgstr "Aufhängen von Controllingterminal erkannt oder Controllingprozess ausgefallen"
2527
 
2528
  #: inc/class-job.php:2474
2529
+ #: inc/class-job.php:2759
2530
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2531
  msgid "Interrupt from keyboard"
2532
  msgstr "Interrupt von Keyboard"
2533
 
2534
  #: inc/class-job.php:2478
2535
+ #: inc/class-job.php:2766
2536
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2537
  msgid "Quit from keyboard"
2538
  msgstr "Quit von Keyboard"
2539
 
2540
  #: inc/class-job.php:2482
2541
+ #: inc/class-job.php:2773
2542
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2543
  msgid "Illegal Instruction"
2544
  msgstr "Unerlaubte Anweisung"
2545
 
2546
  #: inc/class-job.php:2486
2547
+ #: inc/class-job.php:2780
2548
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2549
  msgid "Abort signal from abort(3)"
2550
  msgstr "Abortsignal von Abbruch(3)"
2551
 
2552
  #: inc/class-job.php:2490
2553
+ #: inc/class-job.php:2787
2554
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2555
  msgid "Bus error (bad memory access)"
2556
  msgstr "Bus Error (schlechter Speicherzugang)"
2557
 
2558
  #: inc/class-job.php:2494
2559
+ #: inc/class-job.php:2794
2560
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2561
  msgid "Floating point exception"
2562
  msgstr "Floating Point Ausnahme"
2563
 
2564
  #: inc/class-job.php:2498
2565
+ #: inc/class-job.php:2801
2566
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2567
  msgid "Invalid memory reference"
2568
  msgstr "Ungültige Speicherreferenz"
2569
 
2570
  #: inc/class-job.php:2502
2571
+ #: inc/class-job.php:2808
2572
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2573
  msgid "Termination signal"
2574
  msgstr "Beendigungssignal"
2575
 
2576
  #: inc/class-job.php:2506
2577
+ #: inc/class-job.php:2815
2578
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2579
  msgid "Stack fault on coprocessor"
2580
  msgstr "Stack Fault auf Co-Prozessor"
2581
 
2582
  #: inc/class-job.php:2510
2583
+ #: inc/class-job.php:2822
2584
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2585
  msgid "User-defined signal 1"
2586
  msgstr "Benutzerdefiniertes Signal 1"
2587
 
2588
  #: inc/class-job.php:2514
2589
+ #: inc/class-job.php:2829
2590
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2591
  msgid "User-defined signal 2"
2592
  msgstr "Benutzerdefiniertes Signal 2"
2593
 
2594
  #: inc/class-job.php:2518
2595
+ #: inc/class-job.php:2836
2596
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2597
  msgid "Urgent condition on socket"
2598
  msgstr "Urgent Condition auf Socket"
2599
 
2600
  #: inc/class-job.php:2522
2601
+ #: inc/class-job.php:2843
2602
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2603
  msgid "CPU time limit exceeded"
2604
  msgstr "CPU Zeitlimit überschritten"
2605
 
2606
  #: inc/class-job.php:2526
2607
+ #: inc/class-job.php:2850
2608
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2609
  msgid "File size limit exceeded"
2610
  msgstr "Dateigrößenlimit überschritten"
2611
 
2612
  #: inc/class-job.php:2530
2613
+ #: inc/class-job.php:2857
2614
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2615
  msgid "Power failure"
2616
  msgstr "Netzausfall"
2617
 
2618
  #: inc/class-job.php:2534
2619
+ #: inc/class-job.php:2864
2620
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2621
  msgid "Bad argument to routine"
2622
  msgstr "Bad Argument bei Routine"
2623
 
2624
  #: inc/class-job.php:2541
2625
+ #: inc/class-job.php:2876
2626
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2627
  msgstr "Signal \"%1$s\" (%2$s) wurde zum Script gesandt!"
2628
 
2629
  #: inc/class-job.php:2575
2630
  #: inc/class-job.php:2588
2631
+ #: inc/class-job.php:2912
2632
+ #: inc/class-job.php:2925
2633
  msgid "System: %s"
2634
  msgstr "System: %s"
2635
 
2636
  #: inc/class-job.php:2603
2637
+ #: inc/class-job.php:2942
2638
  msgid "Exception caught in %1$s: %2$s"
2639
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
2640
 
2814
 
2815
  #: inc/class-jobtype-wpexp.php:14
2816
  #: inc/class-page-about.php:474
2817
+ #: inc/class-page-about.php:463
2818
  msgid "WordPress XML export"
2819
  msgstr "WordPress XML Export"
2820
 
2966
  msgstr "Neuer Auftrag"
2967
 
2968
  #: inc/class-page-about.php:371
2969
+ #: inc/class-page-about.php:366
2970
  msgid "Welcome to BackWPup Pro"
2971
  msgstr "Willkommen zu BackWPup Pro"
2972
 
2973
  #: inc/class-page-about.php:372
2974
  #: inc/class-page-backwpup.php:75
2975
+ #: inc/class-page-about.php:367
2976
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2977
  msgstr "Die Assistenten in BackWPup machen das Planen und Terminieren deiner Sicherungen zu einem Spaziergang."
2978
 
 
 
 
 
 
2979
  #: inc/class-page-about.php:374
2980
+ #: inc/class-page-about.php:369
2981
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2982
  msgstr "<a href=\"%1$s\">Bereit, einen Backup-Auftrag anzulegen</a>? Benutze die <a href=\"%2$s\">Assistenten</a>, oder plane dein Backup im Expertenmodus."
2983
 
2984
  #: inc/class-page-about.php:384
2985
+ #: inc/class-page-about.php:376
2986
  msgid "Welcome to BackWPup"
2987
  msgstr "Willkommen bei BackWPup"
2988
 
2989
  #: inc/class-page-about.php:387
2990
+ #: inc/class-page-about.php:379
2991
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2992
  msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutze einen der Assistenten, um deine Sicherung zu planen."
2993
 
2994
  #: inc/class-page-about.php:400
2995
+ #: inc/class-page-about.php:389
2996
  msgid "Save your database"
2997
  msgstr "Sichere deine Datenbank"
2998
 
2999
  #: inc/class-page-about.php:403
3000
+ #: inc/class-page-about.php:392
3001
  msgid "Save your database regularly"
3002
  msgstr "Sichere deine Datenbank regelmäßig"
3003
 
3004
  #: inc/class-page-about.php:404
3005
+ #: inc/class-page-about.php:393
3006
  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."
3007
  msgstr "Mit BackWPup kannst du automatische Datenbank-Backups planen. Mit einer einzigen Backup-Datei kannst du die Datenbank wiederherstellen. Du solltest einen <a href=\"%s\">Backup-Auftrag einrichten</a>, damit du es nie mehr vergisst. Es gibt auch eine Option, um die Datenbank nach jedem Backup zu reparieren und zu optimieren."
3008
 
3009
  #: inc/class-page-about.php:409
3010
  #: inc/class-page-about.php:413
3011
+ #: inc/class-page-about.php:398
3012
+ #: inc/class-page-about.php:402
3013
  msgid "WordPress XML Export"
3014
  msgstr "WordPress-XML-Export"
3015
 
3016
  #: inc/class-page-about.php:410
3017
+ #: inc/class-page-about.php:399
3018
  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."
3019
  msgstr "Du kannst das interne WordPress-Export-Format zusätzlich oder ausschließlich wählen, um deine Daten zu sichern. Das funktioniert natürlich auch in automatischen Backups. Der Vorteil: Du kannst diese Daten mit dem normalen WordPress-Importer-Plugin in einen Blog importieren."
3020
 
3021
  #: inc/class-page-about.php:418
3022
+ #: inc/class-page-about.php:407
3023
  msgid "Save all data from the webserver"
3024
  msgstr "Sichere alle Daten vom Webserver"
3025
 
3026
  #: inc/class-page-about.php:421
3027
+ #: inc/class-page-about.php:410
3028
  msgid "Save all files"
3029
  msgstr "Sichere alle Dateien"
3030
 
3031
  #: inc/class-page-about.php:422
3032
+ #: inc/class-page-about.php:411
3033
  msgid "You can backup 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."
3034
  msgstr "Du kannst alle deine Anhänge sichern, ebenso alle Systemdateien, Plugins und Themes – in einer einzigen Datei. Du kannst einen <a href=\"%s\">Auftrag erstellen</a>, um die Sicherungskopie nur dann zu aktualisieren, wenn sich tatsächlich eine Datei geändert hat."
3035
 
3036
  #: inc/class-page-about.php:427
3037
  #: inc/class-page-about.php:431
3038
+ #: inc/class-page-about.php:416
3039
+ #: inc/class-page-about.php:420
3040
  msgid "Security!"
3041
  msgstr "Sicherheit!"
3042
 
3043
  #: inc/class-page-about.php:428
3044
+ #: inc/class-page-about.php:417
3045
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3046
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
3047
 
3048
  #: inc/class-page-about.php:436
3049
  #: inc/class-page-about.php:439
3050
+ #: inc/class-page-about.php:425
3051
+ #: inc/class-page-about.php:428
3052
  msgid "Cloud Support"
3053
  msgstr "Cloud-Support"
3054
 
3055
  #: inc/class-page-about.php:440
3056
+ #: inc/class-page-about.php:429
3057
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3058
  msgstr "BackWPup unterstützt parallel mehrere Cloud-Dienste. Damit wird sichergestellt, dass du redundante Backups anlegen kannst."
3059
 
3060
  #: inc/class-page-about.php:446
3061
+ #: inc/class-page-about.php:435
3062
  msgid "Features / differences between Free and Pro"
3063
  msgstr "Features / Unterschiede zwischen Free und Pro"
3064
 
3065
  #: inc/class-page-about.php:449
3066
+ #: inc/class-page-about.php:438
3067
  msgid "Features"
3068
  msgstr "Features"
3069
 
3070
  #: inc/class-page-about.php:450
3071
+ #: inc/class-page-about.php:439
3072
  msgid "FREE"
3073
  msgstr "FREE"
3074
 
3075
  #: inc/class-page-about.php:451
3076
+ #: inc/class-page-about.php:440
3077
  msgid "PRO"
3078
  msgstr "PRO"
3079
 
3080
  #: inc/class-page-about.php:454
3081
+ #: inc/class-page-about.php:443
3082
  msgid "Complete database backup"
3083
  msgstr "Vollständige Datenbanksicherung"
3084
 
3085
  #: inc/class-page-about.php:459
3086
+ #: inc/class-page-about.php:448
3087
  msgid "Complete file backup"
3088
  msgstr "Vollständige Dateisicherung"
3089
 
3090
  #: inc/class-page-about.php:464
3091
+ #: inc/class-page-about.php:453
3092
  msgid "Database check"
3093
  msgstr "Datenbanküberprüfung"
3094
 
3095
  #: inc/class-page-about.php:469
3096
+ #: inc/class-page-about.php:458
3097
  msgid "Data compression"
3098
  msgstr "Datenkompression"
3099
 
3100
  #: inc/class-page-about.php:479
3101
+ #: inc/class-page-about.php:468
3102
  msgid "List of installed plugins"
3103
  msgstr "Liste installierter Plugins"
3104
 
3105
  #: inc/class-page-about.php:484
3106
+ #: inc/class-page-about.php:473
3107
  msgid "Backup archives management"
3108
  msgstr "Verwaltung der Backup-Archive"
3109
 
3110
  #: inc/class-page-about.php:489
3111
+ #: inc/class-page-about.php:478
3112
  msgid "Log file management"
3113
  msgstr "Verwaltung der Log-Dateien"
3114
 
3115
  #: inc/class-page-about.php:494
3116
+ #: inc/class-page-about.php:483
3117
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3118
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend oder WP-CLI"
3119
 
3120
  #: inc/class-page-about.php:499
3121
+ #: inc/class-page-about.php:488
3122
  msgid "Log report via email"
3123
  msgstr "Log-Report via E-Mail"
3124
 
3125
  #: inc/class-page-about.php:504
3126
+ #: inc/class-page-about.php:493
3127
  msgid "Backup to Microsoft Azure"
3128
  msgstr "Backup zu Microsoft Azure"
3129
 
3130
  #: inc/class-page-about.php:509
3131
+ #: inc/class-page-about.php:498
3132
  msgid "Backup as email"
3133
  msgstr "Backup per E-Mail"
3134
 
3135
  #: inc/class-page-about.php:514
3136
+ #: inc/class-page-about.php:503
3137
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3138
  msgstr "Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, usw.)"
3139
 
3140
  #: inc/class-page-about.php:529
3141
+ #: inc/class-page-about.php:518
3142
  msgid "Backup to FTP server"
3143
  msgstr "Backup auf FTP-Server"
3144
 
3145
  #: inc/class-page-about.php:534
3146
+ #: inc/class-page-about.php:523
3147
  msgid "Backup to your web space"
3148
  msgstr "Backup auf eigenem Webspace"
3149
 
3150
  #: inc/class-page-about.php:554
3151
+ #: inc/class-page-about.php:563
3152
  msgid "Custom API keys for DropBox and SugarSync"
3153
  msgstr "Eigene API-Keys für DropBox und SugarSync hinterlegen"
3154
 
3155
  #: inc/class-page-about.php:559
3156
+ #: inc/class-page-about.php:568
3157
  msgid "XML database backup as PHPMyAdmin schema"
3158
  msgstr "XML-Datenbanksicherung nach PHPMyAdmin-Schema"
3159
 
3160
  #: inc/class-page-about.php:564
3161
+ #: inc/class-page-about.php:573
3162
  msgid "Database backup as mysqldump per command line"
3163
  msgstr "Datenbanksicherung als mysqldump über Kommandozeile"
3164
 
3165
  #: inc/class-page-about.php:569
3166
+ #: inc/class-page-about.php:578
3167
  msgid "Database backup for additional MySQL databases"
3168
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
3169
 
3170
  #: inc/class-page-about.php:574
3171
+ #: inc/class-page-about.php:583
3172
  msgid "Import and export job settings as XML"
3173
  msgstr "Auftragseinstellungen als XML exportieren und importieren"
3174
 
3175
  #: inc/class-page-about.php:579
3176
+ #: inc/class-page-about.php:588
3177
  msgid "Wizard for system tests"
3178
  msgstr "Assistent zur Ausführung eines Systemtests"
3179
 
3180
  #: inc/class-page-about.php:584
3181
+ #: inc/class-page-about.php:593
3182
  msgid "Wizard for scheduled backup jobs"
3183
  msgstr "Assistent zur Einrichtung von geplanten Sicherungsaufträgen"
3184
 
3185
  #: inc/class-page-about.php:589
3186
+ #: inc/class-page-about.php:598
3187
  msgid "Wizard to import settings and backup jobs"
3188
  msgstr "Assistent zum Importieren von Einstellungen und Sicherungsaufträgen"
3189
 
3190
  #: inc/class-page-about.php:594
3191
+ #: inc/class-page-about.php:603
3192
  msgid "Differential backup of changed directories to Dropbox"
3193
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse in Dropbox"
3194
 
3195
  #: inc/class-page-about.php:599
3196
+ #: inc/class-page-about.php:608
3197
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3198
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
3199
 
3200
  #: inc/class-page-about.php:604
3201
+ #: inc/class-page-about.php:613
3202
  msgid "Differential backup of changed directories to S3"
3203
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach S3"
3204
 
3205
  #: inc/class-page-about.php:609
3206
+ #: inc/class-page-about.php:618
3207
  msgid "Differential backup of changed directories to MS Azure"
3208
  msgstr "Differenzielle Sicherung geänderter Verzeichnisse nach MS Azure"
3209
 
3210
  #: inc/class-page-about.php:614
3211
+ #: inc/class-page-about.php:623
3212
  msgid "Restore from Folder"
3213
  msgstr "Wiederherstellung aus Ordner"
3214
 
3215
  #: inc/class-page-about.php:619
3216
+ #: inc/class-page-about.php:628
3217
  msgid "Restore from Google Drive"
3218
  msgstr "Wiederherstellung von Google Drive"
3219
 
3220
  #: inc/class-page-about.php:624
3221
+ #: inc/class-page-about.php:633
3222
  msgid "Restore from Amazon S3"
3223
  msgstr "Wiederherstellung von Amazon S3"
3224
 
3225
  #: inc/class-page-about.php:629
3226
+ #: inc/class-page-about.php:638
3227
  msgid "Restore from Dropbox"
3228
  msgstr "Wiederherstellung aus Dropbox"
3229
 
3230
  #: inc/class-page-about.php:634
3231
+ #: inc/class-page-about.php:643
3232
  msgid "Restore from FTP"
3233
  msgstr "Wiederherstellung aus FTP"
3234
 
3235
  #: inc/class-page-about.php:639
3236
+ #: inc/class-page-about.php:648
3237
  msgid "<strong>Premium support</strong>"
3238
  msgstr "<strong>Premium Support</strong>"
3239
 
3240
  #: inc/class-page-about.php:644
3241
+ #: inc/class-page-about.php:653
3242
  msgid "<strong>Automatic updates</strong>"
3243
  msgstr "Automatische Updates"
3244
 
3245
  #: inc/class-page-about.php:651
3246
+ #: inc/class-page-about.php:660
3247
  msgid "GET PRO"
3248
  msgstr "PRO KAUFEN"
3249
 
3410
  msgid "Restoring backups"
3411
  msgstr "Backups wiederherstellen"
3412
 
 
 
 
 
 
3413
  #: inc/class-page-backwpup.php:78
3414
  #: inc/class-page-backwpup.php:87
3415
  msgctxt "Dashboard heading"
4996
 
4997
  #: inc/class-destination-folder-downloader.php:64
4998
  msgid "Could not read data from source file."
4999
+ msgstr "Daten der Ursprungsdatei sind nicht lesbar."
5000
 
5001
  #: inc/class-destination-folder-downloader.php:69
5002
  msgid "Could not write data into target file."
5003
+ msgstr "Daten konnten nicht in die Zieldatei geschrieben werden."
5004
 
5005
  #. translators: $1 is the path of the local file where the backup will be stored
5006
  #: inc/class-destination-folder-downloader.php:141
5007
  msgid "%s is a directory not a file."
5008
+ msgstr "%s ist ein Verzeichnis, keine Datei."
5009
+
5010
+ #: inc/class-destination-s3-downloader.php:76
5011
+ msgid "Could not write data to file. Empty source file."
5012
+ msgstr "Daten konnten nicht in die Datei geschrieben werden. Leere Ursprungsdatei."
5013
 
5014
  #: inc/class-destination-s3.php:102
5015
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5016
+ msgstr "Multipart teilt die Datei während des Uploads in mehrere Teile.<br />Das ist notwendig, um den Upload Prozess anzuzeigen und größere Dateien zu transferieren.<br />Dies funktioniert nicht mit Google oder Dreamhost."
5017
+
5018
+ #: inc/class-page-about.php:365
5019
+ #: inc/class-page-about.php:375
5020
+ #: inc/class-page-backwpup.php:254
5021
+ msgid "BackWPup banner"
5022
+ msgstr "BackWPup Banner"
5023
+
5024
+ #: inc/class-page-about.php:368
5025
+ #: inc/class-page-about.php:378
5026
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5027
+ msgstr "Verwende dein Backup-Archiv, um deine gesamte WordPress-Installation zu speichern, einschließlich <code>/wp-content/</code>. Verschiebe es zu einem externen Speicherdienst, wenn du die Backups nicht auf dem gleichen Server speichern willst. Mit einem einzigen Backup-Archiv kannst du deine Installation wiederherstellen. Verwende die integrierte Wiederherstellungsfunktion, um deine Website direkt aus deinem WordPress-Backend oder der Restore-Standalone-App wiederherzustellen, falls deine Website vollständig zerstört wird."
5028
+
5029
+ #: inc/class-page-about.php:533
5030
+ msgid "Restore manually uploaded Backup Archives"
5031
+ msgstr "Stelle Backup Archive manuell wieder her"
5032
+
5033
+ #: inc/class-page-about.php:538
5034
+ msgid "Standalone Restore App"
5035
+ msgstr "Standalone Restore App"
5036
+
5037
+ #: inc/class-page-about.php:543
5038
+ msgid "Encrypt Backup Archives"
5039
+ msgstr "Verschlüssele Backup Archives"
5040
+
5041
+ #: inc/class-page-about.php:548
5042
+ msgid "Restore Encrypted Backups"
5043
+ msgstr "Stelle verschlüsselte Backups wieder her"
5044
 
5045
  #: inc/class-page-backups.php:575
5046
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5047
+ msgstr "Es scheint nicht möglich zu sein, deinen privaten Schlüssel zu speichern, stelle sicher, dass das Verzeichnis %s beschreibbar ist."
 
 
 
 
5048
 
5049
+ #: inc/class-page-backwpup.php:77
5050
+ #: inc/class-page-backwpup.php:86
5051
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5052
+ msgstr "Mit einem einzigen Backup-Archiv kannst du eine Installation wiederherstellen. Verwende unsere Restore-Funktion, die in BackWPup pro integriert ist, um deine Website direkt von deinem WordPress-Backend wiederherzustellen. Wir bieten auch eine Restore-Standalone-App mit der pro-Version an, um deine Website wiederherzustellen, falls Sie vollständig zerstört wird."
5053
 
5054
  #: inc/class-page-editjob.php:452
5055
  msgid "Preview: "
5056
+ msgstr "Vorschau: "
5057
+
5058
+ #: inc/class-page-settings.php:981
5059
+ msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
5060
+ msgstr "<strong>Hinweis</strong>: Benötigst du schnelleren, dedizierten Support? Als Pro Nutzer kannst du uns direkt aus dem Backend kontaktieren."
languages/backwpup-de_DE_formal.mo CHANGED
Binary file
languages/backwpup-de_DE_formal.po CHANGED
@@ -31,8 +31,8 @@ msgstr "API Key"
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
34
- #: inc/class-page-backups.php:243
35
  #: backwpup.php:286
 
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Ordner"
@@ -77,14 +77,15 @@ msgstr "Dropbox"
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
 
80
  #: vendor_dist/backwpup.php:335
81
  msgid "Backup to Dropbox"
82
  msgstr "Backup in die Dropbox"
83
 
84
  #: backwpup.php:339
85
  #: inc/class-destination-s3.php:41
86
- #: inc/class-destination-s3.php:42
87
  #: backwpup.php:350
 
88
  #: vendor_dist/backwpup.php:350
89
  msgid "S3 Service"
90
  msgstr "S3 Service"
@@ -116,6 +117,7 @@ msgstr "RSC"
116
  #: backwpup.php:377
117
  #: inc/class-page-about.php:524
118
  #: backwpup.php:388
 
119
  #: vendor_dist/backwpup.php:388
120
  msgid "Backup to Rackspace Cloud Files"
121
  msgstr "Backup in die Rackspace Cloud"
@@ -129,6 +131,7 @@ msgstr "SugarSync"
129
  #: backwpup.php:397
130
  #: inc/class-page-about.php:539
131
  #: backwpup.php:408
 
132
  #: vendor_dist/backwpup.php:408
133
  msgid "Backup to SugarSync"
134
  msgstr "Backup zu SugarSync"
@@ -205,8 +208,8 @@ msgstr "Anzahl der Dateien, die im Ordner behalten werden."
205
  #: inc/class-destination-rsc.php:118
206
  #: inc/class-destination-s3.php:214
207
  #: inc/class-destination-sugarsync.php:104
208
- #: inc/Pro/class-destination-gdrive.php:462
209
  #: inc/class-destination-s3.php:245
 
210
  msgid "Do not delete files while syncing to destination!"
211
  msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
212
 
@@ -263,11 +266,11 @@ msgstr "Passwort:"
263
  #: inc/class-destination-folder-downloader.php:55
264
  #: inc/class-destination-ftp-downloader.php:89
265
  #: inc/class-destination-s3-downloader.php:63
266
- #: inc/Pro/class-destination-gdrive-downloader.php:102
267
- #: inc/class-destination-ftp-downloader.php:126
268
- #: inc/class-destination-folder-downloader.php:137
269
  #: inc/class-destination-dropbox-downloader.php:104
 
 
270
  #: inc/class-destination-s3-downloader.php:112
 
271
  msgid "File could not be opened for writing."
272
  msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
273
 
@@ -276,10 +279,10 @@ msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
276
  #: inc/class-destination-folder-downloader.php:79
277
  #: inc/class-destination-ftp-downloader.php:100
278
  #: inc/class-destination-s3-downloader.php:69
279
- #: inc/Pro/class-destination-gdrive-downloader.php:74
280
- #: inc/class-destination-ftp-downloader.php:72
281
  #: inc/class-destination-dropbox-downloader.php:72
 
282
  #: inc/class-destination-s3-downloader.php:83
 
283
  msgid "Could not write data to file."
284
  msgstr "Daten konnten nicht in den Ordner geschrieben werden."
285
 
@@ -334,9 +337,9 @@ msgstr "<strong>Warnung</strong>: Dateien, die zu diesem Auftrag gehören, werde
334
  #: inc/class-destination-rsc.php:292
335
  #: inc/class-destination-s3.php:825
336
  #: inc/class-destination-s3.php:940
337
- #: inc/Pro/class-destination-gdrive.php:905
338
  #: inc/class-destination-s3.php:843
339
  #: inc/class-destination-s3.php:958
 
340
  msgid "Can not open source file for transfer."
341
  msgstr "Kann die Quelldatei für den Transfer nicht öffnen."
342
 
@@ -816,11 +819,13 @@ msgstr "Assistenten starten"
816
 
817
  #: inc/Pro/class-pro.php:131
818
  #: inc/class-page-about.php:549
 
819
  msgid "Backup to Amazon Glacier"
820
  msgstr "Backup zu Amazon Glacier"
821
 
822
  #: inc/Pro/class-pro.php:152
823
  #: inc/class-page-about.php:544
 
824
  msgid "Backup to Google Drive"
825
  msgstr "Backup zu Google Drive"
826
 
@@ -850,6 +855,11 @@ msgstr "Wiederherstellen"
850
  #: inc/class-page-backwpup.php:260
851
  #: inc/class-page-backwpup.php:262
852
  #: inc/class-page-settings.php:1134
 
 
 
 
 
853
  #: inc/class-page-settings.php:1123
854
  msgid "http://backwpup.com"
855
  msgstr "https://backwpup.de"
@@ -2062,64 +2072,79 @@ msgid "BackWPup jobs helper"
2062
  msgstr "BackWPup Auftragshelfer"
2063
 
2064
  #: inc/class-job.php:269
 
2065
  msgid "Starting job"
2066
  msgstr "Auftrag starten"
2067
 
2068
  #: inc/class-job.php:284
 
2069
  msgid "Job Start"
2070
  msgstr "Auftragsstart"
2071
 
2072
  #: inc/class-job.php:304
 
2073
  msgid "Creates manifest file"
2074
  msgstr "Erstellt Manifest-Datei"
2075
 
2076
  #: inc/class-job.php:326
 
2077
  msgid "Creates archive"
2078
  msgstr "Erstellt Archiv"
2079
 
2080
  #: inc/class-job.php:332
 
2081
  msgid "Encrypts the archive"
2082
  msgstr "Verschlüsselt das Archiv"
2083
 
2084
  #: inc/class-job.php:373
 
2085
  msgid "End of Job"
2086
  msgstr "Auftragsende"
2087
 
2088
  #: inc/class-job.php:395
 
2089
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2090
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
2091
 
2092
  #: inc/class-job.php:412
 
2093
  msgctxt "Plugin name; Plugin Version; plugin url"
2094
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2095
  msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH"
2096
 
2097
  #: inc/class-job.php:413
 
2098
  msgctxt "WordPress Version; Blog url"
2099
  msgid "[INFO] WordPress %1$s on %2$s"
2100
  msgstr "[INFO] WordPress %1$s auf %2$s"
2101
 
2102
  #: inc/class-job.php:414
 
2103
  msgid "Normal"
2104
  msgstr "Normal"
2105
 
2106
  #: inc/class-job.php:417
 
2107
  msgid "Debug"
2108
  msgstr "Debug"
2109
 
2110
  #: inc/class-job.php:420
 
2111
  msgid "(translated)"
2112
  msgstr "(Übersetzt)"
2113
 
2114
  #: inc/class-job.php:422
 
2115
  msgid "[INFO] Log Level: %1$s %2$s"
2116
  msgstr "[INFO] Log Level: %1$s %2$s"
2117
 
2118
  #: inc/class-job.php:427
 
2119
  msgid "[INFO] BackWPup job: %1$s"
2120
  msgstr "[INFO] BackWPup Auftrag: %1$s"
2121
 
2122
  #: inc/class-job.php:430
 
2123
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2124
  msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2125
 
@@ -2127,121 +2152,151 @@ msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2127
  #: inc/class-page-backwpup.php:323
2128
  #: inc/class-page-jobs.php:282
2129
  #: inc/class-page-jobs.php:291
 
2130
  msgid "Not scheduled!"
2131
  msgstr "Nicht geplant!"
2132
 
2133
  #: inc/class-job.php:448
2134
  #: inc/class-job.php:458
 
 
2135
  msgid "[INFO] Cron: %s; Next: %s "
2136
  msgstr "[INFO] Cron: %s; Nächster: %s "
2137
 
2138
  #: inc/class-job.php:451
 
2139
  msgid "[INFO] BackWPup job start with link is active"
2140
  msgstr "[INFO] BackWPup Auftragsstart mit Link ist gestartet"
2141
 
2142
  #: inc/class-job.php:453
 
2143
  msgid "[INFO] BackWPup job start with EasyCron.com"
2144
  msgstr "[INFO] BackWPup Auftragsstart durch EasyCron.com"
2145
 
2146
  #: inc/class-job.php:461
 
2147
  msgid "[INFO] BackWPup no automatic job start configured"
2148
  msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert"
2149
 
2150
  #: inc/class-job.php:465
 
2151
  msgid "[INFO] BackWPup job started from wp-cron"
2152
  msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet"
2153
 
2154
  #: inc/class-job.php:467
 
2155
  msgid "[INFO] BackWPup job started manually"
2156
  msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet"
2157
 
2158
  #: inc/class-job.php:469
 
2159
  msgid "[INFO] BackWPup job started from external url"
2160
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
2161
 
2162
  #: inc/class-job.php:471
 
2163
  msgid "[INFO] BackWPup job started form commandline interface"
2164
  msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
2165
 
2166
  #: inc/class-job.php:480
 
2167
  msgid "[INFO] PHP ver.:"
2168
  msgstr "[INFO] PHP ver.:"
2169
 
2170
  #: inc/class-job.php:481
 
2171
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2172
  msgstr "[INFO] Maximum PHP-Script-Execution-Time ist %1$d Sekunden"
2173
 
2174
  #: inc/class-job.php:485
 
2175
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2176
  msgstr "[INFO] Skript-Restart-Zeit ist auf %1$d Sekunden konfiguriert"
2177
 
2178
  #: inc/class-job.php:488
 
2179
  msgid "[INFO] MySQL ver.: %s"
2180
  msgstr "[INFO] MySQL ver.: %s"
2181
 
2182
  #: inc/class-job.php:490
 
2183
  msgid "[INFO] Web Server: %s"
2184
  msgstr "[INFO] Webserver: %s"
2185
 
2186
  #: inc/class-job.php:494
 
2187
  msgid "[INFO] curl ver.: %1$s; %2$s"
2188
  msgstr "[INFO] curl ver.: %1$s; %2$s"
2189
 
2190
  #: inc/class-job.php:496
 
2191
  msgid "[INFO] Temp folder is: %s"
2192
  msgstr "[INFO] Temp-Ordner ist: %s"
2193
 
2194
  #: inc/class-job.php:503
 
2195
  msgid "[INFO] Logfile is: %s"
2196
  msgstr "[INFO] Logfile ist: %s"
2197
 
2198
  #: inc/class-job.php:510
 
2199
  msgid "[INFO] Backup file is: %s"
2200
  msgstr "[INFO] Backup-Datei ist: %s"
2201
 
2202
  #: inc/class-job.php:512
 
2203
  msgid "[INFO] Backup type is: %s"
2204
  msgstr "[INFO] Backup-Typ ist: %s"
2205
 
2206
  #: inc/class-job.php:520
 
2207
  msgid "Could not write log file"
2208
  msgstr "Kann nicht in die Log-Datei schreiben"
2209
 
2210
  #: inc/class-job.php:532
 
2211
  msgid "No destination correctly defined for backup! Please correct job settings."
2212
  msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
2213
 
2214
  #: inc/class-job.php:628
 
2215
  msgid "Cannot write progress to working file. Job will be aborted."
2216
  msgstr "Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird abgebrochen."
2217
 
2218
  #: inc/class-job.php:700
2219
  #: inc/class-page-jobs.php:786
 
2220
  msgid "WARNING:"
2221
  msgstr "WARNUNG:"
2222
 
2223
  #: inc/class-job.php:709
2224
  #: inc/class-page-jobs.php:784
 
2225
  msgid "ERROR:"
2226
  msgstr "FEHLER:"
2227
 
2228
  #: inc/class-job.php:713
 
2229
  msgid "DEPRECATED:"
2230
  msgstr "ABGELEHNT:"
2231
 
2232
  #: inc/class-job.php:716
 
2233
  msgid "STRICT NOTICE:"
2234
  msgstr "EXAKTE NOTIZ:"
2235
 
2236
  #: inc/class-job.php:721
 
2237
  msgid "RECOVERABLE ERROR:"
2238
  msgstr "WIEDERHERSTELLUNGSFEHLER:"
2239
 
2240
  #: inc/class-job.php:972
 
2241
  msgid "Aborted by user!"
2242
  msgstr "Durch Benutzer abgebrochen!"
2243
 
2244
  #: inc/class-job.php:1005
 
2245
  msgid "One old log deleted"
2246
  msgid_plural "%d old logs deleted"
2247
  msgstr[0] "Eine alte Log-Datei gelöscht"
@@ -2249,324 +2304,337 @@ msgstr[1] "%d alte Log-Dateien gelöscht"
2249
 
2250
  #: inc/class-job.php:1012
2251
  #: inc/class-page-jobs.php:784
 
2252
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2253
  msgstr "Auftrag mit Fehlern in %s Sekunden beendet. Für eine korrekte Ausführung müssen Sie die Fehler beheben."
2254
 
2255
  #: inc/class-job.php:1014
 
2256
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2257
  msgstr "Auftrag mit Warnungen in %s Sekunden beendet. Bitte beheben Sie für eine korrekte Ausführung die Warnungen."
2258
 
2259
  #: inc/class-job.php:1016
2260
  #: inc/class-page-jobs.php:788
 
2261
  msgid "Job done in %s seconds."
2262
  msgstr "Auftrag in %s Sekunden erledigt."
2263
 
2264
  #: inc/class-job.php:1060
 
2265
  msgid "SUCCESSFUL"
2266
  msgstr "ERFOLGREICH"
2267
 
2268
  #: inc/class-job.php:1062
 
2269
  msgid "WARNING"
2270
  msgstr "WARNUNG"
2271
 
2272
  #: inc/class-job.php:1065
 
2273
  msgid "ERROR"
2274
  msgstr "FEHLER"
2275
 
2276
  #: inc/class-job.php:1068
 
2277
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2278
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
2279
 
2280
  #: inc/class-job.php:1180
 
2281
  msgid "Restart after %1$d seconds."
2282
  msgstr "Neustart nach %1$d Sekunden."
2283
 
2284
  #: inc/class-job.php:1182
 
2285
  msgid "Restart after getting signal."
2286
  msgstr "Neustart nach Erhalt des Signals."
2287
 
2288
  #: inc/class-job.php:1357
 
2289
  msgid "Job restarts due to inactivity for more than 5 minutes."
2290
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet."
2291
 
2292
  #: inc/class-job.php:1455
 
2293
  msgid "Step aborted: too many attempts!"
2294
  msgstr "Schritt abgebrochen: Zu viele Versuche!"
2295
 
2296
  #: inc/class-job.php:1528
 
2297
  msgid "%d. Trying to create backup archive &hellip;"
2298
  msgstr "%d. Versuche, Backup-Archiv zu erstellen &hellip;"
2299
 
2300
  #: inc/class-job.php:1536
 
2301
  msgctxt "Archive compression method"
2302
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2303
  msgstr "Komprimiere Dateien als %s. Bitte haben Sie einen Moment Geduld."
2304
 
2305
  #: inc/class-job.php:1543
2306
- #: inc/class-job.php:1544
2307
  msgid "Adding Extra files to Archive"
2308
  msgstr "Weitere Dateien zum Archiv hinzufügen"
2309
 
2310
  #: inc/class-job.php:1554
2311
  #: inc/class-job.php:1614
2312
- #: inc/class-job.php:1555
2313
- #: inc/class-job.php:1626
2314
  msgid "Cannot create backup archive correctly. Aborting creation."
2315
  msgstr "Backup-Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen."
2316
 
2317
  #: inc/class-job.php:1570
2318
- #: inc/class-job.php:1571
2319
  msgid "Archiving Folder: %s"
2320
  msgstr "Archiviere Verzeichnis: %s"
2321
 
2322
  #: inc/class-job.php:1624
2323
- #: inc/class-job.php:1636
2324
  msgid "Backup archive created."
2325
  msgstr "Backup-Archiv wurde erstellt."
2326
 
2327
  #: inc/class-job.php:1638
2328
- #: inc/class-job.php:1650
2329
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2330
  msgstr "Das Backup-Archiv wird zu groß für Operationen mit dieser PHP Version sein. Sie sollten die Sicherung in mehrere Backup-Aufträge mit weniger Dateien je Auftrag aufteilen."
2331
 
2332
  #: inc/class-job.php:1641
2333
- #: inc/class-job.php:1653
2334
  msgid "Archive size is %s."
2335
  msgstr "Archivgröße ist %s."
2336
 
2337
  #: inc/class-job.php:1644
2338
- #: inc/class-job.php:1656
2339
  msgid "%1$d Files with %2$s in Archive."
2340
  msgstr "%1$d Dateien mit %2$s in Archiven."
2341
 
2342
  #: inc/class-job.php:1677
2343
- #: inc/class-job.php:1689
2344
  msgid "No encryption key was provided. Aborting encryption."
2345
  msgstr "Es wurde kein Verschlüsselungsschlüssel eingegeben. Die Verschlüsselung wird abgebrochen."
2346
 
2347
  #: inc/class-job.php:1684
2348
- #: inc/class-job.php:1696
2349
  msgid "%d. Trying to encrypt archive &hellip;"
2350
  msgstr "%d. Versuche Archiv zu verschlüsseln &hellip;"
2351
 
2352
  #: inc/class-job.php:1694
2353
- #: inc/class-job.php:1706
2354
  msgid "Cannot open the archive for reading. Aborting encryption."
2355
  msgstr "Das Archiv kann nicht zum Lesen geöffnet werden. Verschlüsselung wird abgebrochen."
2356
 
2357
  #: inc/class-job.php:1700
2358
- #: inc/class-job.php:1712
2359
  msgid "Cannot write the encrypted archive. Aborting encryption."
2360
  msgstr "Das verschlüsselte Archiv kann nicht erstellt werden. Verschlüsselung wird abgebrochen."
2361
 
2362
  #: inc/class-job.php:1757
2363
- #: inc/class-job.php:1769
2364
  msgid "Encrypted %s of data."
2365
  msgstr "Verschlüsselt %s der Daten."
2366
 
2367
  #: inc/class-job.php:1761
2368
- #: inc/class-job.php:1773
2369
  msgid "Unable to delete unencrypted archive."
2370
  msgstr "Das verschlüsselte Archiv kann nicht gelöscht werden."
2371
 
2372
  #: inc/class-job.php:1765
2373
- #: inc/class-job.php:1777
2374
  msgid "Unable to rename encrypted archive."
2375
  msgstr "Verschlüsseltes Archiv kann nicht umbenannt werden."
2376
 
2377
  #: inc/class-job.php:1770
2378
- #: inc/class-job.php:1782
2379
  msgid "Archive has been successfully encrypted."
2380
  msgstr "Archiv wurde erfolgreich verschlüsselt."
2381
 
2382
  #: inc/class-job.php:1819
2383
- #: inc/class-job.php:1831
2384
  msgctxt "Folder name"
2385
  msgid "Folder %s does not exist"
2386
  msgstr "Verzeichnis %s existiert nicht"
2387
 
2388
  #: inc/class-job.php:1825
2389
- #: inc/class-job.php:1837
2390
  msgctxt "Folder name"
2391
  msgid "Folder %s is not readable"
2392
  msgstr "Ordner \"%s\" ist nicht lesbar"
2393
 
2394
  #: inc/class-job.php:1848
2395
- #: inc/class-job.php:1860
2396
  msgid "Link \"%s\" not following."
2397
  msgstr "Link \"%s\" folgt nicht."
2398
 
2399
  #: inc/class-job.php:1850
2400
- #: inc/class-job.php:1862
2401
  msgid "File \"%s\" is not readable!"
2402
  msgstr "Datei \"%s\" ist nicht lesbar!"
2403
 
2404
  #: inc/class-job.php:1854
2405
- #: inc/class-job.php:1866
2406
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2407
  msgstr "Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß sein und wird nicht zur Warteschlange hinzugefügt."
2408
 
2409
  #: inc/class-job.php:1937
2410
- #: inc/class-job.php:1949
2411
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2412
  msgstr "%d. Versuche eine Manifest-Datei zu generieren&#160;&hellip;"
2413
 
2414
  #: inc/class-job.php:1993
2415
- #: inc/class-job.php:2005
2416
  msgid "You may have noticed the manifest.json file in this archive."
2417
  msgstr "Wahrscheinlich werden Sie die manifest.json-Datei in diesem Archiv bemerkt haben."
2418
 
2419
  #: inc/class-job.php:1994
2420
- #: inc/class-job.php:2006
2421
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2422
  msgstr "manifest.json könnte für das spätere Wiederherstellen des Backups aus diesem Archiv benötigt werden."
2423
 
2424
  #: inc/class-job.php:1995
2425
- #: inc/class-job.php:2007
2426
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2427
  msgstr "Bitte lassen Sie die manifest.json unberührt an ihrem Platz. Sie können sie ansonsten einfach ignorieren."
2428
 
2429
  #: inc/class-job.php:2005
2430
- #: inc/class-job.php:2017
2431
  msgid "Added manifest.json file with %1$s to backup file list."
2432
  msgstr "Die manifest.json Datei mit %1$s zur Backup-Datei-Liste hinzugefügt."
2433
 
2434
  #: inc/class-job.php:2044
2435
- #: inc/class-job.php:2056
2436
  msgid "Wrong BackWPup JobID"
2437
  msgstr "Falsche BackWPup JobID"
2438
 
2439
  #: inc/class-job.php:2057
2440
- #: inc/class-job.php:2069
2441
  msgid "A BackWPup job is already running"
2442
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
2443
 
2444
  #: inc/class-job.php:2439
2445
- #: inc/class-job.php:2451
2446
  msgid "exec command is not active."
2447
  msgstr "exec command ist nicht aktiv."
2448
 
2449
  #: inc/class-job.php:2444
2450
- #: inc/class-job.php:2456
2451
  msgid "mysqldump binary not found."
2452
  msgstr "mysqldump binary wurde nicht gefunden."
2453
 
2454
  #: inc/class-job.php:2470
2455
- #: inc/class-job.php:2482
2456
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2457
  msgid "Hangup detected on controlling terminal or death of controlling process"
2458
  msgstr "Hangup auf dem Controlling-Terminal entdeckt oder Kontrollprozess abgestürzt"
2459
 
2460
  #: inc/class-job.php:2474
2461
- #: inc/class-job.php:2486
2462
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2463
  msgid "Interrupt from keyboard"
2464
  msgstr "Unterbrechung durch Keyboard"
2465
 
2466
  #: inc/class-job.php:2478
2467
- #: inc/class-job.php:2490
2468
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2469
  msgid "Quit from keyboard"
2470
  msgstr "Beendigung durch Keyboard"
2471
 
2472
  #: inc/class-job.php:2482
2473
- #: inc/class-job.php:2494
2474
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2475
  msgid "Illegal Instruction"
2476
  msgstr "Unberechtigte Anweisung"
2477
 
2478
  #: inc/class-job.php:2486
2479
- #: inc/class-job.php:2498
2480
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2481
  msgid "Abort signal from abort(3)"
2482
  msgstr "Abbruchsignal von Abbruch(3)"
2483
 
2484
  #: inc/class-job.php:2490
2485
- #: inc/class-job.php:2502
2486
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2487
  msgid "Bus error (bad memory access)"
2488
  msgstr "Bus-Error (schlechter Speicherzugriff)"
2489
 
2490
  #: inc/class-job.php:2494
2491
- #: inc/class-job.php:2506
2492
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2493
  msgid "Floating point exception"
2494
  msgstr "Floating-Point-Exception"
2495
 
2496
  #: inc/class-job.php:2498
2497
- #: inc/class-job.php:2510
2498
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2499
  msgid "Invalid memory reference"
2500
  msgstr "Ungültige Speicherreferenz"
2501
 
2502
  #: inc/class-job.php:2502
2503
- #: inc/class-job.php:2514
2504
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2505
  msgid "Termination signal"
2506
  msgstr "Beendigungssignal"
2507
 
2508
  #: inc/class-job.php:2506
2509
- #: inc/class-job.php:2518
2510
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2511
  msgid "Stack fault on coprocessor"
2512
  msgstr "Stack Fault auf Ko-Prozessor"
2513
 
2514
  #: inc/class-job.php:2510
2515
- #: inc/class-job.php:2522
2516
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2517
  msgid "User-defined signal 1"
2518
  msgstr "Nutzerdefiniertes Signal 1"
2519
 
2520
  #: inc/class-job.php:2514
2521
- #: inc/class-job.php:2526
2522
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2523
  msgid "User-defined signal 2"
2524
  msgstr "Nutzerdefiniertes Signal 2"
2525
 
2526
  #: inc/class-job.php:2518
2527
- #: inc/class-job.php:2530
2528
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2529
  msgid "Urgent condition on socket"
2530
  msgstr "Urgent Condition auf Socket"
2531
 
2532
  #: inc/class-job.php:2522
2533
- #: inc/class-job.php:2534
2534
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2535
  msgid "CPU time limit exceeded"
2536
  msgstr "CPU Zeitbegrenzung überschritten"
2537
 
2538
  #: inc/class-job.php:2526
2539
- #: inc/class-job.php:2538
2540
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2541
  msgid "File size limit exceeded"
2542
  msgstr "Dateigrößenbeschränkung überschritten"
2543
 
2544
  #: inc/class-job.php:2530
2545
- #: inc/class-job.php:2542
2546
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2547
  msgid "Power failure"
2548
  msgstr "Power Ausfall"
2549
 
2550
  #: inc/class-job.php:2534
2551
- #: inc/class-job.php:2546
2552
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2553
  msgid "Bad argument to routine"
2554
  msgstr "Bad Argument bei Routine"
2555
 
2556
  #: inc/class-job.php:2541
2557
- #: inc/class-job.php:2553
2558
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2559
  msgstr "Signal \"%1$s\" (%2$s) wurde zum Script gesandt!"
2560
 
2561
  #: inc/class-job.php:2575
2562
  #: inc/class-job.php:2588
2563
- #: inc/class-job.php:2587
2564
- #: inc/class-job.php:2600
2565
  msgid "System: %s"
2566
  msgstr "System: %s"
2567
 
2568
  #: inc/class-job.php:2603
2569
- #: inc/class-job.php:2615
2570
  msgid "Exception caught in %1$s: %2$s"
2571
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
2572
 
@@ -2746,6 +2814,7 @@ msgstr "XML-Export"
2746
 
2747
  #: inc/class-jobtype-wpexp.php:14
2748
  #: inc/class-page-about.php:474
 
2749
  msgid "WordPress XML export"
2750
  msgstr "WordPress-XML-Export"
2751
 
@@ -2897,231 +2966,284 @@ msgid "New Job"
2897
  msgstr "Bitte geben Sie einen Namen ein"
2898
 
2899
  #: inc/class-page-about.php:371
 
2900
  msgid "Welcome to BackWPup Pro"
2901
  msgstr "Willkommen bei BackWPup Pro"
2902
 
2903
  #: inc/class-page-about.php:372
2904
  #: inc/class-page-backwpup.php:75
 
2905
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2906
  msgstr "Die Assistenten in BackWPup machen das Planen und Terminieren Ihrer Sicherungen zu einem Spaziergang."
2907
 
2908
- #: inc/class-page-about.php:373
2909
- #: inc/class-page-about.php:386
2910
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2911
- msgstr "Benutzen Sie Ihre Backup-Archive, um Ihre gesamte WordPress-Installation zu sichern, einschließlich <code>/wp-content/</code>. Laden Sie sie zu einem externen Dienst hoch, wenn Sie Ihre Backups nicht auf demselben Server speichern möchten. Mit einem einzigen Backup-Archiv können Sie Ihre Installation wiederherstellen. Benutzen Sie ein serverseitiges Tool wie phpMyAdmin, um Ihre Datenbanksicherung wiederherzustellen."
2912
-
2913
  #: inc/class-page-about.php:374
 
2914
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2915
  msgstr "<a href=\"%1$s\">Bereit, einen Backup-Auftrag anzulegen</a>? Benutzen Sie die <a href=\"%2$s\">Assistenten</a>, oder planen Sie ihr Backup im Expertenmodus."
2916
 
2917
  #: inc/class-page-about.php:384
 
2918
  msgid "Welcome to BackWPup"
2919
  msgstr "Willkommen bei BackWPup"
2920
 
2921
  #: inc/class-page-about.php:387
 
2922
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2923
  msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutzen Sie einen der Assistenten, um Ihre Sicherung zu planen."
2924
 
2925
  #: inc/class-page-about.php:400
 
2926
  msgid "Save your database"
2927
  msgstr "Sichern Sie Ihre Datenbank"
2928
 
2929
  #: inc/class-page-about.php:403
 
2930
  msgid "Save your database regularly"
2931
  msgstr "Sichern Sie Ihre Datenbank regelmäßig"
2932
 
2933
  #: inc/class-page-about.php:404
 
2934
  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."
2935
  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."
2936
 
2937
  #: inc/class-page-about.php:409
2938
  #: inc/class-page-about.php:413
 
 
2939
  msgid "WordPress XML Export"
2940
  msgstr "WordPress-XML-Export"
2941
 
2942
  #: inc/class-page-about.php:410
 
2943
  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."
2944
  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."
2945
 
2946
  #: inc/class-page-about.php:418
 
2947
  msgid "Save all data from the webserver"
2948
  msgstr "Sichern Sie alle Daten vom Webserver"
2949
 
2950
  #: inc/class-page-about.php:421
 
2951
  msgid "Save all files"
2952
  msgstr "Sichern Sie alle Dateien"
2953
 
2954
  #: inc/class-page-about.php:422
 
2955
  msgid "You can backup 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."
2956
  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."
2957
 
2958
  #: inc/class-page-about.php:427
2959
  #: inc/class-page-about.php:431
 
 
2960
  msgid "Security!"
2961
  msgstr "Sicherheit!"
2962
 
2963
  #: inc/class-page-about.php:428
 
2964
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2965
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
2966
 
2967
  #: inc/class-page-about.php:436
2968
  #: inc/class-page-about.php:439
 
 
2969
  msgid "Cloud Support"
2970
  msgstr "Cloud-Support"
2971
 
2972
  #: inc/class-page-about.php:440
 
2973
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2974
  msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
2975
 
2976
  #: inc/class-page-about.php:446
 
2977
  msgid "Features / differences between Free and Pro"
2978
  msgstr "Features / Unterschiede zwischen Free und Pro"
2979
 
2980
  #: inc/class-page-about.php:449
 
2981
  msgid "Features"
2982
  msgstr "Features"
2983
 
2984
  #: inc/class-page-about.php:450
 
2985
  msgid "FREE"
2986
  msgstr "FREE"
2987
 
2988
  #: inc/class-page-about.php:451
 
2989
  msgid "PRO"
2990
  msgstr "PRO"
2991
 
2992
  #: inc/class-page-about.php:454
 
2993
  msgid "Complete database backup"
2994
  msgstr "Vollständige Datenbanksicherung"
2995
 
2996
  #: inc/class-page-about.php:459
 
2997
  msgid "Complete file backup"
2998
  msgstr "Vollständige Dateisicherung"
2999
 
3000
  #: inc/class-page-about.php:464
 
3001
  msgid "Database check"
3002
  msgstr "Datenbanküberprüfung"
3003
 
3004
  #: inc/class-page-about.php:469
 
3005
  msgid "Data compression"
3006
  msgstr "Datenbankoptimierung"
3007
 
3008
  #: inc/class-page-about.php:479
 
3009
  msgid "List of installed plugins"
3010
  msgstr "Liste installierter Plugins"
3011
 
3012
  #: inc/class-page-about.php:484
 
3013
  msgid "Backup archives management"
3014
  msgstr "Verwaltung der Backup-Archive"
3015
 
3016
  #: inc/class-page-about.php:489
 
3017
  msgid "Log file management"
3018
  msgstr "Verwaltung der Log-Dateien"
3019
 
3020
  #: inc/class-page-about.php:494
 
3021
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3022
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend oder WP-CLI"
3023
 
3024
  #: inc/class-page-about.php:499
 
3025
  msgid "Log report via email"
3026
  msgstr "Log-Report via E-Mail"
3027
 
3028
  #: inc/class-page-about.php:504
 
3029
  msgid "Backup to Microsoft Azure"
3030
  msgstr "Backup zu Microsoft Azure"
3031
 
3032
  #: inc/class-page-about.php:509
 
3033
  msgid "Backup as email"
3034
  msgstr "Backup per E-Mail"
3035
 
3036
  #: inc/class-page-about.php:514
 
3037
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3038
  msgstr "Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, usw.)"
3039
 
3040
  #: inc/class-page-about.php:529
 
3041
  msgid "Backup to FTP server"
3042
  msgstr "Backup auf FTP-Server"
3043
 
3044
  #: inc/class-page-about.php:534
 
3045
  msgid "Backup to your web space"
3046
  msgstr "Backup auf eigenem Webspace"
3047
 
3048
  #: inc/class-page-about.php:554
 
3049
  msgid "Custom API keys for DropBox and SugarSync"
3050
  msgstr "Eigene API-Keys für Dropbox und SugarSync hinterlegen"
3051
 
3052
  #: inc/class-page-about.php:559
 
3053
  msgid "XML database backup as PHPMyAdmin schema"
3054
  msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema"
3055
 
3056
  #: inc/class-page-about.php:564
 
3057
  msgid "Database backup as mysqldump per command line"
3058
  msgstr "Datenbanksicherung als MySQL-Dump über Kommandozeile"
3059
 
3060
  #: inc/class-page-about.php:569
 
3061
  msgid "Database backup for additional MySQL databases"
3062
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
3063
 
3064
  #: inc/class-page-about.php:574
 
3065
  msgid "Import and export job settings as XML"
3066
  msgstr "Auftragseinstellungen als XML ex- und importieren"
3067
 
3068
  #: inc/class-page-about.php:579
 
3069
  msgid "Wizard for system tests"
3070
  msgstr "Assistent zur Ausführung eines Systemtests"
3071
 
3072
  #: inc/class-page-about.php:584
 
3073
  msgid "Wizard for scheduled backup jobs"
3074
  msgstr "Assistent zur Einrichtung von Sicherungsaufträgen"
3075
 
3076
  #: inc/class-page-about.php:589
 
3077
  msgid "Wizard to import settings and backup jobs"
3078
  msgstr "Assistent zum Importieren von Einstellungen und Aufträgen"
3079
 
3080
  #: inc/class-page-about.php:594
 
3081
  msgid "Differential backup of changed directories to Dropbox"
3082
  msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox"
3083
 
3084
  #: inc/class-page-about.php:599
 
3085
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3086
  msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
3087
 
3088
  #: inc/class-page-about.php:604
 
3089
  msgid "Differential backup of changed directories to S3"
3090
  msgstr "Sicherung geänderter Verzeichnisse nach S3"
3091
 
3092
  #: inc/class-page-about.php:609
 
3093
  msgid "Differential backup of changed directories to MS Azure"
3094
  msgstr "Sicherung geänderter Verzeichnisse nach MS Azure"
3095
 
3096
  #: inc/class-page-about.php:614
 
3097
  msgid "Restore from Folder"
3098
  msgstr "Wiederherstellung aus Ordner"
3099
 
3100
  #: inc/class-page-about.php:619
 
3101
  msgid "Restore from Google Drive"
3102
  msgstr "Wiederherstellung von Google Drive"
3103
 
3104
  #: inc/class-page-about.php:624
 
3105
  msgid "Restore from Amazon S3"
3106
  msgstr "Wiederherstellung von Amazon S3"
3107
 
3108
  #: inc/class-page-about.php:629
 
3109
  msgid "Restore from Dropbox"
3110
  msgstr "Wiederherstellung aus Dropbox"
3111
 
3112
  #: inc/class-page-about.php:634
 
3113
  msgid "Restore from FTP"
3114
  msgstr "Wiederherstellung aus FTP"
3115
 
3116
  #: inc/class-page-about.php:639
 
3117
  msgid "<strong>Premium support</strong>"
3118
  msgstr "<strong>Premium-Support</strong>"
3119
 
3120
  #: inc/class-page-about.php:644
 
3121
  msgid "<strong>Automatic updates</strong>"
3122
  msgstr "<strong>Automatische Updates</strong>"
3123
 
3124
  #: inc/class-page-about.php:651
 
3125
  msgid "GET PRO"
3126
  msgstr "PRO KAUFEN"
3127
 
@@ -3288,11 +3410,6 @@ msgctxt "Dashboard heading"
3288
  msgid "Restoring backups"
3289
  msgstr "Backups wiederherstellen"
3290
 
3291
- #: inc/class-page-backwpup.php:77
3292
- #: inc/class-page-backwpup.php:86
3293
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3294
- msgstr "Mit einem einzigen Backup-Archiv können Sie Ihre Installation wiederherstellen. Benutzen Sie ein serverseitiges Tool wie phpMyAdmin, oder ein Plugin wie <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a>, um Ihre Datenbanksicherung wiederherzustellen."
3295
-
3296
  #: inc/class-page-backwpup.php:78
3297
  #: inc/class-page-backwpup.php:87
3298
  msgctxt "Dashboard heading"
@@ -4879,33 +4996,65 @@ msgstr "Wiederherstellung der Verzeichnisse erfolgreich."
4879
 
4880
  #: inc/class-destination-folder-downloader.php:64
4881
  msgid "Could not read data from source file."
4882
- msgstr ""
4883
 
4884
  #: inc/class-destination-folder-downloader.php:69
4885
  msgid "Could not write data into target file."
4886
- msgstr ""
4887
 
4888
  #. translators: $1 is the path of the local file where the backup will be stored
4889
  #: inc/class-destination-folder-downloader.php:141
4890
  msgid "%s is a directory not a file."
4891
- msgstr ""
 
 
 
 
4892
 
4893
  #: inc/class-destination-s3.php:102
4894
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
4895
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4896
 
4897
  #: inc/class-page-backups.php:575
4898
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
4899
- msgstr ""
4900
-
4901
- #: inc/class-page-settings.php:981
4902
- msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4903
- msgstr ""
4904
 
4905
- #: inc/class-destination-s3-downloader.php:76
4906
- msgid "Could not write data to file. Empty source file."
4907
- msgstr ""
 
4908
 
4909
  #: inc/class-page-editjob.php:452
4910
  msgid "Preview: "
4911
- msgstr ""
 
 
 
 
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
 
34
  #: backwpup.php:286
35
+ #: inc/class-page-backups.php:243
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Ordner"
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
80
+ #: inc/class-page-about.php:508
81
  #: vendor_dist/backwpup.php:335
82
  msgid "Backup to Dropbox"
83
  msgstr "Backup in die Dropbox"
84
 
85
  #: backwpup.php:339
86
  #: inc/class-destination-s3.php:41
 
87
  #: backwpup.php:350
88
+ #: inc/class-destination-s3.php:42
89
  #: vendor_dist/backwpup.php:350
90
  msgid "S3 Service"
91
  msgstr "S3 Service"
117
  #: backwpup.php:377
118
  #: inc/class-page-about.php:524
119
  #: backwpup.php:388
120
+ #: inc/class-page-about.php:513
121
  #: vendor_dist/backwpup.php:388
122
  msgid "Backup to Rackspace Cloud Files"
123
  msgstr "Backup in die Rackspace Cloud"
131
  #: backwpup.php:397
132
  #: inc/class-page-about.php:539
133
  #: backwpup.php:408
134
+ #: inc/class-page-about.php:528
135
  #: vendor_dist/backwpup.php:408
136
  msgid "Backup to SugarSync"
137
  msgstr "Backup zu SugarSync"
208
  #: inc/class-destination-rsc.php:118
209
  #: inc/class-destination-s3.php:214
210
  #: inc/class-destination-sugarsync.php:104
 
211
  #: inc/class-destination-s3.php:245
212
+ #: inc/Pro/class-destination-gdrive.php:462
213
  msgid "Do not delete files while syncing to destination!"
214
  msgstr "Keine Dateien im Sync-Zielverzeichnis löschen!"
215
 
266
  #: inc/class-destination-folder-downloader.php:55
267
  #: inc/class-destination-ftp-downloader.php:89
268
  #: inc/class-destination-s3-downloader.php:63
 
 
 
269
  #: inc/class-destination-dropbox-downloader.php:104
270
+ #: inc/class-destination-folder-downloader.php:137
271
+ #: inc/class-destination-ftp-downloader.php:126
272
  #: inc/class-destination-s3-downloader.php:112
273
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
274
  msgid "File could not be opened for writing."
275
  msgstr "Kann die Zieldatei nicht zum Schreiben öffnen."
276
 
279
  #: inc/class-destination-folder-downloader.php:79
280
  #: inc/class-destination-ftp-downloader.php:100
281
  #: inc/class-destination-s3-downloader.php:69
 
 
282
  #: inc/class-destination-dropbox-downloader.php:72
283
+ #: inc/class-destination-ftp-downloader.php:72
284
  #: inc/class-destination-s3-downloader.php:83
285
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
286
  msgid "Could not write data to file."
287
  msgstr "Daten konnten nicht in den Ordner geschrieben werden."
288
 
337
  #: inc/class-destination-rsc.php:292
338
  #: inc/class-destination-s3.php:825
339
  #: inc/class-destination-s3.php:940
 
340
  #: inc/class-destination-s3.php:843
341
  #: inc/class-destination-s3.php:958
342
+ #: inc/Pro/class-destination-gdrive.php:905
343
  msgid "Can not open source file for transfer."
344
  msgstr "Kann die Quelldatei für den Transfer nicht öffnen."
345
 
819
 
820
  #: inc/Pro/class-pro.php:131
821
  #: inc/class-page-about.php:549
822
+ #: inc/class-page-about.php:558
823
  msgid "Backup to Amazon Glacier"
824
  msgstr "Backup zu Amazon Glacier"
825
 
826
  #: inc/Pro/class-pro.php:152
827
  #: inc/class-page-about.php:544
828
+ #: inc/class-page-about.php:553
829
  msgid "Backup to Google Drive"
830
  msgstr "Backup zu Google Drive"
831
 
855
  #: inc/class-page-backwpup.php:260
856
  #: inc/class-page-backwpup.php:262
857
  #: inc/class-page-settings.php:1134
858
+ #: inc/class-job.php:459
859
+ #: inc/class-page-about.php:365
860
+ #: inc/class-page-about.php:375
861
+ #: inc/class-page-about.php:660
862
+ #: inc/class-page-backwpup.php:254
863
  #: inc/class-page-settings.php:1123
864
  msgid "http://backwpup.com"
865
  msgstr "https://backwpup.de"
2072
  msgstr "BackWPup Auftragshelfer"
2073
 
2074
  #: inc/class-job.php:269
2075
+ #: inc/class-job.php:297
2076
  msgid "Starting job"
2077
  msgstr "Auftrag starten"
2078
 
2079
  #: inc/class-job.php:284
2080
+ #: inc/class-job.php:314
2081
  msgid "Job Start"
2082
  msgstr "Auftragsstart"
2083
 
2084
  #: inc/class-job.php:304
2085
+ #: inc/class-job.php:334
2086
  msgid "Creates manifest file"
2087
  msgstr "Erstellt Manifest-Datei"
2088
 
2089
  #: inc/class-job.php:326
2090
+ #: inc/class-job.php:356
2091
  msgid "Creates archive"
2092
  msgstr "Erstellt Archiv"
2093
 
2094
  #: inc/class-job.php:332
2095
+ #: inc/class-job.php:362
2096
  msgid "Encrypts the archive"
2097
  msgstr "Verschlüsselt das Archiv"
2098
 
2099
  #: inc/class-job.php:373
2100
+ #: inc/class-job.php:403
2101
  msgid "End of Job"
2102
  msgstr "Auftragsende"
2103
 
2104
  #: inc/class-job.php:395
2105
+ #: inc/class-job.php:428
2106
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2107
  msgstr "BackWPup-Protokoll für %1$s von %2$s am %3$s"
2108
 
2109
  #: inc/class-job.php:412
2110
+ #: inc/class-job.php:456
2111
  msgctxt "Plugin name; Plugin Version; plugin url"
2112
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2113
  msgstr "[INFO] %1$s %2$s; Ein Projekt der Inpsyde GmbH"
2114
 
2115
  #: inc/class-job.php:413
2116
+ #: inc/class-job.php:462
2117
  msgctxt "WordPress Version; Blog url"
2118
  msgid "[INFO] WordPress %1$s on %2$s"
2119
  msgstr "[INFO] WordPress %1$s auf %2$s"
2120
 
2121
  #: inc/class-job.php:414
2122
+ #: inc/class-job.php:465
2123
  msgid "Normal"
2124
  msgstr "Normal"
2125
 
2126
  #: inc/class-job.php:417
2127
+ #: inc/class-job.php:468
2128
  msgid "Debug"
2129
  msgstr "Debug"
2130
 
2131
  #: inc/class-job.php:420
2132
+ #: inc/class-job.php:471
2133
  msgid "(translated)"
2134
  msgstr "(Übersetzt)"
2135
 
2136
  #: inc/class-job.php:422
2137
+ #: inc/class-job.php:474
2138
  msgid "[INFO] Log Level: %1$s %2$s"
2139
  msgstr "[INFO] Log Level: %1$s %2$s"
2140
 
2141
  #: inc/class-job.php:427
2142
+ #: inc/class-job.php:480
2143
  msgid "[INFO] BackWPup job: %1$s"
2144
  msgstr "[INFO] BackWPup Auftrag: %1$s"
2145
 
2146
  #: inc/class-job.php:430
2147
+ #: inc/class-job.php:484
2148
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2149
  msgstr "[INFO] Läuft mit Benutzer: %1$s (%2$d) "
2150
 
2152
  #: inc/class-page-backwpup.php:323
2153
  #: inc/class-page-jobs.php:282
2154
  #: inc/class-page-jobs.php:291
2155
+ #: inc/class-job.php:500
2156
  msgid "Not scheduled!"
2157
  msgstr "Nicht geplant!"
2158
 
2159
  #: inc/class-job.php:448
2160
  #: inc/class-job.php:458
2161
+ #: inc/class-job.php:507
2162
+ #: inc/class-job.php:519
2163
  msgid "[INFO] Cron: %s; Next: %s "
2164
  msgstr "[INFO] Cron: %s; Nächster: %s "
2165
 
2166
  #: inc/class-job.php:451
2167
+ #: inc/class-job.php:511
2168
  msgid "[INFO] BackWPup job start with link is active"
2169
  msgstr "[INFO] BackWPup Auftragsstart mit Link ist gestartet"
2170
 
2171
  #: inc/class-job.php:453
2172
+ #: inc/class-job.php:513
2173
  msgid "[INFO] BackWPup job start with EasyCron.com"
2174
  msgstr "[INFO] BackWPup Auftragsstart durch EasyCron.com"
2175
 
2176
  #: inc/class-job.php:461
2177
+ #: inc/class-job.php:523
2178
  msgid "[INFO] BackWPup no automatic job start configured"
2179
  msgstr "[INFO] BackWPup kein automatischer Auftragsstart konfiguriert"
2180
 
2181
  #: inc/class-job.php:465
2182
+ #: inc/class-job.php:527
2183
  msgid "[INFO] BackWPup job started from wp-cron"
2184
  msgstr "[INFO] BackWPup-Auftrag wurde per wp-cron gestartet"
2185
 
2186
  #: inc/class-job.php:467
2187
+ #: inc/class-job.php:529
2188
  msgid "[INFO] BackWPup job started manually"
2189
  msgstr "[INFO] BackWPup-Auftrag wurde manuell gestartet"
2190
 
2191
  #: inc/class-job.php:469
2192
+ #: inc/class-job.php:531
2193
  msgid "[INFO] BackWPup job started from external url"
2194
  msgstr "[INFO] BackWPup Auftrag wurde von externer URL gestartet"
2195
 
2196
  #: inc/class-job.php:471
2197
+ #: inc/class-job.php:533
2198
  msgid "[INFO] BackWPup job started form commandline interface"
2199
  msgstr "[INFO] BackWPup-Auftrag per Kommandozeile gestartet"
2200
 
2201
  #: inc/class-job.php:480
2202
+ #: inc/class-job.php:544
2203
  msgid "[INFO] PHP ver.:"
2204
  msgstr "[INFO] PHP ver.:"
2205
 
2206
  #: inc/class-job.php:481
2207
+ #: inc/class-job.php:548
2208
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2209
  msgstr "[INFO] Maximum PHP-Script-Execution-Time ist %1$d Sekunden"
2210
 
2211
  #: inc/class-job.php:485
2212
+ #: inc/class-job.php:555
2213
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2214
  msgstr "[INFO] Skript-Restart-Zeit ist auf %1$d Sekunden konfiguriert"
2215
 
2216
  #: inc/class-job.php:488
2217
+ #: inc/class-job.php:561
2218
  msgid "[INFO] MySQL ver.: %s"
2219
  msgstr "[INFO] MySQL ver.: %s"
2220
 
2221
  #: inc/class-job.php:490
2222
+ #: inc/class-job.php:565
2223
  msgid "[INFO] Web Server: %s"
2224
  msgstr "[INFO] Webserver: %s"
2225
 
2226
  #: inc/class-job.php:494
2227
+ #: inc/class-job.php:571
2228
  msgid "[INFO] curl ver.: %1$s; %2$s"
2229
  msgstr "[INFO] curl ver.: %1$s; %2$s"
2230
 
2231
  #: inc/class-job.php:496
2232
+ #: inc/class-job.php:576
2233
  msgid "[INFO] Temp folder is: %s"
2234
  msgstr "[INFO] Temp-Ordner ist: %s"
2235
 
2236
  #: inc/class-job.php:503
2237
+ #: inc/class-job.php:584
2238
  msgid "[INFO] Logfile is: %s"
2239
  msgstr "[INFO] Logfile ist: %s"
2240
 
2241
  #: inc/class-job.php:510
2242
+ #: inc/class-job.php:591
2243
  msgid "[INFO] Backup file is: %s"
2244
  msgstr "[INFO] Backup-Datei ist: %s"
2245
 
2246
  #: inc/class-job.php:512
2247
+ #: inc/class-job.php:594
2248
  msgid "[INFO] Backup type is: %s"
2249
  msgstr "[INFO] Backup-Typ ist: %s"
2250
 
2251
  #: inc/class-job.php:520
2252
+ #: inc/class-job.php:603
2253
  msgid "Could not write log file"
2254
  msgstr "Kann nicht in die Log-Datei schreiben"
2255
 
2256
  #: inc/class-job.php:532
2257
+ #: inc/class-job.php:616
2258
  msgid "No destination correctly defined for backup! Please correct job settings."
2259
  msgstr "Es wurde kein korrektes Backupziel definiert! Bitte überprüfe die Auftragseinstellungen."
2260
 
2261
  #: inc/class-job.php:628
2262
+ #: inc/class-job.php:718
2263
  msgid "Cannot write progress to working file. Job will be aborted."
2264
  msgstr "Kann Fortschritt nicht in die Arbeitsdatei schreiben. Auftrag wird abgebrochen."
2265
 
2266
  #: inc/class-job.php:700
2267
  #: inc/class-page-jobs.php:786
2268
+ #: inc/class-job.php:793
2269
  msgid "WARNING:"
2270
  msgstr "WARNUNG:"
2271
 
2272
  #: inc/class-job.php:709
2273
  #: inc/class-page-jobs.php:784
2274
+ #: inc/class-job.php:802
2275
  msgid "ERROR:"
2276
  msgstr "FEHLER:"
2277
 
2278
  #: inc/class-job.php:713
2279
+ #: inc/class-job.php:806
2280
  msgid "DEPRECATED:"
2281
  msgstr "ABGELEHNT:"
2282
 
2283
  #: inc/class-job.php:716
2284
+ #: inc/class-job.php:809
2285
  msgid "STRICT NOTICE:"
2286
  msgstr "EXAKTE NOTIZ:"
2287
 
2288
  #: inc/class-job.php:721
2289
+ #: inc/class-job.php:814
2290
  msgid "RECOVERABLE ERROR:"
2291
  msgstr "WIEDERHERSTELLUNGSFEHLER:"
2292
 
2293
  #: inc/class-job.php:972
2294
+ #: inc/class-job.php:1091
2295
  msgid "Aborted by user!"
2296
  msgstr "Durch Benutzer abgebrochen!"
2297
 
2298
  #: inc/class-job.php:1005
2299
+ #: inc/class-job.php:1129
2300
  msgid "One old log deleted"
2301
  msgid_plural "%d old logs deleted"
2302
  msgstr[0] "Eine alte Log-Datei gelöscht"
2304
 
2305
  #: inc/class-job.php:1012
2306
  #: inc/class-page-jobs.php:784
2307
+ #: inc/class-job.php:1141
2308
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2309
  msgstr "Auftrag mit Fehlern in %s Sekunden beendet. Für eine korrekte Ausführung müssen Sie die Fehler beheben."
2310
 
2311
  #: inc/class-job.php:1014
2312
+ #: inc/class-job.php:1150
2313
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2314
  msgstr "Auftrag mit Warnungen in %s Sekunden beendet. Bitte beheben Sie für eine korrekte Ausführung die Warnungen."
2315
 
2316
  #: inc/class-job.php:1016
2317
  #: inc/class-page-jobs.php:788
2318
+ #: inc/class-job.php:1158
2319
  msgid "Job done in %s seconds."
2320
  msgstr "Auftrag in %s Sekunden erledigt."
2321
 
2322
  #: inc/class-job.php:1060
2323
+ #: inc/class-job.php:1212
2324
  msgid "SUCCESSFUL"
2325
  msgstr "ERFOLGREICH"
2326
 
2327
  #: inc/class-job.php:1062
2328
+ #: inc/class-job.php:1214
2329
  msgid "WARNING"
2330
  msgstr "WARNUNG"
2331
 
2332
  #: inc/class-job.php:1065
2333
+ #: inc/class-job.php:1217
2334
  msgid "ERROR"
2335
  msgstr "FEHLER"
2336
 
2337
  #: inc/class-job.php:1068
2338
+ #: inc/class-job.php:1221
2339
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2340
  msgstr "[%3$s] BackWPup Log %1$s: %2$s"
2341
 
2342
  #: inc/class-job.php:1180
2343
+ #: inc/class-job.php:1341
2344
  msgid "Restart after %1$d seconds."
2345
  msgstr "Neustart nach %1$d Sekunden."
2346
 
2347
  #: inc/class-job.php:1182
2348
+ #: inc/class-job.php:1343
2349
  msgid "Restart after getting signal."
2350
  msgstr "Neustart nach Erhalt des Signals."
2351
 
2352
  #: inc/class-job.php:1357
2353
+ #: inc/class-job.php:1534
2354
  msgid "Job restarts due to inactivity for more than 5 minutes."
2355
  msgstr "Auftrag durch Inaktivität von mehr als 5 Minuten neu gestartet."
2356
 
2357
  #: inc/class-job.php:1455
2358
+ #: inc/class-job.php:1636
2359
  msgid "Step aborted: too many attempts!"
2360
  msgstr "Schritt abgebrochen: Zu viele Versuche!"
2361
 
2362
  #: inc/class-job.php:1528
2363
+ #: inc/class-job.php:1716
2364
  msgid "%d. Trying to create backup archive &hellip;"
2365
  msgstr "%d. Versuche, Backup-Archiv zu erstellen &hellip;"
2366
 
2367
  #: inc/class-job.php:1536
2368
+ #: inc/class-job.php:1729
2369
  msgctxt "Archive compression method"
2370
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2371
  msgstr "Komprimiere Dateien als %s. Bitte haben Sie einen Moment Geduld."
2372
 
2373
  #: inc/class-job.php:1543
2374
+ #: inc/class-job.php:1742
2375
  msgid "Adding Extra files to Archive"
2376
  msgstr "Weitere Dateien zum Archiv hinzufügen"
2377
 
2378
  #: inc/class-job.php:1554
2379
  #: inc/class-job.php:1614
2380
+ #: inc/class-job.php:1754
2381
+ #: inc/class-job.php:1823
2382
  msgid "Cannot create backup archive correctly. Aborting creation."
2383
  msgstr "Backup-Archiv kann nicht korrekt angelegt werden. Anlegeprozess abgebrochen."
2384
 
2385
  #: inc/class-job.php:1570
2386
+ #: inc/class-job.php:1772
2387
  msgid "Archiving Folder: %s"
2388
  msgstr "Archiviere Verzeichnis: %s"
2389
 
2390
  #: inc/class-job.php:1624
2391
+ #: inc/class-job.php:1834
2392
  msgid "Backup archive created."
2393
  msgstr "Backup-Archiv wurde erstellt."
2394
 
2395
  #: inc/class-job.php:1638
2396
+ #: inc/class-job.php:1849
2397
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2398
  msgstr "Das Backup-Archiv wird zu groß für Operationen mit dieser PHP Version sein. Sie sollten die Sicherung in mehrere Backup-Aufträge mit weniger Dateien je Auftrag aufteilen."
2399
 
2400
  #: inc/class-job.php:1641
2401
+ #: inc/class-job.php:1857
2402
  msgid "Archive size is %s."
2403
  msgstr "Archivgröße ist %s."
2404
 
2405
  #: inc/class-job.php:1644
2406
+ #: inc/class-job.php:1864
2407
  msgid "%1$d Files with %2$s in Archive."
2408
  msgstr "%1$d Dateien mit %2$s in Archiven."
2409
 
2410
  #: inc/class-job.php:1677
2411
+ #: inc/class-job.php:1902
2412
  msgid "No encryption key was provided. Aborting encryption."
2413
  msgstr "Es wurde kein Verschlüsselungsschlüssel eingegeben. Die Verschlüsselung wird abgebrochen."
2414
 
2415
  #: inc/class-job.php:1684
2416
+ #: inc/class-job.php:1912
2417
  msgid "%d. Trying to encrypt archive &hellip;"
2418
  msgstr "%d. Versuche Archiv zu verschlüsseln &hellip;"
2419
 
2420
  #: inc/class-job.php:1694
2421
+ #: inc/class-job.php:1925
2422
  msgid "Cannot open the archive for reading. Aborting encryption."
2423
  msgstr "Das Archiv kann nicht zum Lesen geöffnet werden. Verschlüsselung wird abgebrochen."
2424
 
2425
  #: inc/class-job.php:1700
2426
+ #: inc/class-job.php:1932
2427
  msgid "Cannot write the encrypted archive. Aborting encryption."
2428
  msgstr "Das verschlüsselte Archiv kann nicht erstellt werden. Verschlüsselung wird abgebrochen."
2429
 
2430
  #: inc/class-job.php:1757
2431
+ #: inc/class-job.php:1991
2432
  msgid "Encrypted %s of data."
2433
  msgstr "Verschlüsselt %s der Daten."
2434
 
2435
  #: inc/class-job.php:1761
2436
+ #: inc/class-job.php:1996
2437
  msgid "Unable to delete unencrypted archive."
2438
  msgstr "Das verschlüsselte Archiv kann nicht gelöscht werden."
2439
 
2440
  #: inc/class-job.php:1765
2441
+ #: inc/class-job.php:2003
2442
  msgid "Unable to rename encrypted archive."
2443
  msgstr "Verschlüsseltes Archiv kann nicht umbenannt werden."
2444
 
2445
  #: inc/class-job.php:1770
2446
+ #: inc/class-job.php:2009
2447
  msgid "Archive has been successfully encrypted."
2448
  msgstr "Archiv wurde erfolgreich verschlüsselt."
2449
 
2450
  #: inc/class-job.php:1819
2451
+ #: inc/class-job.php:2059
2452
  msgctxt "Folder name"
2453
  msgid "Folder %s does not exist"
2454
  msgstr "Verzeichnis %s existiert nicht"
2455
 
2456
  #: inc/class-job.php:1825
2457
+ #: inc/class-job.php:2067
2458
  msgctxt "Folder name"
2459
  msgid "Folder %s is not readable"
2460
  msgstr "Ordner \"%s\" ist nicht lesbar"
2461
 
2462
  #: inc/class-job.php:1848
2463
+ #: inc/class-job.php:2096
2464
  msgid "Link \"%s\" not following."
2465
  msgstr "Link \"%s\" folgt nicht."
2466
 
2467
  #: inc/class-job.php:1850
2468
+ #: inc/class-job.php:2100
2469
  msgid "File \"%s\" is not readable!"
2470
  msgstr "Datei \"%s\" ist nicht lesbar!"
2471
 
2472
  #: inc/class-job.php:1854
2473
+ #: inc/class-job.php:2107
2474
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2475
  msgstr "Dateigröße von „%s“ kann nicht abgefragt werden. Die Datei könnte zu groß sein und wird nicht zur Warteschlange hinzugefügt."
2476
 
2477
  #: inc/class-job.php:1937
2478
+ #: inc/class-job.php:2197
2479
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2480
  msgstr "%d. Versuche eine Manifest-Datei zu generieren&#160;&hellip;"
2481
 
2482
  #: inc/class-job.php:1993
2483
+ #: inc/class-job.php:2264
2484
  msgid "You may have noticed the manifest.json file in this archive."
2485
  msgstr "Wahrscheinlich werden Sie die manifest.json-Datei in diesem Archiv bemerkt haben."
2486
 
2487
  #: inc/class-job.php:1994
2488
+ #: inc/class-job.php:2265
2489
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2490
  msgstr "manifest.json könnte für das spätere Wiederherstellen des Backups aus diesem Archiv benötigt werden."
2491
 
2492
  #: inc/class-job.php:1995
2493
+ #: inc/class-job.php:2268
2494
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2495
  msgstr "Bitte lassen Sie die manifest.json unberührt an ihrem Platz. Sie können sie ansonsten einfach ignorieren."
2496
 
2497
  #: inc/class-job.php:2005
2498
+ #: inc/class-job.php:2282
2499
  msgid "Added manifest.json file with %1$s to backup file list."
2500
  msgstr "Die manifest.json Datei mit %1$s zur Backup-Datei-Liste hinzugefügt."
2501
 
2502
  #: inc/class-job.php:2044
2503
+ #: inc/class-job.php:2324
2504
  msgid "Wrong BackWPup JobID"
2505
  msgstr "Falsche BackWPup JobID"
2506
 
2507
  #: inc/class-job.php:2057
2508
+ #: inc/class-job.php:2337
2509
  msgid "A BackWPup job is already running"
2510
  msgstr "Es läuft bereits ein BackWPup-Auftrag"
2511
 
2512
  #: inc/class-job.php:2439
2513
+ #: inc/class-job.php:2719
2514
  msgid "exec command is not active."
2515
  msgstr "exec command ist nicht aktiv."
2516
 
2517
  #: inc/class-job.php:2444
2518
+ #: inc/class-job.php:2725
2519
  msgid "mysqldump binary not found."
2520
  msgstr "mysqldump binary wurde nicht gefunden."
2521
 
2522
  #: inc/class-job.php:2470
2523
+ #: inc/class-job.php:2752
2524
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2525
  msgid "Hangup detected on controlling terminal or death of controlling process"
2526
  msgstr "Hangup auf dem Controlling-Terminal entdeckt oder Kontrollprozess abgestürzt"
2527
 
2528
  #: inc/class-job.php:2474
2529
+ #: inc/class-job.php:2759
2530
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2531
  msgid "Interrupt from keyboard"
2532
  msgstr "Unterbrechung durch Keyboard"
2533
 
2534
  #: inc/class-job.php:2478
2535
+ #: inc/class-job.php:2766
2536
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2537
  msgid "Quit from keyboard"
2538
  msgstr "Beendigung durch Keyboard"
2539
 
2540
  #: inc/class-job.php:2482
2541
+ #: inc/class-job.php:2773
2542
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2543
  msgid "Illegal Instruction"
2544
  msgstr "Unberechtigte Anweisung"
2545
 
2546
  #: inc/class-job.php:2486
2547
+ #: inc/class-job.php:2780
2548
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2549
  msgid "Abort signal from abort(3)"
2550
  msgstr "Abbruchsignal von Abbruch(3)"
2551
 
2552
  #: inc/class-job.php:2490
2553
+ #: inc/class-job.php:2787
2554
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2555
  msgid "Bus error (bad memory access)"
2556
  msgstr "Bus-Error (schlechter Speicherzugriff)"
2557
 
2558
  #: inc/class-job.php:2494
2559
+ #: inc/class-job.php:2794
2560
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2561
  msgid "Floating point exception"
2562
  msgstr "Floating-Point-Exception"
2563
 
2564
  #: inc/class-job.php:2498
2565
+ #: inc/class-job.php:2801
2566
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2567
  msgid "Invalid memory reference"
2568
  msgstr "Ungültige Speicherreferenz"
2569
 
2570
  #: inc/class-job.php:2502
2571
+ #: inc/class-job.php:2808
2572
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2573
  msgid "Termination signal"
2574
  msgstr "Beendigungssignal"
2575
 
2576
  #: inc/class-job.php:2506
2577
+ #: inc/class-job.php:2815
2578
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2579
  msgid "Stack fault on coprocessor"
2580
  msgstr "Stack Fault auf Ko-Prozessor"
2581
 
2582
  #: inc/class-job.php:2510
2583
+ #: inc/class-job.php:2822
2584
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2585
  msgid "User-defined signal 1"
2586
  msgstr "Nutzerdefiniertes Signal 1"
2587
 
2588
  #: inc/class-job.php:2514
2589
+ #: inc/class-job.php:2829
2590
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2591
  msgid "User-defined signal 2"
2592
  msgstr "Nutzerdefiniertes Signal 2"
2593
 
2594
  #: inc/class-job.php:2518
2595
+ #: inc/class-job.php:2836
2596
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2597
  msgid "Urgent condition on socket"
2598
  msgstr "Urgent Condition auf Socket"
2599
 
2600
  #: inc/class-job.php:2522
2601
+ #: inc/class-job.php:2843
2602
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2603
  msgid "CPU time limit exceeded"
2604
  msgstr "CPU Zeitbegrenzung überschritten"
2605
 
2606
  #: inc/class-job.php:2526
2607
+ #: inc/class-job.php:2850
2608
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2609
  msgid "File size limit exceeded"
2610
  msgstr "Dateigrößenbeschränkung überschritten"
2611
 
2612
  #: inc/class-job.php:2530
2613
+ #: inc/class-job.php:2857
2614
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2615
  msgid "Power failure"
2616
  msgstr "Power Ausfall"
2617
 
2618
  #: inc/class-job.php:2534
2619
+ #: inc/class-job.php:2864
2620
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2621
  msgid "Bad argument to routine"
2622
  msgstr "Bad Argument bei Routine"
2623
 
2624
  #: inc/class-job.php:2541
2625
+ #: inc/class-job.php:2876
2626
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2627
  msgstr "Signal \"%1$s\" (%2$s) wurde zum Script gesandt!"
2628
 
2629
  #: inc/class-job.php:2575
2630
  #: inc/class-job.php:2588
2631
+ #: inc/class-job.php:2912
2632
+ #: inc/class-job.php:2925
2633
  msgid "System: %s"
2634
  msgstr "System: %s"
2635
 
2636
  #: inc/class-job.php:2603
2637
+ #: inc/class-job.php:2942
2638
  msgid "Exception caught in %1$s: %2$s"
2639
  msgstr "Ausnahme eingefangen in %1$s: %2$s"
2640
 
2814
 
2815
  #: inc/class-jobtype-wpexp.php:14
2816
  #: inc/class-page-about.php:474
2817
+ #: inc/class-page-about.php:463
2818
  msgid "WordPress XML export"
2819
  msgstr "WordPress-XML-Export"
2820
 
2966
  msgstr "Bitte geben Sie einen Namen ein"
2967
 
2968
  #: inc/class-page-about.php:371
2969
+ #: inc/class-page-about.php:366
2970
  msgid "Welcome to BackWPup Pro"
2971
  msgstr "Willkommen bei BackWPup Pro"
2972
 
2973
  #: inc/class-page-about.php:372
2974
  #: inc/class-page-backwpup.php:75
2975
+ #: inc/class-page-about.php:367
2976
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2977
  msgstr "Die Assistenten in BackWPup machen das Planen und Terminieren Ihrer Sicherungen zu einem Spaziergang."
2978
 
 
 
 
 
 
2979
  #: inc/class-page-about.php:374
2980
+ #: inc/class-page-about.php:369
2981
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2982
  msgstr "<a href=\"%1$s\">Bereit, einen Backup-Auftrag anzulegen</a>? Benutzen Sie die <a href=\"%2$s\">Assistenten</a>, oder planen Sie ihr Backup im Expertenmodus."
2983
 
2984
  #: inc/class-page-about.php:384
2985
+ #: inc/class-page-about.php:376
2986
  msgid "Welcome to BackWPup"
2987
  msgstr "Willkommen bei BackWPup"
2988
 
2989
  #: inc/class-page-about.php:387
2990
+ #: inc/class-page-about.php:379
2991
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2992
  msgstr "Bereit, einen Backup-Auftrag anzulegen? Benutzen Sie einen der Assistenten, um Ihre Sicherung zu planen."
2993
 
2994
  #: inc/class-page-about.php:400
2995
+ #: inc/class-page-about.php:389
2996
  msgid "Save your database"
2997
  msgstr "Sichern Sie Ihre Datenbank"
2998
 
2999
  #: inc/class-page-about.php:403
3000
+ #: inc/class-page-about.php:392
3001
  msgid "Save your database regularly"
3002
  msgstr "Sichern Sie Ihre Datenbank regelmäßig"
3003
 
3004
  #: inc/class-page-about.php:404
3005
+ #: inc/class-page-about.php:393
3006
  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."
3007
  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."
3008
 
3009
  #: inc/class-page-about.php:409
3010
  #: inc/class-page-about.php:413
3011
+ #: inc/class-page-about.php:398
3012
+ #: inc/class-page-about.php:402
3013
  msgid "WordPress XML Export"
3014
  msgstr "WordPress-XML-Export"
3015
 
3016
  #: inc/class-page-about.php:410
3017
+ #: inc/class-page-about.php:399
3018
  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."
3019
  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."
3020
 
3021
  #: inc/class-page-about.php:418
3022
+ #: inc/class-page-about.php:407
3023
  msgid "Save all data from the webserver"
3024
  msgstr "Sichern Sie alle Daten vom Webserver"
3025
 
3026
  #: inc/class-page-about.php:421
3027
+ #: inc/class-page-about.php:410
3028
  msgid "Save all files"
3029
  msgstr "Sichern Sie alle Dateien"
3030
 
3031
  #: inc/class-page-about.php:422
3032
+ #: inc/class-page-about.php:411
3033
  msgid "You can backup 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."
3034
  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."
3035
 
3036
  #: inc/class-page-about.php:427
3037
  #: inc/class-page-about.php:431
3038
+ #: inc/class-page-about.php:416
3039
+ #: inc/class-page-about.php:420
3040
  msgid "Security!"
3041
  msgstr "Sicherheit!"
3042
 
3043
  #: inc/class-page-about.php:428
3044
+ #: inc/class-page-about.php:417
3045
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3046
  msgstr "In der Grundeinstellung ist alles verschlüsselt: Verbindungen zu externen Diensten, lokale Dateien und der Zugriff auf die Verzeichnisse."
3047
 
3048
  #: inc/class-page-about.php:436
3049
  #: inc/class-page-about.php:439
3050
+ #: inc/class-page-about.php:425
3051
+ #: inc/class-page-about.php:428
3052
  msgid "Cloud Support"
3053
  msgstr "Cloud-Support"
3054
 
3055
  #: inc/class-page-about.php:440
3056
+ #: inc/class-page-about.php:429
3057
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3058
  msgstr "BackWPup unterstützt mehrere Cloud-Dienste parallel. Damit wird sichergestellt, dass Sie redundante Backups anlegen können."
3059
 
3060
  #: inc/class-page-about.php:446
3061
+ #: inc/class-page-about.php:435
3062
  msgid "Features / differences between Free and Pro"
3063
  msgstr "Features / Unterschiede zwischen Free und Pro"
3064
 
3065
  #: inc/class-page-about.php:449
3066
+ #: inc/class-page-about.php:438
3067
  msgid "Features"
3068
  msgstr "Features"
3069
 
3070
  #: inc/class-page-about.php:450
3071
+ #: inc/class-page-about.php:439
3072
  msgid "FREE"
3073
  msgstr "FREE"
3074
 
3075
  #: inc/class-page-about.php:451
3076
+ #: inc/class-page-about.php:440
3077
  msgid "PRO"
3078
  msgstr "PRO"
3079
 
3080
  #: inc/class-page-about.php:454
3081
+ #: inc/class-page-about.php:443
3082
  msgid "Complete database backup"
3083
  msgstr "Vollständige Datenbanksicherung"
3084
 
3085
  #: inc/class-page-about.php:459
3086
+ #: inc/class-page-about.php:448
3087
  msgid "Complete file backup"
3088
  msgstr "Vollständige Dateisicherung"
3089
 
3090
  #: inc/class-page-about.php:464
3091
+ #: inc/class-page-about.php:453
3092
  msgid "Database check"
3093
  msgstr "Datenbanküberprüfung"
3094
 
3095
  #: inc/class-page-about.php:469
3096
+ #: inc/class-page-about.php:458
3097
  msgid "Data compression"
3098
  msgstr "Datenbankoptimierung"
3099
 
3100
  #: inc/class-page-about.php:479
3101
+ #: inc/class-page-about.php:468
3102
  msgid "List of installed plugins"
3103
  msgstr "Liste installierter Plugins"
3104
 
3105
  #: inc/class-page-about.php:484
3106
+ #: inc/class-page-about.php:473
3107
  msgid "Backup archives management"
3108
  msgstr "Verwaltung der Backup-Archive"
3109
 
3110
  #: inc/class-page-about.php:489
3111
+ #: inc/class-page-about.php:478
3112
  msgid "Log file management"
3113
  msgstr "Verwaltung der Log-Dateien"
3114
 
3115
  #: inc/class-page-about.php:494
3116
+ #: inc/class-page-about.php:483
3117
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3118
  msgstr "Start der Aufträge über WP-Cron, URL, System, Backend oder WP-CLI"
3119
 
3120
  #: inc/class-page-about.php:499
3121
+ #: inc/class-page-about.php:488
3122
  msgid "Log report via email"
3123
  msgstr "Log-Report via E-Mail"
3124
 
3125
  #: inc/class-page-about.php:504
3126
+ #: inc/class-page-about.php:493
3127
  msgid "Backup to Microsoft Azure"
3128
  msgstr "Backup zu Microsoft Azure"
3129
 
3130
  #: inc/class-page-about.php:509
3131
+ #: inc/class-page-about.php:498
3132
  msgid "Backup as email"
3133
  msgstr "Backup per E-Mail"
3134
 
3135
  #: inc/class-page-about.php:514
3136
+ #: inc/class-page-about.php:503
3137
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3138
  msgstr "Backup zu S3-Dienstleistern (Amazon, Google Storage, Hosteurope, usw.)"
3139
 
3140
  #: inc/class-page-about.php:529
3141
+ #: inc/class-page-about.php:518
3142
  msgid "Backup to FTP server"
3143
  msgstr "Backup auf FTP-Server"
3144
 
3145
  #: inc/class-page-about.php:534
3146
+ #: inc/class-page-about.php:523
3147
  msgid "Backup to your web space"
3148
  msgstr "Backup auf eigenem Webspace"
3149
 
3150
  #: inc/class-page-about.php:554
3151
+ #: inc/class-page-about.php:563
3152
  msgid "Custom API keys for DropBox and SugarSync"
3153
  msgstr "Eigene API-Keys für Dropbox und SugarSync hinterlegen"
3154
 
3155
  #: inc/class-page-about.php:559
3156
+ #: inc/class-page-about.php:568
3157
  msgid "XML database backup as PHPMyAdmin schema"
3158
  msgstr "XML-Datenbanksicherung der Datenbank nach PHPMyAdmin-Schema"
3159
 
3160
  #: inc/class-page-about.php:564
3161
+ #: inc/class-page-about.php:573
3162
  msgid "Database backup as mysqldump per command line"
3163
  msgstr "Datenbanksicherung als MySQL-Dump über Kommandozeile"
3164
 
3165
  #: inc/class-page-about.php:569
3166
+ #: inc/class-page-about.php:578
3167
  msgid "Database backup for additional MySQL databases"
3168
  msgstr "Datenbanksicherung weiterer MySQL-Datenbanken"
3169
 
3170
  #: inc/class-page-about.php:574
3171
+ #: inc/class-page-about.php:583
3172
  msgid "Import and export job settings as XML"
3173
  msgstr "Auftragseinstellungen als XML ex- und importieren"
3174
 
3175
  #: inc/class-page-about.php:579
3176
+ #: inc/class-page-about.php:588
3177
  msgid "Wizard for system tests"
3178
  msgstr "Assistent zur Ausführung eines Systemtests"
3179
 
3180
  #: inc/class-page-about.php:584
3181
+ #: inc/class-page-about.php:593
3182
  msgid "Wizard for scheduled backup jobs"
3183
  msgstr "Assistent zur Einrichtung von Sicherungsaufträgen"
3184
 
3185
  #: inc/class-page-about.php:589
3186
+ #: inc/class-page-about.php:598
3187
  msgid "Wizard to import settings and backup jobs"
3188
  msgstr "Assistent zum Importieren von Einstellungen und Aufträgen"
3189
 
3190
  #: inc/class-page-about.php:594
3191
+ #: inc/class-page-about.php:603
3192
  msgid "Differential backup of changed directories to Dropbox"
3193
  msgstr "Sicherung geänderter Verzeichnisse in einer Dropbox"
3194
 
3195
  #: inc/class-page-about.php:599
3196
+ #: inc/class-page-about.php:608
3197
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3198
  msgstr "Sicherung geänderter Verzeichnisse nach Rackspace Cloud Files"
3199
 
3200
  #: inc/class-page-about.php:604
3201
+ #: inc/class-page-about.php:613
3202
  msgid "Differential backup of changed directories to S3"
3203
  msgstr "Sicherung geänderter Verzeichnisse nach S3"
3204
 
3205
  #: inc/class-page-about.php:609
3206
+ #: inc/class-page-about.php:618
3207
  msgid "Differential backup of changed directories to MS Azure"
3208
  msgstr "Sicherung geänderter Verzeichnisse nach MS Azure"
3209
 
3210
  #: inc/class-page-about.php:614
3211
+ #: inc/class-page-about.php:623
3212
  msgid "Restore from Folder"
3213
  msgstr "Wiederherstellung aus Ordner"
3214
 
3215
  #: inc/class-page-about.php:619
3216
+ #: inc/class-page-about.php:628
3217
  msgid "Restore from Google Drive"
3218
  msgstr "Wiederherstellung von Google Drive"
3219
 
3220
  #: inc/class-page-about.php:624
3221
+ #: inc/class-page-about.php:633
3222
  msgid "Restore from Amazon S3"
3223
  msgstr "Wiederherstellung von Amazon S3"
3224
 
3225
  #: inc/class-page-about.php:629
3226
+ #: inc/class-page-about.php:638
3227
  msgid "Restore from Dropbox"
3228
  msgstr "Wiederherstellung aus Dropbox"
3229
 
3230
  #: inc/class-page-about.php:634
3231
+ #: inc/class-page-about.php:643
3232
  msgid "Restore from FTP"
3233
  msgstr "Wiederherstellung aus FTP"
3234
 
3235
  #: inc/class-page-about.php:639
3236
+ #: inc/class-page-about.php:648
3237
  msgid "<strong>Premium support</strong>"
3238
  msgstr "<strong>Premium-Support</strong>"
3239
 
3240
  #: inc/class-page-about.php:644
3241
+ #: inc/class-page-about.php:653
3242
  msgid "<strong>Automatic updates</strong>"
3243
  msgstr "<strong>Automatische Updates</strong>"
3244
 
3245
  #: inc/class-page-about.php:651
3246
+ #: inc/class-page-about.php:660
3247
  msgid "GET PRO"
3248
  msgstr "PRO KAUFEN"
3249
 
3410
  msgid "Restoring backups"
3411
  msgstr "Backups wiederherstellen"
3412
 
 
 
 
 
 
3413
  #: inc/class-page-backwpup.php:78
3414
  #: inc/class-page-backwpup.php:87
3415
  msgctxt "Dashboard heading"
4996
 
4997
  #: inc/class-destination-folder-downloader.php:64
4998
  msgid "Could not read data from source file."
4999
+ msgstr "Daten der Ursprungsdatei sind nicht lesbar."
5000
 
5001
  #: inc/class-destination-folder-downloader.php:69
5002
  msgid "Could not write data into target file."
5003
+ msgstr "Daten konnten nicht in die Zieldatei geschrieben werden."
5004
 
5005
  #. translators: $1 is the path of the local file where the backup will be stored
5006
  #: inc/class-destination-folder-downloader.php:141
5007
  msgid "%s is a directory not a file."
5008
+ msgstr "%s ist ein Verzeichnis, keine Datei."
5009
+
5010
+ #: inc/class-destination-s3-downloader.php:76
5011
+ msgid "Could not write data to file. Empty source file."
5012
+ msgstr "Daten konnten nicht in die Datei geschrieben werden. Leere Ursprungsdatei."
5013
 
5014
  #: inc/class-destination-s3.php:102
5015
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5016
+ msgstr "Multipart teilt die Datei während des Uploads in mehrere Teile.<br />Das ist notwendig, um den Upload Prozess anzuzeigen und größere Dateien zu transferieren.<br />Dies funktioniert nicht mit Google oder Dreamhost."
5017
+
5018
+ #: inc/class-page-about.php:365
5019
+ #: inc/class-page-about.php:375
5020
+ #: inc/class-page-backwpup.php:254
5021
+ msgid "BackWPup banner"
5022
+ msgstr "BackWPup Banner"
5023
+
5024
+ #: inc/class-page-about.php:368
5025
+ #: inc/class-page-about.php:378
5026
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5027
+ msgstr "Verwenden Sie Ihr Backup-Archiv, um Ihre gesamte WordPress-Installation zu speichern, einschließlich <code>/wp-content/</code>. Verschieben Sie es zu einem externen Speicherdienst, wenn Sie die Backups nicht auf dem gleichen Server speichern wollen. Mit einem einzigen Backup-Archiv können Sie Ihre Installation wiederherstellen. Verwenden Sie die integrierte Wiederherstellungsfunktion, um Ihre Website direkt aus Ihrem WordPress-Backend oder der Restore-Standalone-App wiederherzustellen, falls Ihre Website vollständig zerstört wird."
5028
+
5029
+ #: inc/class-page-about.php:533
5030
+ msgid "Restore manually uploaded Backup Archives"
5031
+ msgstr "Stelle Backup Archive manuell wieder her"
5032
+
5033
+ #: inc/class-page-about.php:538
5034
+ msgid "Standalone Restore App"
5035
+ msgstr "Standalone Restore App"
5036
+
5037
+ #: inc/class-page-about.php:543
5038
+ msgid "Encrypt Backup Archives"
5039
+ msgstr "Verschlüssele Backup Archives"
5040
+
5041
+ #: inc/class-page-about.php:548
5042
+ msgid "Restore Encrypted Backups"
5043
+ msgstr "Stelle verschlüsselte Backups wieder her"
5044
 
5045
  #: inc/class-page-backups.php:575
5046
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5047
+ msgstr "Es scheint nicht möglich zu sein, Ihren privaten Schlüssel zu speichern, stellen Sie sicher, dass das Verzeichnis %s beschreibbar ist."
 
 
 
 
5048
 
5049
+ #: inc/class-page-backwpup.php:77
5050
+ #: inc/class-page-backwpup.php:86
5051
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5052
+ msgstr "Mit einem einzigen Backup-Archiv können Sie eine Installation wiederherstellen. Verwenden Sie unsere Restore-Funktion, die in BackWPup pro integriert ist, um Ihre Website direkt von Ihrem WordPress-Backend wiederherzustellen. Wir bieten auch eine Restore-Standalone-App mit der pro-Version an, um Ihre Website wiederherzustellen, falls sie vollständig zerstört wird."
5053
 
5054
  #: inc/class-page-editjob.php:452
5055
  msgid "Preview: "
5056
+ msgstr "Vorschau: "
5057
+
5058
+ #: inc/class-page-settings.php:981
5059
+ msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
5060
+ msgstr "<strong>Hinweis</strong>: Benötigen Sie schnelleren, dedizierten Support? Als Pro Nutzer können Sie uns direkt aus dem Backend kontaktieren."
languages/backwpup-es_ES.mo CHANGED
Binary file
languages/backwpup-es_ES.po CHANGED
@@ -19,139 +19,124 @@ msgstr ""
19
 
20
  #: class-license-menu.php:392
21
  #: class-license-menu.php:396
22
- #: inc/class-page-settings.php:1100
 
 
23
  #: inc/class-page-settings.php:1089
24
  msgid "Save Changes"
25
  msgstr "Guardar Cambios"
26
 
27
  #: class-license-menu.php:418
28
  #: inc/class-destination-rsc.php:52
 
29
  msgid "API Key"
30
  msgstr "API Key"
31
 
32
- #: backwpup.php:275
33
- #: inc/class-page-backups.php:276
34
- #: inc/class-page-backups.php:243
35
  #: backwpup.php:286
 
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Carpeta"
39
 
40
- #: backwpup.php:276
41
  #: backwpup.php:287
42
  #: vendor_dist/backwpup.php:287
43
  msgid "Backup to Folder"
44
  msgstr "Respaldar a carpeta"
45
 
46
- #: backwpup.php:291
47
  #: backwpup.php:302
48
  #: vendor_dist/backwpup.php:302
49
  msgid "Email"
50
  msgstr "Email"
51
 
52
- #: backwpup.php:292
53
  #: backwpup.php:303
54
  #: vendor_dist/backwpup.php:303
55
  msgid "Backup sent via email"
56
  msgstr "Backup enviado via email"
57
 
58
- #: backwpup.php:307
59
  #: backwpup.php:318
60
  #: vendor_dist/backwpup.php:318
61
  msgid "FTP"
62
  msgstr "FTP"
63
 
64
- #: backwpup.php:308
65
  #: backwpup.php:319
66
  #: vendor_dist/backwpup.php:319
67
  msgid "Backup to FTP"
68
  msgstr "Respaldo a FTP"
69
 
70
- #: backwpup.php:323
71
- #: inc/class-destination-dropbox.php:445
72
  #: backwpup.php:334
 
73
  #: vendor_dist/backwpup.php:334
74
  msgid "Dropbox"
75
  msgstr "DropBox"
76
 
77
- #: backwpup.php:324
78
- #: inc/class-page-about.php:519
79
  #: backwpup.php:335
 
80
  #: vendor_dist/backwpup.php:335
81
  msgid "Backup to Dropbox"
82
  msgstr "Respaldo a DropBox"
83
 
84
- #: backwpup.php:339
85
- #: inc/class-destination-s3.php:41
86
- #: inc/class-destination-s3.php:42
87
  #: backwpup.php:350
 
88
  #: vendor_dist/backwpup.php:350
89
  msgid "S3 Service"
90
  msgstr "S3 Servicio"
91
 
92
- #: backwpup.php:340
93
  #: backwpup.php:351
94
  #: vendor_dist/backwpup.php:351
95
  msgid "Backup to an S3 Service"
96
  msgstr "Respaldar a un servicio S3"
97
 
98
- #: backwpup.php:360
99
  #: backwpup.php:371
100
  #: vendor_dist/backwpup.php:371
101
  msgid "MS Azure"
102
  msgstr "MS Azure"
103
 
104
- #: backwpup.php:361
105
  #: backwpup.php:372
106
  #: vendor_dist/backwpup.php:372
107
  msgid "Backup to Microsoft Azure (Blob)"
108
  msgstr "Respaldar a Microsoft Azure (blob)"
109
 
110
- #: backwpup.php:376
111
  #: backwpup.php:387
112
  #: vendor_dist/backwpup.php:387
113
  msgid "RSC"
114
  msgstr "RackSpace"
115
 
116
- #: backwpup.php:377
117
- #: inc/class-page-about.php:524
118
  #: backwpup.php:388
 
119
  #: vendor_dist/backwpup.php:388
120
  msgid "Backup to Rackspace Cloud Files"
121
  msgstr "Respaldo a archivos de RackSpace Cloud"
122
 
123
- #: backwpup.php:396
124
  #: backwpup.php:407
125
  #: vendor_dist/backwpup.php:407
126
  msgid "SugarSync"
127
  msgstr "SugarSync"
128
 
129
- #: backwpup.php:397
130
- #: inc/class-page-about.php:539
131
  #: backwpup.php:408
 
132
  #: vendor_dist/backwpup.php:408
133
  msgid "Backup to SugarSync"
134
  msgstr "Respaldar a SugarSync"
135
 
136
- #: backwpup.php:422
137
  #: backwpup.php:433
138
  #: vendor_dist/backwpup.php:433
 
139
  msgid "PHP Version %1$s is to low, you need Version %2$s or above."
140
  msgstr "Versión PHP %1$s demasido baja, necesitas versión %2$s o superior."
141
 
142
- #: backwpup.php:432
143
  #: backwpup.php:443
144
  #: vendor_dist/backwpup.php:443
 
145
  msgid "Missing function \"%s\"."
146
  msgstr "Perdida la función \"%s\"."
147
 
148
- #: backwpup.php:443
149
  #: backwpup.php:454
150
  #: vendor_dist/backwpup.php:454
 
151
  msgid "Missing class \"%s\"."
152
  msgstr "Clase “%s” no encontrada."
153
 
154
- #: backwpup.php:562
155
  #: backwpup.php:573
156
  #: vendor_dist/backwpup.php:573
157
  msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
@@ -183,40 +168,46 @@ msgstr "Identificado !"
183
  #: inc/class-destination-ftp.php:104
184
  #: inc/class-destination-msazure.php:83
185
  #: inc/class-destination-rsc.php:112
186
- #: inc/class-destination-s3.php:198
187
- #: inc/class-destination-sugarsync.php:98
188
  #: inc/class-destination-s3.php:229
 
189
  msgid "Number of files to keep in folder."
190
  msgstr "Número de archivos a mantener en carpeta."
191
 
192
- #: inc/Pro/class-destination-dropbox.php:82
193
- #: inc/Pro/class-destination-folder.php:51
194
- #: inc/Pro/class-destination-ftp.php:75
195
  #: inc/Pro/class-destination-gdrive.php:148
196
- #: inc/Pro/class-destination-gdrive.php:461
197
  #: inc/Pro/class-destination-msazure.php:56
198
  #: inc/Pro/class-destination-rsc.php:70
199
- #: inc/Pro/class-destination-s3.php:187
200
  #: inc/Pro/class-destination-sugarsync.php:65
201
- #: inc/class-destination-dropbox.php:183
202
  #: inc/class-destination-folder.php:57
203
- #: inc/class-destination-ftp.php:118
204
  #: inc/class-destination-msazure.php:89
205
  #: inc/class-destination-rsc.php:118
206
- #: inc/class-destination-s3.php:214
207
  #: inc/class-destination-sugarsync.php:104
 
 
 
 
 
208
  #: inc/Pro/class-destination-gdrive.php:462
209
- #: inc/class-destination-s3.php:245
210
  msgid "Do not delete files while syncing to destination!"
211
  msgstr "No elimine los archivos durante la sincronización de destino!"
212
 
213
  #: inc/Pro/class-destination-dropbox.php:209
214
  #: inc/class-destination-dropbox.php:390
 
215
  msgid "Authenticated with Dropbox of user: %s"
216
  msgstr "Identificado con el usuario de Dropbox %s"
217
 
218
  #: inc/Pro/class-destination-dropbox.php:217
219
  #: inc/class-destination-dropbox.php:398
 
220
  msgid "%s available on your Dropbox"
221
  msgstr "%s disponible en tu Dropbox"
222
 
@@ -229,6 +220,7 @@ msgstr "No autenticado con Dropbox!"
229
  #: inc/Pro/class-destination-dropbox.php:405
230
  #: inc/class-destination-dropbox.php:55
231
  #: inc/class-destination-dropbox.php:458
 
232
  msgid "Dropbox API: %s"
233
  msgstr "DropBox API: %s"
234
 
@@ -258,31 +250,21 @@ msgstr "Puerto:"
258
  msgid "Password:"
259
  msgstr "Contraseña:"
260
 
261
- #: inc/Pro/class-destination-gdrive-downloader.php:88
262
- #: inc/class-destination-dropbox-downloader.php:64
263
- #: inc/class-destination-folder-downloader.php:55
264
- #: inc/class-destination-ftp-downloader.php:89
265
- #: inc/class-destination-s3-downloader.php:63
266
- #: inc/Pro/class-destination-gdrive-downloader.php:102
267
- #: inc/class-destination-ftp-downloader.php:126
268
- #: inc/class-destination-folder-downloader.php:137
269
- #: inc/class-destination-dropbox-downloader.php:104
270
- #: inc/class-destination-s3-downloader.php:112
271
- msgid "File could not be opened for writing."
272
- msgstr "El archivo no se puede abrir para escribir."
273
-
274
- #: inc/Pro/class-destination-gdrive-downloader.php:103
275
- #: inc/class-destination-dropbox-downloader.php:76
276
- #: inc/class-destination-folder-downloader.php:79
277
- #: inc/class-destination-ftp-downloader.php:100
278
- #: inc/class-destination-s3-downloader.php:69
279
  #: inc/Pro/class-destination-gdrive-downloader.php:74
280
- #: inc/class-destination-ftp-downloader.php:72
281
  #: inc/class-destination-dropbox-downloader.php:72
 
282
  #: inc/class-destination-s3-downloader.php:83
283
  msgid "Could not write data to file."
284
  msgstr "No se pudo escribir el archivo de registro."
285
 
 
 
 
 
 
 
 
 
286
  #: inc/Pro/class-destination-gdrive.php:93
287
  #: inc/class-destination-dropbox.php:72
288
  msgid "Login"
@@ -312,63 +294,60 @@ msgstr "Parámetros de respaldo"
312
  msgid "File Deletion"
313
  msgstr "Borrado de fichero"
314
 
315
- #: inc/Pro/class-destination-gdrive.php:136
316
  #: inc/Pro/class-destination-glacier.php:109
317
- #: inc/class-destination-dropbox.php:173
318
  #: inc/class-destination-folder.php:51
319
- #: inc/class-destination-ftp.php:106
320
  #: inc/class-destination-msazure.php:85
321
  #: inc/class-destination-rsc.php:114
322
- #: inc/class-destination-s3.php:201
323
  #: inc/class-destination-sugarsync.php:100
 
 
324
  #: inc/class-destination-s3.php:232
 
325
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
326
  msgstr "<strong>Advertencia</strong>: Los archivos pertenecientes a este trabajo están ahora trackeados. Los archivos de copia de seguridad antiguos que no sean rastreados no seran borrados automáticamente."
327
 
328
- #: inc/Pro/class-destination-gdrive.php:903
329
  #: inc/Pro/class-destination-glacier.php:470
330
  #: inc/Pro/class-destination-rsc.php:228
331
  #: inc/Pro/class-destination-rsc.php:261
332
  #: inc/class-destination-ftp.php:673
333
  #: inc/class-destination-msazure.php:275
334
  #: inc/class-destination-rsc.php:292
335
- #: inc/class-destination-s3.php:825
336
- #: inc/class-destination-s3.php:940
337
- #: inc/Pro/class-destination-gdrive.php:905
338
  #: inc/class-destination-s3.php:843
339
  #: inc/class-destination-s3.php:958
340
  msgid "Can not open source file for transfer."
341
  msgstr "No se puede abrir el archivo de origen para la transferencia."
342
 
343
- #: inc/Pro/class-destination-gdrive.php:922
344
  #: inc/class-destination-dropbox.php:432
345
  #: inc/class-destination-msazure.php:290
346
  #: inc/class-destination-sugarsync.php:263
347
- #: inc/Pro/class-destination-gdrive.php:924
348
  msgid "Backup transferred to %s"
349
  msgstr "Respaldo transferido a %s"
350
 
351
- #: inc/Pro/class-destination-gdrive.php:928
352
- #: inc/class-destination-dropbox.php:438
353
  #: inc/Pro/class-destination-gdrive.php:930
 
354
  msgid "Uploaded file size and local file size don't match."
355
  msgstr "Tamaño de archivo cargado y tamaño de archivo local no coinciden."
356
 
357
- #: inc/Pro/class-destination-gdrive.php:934
358
  #: inc/Pro/class-destination-glacier.php:450
359
  #: inc/class-destination-dropbox.php:444
360
- #: inc/Pro/class-destination-gdrive.php:936
361
  msgid "Error transfering backup to %s."
362
  msgstr "Error transfiriendo copia de seguridad a %s."
363
 
364
  #: inc/Pro/class-destination-glacier.php:54
365
- #: inc/class-destination-s3.php:90
366
  #: inc/class-destination-s3.php:121
367
  msgid "Access Key"
368
  msgstr "Claves de acceso"
369
 
370
  #: inc/Pro/class-destination-glacier.php:61
371
- #: inc/class-destination-s3.php:104
372
  #: inc/class-destination-s3.php:135
373
  msgid "Secret Key"
374
  msgstr "Clave secreta"
@@ -376,53 +355,55 @@ msgstr "Clave secreta"
376
  #: inc/Pro/class-destination-glacier.php:96
377
  #: inc/class-destination-msazure.php:76
378
  #: inc/class-destination-rsc.php:105
379
- #: inc/class-destination-s3.php:184
380
  #: inc/class-destination-s3.php:215
381
  msgid "File deletion"
382
  msgstr "Borrado de fichero"
383
 
384
  #: inc/Pro/class-destination-glacier.php:166
385
  #: inc/class-destination-msazure.php:448
386
- #: inc/class-destination-s3.php:353
387
  #: inc/class-destination-s3.php:359
388
  msgid "Missing access key!"
389
  msgstr "Claves de acceso no localizadas!"
390
 
391
  #: inc/Pro/class-destination-glacier.php:168
392
- #: inc/class-destination-s3.php:355
393
  #: inc/class-destination-s3.php:361
394
  msgid "Missing secret access key!"
395
  msgstr "Claves secreta de acceso no localizada!"
396
 
397
  #: inc/Pro/class-destination-glacier.php:446
398
- #: inc/class-destination-s3.php:954
399
  #: inc/class-destination-s3.php:972
 
400
  msgid "Backup transferred to %s."
401
  msgstr "Respaldo transferido a %s."
402
 
403
  #: inc/Pro/class-destination-msazure.php:99
404
  #: inc/class-destination-msazure.php:128
 
405
  msgid "MS Azure container \"%s\" created."
406
  msgstr "Contenedor Microsoft Azure \"%s\" se ha creado."
407
 
408
  #: inc/Pro/class-destination-msazure.php:102
409
  #: inc/class-destination-msazure.php:131
 
410
  msgid "MS Azure container create: %s"
411
  msgstr "Contenedor MS Azure creado : %s"
412
 
413
  #: inc/Pro/class-destination-msazure.php:144
414
  #: inc/class-destination-msazure.php:237
 
415
  msgid "MS Azure container \"%s\" does not exist!"
416
  msgstr "Contenedor Microsoft Azure \"%s\" no existe!"
417
 
418
  #: inc/Pro/class-destination-msazure.php:148
419
  #: inc/class-destination-msazure.php:241
 
420
  msgid "Connected to MS Azure container \"%s\"."
421
  msgstr "Conectado a contenedor Microsoft Azure \"%s\"."
422
 
423
  #: inc/Pro/class-destination-msazure.php:233
424
  #: inc/class-destination-msazure.php:296
425
  #: inc/class-destination-msazure.php:352
 
426
  msgid "Microsoft Azure API: %s"
427
  msgstr "Microsoft Azure API: %s"
428
 
@@ -464,6 +445,7 @@ msgstr "Hong Kong (HKG)"
464
 
465
  #: inc/Pro/class-destination-rsc.php:116
466
  #: inc/class-destination-rsc.php:158
 
467
  msgid "Rackspace Cloud container \"%s\" created."
468
  msgstr "Contenedor Rackspace Cloud \"%s\" creado."
469
 
@@ -474,146 +456,127 @@ msgstr "Contenedor Rackspace Cloud \"%s\" creado."
474
  #: inc/class-destination-rsc.php:277
475
  #: inc/class-destination-rsc.php:317
476
  #: inc/class-destination-rsc.php:362
 
477
  msgid "Rackspace Cloud API: %s"
478
  msgstr "Rackspase Cloud API : %s"
479
 
480
- #: inc/Pro/class-destination-s3.php:32
481
- #: inc/class-destination-s3.php:53
482
  #: inc/class-destination-s3.php:54
 
483
  msgid "Amazon S3 Region"
484
  msgstr "Región Amazon S3"
485
 
486
  #: inc/Pro/class-destination-s3.php:40
487
- #: inc/class-destination-s3.php:1072
488
  #: inc/class-destination-s3.php:1118
489
  msgid "Amazon S3: US Standard"
490
  msgstr "Amazon S3: US Standard"
491
 
492
- #: inc/Pro/class-destination-s3.php:45
493
- #: inc/class-destination-s3.php:1076
494
  #: inc/class-destination-s3.php:1122
 
495
  msgid "Amazon S3: US West (Northern California)"
496
  msgstr "Amazon S3 : Oeste USA (Norte de California)"
497
 
498
  #: inc/Pro/class-destination-s3.php:53
499
- #: inc/class-destination-s3.php:1080
500
  #: inc/class-destination-s3.php:1126
501
  msgid "Amazon S3: US West (Oregon)"
502
  msgstr "Amazon S3: Oeste de USA (Oregon)"
503
 
504
  #: inc/Pro/class-destination-s3.php:58
505
- #: inc/class-destination-s3.php:1084
506
  #: inc/class-destination-s3.php:1130
507
  msgid "Amazon S3: EU (Ireland)"
508
  msgstr "Amazon S3: Europa (Irlanda)"
509
 
510
  #: inc/Pro/class-destination-s3.php:63
511
- #: inc/class-destination-s3.php:1088
512
  #: inc/class-destination-s3.php:1134
513
  msgid "Amazon S3: EU (London)"
514
  msgstr "Amazon S3: Europa (Londres)"
515
 
516
  #: inc/Pro/class-destination-s3.php:68
517
- #: inc/class-destination-s3.php:1092
518
  #: inc/class-destination-s3.php:1138
519
  msgid "Amazon S3: EU (Germany)"
520
  msgstr "Amazon S3: EU (Alemania)"
521
 
522
  #: inc/Pro/class-destination-s3.php:73
523
- #: inc/class-destination-s3.php:1096
524
  #: inc/class-destination-s3.php:1142
525
  msgid "Amazon S3: Asia Pacific (Mumbai)"
526
  msgstr "Amazon S3: Asia Pacífico (Mumbai)"
527
 
528
  #: inc/Pro/class-destination-s3.php:78
529
- #: inc/class-destination-s3.php:1100
530
  #: inc/class-destination-s3.php:1146
531
  msgid "Amazon S3: Asia Pacific (Tokyo)"
532
  msgstr "Amazon S3: Asia Pacífico (Tokyo)"
533
 
534
  #: inc/Pro/class-destination-s3.php:83
535
- #: inc/class-destination-s3.php:1104
536
  #: inc/class-destination-s3.php:1150
537
  msgid "Amazon S3: Asia Pacific (Seoul)"
538
  msgstr "Amazon S3: Asia Pacífico (Seoul)"
539
 
540
  #: inc/Pro/class-destination-s3.php:88
541
- #: inc/class-destination-s3.php:1108
542
  #: inc/class-destination-s3.php:1154
543
  msgid "Amazon S3: Asia Pacific (Singapore)"
544
  msgstr "Amazon S3: Asia Pacífico (Singapur)"
545
 
546
  #: inc/Pro/class-destination-s3.php:93
547
- #: inc/class-destination-s3.php:1112
548
  #: inc/class-destination-s3.php:1158
549
  msgid "Amazon S3: Asia Pacific (Sydney)"
550
  msgstr "Amazon S3: Asia Pacífico (Sydney)"
551
 
552
  #: inc/Pro/class-destination-s3.php:98
553
- #: inc/class-destination-s3.php:1116
554
  #: inc/class-destination-s3.php:1162
555
  msgid "Amazon S3: South America (Sao Paulo)"
556
  msgstr "Amazon S3: Sudamérica (Sao Paulo)"
557
 
558
  #: inc/Pro/class-destination-s3.php:103
559
- #: inc/class-destination-s3.php:1120
560
  #: inc/class-destination-s3.php:1166
561
  msgid "Amazon S3: China (Beijing)"
562
  msgstr "Amazon S3: China (Beijing)"
563
 
564
  #: inc/Pro/class-destination-s3.php:108
565
- #: inc/class-destination-s3.php:1124
566
  #: inc/class-destination-s3.php:1170
567
  msgid "Google Storage: EU"
568
  msgstr "Google Storage: EU"
569
 
570
  #: inc/Pro/class-destination-s3.php:113
571
- #: inc/class-destination-s3.php:1128
572
  #: inc/class-destination-s3.php:1174
573
  msgid "Google Storage: USA"
574
  msgstr "Google Storage: USA"
575
 
576
  #: inc/Pro/class-destination-s3.php:118
577
- #: inc/class-destination-s3.php:1132
578
  #: inc/class-destination-s3.php:1178
579
  msgid "Google Storage: Asia"
580
  msgstr "Google Storage: Asia"
581
 
582
  #: inc/Pro/class-destination-s3.php:123
583
- #: inc/class-destination-s3.php:1136
584
  #: inc/class-destination-s3.php:1182
585
  msgid "Dream Host Cloud Storage"
586
  msgstr "Dream Host Cloud Storage"
587
 
588
  #: inc/Pro/class-destination-s3.php:285
589
- #: inc/class-destination-s3.php:514
590
  #: inc/class-destination-s3.php:520
 
591
  msgid " %s is not a valid bucket name."
592
  msgstr " %s no es un nombre corecto de cubo."
593
 
594
  #: inc/Pro/class-destination-s3.php:383
595
- #: inc/class-destination-s3.php:785
596
  #: inc/class-destination-s3.php:803
 
597
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
598
  msgstr "Conectado a cubo S3 \"%1$s\" dans %2$s"
599
 
600
  #: inc/Pro/class-destination-s3.php:391
601
- #: inc/class-destination-s3.php:790
602
  #: inc/class-destination-s3.php:808
 
603
  msgid "S3 Bucket \"%s\" does not exist!"
604
  msgstr "Cubo S3 \"%s\" no existe!"
605
 
606
  #: inc/Pro/class-destination-s3.php:623
607
- #: inc/class-destination-s3.php:564
608
- #: inc/class-destination-s3.php:850
609
- #: inc/class-destination-s3.php:918
610
- #: inc/class-destination-s3.php:977
611
- #: inc/class-destination-s3.php:988
612
  #: inc/class-destination-s3.php:570
613
  #: inc/class-destination-s3.php:868
614
  #: inc/class-destination-s3.php:936
615
  #: inc/class-destination-s3.php:995
616
  #: inc/class-destination-s3.php:1006
 
617
  msgid "S3 Service API: %s"
618
  msgstr "S3 Servicio API: %s"
619
 
@@ -676,7 +639,6 @@ msgstr "todo"
676
  #: inc/class-jobtype-wpplugin.php:57
677
  #: inc/class-page-backwpup.php:329
678
  #: inc/class-page-backwpup.php:404
679
- #: inc/class-page-settings.php:848
680
  #: inc/class-page-settings.php:837
681
  msgid "none"
682
  msgstr "ninguna"
@@ -704,11 +666,13 @@ msgstr "GZip"
704
 
705
  #: inc/Pro/class-jobtype-dbdump.php:475
706
  #: inc/class-jobtype-dbdump.php:159
 
707
  msgid "%d. Try to backup database&#160;&hellip;"
708
  msgstr "%d. Prueba crear copia de seguridad de la base de datos&#160;&hellip;"
709
 
710
  #: inc/Pro/class-jobtype-dbdump.php:495
711
  #: inc/class-jobtype-dbdump.php:173
 
712
  msgid "Connected to database %1$s on %2$s"
713
  msgstr "Conectado de base de datos %1$s sur %2$s"
714
 
@@ -719,6 +683,7 @@ msgstr "Sin tablas para copia de seguridad."
719
 
720
  #: inc/Pro/class-jobtype-dbdump.php:536
721
  #: inc/class-jobtype-dbdump.php:210
 
722
  msgid "Backup database table \"%s\" with \"%s\" records"
723
  msgstr "Copia de seguridad de la tabla “%s” con “%s” registros"
724
 
@@ -745,6 +710,7 @@ msgstr "Compresión hecho."
745
 
746
  #: inc/Pro/class-jobtype-dbdump.php:764
747
  #: inc/class-jobtype-dbdump.php:254
 
748
  msgid "Added database dump \"%1$s\" with %2$s to backup file list"
749
  msgstr "Añadido respaldo de DB \"%1$s\" con %2$s a la lista de ficheros a respaldar"
750
 
@@ -765,6 +731,7 @@ msgstr "Configuración de tiempo de espera MySQLi falló"
765
 
766
  #: inc/Pro/class-jobtype-dbdump.php:844
767
  #: inc/class-mysqldump.php:110
 
768
  msgid "Cannot connect to MySQL database %1$d: %2$s"
769
  msgstr "Imposible de contectar con base de datos MySQL %1$d: %2$s"
770
 
@@ -785,6 +752,7 @@ msgstr "Imposible de contectar con base de datos MySQL %1$d: %2$s"
785
  #: inc/class-mysqldump.php:400
786
  #: inc/class-mysqldump.php:437
787
  #: inc/class-mysqldump.php:500
 
788
  msgid "Database error %1$s for query %2$s"
789
  msgstr "Error de DB %1$s para la consulta %2$s"
790
 
@@ -806,6 +774,7 @@ msgstr "Páginas"
806
  #: inc/Pro/class-page-support.php:221
807
  #: inc/class-page-jobs.php:172
808
  #: inc/class-page-logs.php:228
 
809
  msgid "Job ID: %d"
810
  msgstr "ID trabajo: %d"
811
 
@@ -815,24 +784,22 @@ msgid "Start wizard"
815
  msgstr "Comenzar asistente"
816
 
817
  #: inc/Pro/class-pro.php:131
818
- #: inc/class-page-about.php:549
819
  msgid "Backup to Amazon Glacier"
820
  msgstr "Backup a Amazon Glacier"
821
 
822
  #: inc/Pro/class-pro.php:152
823
- #: inc/class-page-about.php:544
824
  msgid "Backup to Google Drive"
825
  msgstr "Backup a Google Drive"
826
 
827
  #: inc/Pro/class-pro.php:285
828
  #: inc/Pro/class-pro.php:286
829
- #: inc/class-page-backups.php:345
830
- #: views/pro/restore/steps/step4_top.php:2
831
  #: inc/class-page-backups.php:293
 
832
  msgid "Restore"
833
  msgstr "Restaurar"
834
 
835
- #. Plugin URI of the plugin/theme
836
  #: inc/Pro/class-wizard-job.php:17
837
  #: inc/Pro/class-wizard-jobimport.php:16
838
  #: inc/Pro/class-wizard-systemtest.php:27
@@ -840,21 +807,22 @@ msgstr "Restaurar"
840
  #: inc/class-admin.php:531
841
  #: inc/class-help.php:17
842
  #: inc/class-help.php:22
843
- #: inc/class-job.php:412
844
  #: inc/class-jobtype-dbcheck.php:15
845
  #: inc/class-jobtype-dbdump.php:15
846
  #: inc/class-jobtype-file.php:15
847
  #: inc/class-jobtype-wpexp.php:15
848
  #: inc/class-jobtype-wpplugin.php:15
849
- #: inc/class-page-about.php:651
 
 
 
850
  #: inc/class-page-backwpup.php:260
851
  #: inc/class-page-backwpup.php:262
852
- #: inc/class-page-settings.php:1134
853
  #: inc/class-page-settings.php:1123
854
  msgid "http://backwpup.com"
855
  msgstr "https://backwpup.com"
856
 
857
- #. Author URI of the plugin/theme
858
  #: inc/Pro/class-wizard-job.php:19
859
  #: inc/Pro/class-wizard-jobimport.php:18
860
  #: inc/Pro/class-wizard-systemtest.php:29
@@ -1040,7 +1008,6 @@ msgstr "Escritorio"
1040
 
1041
  #: inc/class-admin.php:305
1042
  #: inc/class-adminbar.php:82
1043
- #: inc/class-page-settings.php:216
1044
  #: inc/class-page-settings.php:215
1045
  msgid "Jobs"
1046
  msgstr "Trabajos"
@@ -1052,7 +1019,6 @@ msgstr "Añadir nuevo trabajo"
1052
  #: inc/class-admin.php:355
1053
  #: inc/class-adminbar.php:98
1054
  #: inc/class-page-logs.php:377
1055
- #: inc/class-page-settings.php:218
1056
  #: inc/class-page-settings.php:219
1057
  msgid "Logs"
1058
  msgstr "Logs"
@@ -1076,10 +1042,12 @@ msgid "Cheating, huh?"
1076
  msgstr "Sientes engañado?"
1077
 
1078
  #: inc/class-admin.php:510
 
1079
  msgid "<a class=\"backwpup-get-pro\" href=\"%s\">Get BackWPup Pro now.</a>"
1080
  msgstr "<a class=\"backwpup-get-pro\" href=\"%s\">Obtén BackWPup Pro ahora.</a>"
1081
 
1082
  #: inc/class-admin.php:531
 
1083
  msgid "version %s"
1084
  msgstr "version %s"
1085
 
@@ -1117,18 +1085,22 @@ msgstr "Arrancar ahora"
1117
  msgid "Make BackWPup better!"
1118
  msgstr "¡Haz BackWPup mejor!"
1119
 
 
1120
  #: inc/class-become-inpsyder-widget.php:108
1121
  msgid "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
1122
  msgstr "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
1123
 
 
1124
  #: inc/class-become-inpsyder-widget.php:118
1125
  msgid "We want to make BackWPup even stronger and its support much faster."
1126
  msgstr "Queremos hacer BackWPup todavía más fuerte y su soporte mucho más rápido."
1127
 
 
1128
  #: inc/class-become-inpsyder-widget.php:126
1129
  msgid "This is why we are looking for a talented developer who can work remotely and support us in BackWPup"
1130
  msgstr "Por eso estamos buscando un desarrollador con talento capaz de trabajar remótamente ayudándonos con BackWPup"
1131
 
 
1132
  #: inc/class-become-inpsyder-widget.php:133
1133
  msgid "and other exciting WordPress projects at our VIP partner agency."
1134
  msgstr "y otros excitantes proyectos WordPress en nuestra agencia VIP."
@@ -1147,6 +1119,7 @@ msgstr "Nombre del fichero no puede estar en blanco."
1147
 
1148
  #. translators: $1 is the file path
1149
  #: inc/class-create-archive.php:89
 
1150
  msgctxt "%s = Folder name"
1151
  msgid "Folder %s for archive not found"
1152
  msgstr "Carpetas %s para fichero no encontrada"
@@ -1164,6 +1137,7 @@ msgstr "Función para la compression bz2 no disponible."
1164
 
1165
  #. translators: $1 is a directory name
1166
  #: inc/class-create-archive.php:155
 
1167
  msgctxt "ZipArchive open() result"
1168
  msgid "Cannot create zip archive: %d"
1169
  msgstr "Imposible crear fichero zip : %d"
@@ -1174,6 +1148,7 @@ msgstr "Función para la compression bz2 no disponible"
1174
 
1175
  #. translators: the $1 is the type of the archive file
1176
  #: inc/class-create-archive.php:208
 
1177
  msgctxt "%s = file name"
1178
  msgid "Method to archive file %s not detected"
1179
  msgstr "Método de archivo del fichero %s no detectado"
@@ -1184,8 +1159,8 @@ msgstr "No es posible abrir fichero de archivo"
1184
 
1185
  #. translators: The $1 is the tecnical error string from pclzip.
1186
  #: inc/class-create-archive.php:233
1187
- #: inc/class-create-archive.php:518
1188
  #: inc/class-create-archive.php:514
 
1189
  msgid "PclZip archive add error: %s"
1190
  msgstr "Fichero PclZipp añade error : %s"
1191
 
@@ -1195,14 +1170,11 @@ msgstr "Nombre del fichero no puede estar vacío."
1195
 
1196
  #. translators: The $1 is the name of the file to add to the archive.
1197
  #: inc/class-create-archive.php:326
 
1198
  msgctxt "File to add to archive"
1199
  msgid "File %s does not exist or is not readable"
1200
  msgstr "El archivo %s no existe o no se puede leer"
1201
 
1202
- #: inc/class-create-archive.php:351
1203
- #: inc/class-create-archive.php:378
1204
- #: inc/class-create-archive.php:582
1205
- #: inc/class-create-archive.php:591
1206
  #: inc/class-create-archive.php:347
1207
  #: inc/class-create-archive.php:374
1208
  #: inc/class-create-archive.php:578
@@ -1210,114 +1182,108 @@ msgstr "El archivo %s no existe o no se puede leer"
1210
  msgid "This archive method can only add one file"
1211
  msgstr "Este método de archivo sólo puede añadir un fichero"
1212
 
1213
- #: inc/class-create-archive.php:446
1214
  #: inc/class-create-archive.php:442
1215
  msgid "ZIP archive cannot be closed correctly"
1216
  msgstr "El Archivo ZIP no se puede cerrar correctamente"
1217
 
1218
  #. translators: the $1 is the name of the archive.
1219
  #. translators: $1 is the name of the archive.
1220
- #: inc/class-create-archive.php:477
1221
- #: inc/class-create-archive.php:494
1222
- #: inc/class-create-archive.php:611
1223
  #: inc/class-create-archive.php:473
1224
  #: inc/class-create-archive.php:490
1225
  #: inc/class-create-archive.php:607
 
1226
  msgid "Cannot add \"%s\" to zip archive!"
1227
  msgstr "Imposible añadir \"%s\" a archivo zip!"
1228
 
1229
- #: inc/class-create-archive.php:548
1230
  #: inc/class-create-archive.php:544
1231
  msgid "Folder name cannot be empty"
1232
  msgstr "Nombre de la carpeta no puede estar vacío"
1233
 
1234
  #. translators: $1 is the folder name
1235
- #: inc/class-create-archive.php:559
1236
  #: inc/class-create-archive.php:555
 
1237
  msgctxt "Folder path to add to archive"
1238
  msgid "Folder %s does not exist or is not readable"
1239
  msgstr "Carpeta \"%s\" no existe o no se puede leer"
1240
 
1241
  #. translators. $1 is the status returned by a call to a ZipArchive method.
1242
- #: inc/class-create-archive.php:643
1243
  #: inc/class-create-archive.php:639
 
1244
  msgctxt "Text of ZipArchive status Message"
1245
  msgid "ZipArchive returns status: %s"
1246
  msgstr "Archivo zip devuelve estado : %s"
1247
 
1248
  #. translators: $1 is the file name.
1249
- #: inc/class-create-archive.php:691
1250
  #: inc/class-create-archive.php:687
 
1251
  msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1252
  msgstr "¡El nombre de archivo “%1$s” es demasiado largo para ser guardado correctamente en el archivo %2$s!"
1253
 
1254
  #. translators: $1 is the file name to use in the archive.
1255
- #: inc/class-create-archive.php:703
1256
  #: inc/class-create-archive.php:699
 
1257
  msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1258
  msgstr "¡La ruta al archivo “%1$s” es demasiado largo para ser guardada correctamente en el archivo %2$s!"
1259
 
1260
- #: inc/class-create-archive.php:745
1261
  #: inc/class-create-archive.php:741
 
1262
  msgid "Cannot open source file %s for archiving. Writing an empty file."
1263
  msgstr "No se puede abrir el archivo de origen %s para archivar. Escribir un archivo vacío."
1264
 
1265
  #. translators: $1 is the name of the folder. $2 is the archive name.
1266
- #: inc/class-create-archive.php:807
1267
  #: inc/class-create-archive.php:803
 
1268
  msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1269
  msgstr "¡El nombre del directorio “%1$s” es demasiado largo para ser guardado correctamente en el archivo %2$s!"
1270
 
1271
  #. translators: $1 is the name of the folder. $2 is the archive name.
1272
- #: inc/class-create-archive.php:822
1273
  #: inc/class-create-archive.php:818
 
1274
  msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1275
  msgstr "¡La ruta al directorio “%1$s” es demasiado largo para ser guardada correctamente en el archivo %2$s!"
1276
 
1277
- #: inc/class-create-archive.php:890
1278
  #: inc/class-create-archive.php:886
 
1279
  msgid "If %s will be added to your backup archive, the archive will be too large for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
1280
  msgstr "Si %s se añade a tu archivo de backup, el archivo será demasiado grande para operaciones con esta versión de PHP. Deberias considerar partir el trabajo de backup en multiples trabajas de menos tamaño cada uno."
1281
 
1282
- #: inc/class-create-archive.php:968
1283
- #: inc/class-create-archive.php:969
1284
  #: inc/class-create-archive.php:964
1285
  #: inc/class-create-archive.php:965
1286
  msgid "Unknown"
1287
  msgstr "Desconocido"
1288
 
1289
  #. translators: $1 is the filename to add into the archive.
1290
- #: inc/class-create-archive.php:1000
1291
  #: inc/class-create-archive.php:996
 
1292
  msgid "Cannot open source file %s."
1293
  msgstr "Imposible abrir ruta de fichero %s a archivo."
1294
 
1295
- #: inc/class-cron.php:74
1296
  #: inc/class-cron.php:73
1297
  msgid "Aborted, because no progress for one hour!"
1298
  msgstr "¡Abortado, dado que no ha habido progreso en una hora!"
1299
 
1300
- #: inc/class-cron.php:108
1301
  #: inc/class-destination-folder.php:195
1302
- #: inc/class-job.php:989
1303
- #: inc/class-job.php:1133
1304
- #: inc/class-job.php:1862
1305
  #: inc/class-jobtype-file.php:446
1306
- #: inc/class-cron.php:107
1307
  msgid "Could not open path: %s"
1308
  msgstr "No se puede abrir la ruta: %s"
1309
 
1310
- #: inc/class-decrypter.php:53
1311
  #: inc/class-decrypter.php:56
1312
  msgid "Cannot open the archive for reading."
1313
  msgstr "No se puede abrir el archivo para leer."
1314
 
1315
- #: inc/class-decrypter.php:77
1316
  #: inc/class-decrypter.php:82
1317
  msgid "Cannot write the encrypted archive."
1318
  msgstr "Imposible crear fichero zip : %d."
1319
 
1320
- #: inc/class-decrypter.php:182
1321
  #: inc/class-decrypter.php:162
1322
  msgid "Private key invalid."
1323
  msgstr "Clave privada no válida."
@@ -1327,10 +1293,12 @@ msgid "Beginning new file upload session"
1327
  msgstr "Empezando nueva sesión se subida de archivo"
1328
 
1329
  #: inc/class-destination-dropbox-api.php:199
 
1330
  msgid "Uploading %s of data"
1331
  msgstr "Subiendo %s de datos"
1332
 
1333
  #: inc/class-destination-dropbox-api.php:244
 
1334
  msgid "Finishing upload session with a total of %s uploaded"
1335
  msgstr "Acabando sesión de subida con un total de %s subido"
1336
 
@@ -1340,11 +1308,13 @@ msgstr "Acabando sesión de subida con un total de %s subido"
1340
  msgid "Authentication"
1341
  msgstr "Autentificación"
1342
 
1343
- #: inc/class-destination-dropbox.php:92
1344
  #: inc/class-destination-dropbox.php:95
 
1345
  msgid "Delete Dropbox Authentication"
1346
  msgstr "Borrar autenticación Dropbox"
1347
 
 
1348
  #: inc/class-destination-dropbox.php:102
1349
  msgid "App Access to Dropbox"
1350
  msgstr "App Acceso a Dropbox"
@@ -1353,6 +1323,7 @@ msgstr "App Acceso a Dropbox"
1353
  msgid "Get Dropbox App auth code"
1354
  msgstr "Obtén el código de autorización de Dropbox App"
1355
 
 
1356
  #: inc/class-destination-dropbox.php:111
1357
  msgid "A dedicated folder named BackWPup will be created inside of the Apps folder in your Dropbox. BackWPup will get read and write access to that folder only. You can specify a subfolder as your backup destination for this job in the destination field below."
1358
  msgstr "Un directorio dedicado llamado BackWPup será creado dentro del directorio Aplicaciones de Dropbox. BackWPup recibirà acceso de lectura y escritura para este directorio exclusivamente. Puedes especificar un subdirectorio como tu destino de copia de seguridad para este trabajo en el campo Destino aquí debajo."
@@ -1361,6 +1332,7 @@ msgstr "Un directorio dedicado llamado BackWPup será creado dentro del director
1361
  msgid "— OR —"
1362
  msgstr "— O —"
1363
 
 
1364
  #: inc/class-destination-dropbox.php:122
1365
  msgid "Full Access to Dropbox"
1366
  msgstr "Acceso completo a Dropbox"
@@ -1369,25 +1341,31 @@ msgstr "Acceso completo a Dropbox"
1369
  msgid "Get full Dropbox auth code "
1370
  msgstr "Obtén código de autorización completo para Dropbox "
1371
 
 
1372
  #: inc/class-destination-dropbox.php:131
1373
  msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup."
1374
  msgstr "BackWPup tendrá acceso de lectura y escritura completo a tu Dropbox. Puedes especificar tu destinación de copia de seguridad donde quieras, sólo ten en cuenta que cualquier archivo o directorio dentro de tu Dropbox puede ser sobreescrito o borrado por BackWPup."
1375
 
 
1376
  #: inc/class-destination-dropbox.php:145
1377
  msgid "Destination Folder"
1378
  msgstr "Directorio de destino"
1379
 
 
1380
  #: inc/class-destination-dropbox.php:154
1381
  msgid "Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden."
1382
  msgstr "Especifica un subdirectorio donde será guardada tu copi de seguridad. Si usas la opció App desde arriba, este directorio se creará dentro de Apps/BackWPup. Sino se creará en la raíz de tu Dropbox. Directorios existentes con el mismo nombre no serán sobreescritos."
1383
 
 
1384
  #: inc/class-destination-dropbox.php:345
 
1385
  msgid "One file deleted from Dropbox"
1386
  msgid_plural "%d files deleted on Dropbox"
1387
  msgstr[0] "Un fichero eliminado de DropBox"
1388
  msgstr[1] "%d ficheros eliminados de Dropbox"
1389
 
1390
  #: inc/class-destination-dropbox.php:372
 
1391
  msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
1392
  msgstr "%d. Prueba a enviar una copia de seguridad a Dropbox&#160;&hellip;"
1393
 
@@ -1472,6 +1450,7 @@ msgid "SMTP password"
1472
  msgstr "Contraseña SMTP"
1473
 
1474
  #: inc/class-destination-email.php:243
 
1475
  msgid "%d. Try to send backup with email&#160;&hellip;"
1476
  msgstr "%d. Prueba enviar una copia de seguridad con email&#160;&hellip;"
1477
 
@@ -1480,14 +1459,17 @@ msgid "Backup archive too big to be sent by email!"
1480
  msgstr "¡Copia de seguridad demasiado grande para ser enviada por correo electrónico!"
1481
 
1482
  #: inc/class-destination-email.php:255
 
1483
  msgid "Sending email to %s&hellip;"
1484
  msgstr "Enviando correo electrónico a %s&hellip;"
1485
 
1486
  #: inc/class-destination-email.php:333
 
1487
  msgid "BackWPup archive from %1$s: %2$s"
1488
  msgstr "Fichero BackWPup desde %1$s: %2$s"
1489
 
1490
  #: inc/class-destination-email.php:336
 
1491
  msgid "Backup archive: %s"
1492
  msgstr "Fichero backup: %s"
1493
 
@@ -1509,22 +1491,36 @@ msgstr "Fichero BackWPup enviando un mensaje de PRUEBA"
1509
  msgid "If this message reaches your inbox, sending backup archives via email should work for you."
1510
  msgstr "Si este mensaje llega a tu bandeja de entrada, significa que enviar copias de seguridad por correo electrónico funcionará."
1511
 
1512
- #: inc/class-destination-folder-downloader.php:49
 
 
 
 
 
 
 
 
1513
  #: inc/class-destination-folder-downloader.php:96
1514
  msgid "File could not be opened for reading."
1515
  msgstr "El archivo no se pudo abrir para leer."
1516
 
 
 
 
 
 
 
1517
  #: inc/class-destination-folder.php:32
1518
  msgid "Folder to store backups in"
1519
  msgstr "Carpeta para guardar respaldos en"
1520
 
1521
  #: inc/class-destination-folder.php:219
 
1522
  msgid "One backup file deleted"
1523
  msgid_plural "%d backup files deleted"
1524
  msgstr[0] "Un fichero de respaldo eliminado"
1525
  msgstr[1] "%d ficheros de respaldo eliminados"
1526
 
1527
- #: inc/class-destination-ftp-downloader.php:81
1528
  #: inc/class-destination-ftp-downloader.php:108
1529
  msgid "Cannot open FTP file for download."
1530
  msgstr "No se puede abrir el archivo FTP para la transferencia."
@@ -1584,24 +1580,30 @@ msgid "Could not log in to FTP server."
1584
  msgstr "Imposible de conectar al servidor FTP: %s."
1585
 
1586
  #: inc/class-destination-ftp.php:394
 
1587
  msgid "Cannot delete \"%s\" on FTP server!"
1588
  msgstr "Imposible eliminar \"%s\" de servidor FTP!"
1589
 
 
1590
  #: inc/class-destination-ftp.php:404
 
1591
  msgid "One file deleted on FTP server"
1592
  msgid_plural "%d files deleted on FTP server"
1593
  msgstr[0] "Un fichero eliminado de servidor FTP"
1594
  msgstr[1] "%d ficheros eliminados de servidor FTP"
1595
 
1596
  #: inc/class-destination-ftp.php:433
 
1597
  msgid "%d. Try to send backup file to an FTP server&#160;&hellip;"
1598
  msgstr "%d. Prueba a enviar una copia de seguridad a un FTP server&#160;&hellip;"
1599
 
1600
  #: inc/class-destination-ftp.php:450
 
1601
  msgid "Connected via explicit SSL-FTP to server: %s"
1602
  msgstr "Conectado por SSL-FTP al servidor: %s"
1603
 
1604
  #: inc/class-destination-ftp.php:458
 
1605
  msgid "Cannot connect via explicit SSL-FTP to server: %s"
1606
  msgstr "Imposible de conectarse por SSL-FTP al servidor: %s"
1607
 
@@ -1610,10 +1612,12 @@ msgid "PHP function to connect with explicit SSL-FTP to server does not exist!"
1610
  msgstr "La función para conectarse por SSL-FTP al servidor no existe!"
1611
 
1612
  #: inc/class-destination-ftp.php:483
 
1613
  msgid "Connected to FTP server: %s"
1614
  msgstr "Conectado al servidor FTP: %s"
1615
 
1616
  #: inc/class-destination-ftp.php:491
 
1617
  msgid "Cannot connect to FTP server: %s"
1618
  msgstr "Imposible de conectar al servidor FTP: %s"
1619
 
@@ -1621,10 +1625,12 @@ msgstr "Imposible de conectar al servidor FTP: %s"
1621
  #: inc/class-destination-ftp.php:523
1622
  #: inc/class-destination-ftp.php:546
1623
  #: inc/class-destination-ftp.php:603
 
1624
  msgid "FTP client command: %s"
1625
  msgstr "Comando de cliente FTP: %s"
1626
 
1627
  #: inc/class-destination-ftp.php:513
 
1628
  msgid "FTP server response: %s"
1629
  msgstr "Respuesta del servidor FTP: %s"
1630
 
@@ -1637,6 +1643,7 @@ msgstr "Respuesta del servidor FTP: %s"
1637
  #: inc/class-destination-ftp.php:612
1638
  #: inc/class-destination-ftp.php:619
1639
  #: inc/class-destination-ftp.php:624
 
1640
  msgid "FTP server reply: %s"
1641
  msgstr "Responder servidor FTP: %s"
1642
 
@@ -1645,6 +1652,7 @@ msgid "Error getting SYSTYPE"
1645
  msgstr "Error obteniendo SYSTYPE"
1646
 
1647
  #: inc/class-destination-ftp.php:590
 
1648
  msgid "FTP current folder is: %s"
1649
  msgstr "Actual carpeta FTP es : %s"
1650
 
@@ -1673,18 +1681,23 @@ msgid "Cannot transfer backup to FTP server!"
1673
  msgstr "Imposible transferir respaldo a servidor FTP!"
1674
 
1675
  #: inc/class-destination-ftp.php:656
 
1676
  msgid "Backup transferred to FTP server: %s"
1677
  msgstr "Respaldo enviado a servidor FTP: %s"
1678
 
 
1679
  #: inc/class-destination-ftp.php:735
 
1680
  msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
1681
  msgstr "Carpeta FTP \"%s\" no se puede crear!."
1682
 
1683
  #: inc/class-destination-ftp.php:753
 
1684
  msgid "FTP Folder \"%s\" cannot be created!"
1685
  msgstr "Carpeta FTP \"%s\" no se puede crear!"
1686
 
1687
  #: inc/class-destination-ftp.php:765
 
1688
  msgid "FTP Folder \"%s\" created!"
1689
  msgstr "Carpeta FTP \"%s\" creada!"
1690
 
@@ -1719,6 +1732,7 @@ msgid "Folder in container"
1719
  msgstr "Carpeta en contenedor"
1720
 
1721
  #: inc/class-destination-msazure.php:215
 
1722
  msgid "%d. Try sending backup to a Microsoft Azure (Blob)&#160;&hellip;"
1723
  msgstr "%d. Prueba enviando copia de seguridad a Microsoft Azure (Blob)&#160;&hellip;"
1724
 
@@ -1727,6 +1741,7 @@ msgid "Starting upload to MS Azure&#160;&hellip;"
1727
  msgstr "Empezando subida a MS Azure&#160;&hellip;"
1728
 
1729
  #: inc/class-destination-msazure.php:345
 
1730
  msgid "One file deleted on Microsoft Azure container."
1731
  msgid_plural "%d files deleted on Microsoft Azure container."
1732
  msgstr[0] "Fichero eliminado de Microsoft Azure."
@@ -1749,16 +1764,17 @@ msgid "Select region"
1749
  msgstr "Seleccionar una región"
1750
 
1751
  #: inc/class-destination-rsc.php:99
1752
- #: inc/class-destination-s3.php:171
1753
  #: inc/class-destination-s3.php:202
1754
  msgid "Folder in bucket"
1755
  msgstr "Carpeta en cubo"
1756
 
1757
  #: inc/class-destination-rsc.php:260
 
1758
  msgid "%d. Trying to send backup file to Rackspace cloud &hellip;"
1759
  msgstr "%d. Prueba enviando copia seguridad a Rackspace cloud &hellip;"
1760
 
1761
  #: inc/class-destination-rsc.php:274
 
1762
  msgid "Connected to Rackspace cloud files container %s"
1763
  msgstr "Conectado a contenedor de archivos “%s” Rackspace"
1764
 
@@ -1775,6 +1791,7 @@ msgid "Cannot transfer backup to Rackspace cloud."
1775
  msgstr "Imposible transferir respaldo a RackSpace."
1776
 
1777
  #: inc/class-destination-rsc.php:356
 
1778
  msgid "One file deleted on Rackspace cloud container."
1779
  msgid_plural "%d files deleted on Rackspace cloud container."
1780
  msgstr[0] "Un fichero eliminado de Rackspace."
@@ -1792,131 +1809,123 @@ msgstr "Claves API no localizadas !"
1792
  msgid "A container could not be found!"
1793
  msgstr "Un contenedor no puede ser localizado!"
1794
 
1795
- #: inc/class-destination-s3.php:47
 
 
 
 
1796
  #: inc/class-destination-s3.php:48
1797
  msgid "Select a S3 service"
1798
  msgstr "Selecciona un servicio S3"
1799
 
1800
- #: inc/class-destination-s3.php:67
1801
  #: inc/class-destination-s3.php:68
1802
  msgid "Or a S3 Server URL"
1803
  msgstr "O una URL de servidor S3"
1804
 
1805
- #: inc/class-destination-s3.php:84
 
 
 
 
 
 
 
 
 
 
 
 
1806
  #: inc/class-destination-s3.php:115
1807
  msgid "S3 Access Keys"
1808
  msgstr "Claves de acceso S3"
1809
 
1810
- #: inc/class-destination-s3.php:114
1811
  #: inc/class-destination-s3.php:145
1812
  msgid "S3 Bucket"
1813
  msgstr "Cubo S3 (Bucket)"
1814
 
1815
- #: inc/class-destination-s3.php:120
1816
  #: inc/class-destination-s3.php:151
1817
  msgid "Bucket selection"
1818
  msgstr "Selección de cubo (Bucket)"
1819
 
1820
- #: inc/class-destination-s3.php:149
1821
  #: inc/class-destination-s3.php:180
1822
  msgid "Create a new bucket"
1823
  msgstr "Crear un nuevo cubo (bucket)"
1824
 
1825
- #: inc/class-destination-s3.php:165
1826
  #: inc/class-destination-s3.php:196
1827
  msgid "S3 Backup settings"
1828
  msgstr "Parámetros S3"
1829
 
1830
- #: inc/class-destination-s3.php:222
1831
- #: inc/class-destination-s3.php:86
1832
- msgid "Multipart Upload"
1833
- msgstr "Subida multi-partes"
1834
-
1835
- #: inc/class-destination-s3.php:233
1836
- #: inc/class-destination-s3.php:98
1837
- msgid "Use multipart upload for uploading a file"
1838
- msgstr "Utiliza subida multi-partes para subir un fichero"
1839
-
1840
- #: inc/class-destination-s3.php:246
1841
  #: inc/class-destination-s3.php:252
1842
  msgid "Amazon specific settings"
1843
  msgstr "Configuración específica para Amazon"
1844
 
1845
- #: inc/class-destination-s3.php:251
1846
  #: inc/class-destination-s3.php:257
1847
  #: inc/class-destination-s3.php:263
1848
  msgid "Amazon: Storage Class"
1849
  msgstr "Amazon: Clase de almacenamiento"
1850
 
1851
- #: inc/class-destination-s3.php:260
1852
  #: inc/class-destination-s3.php:266
1853
  msgid "Standard"
1854
  msgstr "Standard"
1855
 
1856
- #: inc/class-destination-s3.php:264
1857
  #: inc/class-destination-s3.php:270
1858
  msgid "Standard-Infrequent Access"
1859
  msgstr "Acceso Standard Infrequente"
1860
 
1861
- #: inc/class-destination-s3.php:272
1862
  #: inc/class-destination-s3.php:278
1863
  msgid "Reduced Redundancy"
1864
  msgstr "Reducida la redundancia"
1865
 
1866
- #: inc/class-destination-s3.php:291
1867
  #: inc/class-destination-s3.php:297
1868
  msgid "Save files encrypted (AES256) on server."
1869
  msgstr "Guardar archivos encriptados (AES256) en servidor."
1870
 
1871
- #: inc/class-destination-s3.php:361
1872
  #: inc/class-destination-s3.php:367
1873
  msgid "No bucket found!"
1874
  msgstr "Cubo no localizado!"
1875
 
1876
- #: inc/class-destination-s3.php:511
1877
  #: inc/class-destination-s3.php:517
 
1878
  msgid "Bucket %1$s created."
1879
  msgstr "Se ha creado el bucket %1$s."
1880
 
1881
- #: inc/class-destination-s3.php:693
1882
  #: inc/class-destination-s3.php:699
 
1883
  msgid "Storage Class: %s"
1884
  msgstr "Storage Class: %s"
1885
 
1886
- #: inc/class-destination-s3.php:728
1887
  #: inc/class-destination-s3.php:734
 
1888
  msgid "Cannot delete backup from %s."
1889
  msgstr "Imposible eliminar respaldo desde %s."
1890
 
1891
- #: inc/class-destination-s3.php:740
1892
  #: inc/class-destination-s3.php:746
 
1893
  msgid "One file deleted on S3 Bucket."
1894
  msgid_plural "%d files deleted on S3 Bucket"
1895
  msgstr[0] "Un fichero eliminado en Cubo S3."
1896
  msgstr[1] "%d ficheros eliminados en Cubo S3"
1897
 
1898
- #: inc/class-destination-s3.php:762
1899
  #: inc/class-destination-s3.php:777
 
1900
  msgid "%d. Trying to send backup file to S3 Service&#160;&hellip;"
1901
  msgstr "%d. Prieba enviando copia de seguridad a S3 Service&#160;&hellip;"
1902
 
1903
- #: inc/class-destination-s3.php:799
1904
  #: inc/class-destination-s3.php:817
1905
  msgid "Checking for not aborted multipart Uploads&#160;&hellip;"
1906
  msgstr "Comprobación para multipart no abortado Uploads&#160;&hellip;"
1907
 
1908
- #: inc/class-destination-s3.php:812
1909
  #: inc/class-destination-s3.php:830
 
1910
  msgid "Upload for %s aborted."
1911
  msgstr "Subida para %s abortada."
1912
 
1913
- #: inc/class-destination-s3.php:818
1914
  #: inc/class-destination-s3.php:836
1915
  msgid "Starting upload to S3 Service&#160;&hellip;"
1916
  msgstr "Empezando subida a S3 Service&#160;&hellip;"
1917
 
1918
- #: inc/class-destination-s3.php:970
1919
  #: inc/class-destination-s3.php:988
 
1920
  msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1921
  msgstr "Imposible transferir respaldo a S3! (%1$d) %2$s"
1922
 
@@ -1942,19 +1951,23 @@ msgid "Folder in root"
1942
  msgstr "Carpeta en root"
1943
 
1944
  #: inc/class-destination-sugarsync.php:233
 
1945
  msgid "%d. Try to send backup to SugarSync&#160;&hellip;"
1946
  msgstr "%d. Prueba enviando copia de seguridad a SugarSync&#160;&hellip;"
1947
 
1948
  #: inc/class-destination-sugarsync.php:240
 
1949
  msgid "Authenticated to SugarSync with nickname %s"
1950
  msgstr "Identificado en SugarSync con nombre de usuario %s"
1951
 
1952
  #: inc/class-destination-sugarsync.php:243
 
1953
  msgctxt "Available space on SugarSync"
1954
  msgid "Not enough disk space available on SugarSync. Available: %s."
1955
  msgstr "No hay suficiente espacio libre en SugarSync. Libre : %s."
1956
 
1957
  #: inc/class-destination-sugarsync.php:249
 
1958
  msgid "%s available at SugarSync"
1959
  msgstr "%s disponible en SugarSync"
1960
 
@@ -1967,12 +1980,14 @@ msgid "Cannot transfer backup to SugarSync!"
1967
  msgstr "Imposible transferir respaldo a SugarSync!"
1968
 
1969
  #: inc/class-destination-sugarsync.php:305
 
1970
  msgid "One file deleted on SugarSync folder"
1971
  msgid_plural "%d files deleted on SugarSync folder"
1972
  msgstr[0] "Un fichero eliminado en SugarSync"
1973
  msgstr[1] "%d ficheros eliminados en SugarSync"
1974
 
1975
  #: inc/class-destination-sugarsync.php:311
 
1976
  msgid "SugarSync API: %s"
1977
  msgstr "SugarSync API: %s"
1978
 
@@ -1981,6 +1996,7 @@ msgid "Invalid file name, seems file include invalid characters."
1981
  msgstr "Nombre de archivo no válido, parece que el archivo incluye carácteres inválidos."
1982
 
1983
  #: inc/class-easycron.php:179
 
1984
  msgid "EasyCron.com API returns (%s): %s"
1985
  msgstr "EasyCron.com API devuelve (%s): %s"
1986
 
@@ -2005,18 +2021,22 @@ msgid "If you check this box, a cron job will be created on EasyCron that all 5
2005
  msgstr "Si seleccionas esta opción, un trabajo de cron será creado en EasyCron que llama a WordPress cron cada 5 minutes."
2006
 
2007
  #: inc/class-file.php:142
 
2008
  msgid "Folder %1$s not allowed, please use another folder."
2009
  msgstr "Directorio %1$s no permitido, por favor usa otro directorio."
2010
 
2011
  #: inc/class-file.php:147
 
2012
  msgid "Folder %1$s is not in open basedir, please use another folder."
2013
  msgstr "Directorio %1$s no está en open basedir, por favor usa otro."
2014
 
2015
  #: inc/class-file.php:153
 
2016
  msgid "Cannot create folder: %1$s"
2017
  msgstr "Imposible crear esa carpeta : %1$s"
2018
 
2019
  #: inc/class-file.php:159
 
2020
  msgid "Folder \"%1$s\" is not writable"
2021
  msgstr "Carpeta \"%1$s\" no es escribible"
2022
 
@@ -2029,6 +2049,7 @@ msgid "Plugin Info"
2029
  msgstr "Info de la extension (plug in)"
2030
 
2031
  #: inc/class-help.php:17
 
2032
  msgctxt "Plugin name and link; Plugin Version"
2033
  msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>."
2034
  msgstr "%1$s version %2$s. Un proyecto de <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Desarrollado por <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
@@ -2061,512 +2082,527 @@ msgstr "Vérificador de trabajos de BackWPup"
2061
  msgid "BackWPup jobs helper"
2062
  msgstr "Ayuda de trabajos de BackWPup"
2063
 
2064
- #: inc/class-job.php:269
2065
  msgid "Starting job"
2066
  msgstr "Comenzando trabajo"
2067
 
2068
- #: inc/class-job.php:284
2069
  msgid "Job Start"
2070
  msgstr "Comienzo de trabajo"
2071
 
2072
- #: inc/class-job.php:304
2073
  msgid "Creates manifest file"
2074
  msgstr "Crea el archivo manifest"
2075
 
2076
- #: inc/class-job.php:326
2077
  msgid "Creates archive"
2078
  msgstr "Crea archivo"
2079
 
2080
- #: inc/class-job.php:332
2081
  msgid "Encrypts the archive"
2082
  msgstr "Encripta el archivo"
2083
 
2084
- #: inc/class-job.php:373
2085
  msgid "End of Job"
2086
  msgstr "Final del Trabajo"
2087
 
2088
- #: inc/class-job.php:395
 
2089
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2090
  msgstr "BackWPup log para %1$s de %2$s à %3$s"
2091
 
2092
- #: inc/class-job.php:412
 
 
2093
  msgctxt "Plugin name; Plugin Version; plugin url"
2094
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2095
  msgstr "[INFO] %1$s %2$s; Un proyecto de Inpsyde GmbH"
2096
 
2097
- #: inc/class-job.php:413
 
2098
  msgctxt "WordPress Version; Blog url"
2099
  msgid "[INFO] WordPress %1$s on %2$s"
2100
  msgstr "[INFO]: WordPress %1$s en %2$s"
2101
 
2102
- #: inc/class-job.php:414
2103
  msgid "Normal"
2104
  msgstr "Normal"
2105
 
2106
- #: inc/class-job.php:417
2107
  msgid "Debug"
2108
  msgstr "Debug"
2109
 
2110
- #: inc/class-job.php:420
2111
  msgid "(translated)"
2112
  msgstr "(traducido)"
2113
 
2114
- #: inc/class-job.php:422
 
2115
  msgid "[INFO] Log Level: %1$s %2$s"
2116
  msgstr "[INFO] Log Level: %1$s %2$s"
2117
 
2118
- #: inc/class-job.php:427
 
2119
  msgid "[INFO] BackWPup job: %1$s"
2120
  msgstr "[INFO]: Trabajo de BackWPup: %1$s"
2121
 
2122
- #: inc/class-job.php:430
 
2123
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2124
  msgstr "[INFO] Se ejecuta con el usuario: %1$s (%2$d) "
2125
 
2126
- #: inc/class-job.php:444
2127
  #: inc/class-page-backwpup.php:323
2128
  #: inc/class-page-jobs.php:282
2129
  #: inc/class-page-jobs.php:291
2130
  msgid "Not scheduled!"
2131
  msgstr "Sin programación !"
2132
 
2133
- #: inc/class-job.php:448
2134
- #: inc/class-job.php:458
 
2135
  msgid "[INFO] Cron: %s; Next: %s "
2136
  msgstr "[INFO] Cron: %s; Siguiente:%s "
2137
 
2138
- #: inc/class-job.php:451
2139
  msgid "[INFO] BackWPup job start with link is active"
2140
  msgstr "[INFO] El trabajo BackWPup empieza si el enlace está activo"
2141
 
2142
- #: inc/class-job.php:453
2143
  msgid "[INFO] BackWPup job start with EasyCron.com"
2144
  msgstr "[INFO] El trabajo BackWPup empieza con EasyCron.com"
2145
 
2146
- #: inc/class-job.php:461
2147
  msgid "[INFO] BackWPup no automatic job start configured"
2148
  msgstr "[INFO] Trabajo no automático BackWPup empieza configurado"
2149
 
2150
- #: inc/class-job.php:465
2151
  msgid "[INFO] BackWPup job started from wp-cron"
2152
  msgstr "[INFO] Trabajo de BackWPup comenzó desde wp-cron"
2153
 
2154
- #: inc/class-job.php:467
2155
  msgid "[INFO] BackWPup job started manually"
2156
  msgstr "[INFO] Trabajo de BackWPup comenzó manualmente"
2157
 
2158
- #: inc/class-job.php:469
2159
  msgid "[INFO] BackWPup job started from external url"
2160
  msgstr "[INFO] Trabajo de BackWPup comenzó desde URL externa"
2161
 
2162
- #: inc/class-job.php:471
 
2163
  msgid "[INFO] BackWPup job started form commandline interface"
2164
  msgstr "[INFO] Trabajo de BackWPup comenzó desde interfaz de línea de comandos"
2165
 
2166
- #: inc/class-job.php:480
 
2167
  msgid "[INFO] PHP ver.:"
2168
  msgstr "[INFO] version PHP:"
2169
 
2170
- #: inc/class-job.php:481
 
2171
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2172
  msgstr "[INFO] El tiempo máximo de ejecución de PHP script son %1$d segundos"
2173
 
2174
- #: inc/class-job.php:485
 
2175
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2176
  msgstr "[INFO] El tiemp de reinicio está configurado en %1$d segundos"
2177
 
2178
- #: inc/class-job.php:488
 
2179
  msgid "[INFO] MySQL ver.: %s"
2180
  msgstr "[INFO] Version MySQL: %s"
2181
 
2182
- #: inc/class-job.php:490
 
2183
  msgid "[INFO] Web Server: %s"
2184
  msgstr "[INFO] Web Server: %s"
2185
 
2186
- #: inc/class-job.php:494
 
2187
  msgid "[INFO] curl ver.: %1$s; %2$s"
2188
  msgstr "[INFO] Version curl : %1$s; %2$s"
2189
 
2190
- #: inc/class-job.php:496
 
2191
  msgid "[INFO] Temp folder is: %s"
2192
  msgstr "[INFO] Carpeta temporal es : %s"
2193
 
2194
- #: inc/class-job.php:503
 
2195
  msgid "[INFO] Logfile is: %s"
2196
  msgstr "[INFO] Carpeta de archivos de logs es : %s"
2197
 
2198
- #: inc/class-job.php:510
 
2199
  msgid "[INFO] Backup file is: %s"
2200
  msgstr "[INFO] Fichero de respaldo es : %s"
2201
 
2202
- #: inc/class-job.php:512
 
2203
  msgid "[INFO] Backup type is: %s"
2204
  msgstr "[INFO] Tipo de respaldo es : %s"
2205
 
2206
- #: inc/class-job.php:520
2207
  msgid "Could not write log file"
2208
  msgstr "No se pudo escribir el archivo de registro"
2209
 
2210
- #: inc/class-job.php:532
2211
  msgid "No destination correctly defined for backup! Please correct job settings."
2212
  msgstr "Destino no se ha definido correctamente para respaldo! Por favor corrija configuración del trabajo."
2213
 
2214
- #: inc/class-job.php:628
2215
  msgid "Cannot write progress to working file. Job will be aborted."
2216
  msgstr "No se puede escribir progreso en el archivo de trabajo. El trabajo será abortado."
2217
 
2218
- #: inc/class-job.php:700
2219
  #: inc/class-page-jobs.php:786
2220
  msgid "WARNING:"
2221
  msgstr "ADVERTENCIA :"
2222
 
2223
- #: inc/class-job.php:709
2224
  #: inc/class-page-jobs.php:784
2225
  msgid "ERROR:"
2226
  msgstr "ERROR:"
2227
 
2228
- #: inc/class-job.php:713
2229
  msgid "DEPRECATED:"
2230
  msgstr "DEPRECIADO :"
2231
 
2232
- #: inc/class-job.php:716
2233
  msgid "STRICT NOTICE:"
2234
  msgstr "AVISO ESTRICTO :"
2235
 
2236
- #: inc/class-job.php:721
2237
  msgid "RECOVERABLE ERROR:"
2238
  msgstr "ERROR RECUPERABLE :"
2239
 
2240
- #: inc/class-job.php:972
2241
  msgid "Aborted by user!"
2242
  msgstr "Abortado por el usuario!"
2243
 
2244
- #: inc/class-job.php:1005
 
2245
  msgid "One old log deleted"
2246
  msgid_plural "%d old logs deleted"
2247
  msgstr[0] "Borrado un log antiguo"
2248
  msgstr[1] "%d logs antiguos borrados"
2249
 
2250
- #: inc/class-job.php:1012
2251
  #: inc/class-page-jobs.php:784
 
 
2252
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2253
  msgstr "Job mit Fehlern beendet in %s Sekunden. Sie müssen die Fehler für eine korrekte Ausführung beheben."
2254
 
2255
- #: inc/class-job.php:1014
 
 
2256
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2257
  msgstr "Trabajo finalizado con errores en %s segundos. Por favor resuélvelos para una correcta ejecución."
2258
 
2259
- #: inc/class-job.php:1016
2260
  #: inc/class-page-jobs.php:788
 
2261
  msgid "Job done in %s seconds."
2262
  msgstr "Trabajo realizado en %s segundos."
2263
 
2264
- #: inc/class-job.php:1060
2265
  msgid "SUCCESSFUL"
2266
  msgstr "EXITOSO"
2267
 
2268
- #: inc/class-job.php:1062
2269
  msgid "WARNING"
2270
  msgstr "AVISO"
2271
 
2272
- #: inc/class-job.php:1065
2273
  msgid "ERROR"
2274
  msgstr "ERREUR"
2275
 
2276
- #: inc/class-job.php:1068
 
2277
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2278
  msgstr "[%3$s] BackWPup log %1$s: %2$s"
2279
 
2280
- #: inc/class-job.php:1180
 
2281
  msgid "Restart after %1$d seconds."
2282
  msgstr "Reinicio después de %1$d segundos."
2283
 
2284
- #: inc/class-job.php:1182
2285
  msgid "Restart after getting signal."
2286
  msgstr "Reinicio después de obtener señal."
2287
 
2288
- #: inc/class-job.php:1357
2289
  msgid "Job restarts due to inactivity for more than 5 minutes."
2290
  msgstr "El trabajo se reinicia debido a inactividad mayor de 5 minutos."
2291
 
2292
- #: inc/class-job.php:1455
2293
  msgid "Step aborted: too many attempts!"
2294
  msgstr "Etapa abortada: demasiados intentos !"
2295
 
2296
- #: inc/class-job.php:1528
 
2297
  msgid "%d. Trying to create backup archive &hellip;"
2298
  msgstr "%d. Prueba creando copia de seguridad archivo &hellip;"
2299
 
2300
- #: inc/class-job.php:1536
 
 
2301
  msgctxt "Archive compression method"
2302
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2303
  msgstr "Comprimiendo archivos como %s. Por favor sé paciente, esto puede tardar un momento."
2304
 
2305
- #: inc/class-job.php:1543
2306
- #: inc/class-job.php:1544
2307
  msgid "Adding Extra files to Archive"
2308
  msgstr "Añadiendo archivos extra al Archivo"
2309
 
2310
- #: inc/class-job.php:1554
2311
- #: inc/class-job.php:1614
2312
- #: inc/class-job.php:1555
2313
- #: inc/class-job.php:1626
2314
  msgid "Cannot create backup archive correctly. Aborting creation."
2315
  msgstr "No se puede crear archivo de copia de seguridad correctamente. Abortando creación."
2316
 
2317
- #: inc/class-job.php:1570
2318
- #: inc/class-job.php:1571
2319
  msgid "Archiving Folder: %s"
2320
  msgstr "Archivando Directorio: %s"
2321
 
2322
- #: inc/class-job.php:1624
2323
- #: inc/class-job.php:1636
2324
  msgid "Backup archive created."
2325
  msgstr "Creado fichero de respaldo."
2326
 
2327
- #: inc/class-job.php:1638
2328
- #: inc/class-job.php:1650
2329
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2330
  msgstr "El archivo de copia de seguridad es demasiado largo para esta versión de PHP. Debes considerar dividir el trabajo de la copia de seguridad en múltiples trabajos con menos archivos cada uno."
2331
 
2332
- #: inc/class-job.php:1641
2333
- #: inc/class-job.php:1653
2334
  msgid "Archive size is %s."
2335
  msgstr "Tamaño de archivo es %s."
2336
 
2337
- #: inc/class-job.php:1644
2338
- #: inc/class-job.php:1656
2339
  msgid "%1$d Files with %2$s in Archive."
2340
  msgstr "%1$d ficheros con %2$s en Archivo."
2341
 
2342
- #: inc/class-job.php:1677
2343
- #: inc/class-job.php:1689
2344
  msgid "No encryption key was provided. Aborting encryption."
2345
  msgstr "No se proporcionó ninguna clave de cifrado. Abortar el cifrado."
2346
 
2347
- #: inc/class-job.php:1684
2348
- #: inc/class-job.php:1696
2349
  msgid "%d. Trying to encrypt archive &hellip;"
2350
  msgstr "%d. Prueba encriptando copia de seguridad archivo &hellip;"
2351
 
2352
- #: inc/class-job.php:1694
2353
- #: inc/class-job.php:1706
2354
  msgid "Cannot open the archive for reading. Aborting encryption."
2355
  msgstr "No se puede crear archivo de copia de seguridad correctamente. Abortando encriptación."
2356
 
2357
- #: inc/class-job.php:1700
2358
- #: inc/class-job.php:1712
2359
  msgid "Cannot write the encrypted archive. Aborting encryption."
2360
  msgstr "No se puede escribir en el archivo encriptado. Abortando encriptación."
2361
 
2362
- #: inc/class-job.php:1757
2363
- #: inc/class-job.php:1769
2364
  msgid "Encrypted %s of data."
2365
  msgstr "Subiendo %s de datos."
2366
 
2367
- #: inc/class-job.php:1761
2368
- #: inc/class-job.php:1773
2369
  msgid "Unable to delete unencrypted archive."
2370
  msgstr "No se puede eliminar el archivo no cifrado."
2371
 
2372
- #: inc/class-job.php:1765
2373
- #: inc/class-job.php:1777
2374
  msgid "Unable to rename encrypted archive."
2375
  msgstr "No se puede cambiar el nombre del archivo cifrado."
2376
 
2377
- #: inc/class-job.php:1770
2378
- #: inc/class-job.php:1782
2379
  msgid "Archive has been successfully encrypted."
2380
  msgstr "El archivo se ha cifrado correctamente."
2381
 
2382
- #: inc/class-job.php:1819
2383
- #: inc/class-job.php:1831
2384
  msgctxt "Folder name"
2385
  msgid "Folder %s does not exist"
2386
  msgstr "La carpeta %s no existe"
2387
 
2388
- #: inc/class-job.php:1825
2389
- #: inc/class-job.php:1837
2390
  msgctxt "Folder name"
2391
  msgid "Folder %s is not readable"
2392
  msgstr "Carpeta \"%s\" no permite su lectura"
2393
 
2394
- #: inc/class-job.php:1848
2395
- #: inc/class-job.php:1860
2396
  msgid "Link \"%s\" not following."
2397
  msgstr "No seguir enlace “%s”."
2398
 
2399
- #: inc/class-job.php:1850
2400
- #: inc/class-job.php:1862
2401
  msgid "File \"%s\" is not readable!"
2402
  msgstr "¡Fichero \"%s\" no se puede leer!"
2403
 
2404
- #: inc/class-job.php:1854
2405
- #: inc/class-job.php:1866
 
2406
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2407
  msgstr "Tamaño de archivo %s” no puede ser recuperado. El archivo puede ser demasiado largo y puede no se añadido a la cola."
2408
 
2409
- #: inc/class-job.php:1937
2410
- #: inc/class-job.php:1949
2411
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2412
  msgstr "%d. Prueba generando un manifest file&#160;&hellip;"
2413
 
2414
- #: inc/class-job.php:1993
2415
- #: inc/class-job.php:2005
2416
  msgid "You may have noticed the manifest.json file in this archive."
2417
  msgstr "Usted puede haber notado el archivo manifest.json en este archivo."
2418
 
2419
- #: inc/class-job.php:1994
2420
- #: inc/class-job.php:2006
2421
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2422
  msgstr "manifest.json podría ser necesaria para su posterior restauración de una copia de seguridad de este archivo."
2423
 
2424
- #: inc/class-job.php:1995
2425
- #: inc/class-job.php:2007
2426
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2427
  msgstr "Por favor deje sin tocar manifest.json y en su sitio. De otro modo la seguridad será ignorada."
2428
 
2429
- #: inc/class-job.php:2005
2430
- #: inc/class-job.php:2017
2431
  msgid "Added manifest.json file with %1$s to backup file list."
2432
  msgstr "Añadido manifest.json con %1$s a lista de archivos de copia de seguridad."
2433
 
2434
- #: inc/class-job.php:2044
2435
- #: inc/class-job.php:2056
2436
  msgid "Wrong BackWPup JobID"
2437
  msgstr "ID de trabajo BackWPup erróneo"
2438
 
2439
- #: inc/class-job.php:2057
2440
- #: inc/class-job.php:2069
2441
  msgid "A BackWPup job is already running"
2442
  msgstr "Un trabajo de BackWPup esta en curso aún"
2443
 
2444
- #: inc/class-job.php:2439
2445
- #: inc/class-job.php:2451
2446
  msgid "exec command is not active."
2447
  msgstr "El comando exec no está activo."
2448
 
2449
- #: inc/class-job.php:2444
2450
- #: inc/class-job.php:2456
2451
  msgid "mysqldump binary not found."
2452
  msgstr "binary mysqldump no encontrado."
2453
 
2454
- #: inc/class-job.php:2470
2455
- #: inc/class-job.php:2482
2456
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2457
  msgid "Hangup detected on controlling terminal or death of controlling process"
2458
  msgstr "Hangup detectado en el control de la terminal o la muerte del proceso de control"
2459
 
2460
- #: inc/class-job.php:2474
2461
- #: inc/class-job.php:2486
2462
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2463
  msgid "Interrupt from keyboard"
2464
  msgstr "Interrupción del teclado"
2465
 
2466
- #: inc/class-job.php:2478
2467
- #: inc/class-job.php:2490
2468
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2469
  msgid "Quit from keyboard"
2470
  msgstr "Salir del teclado"
2471
 
2472
- #: inc/class-job.php:2482
2473
- #: inc/class-job.php:2494
2474
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2475
  msgid "Illegal Instruction"
2476
  msgstr "Instrucción ilegal"
2477
 
2478
- #: inc/class-job.php:2486
2479
- #: inc/class-job.php:2498
2480
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2481
  msgid "Abort signal from abort(3)"
2482
  msgstr "Cancelación de la señal del aborto (3)"
2483
 
2484
- #: inc/class-job.php:2490
2485
- #: inc/class-job.php:2502
2486
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2487
  msgid "Bus error (bad memory access)"
2488
  msgstr "Error de bus (mal acceso a la memoria)"
2489
 
2490
- #: inc/class-job.php:2494
2491
- #: inc/class-job.php:2506
2492
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2493
  msgid "Floating point exception"
2494
  msgstr "Excepción de punto flotante"
2495
 
2496
- #: inc/class-job.php:2498
2497
- #: inc/class-job.php:2510
2498
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2499
  msgid "Invalid memory reference"
2500
  msgstr "Referencia de memoria no válida"
2501
 
2502
- #: inc/class-job.php:2502
2503
- #: inc/class-job.php:2514
2504
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2505
  msgid "Termination signal"
2506
  msgstr "Señal de terminación"
2507
 
2508
- #: inc/class-job.php:2506
2509
- #: inc/class-job.php:2518
2510
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2511
  msgid "Stack fault on coprocessor"
2512
  msgstr "Error de pila en el coprocesador"
2513
 
2514
- #: inc/class-job.php:2510
2515
- #: inc/class-job.php:2522
2516
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2517
  msgid "User-defined signal 1"
2518
  msgstr "Señal definida por el usuario 1"
2519
 
2520
- #: inc/class-job.php:2514
2521
- #: inc/class-job.php:2526
2522
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2523
  msgid "User-defined signal 2"
2524
  msgstr "User-defined signal 2"
2525
 
2526
- #: inc/class-job.php:2518
2527
- #: inc/class-job.php:2530
2528
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2529
  msgid "Urgent condition on socket"
2530
  msgstr "Condición urgente en el socket"
2531
 
2532
- #: inc/class-job.php:2522
2533
- #: inc/class-job.php:2534
2534
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2535
  msgid "CPU time limit exceeded"
2536
  msgstr "Límite de tiempo de CPU excedido"
2537
 
2538
- #: inc/class-job.php:2526
2539
- #: inc/class-job.php:2538
2540
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2541
  msgid "File size limit exceeded"
2542
  msgstr "Excede el límite de tamaño de archivo"
2543
 
2544
- #: inc/class-job.php:2530
2545
- #: inc/class-job.php:2542
2546
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2547
  msgid "Power failure"
2548
  msgstr "FTP : Fallo de identificación"
2549
 
2550
- #: inc/class-job.php:2534
2551
- #: inc/class-job.php:2546
2552
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2553
  msgid "Bad argument to routine"
2554
  msgstr "Mal argumento a la rutina"
2555
 
2556
- #: inc/class-job.php:2541
2557
- #: inc/class-job.php:2553
2558
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2559
  msgstr "¡La señal “%1$s” (%2$s) se envía a la secuencia de comandos!"
2560
 
2561
- #: inc/class-job.php:2575
2562
- #: inc/class-job.php:2588
2563
- #: inc/class-job.php:2587
2564
- #: inc/class-job.php:2600
2565
  msgid "System: %s"
2566
  msgstr "Sistema: %s"
2567
 
2568
- #: inc/class-job.php:2603
2569
- #: inc/class-job.php:2615
2570
  msgid "Exception caught in %1$s: %2$s"
2571
  msgstr "Excepción sucedida en %1$s: %2$s"
2572
 
@@ -2591,26 +2627,31 @@ msgid "Repair"
2591
  msgstr "Reparación"
2592
 
2593
  #: inc/class-jobtype-dbcheck.php:79
 
2594
  msgid "%d. Trying to check database&#160;&hellip;"
2595
  msgstr "%d. Prueba comprobando database&#160;&hellip;"
2596
 
2597
  #: inc/class-jobtype-dbcheck.php:111
 
2598
  msgid "Table %1$s is a view. Not checked."
2599
  msgstr "Tabla %1$s es una vista. Sin comprobar aún."
2600
 
2601
  #: inc/class-jobtype-dbcheck.php:116
 
2602
  msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked."
2603
  msgstr "Tabla %1$s no es una tabla MyISAM/InnoDB. Sin comprobar aún."
2604
 
2605
  #: inc/class-jobtype-dbcheck.php:124
2606
  #: inc/class-jobtype-dbcheck.php:127
2607
  #: inc/class-jobtype-dbcheck.php:129
 
2608
  msgid "Result of table check for %1$s is: %2$s"
2609
  msgstr "Resultado de comprobación de la tabla para %1$s es: %2$s"
2610
 
2611
  #: inc/class-jobtype-dbcheck.php:135
2612
  #: inc/class-jobtype-dbcheck.php:137
2613
  #: inc/class-jobtype-dbcheck.php:139
 
2614
  msgid "Result of table repair for %1$s is: %2$s"
2615
  msgstr "Resultado de la reparación de la tabla para %1$s es: %2$s"
2616
 
@@ -2707,12 +2748,14 @@ msgid "Use one folder above as WordPress install folder! That can be helpful, if
2707
  msgstr "Usar un directorio superior como directorio de instalación de WordPress. Esto puede ser de ayuda, si quieres copia de seguridad de archivos y directorios que no están en el directorio de instalación de WordPress. O si haces una instalación <a href=“https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory”>WordPress en su própio directorio</a>”. Excluir debe ser configurado otra vez."
2708
 
2709
  #: inc/class-jobtype-file.php:238
 
2710
  msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
2711
  msgstr "%d. Prueba haciendo una lista de directorios para copia de seguridad&#160;&hellip;"
2712
 
2713
  #: inc/class-jobtype-file.php:358
2714
  #: inc/class-jobtype-file.php:362
2715
  #: inc/class-jobtype-file.php:379
 
2716
  msgid "Added \"%s\" to backup file list"
2717
  msgstr "Añadido \"%s\" a la lista de archivos a respaldar"
2718
 
@@ -2721,14 +2764,17 @@ msgid "No files/folder for the backup."
2721
  msgstr "No hay archivos/directorios para la copia de seguridad."
2722
 
2723
  #: inc/class-jobtype-file.php:387
 
2724
  msgid "%1$d folders to backup."
2725
  msgstr "%1$d directorios para la copia de seguridad."
2726
 
2727
  #: inc/class-jobtype-file.php:435
 
2728
  msgid "Folder \"%s\" is not readable!"
2729
  msgstr "¡Carpeta \"%s\" no permite su lectura!"
2730
 
2731
  #: inc/class-jobtype-file.php:495
 
2732
  msgid "Path as set by user (symlink?): %s"
2733
  msgstr "Ruta seleccionada por usuario (symlink): %s"
2734
 
@@ -2745,7 +2791,7 @@ msgid "XML export"
2745
  msgstr "Exportar XML"
2746
 
2747
  #: inc/class-jobtype-wpexp.php:14
2748
- #: inc/class-page-about.php:474
2749
  msgid "WordPress XML export"
2750
  msgstr "Exportar XML WordPress"
2751
 
@@ -2770,10 +2816,12 @@ msgid "BZip2"
2770
  msgstr "BZip2"
2771
 
2772
  #: inc/class-jobtype-wpexp.php:112
 
2773
  msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
2774
  msgstr "%d. Prueba creando archivo de exportación WordPress XML&#160;&hellip;"
2775
 
2776
  #: inc/class-jobtype-wpexp.php:127
 
2777
  msgid "WP Export: Post type “%s” does not allow export."
2778
  msgstr "Exportación WordPress: Post type %s” no permite exportación."
2779
 
@@ -2793,14 +2841,17 @@ msgid "Check WP Export file&#160;&hellip;"
2793
  msgstr "Comprueba el archivo de exportación WordPress&#160;&hellip;"
2794
 
2795
  #: inc/class-jobtype-wpexp.php:422
 
2796
  msgid "XML WARNING (%s): %s"
2797
  msgstr "XML ADVERTENCIA (%s): %s"
2798
 
2799
  #: inc/class-jobtype-wpexp.php:425
 
2800
  msgid "XML RECOVERABLE (%s): %s"
2801
  msgstr "ERROR RECUPERABLE (%s): %s"
2802
 
2803
  #: inc/class-jobtype-wpexp.php:428
 
2804
  msgid "XML ERROR (%s): %s"
2805
  msgstr "XML ERROR (%s): %s"
2806
 
@@ -2822,6 +2873,7 @@ msgid "WP Export file can not be checked, because no XML extension is loaded, to
2822
  msgstr "Archivo de exportación WP no se puede comprobar, ya que no tiene extensión XML cargad que se pueda comprobar."
2823
 
2824
  #: inc/class-jobtype-wpexp.php:500
 
2825
  msgid "Added XML export \"%1$s\" with %2$s to backup file list."
2826
  msgstr "Añadida exportación XML \"%1$s\" con %2$s a la lista de archivos a respaldar."
2827
 
@@ -2838,6 +2890,7 @@ msgid "Plugin list file name"
2838
  msgstr "Nombre del fichero de la lista de plugins"
2839
 
2840
  #: inc/class-jobtype-wpplugin.php:96
 
2841
  msgid "%d. Trying to generate a file with installed plugin names&#160;&hellip;"
2842
  msgstr "%d. Prueba generando un archivo con nombres de plugins instalados&#160;&hellip;"
2843
 
@@ -2846,6 +2899,7 @@ msgid "All plugin information:"
2846
  msgstr "Toda la información deplugins:"
2847
 
2848
  #: inc/class-jobtype-wpplugin.php:126
 
2849
  msgid "from %s"
2850
  msgstr "de %s"
2851
 
@@ -2858,6 +2912,7 @@ msgid "Inactive plugins:"
2858
  msgstr "Plugins inactivos:"
2859
 
2860
  #: inc/class-jobtype-wpplugin.php:148
 
2861
  msgid "Added plugin list file \"%1$s\" with %2$s to backup file list."
2862
  msgstr "Añadido archivo de lista de plugins \"%1$s\" con %2$s a la lista de archivos de respaldo."
2863
 
@@ -2870,6 +2925,7 @@ msgid "No MySQLi extension found. Please install it."
2870
  msgstr "Extensión MySQLi no localizada.Por favor, instálela."
2871
 
2872
  #: inc/class-mysqldump.php:117
 
2873
  msgctxt "Database Charset"
2874
  msgid "Cannot set DB charset to %s error: %s"
2875
  msgstr "Imposible seleccionar caracter de DB a %s error: %s"
@@ -2879,10 +2935,12 @@ msgid "Cannot open SQL backup file"
2879
  msgstr "El archivo de la copia de seguridad SQL no se puede abrir"
2880
 
2881
  #: inc/class-mysqldump.php:479
 
2882
  msgid "Start for table backup is not correctly set: %1$s"
2883
  msgstr "El inicio para la copia de seguridad de la tabla no está configurado correctamente: %1$s"
2884
 
2885
  #: inc/class-mysqldump.php:483
 
2886
  msgid "Length for table backup is not correctly set: %1$s"
2887
  msgstr "La longitud de la copia de seguridad de la tabla no está configurada correctamente: %1$s"
2888
 
@@ -2896,276 +2954,293 @@ msgstr "Error escribiendo fichero!"
2896
  msgid "New Job"
2897
  msgstr "Nuevo trabajo"
2898
 
2899
- #: inc/class-page-about.php:371
 
 
 
 
 
 
2900
  msgid "Welcome to BackWPup Pro"
2901
  msgstr "Bienvenido a BackWPup Pro"
2902
 
2903
- #: inc/class-page-about.php:372
2904
  #: inc/class-page-backwpup.php:75
2905
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2906
  msgstr "Los asistentes de trabajo de BackWPup facilitan la planificación y programación de tus copias de seguridad."
2907
 
2908
- #: inc/class-page-about.php:373
2909
- #: inc/class-page-about.php:386
2910
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2911
- msgstr "Utiliza tus archivos de copia de seguridad para guardar tu instalación WordPress incluyendo <code>/wp-content/</code>. Añádelos a un servicio de almazenamiento externo si no quieres guardar los archivos en el mismo servidor. Con un solo archivo de copia de seguridad puedes restaurar una instalación."
2912
 
2913
- #: inc/class-page-about.php:374
 
2914
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2915
  msgstr "Listo para <a href=“%1$s”>crear un trabajo de copia de seguridad</a>? Puedes <a href=“%2$s”>usar asistentes</a> o planificar tu copia de seguridad en modo experto."
2916
 
2917
- #: inc/class-page-about.php:384
2918
  msgid "Welcome to BackWPup"
2919
  msgstr "Bienvenido a BackWPup"
2920
 
2921
- #: inc/class-page-about.php:387
2922
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2923
  msgstr "¿Listo para crear un trabajo de copia de seguridad? Utiliza los asistentes para planificar lo que quieres guardar."
2924
 
2925
- #: inc/class-page-about.php:400
2926
  msgid "Save your database"
2927
  msgstr "Salvar tu base de datos"
2928
 
2929
- #: inc/class-page-about.php:403
2930
  msgid "Save your database regularly"
2931
  msgstr "Salvar tu base de datos regularmente"
2932
 
2933
- #: inc/class-page-about.php:404
 
2934
  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."
2935
  msgstr "Con BackWPup puede programar la copia de seguridad de base de datos para que se ejecute automáticamente. Con un archivo de copia de seguridad solo puede restaurar la base de datos. Usted debe <a href=\"%s\"> configurar una tarea (cron) de copia de seguridad </ a>, y nunca lo olvidarás. Hay también una opción para reparar y optimizar la base de datos después de cada copia de seguridad."
2936
 
2937
- #: inc/class-page-about.php:409
2938
- #: inc/class-page-about.php:413
2939
  msgid "WordPress XML Export"
2940
  msgstr "Exportar WordPress XML"
2941
 
2942
- #: inc/class-page-about.php:410
2943
  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."
2944
  msgstr "Puedes elegir el formato de exportación WordPress incorporado acumulado o exclusivo para guardar los datos. Esto funciona en copias de seguridad automatizadas también, por supuesto. La ventaja: se puede importar estos archivos en un blog con el importador normal de WordPress."
2945
 
2946
- #: inc/class-page-about.php:418
2947
  msgid "Save all data from the webserver"
2948
  msgstr "Salvar todos los datos desde el servidor web"
2949
 
2950
- #: inc/class-page-about.php:421
2951
  msgid "Save all files"
2952
  msgstr "Guardar todos los ficheros"
2953
 
2954
- #: inc/class-page-about.php:422
 
2955
  msgid "You can backup 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."
2956
  msgstr "Puedes respaldar todos tus archivos y también tus archivos de sistema, plugins y temas en un solo archivo. Puedes <a href=“%s”>crear un trabajo</a> para actualizar una copia de respaldo de tu sistema de archivos solo cuando los archivos han cambiado."
2957
 
2958
- #: inc/class-page-about.php:427
2959
- #: inc/class-page-about.php:431
2960
  msgid "Security!"
2961
  msgstr "Seguridad!"
2962
 
2963
- #: inc/class-page-about.php:428
2964
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2965
  msgstr "Por defecto todo está codificado: las conexiones a servicios externos, archivos locales y el acceso a los directorios."
2966
 
2967
- #: inc/class-page-about.php:436
2968
- #: inc/class-page-about.php:439
2969
  msgid "Cloud Support"
2970
  msgstr "Soporte Cloud"
2971
 
2972
- #: inc/class-page-about.php:440
2973
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2974
  msgstr "BackWPup soporta multiples servicios de almacenaje en paralelo. Esto asegura que las copias de seguridad son redundantes."
2975
 
2976
- #: inc/class-page-about.php:446
2977
  msgid "Features / differences between Free and Pro"
2978
  msgstr "Caraterísticas / diferencias entre Free y Pro"
2979
 
2980
- #: inc/class-page-about.php:449
2981
  msgid "Features"
2982
  msgstr "Características"
2983
 
2984
- #: inc/class-page-about.php:450
2985
  msgid "FREE"
2986
  msgstr "GRATUIT"
2987
 
2988
- #: inc/class-page-about.php:451
2989
  msgid "PRO"
2990
  msgstr "PRO"
2991
 
2992
- #: inc/class-page-about.php:454
2993
  msgid "Complete database backup"
2994
  msgstr "Respaldo completo de base de datos"
2995
 
2996
- #: inc/class-page-about.php:459
2997
  msgid "Complete file backup"
2998
  msgstr "Respado completo de archivos"
2999
 
3000
- #: inc/class-page-about.php:464
3001
  msgid "Database check"
3002
  msgstr "Comprobación de base de datos"
3003
 
3004
- #: inc/class-page-about.php:469
3005
  msgid "Data compression"
3006
  msgstr "Compresión de datos"
3007
 
3008
- #: inc/class-page-about.php:479
3009
  msgid "List of installed plugins"
3010
  msgstr "Lista de plugins instalados"
3011
 
3012
- #: inc/class-page-about.php:484
3013
  msgid "Backup archives management"
3014
  msgstr "Gestión de archivos de respaldo"
3015
 
3016
- #: inc/class-page-about.php:489
3017
  msgid "Log file management"
3018
  msgstr "Gestión de archivo de log"
3019
 
3020
- #: inc/class-page-about.php:494
3021
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3022
  msgstr "Comenzar trabajos para WP-Cron, URL, sistema, administration o WP-CLI"
3023
 
3024
- #: inc/class-page-about.php:499
3025
  msgid "Log report via email"
3026
  msgstr "Reportar log por email"
3027
 
3028
- #: inc/class-page-about.php:504
3029
  msgid "Backup to Microsoft Azure"
3030
  msgstr "Respaldar a Microsoft Azure"
3031
 
3032
- #: inc/class-page-about.php:509
3033
  msgid "Backup as email"
3034
  msgstr "Respaldo como E-mail"
3035
 
3036
- #: inc/class-page-about.php:514
3037
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3038
  msgstr "Respaldar a servicio S3 (Amazon, Google Storage, Hosteurope y más)"
3039
 
3040
- #: inc/class-page-about.php:529
3041
  msgid "Backup to FTP server"
3042
  msgstr "Respaldar a servidor FTP"
3043
 
3044
- #: inc/class-page-about.php:534
3045
  msgid "Backup to your web space"
3046
  msgstr "Respaldar a espacio de tu sitio web"
3047
 
3048
- #: inc/class-page-about.php:554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3049
  msgid "Custom API keys for DropBox and SugarSync"
3050
  msgstr "Claves API personalizadas para DropBox y Sugarsync"
3051
 
3052
- #: inc/class-page-about.php:559
3053
  msgid "XML database backup as PHPMyAdmin schema"
3054
  msgstr "Respaldar XML base de datos como esquema PHPMyAdmin"
3055
 
3056
- #: inc/class-page-about.php:564
3057
  msgid "Database backup as mysqldump per command line"
3058
  msgstr "Copia de seguridad de base de datos como mysqldump por línea de comandos"
3059
 
3060
- #: inc/class-page-about.php:569
3061
  msgid "Database backup for additional MySQL databases"
3062
  msgstr "Respaldo de base de datos para bases de datos MySQL adicionales"
3063
 
3064
- #: inc/class-page-about.php:574
3065
  msgid "Import and export job settings as XML"
3066
  msgstr "Importar y exportar configuración de trabajos como XML"
3067
 
3068
- #: inc/class-page-about.php:579
3069
  msgid "Wizard for system tests"
3070
  msgstr "Asistente para comprobaciones de sistemas"
3071
 
3072
- #: inc/class-page-about.php:584
3073
  msgid "Wizard for scheduled backup jobs"
3074
  msgstr "Asistente para trabajos de backup programados"
3075
 
3076
- #: inc/class-page-about.php:589
3077
  msgid "Wizard to import settings and backup jobs"
3078
  msgstr "Asistente para importar configuraciones y trabajos de respaldo"
3079
 
3080
- #: inc/class-page-about.php:594
3081
  msgid "Differential backup of changed directories to Dropbox"
3082
  msgstr "Respaldo diferencial de directorios cambiados a DropBox"
3083
 
3084
- #: inc/class-page-about.php:599
3085
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3086
  msgstr "Copia de seguridad diferencial de directorios modificados en Rackspace Cloud File"
3087
 
3088
- #: inc/class-page-about.php:604
3089
  msgid "Differential backup of changed directories to S3"
3090
  msgstr "Copia de seguridad diferencial de directorios cambiados a S3"
3091
 
3092
- #: inc/class-page-about.php:609
3093
  msgid "Differential backup of changed directories to MS Azure"
3094
  msgstr "Copia de seguridad diferencial de directorios modificados en MS Azure"
3095
 
3096
- #: inc/class-page-about.php:614
3097
  msgid "Restore from Folder"
3098
  msgstr "Restaurar desde la carpeta"
3099
 
3100
- #: inc/class-page-about.php:619
3101
  msgid "Restore from Google Drive"
3102
  msgstr "Restaurar desde Google Drive"
3103
 
3104
- #: inc/class-page-about.php:624
3105
  msgid "Restore from Amazon S3"
3106
  msgstr "Restaurar desde Amazon S3"
3107
 
3108
- #: inc/class-page-about.php:629
3109
  msgid "Restore from Dropbox"
3110
  msgstr "Restaurar desde Dropbox"
3111
 
3112
- #: inc/class-page-about.php:634
3113
  msgid "Restore from FTP"
3114
  msgstr "Restaurar desde FTP"
3115
 
3116
- #: inc/class-page-about.php:639
3117
  msgid "<strong>Premium support</strong>"
3118
  msgstr "<strong>Soporte Premium</strong>"
3119
 
3120
- #: inc/class-page-about.php:644
3121
  msgid "<strong>Automatic updates</strong>"
3122
  msgstr "<strong>Automatic updates</strong>"
3123
 
3124
- #: inc/class-page-about.php:651
3125
  msgid "GET PRO"
3126
  msgstr "Pasar a versión PRO"
3127
 
3128
- #: inc/class-page-backups.php:177
3129
  #: inc/class-page-backups.php:158
3130
  msgid "No files could be found. (List will be generated during next backup.)"
3131
  msgstr "No se localizan archivos (La lista se generará durante el siguiente respaldo)"
3132
 
3133
- #: inc/class-page-backups.php:190
3134
- #: inc/class-page-backups.php:325
3135
  #: inc/class-page-jobs.php:113
3136
  #: inc/class-page-jobs.php:177
3137
  #: inc/class-page-logs.php:151
3138
  #: inc/class-page-logs.php:232
3139
- #: inc/class-page-backups.php:168
3140
- #: inc/class-page-backups.php:274
3141
  msgid "Delete"
3142
  msgstr "Borrar"
3143
 
3144
- #: inc/class-page-backups.php:230
3145
  #: inc/class-page-backups.php:203
3146
  msgid "Change destination"
3147
  msgstr "Cambiar destino"
3148
 
3149
- #: inc/class-page-backups.php:274
3150
  #: inc/class-page-backwpup.php:283
3151
  #: inc/class-page-backwpup.php:347
3152
  #: inc/class-page-logs.php:163
3153
- #: inc/class-page-backups.php:241
3154
  msgid "Time"
3155
  msgstr "Hora"
3156
 
3157
- #: inc/class-page-backups.php:275
3158
  #: inc/class-page-backups.php:242
3159
  msgid "File"
3160
  msgstr "Fichero"
3161
 
3162
- #: inc/class-page-backups.php:277
3163
- #: inc/class-page-logs.php:167
3164
  #: inc/class-page-backups.php:244
 
3165
  msgid "Size"
3166
  msgstr "Tamaño"
3167
 
3168
- #: inc/class-page-backups.php:324
3169
  #: inc/class-page-backups.php:273
3170
  msgid ""
3171
  "You are about to delete this backup archive. \n"
@@ -3174,100 +3249,90 @@ msgstr ""
3174
  "Vas a borrar este archivo de respaldo. \n"
3175
  " 'Cancelar' para parar , 'OK' para borrar."
3176
 
3177
- #: inc/class-page-backups.php:334
3178
- #: inc/class-page-backups.php:337
3179
- #: inc/class-page-jobs.php:330
3180
- #: inc/class-page-logs.php:234
3181
- #: inc/class-page-settings.php:779
3182
- #: inc/class-page-settings.php:790
3183
  #: inc/class-page-backups.php:281
3184
  #: inc/class-page-backups.php:285
 
 
3185
  #: inc/class-page-settings.php:768
 
3186
  msgid "Download"
3187
  msgstr "Descargar"
3188
 
3189
- #: inc/class-page-backups.php:377
3190
  #: inc/class-page-backups.php:311
3191
  msgid "?"
3192
  msgstr "?"
3193
 
3194
- #: inc/class-page-backups.php:390
3195
  #: inc/class-page-backwpup.php:321
3196
  #: inc/class-page-backwpup.php:384
3197
  #: inc/class-page-jobs.php:318
3198
  #: inc/class-page-logs.php:190
3199
- #: inc/class-page-backups.php:317
3200
  msgid "%1$s at %2$s"
3201
  msgstr "%1$s à %2$s"
3202
 
3203
- #: inc/class-page-backups.php:408
3204
- #: inc/class-page-backups.php:446
3205
- #: inc/class-page-editjob.php:35
3206
- #: inc/class-page-jobs.php:398
3207
  #: inc/class-page-backups.php:331
3208
  #: inc/class-page-backups.php:369
 
 
3209
  msgid "Sorry, you don't have permissions to do that."
3210
  msgstr "Disculpa, no tienes permisos para realizarlo."
3211
 
3212
- #: inc/class-page-backups.php:488
3213
  #: inc/class-page-backups.php:408
3214
  msgid "&laquo; Go back"
3215
  msgstr "&laquo; Atrás"
3216
 
3217
- #: inc/class-page-backups.php:513
3218
  #: inc/class-page-backups.php:433
3219
  msgid "Backup Files"
3220
  msgstr "Copia de seguridad de archivos"
3221
 
3222
- #: inc/class-page-backups.php:581
3223
  #: inc/class-page-backups.php:489
 
3224
  msgid "%s &rsaquo; Manage Backup Archives"
3225
  msgstr "%s &rsaquo; Gestión de archivos de respaldo"
3226
 
3227
- #: inc/class-page-backups.php:593
3228
  #: inc/class-page-backups.php:501
3229
  msgid "Please wait &hellip;"
3230
  msgstr "Por favor espere &hellip;"
3231
 
3232
- #: inc/class-page-backups.php:596
3233
  #: inc/class-page-backups.php:504
3234
  msgid "Your download is being generated &hellip;"
3235
  msgstr "Su descarga se está generando &hellip;"
3236
 
3237
- #: inc/class-page-backups.php:602
3238
- #: views/pro/restore/steps/step1_action.php:15
3239
  #: inc/class-page-backups.php:510
 
3240
  msgid "Please enter your private key to decrypt your backup."
3241
  msgstr "Por favor ingrese su clave privada para descifrar su copia de seguridad."
3242
 
3243
- #: inc/class-page-backups.php:604
3244
- #: views/pro/restore/steps/step1_action.php:17
3245
  #: inc/class-page-backups.php:512
 
3246
  msgid "The private key you entered was invalid. Please try again."
3247
  msgstr "La clave privada que ingresaste no era válida. Inténtalo de nuevo."
3248
 
3249
- #: inc/class-page-backups.php:607
3250
- #: inc/class-page-settings.php:753
3251
- #: inc/class-page-settings.php:784
3252
- #: views/pro/restore/steps/step1_action.php:20
3253
  #: inc/class-page-backups.php:515
3254
  #: inc/class-page-settings.php:742
3255
  #: inc/class-page-settings.php:773
 
3256
  msgid "Private Key"
3257
  msgstr "Private Access Key"
3258
 
3259
- #: inc/class-page-backups.php:613
3260
- #: views/pro/restore/steps/step1_action.php:25
3261
  #: inc/class-page-backups.php:522
 
3262
  msgid "Submit"
3263
  msgstr "Enviar"
3264
 
3265
- #: inc/class-page-backups.php:618
3266
  #: inc/class-page-backups.php:527
3267
  msgid "Your download has been generated. It should begin downloading momentarily."
3268
  msgstr "Su descarga ha sido generada. Debería comenzar a descargarse momentáneamente."
3269
 
 
 
 
 
 
 
3270
  #: inc/class-page-backwpup.php:67
 
3271
  msgid "%s &rsaquo; Dashboard"
3272
  msgstr "%s &rsaquo; Escritorio"
3273
 
@@ -3280,7 +3345,7 @@ msgstr "Planificando copias de seguridad"
3280
  #: inc/class-page-backwpup.php:75
3281
  #: inc/class-page-backwpup.php:84
3282
  msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server."
3283
- msgstr "Utilice sus archivos de copia de seguridad para guardar toda su instalación de WordPress, incluido <code> / wp-content / </ code>. Introdúzcalos en un servicio de almacenamiento externo si no desea guardar las copias de seguridad en el mismo servidor."
3284
 
3285
  #: inc/class-page-backwpup.php:76
3286
  #: inc/class-page-backwpup.php:85
@@ -3290,8 +3355,8 @@ msgstr "Restaurando copias de seguridad"
3290
 
3291
  #: inc/class-page-backwpup.php:77
3292
  #: inc/class-page-backwpup.php:86
3293
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3294
- msgstr "Con un único archivo de copia de seguridad, puede restaurar una instalación. Use una herramienta como phpMyAdmin para restaurar sus archivos de respaldo de la base de datos."
3295
 
3296
  #: inc/class-page-backwpup.php:78
3297
  #: inc/class-page-backwpup.php:87
@@ -3300,6 +3365,7 @@ msgid "Ready to set up a backup job?"
3300
  msgstr "¿Listo para configurar una tarea de respaldo?"
3301
 
3302
  #: inc/class-page-backwpup.php:79
 
3303
  msgid "Use one of the wizards to plan a backup, or use <a href=\"%s\">expert mode</a> for full control over all options."
3304
  msgstr "Utilice uno de los asistentes para planificar una copia de seguridad, o use el <a href=“%s”> modo experto </a> para tener un control total sobre todas las opciones."
3305
 
@@ -3313,6 +3379,7 @@ msgid "Use the short links in the <strong>First steps</strong> box to plan and s
3313
  msgstr "Utilice los enlaces cortos en el cuadro <strong> Primeros pasos </strong> para planificar y programar trabajos de copia de seguridad."
3314
 
3315
  #: inc/class-page-backwpup.php:88
 
3316
  msgid "<a href=\"%s\">Add a new backup job</a> and plan what you want to save."
3317
  msgstr "<a href=\"%s\"> Añadir una nueva tarea de copia de seguridad</a> y planifique lo que usted desea guardar."
3318
 
@@ -3363,6 +3430,7 @@ msgid "https://backwpup.com/feed/"
3363
  msgstr "https://backwpup.com/feed/"
3364
 
3365
  #: inc/class-page-backwpup.php:130
 
3366
  msgid "<strong>RSS Error</strong>: %s"
3367
  msgstr "<strong>Error RSS</strong>: %s"
3368
 
@@ -3445,6 +3513,7 @@ msgid "Job"
3445
  msgstr "Trabajo"
3446
 
3447
  #: inc/class-page-backwpup.php:307
 
3448
  msgid "working since %d seconds"
3449
  msgstr "trabajando desde %d segundos"
3450
 
@@ -3466,16 +3535,19 @@ msgid "Result"
3466
  msgstr "Resultado"
3467
 
3468
  #: inc/class-page-backwpup.php:366
 
3469
  msgid "Could not open log folder: %s"
3470
  msgstr "No se pudo abrir la carpeta de registro: %s"
3471
 
3472
  #: inc/class-page-backwpup.php:389
 
3473
  msgid "%d ERROR"
3474
  msgid_plural "%d ERRORS"
3475
  msgstr[0] "%d ERROR"
3476
  msgstr[1] "%d ERRORES"
3477
 
3478
  #: inc/class-page-backwpup.php:392
 
3479
  msgid "%d WARNING"
3480
  msgid_plural "%d WARNINGS"
3481
  msgstr[0] "%d AVISO"
@@ -3486,10 +3558,12 @@ msgid "OK"
3486
  msgstr "OK"
3487
 
3488
  #: inc/class-page-editjob.php:98
 
3489
  msgid "Job with ID %d"
3490
  msgstr "Trabajo con ID %d"
3491
 
3492
  #: inc/class-page-editjob.php:223
 
3493
  msgid "Changes for job <i>%s</i> saved."
3494
  msgstr "Cambios para el trabajo <i>%s</i> guardados."
3495
 
@@ -3503,11 +3577,11 @@ msgid "Run now"
3503
  msgstr "Arrancar ahora"
3504
 
3505
  #: inc/class-page-editjob.php:334
 
3506
  msgid "%1$s &rsaquo; Job: %2$s"
3507
  msgstr "%1$s &rsaquo; Trabajo: %2$s"
3508
 
3509
  #: inc/class-page-editjob.php:337
3510
- #: inc/class-page-settings.php:215
3511
  #: inc/class-page-settings.php:214
3512
  msgid "General"
3513
  msgstr "General"
@@ -3517,6 +3591,7 @@ msgid "Schedule"
3517
  msgstr "Programación"
3518
 
3519
  #: inc/class-page-editjob.php:352
 
3520
  msgid "To: %s"
3521
  msgstr "A: %s"
3522
 
@@ -3550,11 +3625,16 @@ msgstr "Nombre de archivo"
3550
  msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
3551
  msgstr "<em>Note</em>: Para que funcione el seguimiento de archivos de copia de seguridad, se debe incluir %hash% en cualquier parte del nombre del archivo."
3552
 
 
 
 
 
3553
  #: inc/class-page-editjob.php:454
3554
  msgid "Replacement patterns:"
3555
  msgstr "Patrones de reemplazo:"
3556
 
3557
  #: inc/class-page-editjob.php:455
 
3558
  msgid "%d = Two digit day of the month, with leading zeros"
3559
  msgstr "%d = Dos dígitos de mes, con cero a la izquierda"
3560
 
@@ -3611,6 +3691,7 @@ msgid "%i = Two digit representation of the minute"
3611
  msgstr "%i = Dos dígitos representan los minutos"
3612
 
3613
  #: inc/class-page-editjob.php:469
 
3614
  msgid "%s = Two digit representation of the second"
3615
  msgstr "%s = Dos dígitos representan los segundos"
3616
 
@@ -3625,6 +3706,7 @@ msgstr "Falta la clase ZipArchive PHP, por lo que BackWPUp usará PclZip en su l
3625
 
3626
  #: inc/class-page-editjob.php:491
3627
  #: inc/class-page-editjob.php:498
 
3628
  msgid "Disabled due to missing %s PHP function."
3629
  msgstr "Deshabilitados debido a la falta de función PHP %s."
3630
 
@@ -3665,7 +3747,7 @@ msgstr "Déjelo vacío para que no se haya enviado el registro. O separe con, pa
3665
 
3666
  #: inc/class-page-editjob.php:569
3667
  msgid "Email FROM field"
3668
- msgstr "campo Email FROM"
3669
 
3670
  #: inc/class-page-editjob.php:571
3671
  msgid "Your Name &lt;mail@domain.tld&gt;"
@@ -3701,6 +3783,7 @@ msgid "with <a href=\"https://www.easycron.com?ref=36673\" title=\"Affiliate Lin
3701
  msgstr "con <a href=“https://www.easycron.com?ref=36673” title=“¡Link de afiliación!”>EasyCron.com</a>"
3702
 
3703
  #: inc/class-page-editjob.php:617
 
3704
  msgid "First setup <a href=\"%s\">API Key</a>."
3705
  msgstr "Primer setup <a href=“%s”>API Key</a>."
3706
 
@@ -3822,6 +3905,7 @@ msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
3822
  msgstr "Trabajando como <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> programado :"
3823
 
3824
  #: inc/class-page-editjob.php:950
 
3825
  msgid "ATTENTION: Job runs every %d minutes!"
3826
  msgstr "ATENCION: El trabajo se ejecuta cada %d minutos!"
3827
 
@@ -3863,19 +3947,23 @@ msgid "Not needed or set"
3863
  msgstr "No necesario o definido"
3864
 
3865
  #: inc/class-page-jobs.php:273
 
3866
  msgid "Running for: %s seconds"
3867
  msgstr "Ejecutando durante : %s segundos"
3868
 
3869
  #: inc/class-page-jobs.php:280
3870
  #: inc/class-page-jobs.php:289
 
3871
  msgid "Cron: %s"
3872
  msgstr "Cron: %s"
3873
 
3874
  #: inc/class-page-jobs.php:280
 
3875
  msgid "%1$s at %2$s by WP-Cron"
3876
  msgstr "%1$s en %2$s por WP-Cron"
3877
 
3878
  #: inc/class-page-jobs.php:289
 
3879
  msgid "%1$s at %2$s by EasyCron"
3880
  msgstr "%1$s en %2$s por EasyCron"
3881
 
@@ -3888,6 +3976,7 @@ msgid "Inactive"
3888
  msgstr "Inactivo"
3889
 
3890
  #: inc/class-page-jobs.php:320
 
3891
  msgid "Runtime: %d seconds"
3892
  msgstr "Tiempo de ejecución : %d segundos"
3893
 
@@ -3908,18 +3997,22 @@ msgid "Copy of"
3908
  msgstr "Copia de"
3909
 
3910
  #: inc/class-page-jobs.php:431
 
3911
  msgid "The job \"%s\" destination \"%s\" is not configured properly"
3912
  msgstr "El trabajo “%s” destino “%s” no está configurada correctamente"
3913
 
3914
  #: inc/class-page-jobs.php:436
 
3915
  msgid "The job \"%s\" needs properly configured destinations to run!"
3916
  msgstr "¡El trabajo “%s” necesita destinos configurados correctamente para ejecutarse!"
3917
 
3918
  #: inc/class-page-jobs.php:454
 
3919
  msgid "Job \"%s\" has started, but not responded for 10 seconds. Please check <a href=\"%s\">information</a>."
3920
  msgstr "Trabajo “%s” ha comenzado, pero no respondió durante 10 segundos. Por favor, compruebe <a href=“%s”>información</a>."
3921
 
3922
  #: inc/class-page-jobs.php:459
 
3923
  msgid "Job \"%s\" started."
3924
  msgstr "Trabajo \"%s\" comenzado."
3925
 
@@ -3929,10 +4022,12 @@ msgid "Job will be terminated."
3929
  msgstr "Trabajo será finalizado."
3930
 
3931
  #: inc/class-page-jobs.php:584
 
3932
  msgid "%s &rsaquo; Jobs"
3933
  msgstr "%s &rsaquo; Trabajos"
3934
 
3935
  #: inc/class-page-jobs.php:604
 
3936
  msgid "Job currently running: %s"
3937
  msgstr "Trabajo actualmente operando : %s"
3938
 
@@ -3965,6 +4060,7 @@ msgid "Job completed"
3965
  msgstr "Trabajo completado"
3966
 
3967
  #: inc/class-page-jobs.php:786
 
3968
  msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution."
3969
  msgstr "Job mit Warnungen beendet in %s Sekunden. Bitte beheben Sie die Warnungen für eine korrekte Ausführung."
3970
 
@@ -3985,12 +4081,14 @@ msgid "View"
3985
  msgstr "Vista"
3986
 
3987
  #: inc/class-page-logs.php:251
 
3988
  msgid "1 ERROR"
3989
  msgid_plural "%d ERRORS"
3990
  msgstr[0] "1 ERROR"
3991
  msgstr[1] "%d ERRORES"
3992
 
3993
  #: inc/class-page-logs.php:254
 
3994
  msgid "1 WARNING"
3995
  msgid_plural "%d WARNINGS"
3996
  msgstr[0] "1 ADVERTENCIA"
@@ -4005,6 +4103,7 @@ msgid "Log only"
4005
  msgstr "Sólo log"
4006
 
4007
  #: inc/class-page-logs.php:440
 
4008
  msgid "%s &rsaquo; Logs"
4009
  msgstr "%s &rsaquo; Logs"
4010
 
@@ -4026,7 +4125,7 @@ msgstr "La clave pública es válida."
4026
 
4027
  #: inc/class-page-settings.php:42
4028
  msgid "Public key is invalid."
4029
- msgstr "La clave pública no es válida"
4030
 
4031
  #: inc/class-page-settings.php:43
4032
  msgid "Please download the private key before continuing. If you do not save it locally, you cannot decrypt your backups later."
@@ -4040,8 +4139,8 @@ msgstr "Cambiar parámetros por defecto"
4040
  msgid "Settings saved"
4041
  msgstr "Parámetros guardados"
4042
 
4043
- #: inc/class-page-settings.php:210
4044
  #: inc/class-page-settings.php:209
 
4045
  msgid "%s &rsaquo; Settings"
4046
  msgstr "%s &rsaquo; Configuraciones"
4047
 
@@ -4049,17 +4148,14 @@ msgstr "%s &rsaquo; Configuraciones"
4049
  msgid "Encryption"
4050
  msgstr "Cifrado"
4051
 
4052
- #: inc/class-page-settings.php:219
4053
  #: inc/class-page-settings.php:220
4054
  msgid "Network"
4055
  msgstr "Network"
4056
 
4057
- #: inc/class-page-settings.php:220
4058
  #: inc/class-page-settings.php:221
4059
  msgid "API Keys"
4060
  msgstr "Claves API"
4061
 
4062
- #: inc/class-page-settings.php:221
4063
  #: inc/class-page-settings.php:222
4064
  msgid "Information"
4065
  msgstr "Información"
@@ -4089,6 +4185,7 @@ msgstr "Muestra enlaces de BackWPup en barra de administración."
4089
  msgid "Folder sizes"
4090
  msgstr "Tamaños de carpeta"
4091
 
 
4092
  #: inc/class-page-settings.php:277
4093
  msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)"
4094
  msgstr "Visualice los tamaños de las carpetas en la pestaña de archivos al editar un trabajo. (Podría aumentar el tiempo de carga de la pestaña de archivos)."
@@ -4106,10 +4203,12 @@ msgstr "Opción de seguridad para BackWPup"
4106
  msgid "Protect folders"
4107
  msgstr "Proteger carpetas"
4108
 
 
4109
  #: inc/class-page-settings.php:304
4110
  msgid "Protect BackWPup folders ( Temp, Log and Backups ) with <code>.htaccess</code> and <code>index.php</code>"
4111
  msgstr "Proteger carpetas BackWPup ( Temp, Log y Respaldos ) con<code>.htaccess</code> y <code>index.php</code>"
4112
 
 
4113
  #: inc/class-page-settings.php:321
4114
  msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them."
4115
  msgstr "Cada vez que BackWPup ejecuta una tarea de respaldo, se genera un archivo de registro. Elija dónde almacenar sus archivos de registro y cuántos de ellos."
@@ -4118,7 +4217,9 @@ msgstr "Cada vez que BackWPup ejecuta una tarea de respaldo, se genera un archiv
4118
  msgid "Log file folder"
4119
  msgstr "Carpeta de archivos de log"
4120
 
 
4121
  #: inc/class-page-settings.php:340
 
4122
  msgid "You can use absolute or relative path! Relative path is relative to %s."
4123
  msgstr "¡Puedes usar la ruta absoluta o relativa! La ruta relativa es relativa a %s."
4124
 
@@ -4131,6 +4232,7 @@ msgid "Maximum log files in folder."
4131
  msgstr "Máximo de archivos de registro en la carpeta."
4132
 
4133
  #: inc/class-page-settings.php:367
 
4134
  #: inc/class-page-settings.php:370
4135
  msgid "Compression"
4136
  msgstr "Compresión"
@@ -4160,14 +4262,17 @@ msgstr "Debug (traducido)"
4160
  msgid "Debug (not translated)"
4161
  msgstr "Debug (no traducido)"
4162
 
 
4163
  #: inc/class-page-settings.php:416
4164
  msgid "Debug log has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too."
4165
  msgstr "El registro de depuración tiene mucha más información que los registros normales. Es para soporte y debe manejarse con cuidado. Para soporte, lo mejor es usar un archivo de registro no traducido. El uso de registros no traducidos también puede reducir el uso de la memoria PHP."
4166
 
 
4167
  #: inc/class-page-settings.php:429
4168
  msgid "There are a couple of general options for backup jobs. Set them here."
4169
  msgstr "Hay un par de opciones genrales para trabajos de respaldos. Selecciónalas aquí."
4170
 
 
4171
  #: inc/class-page-settings.php:437
4172
  msgid "Maximum number of retries for job steps"
4173
  msgstr "Máximo número de reintentos para cada paso de los trabajos"
@@ -4184,6 +4289,7 @@ msgstr "Tiempo máximo de ejecución de PHP Script"
4184
  msgid "seconds."
4185
  msgstr "segundos."
4186
 
 
4187
  #: inc/class-page-settings.php:464
4188
  msgid "Job will restart before hitting maximum execution time. Restarts will be disabled on CLI usage. If <code>ALTERNATE_WP_CRON</code> has been defined, WordPress Cron will be used for restarts, so it can take a while. 0 means no maximum."
4189
  msgstr "La tarea se reiniciará antes de alcanzar el tiempo máximo de ejecución. Los reinicios se desactivarán en el uso de la CLI. Si se ha definido <code>ALTERNATE_WP_CRON</code>, WordPress Cron se usará para reinicios, por lo que puede llevar un tiempo. 0 significa sin máximo."
@@ -4192,6 +4298,7 @@ msgstr "La tarea se reiniciará antes de alcanzar el tiempo máximo de ejecució
4192
  msgid "Key to start jobs externally with an URL"
4193
  msgstr "Clave para comenzar trabajos externamente con una URL"
4194
 
 
4195
  #: inc/class-page-settings.php:484
4196
  msgid "Will be used to protect job starts from unauthorized person."
4197
  msgstr "Se usará para proteger el trabajo de una persona no autorizada."
@@ -4217,6 +4324,7 @@ msgstr "medio"
4217
  msgid "maximum"
4218
  msgstr "máximo"
4219
 
 
4220
  #: inc/class-page-settings.php:521
4221
  msgid "This adds short pauses to the process. Can be used to reduce the CPU load."
4222
  msgstr "Esto agrega breves pausas al proceso. Se puede usar para reducir la carga de la CPU."
@@ -4225,11 +4333,13 @@ msgstr "Esto agrega breves pausas al proceso. Se puede usar para reducir la carg
4225
  msgid "Empty output on working"
4226
  msgstr "Salida vacía en el trabajo"
4227
 
4228
- #: inc/class-page-settings.php:535
4229
  #: inc/class-page-settings.php:546
 
4230
  msgid "Enable an empty Output on backup working."
4231
  msgstr "Habilita un resultado vacío en el trabajo de copia de seguridad."
4232
 
 
4233
  #: inc/class-page-settings.php:549
4234
  msgid "This do an empty output on job working. This can help in some situations or can brake the working. You must test it."
4235
  msgstr "Esto hace una salida vacía en el trabajo. Esto puede ayudar en algunas situaciones o puede frenar el trabajo. Debes probarlo."
@@ -4238,541 +4348,480 @@ msgstr "Esto hace una salida vacía en el trabajo. Esto puede ayudar en algunas
4238
  msgid "Windows IIS compatibility"
4239
  msgstr "Compatibilidad con Windows IIS"
4240
 
4241
- #: inc/class-page-settings.php:563
4242
  #: inc/class-page-settings.php:574
 
4243
  msgid "Enable compatibility with IIS on Windows."
4244
  msgstr "Habilite la compatibilidad con IIS en Windows."
4245
 
 
4246
  #: inc/class-page-settings.php:577
4247
  msgid "There is a PHP bug (<a href=\"https://bugs.php.net/43817\">bug #43817</a>), which is triggered on some versions of Windows and IIS. Checking this box will enable a workaround for that bug. Only enable if you are getting errors about &ldquo;Permission denied&rdquo; in your logs."
4248
  msgstr "Existe un error de PHP (<a href=“https://bugs.php.net/43817”>error #43817</a>), que se desencadena en algunas versiones de Windows e IIS. Al marcar esta casilla, se habilitará una solución para ese error. Solo habilite si recibe errores sobre & ldquo; Permiso denegado & rdquo; en tus registros."
4249
 
 
4250
  #: inc/class-page-settings.php:593
4251
  msgid "Here you can set your keys for encrypting your backups."
4252
  msgstr "Aquí puede configurar sus claves para cifrar sus copias de seguridad."
4253
 
 
4254
  #: inc/class-page-settings.php:601
4255
  msgid "If you select symmetric encryption (default), you can generate a 256-bit key by clicking <code>Generate Key</code>."
4256
  msgstr "Si selecciona el cifrado simétrico (predeterminado), puede generar una clave de 256 bits haciendo clic en <code>Generate Key</code>."
4257
 
 
4258
  #: inc/class-page-settings.php:611
4259
  msgid "If you select asymmetric encryption (more secure), you must have an RSA public/private key pair. You would enter the public key in the <code>Public Key</code> field. If you do not have a key pair, click <code>Generate Key Pair</code> and they will be generated for you."
4260
  msgstr "Si selecciona el cifrado asimétrico (más seguro), debe tener un par de claves pública / privada de RSA. Ingresaría la clave pública en el campo <code>Clave pública</code>. Si no tiene un par de claves, haga clic en <code>Generate Key Pair</code> y se generarán para usted."
4261
 
 
4262
  #: inc/class-page-settings.php:621
4263
  msgid "<strong>Note</strong>: You will be asked to download the keys for safe storage. We do not keep a copy of the private key, so if you lose this, your data cannot be decrypted!"
4264
  msgstr "<strong>Nota</strong>: se le pedirá que descargue las claves para un almacenamiento seguro. No guardamos una copia de la clave privada, por lo que si la pierde, ¡sus datos no podrán descifrarse!"
4265
 
 
4266
  #: inc/class-page-settings.php:631
4267
  msgid "You can also click <code>Validate</code> to validate that you have the proper private key for the given public key."
4268
  msgstr "También puede hacer clic en <code>Validate</code> para validar que tiene la clave privada adecuada para la clave pública dada."
4269
 
4270
- #: inc/class-page-settings.php:645
4271
- #: inc/class-page-settings.php:999
4272
- #: inc/class-page-settings.php:988
4273
- msgid "https://backwpup.com"
4274
- msgstr "https://backwpup.com"
4275
-
4276
- #: inc/class-page-settings.php:646
4277
- #: inc/class-page-settings.php:1000
4278
- #: inc/class-page-settings.php:989
4279
- msgid "Get Pro"
4280
- msgstr "Obtener la version pro"
4281
-
4282
- #: inc/class-page-settings.php:654
4283
  #: inc/class-page-settings.php:642
4284
  msgid "Encryption Type"
4285
  msgstr "Tipo de cifrado"
4286
 
4287
- #: inc/class-page-settings.php:661
4288
  #: inc/class-page-settings.php:649
4289
  msgid "Symmetric (public key only)"
4290
  msgstr "Simétrico (solo clave pública)"
4291
 
4292
- #: inc/class-page-settings.php:667
4293
  #: inc/class-page-settings.php:655
4294
  msgid "Asymmetric (public and private key)"
4295
  msgstr "Asimétrico (clave pública y privada)"
4296
 
4297
- #: inc/class-page-settings.php:673
4298
- #: inc/class-page-settings.php:679
4299
  #: inc/class-page-settings.php:661
4300
  #: inc/class-page-settings.php:667
4301
  msgid "Encryption Key"
4302
  msgstr "Clave de encriptación"
4303
 
4304
- #: inc/class-page-settings.php:684
4305
  #: inc/class-page-settings.php:672
4306
  msgid "Key"
4307
  msgstr "Llave"
4308
 
4309
- #: inc/class-page-settings.php:696
4310
  #: inc/class-page-settings.php:684
4311
  msgid "Click below to generate a random key."
4312
  msgstr "Haga clic a continuación para generar una clave aleatoria."
4313
 
4314
- #: inc/class-page-settings.php:699
4315
  #: inc/class-page-settings.php:687
4316
  msgid "Generate Key"
4317
  msgstr "Generar llave"
4318
 
4319
- #: inc/class-page-settings.php:708
4320
- #: inc/class-page-settings.php:713
4321
- #: inc/class-page-settings.php:773
4322
  #: inc/class-page-settings.php:696
4323
  #: inc/class-page-settings.php:701
4324
  #: inc/class-page-settings.php:762
4325
  msgid "Public Key"
4326
  msgstr "Llave pública"
4327
 
4328
- #: inc/class-page-settings.php:716
4329
  #: inc/class-page-settings.php:704
4330
  msgid "RSA Public Key"
4331
  msgstr "Clave pública RSA"
4332
 
4333
- #: inc/class-page-settings.php:728
4334
- #: inc/class-page-settings.php:729
4335
  #: inc/class-page-settings.php:716
4336
  #: inc/class-page-settings.php:717
4337
  msgid "Generate Key Pair"
4338
  msgstr "Generar par de claves"
4339
 
4340
- #: inc/class-page-settings.php:734
4341
  #: inc/class-page-settings.php:722
4342
  msgid "Validate Key"
4343
  msgstr "Validar clave"
4344
 
4345
- #: inc/class-page-settings.php:735
4346
- #: inc/class-page-settings.php:759
4347
  #: inc/class-page-settings.php:723
4348
  #: inc/class-page-settings.php:748
4349
  msgid "Validate"
4350
  msgstr "Validar"
4351
 
4352
- #: inc/class-page-settings.php:746
4353
  #: inc/class-page-settings.php:735
4354
  msgid "Enter your private key below to validate it will work with the provided public key."
4355
  msgstr "Ingrese su clave privada a continuación para validar que funcionará con la clave pública proporcionada."
4356
 
4357
- #: inc/class-page-settings.php:749
4358
  #: inc/class-page-settings.php:738
4359
  msgid "The private key will not be stored, so you must still securely store it yourself."
4360
  msgstr "La clave privada no se almacenará, por lo que debe almacenarla de manera segura usted mismo."
4361
 
4362
- #: inc/class-page-settings.php:765
4363
  #: inc/class-page-settings.php:754
4364
  msgid "Your keys are being generated. Please hold a moment &hellip;"
4365
  msgstr "Tus llaves se están generando. Por favor, espera un momento &hellip;"
4366
 
4367
- #: inc/class-page-settings.php:769
4368
  #: inc/class-page-settings.php:758
4369
  msgid "Here are your keys. Please store them in a safe location."
4370
  msgstr "Aquí están tus llaves. Por favor, guárdalas en un lugar seguro."
4371
 
4372
- #: inc/class-page-settings.php:794
4373
  #: inc/class-page-settings.php:783
4374
  msgid "Please download at least your private key above, as we will not store this key, and if you lose it, your backups cannot be decrypted."
4375
  msgstr "Descargue al menos su clave privada anterior, ya que no almacenaremos esta clave, y si la pierde, sus copias de seguridad no podrán descifrarse."
4376
 
4377
- #: inc/class-page-settings.php:797
4378
  #: inc/class-page-settings.php:786
4379
  msgid "Click the button below to use these keys and paste the public key into the RSA public key field above."
4380
  msgstr "Haga clic en el botón de abajo para usar estas teclas y pegue la clave pública en el campo de la clave pública RSA arriba."
4381
 
4382
- #: inc/class-page-settings.php:801
4383
  #: inc/class-page-settings.php:790
4384
  msgid "Use These Keys"
4385
  msgstr "Usa estas teclas"
4386
 
4387
- #: inc/class-page-settings.php:812
4388
  #: inc/class-page-settings.php:801
 
4389
  msgid "Authentication for <code>%s</code>"
4390
  msgstr "Autenticación para <code>%s</code>"
4391
 
4392
- #: inc/class-page-settings.php:819
4393
  #: inc/class-page-settings.php:808
4394
  msgid "If you protected your blog with HTTP basic authentication (.htaccess), or you use a Plugin to secure wp-cron.php, then use the authentication methods below."
4395
  msgstr "Si protegió su blog con autenticación básica HTTP (.htaccess), o si usa un complemento para proteger wp-cron.php, entonces use los métodos de autenticación a continuación."
4396
 
4397
- #: inc/class-page-settings.php:835
4398
- #: inc/class-page-settings.php:840
4399
  #: inc/class-page-settings.php:824
4400
  #: inc/class-page-settings.php:829
4401
  msgid "Authentication method"
4402
  msgstr "Método de autentificación"
4403
 
4404
- #: inc/class-page-settings.php:852
4405
  #: inc/class-page-settings.php:841
4406
  msgid "Basic auth"
4407
  msgstr "Autorización básica"
4408
 
4409
- #: inc/class-page-settings.php:856
4410
  #: inc/class-page-settings.php:845
4411
  msgid "WordPress User"
4412
  msgstr "Usuario WordPress"
4413
 
4414
- #: inc/class-page-settings.php:860
4415
  #: inc/class-page-settings.php:849
4416
  msgid "Query argument"
4417
  msgstr "Argumento de consulta"
4418
 
4419
- #: inc/class-page-settings.php:871
4420
  #: inc/class-page-settings.php:860
4421
  msgid "Basic Auth Username:"
4422
  msgstr "Nombre de usuario de autenticación básica:"
4423
 
4424
- #: inc/class-page-settings.php:888
4425
  #: inc/class-page-settings.php:877
4426
  msgid "Basic Auth Password:"
4427
  msgstr "Contraseña básica de autenticación:"
4428
 
4429
- #: inc/class-page-settings.php:902
4430
- #: inc/class-page-settings.php:905
4431
  #: inc/class-page-settings.php:891
 
4432
  #: inc/class-page-settings.php:894
4433
  msgid "Select WordPress User"
4434
  msgstr "Seleccionar usuario de WordPress"
4435
 
4436
- #: inc/class-page-settings.php:938
4437
  #: inc/class-page-settings.php:927
4438
  msgid "Query arg key=value:"
4439
  msgstr "Argumento consulta clave = valor:"
4440
 
4441
- #: inc/class-page-settings.php:966
4442
  #: inc/class-page-settings.php:955
4443
  msgid "Experiencing an issue and need to contact BackWPup support? Click the link below to get debug information you can send to us."
4444
  msgstr "¿Tienes algún problema y necesitas contactar al soporte de BackWPup? Haga clic en el siguiente enlace para obtener información de depuración que puede enviarnos."
4445
 
4446
- #: inc/class-page-settings.php:973
4447
- #: inc/class-page-settings.php:1068
4448
  #: inc/class-page-settings.php:962
4449
  msgid "Debug Info"
4450
  msgstr "Información de depuración"
4451
 
4452
- #: inc/class-page-settings.php:977
4453
  #: inc/class-page-settings.php:966
4454
  msgid "Get Debug Info"
4455
  msgstr "Obtener información de depuración"
4456
 
4457
- #: inc/class-page-settings.php:984
4458
  #: inc/class-page-settings.php:973
4459
  msgid "You will find debug information below. Click the button to copy the debug info to send to support."
4460
  msgstr "Encontrará información de depuración a continuación. Haga clic en el botón para copiar la información de depuración para enviarla a soporte."
4461
 
4462
- #: inc/class-page-settings.php:1011
 
 
 
 
 
 
 
 
 
 
 
 
4463
  #: inc/class-page-settings.php:1000
4464
  msgid "Copy Debug Info"
4465
  msgstr "Copiar depuración en"
4466
 
4467
- #: inc/class-page-settings.php:1016
4468
  #: inc/class-page-settings.php:1005
4469
  msgid "Debug info copied to clipboard."
4470
  msgstr "Información de depuración copiada en el portapapeles."
4471
 
4472
- #: inc/class-page-settings.php:1024
4473
  #: inc/class-page-settings.php:1013
4474
  msgid "Could not copy debug info. You can simply press ctrl+C to copy it."
4475
  msgstr "No se pudo copiar la información de depuración. Simplemente puede presionar ctrl + C para copiarlo."
4476
 
4477
- #: inc/class-page-settings.php:1077
4478
- #: inc/class-page-settings.php:1081
4479
  #: inc/class-page-settings.php:1066
4480
  #: inc/class-page-settings.php:1070
4481
  msgid "Setting"
4482
  msgstr "Parámetros"
4483
 
4484
- #: inc/class-page-settings.php:1077
4485
- #: inc/class-page-settings.php:1081
4486
  #: inc/class-page-settings.php:1066
4487
  #: inc/class-page-settings.php:1070
4488
  msgid "Value"
4489
  msgstr "Valor"
4490
 
4491
- #: inc/class-page-settings.php:1105
4492
  #: inc/class-page-settings.php:1094
4493
  msgid "Reset all settings to default"
4494
  msgstr "Todos los parámetros de nuevo por defecto"
4495
 
4496
- #: inc/class-page-settings.php:1126
4497
  #: inc/class-page-settings.php:1115
4498
  msgid "WordPress version"
4499
  msgstr "Versión WordPress"
4500
 
4501
- #: inc/class-page-settings.php:1131
4502
  #: inc/class-page-settings.php:1120
4503
  msgid "BackWPup version"
4504
  msgstr "Versión BackWPup"
4505
 
4506
- #: inc/class-page-settings.php:1135
4507
  #: inc/class-page-settings.php:1124
4508
  msgid "Get pro."
4509
  msgstr "Obtener la version pro."
4510
 
4511
- #: inc/class-page-settings.php:1137
4512
  #: inc/class-page-settings.php:1126
4513
  msgid "BackWPup Pro version"
4514
  msgstr "Versión BackWPup Pro"
4515
 
4516
- #: inc/class-page-settings.php:1142
4517
  #: inc/class-page-settings.php:1131
4518
  msgid "PHP version"
4519
  msgstr "Versión PHP"
4520
 
4521
- #: inc/class-page-settings.php:1152
4522
  #: inc/class-page-settings.php:1141
4523
  msgid "MySQL version"
4524
  msgstr "Versión MySQL"
4525
 
4526
- #: inc/class-page-settings.php:1156
4527
  #: inc/class-page-settings.php:1145
4528
  msgid "cURL version"
4529
  msgstr "versión cURL"
4530
 
4531
- #: inc/class-page-settings.php:1160
4532
  #: inc/class-page-settings.php:1149
4533
  msgid "cURL SSL version"
4534
  msgstr "versión cURL SSL"
4535
 
4536
- #: inc/class-page-settings.php:1163
4537
  #: inc/class-page-settings.php:1152
4538
  msgid "unavailable"
4539
  msgstr "no disponible"
4540
 
4541
- #: inc/class-page-settings.php:1167
4542
  #: inc/class-page-settings.php:1156
4543
  msgid "WP-Cron url"
4544
  msgstr "WP-Cron url"
4545
 
4546
- #: inc/class-page-settings.php:1171
4547
  #: inc/class-page-settings.php:1160
4548
  msgid "Server self connect"
4549
  msgstr "Auto-Conexión del servidor"
4550
 
4551
- #: inc/class-page-settings.php:1177
4552
  #: inc/class-page-settings.php:1166
4553
  msgid "Not expected HTTP response:"
4554
  msgstr "Respuesta HTTP no esperada:"
4555
 
4556
- #: inc/class-page-settings.php:1178
4557
  #: inc/class-page-settings.php:1167
4558
  msgid "<strong>Not expected HTTP response:</strong><br>"
4559
  msgstr "<strong>Respuesta HTTP no esperada:</strong><br>"
4560
 
4561
- #: inc/class-page-settings.php:1181
4562
  #: inc/class-page-settings.php:1170
 
4563
  msgid "WP Http Error: %s"
4564
  msgstr "WP Http Error: %s"
4565
 
4566
- #: inc/class-page-settings.php:1185
4567
  #: inc/class-page-settings.php:1174
 
4568
  msgid "WP Http Error: <code>%s</code>"
4569
  msgstr "WP Http Error: <code>%s</code>"
4570
 
4571
- #: inc/class-page-settings.php:1189
4572
  #: inc/class-page-settings.php:1178
 
4573
  msgid "Status-Code: %d"
4574
  msgstr "Código de estado: %d"
4575
 
4576
- #: inc/class-page-settings.php:1191
4577
  #: inc/class-page-settings.php:1180
 
4578
  msgid "Status-Code: <code>%d</code>"
4579
  msgstr "Código de estado: <code>%d</code>"
4580
 
4581
- #: inc/class-page-settings.php:1204
4582
  #: inc/class-page-settings.php:1193
 
4583
  msgid "Content: %s"
4584
  msgstr "Contenido: %s"
4585
 
4586
- #: inc/class-page-settings.php:1206
4587
  #: inc/class-page-settings.php:1195
 
4588
  msgid "Content: <code>%s</code>"
4589
  msgstr "Contenido: <code>%s</code>"
4590
 
4591
- #: inc/class-page-settings.php:1211
4592
  #: inc/class-page-settings.php:1200
4593
  msgid "Response Test O.K."
4594
  msgstr "Puesta de Test O.K."
4595
 
4596
- #: inc/class-page-settings.php:1220
4597
  #: inc/class-page-settings.php:1209
4598
  msgid "Temp folder"
4599
  msgstr "Carpeta temp"
4600
 
4601
- #: inc/class-page-settings.php:1223
4602
  #: inc/class-page-settings.php:1212
 
4603
  msgid "Temp folder %s doesn't exist."
4604
  msgstr "La carpeta temporal %s no existe."
4605
 
4606
- #: inc/class-page-settings.php:1228
4607
  #: inc/class-page-settings.php:1217
 
4608
  msgid "Temporary folder %s is not writable."
4609
  msgstr "La carpeta temporal %s no se puede escribir."
4610
 
4611
- #: inc/class-page-settings.php:1236
4612
  #: inc/class-page-settings.php:1225
4613
  msgid "Log folder"
4614
  msgstr "Carpeta de archivos de log"
4615
 
4616
- #: inc/class-page-settings.php:1242
4617
  #: inc/class-page-settings.php:1231
 
4618
  msgid "Log folder %s does not exist."
4619
  msgstr "Carpeta %s no existe."
4620
 
4621
- #: inc/class-page-settings.php:1247
4622
  #: inc/class-page-settings.php:1236
 
4623
  msgid "Log folder %s is not writable."
4624
  msgstr "La carpeta de registro %s no se puede escribir."
4625
 
4626
- #: inc/class-page-settings.php:1255
4627
  #: inc/class-page-settings.php:1244
4628
  msgid "Server"
4629
  msgstr "Servidor"
4630
 
4631
- #: inc/class-page-settings.php:1259
4632
  #: inc/class-page-settings.php:1248
4633
  msgid "Operating System"
4634
  msgstr "Sistema operativo"
4635
 
4636
- #: inc/class-page-settings.php:1263
4637
  #: inc/class-page-settings.php:1252
4638
  msgid "PHP SAPI"
4639
  msgstr "PHP SAPI"
4640
 
4641
- #: inc/class-page-settings.php:1267
4642
  #: inc/class-page-settings.php:1256
4643
  msgid "Current PHP user"
4644
  msgstr "Actual usuario PHP"
4645
 
4646
- #: inc/class-page-settings.php:1271
4647
  #: inc/class-page-settings.php:1260
4648
  msgid "Function Disabled"
4649
  msgstr "Función desactivada"
4650
 
4651
- #: inc/class-page-settings.php:1275
4652
  #: inc/class-page-settings.php:1264
4653
  msgid "Maximum execution time"
4654
  msgstr "Tiempo máximo de ejecución"
4655
 
4656
- #: inc/class-page-settings.php:1277
4657
- #: inc/class-page-settings.php:1284
4658
  #: inc/class-page-settings.php:1266
4659
  #: inc/class-page-settings.php:1273
 
4660
  msgid "%d seconds"
4661
  msgstr "%d segundos"
4662
 
4663
- #: inc/class-page-settings.php:1282
4664
  #: inc/class-page-settings.php:1271
4665
  msgid "BackWPup maximum script execution time"
4666
  msgstr "BackWPup tiempo máximo de ejecución de scripts"
4667
 
4668
- #: inc/class-page-settings.php:1289
4669
  #: inc/class-page-settings.php:1278
4670
  msgid "Alternative WP Cron"
4671
  msgstr "Altenativa WP Cron"
4672
 
4673
- #: inc/class-page-settings.php:1291
4674
- #: inc/class-page-settings.php:1299
4675
  #: inc/class-page-settings.php:1280
4676
  #: inc/class-page-settings.php:1288
4677
  msgid "On"
4678
  msgstr "Encendido"
4679
 
4680
- #: inc/class-page-settings.php:1293
4681
- #: inc/class-page-settings.php:1301
4682
  #: inc/class-page-settings.php:1282
4683
  #: inc/class-page-settings.php:1290
4684
  msgid "Off"
4685
  msgstr "Apagado"
4686
 
4687
- #: inc/class-page-settings.php:1297
4688
  #: inc/class-page-settings.php:1286
4689
  msgid "Disabled WP Cron"
4690
  msgstr "WP Cron desactivado"
4691
 
4692
- #: inc/class-page-settings.php:1305
4693
  #: inc/class-page-settings.php:1294
4694
  msgid "CHMOD Dir"
4695
  msgstr "CHMOD Dir"
4696
 
4697
- #: inc/class-page-settings.php:1313
4698
  #: inc/class-page-settings.php:1302
4699
  msgid "Server Time"
4700
  msgstr "Hora del servidor"
4701
 
4702
- #: inc/class-page-settings.php:1318
4703
  #: inc/class-page-settings.php:1307
4704
  msgid "Blog Time"
4705
  msgstr "Hora del blog"
4706
 
4707
- #: inc/class-page-settings.php:1322
4708
  #: inc/class-page-settings.php:1311
4709
  msgid "Blog Timezone"
4710
  msgstr "Zona horaria de blog"
4711
 
4712
- #: inc/class-page-settings.php:1326
4713
  #: inc/class-page-settings.php:1315
4714
  msgid "Blog Time offset"
4715
  msgstr "Offset de hora del blog"
4716
 
4717
- #: inc/class-page-settings.php:1328
4718
  #: inc/class-page-settings.php:1317
 
4719
  msgid "%s hours"
4720
  msgstr "%s horas"
4721
 
4722
- #: inc/class-page-settings.php:1333
4723
  #: inc/class-page-settings.php:1322
4724
  msgid "Blog language"
4725
  msgstr "Idioma del blog"
4726
 
4727
- #: inc/class-page-settings.php:1337
4728
  #: inc/class-page-settings.php:1326
4729
  msgid "MySQL Client encoding"
4730
  msgstr "Codificación del cliente MySQL"
4731
 
4732
- #: inc/class-page-settings.php:1341
4733
  #: inc/class-page-settings.php:1330
4734
  msgid "PHP Memory limit"
4735
  msgstr "Límite de memoria de PHP"
4736
 
4737
- #: inc/class-page-settings.php:1345
4738
  #: inc/class-page-settings.php:1334
4739
  msgid "WP memory limit"
4740
  msgstr "Límite de memoria de WP"
4741
 
4742
- #: inc/class-page-settings.php:1349
4743
  #: inc/class-page-settings.php:1338
4744
  msgid "WP maximum memory limit"
4745
  msgstr "Límite máximo de memoria de WordPress"
4746
 
4747
- #: inc/class-page-settings.php:1353
4748
  #: inc/class-page-settings.php:1342
4749
  msgid "Memory in use"
4750
  msgstr "Memoria en uso"
4751
 
4752
- #: inc/class-page-settings.php:1359
4753
  #: inc/class-page-settings.php:1348
4754
  msgid "Disabled PHP Functions:"
4755
  msgstr "Funciones PHP deshabilitadas:"
4756
 
4757
- #: inc/class-page-settings.php:1364
4758
  #: inc/class-page-settings.php:1353
4759
  msgid "Loaded PHP Extensions:"
4760
  msgstr "Extensiones PHP cargadas:"
4761
 
 
4762
  #: inc/class-system-tests-runner.php:67
 
4763
  msgctxt "%1 = extension name, %2 = file suffix"
4764
  msgid "We recommend to install the %1$s extension to generate %2$s archives."
4765
  msgstr "Recomendamos instalar la extensión %1s para generar ficheros %2s."
4766
 
 
4767
  #: inc/class-system-tests-runner.php:77
 
4768
  msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
4769
  msgstr "Debe ejecutar la versión de WordPress %1$s o superior para usar este complemento. Estás usando la versión %2$s ahora."
4770
 
 
4771
  #: inc/class-system-tests-runner.php:88
 
4772
  msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
4773
  msgstr "Recomendamos usar PHP versión %1$s o superior para conseguir toda la funcionalidad de complemento. Estás usando la versión %2$s ahora."
4774
 
 
4775
  #: inc/class-system-tests-runner.php:100
 
4776
  msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
4777
  msgstr "Debes de tener la extensión MySQLLi instalada y una version %1$s o superior de MySQL server para usar este complemento. Estás usando la versión %2$s ahora."
4778
 
@@ -4781,6 +4830,7 @@ msgid "PHP cURL extension must be installed to use the full plugin functionality
4781
  msgstr "La extensión PHP cURL debe instalarse para usar la funcionalidad completa del complemento."
4782
 
4783
  #: inc/class-system-tests-runner.php:136
 
4784
  msgctxt "Link to PHP manual"
4785
  msgid "Please disable the deprecated <a href=\"%s\">PHP safe mode</a>."
4786
  msgstr "Por favor desactiva el desactualizado <a href=\"%s\">PHP safe mode</a>."
@@ -4789,11 +4839,15 @@ msgstr "Por favor desactiva el desactualizado <a href=\"%s\">PHP safe mode</a>.
4789
  msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
4790
  msgstr "Recomendamos instalar la extensión PHP FTP para usar destinos de respaldos en FTP."
4791
 
 
4792
  #: inc/class-system-tests-runner.php:164
 
4793
  msgid "The HTTP response test result is an error: \"%s\"."
4794
  msgstr "Comprobación de respuesta HTTP genera un error “%s”."
4795
 
 
4796
  #: inc/class-system-tests-runner.php:175
 
4797
  msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200."
4798
  msgstr "El resultado de la prueba de respuesta HTTP es un estado HTTP incorrecto: %s. Debería ser el estado 200."
4799
 
@@ -4805,6 +4859,7 @@ msgstr "¡Sí!"
4805
  msgid "All tests passed without errors."
4806
  msgstr "Todas las comprobaciones se ha pasado con éxito."
4807
 
 
4808
  #: inc/class-system-tests-runner.php:220
4809
  msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs."
4810
  msgstr "Wp-Cron parece estar roto; pero es necesario para realizar trabajos programados."
@@ -4838,74 +4893,41 @@ msgid "No job running"
4838
  msgstr "Sin trabajos ejecutándose"
4839
 
4840
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
4841
- msgid "Uploading Archive..."
4842
- msgstr "Cargando archivo …"
4843
 
4844
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:8
4845
- msgid "Restoring: Directories ..."
4846
- msgstr "Restaurando: Directorios …"
4847
 
4848
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:9
4849
- msgid "Restoring: Database ..."
4850
- msgstr "Restaurando: Base de datos …"
4851
 
4852
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:10
4853
- msgid "Extracting Archive please be patient ..."
4854
- msgstr "Extrayendo archivo por favor sea paciente …"
4855
 
4856
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:11
4857
- msgid "Downloading Archive..."
4858
- msgstr "Descargando archivo …"
4859
 
4860
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:12
4861
- msgid "Database restored successfully."
4862
- msgstr "Base de datos restaurada con éxito."
4863
-
4864
- #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:13
4865
- msgid "Ops! There was an error during database restore. Please see the log for more information."
4866
- msgstr "Ops! Hubo un error durante la restauración de la base de datos. Por favor, mira el registro para más información."
4867
 
4868
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:17
4869
- msgid "Restoring: "
4870
- msgstr "Restaurando copias de seguridad: "
4871
 
4872
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:18
4873
- msgid "No EventSource found in the brower. Cannot continue."
4874
- msgstr "No se encontró EventSource en el navegador. No puede continuar."
4875
 
4876
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:19
4877
- msgid "Directories restored successfully."
4878
- msgstr "Directorios restaurados con éxito."
4879
-
4880
- #: inc/class-destination-folder-downloader.php:64
4881
- msgid "Could not read data from source file."
4882
- msgstr ""
4883
-
4884
- #: inc/class-destination-folder-downloader.php:69
4885
- msgid "Could not write data into target file."
4886
- msgstr ""
4887
-
4888
- #. translators: $1 is the path of the local file where the backup will be stored
4889
- #: inc/class-destination-folder-downloader.php:141
4890
- msgid "%s is a directory not a file."
4891
- msgstr ""
4892
-
4893
- #: inc/class-destination-s3.php:102
4894
- msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
4895
- msgstr ""
4896
 
4897
- #: inc/class-page-backups.php:575
4898
- msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
4899
- msgstr ""
4900
-
4901
- #: inc/class-page-settings.php:981
4902
- msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4903
- msgstr ""
4904
-
4905
- #: inc/class-destination-s3-downloader.php:76
4906
- msgid "Could not write data to file. Empty source file."
4907
- msgstr ""
4908
-
4909
- #: inc/class-page-editjob.php:452
4910
- msgid "Preview: "
4911
  msgstr ""
19
 
20
  #: class-license-menu.php:392
21
  #: class-license-menu.php:396
22
+ #: inc/class-page-settings.php:1090
23
+ #: resources/autoupdate/class-license-menu.php:392
24
+ #: resources/autoupdate/class-license-menu.php:396
25
  #: inc/class-page-settings.php:1089
26
  msgid "Save Changes"
27
  msgstr "Guardar Cambios"
28
 
29
  #: class-license-menu.php:418
30
  #: inc/class-destination-rsc.php:52
31
+ #: resources/autoupdate/class-license-menu.php:418
32
  msgid "API Key"
33
  msgstr "API Key"
34
 
 
 
 
35
  #: backwpup.php:286
36
+ #: inc/class-page-backups.php:243
37
  #: vendor_dist/backwpup.php:286
38
  msgid "Folder"
39
  msgstr "Carpeta"
40
 
 
41
  #: backwpup.php:287
42
  #: vendor_dist/backwpup.php:287
43
  msgid "Backup to Folder"
44
  msgstr "Respaldar a carpeta"
45
 
 
46
  #: backwpup.php:302
47
  #: vendor_dist/backwpup.php:302
48
  msgid "Email"
49
  msgstr "Email"
50
 
 
51
  #: backwpup.php:303
52
  #: vendor_dist/backwpup.php:303
53
  msgid "Backup sent via email"
54
  msgstr "Backup enviado via email"
55
 
 
56
  #: backwpup.php:318
57
  #: vendor_dist/backwpup.php:318
58
  msgid "FTP"
59
  msgstr "FTP"
60
 
 
61
  #: backwpup.php:319
62
  #: vendor_dist/backwpup.php:319
63
  msgid "Backup to FTP"
64
  msgstr "Respaldo a FTP"
65
 
 
 
66
  #: backwpup.php:334
67
+ #: inc/class-destination-dropbox.php:445
68
  #: vendor_dist/backwpup.php:334
69
  msgid "Dropbox"
70
  msgstr "DropBox"
71
 
 
 
72
  #: backwpup.php:335
73
+ #: inc/class-page-about.php:508
74
  #: vendor_dist/backwpup.php:335
75
  msgid "Backup to Dropbox"
76
  msgstr "Respaldo a DropBox"
77
 
 
 
 
78
  #: backwpup.php:350
79
+ #: inc/class-destination-s3.php:42
80
  #: vendor_dist/backwpup.php:350
81
  msgid "S3 Service"
82
  msgstr "S3 Servicio"
83
 
 
84
  #: backwpup.php:351
85
  #: vendor_dist/backwpup.php:351
86
  msgid "Backup to an S3 Service"
87
  msgstr "Respaldar a un servicio S3"
88
 
 
89
  #: backwpup.php:371
90
  #: vendor_dist/backwpup.php:371
91
  msgid "MS Azure"
92
  msgstr "MS Azure"
93
 
 
94
  #: backwpup.php:372
95
  #: vendor_dist/backwpup.php:372
96
  msgid "Backup to Microsoft Azure (Blob)"
97
  msgstr "Respaldar a Microsoft Azure (blob)"
98
 
 
99
  #: backwpup.php:387
100
  #: vendor_dist/backwpup.php:387
101
  msgid "RSC"
102
  msgstr "RackSpace"
103
 
 
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Respaldo a archivos de RackSpace Cloud"
109
 
 
110
  #: backwpup.php:407
111
  #: vendor_dist/backwpup.php:407
112
  msgid "SugarSync"
113
  msgstr "SugarSync"
114
 
 
 
115
  #: backwpup.php:408
116
+ #: inc/class-page-about.php:528
117
  #: vendor_dist/backwpup.php:408
118
  msgid "Backup to SugarSync"
119
  msgstr "Respaldar a SugarSync"
120
 
 
121
  #: backwpup.php:433
122
  #: vendor_dist/backwpup.php:433
123
+ #, php-format
124
  msgid "PHP Version %1$s is to low, you need Version %2$s or above."
125
  msgstr "Versión PHP %1$s demasido baja, necesitas versión %2$s o superior."
126
 
 
127
  #: backwpup.php:443
128
  #: vendor_dist/backwpup.php:443
129
+ #, php-format
130
  msgid "Missing function \"%s\"."
131
  msgstr "Perdida la función \"%s\"."
132
 
 
133
  #: backwpup.php:454
134
  #: vendor_dist/backwpup.php:454
135
+ #, php-format
136
  msgid "Missing class \"%s\"."
137
  msgstr "Clase “%s” no encontrada."
138
 
139
+ #: backwpup.php:574
140
  #: backwpup.php:573
141
  #: vendor_dist/backwpup.php:573
142
  msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
168
  #: inc/class-destination-ftp.php:104
169
  #: inc/class-destination-msazure.php:83
170
  #: inc/class-destination-rsc.php:112
 
 
171
  #: inc/class-destination-s3.php:229
172
+ #: inc/class-destination-sugarsync.php:98
173
  msgid "Number of files to keep in folder."
174
  msgstr "Número de archivos a mantener en carpeta."
175
 
176
+ #: inc/Pro/class-destination-dropbox.php:83
177
+ #: inc/Pro/class-destination-folder.php:52
178
+ #: inc/Pro/class-destination-ftp.php:76
179
  #: inc/Pro/class-destination-gdrive.php:148
180
+ #: inc/Pro/class-destination-gdrive.php:463
181
  #: inc/Pro/class-destination-msazure.php:56
182
  #: inc/Pro/class-destination-rsc.php:70
183
+ #: inc/Pro/class-destination-s3.php:188
184
  #: inc/Pro/class-destination-sugarsync.php:65
185
+ #: inc/class-destination-dropbox.php:184
186
  #: inc/class-destination-folder.php:57
187
+ #: inc/class-destination-ftp.php:119
188
  #: inc/class-destination-msazure.php:89
189
  #: inc/class-destination-rsc.php:118
190
+ #: inc/class-destination-s3.php:245
191
  #: inc/class-destination-sugarsync.php:104
192
+ #: inc/class-destination-dropbox.php:183
193
+ #: inc/class-destination-ftp.php:118
194
+ #: inc/Pro/class-destination-dropbox.php:82
195
+ #: inc/Pro/class-destination-folder.php:51
196
+ #: inc/Pro/class-destination-ftp.php:75
197
  #: inc/Pro/class-destination-gdrive.php:462
198
+ #: inc/Pro/class-destination-s3.php:187
199
  msgid "Do not delete files while syncing to destination!"
200
  msgstr "No elimine los archivos durante la sincronización de destino!"
201
 
202
  #: inc/Pro/class-destination-dropbox.php:209
203
  #: inc/class-destination-dropbox.php:390
204
+ #, php-format
205
  msgid "Authenticated with Dropbox of user: %s"
206
  msgstr "Identificado con el usuario de Dropbox %s"
207
 
208
  #: inc/Pro/class-destination-dropbox.php:217
209
  #: inc/class-destination-dropbox.php:398
210
+ #, php-format
211
  msgid "%s available on your Dropbox"
212
  msgstr "%s disponible en tu Dropbox"
213
 
220
  #: inc/Pro/class-destination-dropbox.php:405
221
  #: inc/class-destination-dropbox.php:55
222
  #: inc/class-destination-dropbox.php:458
223
+ #, php-format
224
  msgid "Dropbox API: %s"
225
  msgstr "DropBox API: %s"
226
 
250
  msgid "Password:"
251
  msgstr "Contraseña:"
252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  #: inc/Pro/class-destination-gdrive-downloader.php:74
 
254
  #: inc/class-destination-dropbox-downloader.php:72
255
+ #: inc/class-destination-ftp-downloader.php:72
256
  #: inc/class-destination-s3-downloader.php:83
257
  msgid "Could not write data to file."
258
  msgstr "No se pudo escribir el archivo de registro."
259
 
260
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
261
+ #: inc/class-destination-dropbox-downloader.php:104
262
+ #: inc/class-destination-folder-downloader.php:137
263
+ #: inc/class-destination-ftp-downloader.php:126
264
+ #: inc/class-destination-s3-downloader.php:112
265
+ msgid "File could not be opened for writing."
266
+ msgstr "El archivo no se puede abrir para escribir."
267
+
268
  #: inc/Pro/class-destination-gdrive.php:93
269
  #: inc/class-destination-dropbox.php:72
270
  msgid "Login"
294
  msgid "File Deletion"
295
  msgstr "Borrado de fichero"
296
 
297
+ #: inc/Pro/class-destination-gdrive.php:137
298
  #: inc/Pro/class-destination-glacier.php:109
299
+ #: inc/class-destination-dropbox.php:174
300
  #: inc/class-destination-folder.php:51
301
+ #: inc/class-destination-ftp.php:107
302
  #: inc/class-destination-msazure.php:85
303
  #: inc/class-destination-rsc.php:114
304
+ #: inc/class-destination-s3.php:233
305
  #: inc/class-destination-sugarsync.php:100
306
+ #: inc/class-destination-dropbox.php:173
307
+ #: inc/class-destination-ftp.php:106
308
  #: inc/class-destination-s3.php:232
309
+ #: inc/Pro/class-destination-gdrive.php:136
310
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
311
  msgstr "<strong>Advertencia</strong>: Los archivos pertenecientes a este trabajo están ahora trackeados. Los archivos de copia de seguridad antiguos que no sean rastreados no seran borrados automáticamente."
312
 
313
+ #: inc/Pro/class-destination-gdrive.php:905
314
  #: inc/Pro/class-destination-glacier.php:470
315
  #: inc/Pro/class-destination-rsc.php:228
316
  #: inc/Pro/class-destination-rsc.php:261
317
  #: inc/class-destination-ftp.php:673
318
  #: inc/class-destination-msazure.php:275
319
  #: inc/class-destination-rsc.php:292
 
 
 
320
  #: inc/class-destination-s3.php:843
321
  #: inc/class-destination-s3.php:958
322
  msgid "Can not open source file for transfer."
323
  msgstr "No se puede abrir el archivo de origen para la transferencia."
324
 
325
+ #: inc/Pro/class-destination-gdrive.php:924
326
  #: inc/class-destination-dropbox.php:432
327
  #: inc/class-destination-msazure.php:290
328
  #: inc/class-destination-sugarsync.php:263
329
+ #, php-format
330
  msgid "Backup transferred to %s"
331
  msgstr "Respaldo transferido a %s"
332
 
 
 
333
  #: inc/Pro/class-destination-gdrive.php:930
334
+ #: inc/class-destination-dropbox.php:438
335
  msgid "Uploaded file size and local file size don't match."
336
  msgstr "Tamaño de archivo cargado y tamaño de archivo local no coinciden."
337
 
338
+ #: inc/Pro/class-destination-gdrive.php:936
339
  #: inc/Pro/class-destination-glacier.php:450
340
  #: inc/class-destination-dropbox.php:444
341
+ #, php-format
342
  msgid "Error transfering backup to %s."
343
  msgstr "Error transfiriendo copia de seguridad a %s."
344
 
345
  #: inc/Pro/class-destination-glacier.php:54
 
346
  #: inc/class-destination-s3.php:121
347
  msgid "Access Key"
348
  msgstr "Claves de acceso"
349
 
350
  #: inc/Pro/class-destination-glacier.php:61
 
351
  #: inc/class-destination-s3.php:135
352
  msgid "Secret Key"
353
  msgstr "Clave secreta"
355
  #: inc/Pro/class-destination-glacier.php:96
356
  #: inc/class-destination-msazure.php:76
357
  #: inc/class-destination-rsc.php:105
 
358
  #: inc/class-destination-s3.php:215
359
  msgid "File deletion"
360
  msgstr "Borrado de fichero"
361
 
362
  #: inc/Pro/class-destination-glacier.php:166
363
  #: inc/class-destination-msazure.php:448
 
364
  #: inc/class-destination-s3.php:359
365
  msgid "Missing access key!"
366
  msgstr "Claves de acceso no localizadas!"
367
 
368
  #: inc/Pro/class-destination-glacier.php:168
 
369
  #: inc/class-destination-s3.php:361
370
  msgid "Missing secret access key!"
371
  msgstr "Claves secreta de acceso no localizada!"
372
 
373
  #: inc/Pro/class-destination-glacier.php:446
 
374
  #: inc/class-destination-s3.php:972
375
+ #, php-format
376
  msgid "Backup transferred to %s."
377
  msgstr "Respaldo transferido a %s."
378
 
379
  #: inc/Pro/class-destination-msazure.php:99
380
  #: inc/class-destination-msazure.php:128
381
+ #, php-format
382
  msgid "MS Azure container \"%s\" created."
383
  msgstr "Contenedor Microsoft Azure \"%s\" se ha creado."
384
 
385
  #: inc/Pro/class-destination-msazure.php:102
386
  #: inc/class-destination-msazure.php:131
387
+ #, php-format
388
  msgid "MS Azure container create: %s"
389
  msgstr "Contenedor MS Azure creado : %s"
390
 
391
  #: inc/Pro/class-destination-msazure.php:144
392
  #: inc/class-destination-msazure.php:237
393
+ #, php-format
394
  msgid "MS Azure container \"%s\" does not exist!"
395
  msgstr "Contenedor Microsoft Azure \"%s\" no existe!"
396
 
397
  #: inc/Pro/class-destination-msazure.php:148
398
  #: inc/class-destination-msazure.php:241
399
+ #, php-format
400
  msgid "Connected to MS Azure container \"%s\"."
401
  msgstr "Conectado a contenedor Microsoft Azure \"%s\"."
402
 
403
  #: inc/Pro/class-destination-msazure.php:233
404
  #: inc/class-destination-msazure.php:296
405
  #: inc/class-destination-msazure.php:352
406
+ #, php-format
407
  msgid "Microsoft Azure API: %s"
408
  msgstr "Microsoft Azure API: %s"
409
 
445
 
446
  #: inc/Pro/class-destination-rsc.php:116
447
  #: inc/class-destination-rsc.php:158
448
+ #, php-format
449
  msgid "Rackspace Cloud container \"%s\" created."
450
  msgstr "Contenedor Rackspace Cloud \"%s\" creado."
451
 
456
  #: inc/class-destination-rsc.php:277
457
  #: inc/class-destination-rsc.php:317
458
  #: inc/class-destination-rsc.php:362
459
+ #, php-format
460
  msgid "Rackspace Cloud API: %s"
461
  msgstr "Rackspase Cloud API : %s"
462
 
463
+ #: inc/Pro/class-destination-s3.php:33
 
464
  #: inc/class-destination-s3.php:54
465
+ #: inc/Pro/class-destination-s3.php:32
466
  msgid "Amazon S3 Region"
467
  msgstr "Región Amazon S3"
468
 
469
  #: inc/Pro/class-destination-s3.php:40
 
470
  #: inc/class-destination-s3.php:1118
471
  msgid "Amazon S3: US Standard"
472
  msgstr "Amazon S3: US Standard"
473
 
474
+ #: inc/Pro/class-destination-s3.php:46
 
475
  #: inc/class-destination-s3.php:1122
476
+ #: inc/Pro/class-destination-s3.php:45
477
  msgid "Amazon S3: US West (Northern California)"
478
  msgstr "Amazon S3 : Oeste USA (Norte de California)"
479
 
480
  #: inc/Pro/class-destination-s3.php:53
 
481
  #: inc/class-destination-s3.php:1126
482
  msgid "Amazon S3: US West (Oregon)"
483
  msgstr "Amazon S3: Oeste de USA (Oregon)"
484
 
485
  #: inc/Pro/class-destination-s3.php:58
 
486
  #: inc/class-destination-s3.php:1130
487
  msgid "Amazon S3: EU (Ireland)"
488
  msgstr "Amazon S3: Europa (Irlanda)"
489
 
490
  #: inc/Pro/class-destination-s3.php:63
 
491
  #: inc/class-destination-s3.php:1134
492
  msgid "Amazon S3: EU (London)"
493
  msgstr "Amazon S3: Europa (Londres)"
494
 
495
  #: inc/Pro/class-destination-s3.php:68
 
496
  #: inc/class-destination-s3.php:1138
497
  msgid "Amazon S3: EU (Germany)"
498
  msgstr "Amazon S3: EU (Alemania)"
499
 
500
  #: inc/Pro/class-destination-s3.php:73
 
501
  #: inc/class-destination-s3.php:1142
502
  msgid "Amazon S3: Asia Pacific (Mumbai)"
503
  msgstr "Amazon S3: Asia Pacífico (Mumbai)"
504
 
505
  #: inc/Pro/class-destination-s3.php:78
 
506
  #: inc/class-destination-s3.php:1146
507
  msgid "Amazon S3: Asia Pacific (Tokyo)"
508
  msgstr "Amazon S3: Asia Pacífico (Tokyo)"
509
 
510
  #: inc/Pro/class-destination-s3.php:83
 
511
  #: inc/class-destination-s3.php:1150
512
  msgid "Amazon S3: Asia Pacific (Seoul)"
513
  msgstr "Amazon S3: Asia Pacífico (Seoul)"
514
 
515
  #: inc/Pro/class-destination-s3.php:88
 
516
  #: inc/class-destination-s3.php:1154
517
  msgid "Amazon S3: Asia Pacific (Singapore)"
518
  msgstr "Amazon S3: Asia Pacífico (Singapur)"
519
 
520
  #: inc/Pro/class-destination-s3.php:93
 
521
  #: inc/class-destination-s3.php:1158
522
  msgid "Amazon S3: Asia Pacific (Sydney)"
523
  msgstr "Amazon S3: Asia Pacífico (Sydney)"
524
 
525
  #: inc/Pro/class-destination-s3.php:98
 
526
  #: inc/class-destination-s3.php:1162
527
  msgid "Amazon S3: South America (Sao Paulo)"
528
  msgstr "Amazon S3: Sudamérica (Sao Paulo)"
529
 
530
  #: inc/Pro/class-destination-s3.php:103
 
531
  #: inc/class-destination-s3.php:1166
532
  msgid "Amazon S3: China (Beijing)"
533
  msgstr "Amazon S3: China (Beijing)"
534
 
535
  #: inc/Pro/class-destination-s3.php:108
 
536
  #: inc/class-destination-s3.php:1170
537
  msgid "Google Storage: EU"
538
  msgstr "Google Storage: EU"
539
 
540
  #: inc/Pro/class-destination-s3.php:113
 
541
  #: inc/class-destination-s3.php:1174
542
  msgid "Google Storage: USA"
543
  msgstr "Google Storage: USA"
544
 
545
  #: inc/Pro/class-destination-s3.php:118
 
546
  #: inc/class-destination-s3.php:1178
547
  msgid "Google Storage: Asia"
548
  msgstr "Google Storage: Asia"
549
 
550
  #: inc/Pro/class-destination-s3.php:123
 
551
  #: inc/class-destination-s3.php:1182
552
  msgid "Dream Host Cloud Storage"
553
  msgstr "Dream Host Cloud Storage"
554
 
555
  #: inc/Pro/class-destination-s3.php:285
 
556
  #: inc/class-destination-s3.php:520
557
+ #, php-format
558
  msgid " %s is not a valid bucket name."
559
  msgstr " %s no es un nombre corecto de cubo."
560
 
561
  #: inc/Pro/class-destination-s3.php:383
 
562
  #: inc/class-destination-s3.php:803
563
+ #, php-format
564
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
565
  msgstr "Conectado a cubo S3 \"%1$s\" dans %2$s"
566
 
567
  #: inc/Pro/class-destination-s3.php:391
 
568
  #: inc/class-destination-s3.php:808
569
+ #, php-format
570
  msgid "S3 Bucket \"%s\" does not exist!"
571
  msgstr "Cubo S3 \"%s\" no existe!"
572
 
573
  #: inc/Pro/class-destination-s3.php:623
 
 
 
 
 
574
  #: inc/class-destination-s3.php:570
575
  #: inc/class-destination-s3.php:868
576
  #: inc/class-destination-s3.php:936
577
  #: inc/class-destination-s3.php:995
578
  #: inc/class-destination-s3.php:1006
579
+ #, php-format
580
  msgid "S3 Service API: %s"
581
  msgstr "S3 Servicio API: %s"
582
 
639
  #: inc/class-jobtype-wpplugin.php:57
640
  #: inc/class-page-backwpup.php:329
641
  #: inc/class-page-backwpup.php:404
 
642
  #: inc/class-page-settings.php:837
643
  msgid "none"
644
  msgstr "ninguna"
666
 
667
  #: inc/Pro/class-jobtype-dbdump.php:475
668
  #: inc/class-jobtype-dbdump.php:159
669
+ #, php-format
670
  msgid "%d. Try to backup database&#160;&hellip;"
671
  msgstr "%d. Prueba crear copia de seguridad de la base de datos&#160;&hellip;"
672
 
673
  #: inc/Pro/class-jobtype-dbdump.php:495
674
  #: inc/class-jobtype-dbdump.php:173
675
+ #, php-format
676
  msgid "Connected to database %1$s on %2$s"
677
  msgstr "Conectado de base de datos %1$s sur %2$s"
678
 
683
 
684
  #: inc/Pro/class-jobtype-dbdump.php:536
685
  #: inc/class-jobtype-dbdump.php:210
686
+ #, php-format
687
  msgid "Backup database table \"%s\" with \"%s\" records"
688
  msgstr "Copia de seguridad de la tabla “%s” con “%s” registros"
689
 
710
 
711
  #: inc/Pro/class-jobtype-dbdump.php:764
712
  #: inc/class-jobtype-dbdump.php:254
713
+ #, php-format
714
  msgid "Added database dump \"%1$s\" with %2$s to backup file list"
715
  msgstr "Añadido respaldo de DB \"%1$s\" con %2$s a la lista de ficheros a respaldar"
716
 
731
 
732
  #: inc/Pro/class-jobtype-dbdump.php:844
733
  #: inc/class-mysqldump.php:110
734
+ #, php-format
735
  msgid "Cannot connect to MySQL database %1$d: %2$s"
736
  msgstr "Imposible de contectar con base de datos MySQL %1$d: %2$s"
737
 
752
  #: inc/class-mysqldump.php:400
753
  #: inc/class-mysqldump.php:437
754
  #: inc/class-mysqldump.php:500
755
+ #, php-format
756
  msgid "Database error %1$s for query %2$s"
757
  msgstr "Error de DB %1$s para la consulta %2$s"
758
 
774
  #: inc/Pro/class-page-support.php:221
775
  #: inc/class-page-jobs.php:172
776
  #: inc/class-page-logs.php:228
777
+ #, php-format
778
  msgid "Job ID: %d"
779
  msgstr "ID trabajo: %d"
780
 
784
  msgstr "Comenzar asistente"
785
 
786
  #: inc/Pro/class-pro.php:131
787
+ #: inc/class-page-about.php:558
788
  msgid "Backup to Amazon Glacier"
789
  msgstr "Backup a Amazon Glacier"
790
 
791
  #: inc/Pro/class-pro.php:152
792
+ #: inc/class-page-about.php:553
793
  msgid "Backup to Google Drive"
794
  msgstr "Backup a Google Drive"
795
 
796
  #: inc/Pro/class-pro.php:285
797
  #: inc/Pro/class-pro.php:286
 
 
798
  #: inc/class-page-backups.php:293
799
+ #: views/pro/restore/steps/step4_top.php:2
800
  msgid "Restore"
801
  msgstr "Restaurar"
802
 
 
803
  #: inc/Pro/class-wizard-job.php:17
804
  #: inc/Pro/class-wizard-jobimport.php:16
805
  #: inc/Pro/class-wizard-systemtest.php:27
807
  #: inc/class-admin.php:531
808
  #: inc/class-help.php:17
809
  #: inc/class-help.php:22
810
+ #: inc/class-job.php:459
811
  #: inc/class-jobtype-dbcheck.php:15
812
  #: inc/class-jobtype-dbdump.php:15
813
  #: inc/class-jobtype-file.php:15
814
  #: inc/class-jobtype-wpexp.php:15
815
  #: inc/class-jobtype-wpplugin.php:15
816
+ #: inc/class-page-about.php:365
817
+ #: inc/class-page-about.php:375
818
+ #: inc/class-page-about.php:660
819
+ #: inc/class-page-backwpup.php:254
820
  #: inc/class-page-backwpup.php:260
821
  #: inc/class-page-backwpup.php:262
 
822
  #: inc/class-page-settings.php:1123
823
  msgid "http://backwpup.com"
824
  msgstr "https://backwpup.com"
825
 
 
826
  #: inc/Pro/class-wizard-job.php:19
827
  #: inc/Pro/class-wizard-jobimport.php:18
828
  #: inc/Pro/class-wizard-systemtest.php:29
1008
 
1009
  #: inc/class-admin.php:305
1010
  #: inc/class-adminbar.php:82
 
1011
  #: inc/class-page-settings.php:215
1012
  msgid "Jobs"
1013
  msgstr "Trabajos"
1019
  #: inc/class-admin.php:355
1020
  #: inc/class-adminbar.php:98
1021
  #: inc/class-page-logs.php:377
 
1022
  #: inc/class-page-settings.php:219
1023
  msgid "Logs"
1024
  msgstr "Logs"
1042
  msgstr "Sientes engañado?"
1043
 
1044
  #: inc/class-admin.php:510
1045
+ #, php-format
1046
  msgid "<a class=\"backwpup-get-pro\" href=\"%s\">Get BackWPup Pro now.</a>"
1047
  msgstr "<a class=\"backwpup-get-pro\" href=\"%s\">Obtén BackWPup Pro ahora.</a>"
1048
 
1049
  #: inc/class-admin.php:531
1050
+ #, php-format
1051
  msgid "version %s"
1052
  msgstr "version %s"
1053
 
1085
  msgid "Make BackWPup better!"
1086
  msgstr "¡Haz BackWPup mejor!"
1087
 
1088
+ #: inc/class-become-inpsyder-widget.php:109
1089
  #: inc/class-become-inpsyder-widget.php:108
1090
  msgid "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
1091
  msgstr "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
1092
 
1093
+ #: inc/class-become-inpsyder-widget.php:119
1094
  #: inc/class-become-inpsyder-widget.php:118
1095
  msgid "We want to make BackWPup even stronger and its support much faster."
1096
  msgstr "Queremos hacer BackWPup todavía más fuerte y su soporte mucho más rápido."
1097
 
1098
+ #: inc/class-become-inpsyder-widget.php:127
1099
  #: inc/class-become-inpsyder-widget.php:126
1100
  msgid "This is why we are looking for a talented developer who can work remotely and support us in BackWPup"
1101
  msgstr "Por eso estamos buscando un desarrollador con talento capaz de trabajar remótamente ayudándonos con BackWPup"
1102
 
1103
+ #: inc/class-become-inpsyder-widget.php:134
1104
  #: inc/class-become-inpsyder-widget.php:133
1105
  msgid "and other exciting WordPress projects at our VIP partner agency."
1106
  msgstr "y otros excitantes proyectos WordPress en nuestra agencia VIP."
1119
 
1120
  #. translators: $1 is the file path
1121
  #: inc/class-create-archive.php:89
1122
+ #, php-format
1123
  msgctxt "%s = Folder name"
1124
  msgid "Folder %s for archive not found"
1125
  msgstr "Carpetas %s para fichero no encontrada"
1137
 
1138
  #. translators: $1 is a directory name
1139
  #: inc/class-create-archive.php:155
1140
+ #, php-format
1141
  msgctxt "ZipArchive open() result"
1142
  msgid "Cannot create zip archive: %d"
1143
  msgstr "Imposible crear fichero zip : %d"
1148
 
1149
  #. translators: the $1 is the type of the archive file
1150
  #: inc/class-create-archive.php:208
1151
+ #, php-format
1152
  msgctxt "%s = file name"
1153
  msgid "Method to archive file %s not detected"
1154
  msgstr "Método de archivo del fichero %s no detectado"
1159
 
1160
  #. translators: The $1 is the tecnical error string from pclzip.
1161
  #: inc/class-create-archive.php:233
 
1162
  #: inc/class-create-archive.php:514
1163
+ #, php-format
1164
  msgid "PclZip archive add error: %s"
1165
  msgstr "Fichero PclZipp añade error : %s"
1166
 
1170
 
1171
  #. translators: The $1 is the name of the file to add to the archive.
1172
  #: inc/class-create-archive.php:326
1173
+ #, php-format
1174
  msgctxt "File to add to archive"
1175
  msgid "File %s does not exist or is not readable"
1176
  msgstr "El archivo %s no existe o no se puede leer"
1177
 
 
 
 
 
1178
  #: inc/class-create-archive.php:347
1179
  #: inc/class-create-archive.php:374
1180
  #: inc/class-create-archive.php:578
1182
  msgid "This archive method can only add one file"
1183
  msgstr "Este método de archivo sólo puede añadir un fichero"
1184
 
 
1185
  #: inc/class-create-archive.php:442
1186
  msgid "ZIP archive cannot be closed correctly"
1187
  msgstr "El Archivo ZIP no se puede cerrar correctamente"
1188
 
1189
  #. translators: the $1 is the name of the archive.
1190
  #. translators: $1 is the name of the archive.
 
 
 
1191
  #: inc/class-create-archive.php:473
1192
  #: inc/class-create-archive.php:490
1193
  #: inc/class-create-archive.php:607
1194
+ #, php-format
1195
  msgid "Cannot add \"%s\" to zip archive!"
1196
  msgstr "Imposible añadir \"%s\" a archivo zip!"
1197
 
 
1198
  #: inc/class-create-archive.php:544
1199
  msgid "Folder name cannot be empty"
1200
  msgstr "Nombre de la carpeta no puede estar vacío"
1201
 
1202
  #. translators: $1 is the folder name
1203
+ #: inc/class-create-archive.php:556
1204
  #: inc/class-create-archive.php:555
1205
+ #, php-format
1206
  msgctxt "Folder path to add to archive"
1207
  msgid "Folder %s does not exist or is not readable"
1208
  msgstr "Carpeta \"%s\" no existe o no se puede leer"
1209
 
1210
  #. translators. $1 is the status returned by a call to a ZipArchive method.
 
1211
  #: inc/class-create-archive.php:639
1212
+ #, php-format
1213
  msgctxt "Text of ZipArchive status Message"
1214
  msgid "ZipArchive returns status: %s"
1215
  msgstr "Archivo zip devuelve estado : %s"
1216
 
1217
  #. translators: $1 is the file name.
 
1218
  #: inc/class-create-archive.php:687
1219
+ #, php-format
1220
  msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1221
  msgstr "¡El nombre de archivo “%1$s” es demasiado largo para ser guardado correctamente en el archivo %2$s!"
1222
 
1223
  #. translators: $1 is the file name to use in the archive.
 
1224
  #: inc/class-create-archive.php:699
1225
+ #, php-format
1226
  msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1227
  msgstr "¡La ruta al archivo “%1$s” es demasiado largo para ser guardada correctamente en el archivo %2$s!"
1228
 
 
1229
  #: inc/class-create-archive.php:741
1230
+ #, php-format
1231
  msgid "Cannot open source file %s for archiving. Writing an empty file."
1232
  msgstr "No se puede abrir el archivo de origen %s para archivar. Escribir un archivo vacío."
1233
 
1234
  #. translators: $1 is the name of the folder. $2 is the archive name.
1235
+ #: inc/class-create-archive.php:804
1236
  #: inc/class-create-archive.php:803
1237
+ #, php-format
1238
  msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1239
  msgstr "¡El nombre del directorio “%1$s” es demasiado largo para ser guardado correctamente en el archivo %2$s!"
1240
 
1241
  #. translators: $1 is the name of the folder. $2 is the archive name.
1242
+ #: inc/class-create-archive.php:819
1243
  #: inc/class-create-archive.php:818
1244
+ #, php-format
1245
  msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1246
  msgstr "¡La ruta al directorio “%1$s” es demasiado largo para ser guardada correctamente en el archivo %2$s!"
1247
 
1248
+ #: inc/class-create-archive.php:887
1249
  #: inc/class-create-archive.php:886
1250
+ #, php-format
1251
  msgid "If %s will be added to your backup archive, the archive will be too large for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
1252
  msgstr "Si %s se añade a tu archivo de backup, el archivo será demasiado grande para operaciones con esta versión de PHP. Deberias considerar partir el trabajo de backup en multiples trabajas de menos tamaño cada uno."
1253
 
 
 
1254
  #: inc/class-create-archive.php:964
1255
  #: inc/class-create-archive.php:965
1256
  msgid "Unknown"
1257
  msgstr "Desconocido"
1258
 
1259
  #. translators: $1 is the filename to add into the archive.
 
1260
  #: inc/class-create-archive.php:996
1261
+ #, php-format
1262
  msgid "Cannot open source file %s."
1263
  msgstr "Imposible abrir ruta de fichero %s a archivo."
1264
 
 
1265
  #: inc/class-cron.php:73
1266
  msgid "Aborted, because no progress for one hour!"
1267
  msgstr "¡Abortado, dado que no ha habido progreso en una hora!"
1268
 
1269
+ #: inc/class-cron.php:107
1270
  #: inc/class-destination-folder.php:195
1271
+ #: inc/class-job.php:1111
1272
+ #: inc/class-job.php:1294
1273
+ #: inc/class-job.php:2120
1274
  #: inc/class-jobtype-file.php:446
1275
+ #, php-format
1276
  msgid "Could not open path: %s"
1277
  msgstr "No se puede abrir la ruta: %s"
1278
 
 
1279
  #: inc/class-decrypter.php:56
1280
  msgid "Cannot open the archive for reading."
1281
  msgstr "No se puede abrir el archivo para leer."
1282
 
 
1283
  #: inc/class-decrypter.php:82
1284
  msgid "Cannot write the encrypted archive."
1285
  msgstr "Imposible crear fichero zip : %d."
1286
 
 
1287
  #: inc/class-decrypter.php:162
1288
  msgid "Private key invalid."
1289
  msgstr "Clave privada no válida."
1293
  msgstr "Empezando nueva sesión se subida de archivo"
1294
 
1295
  #: inc/class-destination-dropbox-api.php:199
1296
+ #, php-format
1297
  msgid "Uploading %s of data"
1298
  msgstr "Subiendo %s de datos"
1299
 
1300
  #: inc/class-destination-dropbox-api.php:244
1301
+ #, php-format
1302
  msgid "Finishing upload session with a total of %s uploaded"
1303
  msgstr "Acabando sesión de subida con un total de %s subido"
1304
 
1308
  msgid "Authentication"
1309
  msgstr "Autentificación"
1310
 
1311
+ #: inc/class-destination-dropbox.php:93
1312
  #: inc/class-destination-dropbox.php:95
1313
+ #: inc/class-destination-dropbox.php:92
1314
  msgid "Delete Dropbox Authentication"
1315
  msgstr "Borrar autenticación Dropbox"
1316
 
1317
+ #: inc/class-destination-dropbox.php:103
1318
  #: inc/class-destination-dropbox.php:102
1319
  msgid "App Access to Dropbox"
1320
  msgstr "App Acceso a Dropbox"
1323
  msgid "Get Dropbox App auth code"
1324
  msgstr "Obtén el código de autorización de Dropbox App"
1325
 
1326
+ #: inc/class-destination-dropbox.php:112
1327
  #: inc/class-destination-dropbox.php:111
1328
  msgid "A dedicated folder named BackWPup will be created inside of the Apps folder in your Dropbox. BackWPup will get read and write access to that folder only. You can specify a subfolder as your backup destination for this job in the destination field below."
1329
  msgstr "Un directorio dedicado llamado BackWPup será creado dentro del directorio Aplicaciones de Dropbox. BackWPup recibirà acceso de lectura y escritura para este directorio exclusivamente. Puedes especificar un subdirectorio como tu destino de copia de seguridad para este trabajo en el campo Destino aquí debajo."
1332
  msgid "— OR —"
1333
  msgstr "— O —"
1334
 
1335
+ #: inc/class-destination-dropbox.php:123
1336
  #: inc/class-destination-dropbox.php:122
1337
  msgid "Full Access to Dropbox"
1338
  msgstr "Acceso completo a Dropbox"
1341
  msgid "Get full Dropbox auth code "
1342
  msgstr "Obtén código de autorización completo para Dropbox "
1343
 
1344
+ #: inc/class-destination-dropbox.php:132
1345
  #: inc/class-destination-dropbox.php:131
1346
  msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup."
1347
  msgstr "BackWPup tendrá acceso de lectura y escritura completo a tu Dropbox. Puedes especificar tu destinación de copia de seguridad donde quieras, sólo ten en cuenta que cualquier archivo o directorio dentro de tu Dropbox puede ser sobreescrito o borrado por BackWPup."
1348
 
1349
+ #: inc/class-destination-dropbox.php:146
1350
  #: inc/class-destination-dropbox.php:145
1351
  msgid "Destination Folder"
1352
  msgstr "Directorio de destino"
1353
 
1354
+ #: inc/class-destination-dropbox.php:155
1355
  #: inc/class-destination-dropbox.php:154
1356
  msgid "Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden."
1357
  msgstr "Especifica un subdirectorio donde será guardada tu copi de seguridad. Si usas la opció App desde arriba, este directorio se creará dentro de Apps/BackWPup. Sino se creará en la raíz de tu Dropbox. Directorios existentes con el mismo nombre no serán sobreescritos."
1358
 
1359
+ #: inc/class-destination-dropbox.php:346
1360
  #: inc/class-destination-dropbox.php:345
1361
+ #, php-format
1362
  msgid "One file deleted from Dropbox"
1363
  msgid_plural "%d files deleted on Dropbox"
1364
  msgstr[0] "Un fichero eliminado de DropBox"
1365
  msgstr[1] "%d ficheros eliminados de Dropbox"
1366
 
1367
  #: inc/class-destination-dropbox.php:372
1368
+ #, php-format
1369
  msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
1370
  msgstr "%d. Prueba a enviar una copia de seguridad a Dropbox&#160;&hellip;"
1371
 
1450
  msgstr "Contraseña SMTP"
1451
 
1452
  #: inc/class-destination-email.php:243
1453
+ #, php-format
1454
  msgid "%d. Try to send backup with email&#160;&hellip;"
1455
  msgstr "%d. Prueba enviar una copia de seguridad con email&#160;&hellip;"
1456
 
1459
  msgstr "¡Copia de seguridad demasiado grande para ser enviada por correo electrónico!"
1460
 
1461
  #: inc/class-destination-email.php:255
1462
+ #, php-format
1463
  msgid "Sending email to %s&hellip;"
1464
  msgstr "Enviando correo electrónico a %s&hellip;"
1465
 
1466
  #: inc/class-destination-email.php:333
1467
+ #, php-format
1468
  msgid "BackWPup archive from %1$s: %2$s"
1469
  msgstr "Fichero BackWPup desde %1$s: %2$s"
1470
 
1471
  #: inc/class-destination-email.php:336
1472
+ #, php-format
1473
  msgid "Backup archive: %s"
1474
  msgstr "Fichero backup: %s"
1475
 
1491
  msgid "If this message reaches your inbox, sending backup archives via email should work for you."
1492
  msgstr "Si este mensaje llega a tu bandeja de entrada, significa que enviar copias de seguridad por correo electrónico funcionará."
1493
 
1494
+ #: inc/class-destination-folder-downloader.php:64
1495
+ msgid "Could not read data from source file."
1496
+ msgstr "No se pudo leer el archivo de registro."
1497
+
1498
+ #: inc/class-destination-folder-downloader.php:69
1499
+ #, fuzzy
1500
+ msgid "Could not write data into target file."
1501
+ msgstr "No se pudo escribir el archivo de registro."
1502
+
1503
  #: inc/class-destination-folder-downloader.php:96
1504
  msgid "File could not be opened for reading."
1505
  msgstr "El archivo no se pudo abrir para leer."
1506
 
1507
+ #. translators: $1 is the path of the local file where the backup will be stored
1508
+ #: inc/class-destination-folder-downloader.php:141
1509
+ #, php-format
1510
+ msgid "%s is a directory not a file."
1511
+ msgstr "%s es un directorio no un archivo."
1512
+
1513
  #: inc/class-destination-folder.php:32
1514
  msgid "Folder to store backups in"
1515
  msgstr "Carpeta para guardar respaldos en"
1516
 
1517
  #: inc/class-destination-folder.php:219
1518
+ #, php-format
1519
  msgid "One backup file deleted"
1520
  msgid_plural "%d backup files deleted"
1521
  msgstr[0] "Un fichero de respaldo eliminado"
1522
  msgstr[1] "%d ficheros de respaldo eliminados"
1523
 
 
1524
  #: inc/class-destination-ftp-downloader.php:108
1525
  msgid "Cannot open FTP file for download."
1526
  msgstr "No se puede abrir el archivo FTP para la transferencia."
1580
  msgstr "Imposible de conectar al servidor FTP: %s."
1581
 
1582
  #: inc/class-destination-ftp.php:394
1583
+ #, php-format
1584
  msgid "Cannot delete \"%s\" on FTP server!"
1585
  msgstr "Imposible eliminar \"%s\" de servidor FTP!"
1586
 
1587
+ #: inc/class-destination-ftp.php:405
1588
  #: inc/class-destination-ftp.php:404
1589
+ #, php-format
1590
  msgid "One file deleted on FTP server"
1591
  msgid_plural "%d files deleted on FTP server"
1592
  msgstr[0] "Un fichero eliminado de servidor FTP"
1593
  msgstr[1] "%d ficheros eliminados de servidor FTP"
1594
 
1595
  #: inc/class-destination-ftp.php:433
1596
+ #, php-format
1597
  msgid "%d. Try to send backup file to an FTP server&#160;&hellip;"
1598
  msgstr "%d. Prueba a enviar una copia de seguridad a un FTP server&#160;&hellip;"
1599
 
1600
  #: inc/class-destination-ftp.php:450
1601
+ #, php-format
1602
  msgid "Connected via explicit SSL-FTP to server: %s"
1603
  msgstr "Conectado por SSL-FTP al servidor: %s"
1604
 
1605
  #: inc/class-destination-ftp.php:458
1606
+ #, php-format
1607
  msgid "Cannot connect via explicit SSL-FTP to server: %s"
1608
  msgstr "Imposible de conectarse por SSL-FTP al servidor: %s"
1609
 
1612
  msgstr "La función para conectarse por SSL-FTP al servidor no existe!"
1613
 
1614
  #: inc/class-destination-ftp.php:483
1615
+ #, php-format
1616
  msgid "Connected to FTP server: %s"
1617
  msgstr "Conectado al servidor FTP: %s"
1618
 
1619
  #: inc/class-destination-ftp.php:491
1620
+ #, php-format
1621
  msgid "Cannot connect to FTP server: %s"
1622
  msgstr "Imposible de conectar al servidor FTP: %s"
1623
 
1625
  #: inc/class-destination-ftp.php:523
1626
  #: inc/class-destination-ftp.php:546
1627
  #: inc/class-destination-ftp.php:603
1628
+ #, php-format
1629
  msgid "FTP client command: %s"
1630
  msgstr "Comando de cliente FTP: %s"
1631
 
1632
  #: inc/class-destination-ftp.php:513
1633
+ #, php-format
1634
  msgid "FTP server response: %s"
1635
  msgstr "Respuesta del servidor FTP: %s"
1636
 
1643
  #: inc/class-destination-ftp.php:612
1644
  #: inc/class-destination-ftp.php:619
1645
  #: inc/class-destination-ftp.php:624
1646
+ #, php-format
1647
  msgid "FTP server reply: %s"
1648
  msgstr "Responder servidor FTP: %s"
1649
 
1652
  msgstr "Error obteniendo SYSTYPE"
1653
 
1654
  #: inc/class-destination-ftp.php:590
1655
+ #, php-format
1656
  msgid "FTP current folder is: %s"
1657
  msgstr "Actual carpeta FTP es : %s"
1658
 
1681
  msgstr "Imposible transferir respaldo a servidor FTP!"
1682
 
1683
  #: inc/class-destination-ftp.php:656
1684
+ #, php-format
1685
  msgid "Backup transferred to FTP server: %s"
1686
  msgstr "Respaldo enviado a servidor FTP: %s"
1687
 
1688
+ #: inc/class-destination-ftp.php:736
1689
  #: inc/class-destination-ftp.php:735
1690
+ #, php-format
1691
  msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
1692
  msgstr "Carpeta FTP \"%s\" no se puede crear!."
1693
 
1694
  #: inc/class-destination-ftp.php:753
1695
+ #, php-format
1696
  msgid "FTP Folder \"%s\" cannot be created!"
1697
  msgstr "Carpeta FTP \"%s\" no se puede crear!"
1698
 
1699
  #: inc/class-destination-ftp.php:765
1700
+ #, php-format
1701
  msgid "FTP Folder \"%s\" created!"
1702
  msgstr "Carpeta FTP \"%s\" creada!"
1703
 
1732
  msgstr "Carpeta en contenedor"
1733
 
1734
  #: inc/class-destination-msazure.php:215
1735
+ #, php-format
1736
  msgid "%d. Try sending backup to a Microsoft Azure (Blob)&#160;&hellip;"
1737
  msgstr "%d. Prueba enviando copia de seguridad a Microsoft Azure (Blob)&#160;&hellip;"
1738
 
1741
  msgstr "Empezando subida a MS Azure&#160;&hellip;"
1742
 
1743
  #: inc/class-destination-msazure.php:345
1744
+ #, php-format
1745
  msgid "One file deleted on Microsoft Azure container."
1746
  msgid_plural "%d files deleted on Microsoft Azure container."
1747
  msgstr[0] "Fichero eliminado de Microsoft Azure."
1764
  msgstr "Seleccionar una región"
1765
 
1766
  #: inc/class-destination-rsc.php:99
 
1767
  #: inc/class-destination-s3.php:202
1768
  msgid "Folder in bucket"
1769
  msgstr "Carpeta en cubo"
1770
 
1771
  #: inc/class-destination-rsc.php:260
1772
+ #, php-format
1773
  msgid "%d. Trying to send backup file to Rackspace cloud &hellip;"
1774
  msgstr "%d. Prueba enviando copia seguridad a Rackspace cloud &hellip;"
1775
 
1776
  #: inc/class-destination-rsc.php:274
1777
+ #, php-format
1778
  msgid "Connected to Rackspace cloud files container %s"
1779
  msgstr "Conectado a contenedor de archivos “%s” Rackspace"
1780
 
1791
  msgstr "Imposible transferir respaldo a RackSpace."
1792
 
1793
  #: inc/class-destination-rsc.php:356
1794
+ #, php-format
1795
  msgid "One file deleted on Rackspace cloud container."
1796
  msgid_plural "%d files deleted on Rackspace cloud container."
1797
  msgstr[0] "Un fichero eliminado de Rackspace."
1809
  msgid "A container could not be found!"
1810
  msgstr "Un contenedor no puede ser localizado!"
1811
 
1812
+ #: inc/class-destination-s3-downloader.php:76
1813
+ #, fuzzy
1814
+ msgid "Could not write data to file. Empty source file."
1815
+ msgstr "No se pudo escribir el archivo de registro."
1816
+
1817
  #: inc/class-destination-s3.php:48
1818
  msgid "Select a S3 service"
1819
  msgstr "Selecciona un servicio S3"
1820
 
 
1821
  #: inc/class-destination-s3.php:68
1822
  msgid "Or a S3 Server URL"
1823
  msgstr "O una URL de servidor S3"
1824
 
1825
+ #: inc/class-destination-s3.php:86
1826
+ msgid "Multipart Upload"
1827
+ msgstr "Subida multi-partes"
1828
+
1829
+ #: inc/class-destination-s3.php:98
1830
+ msgid "Use multipart upload for uploading a file"
1831
+ msgstr "Utiliza subida multi-partes para subir un fichero"
1832
+
1833
+ #: inc/class-destination-s3.php:103
1834
+ #: inc/class-destination-s3.php:102
1835
+ msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
1836
+ msgstr "Multipart divide el archivo en múltiples partes mientras se carga.<br />Esto es necesario para mostrar el proceso de carga y para transferir archivos más grandes.<br />No funciona con Google o Dreamhost."
1837
+
1838
  #: inc/class-destination-s3.php:115
1839
  msgid "S3 Access Keys"
1840
  msgstr "Claves de acceso S3"
1841
 
 
1842
  #: inc/class-destination-s3.php:145
1843
  msgid "S3 Bucket"
1844
  msgstr "Cubo S3 (Bucket)"
1845
 
 
1846
  #: inc/class-destination-s3.php:151
1847
  msgid "Bucket selection"
1848
  msgstr "Selección de cubo (Bucket)"
1849
 
 
1850
  #: inc/class-destination-s3.php:180
1851
  msgid "Create a new bucket"
1852
  msgstr "Crear un nuevo cubo (bucket)"
1853
 
 
1854
  #: inc/class-destination-s3.php:196
1855
  msgid "S3 Backup settings"
1856
  msgstr "Parámetros S3"
1857
 
 
 
 
 
 
 
 
 
 
 
 
1858
  #: inc/class-destination-s3.php:252
1859
  msgid "Amazon specific settings"
1860
  msgstr "Configuración específica para Amazon"
1861
 
 
1862
  #: inc/class-destination-s3.php:257
1863
  #: inc/class-destination-s3.php:263
1864
  msgid "Amazon: Storage Class"
1865
  msgstr "Amazon: Clase de almacenamiento"
1866
 
 
1867
  #: inc/class-destination-s3.php:266
1868
  msgid "Standard"
1869
  msgstr "Standard"
1870
 
 
1871
  #: inc/class-destination-s3.php:270
1872
  msgid "Standard-Infrequent Access"
1873
  msgstr "Acceso Standard Infrequente"
1874
 
 
1875
  #: inc/class-destination-s3.php:278
1876
  msgid "Reduced Redundancy"
1877
  msgstr "Reducida la redundancia"
1878
 
 
1879
  #: inc/class-destination-s3.php:297
1880
  msgid "Save files encrypted (AES256) on server."
1881
  msgstr "Guardar archivos encriptados (AES256) en servidor."
1882
 
 
1883
  #: inc/class-destination-s3.php:367
1884
  msgid "No bucket found!"
1885
  msgstr "Cubo no localizado!"
1886
 
 
1887
  #: inc/class-destination-s3.php:517
1888
+ #, php-format
1889
  msgid "Bucket %1$s created."
1890
  msgstr "Se ha creado el bucket %1$s."
1891
 
 
1892
  #: inc/class-destination-s3.php:699
1893
+ #, php-format
1894
  msgid "Storage Class: %s"
1895
  msgstr "Storage Class: %s"
1896
 
 
1897
  #: inc/class-destination-s3.php:734
1898
+ #, php-format
1899
  msgid "Cannot delete backup from %s."
1900
  msgstr "Imposible eliminar respaldo desde %s."
1901
 
 
1902
  #: inc/class-destination-s3.php:746
1903
+ #, php-format
1904
  msgid "One file deleted on S3 Bucket."
1905
  msgid_plural "%d files deleted on S3 Bucket"
1906
  msgstr[0] "Un fichero eliminado en Cubo S3."
1907
  msgstr[1] "%d ficheros eliminados en Cubo S3"
1908
 
 
1909
  #: inc/class-destination-s3.php:777
1910
+ #, php-format
1911
  msgid "%d. Trying to send backup file to S3 Service&#160;&hellip;"
1912
  msgstr "%d. Prieba enviando copia de seguridad a S3 Service&#160;&hellip;"
1913
 
 
1914
  #: inc/class-destination-s3.php:817
1915
  msgid "Checking for not aborted multipart Uploads&#160;&hellip;"
1916
  msgstr "Comprobación para multipart no abortado Uploads&#160;&hellip;"
1917
 
 
1918
  #: inc/class-destination-s3.php:830
1919
+ #, php-format
1920
  msgid "Upload for %s aborted."
1921
  msgstr "Subida para %s abortada."
1922
 
 
1923
  #: inc/class-destination-s3.php:836
1924
  msgid "Starting upload to S3 Service&#160;&hellip;"
1925
  msgstr "Empezando subida a S3 Service&#160;&hellip;"
1926
 
 
1927
  #: inc/class-destination-s3.php:988
1928
+ #, php-format
1929
  msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1930
  msgstr "Imposible transferir respaldo a S3! (%1$d) %2$s"
1931
 
1951
  msgstr "Carpeta en root"
1952
 
1953
  #: inc/class-destination-sugarsync.php:233
1954
+ #, php-format
1955
  msgid "%d. Try to send backup to SugarSync&#160;&hellip;"
1956
  msgstr "%d. Prueba enviando copia de seguridad a SugarSync&#160;&hellip;"
1957
 
1958
  #: inc/class-destination-sugarsync.php:240
1959
+ #, php-format
1960
  msgid "Authenticated to SugarSync with nickname %s"
1961
  msgstr "Identificado en SugarSync con nombre de usuario %s"
1962
 
1963
  #: inc/class-destination-sugarsync.php:243
1964
+ #, php-format
1965
  msgctxt "Available space on SugarSync"
1966
  msgid "Not enough disk space available on SugarSync. Available: %s."
1967
  msgstr "No hay suficiente espacio libre en SugarSync. Libre : %s."
1968
 
1969
  #: inc/class-destination-sugarsync.php:249
1970
+ #, php-format
1971
  msgid "%s available at SugarSync"
1972
  msgstr "%s disponible en SugarSync"
1973
 
1980
  msgstr "Imposible transferir respaldo a SugarSync!"
1981
 
1982
  #: inc/class-destination-sugarsync.php:305
1983
+ #, php-format
1984
  msgid "One file deleted on SugarSync folder"
1985
  msgid_plural "%d files deleted on SugarSync folder"
1986
  msgstr[0] "Un fichero eliminado en SugarSync"
1987
  msgstr[1] "%d ficheros eliminados en SugarSync"
1988
 
1989
  #: inc/class-destination-sugarsync.php:311
1990
+ #, php-format
1991
  msgid "SugarSync API: %s"
1992
  msgstr "SugarSync API: %s"
1993
 
1996
  msgstr "Nombre de archivo no válido, parece que el archivo incluye carácteres inválidos."
1997
 
1998
  #: inc/class-easycron.php:179
1999
+ #, php-format
2000
  msgid "EasyCron.com API returns (%s): %s"
2001
  msgstr "EasyCron.com API devuelve (%s): %s"
2002
 
2021
  msgstr "Si seleccionas esta opción, un trabajo de cron será creado en EasyCron que llama a WordPress cron cada 5 minutes."
2022
 
2023
  #: inc/class-file.php:142
2024
+ #, php-format
2025
  msgid "Folder %1$s not allowed, please use another folder."
2026
  msgstr "Directorio %1$s no permitido, por favor usa otro directorio."
2027
 
2028
  #: inc/class-file.php:147
2029
+ #, php-format
2030
  msgid "Folder %1$s is not in open basedir, please use another folder."
2031
  msgstr "Directorio %1$s no está en open basedir, por favor usa otro."
2032
 
2033
  #: inc/class-file.php:153
2034
+ #, php-format
2035
  msgid "Cannot create folder: %1$s"
2036
  msgstr "Imposible crear esa carpeta : %1$s"
2037
 
2038
  #: inc/class-file.php:159
2039
+ #, php-format
2040
  msgid "Folder \"%1$s\" is not writable"
2041
  msgstr "Carpeta \"%1$s\" no es escribible"
2042
 
2049
  msgstr "Info de la extension (plug in)"
2050
 
2051
  #: inc/class-help.php:17
2052
+ #, php-format
2053
  msgctxt "Plugin name and link; Plugin Version"
2054
  msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>."
2055
  msgstr "%1$s version %2$s. Un proyecto de <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>. Desarrollado por <a href=\"http://danielhuesken.de\">Daniel Hüsken</a>."
2082
  msgid "BackWPup jobs helper"
2083
  msgstr "Ayuda de trabajos de BackWPup"
2084
 
2085
+ #: inc/class-job.php:297
2086
  msgid "Starting job"
2087
  msgstr "Comenzando trabajo"
2088
 
2089
+ #: inc/class-job.php:314
2090
  msgid "Job Start"
2091
  msgstr "Comienzo de trabajo"
2092
 
2093
+ #: inc/class-job.php:334
2094
  msgid "Creates manifest file"
2095
  msgstr "Crea el archivo manifest"
2096
 
2097
+ #: inc/class-job.php:356
2098
  msgid "Creates archive"
2099
  msgstr "Crea archivo"
2100
 
2101
+ #: inc/class-job.php:362
2102
  msgid "Encrypts the archive"
2103
  msgstr "Encripta el archivo"
2104
 
2105
+ #: inc/class-job.php:403
2106
  msgid "End of Job"
2107
  msgstr "Final del Trabajo"
2108
 
2109
+ #: inc/class-job.php:428
2110
+ #, php-format
2111
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2112
  msgstr "BackWPup log para %1$s de %2$s à %3$s"
2113
 
2114
+ #: inc/class-job.php:457
2115
+ #: inc/class-job.php:456
2116
+ #, php-format
2117
  msgctxt "Plugin name; Plugin Version; plugin url"
2118
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2119
  msgstr "[INFO] %1$s %2$s; Un proyecto de Inpsyde GmbH"
2120
 
2121
+ #: inc/class-job.php:462
2122
+ #, php-format
2123
  msgctxt "WordPress Version; Blog url"
2124
  msgid "[INFO] WordPress %1$s on %2$s"
2125
  msgstr "[INFO]: WordPress %1$s en %2$s"
2126
 
2127
+ #: inc/class-job.php:465
2128
  msgid "Normal"
2129
  msgstr "Normal"
2130
 
2131
+ #: inc/class-job.php:468
2132
  msgid "Debug"
2133
  msgstr "Debug"
2134
 
2135
+ #: inc/class-job.php:471
2136
  msgid "(translated)"
2137
  msgstr "(traducido)"
2138
 
2139
+ #: inc/class-job.php:474
2140
+ #, php-format
2141
  msgid "[INFO] Log Level: %1$s %2$s"
2142
  msgstr "[INFO] Log Level: %1$s %2$s"
2143
 
2144
+ #: inc/class-job.php:480
2145
+ #, php-format
2146
  msgid "[INFO] BackWPup job: %1$s"
2147
  msgstr "[INFO]: Trabajo de BackWPup: %1$s"
2148
 
2149
+ #: inc/class-job.php:484
2150
+ #, php-format
2151
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2152
  msgstr "[INFO] Se ejecuta con el usuario: %1$s (%2$d) "
2153
 
2154
+ #: inc/class-job.php:500
2155
  #: inc/class-page-backwpup.php:323
2156
  #: inc/class-page-jobs.php:282
2157
  #: inc/class-page-jobs.php:291
2158
  msgid "Not scheduled!"
2159
  msgstr "Sin programación !"
2160
 
2161
+ #: inc/class-job.php:507
2162
+ #: inc/class-job.php:519
2163
+ #, php-format
2164
  msgid "[INFO] Cron: %s; Next: %s "
2165
  msgstr "[INFO] Cron: %s; Siguiente:%s "
2166
 
2167
+ #: inc/class-job.php:511
2168
  msgid "[INFO] BackWPup job start with link is active"
2169
  msgstr "[INFO] El trabajo BackWPup empieza si el enlace está activo"
2170
 
2171
+ #: inc/class-job.php:513
2172
  msgid "[INFO] BackWPup job start with EasyCron.com"
2173
  msgstr "[INFO] El trabajo BackWPup empieza con EasyCron.com"
2174
 
2175
+ #: inc/class-job.php:523
2176
  msgid "[INFO] BackWPup no automatic job start configured"
2177
  msgstr "[INFO] Trabajo no automático BackWPup empieza configurado"
2178
 
2179
+ #: inc/class-job.php:527
2180
  msgid "[INFO] BackWPup job started from wp-cron"
2181
  msgstr "[INFO] Trabajo de BackWPup comenzó desde wp-cron"
2182
 
2183
+ #: inc/class-job.php:529
2184
  msgid "[INFO] BackWPup job started manually"
2185
  msgstr "[INFO] Trabajo de BackWPup comenzó manualmente"
2186
 
2187
+ #: inc/class-job.php:531
2188
  msgid "[INFO] BackWPup job started from external url"
2189
  msgstr "[INFO] Trabajo de BackWPup comenzó desde URL externa"
2190
 
2191
+ #: inc/class-job.php:534
2192
+ #: inc/class-job.php:533
2193
  msgid "[INFO] BackWPup job started form commandline interface"
2194
  msgstr "[INFO] Trabajo de BackWPup comenzó desde interfaz de línea de comandos"
2195
 
2196
+ #: inc/class-job.php:545
2197
+ #: inc/class-job.php:544
2198
  msgid "[INFO] PHP ver.:"
2199
  msgstr "[INFO] version PHP:"
2200
 
2201
+ #: inc/class-job.php:548
2202
+ #, php-format
2203
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2204
  msgstr "[INFO] El tiempo máximo de ejecución de PHP script son %1$d segundos"
2205
 
2206
+ #: inc/class-job.php:555
2207
+ #, php-format
2208
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2209
  msgstr "[INFO] El tiemp de reinicio está configurado en %1$d segundos"
2210
 
2211
+ #: inc/class-job.php:561
2212
+ #, php-format
2213
  msgid "[INFO] MySQL ver.: %s"
2214
  msgstr "[INFO] Version MySQL: %s"
2215
 
2216
+ #: inc/class-job.php:565
2217
+ #, php-format
2218
  msgid "[INFO] Web Server: %s"
2219
  msgstr "[INFO] Web Server: %s"
2220
 
2221
+ #: inc/class-job.php:571
2222
+ #, php-format
2223
  msgid "[INFO] curl ver.: %1$s; %2$s"
2224
  msgstr "[INFO] Version curl : %1$s; %2$s"
2225
 
2226
+ #: inc/class-job.php:576
2227
+ #, php-format
2228
  msgid "[INFO] Temp folder is: %s"
2229
  msgstr "[INFO] Carpeta temporal es : %s"
2230
 
2231
+ #: inc/class-job.php:584
2232
+ #, php-format
2233
  msgid "[INFO] Logfile is: %s"
2234
  msgstr "[INFO] Carpeta de archivos de logs es : %s"
2235
 
2236
+ #: inc/class-job.php:591
2237
+ #, php-format
2238
  msgid "[INFO] Backup file is: %s"
2239
  msgstr "[INFO] Fichero de respaldo es : %s"
2240
 
2241
+ #: inc/class-job.php:594
2242
+ #, php-format
2243
  msgid "[INFO] Backup type is: %s"
2244
  msgstr "[INFO] Tipo de respaldo es : %s"
2245
 
2246
+ #: inc/class-job.php:603
2247
  msgid "Could not write log file"
2248
  msgstr "No se pudo escribir el archivo de registro"
2249
 
2250
+ #: inc/class-job.php:616
2251
  msgid "No destination correctly defined for backup! Please correct job settings."
2252
  msgstr "Destino no se ha definido correctamente para respaldo! Por favor corrija configuración del trabajo."
2253
 
2254
+ #: inc/class-job.php:718
2255
  msgid "Cannot write progress to working file. Job will be aborted."
2256
  msgstr "No se puede escribir progreso en el archivo de trabajo. El trabajo será abortado."
2257
 
2258
+ #: inc/class-job.php:793
2259
  #: inc/class-page-jobs.php:786
2260
  msgid "WARNING:"
2261
  msgstr "ADVERTENCIA :"
2262
 
2263
+ #: inc/class-job.php:802
2264
  #: inc/class-page-jobs.php:784
2265
  msgid "ERROR:"
2266
  msgstr "ERROR:"
2267
 
2268
+ #: inc/class-job.php:806
2269
  msgid "DEPRECATED:"
2270
  msgstr "DEPRECIADO :"
2271
 
2272
+ #: inc/class-job.php:809
2273
  msgid "STRICT NOTICE:"
2274
  msgstr "AVISO ESTRICTO :"
2275
 
2276
+ #: inc/class-job.php:814
2277
  msgid "RECOVERABLE ERROR:"
2278
  msgstr "ERROR RECUPERABLE :"
2279
 
2280
+ #: inc/class-job.php:1091
2281
  msgid "Aborted by user!"
2282
  msgstr "Abortado por el usuario!"
2283
 
2284
+ #: inc/class-job.php:1129
2285
+ #, php-format
2286
  msgid "One old log deleted"
2287
  msgid_plural "%d old logs deleted"
2288
  msgstr[0] "Borrado un log antiguo"
2289
  msgstr[1] "%d logs antiguos borrados"
2290
 
2291
+ #: inc/class-job.php:1142
2292
  #: inc/class-page-jobs.php:784
2293
+ #: inc/class-job.php:1141
2294
+ #, php-format
2295
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2296
  msgstr "Job mit Fehlern beendet in %s Sekunden. Sie müssen die Fehler für eine korrekte Ausführung beheben."
2297
 
2298
+ #: inc/class-job.php:1151
2299
+ #: inc/class-job.php:1150
2300
+ #, php-format
2301
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2302
  msgstr "Trabajo finalizado con errores en %s segundos. Por favor resuélvelos para una correcta ejecución."
2303
 
2304
+ #: inc/class-job.php:1158
2305
  #: inc/class-page-jobs.php:788
2306
+ #, php-format
2307
  msgid "Job done in %s seconds."
2308
  msgstr "Trabajo realizado en %s segundos."
2309
 
2310
+ #: inc/class-job.php:1212
2311
  msgid "SUCCESSFUL"
2312
  msgstr "EXITOSO"
2313
 
2314
+ #: inc/class-job.php:1214
2315
  msgid "WARNING"
2316
  msgstr "AVISO"
2317
 
2318
+ #: inc/class-job.php:1217
2319
  msgid "ERROR"
2320
  msgstr "ERREUR"
2321
 
2322
+ #: inc/class-job.php:1221
2323
+ #, php-format
2324
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2325
  msgstr "[%3$s] BackWPup log %1$s: %2$s"
2326
 
2327
+ #: inc/class-job.php:1341
2328
+ #, php-format
2329
  msgid "Restart after %1$d seconds."
2330
  msgstr "Reinicio después de %1$d segundos."
2331
 
2332
+ #: inc/class-job.php:1343
2333
  msgid "Restart after getting signal."
2334
  msgstr "Reinicio después de obtener señal."
2335
 
2336
+ #: inc/class-job.php:1534
2337
  msgid "Job restarts due to inactivity for more than 5 minutes."
2338
  msgstr "El trabajo se reinicia debido a inactividad mayor de 5 minutos."
2339
 
2340
+ #: inc/class-job.php:1636
2341
  msgid "Step aborted: too many attempts!"
2342
  msgstr "Etapa abortada: demasiados intentos !"
2343
 
2344
+ #: inc/class-job.php:1716
2345
+ #, php-format
2346
  msgid "%d. Trying to create backup archive &hellip;"
2347
  msgstr "%d. Prueba creando copia de seguridad archivo &hellip;"
2348
 
2349
+ #: inc/class-job.php:1730
2350
+ #: inc/class-job.php:1729
2351
+ #, php-format
2352
  msgctxt "Archive compression method"
2353
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2354
  msgstr "Comprimiendo archivos como %s. Por favor sé paciente, esto puede tardar un momento."
2355
 
2356
+ #: inc/class-job.php:1742
 
2357
  msgid "Adding Extra files to Archive"
2358
  msgstr "Añadiendo archivos extra al Archivo"
2359
 
2360
+ #: inc/class-job.php:1754
2361
+ #: inc/class-job.php:1823
 
 
2362
  msgid "Cannot create backup archive correctly. Aborting creation."
2363
  msgstr "No se puede crear archivo de copia de seguridad correctamente. Abortando creación."
2364
 
2365
+ #: inc/class-job.php:1772
2366
+ #, php-format
2367
  msgid "Archiving Folder: %s"
2368
  msgstr "Archivando Directorio: %s"
2369
 
2370
+ #: inc/class-job.php:1834
 
2371
  msgid "Backup archive created."
2372
  msgstr "Creado fichero de respaldo."
2373
 
2374
+ #: inc/class-job.php:1850
2375
+ #: inc/class-job.php:1849
2376
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2377
  msgstr "El archivo de copia de seguridad es demasiado largo para esta versión de PHP. Debes considerar dividir el trabajo de la copia de seguridad en múltiples trabajos con menos archivos cada uno."
2378
 
2379
+ #: inc/class-job.php:1857
2380
+ #, php-format
2381
  msgid "Archive size is %s."
2382
  msgstr "Tamaño de archivo es %s."
2383
 
2384
+ #: inc/class-job.php:1864
2385
+ #, php-format
2386
  msgid "%1$d Files with %2$s in Archive."
2387
  msgstr "%1$d ficheros con %2$s en Archivo."
2388
 
2389
+ #: inc/class-job.php:1902
 
2390
  msgid "No encryption key was provided. Aborting encryption."
2391
  msgstr "No se proporcionó ninguna clave de cifrado. Abortar el cifrado."
2392
 
2393
+ #: inc/class-job.php:1912
2394
+ #, php-format
2395
  msgid "%d. Trying to encrypt archive &hellip;"
2396
  msgstr "%d. Prueba encriptando copia de seguridad archivo &hellip;"
2397
 
2398
+ #: inc/class-job.php:1925
 
2399
  msgid "Cannot open the archive for reading. Aborting encryption."
2400
  msgstr "No se puede crear archivo de copia de seguridad correctamente. Abortando encriptación."
2401
 
2402
+ #: inc/class-job.php:1932
 
2403
  msgid "Cannot write the encrypted archive. Aborting encryption."
2404
  msgstr "No se puede escribir en el archivo encriptado. Abortando encriptación."
2405
 
2406
+ #: inc/class-job.php:1991
2407
+ #, php-format
2408
  msgid "Encrypted %s of data."
2409
  msgstr "Subiendo %s de datos."
2410
 
2411
+ #: inc/class-job.php:1996
 
2412
  msgid "Unable to delete unencrypted archive."
2413
  msgstr "No se puede eliminar el archivo no cifrado."
2414
 
2415
+ #: inc/class-job.php:2003
 
2416
  msgid "Unable to rename encrypted archive."
2417
  msgstr "No se puede cambiar el nombre del archivo cifrado."
2418
 
2419
+ #: inc/class-job.php:2009
 
2420
  msgid "Archive has been successfully encrypted."
2421
  msgstr "El archivo se ha cifrado correctamente."
2422
 
2423
+ #: inc/class-job.php:2059
2424
+ #, php-format
2425
  msgctxt "Folder name"
2426
  msgid "Folder %s does not exist"
2427
  msgstr "La carpeta %s no existe"
2428
 
2429
+ #: inc/class-job.php:2067
2430
+ #, php-format
2431
  msgctxt "Folder name"
2432
  msgid "Folder %s is not readable"
2433
  msgstr "Carpeta \"%s\" no permite su lectura"
2434
 
2435
+ #: inc/class-job.php:2096
2436
+ #, php-format
2437
  msgid "Link \"%s\" not following."
2438
  msgstr "No seguir enlace “%s”."
2439
 
2440
+ #: inc/class-job.php:2100
2441
+ #, php-format
2442
  msgid "File \"%s\" is not readable!"
2443
  msgstr "¡Fichero \"%s\" no se puede leer!"
2444
 
2445
+ #: inc/class-job.php:2108
2446
+ #: inc/class-job.php:2107
2447
+ #, php-format
2448
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2449
  msgstr "Tamaño de archivo %s” no puede ser recuperado. El archivo puede ser demasiado largo y puede no se añadido a la cola."
2450
 
2451
+ #: inc/class-job.php:2197
2452
+ #, php-format
2453
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2454
  msgstr "%d. Prueba generando un manifest file&#160;&hellip;"
2455
 
2456
+ #: inc/class-job.php:2264
 
2457
  msgid "You may have noticed the manifest.json file in this archive."
2458
  msgstr "Usted puede haber notado el archivo manifest.json en este archivo."
2459
 
2460
+ #: inc/class-job.php:2266
2461
+ #: inc/class-job.php:2265
2462
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2463
  msgstr "manifest.json podría ser necesaria para su posterior restauración de una copia de seguridad de este archivo."
2464
 
2465
+ #: inc/class-job.php:2269
2466
+ #: inc/class-job.php:2268
2467
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2468
  msgstr "Por favor deje sin tocar manifest.json y en su sitio. De otro modo la seguridad será ignorada."
2469
 
2470
+ #: inc/class-job.php:2282
2471
+ #, php-format
2472
  msgid "Added manifest.json file with %1$s to backup file list."
2473
  msgstr "Añadido manifest.json con %1$s a lista de archivos de copia de seguridad."
2474
 
2475
+ #: inc/class-job.php:2324
 
2476
  msgid "Wrong BackWPup JobID"
2477
  msgstr "ID de trabajo BackWPup erróneo"
2478
 
2479
+ #: inc/class-job.php:2337
 
2480
  msgid "A BackWPup job is already running"
2481
  msgstr "Un trabajo de BackWPup esta en curso aún"
2482
 
2483
+ #: inc/class-job.php:2719
 
2484
  msgid "exec command is not active."
2485
  msgstr "El comando exec no está activo."
2486
 
2487
+ #: inc/class-job.php:2725
 
2488
  msgid "mysqldump binary not found."
2489
  msgstr "binary mysqldump no encontrado."
2490
 
2491
+ #: inc/class-job.php:2753
2492
+ #: inc/class-job.php:2752
2493
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2494
  msgid "Hangup detected on controlling terminal or death of controlling process"
2495
  msgstr "Hangup detectado en el control de la terminal o la muerte del proceso de control"
2496
 
2497
+ #: inc/class-job.php:2760
2498
+ #: inc/class-job.php:2759
2499
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2500
  msgid "Interrupt from keyboard"
2501
  msgstr "Interrupción del teclado"
2502
 
2503
+ #: inc/class-job.php:2767
2504
+ #: inc/class-job.php:2766
2505
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2506
  msgid "Quit from keyboard"
2507
  msgstr "Salir del teclado"
2508
 
2509
+ #: inc/class-job.php:2774
2510
+ #: inc/class-job.php:2773
2511
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2512
  msgid "Illegal Instruction"
2513
  msgstr "Instrucción ilegal"
2514
 
2515
+ #: inc/class-job.php:2781
2516
+ #: inc/class-job.php:2780
2517
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2518
  msgid "Abort signal from abort(3)"
2519
  msgstr "Cancelación de la señal del aborto (3)"
2520
 
2521
+ #: inc/class-job.php:2788
2522
+ #: inc/class-job.php:2787
2523
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2524
  msgid "Bus error (bad memory access)"
2525
  msgstr "Error de bus (mal acceso a la memoria)"
2526
 
2527
+ #: inc/class-job.php:2795
2528
+ #: inc/class-job.php:2794
2529
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2530
  msgid "Floating point exception"
2531
  msgstr "Excepción de punto flotante"
2532
 
2533
+ #: inc/class-job.php:2802
2534
+ #: inc/class-job.php:2801
2535
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2536
  msgid "Invalid memory reference"
2537
  msgstr "Referencia de memoria no válida"
2538
 
2539
+ #: inc/class-job.php:2809
2540
+ #: inc/class-job.php:2808
2541
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2542
  msgid "Termination signal"
2543
  msgstr "Señal de terminación"
2544
 
2545
+ #: inc/class-job.php:2816
2546
+ #: inc/class-job.php:2815
2547
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2548
  msgid "Stack fault on coprocessor"
2549
  msgstr "Error de pila en el coprocesador"
2550
 
2551
+ #: inc/class-job.php:2823
2552
+ #: inc/class-job.php:2822
2553
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2554
  msgid "User-defined signal 1"
2555
  msgstr "Señal definida por el usuario 1"
2556
 
2557
+ #: inc/class-job.php:2830
2558
+ #: inc/class-job.php:2829
2559
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2560
  msgid "User-defined signal 2"
2561
  msgstr "User-defined signal 2"
2562
 
2563
+ #: inc/class-job.php:2837
2564
+ #: inc/class-job.php:2836
2565
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2566
  msgid "Urgent condition on socket"
2567
  msgstr "Condición urgente en el socket"
2568
 
2569
+ #: inc/class-job.php:2844
2570
+ #: inc/class-job.php:2843
2571
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2572
  msgid "CPU time limit exceeded"
2573
  msgstr "Límite de tiempo de CPU excedido"
2574
 
2575
+ #: inc/class-job.php:2851
2576
+ #: inc/class-job.php:2850
2577
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2578
  msgid "File size limit exceeded"
2579
  msgstr "Excede el límite de tamaño de archivo"
2580
 
2581
+ #: inc/class-job.php:2858
2582
+ #: inc/class-job.php:2857
2583
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2584
  msgid "Power failure"
2585
  msgstr "FTP : Fallo de identificación"
2586
 
2587
+ #: inc/class-job.php:2865
2588
+ #: inc/class-job.php:2864
2589
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2590
  msgid "Bad argument to routine"
2591
  msgstr "Mal argumento a la rutina"
2592
 
2593
+ #: inc/class-job.php:2876
2594
+ #, php-format
2595
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2596
  msgstr "¡La señal “%1$s” (%2$s) se envía a la secuencia de comandos!"
2597
 
2598
+ #: inc/class-job.php:2912
2599
+ #: inc/class-job.php:2925
2600
+ #, php-format
 
2601
  msgid "System: %s"
2602
  msgstr "Sistema: %s"
2603
 
2604
+ #: inc/class-job.php:2942
2605
+ #, php-format
2606
  msgid "Exception caught in %1$s: %2$s"
2607
  msgstr "Excepción sucedida en %1$s: %2$s"
2608
 
2627
  msgstr "Reparación"
2628
 
2629
  #: inc/class-jobtype-dbcheck.php:79
2630
+ #, php-format
2631
  msgid "%d. Trying to check database&#160;&hellip;"
2632
  msgstr "%d. Prueba comprobando database&#160;&hellip;"
2633
 
2634
  #: inc/class-jobtype-dbcheck.php:111
2635
+ #, php-format
2636
  msgid "Table %1$s is a view. Not checked."
2637
  msgstr "Tabla %1$s es una vista. Sin comprobar aún."
2638
 
2639
  #: inc/class-jobtype-dbcheck.php:116
2640
+ #, php-format
2641
  msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked."
2642
  msgstr "Tabla %1$s no es una tabla MyISAM/InnoDB. Sin comprobar aún."
2643
 
2644
  #: inc/class-jobtype-dbcheck.php:124
2645
  #: inc/class-jobtype-dbcheck.php:127
2646
  #: inc/class-jobtype-dbcheck.php:129
2647
+ #, php-format
2648
  msgid "Result of table check for %1$s is: %2$s"
2649
  msgstr "Resultado de comprobación de la tabla para %1$s es: %2$s"
2650
 
2651
  #: inc/class-jobtype-dbcheck.php:135
2652
  #: inc/class-jobtype-dbcheck.php:137
2653
  #: inc/class-jobtype-dbcheck.php:139
2654
+ #, php-format
2655
  msgid "Result of table repair for %1$s is: %2$s"
2656
  msgstr "Resultado de la reparación de la tabla para %1$s es: %2$s"
2657
 
2748
  msgstr "Usar un directorio superior como directorio de instalación de WordPress. Esto puede ser de ayuda, si quieres copia de seguridad de archivos y directorios que no están en el directorio de instalación de WordPress. O si haces una instalación <a href=“https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory”>WordPress en su própio directorio</a>”. Excluir debe ser configurado otra vez."
2749
 
2750
  #: inc/class-jobtype-file.php:238
2751
+ #, php-format
2752
  msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
2753
  msgstr "%d. Prueba haciendo una lista de directorios para copia de seguridad&#160;&hellip;"
2754
 
2755
  #: inc/class-jobtype-file.php:358
2756
  #: inc/class-jobtype-file.php:362
2757
  #: inc/class-jobtype-file.php:379
2758
+ #, php-format
2759
  msgid "Added \"%s\" to backup file list"
2760
  msgstr "Añadido \"%s\" a la lista de archivos a respaldar"
2761
 
2764
  msgstr "No hay archivos/directorios para la copia de seguridad."
2765
 
2766
  #: inc/class-jobtype-file.php:387
2767
+ #, php-format
2768
  msgid "%1$d folders to backup."
2769
  msgstr "%1$d directorios para la copia de seguridad."
2770
 
2771
  #: inc/class-jobtype-file.php:435
2772
+ #, php-format
2773
  msgid "Folder \"%s\" is not readable!"
2774
  msgstr "¡Carpeta \"%s\" no permite su lectura!"
2775
 
2776
  #: inc/class-jobtype-file.php:495
2777
+ #, php-format
2778
  msgid "Path as set by user (symlink?): %s"
2779
  msgstr "Ruta seleccionada por usuario (symlink): %s"
2780
 
2791
  msgstr "Exportar XML"
2792
 
2793
  #: inc/class-jobtype-wpexp.php:14
2794
+ #: inc/class-page-about.php:463
2795
  msgid "WordPress XML export"
2796
  msgstr "Exportar XML WordPress"
2797
 
2816
  msgstr "BZip2"
2817
 
2818
  #: inc/class-jobtype-wpexp.php:112
2819
+ #, php-format
2820
  msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
2821
  msgstr "%d. Prueba creando archivo de exportación WordPress XML&#160;&hellip;"
2822
 
2823
  #: inc/class-jobtype-wpexp.php:127
2824
+ #, php-format
2825
  msgid "WP Export: Post type “%s” does not allow export."
2826
  msgstr "Exportación WordPress: Post type %s” no permite exportación."
2827
 
2841
  msgstr "Comprueba el archivo de exportación WordPress&#160;&hellip;"
2842
 
2843
  #: inc/class-jobtype-wpexp.php:422
2844
+ #, php-format
2845
  msgid "XML WARNING (%s): %s"
2846
  msgstr "XML ADVERTENCIA (%s): %s"
2847
 
2848
  #: inc/class-jobtype-wpexp.php:425
2849
+ #, php-format
2850
  msgid "XML RECOVERABLE (%s): %s"
2851
  msgstr "ERROR RECUPERABLE (%s): %s"
2852
 
2853
  #: inc/class-jobtype-wpexp.php:428
2854
+ #, php-format
2855
  msgid "XML ERROR (%s): %s"
2856
  msgstr "XML ERROR (%s): %s"
2857
 
2873
  msgstr "Archivo de exportación WP no se puede comprobar, ya que no tiene extensión XML cargad que se pueda comprobar."
2874
 
2875
  #: inc/class-jobtype-wpexp.php:500
2876
+ #, php-format
2877
  msgid "Added XML export \"%1$s\" with %2$s to backup file list."
2878
  msgstr "Añadida exportación XML \"%1$s\" con %2$s a la lista de archivos a respaldar."
2879
 
2890
  msgstr "Nombre del fichero de la lista de plugins"
2891
 
2892
  #: inc/class-jobtype-wpplugin.php:96
2893
+ #, php-format
2894
  msgid "%d. Trying to generate a file with installed plugin names&#160;&hellip;"
2895
  msgstr "%d. Prueba generando un archivo con nombres de plugins instalados&#160;&hellip;"
2896
 
2899
  msgstr "Toda la información deplugins:"
2900
 
2901
  #: inc/class-jobtype-wpplugin.php:126
2902
+ #, php-format
2903
  msgid "from %s"
2904
  msgstr "de %s"
2905
 
2912
  msgstr "Plugins inactivos:"
2913
 
2914
  #: inc/class-jobtype-wpplugin.php:148
2915
+ #, php-format
2916
  msgid "Added plugin list file \"%1$s\" with %2$s to backup file list."
2917
  msgstr "Añadido archivo de lista de plugins \"%1$s\" con %2$s a la lista de archivos de respaldo."
2918
 
2925
  msgstr "Extensión MySQLi no localizada.Por favor, instálela."
2926
 
2927
  #: inc/class-mysqldump.php:117
2928
+ #, php-format
2929
  msgctxt "Database Charset"
2930
  msgid "Cannot set DB charset to %s error: %s"
2931
  msgstr "Imposible seleccionar caracter de DB a %s error: %s"
2935
  msgstr "El archivo de la copia de seguridad SQL no se puede abrir"
2936
 
2937
  #: inc/class-mysqldump.php:479
2938
+ #, php-format
2939
  msgid "Start for table backup is not correctly set: %1$s"
2940
  msgstr "El inicio para la copia de seguridad de la tabla no está configurado correctamente: %1$s"
2941
 
2942
  #: inc/class-mysqldump.php:483
2943
+ #, php-format
2944
  msgid "Length for table backup is not correctly set: %1$s"
2945
  msgstr "La longitud de la copia de seguridad de la tabla no está configurada correctamente: %1$s"
2946
 
2954
  msgid "New Job"
2955
  msgstr "Nuevo trabajo"
2956
 
2957
+ #: inc/class-page-about.php:365
2958
+ #: inc/class-page-about.php:375
2959
+ #: inc/class-page-backwpup.php:254
2960
+ msgid "BackWPup banner"
2961
+ msgstr "BackWPup banner"
2962
+
2963
+ #: inc/class-page-about.php:366
2964
  msgid "Welcome to BackWPup Pro"
2965
  msgstr "Bienvenido a BackWPup Pro"
2966
 
2967
+ #: inc/class-page-about.php:367
2968
  #: inc/class-page-backwpup.php:75
2969
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2970
  msgstr "Los asistentes de trabajo de BackWPup facilitan la planificación y programación de tus copias de seguridad."
2971
 
2972
+ #: inc/class-page-about.php:368
2973
+ #: inc/class-page-about.php:378
2974
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
2975
+ msgstr "Use sus archivos de copia de seguridad para guardar toda la instalación de WordPress, incluido <code>/wp-content/</code>. Insértelos en un servicio de almacenamiento externo si no desea guardar las copias de seguridad en el mismo servidor. Con un solo archivo de copia de seguridad puede restaurar una instalación. Use la función de restauración integrada para restaurar su sitio directamente desde su backend de WordPress o la aplicación Restaurar independiente en caso de que su sitio se destruya por completo."
2976
 
2977
+ #: inc/class-page-about.php:369
2978
+ #, php-format
2979
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2980
  msgstr "Listo para <a href=“%1$s”>crear un trabajo de copia de seguridad</a>? Puedes <a href=“%2$s”>usar asistentes</a> o planificar tu copia de seguridad en modo experto."
2981
 
2982
+ #: inc/class-page-about.php:376
2983
  msgid "Welcome to BackWPup"
2984
  msgstr "Bienvenido a BackWPup"
2985
 
2986
+ #: inc/class-page-about.php:379
2987
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2988
  msgstr "¿Listo para crear un trabajo de copia de seguridad? Utiliza los asistentes para planificar lo que quieres guardar."
2989
 
2990
+ #: inc/class-page-about.php:389
2991
  msgid "Save your database"
2992
  msgstr "Salvar tu base de datos"
2993
 
2994
+ #: inc/class-page-about.php:392
2995
  msgid "Save your database regularly"
2996
  msgstr "Salvar tu base de datos regularmente"
2997
 
2998
+ #: inc/class-page-about.php:393
2999
+ #, php-format
3000
  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."
3001
  msgstr "Con BackWPup puede programar la copia de seguridad de base de datos para que se ejecute automáticamente. Con un archivo de copia de seguridad solo puede restaurar la base de datos. Usted debe <a href=\"%s\"> configurar una tarea (cron) de copia de seguridad </ a>, y nunca lo olvidarás. Hay también una opción para reparar y optimizar la base de datos después de cada copia de seguridad."
3002
 
3003
+ #: inc/class-page-about.php:398
3004
+ #: inc/class-page-about.php:402
3005
  msgid "WordPress XML Export"
3006
  msgstr "Exportar WordPress XML"
3007
 
3008
+ #: inc/class-page-about.php:399
3009
  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."
3010
  msgstr "Puedes elegir el formato de exportación WordPress incorporado acumulado o exclusivo para guardar los datos. Esto funciona en copias de seguridad automatizadas también, por supuesto. La ventaja: se puede importar estos archivos en un blog con el importador normal de WordPress."
3011
 
3012
+ #: inc/class-page-about.php:407
3013
  msgid "Save all data from the webserver"
3014
  msgstr "Salvar todos los datos desde el servidor web"
3015
 
3016
+ #: inc/class-page-about.php:410
3017
  msgid "Save all files"
3018
  msgstr "Guardar todos los ficheros"
3019
 
3020
+ #: inc/class-page-about.php:411
3021
+ #, php-format
3022
  msgid "You can backup 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."
3023
  msgstr "Puedes respaldar todos tus archivos y también tus archivos de sistema, plugins y temas en un solo archivo. Puedes <a href=“%s”>crear un trabajo</a> para actualizar una copia de respaldo de tu sistema de archivos solo cuando los archivos han cambiado."
3024
 
3025
+ #: inc/class-page-about.php:416
3026
+ #: inc/class-page-about.php:420
3027
  msgid "Security!"
3028
  msgstr "Seguridad!"
3029
 
3030
+ #: inc/class-page-about.php:417
3031
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3032
  msgstr "Por defecto todo está codificado: las conexiones a servicios externos, archivos locales y el acceso a los directorios."
3033
 
3034
+ #: inc/class-page-about.php:425
3035
+ #: inc/class-page-about.php:428
3036
  msgid "Cloud Support"
3037
  msgstr "Soporte Cloud"
3038
 
3039
+ #: inc/class-page-about.php:429
3040
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3041
  msgstr "BackWPup soporta multiples servicios de almacenaje en paralelo. Esto asegura que las copias de seguridad son redundantes."
3042
 
3043
+ #: inc/class-page-about.php:435
3044
  msgid "Features / differences between Free and Pro"
3045
  msgstr "Caraterísticas / diferencias entre Free y Pro"
3046
 
3047
+ #: inc/class-page-about.php:438
3048
  msgid "Features"
3049
  msgstr "Características"
3050
 
3051
+ #: inc/class-page-about.php:439
3052
  msgid "FREE"
3053
  msgstr "GRATUIT"
3054
 
3055
+ #: inc/class-page-about.php:440
3056
  msgid "PRO"
3057
  msgstr "PRO"
3058
 
3059
+ #: inc/class-page-about.php:443
3060
  msgid "Complete database backup"
3061
  msgstr "Respaldo completo de base de datos"
3062
 
3063
+ #: inc/class-page-about.php:448
3064
  msgid "Complete file backup"
3065
  msgstr "Respado completo de archivos"
3066
 
3067
+ #: inc/class-page-about.php:453
3068
  msgid "Database check"
3069
  msgstr "Comprobación de base de datos"
3070
 
3071
+ #: inc/class-page-about.php:458
3072
  msgid "Data compression"
3073
  msgstr "Compresión de datos"
3074
 
3075
+ #: inc/class-page-about.php:468
3076
  msgid "List of installed plugins"
3077
  msgstr "Lista de plugins instalados"
3078
 
3079
+ #: inc/class-page-about.php:473
3080
  msgid "Backup archives management"
3081
  msgstr "Gestión de archivos de respaldo"
3082
 
3083
+ #: inc/class-page-about.php:478
3084
  msgid "Log file management"
3085
  msgstr "Gestión de archivo de log"
3086
 
3087
+ #: inc/class-page-about.php:483
3088
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3089
  msgstr "Comenzar trabajos para WP-Cron, URL, sistema, administration o WP-CLI"
3090
 
3091
+ #: inc/class-page-about.php:488
3092
  msgid "Log report via email"
3093
  msgstr "Reportar log por email"
3094
 
3095
+ #: inc/class-page-about.php:493
3096
  msgid "Backup to Microsoft Azure"
3097
  msgstr "Respaldar a Microsoft Azure"
3098
 
3099
+ #: inc/class-page-about.php:498
3100
  msgid "Backup as email"
3101
  msgstr "Respaldo como E-mail"
3102
 
3103
+ #: inc/class-page-about.php:503
3104
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3105
  msgstr "Respaldar a servicio S3 (Amazon, Google Storage, Hosteurope y más)"
3106
 
3107
+ #: inc/class-page-about.php:518
3108
  msgid "Backup to FTP server"
3109
  msgstr "Respaldar a servidor FTP"
3110
 
3111
+ #: inc/class-page-about.php:523
3112
  msgid "Backup to your web space"
3113
  msgstr "Respaldar a espacio de tu sitio web"
3114
 
3115
+ #: inc/class-page-about.php:533
3116
+ msgid "Restore manually uploaded Backup Archives"
3117
+ msgstr "Restaurar archivos de copia de seguridad cargados manualmente"
3118
+
3119
+ #: inc/class-page-about.php:538
3120
+ msgid "Standalone Restore App"
3121
+ msgstr "Aplicación de restauración independiente"
3122
+
3123
+ #: inc/class-page-about.php:543
3124
+ msgid "Encrypt Backup Archives"
3125
+ msgstr "Cifrar archivos de copia de seguridad"
3126
+
3127
+ #: inc/class-page-about.php:548
3128
+ msgid "Restore Encrypted Backups"
3129
+ msgstr "Restaurar copias de seguridad cifradas"
3130
+
3131
+ #: inc/class-page-about.php:563
3132
  msgid "Custom API keys for DropBox and SugarSync"
3133
  msgstr "Claves API personalizadas para DropBox y Sugarsync"
3134
 
3135
+ #: inc/class-page-about.php:568
3136
  msgid "XML database backup as PHPMyAdmin schema"
3137
  msgstr "Respaldar XML base de datos como esquema PHPMyAdmin"
3138
 
3139
+ #: inc/class-page-about.php:573
3140
  msgid "Database backup as mysqldump per command line"
3141
  msgstr "Copia de seguridad de base de datos como mysqldump por línea de comandos"
3142
 
3143
+ #: inc/class-page-about.php:578
3144
  msgid "Database backup for additional MySQL databases"
3145
  msgstr "Respaldo de base de datos para bases de datos MySQL adicionales"
3146
 
3147
+ #: inc/class-page-about.php:583
3148
  msgid "Import and export job settings as XML"
3149
  msgstr "Importar y exportar configuración de trabajos como XML"
3150
 
3151
+ #: inc/class-page-about.php:588
3152
  msgid "Wizard for system tests"
3153
  msgstr "Asistente para comprobaciones de sistemas"
3154
 
3155
+ #: inc/class-page-about.php:593
3156
  msgid "Wizard for scheduled backup jobs"
3157
  msgstr "Asistente para trabajos de backup programados"
3158
 
3159
+ #: inc/class-page-about.php:598
3160
  msgid "Wizard to import settings and backup jobs"
3161
  msgstr "Asistente para importar configuraciones y trabajos de respaldo"
3162
 
3163
+ #: inc/class-page-about.php:603
3164
  msgid "Differential backup of changed directories to Dropbox"
3165
  msgstr "Respaldo diferencial de directorios cambiados a DropBox"
3166
 
3167
+ #: inc/class-page-about.php:608
3168
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3169
  msgstr "Copia de seguridad diferencial de directorios modificados en Rackspace Cloud File"
3170
 
3171
+ #: inc/class-page-about.php:613
3172
  msgid "Differential backup of changed directories to S3"
3173
  msgstr "Copia de seguridad diferencial de directorios cambiados a S3"
3174
 
3175
+ #: inc/class-page-about.php:618
3176
  msgid "Differential backup of changed directories to MS Azure"
3177
  msgstr "Copia de seguridad diferencial de directorios modificados en MS Azure"
3178
 
3179
+ #: inc/class-page-about.php:623
3180
  msgid "Restore from Folder"
3181
  msgstr "Restaurar desde la carpeta"
3182
 
3183
+ #: inc/class-page-about.php:628
3184
  msgid "Restore from Google Drive"
3185
  msgstr "Restaurar desde Google Drive"
3186
 
3187
+ #: inc/class-page-about.php:633
3188
  msgid "Restore from Amazon S3"
3189
  msgstr "Restaurar desde Amazon S3"
3190
 
3191
+ #: inc/class-page-about.php:638
3192
  msgid "Restore from Dropbox"
3193
  msgstr "Restaurar desde Dropbox"
3194
 
3195
+ #: inc/class-page-about.php:643
3196
  msgid "Restore from FTP"
3197
  msgstr "Restaurar desde FTP"
3198
 
3199
+ #: inc/class-page-about.php:648
3200
  msgid "<strong>Premium support</strong>"
3201
  msgstr "<strong>Soporte Premium</strong>"
3202
 
3203
+ #: inc/class-page-about.php:653
3204
  msgid "<strong>Automatic updates</strong>"
3205
  msgstr "<strong>Automatic updates</strong>"
3206
 
3207
+ #: inc/class-page-about.php:660
3208
  msgid "GET PRO"
3209
  msgstr "Pasar a versión PRO"
3210
 
 
3211
  #: inc/class-page-backups.php:158
3212
  msgid "No files could be found. (List will be generated during next backup.)"
3213
  msgstr "No se localizan archivos (La lista se generará durante el siguiente respaldo)"
3214
 
3215
+ #: inc/class-page-backups.php:168
3216
+ #: inc/class-page-backups.php:274
3217
  #: inc/class-page-jobs.php:113
3218
  #: inc/class-page-jobs.php:177
3219
  #: inc/class-page-logs.php:151
3220
  #: inc/class-page-logs.php:232
 
 
3221
  msgid "Delete"
3222
  msgstr "Borrar"
3223
 
 
3224
  #: inc/class-page-backups.php:203
3225
  msgid "Change destination"
3226
  msgstr "Cambiar destino"
3227
 
3228
+ #: inc/class-page-backups.php:241
3229
  #: inc/class-page-backwpup.php:283
3230
  #: inc/class-page-backwpup.php:347
3231
  #: inc/class-page-logs.php:163
 
3232
  msgid "Time"
3233
  msgstr "Hora"
3234
 
 
3235
  #: inc/class-page-backups.php:242
3236
  msgid "File"
3237
  msgstr "Fichero"
3238
 
 
 
3239
  #: inc/class-page-backups.php:244
3240
+ #: inc/class-page-logs.php:167
3241
  msgid "Size"
3242
  msgstr "Tamaño"
3243
 
 
3244
  #: inc/class-page-backups.php:273
3245
  msgid ""
3246
  "You are about to delete this backup archive. \n"
3249
  "Vas a borrar este archivo de respaldo. \n"
3250
  " 'Cancelar' para parar , 'OK' para borrar."
3251
 
 
 
 
 
 
 
3252
  #: inc/class-page-backups.php:281
3253
  #: inc/class-page-backups.php:285
3254
+ #: inc/class-page-jobs.php:330
3255
+ #: inc/class-page-logs.php:234
3256
  #: inc/class-page-settings.php:768
3257
+ #: inc/class-page-settings.php:779
3258
  msgid "Download"
3259
  msgstr "Descargar"
3260
 
 
3261
  #: inc/class-page-backups.php:311
3262
  msgid "?"
3263
  msgstr "?"
3264
 
3265
+ #: inc/class-page-backups.php:317
3266
  #: inc/class-page-backwpup.php:321
3267
  #: inc/class-page-backwpup.php:384
3268
  #: inc/class-page-jobs.php:318
3269
  #: inc/class-page-logs.php:190
3270
+ #, php-format
3271
  msgid "%1$s at %2$s"
3272
  msgstr "%1$s à %2$s"
3273
 
 
 
 
 
3274
  #: inc/class-page-backups.php:331
3275
  #: inc/class-page-backups.php:369
3276
+ #: inc/class-page-editjob.php:35
3277
+ #: inc/class-page-jobs.php:398
3278
  msgid "Sorry, you don't have permissions to do that."
3279
  msgstr "Disculpa, no tienes permisos para realizarlo."
3280
 
 
3281
  #: inc/class-page-backups.php:408
3282
  msgid "&laquo; Go back"
3283
  msgstr "&laquo; Atrás"
3284
 
 
3285
  #: inc/class-page-backups.php:433
3286
  msgid "Backup Files"
3287
  msgstr "Copia de seguridad de archivos"
3288
 
 
3289
  #: inc/class-page-backups.php:489
3290
+ #, php-format
3291
  msgid "%s &rsaquo; Manage Backup Archives"
3292
  msgstr "%s &rsaquo; Gestión de archivos de respaldo"
3293
 
 
3294
  #: inc/class-page-backups.php:501
3295
  msgid "Please wait &hellip;"
3296
  msgstr "Por favor espere &hellip;"
3297
 
 
3298
  #: inc/class-page-backups.php:504
3299
  msgid "Your download is being generated &hellip;"
3300
  msgstr "Su descarga se está generando &hellip;"
3301
 
 
 
3302
  #: inc/class-page-backups.php:510
3303
+ #: views/pro/restore/steps/step1_action.php:15
3304
  msgid "Please enter your private key to decrypt your backup."
3305
  msgstr "Por favor ingrese su clave privada para descifrar su copia de seguridad."
3306
 
 
 
3307
  #: inc/class-page-backups.php:512
3308
+ #: views/pro/restore/steps/step1_action.php:17
3309
  msgid "The private key you entered was invalid. Please try again."
3310
  msgstr "La clave privada que ingresaste no era válida. Inténtalo de nuevo."
3311
 
 
 
 
 
3312
  #: inc/class-page-backups.php:515
3313
  #: inc/class-page-settings.php:742
3314
  #: inc/class-page-settings.php:773
3315
+ #: views/pro/restore/steps/step1_action.php:20
3316
  msgid "Private Key"
3317
  msgstr "Private Access Key"
3318
 
 
 
3319
  #: inc/class-page-backups.php:522
3320
+ #: views/pro/restore/steps/step1_action.php:25
3321
  msgid "Submit"
3322
  msgstr "Enviar"
3323
 
 
3324
  #: inc/class-page-backups.php:527
3325
  msgid "Your download has been generated. It should begin downloading momentarily."
3326
  msgstr "Su descarga ha sido generada. Debería comenzar a descargarse momentáneamente."
3327
 
3328
+ #: inc/class-page-backups.php:576
3329
+ #: inc/class-page-backups.php:575
3330
+ #, php-format
3331
+ msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
3332
+ msgstr "Seems is not possible to store your private key, be sure the directory %s is writable."
3333
+
3334
  #: inc/class-page-backwpup.php:67
3335
+ #, php-format
3336
  msgid "%s &rsaquo; Dashboard"
3337
  msgstr "%s &rsaquo; Escritorio"
3338
 
3345
  #: inc/class-page-backwpup.php:75
3346
  #: inc/class-page-backwpup.php:84
3347
  msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server."
3348
+ msgstr "Utilice sus archivos de copia de seguridad para guardar toda su instalación de WordPress, incluido <code> / wp-content / </code>. Introdúzcalos en un servicio de almacenamiento externo si no desea guardar las copias de seguridad en el mismo servidor."
3349
 
3350
  #: inc/class-page-backwpup.php:76
3351
  #: inc/class-page-backwpup.php:85
3355
 
3356
  #: inc/class-page-backwpup.php:77
3357
  #: inc/class-page-backwpup.php:86
3358
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
3359
+ msgstr "Con un solo archivo de copia de seguridad puede restaurar una instalación. Utilice nuestra función de restauración, que está integrada en BackWPup Pro para restaurar su sitio web directamente desde su backend de WordPress. También proporcionamos una aplicación de restauración independiente con la versión Pro para restaurar su sitio en caso de que se destruya por completo."
3360
 
3361
  #: inc/class-page-backwpup.php:78
3362
  #: inc/class-page-backwpup.php:87
3365
  msgstr "¿Listo para configurar una tarea de respaldo?"
3366
 
3367
  #: inc/class-page-backwpup.php:79
3368
+ #, php-format
3369
  msgid "Use one of the wizards to plan a backup, or use <a href=\"%s\">expert mode</a> for full control over all options."
3370
  msgstr "Utilice uno de los asistentes para planificar una copia de seguridad, o use el <a href=“%s”> modo experto </a> para tener un control total sobre todas las opciones."
3371
 
3379
  msgstr "Utilice los enlaces cortos en el cuadro <strong> Primeros pasos </strong> para planificar y programar trabajos de copia de seguridad."
3380
 
3381
  #: inc/class-page-backwpup.php:88
3382
+ #, php-format
3383
  msgid "<a href=\"%s\">Add a new backup job</a> and plan what you want to save."
3384
  msgstr "<a href=\"%s\"> Añadir una nueva tarea de copia de seguridad</a> y planifique lo que usted desea guardar."
3385
 
3430
  msgstr "https://backwpup.com/feed/"
3431
 
3432
  #: inc/class-page-backwpup.php:130
3433
+ #, php-format
3434
  msgid "<strong>RSS Error</strong>: %s"
3435
  msgstr "<strong>Error RSS</strong>: %s"
3436
 
3513
  msgstr "Trabajo"
3514
 
3515
  #: inc/class-page-backwpup.php:307
3516
+ #, php-format
3517
  msgid "working since %d seconds"
3518
  msgstr "trabajando desde %d segundos"
3519
 
3535
  msgstr "Resultado"
3536
 
3537
  #: inc/class-page-backwpup.php:366
3538
+ #, php-format
3539
  msgid "Could not open log folder: %s"
3540
  msgstr "No se pudo abrir la carpeta de registro: %s"
3541
 
3542
  #: inc/class-page-backwpup.php:389
3543
+ #, php-format
3544
  msgid "%d ERROR"
3545
  msgid_plural "%d ERRORS"
3546
  msgstr[0] "%d ERROR"
3547
  msgstr[1] "%d ERRORES"
3548
 
3549
  #: inc/class-page-backwpup.php:392
3550
+ #, php-format
3551
  msgid "%d WARNING"
3552
  msgid_plural "%d WARNINGS"
3553
  msgstr[0] "%d AVISO"
3558
  msgstr "OK"
3559
 
3560
  #: inc/class-page-editjob.php:98
3561
+ #, php-format
3562
  msgid "Job with ID %d"
3563
  msgstr "Trabajo con ID %d"
3564
 
3565
  #: inc/class-page-editjob.php:223
3566
+ #, php-format
3567
  msgid "Changes for job <i>%s</i> saved."
3568
  msgstr "Cambios para el trabajo <i>%s</i> guardados."
3569
 
3577
  msgstr "Arrancar ahora"
3578
 
3579
  #: inc/class-page-editjob.php:334
3580
+ #, php-format
3581
  msgid "%1$s &rsaquo; Job: %2$s"
3582
  msgstr "%1$s &rsaquo; Trabajo: %2$s"
3583
 
3584
  #: inc/class-page-editjob.php:337
 
3585
  #: inc/class-page-settings.php:214
3586
  msgid "General"
3587
  msgstr "General"
3591
  msgstr "Programación"
3592
 
3593
  #: inc/class-page-editjob.php:352
3594
+ #, php-format
3595
  msgid "To: %s"
3596
  msgstr "A: %s"
3597
 
3625
  msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
3626
  msgstr "<em>Note</em>: Para que funcione el seguimiento de archivos de copia de seguridad, se debe incluir %hash% en cualquier parte del nombre del archivo."
3627
 
3628
+ #: inc/class-page-editjob.php:452
3629
+ msgid "Preview: "
3630
+ msgstr "Previsualización: "
3631
+
3632
  #: inc/class-page-editjob.php:454
3633
  msgid "Replacement patterns:"
3634
  msgstr "Patrones de reemplazo:"
3635
 
3636
  #: inc/class-page-editjob.php:455
3637
+ #, php-format
3638
  msgid "%d = Two digit day of the month, with leading zeros"
3639
  msgstr "%d = Dos dígitos de mes, con cero a la izquierda"
3640
 
3691
  msgstr "%i = Dos dígitos representan los minutos"
3692
 
3693
  #: inc/class-page-editjob.php:469
3694
+ #, php-format
3695
  msgid "%s = Two digit representation of the second"
3696
  msgstr "%s = Dos dígitos representan los segundos"
3697
 
3706
 
3707
  #: inc/class-page-editjob.php:491
3708
  #: inc/class-page-editjob.php:498
3709
+ #, php-format
3710
  msgid "Disabled due to missing %s PHP function."
3711
  msgstr "Deshabilitados debido a la falta de función PHP %s."
3712
 
3747
 
3748
  #: inc/class-page-editjob.php:569
3749
  msgid "Email FROM field"
3750
+ msgstr "Campo Email FROM"
3751
 
3752
  #: inc/class-page-editjob.php:571
3753
  msgid "Your Name &lt;mail@domain.tld&gt;"
3783
  msgstr "con <a href=“https://www.easycron.com?ref=36673” title=“¡Link de afiliación!”>EasyCron.com</a>"
3784
 
3785
  #: inc/class-page-editjob.php:617
3786
+ #, php-format
3787
  msgid "First setup <a href=\"%s\">API Key</a>."
3788
  msgstr "Primer setup <a href=“%s”>API Key</a>."
3789
 
3905
  msgstr "Trabajando como <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> programado :"
3906
 
3907
  #: inc/class-page-editjob.php:950
3908
+ #, php-format
3909
  msgid "ATTENTION: Job runs every %d minutes!"
3910
  msgstr "ATENCION: El trabajo se ejecuta cada %d minutos!"
3911
 
3947
  msgstr "No necesario o definido"
3948
 
3949
  #: inc/class-page-jobs.php:273
3950
+ #, php-format
3951
  msgid "Running for: %s seconds"
3952
  msgstr "Ejecutando durante : %s segundos"
3953
 
3954
  #: inc/class-page-jobs.php:280
3955
  #: inc/class-page-jobs.php:289
3956
+ #, php-format
3957
  msgid "Cron: %s"
3958
  msgstr "Cron: %s"
3959
 
3960
  #: inc/class-page-jobs.php:280
3961
+ #, php-format
3962
  msgid "%1$s at %2$s by WP-Cron"
3963
  msgstr "%1$s en %2$s por WP-Cron"
3964
 
3965
  #: inc/class-page-jobs.php:289
3966
+ #, php-format
3967
  msgid "%1$s at %2$s by EasyCron"
3968
  msgstr "%1$s en %2$s por EasyCron"
3969
 
3976
  msgstr "Inactivo"
3977
 
3978
  #: inc/class-page-jobs.php:320
3979
+ #, php-format
3980
  msgid "Runtime: %d seconds"
3981
  msgstr "Tiempo de ejecución : %d segundos"
3982
 
3997
  msgstr "Copia de"
3998
 
3999
  #: inc/class-page-jobs.php:431
4000
+ #, php-format
4001
  msgid "The job \"%s\" destination \"%s\" is not configured properly"
4002
  msgstr "El trabajo “%s” destino “%s” no está configurada correctamente"
4003
 
4004
  #: inc/class-page-jobs.php:436
4005
+ #, php-format
4006
  msgid "The job \"%s\" needs properly configured destinations to run!"
4007
  msgstr "¡El trabajo “%s” necesita destinos configurados correctamente para ejecutarse!"
4008
 
4009
  #: inc/class-page-jobs.php:454
4010
+ #, php-format
4011
  msgid "Job \"%s\" has started, but not responded for 10 seconds. Please check <a href=\"%s\">information</a>."
4012
  msgstr "Trabajo “%s” ha comenzado, pero no respondió durante 10 segundos. Por favor, compruebe <a href=“%s”>información</a>."
4013
 
4014
  #: inc/class-page-jobs.php:459
4015
+ #, php-format
4016
  msgid "Job \"%s\" started."
4017
  msgstr "Trabajo \"%s\" comenzado."
4018
 
4022
  msgstr "Trabajo será finalizado."
4023
 
4024
  #: inc/class-page-jobs.php:584
4025
+ #, php-format
4026
  msgid "%s &rsaquo; Jobs"
4027
  msgstr "%s &rsaquo; Trabajos"
4028
 
4029
  #: inc/class-page-jobs.php:604
4030
+ #, php-format
4031
  msgid "Job currently running: %s"
4032
  msgstr "Trabajo actualmente operando : %s"
4033
 
4060
  msgstr "Trabajo completado"
4061
 
4062
  #: inc/class-page-jobs.php:786
4063
+ #, php-format
4064
  msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution."
4065
  msgstr "Job mit Warnungen beendet in %s Sekunden. Bitte beheben Sie die Warnungen für eine korrekte Ausführung."
4066
 
4081
  msgstr "Vista"
4082
 
4083
  #: inc/class-page-logs.php:251
4084
+ #, php-format
4085
  msgid "1 ERROR"
4086
  msgid_plural "%d ERRORS"
4087
  msgstr[0] "1 ERROR"
4088
  msgstr[1] "%d ERRORES"
4089
 
4090
  #: inc/class-page-logs.php:254
4091
+ #, php-format
4092
  msgid "1 WARNING"
4093
  msgid_plural "%d WARNINGS"
4094
  msgstr[0] "1 ADVERTENCIA"
4103
  msgstr "Sólo log"
4104
 
4105
  #: inc/class-page-logs.php:440
4106
+ #, php-format
4107
  msgid "%s &rsaquo; Logs"
4108
  msgstr "%s &rsaquo; Logs"
4109
 
4125
 
4126
  #: inc/class-page-settings.php:42
4127
  msgid "Public key is invalid."
4128
+ msgstr "La clave pública no es válida."
4129
 
4130
  #: inc/class-page-settings.php:43
4131
  msgid "Please download the private key before continuing. If you do not save it locally, you cannot decrypt your backups later."
4139
  msgid "Settings saved"
4140
  msgstr "Parámetros guardados"
4141
 
 
4142
  #: inc/class-page-settings.php:209
4143
+ #, php-format
4144
  msgid "%s &rsaquo; Settings"
4145
  msgstr "%s &rsaquo; Configuraciones"
4146
 
4148
  msgid "Encryption"
4149
  msgstr "Cifrado"
4150
 
 
4151
  #: inc/class-page-settings.php:220
4152
  msgid "Network"
4153
  msgstr "Network"
4154
 
 
4155
  #: inc/class-page-settings.php:221
4156
  msgid "API Keys"
4157
  msgstr "Claves API"
4158
 
 
4159
  #: inc/class-page-settings.php:222
4160
  msgid "Information"
4161
  msgstr "Información"
4185
  msgid "Folder sizes"
4186
  msgstr "Tamaños de carpeta"
4187
 
4188
+ #: inc/class-page-settings.php:278
4189
  #: inc/class-page-settings.php:277
4190
  msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)"
4191
  msgstr "Visualice los tamaños de las carpetas en la pestaña de archivos al editar un trabajo. (Podría aumentar el tiempo de carga de la pestaña de archivos)."
4203
  msgid "Protect folders"
4204
  msgstr "Proteger carpetas"
4205
 
4206
+ #: inc/class-page-settings.php:305
4207
  #: inc/class-page-settings.php:304
4208
  msgid "Protect BackWPup folders ( Temp, Log and Backups ) with <code>.htaccess</code> and <code>index.php</code>"
4209
  msgstr "Proteger carpetas BackWPup ( Temp, Log y Respaldos ) con<code>.htaccess</code> y <code>index.php</code>"
4210
 
4211
+ #: inc/class-page-settings.php:322
4212
  #: inc/class-page-settings.php:321
4213
  msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them."
4214
  msgstr "Cada vez que BackWPup ejecuta una tarea de respaldo, se genera un archivo de registro. Elija dónde almacenar sus archivos de registro y cuántos de ellos."
4217
  msgid "Log file folder"
4218
  msgstr "Carpeta de archivos de log"
4219
 
4220
+ #: inc/class-page-settings.php:341
4221
  #: inc/class-page-settings.php:340
4222
+ #, php-format
4223
  msgid "You can use absolute or relative path! Relative path is relative to %s."
4224
  msgstr "¡Puedes usar la ruta absoluta o relativa! La ruta relativa es relativa a %s."
4225
 
4232
  msgstr "Máximo de archivos de registro en la carpeta."
4233
 
4234
  #: inc/class-page-settings.php:367
4235
+ #: inc/class-page-settings.php:371
4236
  #: inc/class-page-settings.php:370
4237
  msgid "Compression"
4238
  msgstr "Compresión"
4262
  msgid "Debug (not translated)"
4263
  msgstr "Debug (no traducido)"
4264
 
4265
+ #: inc/class-page-settings.php:417
4266
  #: inc/class-page-settings.php:416
4267
  msgid "Debug log has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too."
4268
  msgstr "El registro de depuración tiene mucha más información que los registros normales. Es para soporte y debe manejarse con cuidado. Para soporte, lo mejor es usar un archivo de registro no traducido. El uso de registros no traducidos también puede reducir el uso de la memoria PHP."
4269
 
4270
+ #: inc/class-page-settings.php:430
4271
  #: inc/class-page-settings.php:429
4272
  msgid "There are a couple of general options for backup jobs. Set them here."
4273
  msgstr "Hay un par de opciones genrales para trabajos de respaldos. Selecciónalas aquí."
4274
 
4275
+ #: inc/class-page-settings.php:438
4276
  #: inc/class-page-settings.php:437
4277
  msgid "Maximum number of retries for job steps"
4278
  msgstr "Máximo número de reintentos para cada paso de los trabajos"
4289
  msgid "seconds."
4290
  msgstr "segundos."
4291
 
4292
+ #: inc/class-page-settings.php:465
4293
  #: inc/class-page-settings.php:464
4294
  msgid "Job will restart before hitting maximum execution time. Restarts will be disabled on CLI usage. If <code>ALTERNATE_WP_CRON</code> has been defined, WordPress Cron will be used for restarts, so it can take a while. 0 means no maximum."
4295
  msgstr "La tarea se reiniciará antes de alcanzar el tiempo máximo de ejecución. Los reinicios se desactivarán en el uso de la CLI. Si se ha definido <code>ALTERNATE_WP_CRON</code>, WordPress Cron se usará para reinicios, por lo que puede llevar un tiempo. 0 significa sin máximo."
4298
  msgid "Key to start jobs externally with an URL"
4299
  msgstr "Clave para comenzar trabajos externamente con una URL"
4300
 
4301
+ #: inc/class-page-settings.php:485
4302
  #: inc/class-page-settings.php:484
4303
  msgid "Will be used to protect job starts from unauthorized person."
4304
  msgstr "Se usará para proteger el trabajo de una persona no autorizada."
4324
  msgid "maximum"
4325
  msgstr "máximo"
4326
 
4327
+ #: inc/class-page-settings.php:522
4328
  #: inc/class-page-settings.php:521
4329
  msgid "This adds short pauses to the process. Can be used to reduce the CPU load."
4330
  msgstr "Esto agrega breves pausas al proceso. Se puede usar para reducir la carga de la CPU."
4333
  msgid "Empty output on working"
4334
  msgstr "Salida vacía en el trabajo"
4335
 
4336
+ #: inc/class-page-settings.php:536
4337
  #: inc/class-page-settings.php:546
4338
+ #: inc/class-page-settings.php:535
4339
  msgid "Enable an empty Output on backup working."
4340
  msgstr "Habilita un resultado vacío en el trabajo de copia de seguridad."
4341
 
4342
+ #: inc/class-page-settings.php:550
4343
  #: inc/class-page-settings.php:549
4344
  msgid "This do an empty output on job working. This can help in some situations or can brake the working. You must test it."
4345
  msgstr "Esto hace una salida vacía en el trabajo. Esto puede ayudar en algunas situaciones o puede frenar el trabajo. Debes probarlo."
4348
  msgid "Windows IIS compatibility"
4349
  msgstr "Compatibilidad con Windows IIS"
4350
 
4351
+ #: inc/class-page-settings.php:564
4352
  #: inc/class-page-settings.php:574
4353
+ #: inc/class-page-settings.php:563
4354
  msgid "Enable compatibility with IIS on Windows."
4355
  msgstr "Habilite la compatibilidad con IIS en Windows."
4356
 
4357
+ #: inc/class-page-settings.php:578
4358
  #: inc/class-page-settings.php:577
4359
  msgid "There is a PHP bug (<a href=\"https://bugs.php.net/43817\">bug #43817</a>), which is triggered on some versions of Windows and IIS. Checking this box will enable a workaround for that bug. Only enable if you are getting errors about &ldquo;Permission denied&rdquo; in your logs."
4360
  msgstr "Existe un error de PHP (<a href=“https://bugs.php.net/43817”>error #43817</a>), que se desencadena en algunas versiones de Windows e IIS. Al marcar esta casilla, se habilitará una solución para ese error. Solo habilite si recibe errores sobre & ldquo; Permiso denegado & rdquo; en tus registros."
4361
 
4362
+ #: inc/class-page-settings.php:594
4363
  #: inc/class-page-settings.php:593
4364
  msgid "Here you can set your keys for encrypting your backups."
4365
  msgstr "Aquí puede configurar sus claves para cifrar sus copias de seguridad."
4366
 
4367
+ #: inc/class-page-settings.php:602
4368
  #: inc/class-page-settings.php:601
4369
  msgid "If you select symmetric encryption (default), you can generate a 256-bit key by clicking <code>Generate Key</code>."
4370
  msgstr "Si selecciona el cifrado simétrico (predeterminado), puede generar una clave de 256 bits haciendo clic en <code>Generate Key</code>."
4371
 
4372
+ #: inc/class-page-settings.php:612
4373
  #: inc/class-page-settings.php:611
4374
  msgid "If you select asymmetric encryption (more secure), you must have an RSA public/private key pair. You would enter the public key in the <code>Public Key</code> field. If you do not have a key pair, click <code>Generate Key Pair</code> and they will be generated for you."
4375
  msgstr "Si selecciona el cifrado asimétrico (más seguro), debe tener un par de claves pública / privada de RSA. Ingresaría la clave pública en el campo <code>Clave pública</code>. Si no tiene un par de claves, haga clic en <code>Generate Key Pair</code> y se generarán para usted."
4376
 
4377
+ #: inc/class-page-settings.php:622
4378
  #: inc/class-page-settings.php:621
4379
  msgid "<strong>Note</strong>: You will be asked to download the keys for safe storage. We do not keep a copy of the private key, so if you lose this, your data cannot be decrypted!"
4380
  msgstr "<strong>Nota</strong>: se le pedirá que descargue las claves para un almacenamiento seguro. No guardamos una copia de la clave privada, por lo que si la pierde, ¡sus datos no podrán descifrarse!"
4381
 
4382
+ #: inc/class-page-settings.php:632
4383
  #: inc/class-page-settings.php:631
4384
  msgid "You can also click <code>Validate</code> to validate that you have the proper private key for the given public key."
4385
  msgstr "También puede hacer clic en <code>Validate</code> para validar que tiene la clave privada adecuada para la clave pública dada."
4386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4387
  #: inc/class-page-settings.php:642
4388
  msgid "Encryption Type"
4389
  msgstr "Tipo de cifrado"
4390
 
 
4391
  #: inc/class-page-settings.php:649
4392
  msgid "Symmetric (public key only)"
4393
  msgstr "Simétrico (solo clave pública)"
4394
 
 
4395
  #: inc/class-page-settings.php:655
4396
  msgid "Asymmetric (public and private key)"
4397
  msgstr "Asimétrico (clave pública y privada)"
4398
 
 
 
4399
  #: inc/class-page-settings.php:661
4400
  #: inc/class-page-settings.php:667
4401
  msgid "Encryption Key"
4402
  msgstr "Clave de encriptación"
4403
 
 
4404
  #: inc/class-page-settings.php:672
4405
  msgid "Key"
4406
  msgstr "Llave"
4407
 
 
4408
  #: inc/class-page-settings.php:684
4409
  msgid "Click below to generate a random key."
4410
  msgstr "Haga clic a continuación para generar una clave aleatoria."
4411
 
 
4412
  #: inc/class-page-settings.php:687
4413
  msgid "Generate Key"
4414
  msgstr "Generar llave"
4415
 
 
 
 
4416
  #: inc/class-page-settings.php:696
4417
  #: inc/class-page-settings.php:701
4418
  #: inc/class-page-settings.php:762
4419
  msgid "Public Key"
4420
  msgstr "Llave pública"
4421
 
 
4422
  #: inc/class-page-settings.php:704
4423
  msgid "RSA Public Key"
4424
  msgstr "Clave pública RSA"
4425
 
 
 
4426
  #: inc/class-page-settings.php:716
4427
  #: inc/class-page-settings.php:717
4428
  msgid "Generate Key Pair"
4429
  msgstr "Generar par de claves"
4430
 
 
4431
  #: inc/class-page-settings.php:722
4432
  msgid "Validate Key"
4433
  msgstr "Validar clave"
4434
 
 
 
4435
  #: inc/class-page-settings.php:723
4436
  #: inc/class-page-settings.php:748
4437
  msgid "Validate"
4438
  msgstr "Validar"
4439
 
 
4440
  #: inc/class-page-settings.php:735
4441
  msgid "Enter your private key below to validate it will work with the provided public key."
4442
  msgstr "Ingrese su clave privada a continuación para validar que funcionará con la clave pública proporcionada."
4443
 
 
4444
  #: inc/class-page-settings.php:738
4445
  msgid "The private key will not be stored, so you must still securely store it yourself."
4446
  msgstr "La clave privada no se almacenará, por lo que debe almacenarla de manera segura usted mismo."
4447
 
 
4448
  #: inc/class-page-settings.php:754
4449
  msgid "Your keys are being generated. Please hold a moment &hellip;"
4450
  msgstr "Tus llaves se están generando. Por favor, espera un momento &hellip;"
4451
 
 
4452
  #: inc/class-page-settings.php:758
4453
  msgid "Here are your keys. Please store them in a safe location."
4454
  msgstr "Aquí están tus llaves. Por favor, guárdalas en un lugar seguro."
4455
 
 
4456
  #: inc/class-page-settings.php:783
4457
  msgid "Please download at least your private key above, as we will not store this key, and if you lose it, your backups cannot be decrypted."
4458
  msgstr "Descargue al menos su clave privada anterior, ya que no almacenaremos esta clave, y si la pierde, sus copias de seguridad no podrán descifrarse."
4459
 
 
4460
  #: inc/class-page-settings.php:786
4461
  msgid "Click the button below to use these keys and paste the public key into the RSA public key field above."
4462
  msgstr "Haga clic en el botón de abajo para usar estas teclas y pegue la clave pública en el campo de la clave pública RSA arriba."
4463
 
 
4464
  #: inc/class-page-settings.php:790
4465
  msgid "Use These Keys"
4466
  msgstr "Usa estas teclas"
4467
 
 
4468
  #: inc/class-page-settings.php:801
4469
+ #, php-format
4470
  msgid "Authentication for <code>%s</code>"
4471
  msgstr "Autenticación para <code>%s</code>"
4472
 
4473
+ #: inc/class-page-settings.php:809
4474
  #: inc/class-page-settings.php:808
4475
  msgid "If you protected your blog with HTTP basic authentication (.htaccess), or you use a Plugin to secure wp-cron.php, then use the authentication methods below."
4476
  msgstr "Si protegió su blog con autenticación básica HTTP (.htaccess), o si usa un complemento para proteger wp-cron.php, entonces use los métodos de autenticación a continuación."
4477
 
 
 
4478
  #: inc/class-page-settings.php:824
4479
  #: inc/class-page-settings.php:829
4480
  msgid "Authentication method"
4481
  msgstr "Método de autentificación"
4482
 
 
4483
  #: inc/class-page-settings.php:841
4484
  msgid "Basic auth"
4485
  msgstr "Autorización básica"
4486
 
 
4487
  #: inc/class-page-settings.php:845
4488
  msgid "WordPress User"
4489
  msgstr "Usuario WordPress"
4490
 
 
4491
  #: inc/class-page-settings.php:849
4492
  msgid "Query argument"
4493
  msgstr "Argumento de consulta"
4494
 
4495
+ #: inc/class-page-settings.php:861
4496
  #: inc/class-page-settings.php:860
4497
  msgid "Basic Auth Username:"
4498
  msgstr "Nombre de usuario de autenticación básica:"
4499
 
4500
+ #: inc/class-page-settings.php:878
4501
  #: inc/class-page-settings.php:877
4502
  msgid "Basic Auth Password:"
4503
  msgstr "Contraseña básica de autenticación:"
4504
 
 
 
4505
  #: inc/class-page-settings.php:891
4506
+ #: inc/class-page-settings.php:895
4507
  #: inc/class-page-settings.php:894
4508
  msgid "Select WordPress User"
4509
  msgstr "Seleccionar usuario de WordPress"
4510
 
4511
+ #: inc/class-page-settings.php:928
4512
  #: inc/class-page-settings.php:927
4513
  msgid "Query arg key=value:"
4514
  msgstr "Argumento consulta clave = valor:"
4515
 
4516
+ #: inc/class-page-settings.php:956
4517
  #: inc/class-page-settings.php:955
4518
  msgid "Experiencing an issue and need to contact BackWPup support? Click the link below to get debug information you can send to us."
4519
  msgstr "¿Tienes algún problema y necesitas contactar al soporte de BackWPup? Haga clic en el siguiente enlace para obtener información de depuración que puede enviarnos."
4520
 
4521
+ #: inc/class-page-settings.php:963
4522
+ #: inc/class-page-settings.php:1057
4523
  #: inc/class-page-settings.php:962
4524
  msgid "Debug Info"
4525
  msgstr "Información de depuración"
4526
 
 
4527
  #: inc/class-page-settings.php:966
4528
  msgid "Get Debug Info"
4529
  msgstr "Obtener información de depuración"
4530
 
4531
+ #: inc/class-page-settings.php:974
4532
  #: inc/class-page-settings.php:973
4533
  msgid "You will find debug information below. Click the button to copy the debug info to send to support."
4534
  msgstr "Encontrará información de depuración a continuación. Haga clic en el botón para copiar la información de depuración para enviarla a soporte."
4535
 
4536
+ #: inc/class-page-settings.php:982
4537
+ #: inc/class-page-settings.php:981
4538
+ msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4539
+ msgstr "<strong>Nota</strong>: ¿Desea un soporte más rápido y más sencillo? Los usuarios profesionales pueden ponerse en contacto con BackWPup directamente desde el complemento."
4540
+
4541
+ #: inc/class-page-settings.php:988
4542
+ msgid "https://backwpup.com"
4543
+ msgstr "https://backwpup.com"
4544
+
4545
+ #: inc/class-page-settings.php:989
4546
+ msgid "Get Pro"
4547
+ msgstr "Obtener la version pro"
4548
+
4549
  #: inc/class-page-settings.php:1000
4550
  msgid "Copy Debug Info"
4551
  msgstr "Copiar depuración en"
4552
 
4553
+ #: inc/class-page-settings.php:1006
4554
  #: inc/class-page-settings.php:1005
4555
  msgid "Debug info copied to clipboard."
4556
  msgstr "Información de depuración copiada en el portapapeles."
4557
 
4558
+ #: inc/class-page-settings.php:1014
4559
  #: inc/class-page-settings.php:1013
4560
  msgid "Could not copy debug info. You can simply press ctrl+C to copy it."
4561
  msgstr "No se pudo copiar la información de depuración. Simplemente puede presionar ctrl + C para copiarlo."
4562
 
 
 
4563
  #: inc/class-page-settings.php:1066
4564
  #: inc/class-page-settings.php:1070
4565
  msgid "Setting"
4566
  msgstr "Parámetros"
4567
 
4568
+ #: inc/class-page-settings.php:1067
4569
+ #: inc/class-page-settings.php:1071
4570
  #: inc/class-page-settings.php:1066
4571
  #: inc/class-page-settings.php:1070
4572
  msgid "Value"
4573
  msgstr "Valor"
4574
 
4575
+ #: inc/class-page-settings.php:1095
4576
  #: inc/class-page-settings.php:1094
4577
  msgid "Reset all settings to default"
4578
  msgstr "Todos los parámetros de nuevo por defecto"
4579
 
 
4580
  #: inc/class-page-settings.php:1115
4581
  msgid "WordPress version"
4582
  msgstr "Versión WordPress"
4583
 
 
4584
  #: inc/class-page-settings.php:1120
4585
  msgid "BackWPup version"
4586
  msgstr "Versión BackWPup"
4587
 
 
4588
  #: inc/class-page-settings.php:1124
4589
  msgid "Get pro."
4590
  msgstr "Obtener la version pro."
4591
 
 
4592
  #: inc/class-page-settings.php:1126
4593
  msgid "BackWPup Pro version"
4594
  msgstr "Versión BackWPup Pro"
4595
 
 
4596
  #: inc/class-page-settings.php:1131
4597
  msgid "PHP version"
4598
  msgstr "Versión PHP"
4599
 
 
4600
  #: inc/class-page-settings.php:1141
4601
  msgid "MySQL version"
4602
  msgstr "Versión MySQL"
4603
 
 
4604
  #: inc/class-page-settings.php:1145
4605
  msgid "cURL version"
4606
  msgstr "versión cURL"
4607
 
 
4608
  #: inc/class-page-settings.php:1149
4609
  msgid "cURL SSL version"
4610
  msgstr "versión cURL SSL"
4611
 
 
4612
  #: inc/class-page-settings.php:1152
4613
  msgid "unavailable"
4614
  msgstr "no disponible"
4615
 
 
4616
  #: inc/class-page-settings.php:1156
4617
  msgid "WP-Cron url"
4618
  msgstr "WP-Cron url"
4619
 
 
4620
  #: inc/class-page-settings.php:1160
4621
  msgid "Server self connect"
4622
  msgstr "Auto-Conexión del servidor"
4623
 
 
4624
  #: inc/class-page-settings.php:1166
4625
  msgid "Not expected HTTP response:"
4626
  msgstr "Respuesta HTTP no esperada:"
4627
 
 
4628
  #: inc/class-page-settings.php:1167
4629
  msgid "<strong>Not expected HTTP response:</strong><br>"
4630
  msgstr "<strong>Respuesta HTTP no esperada:</strong><br>"
4631
 
 
4632
  #: inc/class-page-settings.php:1170
4633
+ #, php-format
4634
  msgid "WP Http Error: %s"
4635
  msgstr "WP Http Error: %s"
4636
 
 
4637
  #: inc/class-page-settings.php:1174
4638
+ #, php-format
4639
  msgid "WP Http Error: <code>%s</code>"
4640
  msgstr "WP Http Error: <code>%s</code>"
4641
 
 
4642
  #: inc/class-page-settings.php:1178
4643
+ #, php-format
4644
  msgid "Status-Code: %d"
4645
  msgstr "Código de estado: %d"
4646
 
 
4647
  #: inc/class-page-settings.php:1180
4648
+ #, php-format
4649
  msgid "Status-Code: <code>%d</code>"
4650
  msgstr "Código de estado: <code>%d</code>"
4651
 
 
4652
  #: inc/class-page-settings.php:1193
4653
+ #, php-format
4654
  msgid "Content: %s"
4655
  msgstr "Contenido: %s"
4656
 
 
4657
  #: inc/class-page-settings.php:1195
4658
+ #, php-format
4659
  msgid "Content: <code>%s</code>"
4660
  msgstr "Contenido: <code>%s</code>"
4661
 
 
4662
  #: inc/class-page-settings.php:1200
4663
  msgid "Response Test O.K."
4664
  msgstr "Puesta de Test O.K."
4665
 
 
4666
  #: inc/class-page-settings.php:1209
4667
  msgid "Temp folder"
4668
  msgstr "Carpeta temp"
4669
 
 
4670
  #: inc/class-page-settings.php:1212
4671
+ #, php-format
4672
  msgid "Temp folder %s doesn't exist."
4673
  msgstr "La carpeta temporal %s no existe."
4674
 
 
4675
  #: inc/class-page-settings.php:1217
4676
+ #, php-format
4677
  msgid "Temporary folder %s is not writable."
4678
  msgstr "La carpeta temporal %s no se puede escribir."
4679
 
 
4680
  #: inc/class-page-settings.php:1225
4681
  msgid "Log folder"
4682
  msgstr "Carpeta de archivos de log"
4683
 
 
4684
  #: inc/class-page-settings.php:1231
4685
+ #, php-format
4686
  msgid "Log folder %s does not exist."
4687
  msgstr "Carpeta %s no existe."
4688
 
 
4689
  #: inc/class-page-settings.php:1236
4690
+ #, php-format
4691
  msgid "Log folder %s is not writable."
4692
  msgstr "La carpeta de registro %s no se puede escribir."
4693
 
 
4694
  #: inc/class-page-settings.php:1244
4695
  msgid "Server"
4696
  msgstr "Servidor"
4697
 
 
4698
  #: inc/class-page-settings.php:1248
4699
  msgid "Operating System"
4700
  msgstr "Sistema operativo"
4701
 
 
4702
  #: inc/class-page-settings.php:1252
4703
  msgid "PHP SAPI"
4704
  msgstr "PHP SAPI"
4705
 
 
4706
  #: inc/class-page-settings.php:1256
4707
  msgid "Current PHP user"
4708
  msgstr "Actual usuario PHP"
4709
 
 
4710
  #: inc/class-page-settings.php:1260
4711
  msgid "Function Disabled"
4712
  msgstr "Función desactivada"
4713
 
 
4714
  #: inc/class-page-settings.php:1264
4715
  msgid "Maximum execution time"
4716
  msgstr "Tiempo máximo de ejecución"
4717
 
 
 
4718
  #: inc/class-page-settings.php:1266
4719
  #: inc/class-page-settings.php:1273
4720
+ #, php-format
4721
  msgid "%d seconds"
4722
  msgstr "%d segundos"
4723
 
 
4724
  #: inc/class-page-settings.php:1271
4725
  msgid "BackWPup maximum script execution time"
4726
  msgstr "BackWPup tiempo máximo de ejecución de scripts"
4727
 
 
4728
  #: inc/class-page-settings.php:1278
4729
  msgid "Alternative WP Cron"
4730
  msgstr "Altenativa WP Cron"
4731
 
 
 
4732
  #: inc/class-page-settings.php:1280
4733
  #: inc/class-page-settings.php:1288
4734
  msgid "On"
4735
  msgstr "Encendido"
4736
 
 
 
4737
  #: inc/class-page-settings.php:1282
4738
  #: inc/class-page-settings.php:1290
4739
  msgid "Off"
4740
  msgstr "Apagado"
4741
 
 
4742
  #: inc/class-page-settings.php:1286
4743
  msgid "Disabled WP Cron"
4744
  msgstr "WP Cron desactivado"
4745
 
 
4746
  #: inc/class-page-settings.php:1294
4747
  msgid "CHMOD Dir"
4748
  msgstr "CHMOD Dir"
4749
 
 
4750
  #: inc/class-page-settings.php:1302
4751
  msgid "Server Time"
4752
  msgstr "Hora del servidor"
4753
 
 
4754
  #: inc/class-page-settings.php:1307
4755
  msgid "Blog Time"
4756
  msgstr "Hora del blog"
4757
 
 
4758
  #: inc/class-page-settings.php:1311
4759
  msgid "Blog Timezone"
4760
  msgstr "Zona horaria de blog"
4761
 
 
4762
  #: inc/class-page-settings.php:1315
4763
  msgid "Blog Time offset"
4764
  msgstr "Offset de hora del blog"
4765
 
 
4766
  #: inc/class-page-settings.php:1317
4767
+ #, php-format
4768
  msgid "%s hours"
4769
  msgstr "%s horas"
4770
 
 
4771
  #: inc/class-page-settings.php:1322
4772
  msgid "Blog language"
4773
  msgstr "Idioma del blog"
4774
 
 
4775
  #: inc/class-page-settings.php:1326
4776
  msgid "MySQL Client encoding"
4777
  msgstr "Codificación del cliente MySQL"
4778
 
 
4779
  #: inc/class-page-settings.php:1330
4780
  msgid "PHP Memory limit"
4781
  msgstr "Límite de memoria de PHP"
4782
 
 
4783
  #: inc/class-page-settings.php:1334
4784
  msgid "WP memory limit"
4785
  msgstr "Límite de memoria de WP"
4786
 
 
4787
  #: inc/class-page-settings.php:1338
4788
  msgid "WP maximum memory limit"
4789
  msgstr "Límite máximo de memoria de WordPress"
4790
 
 
4791
  #: inc/class-page-settings.php:1342
4792
  msgid "Memory in use"
4793
  msgstr "Memoria en uso"
4794
 
 
4795
  #: inc/class-page-settings.php:1348
4796
  msgid "Disabled PHP Functions:"
4797
  msgstr "Funciones PHP deshabilitadas:"
4798
 
 
4799
  #: inc/class-page-settings.php:1353
4800
  msgid "Loaded PHP Extensions:"
4801
  msgstr "Extensiones PHP cargadas:"
4802
 
4803
+ #: inc/class-system-tests-runner.php:68
4804
  #: inc/class-system-tests-runner.php:67
4805
+ #, php-format
4806
  msgctxt "%1 = extension name, %2 = file suffix"
4807
  msgid "We recommend to install the %1$s extension to generate %2$s archives."
4808
  msgstr "Recomendamos instalar la extensión %1s para generar ficheros %2s."
4809
 
4810
+ #: inc/class-system-tests-runner.php:78
4811
  #: inc/class-system-tests-runner.php:77
4812
+ #, php-format
4813
  msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
4814
  msgstr "Debe ejecutar la versión de WordPress %1$s o superior para usar este complemento. Estás usando la versión %2$s ahora."
4815
 
4816
+ #: inc/class-system-tests-runner.php:89
4817
  #: inc/class-system-tests-runner.php:88
4818
+ #, php-format
4819
  msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
4820
  msgstr "Recomendamos usar PHP versión %1$s o superior para conseguir toda la funcionalidad de complemento. Estás usando la versión %2$s ahora."
4821
 
4822
+ #: inc/class-system-tests-runner.php:101
4823
  #: inc/class-system-tests-runner.php:100
4824
+ #, php-format
4825
  msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
4826
  msgstr "Debes de tener la extensión MySQLLi instalada y una version %1$s o superior de MySQL server para usar este complemento. Estás usando la versión %2$s ahora."
4827
 
4830
  msgstr "La extensión PHP cURL debe instalarse para usar la funcionalidad completa del complemento."
4831
 
4832
  #: inc/class-system-tests-runner.php:136
4833
+ #, php-format
4834
  msgctxt "Link to PHP manual"
4835
  msgid "Please disable the deprecated <a href=\"%s\">PHP safe mode</a>."
4836
  msgstr "Por favor desactiva el desactualizado <a href=\"%s\">PHP safe mode</a>."
4839
  msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
4840
  msgstr "Recomendamos instalar la extensión PHP FTP para usar destinos de respaldos en FTP."
4841
 
4842
+ #: inc/class-system-tests-runner.php:165
4843
  #: inc/class-system-tests-runner.php:164
4844
+ #, php-format
4845
  msgid "The HTTP response test result is an error: \"%s\"."
4846
  msgstr "Comprobación de respuesta HTTP genera un error “%s”."
4847
 
4848
+ #: inc/class-system-tests-runner.php:176
4849
  #: inc/class-system-tests-runner.php:175
4850
+ #, php-format
4851
  msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200."
4852
  msgstr "El resultado de la prueba de respuesta HTTP es un estado HTTP incorrecto: %s. Debería ser el estado 200."
4853
 
4859
  msgid "All tests passed without errors."
4860
  msgstr "Todas las comprobaciones se ha pasado con éxito."
4861
 
4862
+ #: inc/class-system-tests-runner.php:221
4863
  #: inc/class-system-tests-runner.php:220
4864
  msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs."
4865
  msgstr "Wp-Cron parece estar roto; pero es necesario para realizar trabajos programados."
4893
  msgstr "Sin trabajos ejecutándose"
4894
 
4895
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
4896
+ #~ msgid "Uploading Archive..."
4897
+ #~ msgstr "Cargando archivo …"
4898
 
4899
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:8
4900
+ #~ msgid "Restoring: Directories ..."
4901
+ #~ msgstr "Restaurando: Directorios …"
4902
 
4903
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:9
4904
+ #~ msgid "Restoring: Database ..."
4905
+ #~ msgstr "Restaurando: Base de datos …"
4906
 
4907
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:10
4908
+ #~ msgid "Extracting Archive please be patient ..."
4909
+ #~ msgstr "Extrayendo archivo por favor sea paciente …"
4910
 
4911
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:11
4912
+ #~ msgid "Downloading Archive..."
4913
+ #~ msgstr "Descargando archivo …"
4914
 
4915
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:12
4916
+ #~ msgid "Database restored successfully."
4917
+ #~ msgstr "Base de datos restaurada con éxito."
 
 
 
 
4918
 
4919
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:17
4920
+ #~ msgid "Restoring: "
4921
+ #~ msgstr "Restaurando copias de seguridad: "
4922
 
4923
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:18
4924
+ #~ msgid "No EventSource found in the brower. Cannot continue."
4925
+ #~ msgstr "No se encontró EventSource en el navegador. No puede continuar."
4926
 
4927
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:19
4928
+ #~ msgid "Directories restored successfully."
4929
+ #~ msgstr "Directorios restaurados con éxito."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4930
 
4931
+ #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:13
4932
+ msgid "Ops! There was an error during database restore. Please see the log for more information."
 
 
 
 
 
 
 
 
 
 
 
 
4933
  msgstr ""
languages/backwpup-fr_FR.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Répertoire"
@@ -53,24 +53,24 @@ msgstr "Sauvegarder vers le serveur FTP"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "DropBox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Sauvegarder vers DropBox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3 Service"
@@ -101,8 +101,8 @@ msgstr "RackSpace"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Sauvegarder vers RackSpace Cloud"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Sauvegarder vers SugarSync"
@@ -178,8 +178,8 @@ msgstr "Ajouter une nouvelle opération"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "Fichiers journaux"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "DropBox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "Login"
472
 
@@ -480,16 +480,16 @@ msgstr "Authentification"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "Non authentifié!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "Créer un compte"
495
 
@@ -499,11 +499,11 @@ msgstr "Créer un compte"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "Enregistré!"
509
 
@@ -555,10 +555,10 @@ msgstr "BackWPup aura un accès complet en lecture et en écriture à tout votre
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "Paramètres BackWPup"
564
 
@@ -577,10 +577,10 @@ msgstr "Définir un sous-répertoire où vos sauvegardes seront déposées. Si v
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "Suppression de fichier"
586
 
@@ -598,17 +598,17 @@ msgstr "Suppression de fichier"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "Nombre de fichiers à garder dans le répertoire."
614
 
@@ -621,12 +621,12 @@ msgstr "Nombre de fichiers à garder dans le répertoire."
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Ne pas supprimer les fichies après l'envoi à la destination!"
664
 
@@ -669,22 +669,22 @@ msgstr "%d. Tentative d'envoi de fichiers vers Dropbox&#160;&hellip;"
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s de libre sur Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Pas d'authentification avec DropBox!"
690
 
@@ -697,26 +697,26 @@ msgstr "Envoi vers DropBox commencé&#160;&hellip;"
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "Sauvegarde envoyée vers %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Le fichier chargé et le fichier en local n'ont pas la même taille."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr "Impossible d'envoyer la sauvegarde vers %s"
722
 
@@ -745,9 +745,9 @@ msgstr ""
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
 
748
  #: inc/Pro/class-destination-email.php:16
749
  #: inc/Pro/class-destination-email.php:18
750
- #: inc/class-destination-email.php:39
751
  msgid "Email address"
752
  msgstr "Adresse E-mail"
753
 
@@ -760,10 +760,10 @@ msgstr ""
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
763
- #: inc/Pro/class-destination-email.php:29
764
- #: inc/Pro/class-destination-email.php:30
765
  #: inc/class-destination-email.php:52
766
  #: inc/class-destination-email.php:56
 
 
767
  msgid "Send test email"
768
  msgstr "Envoyer un courriel de test"
769
 
@@ -838,9 +838,9 @@ msgstr "Nom d'hôte SMTP"
838
  #: inc/class-destination-email.php:98
839
  #: inc/class-destination-ftp.php:31
840
  #: inc/pro/class-destination-ftp.php:21
841
- #: inc/Pro/class-destination-ftp.php:35
842
  #: inc/class-destination-email.php:124
843
  #: inc/class-destination-ftp.php:56
 
844
  msgid "Port:"
845
  msgstr "Port:"
846
 
@@ -859,10 +859,10 @@ msgstr "Connexion sécurisée SMTP"
859
  #: inc/class-page-settings.php:328
860
  #: inc/pro/class-jobtype-dbdump.php:157
861
  #: inc/pro/class-jobtype-dbdump.php:205
862
- #: inc/Pro/class-jobtype-dbdump.php:157
863
- #: inc/Pro/class-jobtype-dbdump.php:205
864
  #: inc/class-destination-email.php:141
865
  #: inc/class-page-settings.php:837
 
 
866
  msgid "none"
867
  msgstr "aucune"
868
 
@@ -986,8 +986,8 @@ msgstr "Délai d'attente pour la connexion FTP"
986
  #: inc/class-destination-ftp.php:87
987
  #: inc/class-page-logs.php:257
988
  #: inc/class-page-settings.php:466
989
- #: inc/class-page-logs.php:288
990
  #: inc/class-destination-ftp.php:137
 
991
  msgid "seconds"
992
  msgstr "secondes"
993
 
@@ -1142,15 +1142,15 @@ msgstr "Sauvegarde envoyée vers le serveur FTP: %s"
1142
  #: inc/pro/class-destination-glacier.php:468
1143
  #: inc/pro/class-destination-rsc.php:226
1144
  #: inc/pro/class-destination-rsc.php:259
 
 
1145
  #: inc/class-destination-rsc.php:292
 
 
1146
  #: inc/Pro/class-destination-gdrive.php:905
1147
  #: inc/Pro/class-destination-glacier.php:470
1148
  #: inc/Pro/class-destination-rsc.php:228
1149
  #: inc/Pro/class-destination-rsc.php:261
1150
- #: inc/class-destination-msazure.php:275
1151
- #: inc/class-destination-s3.php:843
1152
- #: inc/class-destination-s3.php:958
1153
- #: inc/class-destination-ftp.php:673
1154
  msgid "Can not open source file for transfer."
1155
  msgstr ""
1156
 
@@ -1200,8 +1200,8 @@ msgstr "Répertoire dans le contenu"
1200
  #: inc/class-destination-rsc.php:105
1201
  #: inc/class-destination-s3.php:114
1202
  #: inc/pro/class-destination-glacier.php:96
1203
- #: inc/Pro/class-destination-glacier.php:96
1204
  #: inc/class-destination-s3.php:215
 
1205
  msgid "File deletion"
1206
  msgstr "Suppression de fichier"
1207
 
@@ -1224,15 +1224,15 @@ msgstr "%d. Tentative d'envoi de la sauvegarde vers Microsoft Azure (Blob&#160;&
1224
 
1225
  #: inc/class-destination-msazure.php:233
1226
  #: inc/pro/class-destination-msazure.php:144
1227
- #: inc/Pro/class-destination-msazure.php:144
1228
  #: inc/class-destination-msazure.php:237
 
1229
  msgid "MS Azure container \"%s\" does not exist!"
1230
  msgstr "Le contenant Microsoft Azure \"%s\" n'existe pas!"
1231
 
1232
  #: inc/class-destination-msazure.php:237
1233
  #: inc/pro/class-destination-msazure.php:148
1234
- #: inc/Pro/class-destination-msazure.php:148
1235
  #: inc/class-destination-msazure.php:241
 
1236
  msgid "Connected to MS Azure container \"%s\"."
1237
  msgstr "Connecté au contenant Microsoft Azure \"%s\"."
1238
 
@@ -1244,9 +1244,9 @@ msgstr "Envoi vers MS Azure commencé&#160;&hellip;"
1244
  #: inc/class-destination-msazure.php:292
1245
  #: inc/class-destination-msazure.php:348
1246
  #: inc/pro/class-destination-msazure.php:233
1247
- #: inc/Pro/class-destination-msazure.php:233
1248
  #: inc/class-destination-msazure.php:296
1249
  #: inc/class-destination-msazure.php:352
 
1250
  msgid "Microsoft Azure API: %s"
1251
  msgstr "Microsoft Azure API: %s"
1252
 
@@ -1265,9 +1265,9 @@ msgstr "Nom du compte non fourni!"
1265
  #: inc/class-destination-msazure.php:444
1266
  #: inc/class-destination-s3.php:222
1267
  #: inc/pro/class-destination-glacier.php:166
1268
- #: inc/Pro/class-destination-glacier.php:166
1269
  #: inc/class-destination-msazure.php:448
1270
  #: inc/class-destination-s3.php:359
 
1271
  msgid "Missing access key!"
1272
  msgstr "Clé d'accès manquante!"
1273
 
@@ -1413,122 +1413,122 @@ msgstr "Sélectionner un service S3"
1413
 
1414
  #: inc/class-destination-s3.php:33
1415
  #: inc/pro/class-destination-s3.php:18
1416
- #: inc/Pro/class-destination-s3.php:32
1417
  #: inc/class-destination-s3.php:54
 
1418
  msgid "Amazon S3 Region"
1419
  msgstr "Amazon S3 Région"
1420
 
1421
  #: inc/class-destination-s3.php:34
1422
  #: inc/pro/class-destination-s3.php:19
1423
- #: inc/Pro/class-destination-s3.php:40
1424
  #: inc/class-destination-s3.php:1118
 
1425
  msgid "Amazon S3: US Standard"
1426
  msgstr "Amazon S3: US Standard"
1427
 
1428
  #: inc/class-destination-s3.php:35
1429
  #: inc/pro/class-destination-s3.php:20
1430
- #: inc/Pro/class-destination-s3.php:45
1431
  #: inc/class-destination-s3.php:1122
 
1432
  msgid "Amazon S3: US West (Northern California)"
1433
  msgstr "Amazon S3 : Ouest des Etats Unis (Nord de la Californie)"
1434
 
1435
  #: inc/class-destination-s3.php:36
1436
  #: inc/pro/class-destination-s3.php:21
1437
- #: inc/Pro/class-destination-s3.php:53
1438
  #: inc/class-destination-s3.php:1126
 
1439
  msgid "Amazon S3: US West (Oregon)"
1440
  msgstr "Amazon S3: Ouest des Etats Unis (Oregon)"
1441
 
1442
  #: inc/class-destination-s3.php:37
1443
  #: inc/pro/class-destination-s3.php:22
1444
- #: inc/Pro/class-destination-s3.php:58
1445
  #: inc/class-destination-s3.php:1130
 
1446
  msgid "Amazon S3: EU (Ireland)"
1447
  msgstr "Amazon S3: Europe (Irelande)"
1448
 
1449
  #: inc/class-destination-s3.php:38
1450
  #: inc/pro/class-destination-s3.php:23
1451
- #: inc/Pro/class-destination-s3.php:68
1452
  #: inc/class-destination-s3.php:1138
 
1453
  msgid "Amazon S3: EU (Germany)"
1454
  msgstr "Amazon S3: Europe (Allemagne)"
1455
 
1456
  #: inc/class-destination-s3.php:39
1457
  #: inc/pro/class-destination-s3.php:24
1458
- #: inc/Pro/class-destination-s3.php:73
1459
  #: inc/class-destination-s3.php:1142
 
1460
  #, fuzzy
1461
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1462
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1463
 
1464
  #: inc/class-destination-s3.php:40
1465
  #: inc/pro/class-destination-s3.php:25
1466
- #: inc/Pro/class-destination-s3.php:78
1467
  #: inc/class-destination-s3.php:1146
 
1468
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1469
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1470
 
1471
  #: inc/class-destination-s3.php:41
1472
  #: inc/pro/class-destination-s3.php:26
1473
- #: inc/Pro/class-destination-s3.php:83
1474
  #: inc/class-destination-s3.php:1150
 
1475
  #, fuzzy
1476
  msgid "Amazon S3: Asia Pacific (Seoul)"
1477
  msgstr "Amazon S3: Asie et pacifique (Sydney)"
1478
 
1479
  #: inc/class-destination-s3.php:42
1480
  #: inc/pro/class-destination-s3.php:27
1481
- #: inc/Pro/class-destination-s3.php:88
1482
  #: inc/class-destination-s3.php:1154
 
1483
  msgid "Amazon S3: Asia Pacific (Singapore)"
1484
  msgstr "Amazon S3: Asie et pacifique (Singapore)"
1485
 
1486
  #: inc/class-destination-s3.php:43
1487
  #: inc/pro/class-destination-s3.php:28
1488
- #: inc/Pro/class-destination-s3.php:93
1489
  #: inc/class-destination-s3.php:1158
 
1490
  msgid "Amazon S3: Asia Pacific (Sydney)"
1491
  msgstr "Amazon S3: Asie et pacifique (Sydney)"
1492
 
1493
  #: inc/class-destination-s3.php:44
1494
  #: inc/pro/class-destination-s3.php:29
1495
- #: inc/Pro/class-destination-s3.php:98
1496
  #: inc/class-destination-s3.php:1162
 
1497
  msgid "Amazon S3: South America (Sao Paulo)"
1498
  msgstr "Amazon S3: Amérique du sud (Sao Paulo)"
1499
 
1500
  #: inc/class-destination-s3.php:45
1501
  #: inc/pro/class-destination-s3.php:30
1502
- #: inc/Pro/class-destination-s3.php:103
1503
  #: inc/class-destination-s3.php:1166
 
1504
  msgid "Amazon S3: China (Beijing)"
1505
  msgstr "Amazon S3: China (Beijing)"
1506
 
1507
  #: inc/class-destination-s3.php:46
1508
  #: inc/pro/class-destination-s3.php:31
1509
- #: inc/Pro/class-destination-s3.php:108
1510
  #: inc/class-destination-s3.php:1170
 
1511
  msgid "Google Storage: EU"
1512
  msgstr ""
1513
 
1514
  #: inc/class-destination-s3.php:47
1515
  #: inc/pro/class-destination-s3.php:32
1516
- #: inc/Pro/class-destination-s3.php:113
1517
  #: inc/class-destination-s3.php:1174
 
1518
  msgid "Google Storage: USA"
1519
  msgstr ""
1520
 
1521
  #: inc/class-destination-s3.php:48
1522
  #: inc/pro/class-destination-s3.php:33
1523
- #: inc/Pro/class-destination-s3.php:118
1524
  #: inc/class-destination-s3.php:1178
 
1525
  msgid "Google Storage: Asia"
1526
  msgstr ""
1527
 
1528
  #: inc/class-destination-s3.php:49
1529
  #: inc/pro/class-destination-s3.php:34
1530
- #: inc/Pro/class-destination-s3.php:123
1531
  #: inc/class-destination-s3.php:1182
 
1532
  msgid "Dream Host Cloud Storage"
1533
  msgstr "Dream Host Cloud Storage"
1534
 
@@ -1544,15 +1544,15 @@ msgstr "Clé d'accès S3"
1544
 
1545
  #: inc/class-destination-s3.php:65
1546
  #: inc/pro/class-destination-glacier.php:54
1547
- #: inc/Pro/class-destination-glacier.php:54
1548
  #: inc/class-destination-s3.php:121
 
1549
  msgid "Access Key"
1550
  msgstr "Clé d'accès"
1551
 
1552
  #: inc/class-destination-s3.php:72
1553
  #: inc/pro/class-destination-glacier.php:61
1554
- #: inc/Pro/class-destination-glacier.php:61
1555
  #: inc/class-destination-s3.php:135
 
1556
  msgid "Secret Key"
1557
  msgstr "Clé secrète"
1558
 
@@ -1620,8 +1620,8 @@ msgstr "Enregistrer le fichier encodé (AES256) sur le serveur."
1620
 
1621
  #: inc/class-destination-s3.php:224
1622
  #: inc/pro/class-destination-glacier.php:168
1623
- #: inc/Pro/class-destination-glacier.php:168
1624
  #: inc/class-destination-s3.php:361
 
1625
  msgid "Missing secret access key!"
1626
  msgstr "Clé secrète manquante!"
1627
 
@@ -1637,8 +1637,8 @@ msgstr "Le panier %1$s a été créé."
1637
 
1638
  #: inc/class-destination-s3.php:348
1639
  #: inc/pro/class-destination-s3.php:147
1640
- #: inc/Pro/class-destination-s3.php:285
1641
  #: inc/class-destination-s3.php:520
 
1642
  msgid " %s is not a valid bucket name."
1643
  msgstr "%s n'estpas un nom de panier correct."
1644
 
@@ -1648,12 +1648,12 @@ msgstr "%s n'estpas un nom de panier correct."
1648
  #: inc/class-destination-s3.php:610
1649
  #: inc/class-destination-s3.php:670
1650
  #: inc/pro/class-destination-s3.php:337
1651
- #: inc/Pro/class-destination-s3.php:623
1652
  #: inc/class-destination-s3.php:570
1653
  #: inc/class-destination-s3.php:868
1654
  #: inc/class-destination-s3.php:936
1655
  #: inc/class-destination-s3.php:995
1656
  #: inc/class-destination-s3.php:1006
 
1657
  msgid "S3 Service API: %s"
1658
  msgstr "S3 Service API: %s"
1659
 
@@ -1664,15 +1664,15 @@ msgstr "%d. Tentative d'envoi du fichier sauvegarde vers le service S3&#160;&hel
1664
 
1665
  #: inc/class-destination-s3.php:470
1666
  #: inc/pro/class-destination-s3.php:188
1667
- #: inc/Pro/class-destination-s3.php:383
1668
  #: inc/class-destination-s3.php:803
 
1669
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1670
  msgstr "Connecté au panier S3 \"%1$s\" dans %2$s"
1671
 
1672
  #: inc/class-destination-s3.php:473
1673
  #: inc/pro/class-destination-s3.php:191
1674
- #: inc/Pro/class-destination-s3.php:391
1675
  #: inc/class-destination-s3.php:808
 
1676
  msgid "S3 Bucket \"%s\" does not exist!"
1677
  msgstr "Panier S3 \"%s\" n'existe pas!"
1678
 
@@ -1693,8 +1693,8 @@ msgstr "Envoi vers le service S3 commencé&#160;&hellip;"
1693
 
1694
  #: inc/class-destination-s3.php:601
1695
  #: inc/pro/class-destination-glacier.php:444
1696
- #: inc/Pro/class-destination-glacier.php:446
1697
  #: inc/class-destination-s3.php:972
 
1698
  msgid "Backup transferred to %s."
1699
  msgstr "Sauvegarde envoyée vers %s."
1700
 
@@ -1734,9 +1734,9 @@ msgstr "Adresse E-mail:"
1734
  #: inc/pro/class-destination-ftp.php:29
1735
  #: inc/pro/class-destination-sugarsync.php:20
1736
  #: inc/pro/class-jobtype-dbdump.php:126
1737
- #: inc/Pro/class-jobtype-dbdump.php:126
1738
  #: inc/Pro/class-destination-ftp.php:47
1739
  #: inc/Pro/class-destination-sugarsync.php:20
 
1740
  msgid "Password:"
1741
  msgstr "Mot de passe:"
1742
 
@@ -1914,75 +1914,75 @@ msgid "BackWPup jobs helper"
1914
  msgstr "Aide sur les opérations BackWPup"
1915
 
1916
  #: inc/class-job.php:263
1917
- #: inc/class-job.php:269
1918
  msgid "Starting job"
1919
  msgstr "Lacement de l'opération"
1920
 
1921
  #: inc/class-job.php:278
1922
- #: inc/class-job.php:284
1923
  msgid "Job Start"
1924
  msgstr "Début de l'opération"
1925
 
1926
  #: inc/class-job.php:298
1927
- #: inc/class-job.php:304
1928
  msgid "Creates manifest file"
1929
  msgstr "Création du fichier manifeste"
1930
 
1931
  #: inc/class-job.php:320
1932
- #: inc/class-job.php:326
1933
  msgid "Creates archive"
1934
  msgstr "Créer une archive"
1935
 
1936
  #: inc/class-job.php:360
1937
- #: inc/class-job.php:373
1938
  msgid "End of Job"
1939
  msgstr "Fin de l'opération"
1940
 
1941
  #: inc/class-job.php:377
1942
- #: inc/class-job.php:395
1943
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1944
  msgstr "Fichier journal BackWPup pour %1$s de %2$s à %3$s"
1945
 
1946
  #: inc/class-job.php:394
1947
- #: inc/class-job.php:412
1948
  msgctxt "Plugin name; Plugin Version; plugin url"
1949
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1950
  msgstr ""
1951
 
1952
  #: inc/class-job.php:395
1953
- #: inc/class-job.php:413
1954
  msgctxt "WordPress Version; Blog url"
1955
  msgid "[INFO] WordPress %1$s on %2$s"
1956
  msgstr ""
1957
 
1958
  #: inc/class-job.php:396
1959
- #: inc/class-job.php:414
1960
  msgid "Normal"
1961
  msgstr ""
1962
 
1963
  #: inc/class-job.php:399
1964
- #: inc/class-job.php:417
1965
  msgid "Debug"
1966
  msgstr ""
1967
 
1968
  #: inc/class-job.php:402
1969
- #: inc/class-job.php:420
1970
  msgid "(translated)"
1971
  msgstr ""
1972
 
1973
  #: inc/class-job.php:404
1974
- #: inc/class-job.php:422
1975
  #, fuzzy
1976
  msgid "[INFO] Log Level: %1$s %2$s"
1977
  msgstr "[INFO] Version curl : %1$s; %2$s"
1978
 
1979
  #: inc/class-job.php:409
1980
- #: inc/class-job.php:427
1981
  msgid "[INFO] BackWPup job: %1$s"
1982
  msgstr ""
1983
 
1984
  #: inc/class-job.php:412
1985
- #: inc/class-job.php:430
1986
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1987
  msgstr ""
1988
 
@@ -1990,151 +1990,151 @@ msgstr ""
1990
  #: inc/class-page-backwpup.php:323
1991
  #: inc/class-page-jobs.php:282
1992
  #: inc/class-page-jobs.php:291
1993
- #: inc/class-job.php:444
1994
  msgid "Not scheduled!"
1995
  msgstr "Pas de programmation !"
1996
 
1997
  #: inc/class-job.php:430
1998
  #: inc/class-job.php:440
1999
- #: inc/class-job.php:448
2000
- #: inc/class-job.php:458
2001
  msgid "[INFO] Cron: %s; Next: %s "
2002
  msgstr ""
2003
 
2004
  #: inc/class-job.php:433
2005
- #: inc/class-job.php:451
2006
  msgid "[INFO] BackWPup job start with link is active"
2007
  msgstr "[INFO] Opération BackWPup démarrée par URL"
2008
 
2009
  #: inc/class-job.php:435
2010
- #: inc/class-job.php:453
2011
  msgid "[INFO] BackWPup job start with EasyCron.com"
2012
  msgstr ""
2013
 
2014
  #: inc/class-job.php:443
2015
- #: inc/class-job.php:461
2016
  msgid "[INFO] BackWPup no automatic job start configured"
2017
  msgstr "[INFO] Pas d'opération BackWPup automatique de configurée"
2018
 
2019
  #: inc/class-job.php:447
2020
- #: inc/class-job.php:465
2021
  msgid "[INFO] BackWPup job started from wp-cron"
2022
  msgstr "[INFO] Opération BackWPup démarrée par wp-cron"
2023
 
2024
  #: inc/class-job.php:449
2025
- #: inc/class-job.php:467
2026
  msgid "[INFO] BackWPup job started manually"
2027
  msgstr "[INFO] Opération BackWPup démarrée manuellement"
2028
 
2029
  #: inc/class-job.php:451
2030
- #: inc/class-job.php:469
2031
  msgid "[INFO] BackWPup job started from external url"
2032
  msgstr "[INFO] Opération BackWPup démarrée par une URL externe"
2033
 
2034
  #: inc/class-job.php:453
2035
- #: inc/class-job.php:471
2036
  msgid "[INFO] BackWPup job started form commandline interface"
2037
  msgstr "[INFO] Opération BackWPup démarrée par l'interface en ligne de commande"
2038
 
2039
  #: inc/class-job.php:462
2040
- #: inc/class-job.php:480
2041
  msgid "[INFO] PHP ver.:"
2042
  msgstr "[INFO] version PHP:"
2043
 
2044
  #: inc/class-job.php:463
2045
- #: inc/class-job.php:481
2046
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2047
  msgstr "[INFO] Le temps d’exécution maximum d'un script est %1$d secondes"
2048
 
2049
  #: inc/class-job.php:467
2050
- #: inc/class-job.php:485
2051
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2052
  msgstr "[INFO] Le temps de reprise du script est configuré à %1$d secondes"
2053
 
2054
  #: inc/class-job.php:470
2055
- #: inc/class-job.php:488
2056
  msgid "[INFO] MySQL ver.: %s"
2057
  msgstr "[INFO] Version MySQL: %s"
2058
 
2059
  #: inc/class-job.php:472
2060
- #: inc/class-job.php:490
2061
  msgid "[INFO] Web Server: %s"
2062
  msgstr "[INFO] Serveur Web : %s"
2063
 
2064
  #: inc/class-job.php:476
2065
- #: inc/class-job.php:494
2066
  msgid "[INFO] curl ver.: %1$s; %2$s"
2067
  msgstr "[INFO] Version curl : %1$s; %2$s"
2068
 
2069
  #: inc/class-job.php:478
2070
- #: inc/class-job.php:496
2071
  msgid "[INFO] Temp folder is: %s"
2072
  msgstr "[INFO] Répertoire temporaire : %s"
2073
 
2074
  #: inc/class-job.php:485
2075
- #: inc/class-job.php:503
2076
  msgid "[INFO] Logfile is: %s"
2077
  msgstr "[INFO] Le fichier journal est : %s"
2078
 
2079
  #: inc/class-job.php:492
2080
- #: inc/class-job.php:510
2081
  msgid "[INFO] Backup file is: %s"
2082
  msgstr "[INFO] Fichier sauvegarde : %s"
2083
 
2084
  #: inc/class-job.php:494
2085
- #: inc/class-job.php:512
2086
  msgid "[INFO] Backup type is: %s"
2087
  msgstr "[INFO] Type de sauvegarde : %s"
2088
 
2089
  #: inc/class-job.php:502
2090
- #: inc/class-job.php:520
2091
  msgid "Could not write log file"
2092
  msgstr ""
2093
 
2094
  #: inc/class-job.php:514
2095
- #: inc/class-job.php:532
2096
  msgid "No destination correctly defined for backup! Please correct job settings."
2097
  msgstr "Pas de cible définie pour la sauvegarde! Veuillez corriger les paramètres de l'opération."
2098
 
2099
  #: inc/class-job.php:644
2100
- #: inc/class-job.php:628
2101
  msgid "Cannot write progress to working file. Job will be aborted."
2102
  msgstr "Impossible d'écrire l'avancement dans le fichier de travail. L'opération va être arrétée."
2103
 
2104
  #: inc/class-job.php:716
2105
  #: inc/class-page-jobs.php:786
2106
- #: inc/class-job.php:700
2107
  msgid "WARNING:"
2108
  msgstr "AVERTISSEMENT :"
2109
 
2110
  #: inc/class-job.php:725
2111
  #: inc/class-page-jobs.php:784
2112
- #: inc/class-job.php:709
2113
  msgid "ERROR:"
2114
  msgstr "ERREUR:"
2115
 
2116
  #: inc/class-job.php:729
2117
- #: inc/class-job.php:713
2118
  msgid "DEPRECATED:"
2119
  msgstr "DÉPRÉCIÉE :"
2120
 
2121
  #: inc/class-job.php:732
2122
- #: inc/class-job.php:716
2123
  msgid "STRICT NOTICE:"
2124
  msgstr "SIMPLE NOTE :"
2125
 
2126
  #: inc/class-job.php:737
2127
- #: inc/class-job.php:721
2128
  msgid "RECOVERABLE ERROR:"
2129
  msgstr "ERREUR RÉCUPÉRABLE :"
2130
 
2131
  #: inc/class-job.php:985
2132
- #: inc/class-job.php:972
2133
  msgid "Aborted by user!"
2134
  msgstr "Arrêté par l'utilisateur!"
2135
 
2136
  #: inc/class-job.php:1019
2137
- #: inc/class-job.php:1005
2138
  msgid "One old log deleted"
2139
  msgid_plural "%d old logs deleted"
2140
  msgstr[0] "Un ancien fichier de trace supprimé"
@@ -2142,292 +2142,292 @@ msgstr[1] "%d anciens fichiers de traces supprimés"
2142
 
2143
  #: inc/class-job.php:1026
2144
  #: inc/class-page-jobs.php:784
2145
- #: inc/class-job.php:1012
2146
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2147
  msgstr "L'opération s'est terminée avec des erreurs en %ssecondes. Vous devez corriger les erreurs pour une exécution correcte."
2148
 
2149
  #: inc/class-job.php:1028
2150
- #: inc/class-job.php:1014
2151
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2152
  msgstr "L'opération s'est terminée avec des avertissements en %s seconds. Merci de les corriger pour une exécution correcte."
2153
 
2154
  #: inc/class-job.php:1030
2155
  #: inc/class-page-jobs.php:788
2156
- #: inc/class-job.php:1016
2157
  msgid "Job done in %s seconds."
2158
  msgstr "Opération effectuée en %s secondes."
2159
 
2160
  #: inc/class-job.php:1074
2161
- #: inc/class-job.php:1060
2162
  msgid "SUCCESSFUL"
2163
  msgstr "SUCCES"
2164
 
2165
  #: inc/class-job.php:1076
2166
- #: inc/class-job.php:1062
2167
  msgid "WARNING"
2168
  msgstr "AVERTISSEMENT"
2169
 
2170
  #: inc/class-job.php:1079
2171
- #: inc/class-job.php:1065
2172
  msgid "ERROR"
2173
  msgstr "ERREUR"
2174
 
2175
  #: inc/class-job.php:1082
2176
- #: inc/class-job.php:1068
2177
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2178
  msgstr "[%3$s] trace BackWPup%1$s: %2$s"
2179
 
2180
  #: inc/class-job.php:1188
2181
- #: inc/class-job.php:1180
2182
  msgid "Restart after %1$d seconds."
2183
  msgstr "Relancer après %1$d secondes."
2184
 
2185
  #: inc/class-job.php:1190
2186
- #: inc/class-job.php:1182
2187
  #, fuzzy
2188
  msgid "Restart after getting signal."
2189
  msgstr "Relancer après %1$d secondes."
2190
 
2191
  #: inc/class-job.php:1363
2192
- #: inc/class-job.php:1357
2193
  msgid "Job restarts due to inactivity for more than 5 minutes."
2194
  msgstr "Job restarts due to inactivity for more than 5 minutes."
2195
 
2196
  #: inc/class-job.php:1461
2197
- #: inc/class-job.php:1455
2198
  msgid "Step aborted: too many attempts!"
2199
  msgstr "Étape abandonnée : trop de tentatives !"
2200
 
2201
  #: inc/class-job.php:1532
2202
- #: inc/class-job.php:1528
2203
  msgid "%d. Trying to create backup archive &hellip;"
2204
  msgstr "%d. Tentative de création de l'archive..."
2205
 
2206
  #: inc/class-job.php:1540
2207
- #: inc/class-job.php:1536
2208
  msgctxt "Archive compression method"
2209
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2210
  msgstr "Compression des fichiers en %s. Merci d'être patient, cela peut prendre un certain temps."
2211
 
2212
  #: inc/class-job.php:1547
2213
- #: inc/class-job.php:1544
2214
  msgid "Adding Extra files to Archive"
2215
  msgstr ""
2216
 
2217
  #: inc/class-job.php:1559
2218
  #: inc/class-job.php:1619
2219
- #: inc/class-job.php:1555
2220
- #: inc/class-job.php:1626
2221
  msgid "Cannot create backup archive correctly. Aborting creation."
2222
  msgstr "Impossible de créer la sauvegarde. L'opération est abandonnée."
2223
 
2224
  #: inc/class-job.php:1575
2225
- #: inc/class-job.php:1571
2226
  msgid "Archiving Folder: %s"
2227
  msgstr ""
2228
 
2229
  #: inc/class-job.php:1629
2230
- #: inc/class-job.php:1636
2231
  msgid "Backup archive created."
2232
  msgstr "Archive de sauvegarde créée."
2233
 
2234
  #: inc/class-job.php:1643
2235
- #: inc/class-job.php:1650
2236
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2237
  msgstr ""
2238
 
2239
  #: inc/class-job.php:1646
2240
- #: inc/class-job.php:1653
2241
  msgid "Archive size is %s."
2242
  msgstr "La taille de l'archive est de %s."
2243
 
2244
  #: inc/class-job.php:1649
2245
- #: inc/class-job.php:1656
2246
  msgid "%1$d Files with %2$s in Archive."
2247
  msgstr "%1$d fichiers avec %2$s à sauvegarder"
2248
 
2249
  #: inc/class-job.php:1698
2250
- #: inc/class-job.php:1831
2251
  #, fuzzy
2252
  msgctxt "Folder name"
2253
  msgid "Folder %s does not exist"
2254
  msgstr "Le répertoire %s n'existe pas"
2255
 
2256
  #: inc/class-job.php:1703
2257
- #: inc/class-job.php:1837
2258
  #, fuzzy
2259
  msgctxt "Folder name"
2260
  msgid "Folder %s is not readable"
2261
  msgstr "Le répertoire \"%s\" n'est pas accessible! "
2262
 
2263
  #: inc/class-job.php:1725
2264
- #: inc/class-job.php:1860
2265
  msgid "Link \"%s\" not following."
2266
  msgstr "Le lien \"%s\" n'a pas été suivi."
2267
 
2268
  #: inc/class-job.php:1727
2269
- #: inc/class-job.php:1862
2270
  msgid "File \"%s\" is not readable!"
2271
  msgstr "Le fichier \"%s\" ne peut être lu!"
2272
 
2273
  #: inc/class-job.php:1731
2274
- #: inc/class-job.php:1866
2275
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2276
  msgstr "La taille du fichier \"%s\" ne peut pas être lue. Le fichier est peut-être trop grand et il ne sera pas ajouté à la sauvegarde."
2277
 
2278
  #: inc/class-job.php:1814
2279
- #: inc/class-job.php:1949
2280
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2281
  msgstr "%d. Tentative de créer un fichier manifeste&#160;&hellip;"
2282
 
2283
  #: inc/class-job.php:1870
2284
- #: inc/class-job.php:2005
2285
  msgid "You may have noticed the manifest.json file in this archive."
2286
  msgstr "Vous avez noté la présence du manifeste .json dans la sauvegarde."
2287
 
2288
  #: inc/class-job.php:1871
2289
- #: inc/class-job.php:2006
2290
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2291
  msgstr "le manifeste .json peut être nécessaire pour une restauration ultérieure de cette sauvegarde."
2292
 
2293
  #: inc/class-job.php:1872
2294
- #: inc/class-job.php:2007
2295
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2296
  msgstr "Merci de laisser le manifeste .json non modifié et à la même place. En d'autres termes, vous pouvez l'ignorer."
2297
 
2298
  #: inc/class-job.php:1882
2299
- #: inc/class-job.php:2017
2300
  msgid "Added manifest.json file with %1$s to backup file list."
2301
  msgstr "Ajout du fichier manifeste .json avec %1$s à la liste des fichiers de la sauvegarde."
2302
 
2303
  #: inc/class-job.php:1921
2304
- #: inc/class-job.php:2056
2305
  msgid "Wrong BackWPup JobID"
2306
  msgstr "Erreur d'identification d'opération BackWPup"
2307
 
2308
  #: inc/class-job.php:1934
2309
- #: inc/class-job.php:2069
2310
  msgid "A BackWPup job is already running"
2311
  msgstr "Une opération BackWPup est déjà en cours"
2312
 
2313
  #: inc/class-job.php:2302
2314
- #: inc/class-job.php:2482
2315
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2316
  msgid "Hangup detected on controlling terminal or death of controlling process"
2317
  msgstr ""
2318
 
2319
  #: inc/class-job.php:2306
2320
- #: inc/class-job.php:2486
2321
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2322
  msgid "Interrupt from keyboard"
2323
  msgstr ""
2324
 
2325
  #: inc/class-job.php:2310
2326
- #: inc/class-job.php:2490
2327
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2328
  msgid "Quit from keyboard"
2329
  msgstr ""
2330
 
2331
  #: inc/class-job.php:2314
2332
- #: inc/class-job.php:2494
2333
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2334
  msgid "Illegal Instruction"
2335
  msgstr ""
2336
 
2337
  #: inc/class-job.php:2318
2338
- #: inc/class-job.php:2498
2339
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2340
  msgid "Abort signal from abort(3)"
2341
  msgstr ""
2342
 
2343
  #: inc/class-job.php:2322
2344
- #: inc/class-job.php:2502
2345
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2346
  msgid "Bus error (bad memory access)"
2347
  msgstr ""
2348
 
2349
  #: inc/class-job.php:2326
2350
- #: inc/class-job.php:2506
2351
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2352
  msgid "Floating point exception"
2353
  msgstr ""
2354
 
2355
  #: inc/class-job.php:2330
2356
- #: inc/class-job.php:2510
2357
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2358
  msgid "Invalid memory reference"
2359
  msgstr ""
2360
 
2361
  #: inc/class-job.php:2334
2362
- #: inc/class-job.php:2514
2363
  #, fuzzy
2364
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2365
  msgid "Termination signal"
2366
  msgstr "Destinations"
2367
 
2368
  #: inc/class-job.php:2338
2369
- #: inc/class-job.php:2518
2370
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2371
  msgid "Stack fault on coprocessor"
2372
  msgstr ""
2373
 
2374
  #: inc/class-job.php:2342
2375
- #: inc/class-job.php:2522
2376
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2377
  msgid "User-defined signal 1"
2378
  msgstr ""
2379
 
2380
  #: inc/class-job.php:2346
2381
- #: inc/class-job.php:2526
2382
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2383
  msgid "User-defined signal 2"
2384
  msgstr ""
2385
 
2386
  #: inc/class-job.php:2350
2387
- #: inc/class-job.php:2530
2388
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2389
  msgid "Urgent condition on socket"
2390
  msgstr ""
2391
 
2392
  #: inc/class-job.php:2354
2393
- #: inc/class-job.php:2534
2394
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2395
  msgid "CPU time limit exceeded"
2396
  msgstr ""
2397
 
2398
  #: inc/class-job.php:2358
2399
- #: inc/class-job.php:2538
2400
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2401
  msgid "File size limit exceeded"
2402
  msgstr ""
2403
 
2404
  #: inc/class-job.php:2362
2405
- #: inc/class-job.php:2542
2406
  #, fuzzy
2407
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2408
  msgid "Power failure"
2409
  msgstr "FTP : Échec d'authentification!"
2410
 
2411
  #: inc/class-job.php:2366
2412
- #: inc/class-job.php:2546
2413
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2414
  msgid "Bad argument to routine"
2415
  msgstr ""
2416
 
2417
  #: inc/class-job.php:2373
2418
- #: inc/class-job.php:2553
2419
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2420
  msgstr ""
2421
 
2422
  #: inc/class-job.php:2407
2423
  #: inc/class-job.php:2420
2424
- #: inc/class-job.php:2587
2425
- #: inc/class-job.php:2600
2426
  msgid "System: %s"
2427
  msgstr ""
2428
 
2429
  #: inc/class-job.php:2435
2430
- #: inc/class-job.php:2615
2431
  msgid "Exception caught in %1$s: %2$s"
2432
  msgstr "Exception trouvée dans %1$s: %2$s"
2433
 
@@ -2727,7 +2727,7 @@ msgstr "Export XML"
2727
 
2728
  #: inc/class-jobtype-wpexp.php:14
2729
  #: inc/class-page-about.php:472
2730
- #: inc/class-page-about.php:474
2731
  msgid "WordPress XML export"
2732
  msgstr "Export XML WordPress"
2733
 
@@ -2964,281 +2964,274 @@ msgid "New Job"
2964
  msgstr "Nouvelle opération"
2965
 
2966
  #: inc/class-page-about.php:369
2967
- #: inc/class-page-about.php:371
2968
  msgid "Welcome to BackWPup Pro"
2969
  msgstr "Bienvenue sur BackWPup Pro"
2970
 
2971
  #: inc/class-page-about.php:370
2972
  #: inc/class-page-backwpup.php:75
2973
- #: inc/class-page-about.php:372
2974
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2975
  msgstr "Les assistants d'opération de BackWPup's permettent de définir les planifications et les "
2976
 
2977
- #: inc/class-page-about.php:371
2978
- #: inc/class-page-about.php:384
2979
- #: inc/class-page-about.php:373
2980
- #: inc/class-page-about.php:386
2981
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2982
- msgstr "La sauvegarde peut être utilisée pour sauvegarder toute votre installation en incluant <code>/wp-content/</code>. Envoyer la vers un service externe, si vous désirez que votre sauvegarde ne reste pas sur le même serveur. Avec un seul fichier de sauvegarde vous pouvez restaurer toute votre installation. Utiliser un outil comme phpMyAdmin pour restaurer la sauvegarde de votre base."
2983
-
2984
  #: inc/class-page-about.php:372
2985
- #: inc/class-page-about.php:374
2986
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2987
  msgstr "Prêt à <a href=\"%1$s\"> définir une opération</a>? Vous pouvez <a href=\"%2$s\">utilisez l'assistant</a> ou le mode expert."
2988
 
2989
  #: inc/class-page-about.php:382
2990
- #: inc/class-page-about.php:384
2991
  msgid "Welcome to BackWPup"
2992
  msgstr "Bienvenue à BackWPup"
2993
 
2994
  #: inc/class-page-about.php:385
2995
- #: inc/class-page-about.php:387
2996
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2997
  msgstr "Prêt à définir une opération de sauvegarde? Utilisez l'un des assistants pour définir ce que vous voulez sauvegarder."
2998
 
2999
  #: inc/class-page-about.php:398
3000
- #: inc/class-page-about.php:400
3001
  msgid "Save your database"
3002
  msgstr "Sauvegarder votre base de données"
3003
 
3004
  #: inc/class-page-about.php:401
3005
- #: inc/class-page-about.php:403
3006
  msgid "Save your database regularly"
3007
  msgstr "Sauvegarder votre base de données régulièrement"
3008
 
3009
  #: inc/class-page-about.php:402
3010
- #: inc/class-page-about.php:404
3011
  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."
3012
  msgstr "Avec BackWPup vous pouvez définir une automatisation de la sauvegarde de vos bases de données. Avec un seul fichier de sauvegarde, vous pouvez restaurer votre base de données. Vous devez <a href=\"%s\">définir une opération de sauvegarde</a>, ainsi vous n'oublierez jamais . Il y a aussi une option pour réparer et optimiser la base de données après chaque sauvegarde."
3013
 
3014
  #: inc/class-page-about.php:407
3015
  #: inc/class-page-about.php:411
3016
- #: inc/class-page-about.php:409
3017
- #: inc/class-page-about.php:413
3018
  msgid "WordPress XML Export"
3019
  msgstr "Export WordPress XML"
3020
 
3021
  #: inc/class-page-about.php:408
3022
- #: inc/class-page-about.php:410
3023
  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."
3024
  msgstr "Vous pouvez choisir le format interne d'export WordPress en plus ou seulement pour sauvegarder vos données. Cela fonctionne aussi dans les sauvegardes programmées. L'avantage en est : vous pouvez restaurer ces fichiers dans votre installation avec l'importateur WordPress."
3025
 
3026
  #: inc/class-page-about.php:416
3027
- #: inc/class-page-about.php:418
3028
  msgid "Save all data from the webserver"
3029
  msgstr "Sauvegarder toutes les données depuis le serveur web"
3030
 
3031
  #: inc/class-page-about.php:419
3032
- #: inc/class-page-about.php:421
3033
  msgid "Save all files"
3034
  msgstr "Sauvegarder tous les fichiers"
3035
 
3036
  #: inc/class-page-about.php:420
3037
- #: inc/class-page-about.php:422
3038
  msgid "You can backup 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."
3039
  msgstr "Vous pouvez sauvegarder tous vos fichiers joints, ainsi que tous les fichiers systèmes, les extensions et les thémes dans un seul fichier. Vous pouvez <a href=\"%s\">créer une opération</a> pour mettre à jour votre sauvegarde avec uniquement les fichiers qui ont été modifiés (différentiel)"
3040
 
3041
  #: inc/class-page-about.php:425
3042
  #: inc/class-page-about.php:429
3043
- #: inc/class-page-about.php:427
3044
- #: inc/class-page-about.php:431
3045
  msgid "Security!"
3046
  msgstr "Sécurité!"
3047
 
3048
  #: inc/class-page-about.php:426
3049
- #: inc/class-page-about.php:428
3050
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3051
  msgstr "Par défaut tout est chiffré:connexions aux services externes, fichiers locaux et accès au répertoires."
3052
 
3053
  #: inc/class-page-about.php:434
3054
  #: inc/class-page-about.php:437
3055
- #: inc/class-page-about.php:436
3056
- #: inc/class-page-about.php:439
3057
  msgid "Cloud Support"
3058
  msgstr "Support du cloud"
3059
 
3060
  #: inc/class-page-about.php:438
3061
- #: inc/class-page-about.php:440
3062
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3063
  msgstr "BackWPup supporte plusieurs services cloud en paralèlle. Cela permet d'avoir des sauvegardes redondantes."
3064
 
3065
  #: inc/class-page-about.php:444
3066
- #: inc/class-page-about.php:446
3067
  msgid "Features / differences between Free and Pro"
3068
  msgstr "Fonctionnalités / différences entre la version gratuite et la version payante"
3069
 
3070
  #: inc/class-page-about.php:447
3071
- #: inc/class-page-about.php:449
3072
  msgid "Features"
3073
  msgstr "Fonctionnalités"
3074
 
3075
  #: inc/class-page-about.php:448
3076
- #: inc/class-page-about.php:450
3077
  msgid "FREE"
3078
  msgstr "GRATUIT"
3079
 
3080
  #: inc/class-page-about.php:449
3081
- #: inc/class-page-about.php:451
3082
  msgid "PRO"
3083
  msgstr "PRO"
3084
 
3085
  #: inc/class-page-about.php:452
3086
- #: inc/class-page-about.php:454
3087
  msgid "Complete database backup"
3088
  msgstr "Sauvegarde complète de la base de données"
3089
 
3090
  #: inc/class-page-about.php:457
3091
- #: inc/class-page-about.php:459
3092
  msgid "Complete file backup"
3093
  msgstr "Sauvegarde complète des fichiers"
3094
 
3095
  #: inc/class-page-about.php:462
3096
- #: inc/class-page-about.php:464
3097
  msgid "Database check"
3098
  msgstr "Vérification de la base de données"
3099
 
3100
  #: inc/class-page-about.php:467
3101
- #: inc/class-page-about.php:469
3102
  msgid "Data compression"
3103
  msgstr "Compression des données"
3104
 
3105
  #: inc/class-page-about.php:477
3106
- #: inc/class-page-about.php:479
3107
  msgid "List of installed plugins"
3108
  msgstr "Liste des extensions installées"
3109
 
3110
  #: inc/class-page-about.php:482
3111
- #: inc/class-page-about.php:484
3112
  msgid "Backup archives management"
3113
  msgstr "Gestion des archives de sauvegarde"
3114
 
3115
  #: inc/class-page-about.php:487
3116
- #: inc/class-page-about.php:489
3117
  msgid "Log file management"
3118
  msgstr "Gestion des fichiers journaux"
3119
 
3120
  #: inc/class-page-about.php:492
3121
- #: inc/class-page-about.php:494
3122
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3123
  msgstr "Démarer les opérations par WP-Cron, URL, système, administration ou WP-CLI"
3124
 
3125
  #: inc/class-page-about.php:497
3126
- #: inc/class-page-about.php:499
3127
  msgid "Log report via email"
3128
  msgstr "Raport par courriel des fichiers journaux"
3129
 
3130
  #: inc/class-page-about.php:502
3131
- #: inc/class-page-about.php:504
3132
  msgid "Backup to Microsoft Azure"
3133
  msgstr "Sauvegarder vers Microsoft Azure"
3134
 
3135
  #: inc/class-page-about.php:507
3136
- #: inc/class-page-about.php:509
3137
  msgid "Backup as email"
3138
  msgstr "Sauvegarder vers E-mail"
3139
 
3140
  #: inc/class-page-about.php:512
3141
- #: inc/class-page-about.php:514
3142
  #, fuzzy
3143
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3144
  msgstr "Sauvegarde vers le service S3 <small>(Amazon, Google Storage, Hosteurope et plus)</small>"
3145
 
3146
  #: inc/class-page-about.php:527
3147
- #: inc/class-page-about.php:529
3148
  msgid "Backup to FTP server"
3149
  msgstr "Sauvegarder vers serveur FTP"
3150
 
3151
  #: inc/class-page-about.php:532
3152
- #: inc/class-page-about.php:534
3153
  msgid "Backup to your web space"
3154
  msgstr "Sauvegarder vers votre espace Web"
3155
 
3156
  #: inc/class-page-about.php:542
3157
  #: inc/pro/class-pro.php:112
 
3158
  #: inc/Pro/class-pro.php:152
3159
- #: inc/class-page-about.php:544
3160
  msgid "Backup to Google Drive"
3161
  msgstr "Sauvegarde vers Google Drive"
3162
 
3163
  #: inc/class-page-about.php:547
3164
  #: inc/pro/class-pro.php:93
 
3165
  #: inc/Pro/class-pro.php:131
3166
- #: inc/class-page-about.php:549
3167
  msgid "Backup to Amazon Glacier"
3168
  msgstr "Sauvegarde vers Amazon Glacier"
3169
 
3170
  #: inc/class-page-about.php:552
3171
- #: inc/class-page-about.php:554
3172
  msgid "Custom API keys for DropBox and SugarSync"
3173
  msgstr "Clé d'API pour DropBox et SugarSync"
3174
 
3175
  #: inc/class-page-about.php:557
3176
- #: inc/class-page-about.php:559
3177
  msgid "XML database backup as PHPMyAdmin schema"
3178
  msgstr "Sauvegarde de la base de données en XML comme un schéma pour PHPMyAdmin"
3179
 
3180
  #: inc/class-page-about.php:562
3181
- #: inc/class-page-about.php:564
3182
  msgid "Database backup as mysqldump per command line"
3183
  msgstr "Sauvegarde de la base de données au format mysqldump en ligne de commande"
3184
 
3185
  #: inc/class-page-about.php:567
3186
- #: inc/class-page-about.php:569
3187
  msgid "Database backup for additional MySQL databases"
3188
  msgstr "Sauvegarde pour des bases de données supplémentaire de type MySQL"
3189
 
3190
  #: inc/class-page-about.php:572
3191
- #: inc/class-page-about.php:574
3192
  msgid "Import and export job settings as XML"
3193
  msgstr "Enregistrer et charger les paramètres des opérations au format XML"
3194
 
3195
  #: inc/class-page-about.php:577
3196
- #: inc/class-page-about.php:579
3197
  msgid "Wizard for system tests"
3198
  msgstr "Assistant pour les tests systèmes"
3199
 
3200
  #: inc/class-page-about.php:582
3201
- #: inc/class-page-about.php:584
3202
  msgid "Wizard for scheduled backup jobs"
3203
  msgstr "Assistant pour la programation des opérations de sauvegarde"
3204
 
3205
  #: inc/class-page-about.php:587
3206
- #: inc/class-page-about.php:589
3207
  msgid "Wizard to import settings and backup jobs"
3208
  msgstr "Assistant pour le chargement des paramètres et des définitions des opérations"
3209
 
3210
  #: inc/class-page-about.php:592
3211
- #: inc/class-page-about.php:594
3212
  msgid "Differential backup of changed directories to Dropbox"
3213
  msgstr "Sauvegarde différentielle des répertoires modifiés vers Dropbox"
3214
 
3215
  #: inc/class-page-about.php:597
3216
- #: inc/class-page-about.php:599
3217
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3218
  msgstr "Sauvegarde différentielle des répertoires modifiés vers Rackspace Cloud"
3219
 
3220
  #: inc/class-page-about.php:602
3221
- #: inc/class-page-about.php:604
3222
  msgid "Differential backup of changed directories to S3"
3223
  msgstr "Sauvegarde différentielle des répertoires modifiés vers le service S3"
3224
 
3225
  #: inc/class-page-about.php:607
3226
- #: inc/class-page-about.php:609
3227
  msgid "Differential backup of changed directories to MS Azure"
3228
  msgstr "Sauvegarde différentielle des répertoires modifiés vers MS Azure"
3229
 
3230
  #: inc/class-page-about.php:612
3231
- #: inc/class-page-about.php:639
3232
  msgid "<strong>Premium support</strong>"
3233
  msgstr "<strong>Premium support</strong>"
3234
 
3235
  #: inc/class-page-about.php:617
3236
- #: inc/class-page-about.php:644
3237
  msgid "<strong>Automatic updates</strong>"
3238
  msgstr "<strong>Mise à jour automatique</strong>"
3239
 
3240
  #: inc/class-page-about.php:624
3241
- #: inc/class-page-about.php:651
3242
  msgid "GET PRO"
3243
  msgstr "Passer à la version PRO"
3244
 
@@ -3300,9 +3293,9 @@ msgstr ""
3300
  #: inc/class-page-logs.php:206
3301
  #: inc/class-page-backups.php:281
3302
  #: inc/class-page-backups.php:285
 
3303
  #: inc/class-page-settings.php:768
3304
  #: inc/class-page-settings.php:779
3305
- #: inc/class-page-logs.php:234
3306
  msgid "Download"
3307
  msgstr "Télécharger"
3308
 
@@ -3362,11 +3355,6 @@ msgctxt "Dashboard heading"
3362
  msgid "Restoring backups"
3363
  msgstr "Restauration d'une sauvegarde"
3364
 
3365
- #: inc/class-page-backwpup.php:77
3366
- #: inc/class-page-backwpup.php:86
3367
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3368
- msgstr "Avec une seule sauvegarde vous pouvez restaurer une installation. Utiliser un outil comme phpMyAdmin pour restaurer votre base de données à partir du fichier de sauvegarde."
3369
-
3370
  #: inc/class-page-backwpup.php:78
3371
  #: inc/class-page-backwpup.php:87
3372
  msgctxt "Dashboard heading"
@@ -3599,8 +3587,8 @@ msgstr "%1$s à %2$s"
3599
 
3600
  #: inc/class-page-editjob.php:328
3601
  #: inc/class-page-settings.php:117
3602
- #: inc/class-page-settings.php:214
3603
  #: inc/class-page-editjob.php:337
 
3604
  msgid "General"
3605
  msgstr "Général"
3606
 
@@ -3634,15 +3622,15 @@ msgstr "Taches de l'opération"
3634
 
3635
  #: inc/class-page-editjob.php:391
3636
  #: inc/pro/class-wizard-job.php:254
3637
- #: inc/Pro/class-wizard-job.php:254
3638
  #: inc/class-page-editjob.php:400
 
3639
  msgid "This job is a&#160;&hellip;"
3640
  msgstr "Cette opération est une &#160;&hellip;"
3641
 
3642
  #: inc/class-page-editjob.php:394
3643
  #: inc/pro/class-wizard-job.php:257
3644
- #: inc/Pro/class-wizard-job.php:257
3645
  #: inc/class-page-editjob.php:403
 
3646
  msgid "Job tasks"
3647
  msgstr "Taches de l'opération"
3648
 
@@ -3655,10 +3643,10 @@ msgstr "Paramètres de création des sauvegardes"
3655
  #: inc/class-page-editjob.php:420
3656
  #: inc/pro/class-wizard-job.php:402
3657
  #: inc/pro/class-wizard-job.php:405
3658
- #: inc/Pro/class-wizard-job.php:402
3659
- #: inc/Pro/class-wizard-job.php:405
3660
  #: inc/class-page-editjob.php:426
3661
  #: inc/class-page-editjob.php:429
 
 
3662
  msgid "Backup type"
3663
  msgstr "Type de sauvegarde"
3664
 
@@ -3669,8 +3657,8 @@ msgstr "Synchroniser fichier par fichier vers la destination"
3669
 
3670
  #: inc/class-page-editjob.php:428
3671
  #: inc/pro/class-wizard-job.php:413
3672
- #: inc/Pro/class-wizard-job.php:413
3673
  #: inc/class-page-editjob.php:437
 
3674
  msgid "Create a backup archive"
3675
  msgstr "Création de l'archive"
3676
 
@@ -3770,17 +3758,17 @@ msgstr "Format de l'archive"
3770
  #: inc/class-page-editjob.php:476
3771
  #: inc/pro/class-wizard-job.php:426
3772
  #: inc/pro/class-wizard-job.php:429
3773
- #: inc/Pro/class-wizard-job.php:426
3774
- #: inc/Pro/class-wizard-job.php:429
3775
  #: inc/class-page-editjob.php:481
3776
  #: inc/class-page-editjob.php:483
 
 
3777
  msgid "Zip"
3778
  msgstr "Zip"
3779
 
3780
  #: inc/class-page-editjob.php:479
3781
  #: inc/pro/class-wizard-job.php:433
3782
- #: inc/Pro/class-wizard-job.php:433
3783
  #: inc/class-page-editjob.php:486
 
3784
  msgid "Tar"
3785
  msgstr "Tar"
3786
 
@@ -3788,10 +3776,10 @@ msgstr "Tar"
3788
  #: inc/class-page-editjob.php:483
3789
  #: inc/pro/class-wizard-job.php:437
3790
  #: inc/pro/class-wizard-job.php:440
3791
- #: inc/Pro/class-wizard-job.php:437
3792
- #: inc/Pro/class-wizard-job.php:440
3793
  #: inc/class-page-editjob.php:488
3794
  #: inc/class-page-editjob.php:490
 
 
3795
  msgid "Tar GZip"
3796
  msgstr "Tar GZip"
3797
 
@@ -3807,10 +3795,10 @@ msgstr "Désactiver car les fonctions PHP ne sont pas disponibles."
3807
  #: inc/class-page-editjob.php:489
3808
  #: inc/pro/class-wizard-job.php:444
3809
  #: inc/pro/class-wizard-job.php:447
3810
- #: inc/Pro/class-wizard-job.php:444
3811
- #: inc/Pro/class-wizard-job.php:447
3812
  #: inc/class-page-editjob.php:494
3813
  #: inc/class-page-editjob.php:497
 
 
3814
  msgid "Tar BZip2"
3815
  msgstr "Tar BZip2"
3816
 
@@ -3938,9 +3926,9 @@ msgstr "avancés"
3938
  #: inc/class-page-editjob.php:650
3939
  #: inc/class-page-editjob.php:718
3940
  #: inc/pro/class-wizard-job.php:320
3941
- #: inc/Pro/class-wizard-job.php:320
3942
  #: inc/class-page-editjob.php:686
3943
  #: inc/class-page-editjob.php:754
 
3944
  msgid "Scheduler"
3945
  msgstr "Programmation"
3946
 
@@ -3948,121 +3936,121 @@ msgstr "Programmation"
3948
  #: inc/class-page-jobs.php:126
3949
  #: inc/class-page-logs.php:139
3950
  #: inc/pro/class-wizard-job.php:324
3951
- #: inc/Pro/class-wizard-job.php:324
3952
- #: inc/class-page-logs.php:166
3953
  #: inc/class-page-editjob.php:691
 
 
3954
  msgid "Type"
3955
  msgstr "Type"
3956
 
3957
  #: inc/class-page-editjob.php:660
3958
  #: inc/pro/class-wizard-job.php:330
3959
- #: inc/Pro/class-wizard-job.php:330
3960
  #: inc/class-page-editjob.php:696
 
3961
  msgid "Hour"
3962
  msgstr "Heure"
3963
 
3964
  #: inc/class-page-editjob.php:663
3965
  #: inc/pro/class-wizard-job.php:333
3966
- #: inc/Pro/class-wizard-job.php:333
3967
  #: inc/class-page-editjob.php:699
 
3968
  msgid "Minute"
3969
  msgstr "Minute"
3970
 
3971
  #: inc/class-page-editjob.php:667
3972
  #: inc/pro/class-wizard-job.php:337
3973
- #: inc/Pro/class-wizard-job.php:337
3974
  #: inc/class-page-editjob.php:703
 
3975
  msgid "monthly"
3976
  msgstr "Mensuelle"
3977
 
3978
  #: inc/class-page-editjob.php:669
3979
  #: inc/pro/class-wizard-job.php:339
3980
- #: inc/Pro/class-wizard-job.php:339
3981
  #: inc/class-page-editjob.php:705
 
3982
  msgid "on"
3983
  msgstr "le"
3984
 
3985
  #: inc/class-page-editjob.php:679
3986
  #: inc/pro/class-wizard-job.php:349
3987
- #: inc/Pro/class-wizard-job.php:349
3988
  #: inc/class-page-editjob.php:715
 
3989
  msgid "weekly"
3990
  msgstr "Hebdomadaire"
3991
 
3992
  #: inc/class-page-editjob.php:681
3993
  #: inc/class-page-editjob.php:788
3994
  #: inc/pro/class-wizard-job.php:351
3995
- #: inc/Pro/class-wizard-job.php:351
3996
  #: inc/class-page-editjob.php:717
3997
  #: inc/class-page-editjob.php:824
 
3998
  msgid "Sunday"
3999
  msgstr "Dimanche"
4000
 
4001
  #: inc/class-page-editjob.php:682
4002
  #: inc/class-page-editjob.php:789
4003
  #: inc/pro/class-wizard-job.php:352
4004
- #: inc/Pro/class-wizard-job.php:352
4005
  #: inc/class-page-editjob.php:718
4006
  #: inc/class-page-editjob.php:825
 
4007
  msgid "Monday"
4008
  msgstr "Lundi"
4009
 
4010
  #: inc/class-page-editjob.php:683
4011
  #: inc/class-page-editjob.php:790
4012
  #: inc/pro/class-wizard-job.php:353
4013
- #: inc/Pro/class-wizard-job.php:353
4014
  #: inc/class-page-editjob.php:719
4015
  #: inc/class-page-editjob.php:826
 
4016
  msgid "Tuesday"
4017
  msgstr "Mardi"
4018
 
4019
  #: inc/class-page-editjob.php:684
4020
  #: inc/class-page-editjob.php:791
4021
  #: inc/pro/class-wizard-job.php:354
4022
- #: inc/Pro/class-wizard-job.php:354
4023
  #: inc/class-page-editjob.php:720
4024
  #: inc/class-page-editjob.php:827
 
4025
  msgid "Wednesday"
4026
  msgstr "Mercredi"
4027
 
4028
  #: inc/class-page-editjob.php:685
4029
  #: inc/class-page-editjob.php:792
4030
  #: inc/pro/class-wizard-job.php:355
4031
- #: inc/Pro/class-wizard-job.php:355
4032
  #: inc/class-page-editjob.php:721
4033
  #: inc/class-page-editjob.php:828
 
4034
  msgid "Thursday"
4035
  msgstr "Jeudi"
4036
 
4037
  #: inc/class-page-editjob.php:686
4038
  #: inc/class-page-editjob.php:793
4039
  #: inc/pro/class-wizard-job.php:356
4040
- #: inc/Pro/class-wizard-job.php:356
4041
  #: inc/class-page-editjob.php:722
4042
  #: inc/class-page-editjob.php:829
 
4043
  msgid "Friday"
4044
  msgstr "Vendredi"
4045
 
4046
  #: inc/class-page-editjob.php:687
4047
  #: inc/class-page-editjob.php:794
4048
  #: inc/pro/class-wizard-job.php:357
4049
- #: inc/Pro/class-wizard-job.php:357
4050
  #: inc/class-page-editjob.php:723
4051
  #: inc/class-page-editjob.php:830
 
4052
  msgid "Saturday"
4053
  msgstr "Samedi"
4054
 
4055
  #: inc/class-page-editjob.php:697
4056
  #: inc/pro/class-wizard-job.php:367
4057
- #: inc/Pro/class-wizard-job.php:367
4058
  #: inc/class-page-editjob.php:733
 
4059
  msgid "daily"
4060
  msgstr "Quotidien"
4061
 
4062
  #: inc/class-page-editjob.php:707
4063
  #: inc/pro/class-wizard-job.php:377
4064
- #: inc/Pro/class-wizard-job.php:377
4065
  #: inc/class-page-editjob.php:743
 
4066
  msgid "hourly"
4067
  msgstr "Toutes les heures"
4068
 
@@ -4210,8 +4198,8 @@ msgstr "Dernière exécution"
4210
 
4211
  #: inc/class-page-jobs.php:172
4212
  #: inc/class-page-logs.php:200
4213
- #: inc/Pro/class-page-support.php:221
4214
  #: inc/class-page-logs.php:228
 
4215
  msgid "Job ID: %d"
4216
  msgstr "ID d'opération : %d"
4217
 
@@ -5043,14 +5031,17 @@ msgstr ""
5043
  #: inc/pro/class-wizard-job.php:17
5044
  #: inc/pro/class-wizard-jobimport.php:16
5045
  #: inc/pro/class-wizard-systemtest.php:16
5046
- #: inc/Pro/class-wizard-jobimport.php:16
5047
- #: inc/Pro/class-wizard-job.php:17
5048
- #: inc/Pro/class-wizard-systemtest.php:27
5049
  #: inc/class-admin.php:510
5050
  #: inc/class-admin.php:531
 
 
 
 
 
5051
  #: inc/class-page-settings.php:1123
5052
- #: inc/class-page-about.php:651
5053
- #: inc/class-job.php:412
 
5054
  msgid "http://backwpup.com"
5055
  msgstr "http://backwpup.com"
5056
 
@@ -5063,61 +5054,59 @@ msgstr "http://backwpup.com"
5063
  #: inc/pro/class-wizard-job.php:19
5064
  #: inc/pro/class-wizard-jobimport.php:18
5065
  #: inc/pro/class-wizard-systemtest.php:18
5066
- #: inc/Pro/class-wizard-jobimport.php:18
5067
  #: inc/Pro/class-wizard-job.php:19
 
5068
  #: inc/Pro/class-wizard-systemtest.php:29
5069
  msgid "http://inpsyde.com"
5070
  msgstr ""
5071
 
5072
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5073
- #: inc/class-destination-ftp-downloader.php:72
5074
- #: inc/class-destination-dropbox-downloader.php:72
5075
- #: inc/class-destination-s3-downloader.php:83
5076
- msgid "Could not write data to file."
5077
  msgstr ""
5078
 
5079
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5080
- #: inc/class-destination-ftp-downloader.php:126
5081
- #: inc/class-destination-folder-downloader.php:137
5082
- #: inc/class-destination-dropbox-downloader.php:104
5083
- #: inc/class-destination-s3-downloader.php:112
5084
- msgid "File could not be opened for writing."
5085
  msgstr ""
5086
 
5087
- #: inc/Pro/class-destination-s3.php:63
5088
- #: inc/class-destination-s3.php:1134
5089
- msgid "Amazon S3: EU (London)"
5090
  msgstr ""
5091
 
5092
- #: inc/Pro/class-pro.php:285
5093
- #: inc/Pro/class-pro.php:286
5094
- #: inc/class-page-backups.php:293
5095
- #: views/pro/restore/steps/step4_top.php:2
5096
- msgid "Restore"
5097
  msgstr ""
5098
 
5099
- #: inc/class-system-tests-runner.php:77
5100
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5101
  msgstr ""
5102
 
5103
- #: inc/class-system-tests-runner.php:88
5104
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5105
  msgstr ""
5106
 
5107
- #: inc/class-system-tests-runner.php:100
5108
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5109
  msgstr ""
5110
 
5111
- #: inc/class-system-tests-runner.php:193
5112
- msgid "Yeah!"
5113
  msgstr ""
5114
 
5115
- #: inc/class-system-tests-runner.php:261
5116
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5117
  msgstr ""
5118
 
5119
- #: inc/class-destination-ftp-downloader.php:108
5120
- msgid "Cannot open FTP file for download."
 
 
 
 
5121
  msgstr ""
5122
 
5123
  #: inc/class-destination-folder-downloader.php:64
@@ -5137,10 +5126,133 @@ msgstr ""
5137
  msgid "%s is a directory not a file."
5138
  msgstr ""
5139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5140
  #: inc/class-destination-s3.php:102
5141
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5142
  msgstr ""
5143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5144
  #: inc/class-page-backups.php:408
5145
  msgid "&laquo; Go back"
5146
  msgstr ""
@@ -5183,21 +5295,35 @@ msgstr ""
5183
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5184
  msgstr ""
5185
 
5186
- #: inc/class-create-archive.php:114
5187
- msgid "Functions for bz2 compression not available."
 
5188
  msgstr ""
5189
 
5190
- #: inc/class-create-archive.php:311
5191
- msgid "File name cannot be empty."
5192
  msgstr ""
5193
 
5194
- #: inc/class-create-archive.php:741
5195
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5196
  msgstr ""
5197
 
5198
- #. translators: $1 is the filename to add into the archive.
5199
- #: inc/class-create-archive.php:996
5200
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5201
  msgstr ""
5202
 
5203
  #: inc/class-page-settings.php:39
@@ -5410,127 +5536,24 @@ msgstr ""
5410
  msgid "BackWPup maximum script execution time"
5411
  msgstr ""
5412
 
5413
- #: inc/class-download-file.php:135
5414
- msgid "Invalid file name, seems file include invalid characters."
5415
- msgstr ""
5416
-
5417
- #: inc/class-page-about.php:614
5418
- msgid "Restore from Folder"
5419
- msgstr ""
5420
-
5421
- #: inc/class-page-about.php:619
5422
- msgid "Restore from Google Drive"
5423
- msgstr ""
5424
-
5425
- #: inc/class-page-about.php:624
5426
- msgid "Restore from Amazon S3"
5427
- msgstr ""
5428
-
5429
- #: inc/class-page-about.php:629
5430
- msgid "Restore from Dropbox"
5431
- msgstr ""
5432
-
5433
- #: inc/class-page-about.php:634
5434
- msgid "Restore from FTP"
5435
- msgstr ""
5436
-
5437
- #: inc/class-destination-s3-downloader.php:76
5438
- msgid "Could not write data to file. Empty source file."
5439
- msgstr ""
5440
-
5441
- #: inc/class-job.php:332
5442
- msgid "Encrypts the archive"
5443
- msgstr ""
5444
-
5445
- #: inc/class-job.php:1689
5446
- msgid "No encryption key was provided. Aborting encryption."
5447
- msgstr ""
5448
-
5449
- #: inc/class-job.php:1696
5450
- msgid "%d. Trying to encrypt archive &hellip;"
5451
- msgstr ""
5452
-
5453
- #: inc/class-job.php:1706
5454
- msgid "Cannot open the archive for reading. Aborting encryption."
5455
- msgstr ""
5456
-
5457
- #: inc/class-job.php:1712
5458
- msgid "Cannot write the encrypted archive. Aborting encryption."
5459
- msgstr ""
5460
-
5461
- #: inc/class-job.php:1769
5462
- msgid "Encrypted %s of data."
5463
- msgstr ""
5464
-
5465
- #: inc/class-job.php:1773
5466
- msgid "Unable to delete unencrypted archive."
5467
- msgstr ""
5468
-
5469
- #: inc/class-job.php:1777
5470
- msgid "Unable to rename encrypted archive."
5471
- msgstr ""
5472
-
5473
- #: inc/class-job.php:1782
5474
- msgid "Archive has been successfully encrypted."
5475
- msgstr ""
5476
-
5477
- #: inc/class-job.php:2451
5478
- msgid "exec command is not active."
5479
- msgstr ""
5480
-
5481
- #: inc/class-job.php:2456
5482
- msgid "mysqldump binary not found."
5483
- msgstr ""
5484
-
5485
- #: inc/class-page-editjob.php:448
5486
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5487
- msgstr ""
5488
-
5489
- #: inc/class-page-editjob.php:452
5490
- msgid "Preview: "
5491
- msgstr ""
5492
-
5493
- #: inc/class-page-editjob.php:484
5494
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5495
- msgstr ""
5496
-
5497
- #: inc/class-page-editjob.php:495
5498
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5499
- msgstr ""
5500
-
5501
- #: inc/class-page-editjob.php:506
5502
- #: inc/class-page-editjob.php:511
5503
- #: inc/class-page-editjob.php:520
5504
- msgid "Encrypt Archive"
5505
- msgstr ""
5506
-
5507
- #: inc/class-page-editjob.php:524
5508
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5509
- msgstr ""
5510
-
5511
- #: inc/class-decrypter.php:56
5512
- msgid "Cannot open the archive for reading."
5513
- msgstr ""
5514
-
5515
- #: inc/class-decrypter.php:82
5516
- msgid "Cannot write the encrypted archive."
5517
  msgstr ""
5518
 
5519
- #: inc/class-decrypter.php:162
5520
- msgid "Private key invalid."
5521
  msgstr ""
5522
 
5523
- #: inc/class-destination-ftp.php:321
5524
- msgid "Could not log in to FTP server."
5525
  msgstr ""
5526
 
5527
- #: inc/class-destination-ftp.php:735
5528
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5529
  msgstr ""
5530
 
5531
- #: backwpup.php:573
5532
- #: vendor_dist/backwpup.php:573
5533
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5534
  msgstr ""
5535
 
5536
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Répertoire"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "DropBox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Sauvegarder vers DropBox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3 Service"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Sauvegarder vers RackSpace Cloud"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Sauvegarder vers SugarSync"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "Fichiers journaux"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "DropBox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "Login"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "Non authentifié!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "Créer un compte"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "Enregistré!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "Paramètres BackWPup"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "Suppression de fichier"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "Nombre de fichiers à garder dans le répertoire."
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Ne pas supprimer les fichies après l'envoi à la destination!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s de libre sur Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Pas d'authentification avec DropBox!"
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "Sauvegarde envoyée vers %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Le fichier chargé et le fichier en local n'ont pas la même taille."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr "Impossible d'envoyer la sauvegarde vers %s"
722
 
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
748
+ #: inc/class-destination-email.php:39
749
  #: inc/Pro/class-destination-email.php:16
750
  #: inc/Pro/class-destination-email.php:18
 
751
  msgid "Email address"
752
  msgstr "Adresse E-mail"
753
 
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
 
 
763
  #: inc/class-destination-email.php:52
764
  #: inc/class-destination-email.php:56
765
+ #: inc/Pro/class-destination-email.php:29
766
+ #: inc/Pro/class-destination-email.php:30
767
  msgid "Send test email"
768
  msgstr "Envoyer un courriel de test"
769
 
838
  #: inc/class-destination-email.php:98
839
  #: inc/class-destination-ftp.php:31
840
  #: inc/pro/class-destination-ftp.php:21
 
841
  #: inc/class-destination-email.php:124
842
  #: inc/class-destination-ftp.php:56
843
+ #: inc/Pro/class-destination-ftp.php:35
844
  msgid "Port:"
845
  msgstr "Port:"
846
 
859
  #: inc/class-page-settings.php:328
860
  #: inc/pro/class-jobtype-dbdump.php:157
861
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
862
  #: inc/class-destination-email.php:141
863
  #: inc/class-page-settings.php:837
864
+ #: inc/Pro/class-jobtype-dbdump.php:157
865
+ #: inc/Pro/class-jobtype-dbdump.php:205
866
  msgid "none"
867
  msgstr "aucune"
868
 
986
  #: inc/class-destination-ftp.php:87
987
  #: inc/class-page-logs.php:257
988
  #: inc/class-page-settings.php:466
 
989
  #: inc/class-destination-ftp.php:137
990
+ #: inc/class-page-logs.php:288
991
  msgid "seconds"
992
  msgstr "secondes"
993
 
1142
  #: inc/pro/class-destination-glacier.php:468
1143
  #: inc/pro/class-destination-rsc.php:226
1144
  #: inc/pro/class-destination-rsc.php:259
1145
+ #: inc/class-destination-ftp.php:673
1146
+ #: inc/class-destination-msazure.php:275
1147
  #: inc/class-destination-rsc.php:292
1148
+ #: inc/class-destination-s3.php:843
1149
+ #: inc/class-destination-s3.php:958
1150
  #: inc/Pro/class-destination-gdrive.php:905
1151
  #: inc/Pro/class-destination-glacier.php:470
1152
  #: inc/Pro/class-destination-rsc.php:228
1153
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1154
  msgid "Can not open source file for transfer."
1155
  msgstr ""
1156
 
1200
  #: inc/class-destination-rsc.php:105
1201
  #: inc/class-destination-s3.php:114
1202
  #: inc/pro/class-destination-glacier.php:96
 
1203
  #: inc/class-destination-s3.php:215
1204
+ #: inc/Pro/class-destination-glacier.php:96
1205
  msgid "File deletion"
1206
  msgstr "Suppression de fichier"
1207
 
1224
 
1225
  #: inc/class-destination-msazure.php:233
1226
  #: inc/pro/class-destination-msazure.php:144
 
1227
  #: inc/class-destination-msazure.php:237
1228
+ #: inc/Pro/class-destination-msazure.php:144
1229
  msgid "MS Azure container \"%s\" does not exist!"
1230
  msgstr "Le contenant Microsoft Azure \"%s\" n'existe pas!"
1231
 
1232
  #: inc/class-destination-msazure.php:237
1233
  #: inc/pro/class-destination-msazure.php:148
 
1234
  #: inc/class-destination-msazure.php:241
1235
+ #: inc/Pro/class-destination-msazure.php:148
1236
  msgid "Connected to MS Azure container \"%s\"."
1237
  msgstr "Connecté au contenant Microsoft Azure \"%s\"."
1238
 
1244
  #: inc/class-destination-msazure.php:292
1245
  #: inc/class-destination-msazure.php:348
1246
  #: inc/pro/class-destination-msazure.php:233
 
1247
  #: inc/class-destination-msazure.php:296
1248
  #: inc/class-destination-msazure.php:352
1249
+ #: inc/Pro/class-destination-msazure.php:233
1250
  msgid "Microsoft Azure API: %s"
1251
  msgstr "Microsoft Azure API: %s"
1252
 
1265
  #: inc/class-destination-msazure.php:444
1266
  #: inc/class-destination-s3.php:222
1267
  #: inc/pro/class-destination-glacier.php:166
 
1268
  #: inc/class-destination-msazure.php:448
1269
  #: inc/class-destination-s3.php:359
1270
+ #: inc/Pro/class-destination-glacier.php:166
1271
  msgid "Missing access key!"
1272
  msgstr "Clé d'accès manquante!"
1273
 
1413
 
1414
  #: inc/class-destination-s3.php:33
1415
  #: inc/pro/class-destination-s3.php:18
 
1416
  #: inc/class-destination-s3.php:54
1417
+ #: inc/Pro/class-destination-s3.php:32
1418
  msgid "Amazon S3 Region"
1419
  msgstr "Amazon S3 Région"
1420
 
1421
  #: inc/class-destination-s3.php:34
1422
  #: inc/pro/class-destination-s3.php:19
 
1423
  #: inc/class-destination-s3.php:1118
1424
+ #: inc/Pro/class-destination-s3.php:40
1425
  msgid "Amazon S3: US Standard"
1426
  msgstr "Amazon S3: US Standard"
1427
 
1428
  #: inc/class-destination-s3.php:35
1429
  #: inc/pro/class-destination-s3.php:20
 
1430
  #: inc/class-destination-s3.php:1122
1431
+ #: inc/Pro/class-destination-s3.php:45
1432
  msgid "Amazon S3: US West (Northern California)"
1433
  msgstr "Amazon S3 : Ouest des Etats Unis (Nord de la Californie)"
1434
 
1435
  #: inc/class-destination-s3.php:36
1436
  #: inc/pro/class-destination-s3.php:21
 
1437
  #: inc/class-destination-s3.php:1126
1438
+ #: inc/Pro/class-destination-s3.php:53
1439
  msgid "Amazon S3: US West (Oregon)"
1440
  msgstr "Amazon S3: Ouest des Etats Unis (Oregon)"
1441
 
1442
  #: inc/class-destination-s3.php:37
1443
  #: inc/pro/class-destination-s3.php:22
 
1444
  #: inc/class-destination-s3.php:1130
1445
+ #: inc/Pro/class-destination-s3.php:58
1446
  msgid "Amazon S3: EU (Ireland)"
1447
  msgstr "Amazon S3: Europe (Irelande)"
1448
 
1449
  #: inc/class-destination-s3.php:38
1450
  #: inc/pro/class-destination-s3.php:23
 
1451
  #: inc/class-destination-s3.php:1138
1452
+ #: inc/Pro/class-destination-s3.php:68
1453
  msgid "Amazon S3: EU (Germany)"
1454
  msgstr "Amazon S3: Europe (Allemagne)"
1455
 
1456
  #: inc/class-destination-s3.php:39
1457
  #: inc/pro/class-destination-s3.php:24
 
1458
  #: inc/class-destination-s3.php:1142
1459
+ #: inc/Pro/class-destination-s3.php:73
1460
  #, fuzzy
1461
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1462
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1463
 
1464
  #: inc/class-destination-s3.php:40
1465
  #: inc/pro/class-destination-s3.php:25
 
1466
  #: inc/class-destination-s3.php:1146
1467
+ #: inc/Pro/class-destination-s3.php:78
1468
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1469
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1470
 
1471
  #: inc/class-destination-s3.php:41
1472
  #: inc/pro/class-destination-s3.php:26
 
1473
  #: inc/class-destination-s3.php:1150
1474
+ #: inc/Pro/class-destination-s3.php:83
1475
  #, fuzzy
1476
  msgid "Amazon S3: Asia Pacific (Seoul)"
1477
  msgstr "Amazon S3: Asie et pacifique (Sydney)"
1478
 
1479
  #: inc/class-destination-s3.php:42
1480
  #: inc/pro/class-destination-s3.php:27
 
1481
  #: inc/class-destination-s3.php:1154
1482
+ #: inc/Pro/class-destination-s3.php:88
1483
  msgid "Amazon S3: Asia Pacific (Singapore)"
1484
  msgstr "Amazon S3: Asie et pacifique (Singapore)"
1485
 
1486
  #: inc/class-destination-s3.php:43
1487
  #: inc/pro/class-destination-s3.php:28
 
1488
  #: inc/class-destination-s3.php:1158
1489
+ #: inc/Pro/class-destination-s3.php:93
1490
  msgid "Amazon S3: Asia Pacific (Sydney)"
1491
  msgstr "Amazon S3: Asie et pacifique (Sydney)"
1492
 
1493
  #: inc/class-destination-s3.php:44
1494
  #: inc/pro/class-destination-s3.php:29
 
1495
  #: inc/class-destination-s3.php:1162
1496
+ #: inc/Pro/class-destination-s3.php:98
1497
  msgid "Amazon S3: South America (Sao Paulo)"
1498
  msgstr "Amazon S3: Amérique du sud (Sao Paulo)"
1499
 
1500
  #: inc/class-destination-s3.php:45
1501
  #: inc/pro/class-destination-s3.php:30
 
1502
  #: inc/class-destination-s3.php:1166
1503
+ #: inc/Pro/class-destination-s3.php:103
1504
  msgid "Amazon S3: China (Beijing)"
1505
  msgstr "Amazon S3: China (Beijing)"
1506
 
1507
  #: inc/class-destination-s3.php:46
1508
  #: inc/pro/class-destination-s3.php:31
 
1509
  #: inc/class-destination-s3.php:1170
1510
+ #: inc/Pro/class-destination-s3.php:108
1511
  msgid "Google Storage: EU"
1512
  msgstr ""
1513
 
1514
  #: inc/class-destination-s3.php:47
1515
  #: inc/pro/class-destination-s3.php:32
 
1516
  #: inc/class-destination-s3.php:1174
1517
+ #: inc/Pro/class-destination-s3.php:113
1518
  msgid "Google Storage: USA"
1519
  msgstr ""
1520
 
1521
  #: inc/class-destination-s3.php:48
1522
  #: inc/pro/class-destination-s3.php:33
 
1523
  #: inc/class-destination-s3.php:1178
1524
+ #: inc/Pro/class-destination-s3.php:118
1525
  msgid "Google Storage: Asia"
1526
  msgstr ""
1527
 
1528
  #: inc/class-destination-s3.php:49
1529
  #: inc/pro/class-destination-s3.php:34
 
1530
  #: inc/class-destination-s3.php:1182
1531
+ #: inc/Pro/class-destination-s3.php:123
1532
  msgid "Dream Host Cloud Storage"
1533
  msgstr "Dream Host Cloud Storage"
1534
 
1544
 
1545
  #: inc/class-destination-s3.php:65
1546
  #: inc/pro/class-destination-glacier.php:54
 
1547
  #: inc/class-destination-s3.php:121
1548
+ #: inc/Pro/class-destination-glacier.php:54
1549
  msgid "Access Key"
1550
  msgstr "Clé d'accès"
1551
 
1552
  #: inc/class-destination-s3.php:72
1553
  #: inc/pro/class-destination-glacier.php:61
 
1554
  #: inc/class-destination-s3.php:135
1555
+ #: inc/Pro/class-destination-glacier.php:61
1556
  msgid "Secret Key"
1557
  msgstr "Clé secrète"
1558
 
1620
 
1621
  #: inc/class-destination-s3.php:224
1622
  #: inc/pro/class-destination-glacier.php:168
 
1623
  #: inc/class-destination-s3.php:361
1624
+ #: inc/Pro/class-destination-glacier.php:168
1625
  msgid "Missing secret access key!"
1626
  msgstr "Clé secrète manquante!"
1627
 
1637
 
1638
  #: inc/class-destination-s3.php:348
1639
  #: inc/pro/class-destination-s3.php:147
 
1640
  #: inc/class-destination-s3.php:520
1641
+ #: inc/Pro/class-destination-s3.php:285
1642
  msgid " %s is not a valid bucket name."
1643
  msgstr "%s n'estpas un nom de panier correct."
1644
 
1648
  #: inc/class-destination-s3.php:610
1649
  #: inc/class-destination-s3.php:670
1650
  #: inc/pro/class-destination-s3.php:337
 
1651
  #: inc/class-destination-s3.php:570
1652
  #: inc/class-destination-s3.php:868
1653
  #: inc/class-destination-s3.php:936
1654
  #: inc/class-destination-s3.php:995
1655
  #: inc/class-destination-s3.php:1006
1656
+ #: inc/Pro/class-destination-s3.php:623
1657
  msgid "S3 Service API: %s"
1658
  msgstr "S3 Service API: %s"
1659
 
1664
 
1665
  #: inc/class-destination-s3.php:470
1666
  #: inc/pro/class-destination-s3.php:188
 
1667
  #: inc/class-destination-s3.php:803
1668
+ #: inc/Pro/class-destination-s3.php:383
1669
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1670
  msgstr "Connecté au panier S3 \"%1$s\" dans %2$s"
1671
 
1672
  #: inc/class-destination-s3.php:473
1673
  #: inc/pro/class-destination-s3.php:191
 
1674
  #: inc/class-destination-s3.php:808
1675
+ #: inc/Pro/class-destination-s3.php:391
1676
  msgid "S3 Bucket \"%s\" does not exist!"
1677
  msgstr "Panier S3 \"%s\" n'existe pas!"
1678
 
1693
 
1694
  #: inc/class-destination-s3.php:601
1695
  #: inc/pro/class-destination-glacier.php:444
 
1696
  #: inc/class-destination-s3.php:972
1697
+ #: inc/Pro/class-destination-glacier.php:446
1698
  msgid "Backup transferred to %s."
1699
  msgstr "Sauvegarde envoyée vers %s."
1700
 
1734
  #: inc/pro/class-destination-ftp.php:29
1735
  #: inc/pro/class-destination-sugarsync.php:20
1736
  #: inc/pro/class-jobtype-dbdump.php:126
 
1737
  #: inc/Pro/class-destination-ftp.php:47
1738
  #: inc/Pro/class-destination-sugarsync.php:20
1739
+ #: inc/Pro/class-jobtype-dbdump.php:126
1740
  msgid "Password:"
1741
  msgstr "Mot de passe:"
1742
 
1914
  msgstr "Aide sur les opérations BackWPup"
1915
 
1916
  #: inc/class-job.php:263
1917
+ #: inc/class-job.php:297
1918
  msgid "Starting job"
1919
  msgstr "Lacement de l'opération"
1920
 
1921
  #: inc/class-job.php:278
1922
+ #: inc/class-job.php:314
1923
  msgid "Job Start"
1924
  msgstr "Début de l'opération"
1925
 
1926
  #: inc/class-job.php:298
1927
+ #: inc/class-job.php:334
1928
  msgid "Creates manifest file"
1929
  msgstr "Création du fichier manifeste"
1930
 
1931
  #: inc/class-job.php:320
1932
+ #: inc/class-job.php:356
1933
  msgid "Creates archive"
1934
  msgstr "Créer une archive"
1935
 
1936
  #: inc/class-job.php:360
1937
+ #: inc/class-job.php:403
1938
  msgid "End of Job"
1939
  msgstr "Fin de l'opération"
1940
 
1941
  #: inc/class-job.php:377
1942
+ #: inc/class-job.php:428
1943
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1944
  msgstr "Fichier journal BackWPup pour %1$s de %2$s à %3$s"
1945
 
1946
  #: inc/class-job.php:394
1947
+ #: inc/class-job.php:456
1948
  msgctxt "Plugin name; Plugin Version; plugin url"
1949
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1950
  msgstr ""
1951
 
1952
  #: inc/class-job.php:395
1953
+ #: inc/class-job.php:462
1954
  msgctxt "WordPress Version; Blog url"
1955
  msgid "[INFO] WordPress %1$s on %2$s"
1956
  msgstr ""
1957
 
1958
  #: inc/class-job.php:396
1959
+ #: inc/class-job.php:465
1960
  msgid "Normal"
1961
  msgstr ""
1962
 
1963
  #: inc/class-job.php:399
1964
+ #: inc/class-job.php:468
1965
  msgid "Debug"
1966
  msgstr ""
1967
 
1968
  #: inc/class-job.php:402
1969
+ #: inc/class-job.php:471
1970
  msgid "(translated)"
1971
  msgstr ""
1972
 
1973
  #: inc/class-job.php:404
1974
+ #: inc/class-job.php:474
1975
  #, fuzzy
1976
  msgid "[INFO] Log Level: %1$s %2$s"
1977
  msgstr "[INFO] Version curl : %1$s; %2$s"
1978
 
1979
  #: inc/class-job.php:409
1980
+ #: inc/class-job.php:480
1981
  msgid "[INFO] BackWPup job: %1$s"
1982
  msgstr ""
1983
 
1984
  #: inc/class-job.php:412
1985
+ #: inc/class-job.php:484
1986
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1987
  msgstr ""
1988
 
1990
  #: inc/class-page-backwpup.php:323
1991
  #: inc/class-page-jobs.php:282
1992
  #: inc/class-page-jobs.php:291
1993
+ #: inc/class-job.php:500
1994
  msgid "Not scheduled!"
1995
  msgstr "Pas de programmation !"
1996
 
1997
  #: inc/class-job.php:430
1998
  #: inc/class-job.php:440
1999
+ #: inc/class-job.php:507
2000
+ #: inc/class-job.php:519
2001
  msgid "[INFO] Cron: %s; Next: %s "
2002
  msgstr ""
2003
 
2004
  #: inc/class-job.php:433
2005
+ #: inc/class-job.php:511
2006
  msgid "[INFO] BackWPup job start with link is active"
2007
  msgstr "[INFO] Opération BackWPup démarrée par URL"
2008
 
2009
  #: inc/class-job.php:435
2010
+ #: inc/class-job.php:513
2011
  msgid "[INFO] BackWPup job start with EasyCron.com"
2012
  msgstr ""
2013
 
2014
  #: inc/class-job.php:443
2015
+ #: inc/class-job.php:523
2016
  msgid "[INFO] BackWPup no automatic job start configured"
2017
  msgstr "[INFO] Pas d'opération BackWPup automatique de configurée"
2018
 
2019
  #: inc/class-job.php:447
2020
+ #: inc/class-job.php:527
2021
  msgid "[INFO] BackWPup job started from wp-cron"
2022
  msgstr "[INFO] Opération BackWPup démarrée par wp-cron"
2023
 
2024
  #: inc/class-job.php:449
2025
+ #: inc/class-job.php:529
2026
  msgid "[INFO] BackWPup job started manually"
2027
  msgstr "[INFO] Opération BackWPup démarrée manuellement"
2028
 
2029
  #: inc/class-job.php:451
2030
+ #: inc/class-job.php:531
2031
  msgid "[INFO] BackWPup job started from external url"
2032
  msgstr "[INFO] Opération BackWPup démarrée par une URL externe"
2033
 
2034
  #: inc/class-job.php:453
2035
+ #: inc/class-job.php:533
2036
  msgid "[INFO] BackWPup job started form commandline interface"
2037
  msgstr "[INFO] Opération BackWPup démarrée par l'interface en ligne de commande"
2038
 
2039
  #: inc/class-job.php:462
2040
+ #: inc/class-job.php:544
2041
  msgid "[INFO] PHP ver.:"
2042
  msgstr "[INFO] version PHP:"
2043
 
2044
  #: inc/class-job.php:463
2045
+ #: inc/class-job.php:548
2046
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2047
  msgstr "[INFO] Le temps d’exécution maximum d'un script est %1$d secondes"
2048
 
2049
  #: inc/class-job.php:467
2050
+ #: inc/class-job.php:555
2051
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2052
  msgstr "[INFO] Le temps de reprise du script est configuré à %1$d secondes"
2053
 
2054
  #: inc/class-job.php:470
2055
+ #: inc/class-job.php:561
2056
  msgid "[INFO] MySQL ver.: %s"
2057
  msgstr "[INFO] Version MySQL: %s"
2058
 
2059
  #: inc/class-job.php:472
2060
+ #: inc/class-job.php:565
2061
  msgid "[INFO] Web Server: %s"
2062
  msgstr "[INFO] Serveur Web : %s"
2063
 
2064
  #: inc/class-job.php:476
2065
+ #: inc/class-job.php:571
2066
  msgid "[INFO] curl ver.: %1$s; %2$s"
2067
  msgstr "[INFO] Version curl : %1$s; %2$s"
2068
 
2069
  #: inc/class-job.php:478
2070
+ #: inc/class-job.php:576
2071
  msgid "[INFO] Temp folder is: %s"
2072
  msgstr "[INFO] Répertoire temporaire : %s"
2073
 
2074
  #: inc/class-job.php:485
2075
+ #: inc/class-job.php:584
2076
  msgid "[INFO] Logfile is: %s"
2077
  msgstr "[INFO] Le fichier journal est : %s"
2078
 
2079
  #: inc/class-job.php:492
2080
+ #: inc/class-job.php:591
2081
  msgid "[INFO] Backup file is: %s"
2082
  msgstr "[INFO] Fichier sauvegarde : %s"
2083
 
2084
  #: inc/class-job.php:494
2085
+ #: inc/class-job.php:594
2086
  msgid "[INFO] Backup type is: %s"
2087
  msgstr "[INFO] Type de sauvegarde : %s"
2088
 
2089
  #: inc/class-job.php:502
2090
+ #: inc/class-job.php:603
2091
  msgid "Could not write log file"
2092
  msgstr ""
2093
 
2094
  #: inc/class-job.php:514
2095
+ #: inc/class-job.php:616
2096
  msgid "No destination correctly defined for backup! Please correct job settings."
2097
  msgstr "Pas de cible définie pour la sauvegarde! Veuillez corriger les paramètres de l'opération."
2098
 
2099
  #: inc/class-job.php:644
2100
+ #: inc/class-job.php:718
2101
  msgid "Cannot write progress to working file. Job will be aborted."
2102
  msgstr "Impossible d'écrire l'avancement dans le fichier de travail. L'opération va être arrétée."
2103
 
2104
  #: inc/class-job.php:716
2105
  #: inc/class-page-jobs.php:786
2106
+ #: inc/class-job.php:793
2107
  msgid "WARNING:"
2108
  msgstr "AVERTISSEMENT :"
2109
 
2110
  #: inc/class-job.php:725
2111
  #: inc/class-page-jobs.php:784
2112
+ #: inc/class-job.php:802
2113
  msgid "ERROR:"
2114
  msgstr "ERREUR:"
2115
 
2116
  #: inc/class-job.php:729
2117
+ #: inc/class-job.php:806
2118
  msgid "DEPRECATED:"
2119
  msgstr "DÉPRÉCIÉE :"
2120
 
2121
  #: inc/class-job.php:732
2122
+ #: inc/class-job.php:809
2123
  msgid "STRICT NOTICE:"
2124
  msgstr "SIMPLE NOTE :"
2125
 
2126
  #: inc/class-job.php:737
2127
+ #: inc/class-job.php:814
2128
  msgid "RECOVERABLE ERROR:"
2129
  msgstr "ERREUR RÉCUPÉRABLE :"
2130
 
2131
  #: inc/class-job.php:985
2132
+ #: inc/class-job.php:1091
2133
  msgid "Aborted by user!"
2134
  msgstr "Arrêté par l'utilisateur!"
2135
 
2136
  #: inc/class-job.php:1019
2137
+ #: inc/class-job.php:1129
2138
  msgid "One old log deleted"
2139
  msgid_plural "%d old logs deleted"
2140
  msgstr[0] "Un ancien fichier de trace supprimé"
2142
 
2143
  #: inc/class-job.php:1026
2144
  #: inc/class-page-jobs.php:784
2145
+ #: inc/class-job.php:1141
2146
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2147
  msgstr "L'opération s'est terminée avec des erreurs en %ssecondes. Vous devez corriger les erreurs pour une exécution correcte."
2148
 
2149
  #: inc/class-job.php:1028
2150
+ #: inc/class-job.php:1150
2151
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2152
  msgstr "L'opération s'est terminée avec des avertissements en %s seconds. Merci de les corriger pour une exécution correcte."
2153
 
2154
  #: inc/class-job.php:1030
2155
  #: inc/class-page-jobs.php:788
2156
+ #: inc/class-job.php:1158
2157
  msgid "Job done in %s seconds."
2158
  msgstr "Opération effectuée en %s secondes."
2159
 
2160
  #: inc/class-job.php:1074
2161
+ #: inc/class-job.php:1212
2162
  msgid "SUCCESSFUL"
2163
  msgstr "SUCCES"
2164
 
2165
  #: inc/class-job.php:1076
2166
+ #: inc/class-job.php:1214
2167
  msgid "WARNING"
2168
  msgstr "AVERTISSEMENT"
2169
 
2170
  #: inc/class-job.php:1079
2171
+ #: inc/class-job.php:1217
2172
  msgid "ERROR"
2173
  msgstr "ERREUR"
2174
 
2175
  #: inc/class-job.php:1082
2176
+ #: inc/class-job.php:1221
2177
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2178
  msgstr "[%3$s] trace BackWPup%1$s: %2$s"
2179
 
2180
  #: inc/class-job.php:1188
2181
+ #: inc/class-job.php:1341
2182
  msgid "Restart after %1$d seconds."
2183
  msgstr "Relancer après %1$d secondes."
2184
 
2185
  #: inc/class-job.php:1190
2186
+ #: inc/class-job.php:1343
2187
  #, fuzzy
2188
  msgid "Restart after getting signal."
2189
  msgstr "Relancer après %1$d secondes."
2190
 
2191
  #: inc/class-job.php:1363
2192
+ #: inc/class-job.php:1534
2193
  msgid "Job restarts due to inactivity for more than 5 minutes."
2194
  msgstr "Job restarts due to inactivity for more than 5 minutes."
2195
 
2196
  #: inc/class-job.php:1461
2197
+ #: inc/class-job.php:1636
2198
  msgid "Step aborted: too many attempts!"
2199
  msgstr "Étape abandonnée : trop de tentatives !"
2200
 
2201
  #: inc/class-job.php:1532
2202
+ #: inc/class-job.php:1716
2203
  msgid "%d. Trying to create backup archive &hellip;"
2204
  msgstr "%d. Tentative de création de l'archive..."
2205
 
2206
  #: inc/class-job.php:1540
2207
+ #: inc/class-job.php:1729
2208
  msgctxt "Archive compression method"
2209
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2210
  msgstr "Compression des fichiers en %s. Merci d'être patient, cela peut prendre un certain temps."
2211
 
2212
  #: inc/class-job.php:1547
2213
+ #: inc/class-job.php:1742
2214
  msgid "Adding Extra files to Archive"
2215
  msgstr ""
2216
 
2217
  #: inc/class-job.php:1559
2218
  #: inc/class-job.php:1619
2219
+ #: inc/class-job.php:1754
2220
+ #: inc/class-job.php:1823
2221
  msgid "Cannot create backup archive correctly. Aborting creation."
2222
  msgstr "Impossible de créer la sauvegarde. L'opération est abandonnée."
2223
 
2224
  #: inc/class-job.php:1575
2225
+ #: inc/class-job.php:1772
2226
  msgid "Archiving Folder: %s"
2227
  msgstr ""
2228
 
2229
  #: inc/class-job.php:1629
2230
+ #: inc/class-job.php:1834
2231
  msgid "Backup archive created."
2232
  msgstr "Archive de sauvegarde créée."
2233
 
2234
  #: inc/class-job.php:1643
2235
+ #: inc/class-job.php:1849
2236
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2237
  msgstr ""
2238
 
2239
  #: inc/class-job.php:1646
2240
+ #: inc/class-job.php:1857
2241
  msgid "Archive size is %s."
2242
  msgstr "La taille de l'archive est de %s."
2243
 
2244
  #: inc/class-job.php:1649
2245
+ #: inc/class-job.php:1864
2246
  msgid "%1$d Files with %2$s in Archive."
2247
  msgstr "%1$d fichiers avec %2$s à sauvegarder"
2248
 
2249
  #: inc/class-job.php:1698
2250
+ #: inc/class-job.php:2059
2251
  #, fuzzy
2252
  msgctxt "Folder name"
2253
  msgid "Folder %s does not exist"
2254
  msgstr "Le répertoire %s n'existe pas"
2255
 
2256
  #: inc/class-job.php:1703
2257
+ #: inc/class-job.php:2067
2258
  #, fuzzy
2259
  msgctxt "Folder name"
2260
  msgid "Folder %s is not readable"
2261
  msgstr "Le répertoire \"%s\" n'est pas accessible! "
2262
 
2263
  #: inc/class-job.php:1725
2264
+ #: inc/class-job.php:2096
2265
  msgid "Link \"%s\" not following."
2266
  msgstr "Le lien \"%s\" n'a pas été suivi."
2267
 
2268
  #: inc/class-job.php:1727
2269
+ #: inc/class-job.php:2100
2270
  msgid "File \"%s\" is not readable!"
2271
  msgstr "Le fichier \"%s\" ne peut être lu!"
2272
 
2273
  #: inc/class-job.php:1731
2274
+ #: inc/class-job.php:2107
2275
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2276
  msgstr "La taille du fichier \"%s\" ne peut pas être lue. Le fichier est peut-être trop grand et il ne sera pas ajouté à la sauvegarde."
2277
 
2278
  #: inc/class-job.php:1814
2279
+ #: inc/class-job.php:2197
2280
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2281
  msgstr "%d. Tentative de créer un fichier manifeste&#160;&hellip;"
2282
 
2283
  #: inc/class-job.php:1870
2284
+ #: inc/class-job.php:2264
2285
  msgid "You may have noticed the manifest.json file in this archive."
2286
  msgstr "Vous avez noté la présence du manifeste .json dans la sauvegarde."
2287
 
2288
  #: inc/class-job.php:1871
2289
+ #: inc/class-job.php:2265
2290
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2291
  msgstr "le manifeste .json peut être nécessaire pour une restauration ultérieure de cette sauvegarde."
2292
 
2293
  #: inc/class-job.php:1872
2294
+ #: inc/class-job.php:2268
2295
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2296
  msgstr "Merci de laisser le manifeste .json non modifié et à la même place. En d'autres termes, vous pouvez l'ignorer."
2297
 
2298
  #: inc/class-job.php:1882
2299
+ #: inc/class-job.php:2282
2300
  msgid "Added manifest.json file with %1$s to backup file list."
2301
  msgstr "Ajout du fichier manifeste .json avec %1$s à la liste des fichiers de la sauvegarde."
2302
 
2303
  #: inc/class-job.php:1921
2304
+ #: inc/class-job.php:2324
2305
  msgid "Wrong BackWPup JobID"
2306
  msgstr "Erreur d'identification d'opération BackWPup"
2307
 
2308
  #: inc/class-job.php:1934
2309
+ #: inc/class-job.php:2337
2310
  msgid "A BackWPup job is already running"
2311
  msgstr "Une opération BackWPup est déjà en cours"
2312
 
2313
  #: inc/class-job.php:2302
2314
+ #: inc/class-job.php:2752
2315
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2316
  msgid "Hangup detected on controlling terminal or death of controlling process"
2317
  msgstr ""
2318
 
2319
  #: inc/class-job.php:2306
2320
+ #: inc/class-job.php:2759
2321
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2322
  msgid "Interrupt from keyboard"
2323
  msgstr ""
2324
 
2325
  #: inc/class-job.php:2310
2326
+ #: inc/class-job.php:2766
2327
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2328
  msgid "Quit from keyboard"
2329
  msgstr ""
2330
 
2331
  #: inc/class-job.php:2314
2332
+ #: inc/class-job.php:2773
2333
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2334
  msgid "Illegal Instruction"
2335
  msgstr ""
2336
 
2337
  #: inc/class-job.php:2318
2338
+ #: inc/class-job.php:2780
2339
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2340
  msgid "Abort signal from abort(3)"
2341
  msgstr ""
2342
 
2343
  #: inc/class-job.php:2322
2344
+ #: inc/class-job.php:2787
2345
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2346
  msgid "Bus error (bad memory access)"
2347
  msgstr ""
2348
 
2349
  #: inc/class-job.php:2326
2350
+ #: inc/class-job.php:2794
2351
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2352
  msgid "Floating point exception"
2353
  msgstr ""
2354
 
2355
  #: inc/class-job.php:2330
2356
+ #: inc/class-job.php:2801
2357
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2358
  msgid "Invalid memory reference"
2359
  msgstr ""
2360
 
2361
  #: inc/class-job.php:2334
2362
+ #: inc/class-job.php:2808
2363
  #, fuzzy
2364
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2365
  msgid "Termination signal"
2366
  msgstr "Destinations"
2367
 
2368
  #: inc/class-job.php:2338
2369
+ #: inc/class-job.php:2815
2370
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2371
  msgid "Stack fault on coprocessor"
2372
  msgstr ""
2373
 
2374
  #: inc/class-job.php:2342
2375
+ #: inc/class-job.php:2822
2376
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2377
  msgid "User-defined signal 1"
2378
  msgstr ""
2379
 
2380
  #: inc/class-job.php:2346
2381
+ #: inc/class-job.php:2829
2382
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2383
  msgid "User-defined signal 2"
2384
  msgstr ""
2385
 
2386
  #: inc/class-job.php:2350
2387
+ #: inc/class-job.php:2836
2388
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2389
  msgid "Urgent condition on socket"
2390
  msgstr ""
2391
 
2392
  #: inc/class-job.php:2354
2393
+ #: inc/class-job.php:2843
2394
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2395
  msgid "CPU time limit exceeded"
2396
  msgstr ""
2397
 
2398
  #: inc/class-job.php:2358
2399
+ #: inc/class-job.php:2850
2400
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2401
  msgid "File size limit exceeded"
2402
  msgstr ""
2403
 
2404
  #: inc/class-job.php:2362
2405
+ #: inc/class-job.php:2857
2406
  #, fuzzy
2407
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2408
  msgid "Power failure"
2409
  msgstr "FTP : Échec d'authentification!"
2410
 
2411
  #: inc/class-job.php:2366
2412
+ #: inc/class-job.php:2864
2413
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2414
  msgid "Bad argument to routine"
2415
  msgstr ""
2416
 
2417
  #: inc/class-job.php:2373
2418
+ #: inc/class-job.php:2876
2419
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2420
  msgstr ""
2421
 
2422
  #: inc/class-job.php:2407
2423
  #: inc/class-job.php:2420
2424
+ #: inc/class-job.php:2912
2425
+ #: inc/class-job.php:2925
2426
  msgid "System: %s"
2427
  msgstr ""
2428
 
2429
  #: inc/class-job.php:2435
2430
+ #: inc/class-job.php:2942
2431
  msgid "Exception caught in %1$s: %2$s"
2432
  msgstr "Exception trouvée dans %1$s: %2$s"
2433
 
2727
 
2728
  #: inc/class-jobtype-wpexp.php:14
2729
  #: inc/class-page-about.php:472
2730
+ #: inc/class-page-about.php:463
2731
  msgid "WordPress XML export"
2732
  msgstr "Export XML WordPress"
2733
 
2964
  msgstr "Nouvelle opération"
2965
 
2966
  #: inc/class-page-about.php:369
2967
+ #: inc/class-page-about.php:366
2968
  msgid "Welcome to BackWPup Pro"
2969
  msgstr "Bienvenue sur BackWPup Pro"
2970
 
2971
  #: inc/class-page-about.php:370
2972
  #: inc/class-page-backwpup.php:75
2973
+ #: inc/class-page-about.php:367
2974
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2975
  msgstr "Les assistants d'opération de BackWPup's permettent de définir les planifications et les "
2976
 
 
 
 
 
 
 
 
2977
  #: inc/class-page-about.php:372
2978
+ #: inc/class-page-about.php:369
2979
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2980
  msgstr "Prêt à <a href=\"%1$s\"> définir une opération</a>? Vous pouvez <a href=\"%2$s\">utilisez l'assistant</a> ou le mode expert."
2981
 
2982
  #: inc/class-page-about.php:382
2983
+ #: inc/class-page-about.php:376
2984
  msgid "Welcome to BackWPup"
2985
  msgstr "Bienvenue à BackWPup"
2986
 
2987
  #: inc/class-page-about.php:385
2988
+ #: inc/class-page-about.php:379
2989
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2990
  msgstr "Prêt à définir une opération de sauvegarde? Utilisez l'un des assistants pour définir ce que vous voulez sauvegarder."
2991
 
2992
  #: inc/class-page-about.php:398
2993
+ #: inc/class-page-about.php:389
2994
  msgid "Save your database"
2995
  msgstr "Sauvegarder votre base de données"
2996
 
2997
  #: inc/class-page-about.php:401
2998
+ #: inc/class-page-about.php:392
2999
  msgid "Save your database regularly"
3000
  msgstr "Sauvegarder votre base de données régulièrement"
3001
 
3002
  #: inc/class-page-about.php:402
3003
+ #: inc/class-page-about.php:393
3004
  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."
3005
  msgstr "Avec BackWPup vous pouvez définir une automatisation de la sauvegarde de vos bases de données. Avec un seul fichier de sauvegarde, vous pouvez restaurer votre base de données. Vous devez <a href=\"%s\">définir une opération de sauvegarde</a>, ainsi vous n'oublierez jamais . Il y a aussi une option pour réparer et optimiser la base de données après chaque sauvegarde."
3006
 
3007
  #: inc/class-page-about.php:407
3008
  #: inc/class-page-about.php:411
3009
+ #: inc/class-page-about.php:398
3010
+ #: inc/class-page-about.php:402
3011
  msgid "WordPress XML Export"
3012
  msgstr "Export WordPress XML"
3013
 
3014
  #: inc/class-page-about.php:408
3015
+ #: inc/class-page-about.php:399
3016
  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."
3017
  msgstr "Vous pouvez choisir le format interne d'export WordPress en plus ou seulement pour sauvegarder vos données. Cela fonctionne aussi dans les sauvegardes programmées. L'avantage en est : vous pouvez restaurer ces fichiers dans votre installation avec l'importateur WordPress."
3018
 
3019
  #: inc/class-page-about.php:416
3020
+ #: inc/class-page-about.php:407
3021
  msgid "Save all data from the webserver"
3022
  msgstr "Sauvegarder toutes les données depuis le serveur web"
3023
 
3024
  #: inc/class-page-about.php:419
3025
+ #: inc/class-page-about.php:410
3026
  msgid "Save all files"
3027
  msgstr "Sauvegarder tous les fichiers"
3028
 
3029
  #: inc/class-page-about.php:420
3030
+ #: inc/class-page-about.php:411
3031
  msgid "You can backup 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."
3032
  msgstr "Vous pouvez sauvegarder tous vos fichiers joints, ainsi que tous les fichiers systèmes, les extensions et les thémes dans un seul fichier. Vous pouvez <a href=\"%s\">créer une opération</a> pour mettre à jour votre sauvegarde avec uniquement les fichiers qui ont été modifiés (différentiel)"
3033
 
3034
  #: inc/class-page-about.php:425
3035
  #: inc/class-page-about.php:429
3036
+ #: inc/class-page-about.php:416
3037
+ #: inc/class-page-about.php:420
3038
  msgid "Security!"
3039
  msgstr "Sécurité!"
3040
 
3041
  #: inc/class-page-about.php:426
3042
+ #: inc/class-page-about.php:417
3043
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3044
  msgstr "Par défaut tout est chiffré:connexions aux services externes, fichiers locaux et accès au répertoires."
3045
 
3046
  #: inc/class-page-about.php:434
3047
  #: inc/class-page-about.php:437
3048
+ #: inc/class-page-about.php:425
3049
+ #: inc/class-page-about.php:428
3050
  msgid "Cloud Support"
3051
  msgstr "Support du cloud"
3052
 
3053
  #: inc/class-page-about.php:438
3054
+ #: inc/class-page-about.php:429
3055
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3056
  msgstr "BackWPup supporte plusieurs services cloud en paralèlle. Cela permet d'avoir des sauvegardes redondantes."
3057
 
3058
  #: inc/class-page-about.php:444
3059
+ #: inc/class-page-about.php:435
3060
  msgid "Features / differences between Free and Pro"
3061
  msgstr "Fonctionnalités / différences entre la version gratuite et la version payante"
3062
 
3063
  #: inc/class-page-about.php:447
3064
+ #: inc/class-page-about.php:438
3065
  msgid "Features"
3066
  msgstr "Fonctionnalités"
3067
 
3068
  #: inc/class-page-about.php:448
3069
+ #: inc/class-page-about.php:439
3070
  msgid "FREE"
3071
  msgstr "GRATUIT"
3072
 
3073
  #: inc/class-page-about.php:449
3074
+ #: inc/class-page-about.php:440
3075
  msgid "PRO"
3076
  msgstr "PRO"
3077
 
3078
  #: inc/class-page-about.php:452
3079
+ #: inc/class-page-about.php:443
3080
  msgid "Complete database backup"
3081
  msgstr "Sauvegarde complète de la base de données"
3082
 
3083
  #: inc/class-page-about.php:457
3084
+ #: inc/class-page-about.php:448
3085
  msgid "Complete file backup"
3086
  msgstr "Sauvegarde complète des fichiers"
3087
 
3088
  #: inc/class-page-about.php:462
3089
+ #: inc/class-page-about.php:453
3090
  msgid "Database check"
3091
  msgstr "Vérification de la base de données"
3092
 
3093
  #: inc/class-page-about.php:467
3094
+ #: inc/class-page-about.php:458
3095
  msgid "Data compression"
3096
  msgstr "Compression des données"
3097
 
3098
  #: inc/class-page-about.php:477
3099
+ #: inc/class-page-about.php:468
3100
  msgid "List of installed plugins"
3101
  msgstr "Liste des extensions installées"
3102
 
3103
  #: inc/class-page-about.php:482
3104
+ #: inc/class-page-about.php:473
3105
  msgid "Backup archives management"
3106
  msgstr "Gestion des archives de sauvegarde"
3107
 
3108
  #: inc/class-page-about.php:487
3109
+ #: inc/class-page-about.php:478
3110
  msgid "Log file management"
3111
  msgstr "Gestion des fichiers journaux"
3112
 
3113
  #: inc/class-page-about.php:492
3114
+ #: inc/class-page-about.php:483
3115
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3116
  msgstr "Démarer les opérations par WP-Cron, URL, système, administration ou WP-CLI"
3117
 
3118
  #: inc/class-page-about.php:497
3119
+ #: inc/class-page-about.php:488
3120
  msgid "Log report via email"
3121
  msgstr "Raport par courriel des fichiers journaux"
3122
 
3123
  #: inc/class-page-about.php:502
3124
+ #: inc/class-page-about.php:493
3125
  msgid "Backup to Microsoft Azure"
3126
  msgstr "Sauvegarder vers Microsoft Azure"
3127
 
3128
  #: inc/class-page-about.php:507
3129
+ #: inc/class-page-about.php:498
3130
  msgid "Backup as email"
3131
  msgstr "Sauvegarder vers E-mail"
3132
 
3133
  #: inc/class-page-about.php:512
3134
+ #: inc/class-page-about.php:503
3135
  #, fuzzy
3136
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3137
  msgstr "Sauvegarde vers le service S3 <small>(Amazon, Google Storage, Hosteurope et plus)</small>"
3138
 
3139
  #: inc/class-page-about.php:527
3140
+ #: inc/class-page-about.php:518
3141
  msgid "Backup to FTP server"
3142
  msgstr "Sauvegarder vers serveur FTP"
3143
 
3144
  #: inc/class-page-about.php:532
3145
+ #: inc/class-page-about.php:523
3146
  msgid "Backup to your web space"
3147
  msgstr "Sauvegarder vers votre espace Web"
3148
 
3149
  #: inc/class-page-about.php:542
3150
  #: inc/pro/class-pro.php:112
3151
+ #: inc/class-page-about.php:553
3152
  #: inc/Pro/class-pro.php:152
 
3153
  msgid "Backup to Google Drive"
3154
  msgstr "Sauvegarde vers Google Drive"
3155
 
3156
  #: inc/class-page-about.php:547
3157
  #: inc/pro/class-pro.php:93
3158
+ #: inc/class-page-about.php:558
3159
  #: inc/Pro/class-pro.php:131
 
3160
  msgid "Backup to Amazon Glacier"
3161
  msgstr "Sauvegarde vers Amazon Glacier"
3162
 
3163
  #: inc/class-page-about.php:552
3164
+ #: inc/class-page-about.php:563
3165
  msgid "Custom API keys for DropBox and SugarSync"
3166
  msgstr "Clé d'API pour DropBox et SugarSync"
3167
 
3168
  #: inc/class-page-about.php:557
3169
+ #: inc/class-page-about.php:568
3170
  msgid "XML database backup as PHPMyAdmin schema"
3171
  msgstr "Sauvegarde de la base de données en XML comme un schéma pour PHPMyAdmin"
3172
 
3173
  #: inc/class-page-about.php:562
3174
+ #: inc/class-page-about.php:573
3175
  msgid "Database backup as mysqldump per command line"
3176
  msgstr "Sauvegarde de la base de données au format mysqldump en ligne de commande"
3177
 
3178
  #: inc/class-page-about.php:567
3179
+ #: inc/class-page-about.php:578
3180
  msgid "Database backup for additional MySQL databases"
3181
  msgstr "Sauvegarde pour des bases de données supplémentaire de type MySQL"
3182
 
3183
  #: inc/class-page-about.php:572
3184
+ #: inc/class-page-about.php:583
3185
  msgid "Import and export job settings as XML"
3186
  msgstr "Enregistrer et charger les paramètres des opérations au format XML"
3187
 
3188
  #: inc/class-page-about.php:577
3189
+ #: inc/class-page-about.php:588
3190
  msgid "Wizard for system tests"
3191
  msgstr "Assistant pour les tests systèmes"
3192
 
3193
  #: inc/class-page-about.php:582
3194
+ #: inc/class-page-about.php:593
3195
  msgid "Wizard for scheduled backup jobs"
3196
  msgstr "Assistant pour la programation des opérations de sauvegarde"
3197
 
3198
  #: inc/class-page-about.php:587
3199
+ #: inc/class-page-about.php:598
3200
  msgid "Wizard to import settings and backup jobs"
3201
  msgstr "Assistant pour le chargement des paramètres et des définitions des opérations"
3202
 
3203
  #: inc/class-page-about.php:592
3204
+ #: inc/class-page-about.php:603
3205
  msgid "Differential backup of changed directories to Dropbox"
3206
  msgstr "Sauvegarde différentielle des répertoires modifiés vers Dropbox"
3207
 
3208
  #: inc/class-page-about.php:597
3209
+ #: inc/class-page-about.php:608
3210
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3211
  msgstr "Sauvegarde différentielle des répertoires modifiés vers Rackspace Cloud"
3212
 
3213
  #: inc/class-page-about.php:602
3214
+ #: inc/class-page-about.php:613
3215
  msgid "Differential backup of changed directories to S3"
3216
  msgstr "Sauvegarde différentielle des répertoires modifiés vers le service S3"
3217
 
3218
  #: inc/class-page-about.php:607
3219
+ #: inc/class-page-about.php:618
3220
  msgid "Differential backup of changed directories to MS Azure"
3221
  msgstr "Sauvegarde différentielle des répertoires modifiés vers MS Azure"
3222
 
3223
  #: inc/class-page-about.php:612
3224
+ #: inc/class-page-about.php:648
3225
  msgid "<strong>Premium support</strong>"
3226
  msgstr "<strong>Premium support</strong>"
3227
 
3228
  #: inc/class-page-about.php:617
3229
+ #: inc/class-page-about.php:653
3230
  msgid "<strong>Automatic updates</strong>"
3231
  msgstr "<strong>Mise à jour automatique</strong>"
3232
 
3233
  #: inc/class-page-about.php:624
3234
+ #: inc/class-page-about.php:660
3235
  msgid "GET PRO"
3236
  msgstr "Passer à la version PRO"
3237
 
3293
  #: inc/class-page-logs.php:206
3294
  #: inc/class-page-backups.php:281
3295
  #: inc/class-page-backups.php:285
3296
+ #: inc/class-page-logs.php:234
3297
  #: inc/class-page-settings.php:768
3298
  #: inc/class-page-settings.php:779
 
3299
  msgid "Download"
3300
  msgstr "Télécharger"
3301
 
3355
  msgid "Restoring backups"
3356
  msgstr "Restauration d'une sauvegarde"
3357
 
 
 
 
 
 
3358
  #: inc/class-page-backwpup.php:78
3359
  #: inc/class-page-backwpup.php:87
3360
  msgctxt "Dashboard heading"
3587
 
3588
  #: inc/class-page-editjob.php:328
3589
  #: inc/class-page-settings.php:117
 
3590
  #: inc/class-page-editjob.php:337
3591
+ #: inc/class-page-settings.php:214
3592
  msgid "General"
3593
  msgstr "Général"
3594
 
3622
 
3623
  #: inc/class-page-editjob.php:391
3624
  #: inc/pro/class-wizard-job.php:254
 
3625
  #: inc/class-page-editjob.php:400
3626
+ #: inc/Pro/class-wizard-job.php:254
3627
  msgid "This job is a&#160;&hellip;"
3628
  msgstr "Cette opération est une &#160;&hellip;"
3629
 
3630
  #: inc/class-page-editjob.php:394
3631
  #: inc/pro/class-wizard-job.php:257
 
3632
  #: inc/class-page-editjob.php:403
3633
+ #: inc/Pro/class-wizard-job.php:257
3634
  msgid "Job tasks"
3635
  msgstr "Taches de l'opération"
3636
 
3643
  #: inc/class-page-editjob.php:420
3644
  #: inc/pro/class-wizard-job.php:402
3645
  #: inc/pro/class-wizard-job.php:405
 
 
3646
  #: inc/class-page-editjob.php:426
3647
  #: inc/class-page-editjob.php:429
3648
+ #: inc/Pro/class-wizard-job.php:402
3649
+ #: inc/Pro/class-wizard-job.php:405
3650
  msgid "Backup type"
3651
  msgstr "Type de sauvegarde"
3652
 
3657
 
3658
  #: inc/class-page-editjob.php:428
3659
  #: inc/pro/class-wizard-job.php:413
 
3660
  #: inc/class-page-editjob.php:437
3661
+ #: inc/Pro/class-wizard-job.php:413
3662
  msgid "Create a backup archive"
3663
  msgstr "Création de l'archive"
3664
 
3758
  #: inc/class-page-editjob.php:476
3759
  #: inc/pro/class-wizard-job.php:426
3760
  #: inc/pro/class-wizard-job.php:429
 
 
3761
  #: inc/class-page-editjob.php:481
3762
  #: inc/class-page-editjob.php:483
3763
+ #: inc/Pro/class-wizard-job.php:426
3764
+ #: inc/Pro/class-wizard-job.php:429
3765
  msgid "Zip"
3766
  msgstr "Zip"
3767
 
3768
  #: inc/class-page-editjob.php:479
3769
  #: inc/pro/class-wizard-job.php:433
 
3770
  #: inc/class-page-editjob.php:486
3771
+ #: inc/Pro/class-wizard-job.php:433
3772
  msgid "Tar"
3773
  msgstr "Tar"
3774
 
3776
  #: inc/class-page-editjob.php:483
3777
  #: inc/pro/class-wizard-job.php:437
3778
  #: inc/pro/class-wizard-job.php:440
 
 
3779
  #: inc/class-page-editjob.php:488
3780
  #: inc/class-page-editjob.php:490
3781
+ #: inc/Pro/class-wizard-job.php:437
3782
+ #: inc/Pro/class-wizard-job.php:440
3783
  msgid "Tar GZip"
3784
  msgstr "Tar GZip"
3785
 
3795
  #: inc/class-page-editjob.php:489
3796
  #: inc/pro/class-wizard-job.php:444
3797
  #: inc/pro/class-wizard-job.php:447
 
 
3798
  #: inc/class-page-editjob.php:494
3799
  #: inc/class-page-editjob.php:497
3800
+ #: inc/Pro/class-wizard-job.php:444
3801
+ #: inc/Pro/class-wizard-job.php:447
3802
  msgid "Tar BZip2"
3803
  msgstr "Tar BZip2"
3804
 
3926
  #: inc/class-page-editjob.php:650
3927
  #: inc/class-page-editjob.php:718
3928
  #: inc/pro/class-wizard-job.php:320
 
3929
  #: inc/class-page-editjob.php:686
3930
  #: inc/class-page-editjob.php:754
3931
+ #: inc/Pro/class-wizard-job.php:320
3932
  msgid "Scheduler"
3933
  msgstr "Programmation"
3934
 
3936
  #: inc/class-page-jobs.php:126
3937
  #: inc/class-page-logs.php:139
3938
  #: inc/pro/class-wizard-job.php:324
 
 
3939
  #: inc/class-page-editjob.php:691
3940
+ #: inc/class-page-logs.php:166
3941
+ #: inc/Pro/class-wizard-job.php:324
3942
  msgid "Type"
3943
  msgstr "Type"
3944
 
3945
  #: inc/class-page-editjob.php:660
3946
  #: inc/pro/class-wizard-job.php:330
 
3947
  #: inc/class-page-editjob.php:696
3948
+ #: inc/Pro/class-wizard-job.php:330
3949
  msgid "Hour"
3950
  msgstr "Heure"
3951
 
3952
  #: inc/class-page-editjob.php:663
3953
  #: inc/pro/class-wizard-job.php:333
 
3954
  #: inc/class-page-editjob.php:699
3955
+ #: inc/Pro/class-wizard-job.php:333
3956
  msgid "Minute"
3957
  msgstr "Minute"
3958
 
3959
  #: inc/class-page-editjob.php:667
3960
  #: inc/pro/class-wizard-job.php:337
 
3961
  #: inc/class-page-editjob.php:703
3962
+ #: inc/Pro/class-wizard-job.php:337
3963
  msgid "monthly"
3964
  msgstr "Mensuelle"
3965
 
3966
  #: inc/class-page-editjob.php:669
3967
  #: inc/pro/class-wizard-job.php:339
 
3968
  #: inc/class-page-editjob.php:705
3969
+ #: inc/Pro/class-wizard-job.php:339
3970
  msgid "on"
3971
  msgstr "le"
3972
 
3973
  #: inc/class-page-editjob.php:679
3974
  #: inc/pro/class-wizard-job.php:349
 
3975
  #: inc/class-page-editjob.php:715
3976
+ #: inc/Pro/class-wizard-job.php:349
3977
  msgid "weekly"
3978
  msgstr "Hebdomadaire"
3979
 
3980
  #: inc/class-page-editjob.php:681
3981
  #: inc/class-page-editjob.php:788
3982
  #: inc/pro/class-wizard-job.php:351
 
3983
  #: inc/class-page-editjob.php:717
3984
  #: inc/class-page-editjob.php:824
3985
+ #: inc/Pro/class-wizard-job.php:351
3986
  msgid "Sunday"
3987
  msgstr "Dimanche"
3988
 
3989
  #: inc/class-page-editjob.php:682
3990
  #: inc/class-page-editjob.php:789
3991
  #: inc/pro/class-wizard-job.php:352
 
3992
  #: inc/class-page-editjob.php:718
3993
  #: inc/class-page-editjob.php:825
3994
+ #: inc/Pro/class-wizard-job.php:352
3995
  msgid "Monday"
3996
  msgstr "Lundi"
3997
 
3998
  #: inc/class-page-editjob.php:683
3999
  #: inc/class-page-editjob.php:790
4000
  #: inc/pro/class-wizard-job.php:353
 
4001
  #: inc/class-page-editjob.php:719
4002
  #: inc/class-page-editjob.php:826
4003
+ #: inc/Pro/class-wizard-job.php:353
4004
  msgid "Tuesday"
4005
  msgstr "Mardi"
4006
 
4007
  #: inc/class-page-editjob.php:684
4008
  #: inc/class-page-editjob.php:791
4009
  #: inc/pro/class-wizard-job.php:354
 
4010
  #: inc/class-page-editjob.php:720
4011
  #: inc/class-page-editjob.php:827
4012
+ #: inc/Pro/class-wizard-job.php:354
4013
  msgid "Wednesday"
4014
  msgstr "Mercredi"
4015
 
4016
  #: inc/class-page-editjob.php:685
4017
  #: inc/class-page-editjob.php:792
4018
  #: inc/pro/class-wizard-job.php:355
 
4019
  #: inc/class-page-editjob.php:721
4020
  #: inc/class-page-editjob.php:828
4021
+ #: inc/Pro/class-wizard-job.php:355
4022
  msgid "Thursday"
4023
  msgstr "Jeudi"
4024
 
4025
  #: inc/class-page-editjob.php:686
4026
  #: inc/class-page-editjob.php:793
4027
  #: inc/pro/class-wizard-job.php:356
 
4028
  #: inc/class-page-editjob.php:722
4029
  #: inc/class-page-editjob.php:829
4030
+ #: inc/Pro/class-wizard-job.php:356
4031
  msgid "Friday"
4032
  msgstr "Vendredi"
4033
 
4034
  #: inc/class-page-editjob.php:687
4035
  #: inc/class-page-editjob.php:794
4036
  #: inc/pro/class-wizard-job.php:357
 
4037
  #: inc/class-page-editjob.php:723
4038
  #: inc/class-page-editjob.php:830
4039
+ #: inc/Pro/class-wizard-job.php:357
4040
  msgid "Saturday"
4041
  msgstr "Samedi"
4042
 
4043
  #: inc/class-page-editjob.php:697
4044
  #: inc/pro/class-wizard-job.php:367
 
4045
  #: inc/class-page-editjob.php:733
4046
+ #: inc/Pro/class-wizard-job.php:367
4047
  msgid "daily"
4048
  msgstr "Quotidien"
4049
 
4050
  #: inc/class-page-editjob.php:707
4051
  #: inc/pro/class-wizard-job.php:377
 
4052
  #: inc/class-page-editjob.php:743
4053
+ #: inc/Pro/class-wizard-job.php:377
4054
  msgid "hourly"
4055
  msgstr "Toutes les heures"
4056
 
4198
 
4199
  #: inc/class-page-jobs.php:172
4200
  #: inc/class-page-logs.php:200
 
4201
  #: inc/class-page-logs.php:228
4202
+ #: inc/Pro/class-page-support.php:221
4203
  msgid "Job ID: %d"
4204
  msgstr "ID d'opération : %d"
4205
 
5031
  #: inc/pro/class-wizard-job.php:17
5032
  #: inc/pro/class-wizard-jobimport.php:16
5033
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5034
  #: inc/class-admin.php:510
5035
  #: inc/class-admin.php:531
5036
+ #: inc/class-job.php:459
5037
+ #: inc/class-page-about.php:365
5038
+ #: inc/class-page-about.php:375
5039
+ #: inc/class-page-about.php:660
5040
+ #: inc/class-page-backwpup.php:254
5041
  #: inc/class-page-settings.php:1123
5042
+ #: inc/Pro/class-wizard-job.php:17
5043
+ #: inc/Pro/class-wizard-jobimport.php:16
5044
+ #: inc/Pro/class-wizard-systemtest.php:27
5045
  msgid "http://backwpup.com"
5046
  msgstr "http://backwpup.com"
5047
 
5054
  #: inc/pro/class-wizard-job.php:19
5055
  #: inc/pro/class-wizard-jobimport.php:18
5056
  #: inc/pro/class-wizard-systemtest.php:18
 
5057
  #: inc/Pro/class-wizard-job.php:19
5058
+ #: inc/Pro/class-wizard-jobimport.php:18
5059
  #: inc/Pro/class-wizard-systemtest.php:29
5060
  msgid "http://inpsyde.com"
5061
  msgstr ""
5062
 
5063
+ #: backwpup.php:573
5064
+ #: vendor_dist/backwpup.php:573
5065
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5066
  msgstr ""
5067
 
5068
+ #: inc/class-create-archive.php:114
5069
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5070
  msgstr ""
5071
 
5072
+ #: inc/class-create-archive.php:311
5073
+ msgid "File name cannot be empty."
 
5074
  msgstr ""
5075
 
5076
+ #: inc/class-create-archive.php:741
5077
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5078
  msgstr ""
5079
 
5080
+ #. translators: $1 is the filename to add into the archive.
5081
+ #: inc/class-create-archive.php:996
5082
+ msgid "Cannot open source file %s."
5083
  msgstr ""
5084
 
5085
+ #: inc/class-decrypter.php:56
5086
+ msgid "Cannot open the archive for reading."
5087
  msgstr ""
5088
 
5089
+ #: inc/class-decrypter.php:82
5090
+ msgid "Cannot write the encrypted archive."
5091
  msgstr ""
5092
 
5093
+ #: inc/class-decrypter.php:162
5094
+ msgid "Private key invalid."
5095
  msgstr ""
5096
 
5097
+ #: inc/class-destination-dropbox-downloader.php:72
5098
+ #: inc/class-destination-ftp-downloader.php:72
5099
+ #: inc/class-destination-s3-downloader.php:83
5100
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5101
+ msgid "Could not write data to file."
5102
  msgstr ""
5103
 
5104
+ #: inc/class-destination-dropbox-downloader.php:104
5105
+ #: inc/class-destination-folder-downloader.php:137
5106
+ #: inc/class-destination-ftp-downloader.php:126
5107
+ #: inc/class-destination-s3-downloader.php:112
5108
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5109
+ msgid "File could not be opened for writing."
5110
  msgstr ""
5111
 
5112
  #: inc/class-destination-folder-downloader.php:64
5126
  msgid "%s is a directory not a file."
5127
  msgstr ""
5128
 
5129
+ #: inc/class-destination-ftp-downloader.php:108
5130
+ msgid "Cannot open FTP file for download."
5131
+ msgstr ""
5132
+
5133
+ #: inc/class-destination-ftp.php:321
5134
+ msgid "Could not log in to FTP server."
5135
+ msgstr ""
5136
+
5137
+ #: inc/class-destination-ftp.php:735
5138
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5139
+ msgstr ""
5140
+
5141
+ #: inc/class-destination-s3-downloader.php:76
5142
+ msgid "Could not write data to file. Empty source file."
5143
+ msgstr ""
5144
+
5145
  #: inc/class-destination-s3.php:102
5146
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5147
  msgstr ""
5148
 
5149
+ #: inc/class-destination-s3.php:1134
5150
+ #: inc/Pro/class-destination-s3.php:63
5151
+ msgid "Amazon S3: EU (London)"
5152
+ msgstr ""
5153
+
5154
+ #: inc/class-download-file.php:135
5155
+ msgid "Invalid file name, seems file include invalid characters."
5156
+ msgstr ""
5157
+
5158
+ #: inc/class-job.php:362
5159
+ msgid "Encrypts the archive"
5160
+ msgstr ""
5161
+
5162
+ #: inc/class-job.php:1902
5163
+ msgid "No encryption key was provided. Aborting encryption."
5164
+ msgstr ""
5165
+
5166
+ #: inc/class-job.php:1912
5167
+ msgid "%d. Trying to encrypt archive &hellip;"
5168
+ msgstr ""
5169
+
5170
+ #: inc/class-job.php:1925
5171
+ msgid "Cannot open the archive for reading. Aborting encryption."
5172
+ msgstr ""
5173
+
5174
+ #: inc/class-job.php:1932
5175
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5176
+ msgstr ""
5177
+
5178
+ #: inc/class-job.php:1991
5179
+ msgid "Encrypted %s of data."
5180
+ msgstr ""
5181
+
5182
+ #: inc/class-job.php:1996
5183
+ msgid "Unable to delete unencrypted archive."
5184
+ msgstr ""
5185
+
5186
+ #: inc/class-job.php:2003
5187
+ msgid "Unable to rename encrypted archive."
5188
+ msgstr ""
5189
+
5190
+ #: inc/class-job.php:2009
5191
+ msgid "Archive has been successfully encrypted."
5192
+ msgstr ""
5193
+
5194
+ #: inc/class-job.php:2719
5195
+ msgid "exec command is not active."
5196
+ msgstr ""
5197
+
5198
+ #: inc/class-job.php:2725
5199
+ msgid "mysqldump binary not found."
5200
+ msgstr ""
5201
+
5202
+ #: inc/class-page-about.php:365
5203
+ #: inc/class-page-about.php:375
5204
+ #: inc/class-page-backwpup.php:254
5205
+ msgid "BackWPup banner"
5206
+ msgstr ""
5207
+
5208
+ #: inc/class-page-about.php:368
5209
+ #: inc/class-page-about.php:378
5210
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5211
+ msgstr ""
5212
+
5213
+ #: inc/class-page-about.php:533
5214
+ msgid "Restore manually uploaded Backup Archives"
5215
+ msgstr ""
5216
+
5217
+ #: inc/class-page-about.php:538
5218
+ msgid "Standalone Restore App"
5219
+ msgstr ""
5220
+
5221
+ #: inc/class-page-about.php:543
5222
+ msgid "Encrypt Backup Archives"
5223
+ msgstr ""
5224
+
5225
+ #: inc/class-page-about.php:548
5226
+ msgid "Restore Encrypted Backups"
5227
+ msgstr ""
5228
+
5229
+ #: inc/class-page-about.php:623
5230
+ msgid "Restore from Folder"
5231
+ msgstr ""
5232
+
5233
+ #: inc/class-page-about.php:628
5234
+ msgid "Restore from Google Drive"
5235
+ msgstr ""
5236
+
5237
+ #: inc/class-page-about.php:633
5238
+ msgid "Restore from Amazon S3"
5239
+ msgstr ""
5240
+
5241
+ #: inc/class-page-about.php:638
5242
+ msgid "Restore from Dropbox"
5243
+ msgstr ""
5244
+
5245
+ #: inc/class-page-about.php:643
5246
+ msgid "Restore from FTP"
5247
+ msgstr ""
5248
+
5249
+ #: inc/class-page-backups.php:293
5250
+ #: inc/Pro/class-pro.php:285
5251
+ #: inc/Pro/class-pro.php:286
5252
+ #: views/pro/restore/steps/step4_top.php:2
5253
+ msgid "Restore"
5254
+ msgstr ""
5255
+
5256
  #: inc/class-page-backups.php:408
5257
  msgid "&laquo; Go back"
5258
  msgstr ""
5295
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5296
  msgstr ""
5297
 
5298
+ #: inc/class-page-backwpup.php:77
5299
+ #: inc/class-page-backwpup.php:86
5300
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5301
  msgstr ""
5302
 
5303
+ #: inc/class-page-editjob.php:448
5304
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5305
  msgstr ""
5306
 
5307
+ #: inc/class-page-editjob.php:452
5308
+ msgid "Preview: "
5309
  msgstr ""
5310
 
5311
+ #: inc/class-page-editjob.php:484
5312
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5313
+ msgstr ""
5314
+
5315
+ #: inc/class-page-editjob.php:495
5316
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5317
+ msgstr ""
5318
+
5319
+ #: inc/class-page-editjob.php:506
5320
+ #: inc/class-page-editjob.php:511
5321
+ #: inc/class-page-editjob.php:520
5322
+ msgid "Encrypt Archive"
5323
+ msgstr ""
5324
+
5325
+ #: inc/class-page-editjob.php:524
5326
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5327
  msgstr ""
5328
 
5329
  #: inc/class-page-settings.php:39
5536
  msgid "BackWPup maximum script execution time"
5537
  msgstr ""
5538
 
5539
+ #: inc/class-system-tests-runner.php:77
5540
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5541
  msgstr ""
5542
 
5543
+ #: inc/class-system-tests-runner.php:88
5544
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5545
  msgstr ""
5546
 
5547
+ #: inc/class-system-tests-runner.php:100
5548
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5549
  msgstr ""
5550
 
5551
+ #: inc/class-system-tests-runner.php:193
5552
+ msgid "Yeah!"
5553
  msgstr ""
5554
 
5555
+ #: inc/class-system-tests-runner.php:261
5556
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5557
  msgstr ""
5558
 
5559
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-it_IT.mo CHANGED
Binary file
languages/backwpup-it_IT.po CHANGED
@@ -31,8 +31,8 @@ msgstr "Chiave API"
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
34
- #: inc/class-page-backups.php:243
35
  #: backwpup.php:286
 
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Cartella"
@@ -77,14 +77,15 @@ msgstr ""
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
 
80
  #: vendor_dist/backwpup.php:335
81
  msgid "Backup to Dropbox"
82
  msgstr "Backup su Dropbox"
83
 
84
  #: backwpup.php:339
85
  #: inc/class-destination-s3.php:41
86
- #: inc/class-destination-s3.php:42
87
  #: backwpup.php:350
 
88
  #: vendor_dist/backwpup.php:350
89
  msgid "S3 Service"
90
  msgstr ""
@@ -116,6 +117,7 @@ msgstr ""
116
  #: backwpup.php:377
117
  #: inc/class-page-about.php:524
118
  #: backwpup.php:388
 
119
  #: vendor_dist/backwpup.php:388
120
  msgid "Backup to Rackspace Cloud Files"
121
  msgstr "Backup su Rackspace Cloud Files"
@@ -129,6 +131,7 @@ msgstr ""
129
  #: backwpup.php:397
130
  #: inc/class-page-about.php:539
131
  #: backwpup.php:408
 
132
  #: vendor_dist/backwpup.php:408
133
  msgid "Backup to SugarSync"
134
  msgstr "Backup su SugarSync"
@@ -205,8 +208,8 @@ msgstr "Numero di file da mantenere nella cartella"
205
  #: inc/class-destination-rsc.php:118
206
  #: inc/class-destination-s3.php:214
207
  #: inc/class-destination-sugarsync.php:104
208
- #: inc/Pro/class-destination-gdrive.php:462
209
  #: inc/class-destination-s3.php:245
 
210
  msgid "Do not delete files while syncing to destination!"
211
  msgstr "Non eliminare i file durante la sincronizzazione verso la destinazione!"
212
 
@@ -263,11 +266,11 @@ msgstr ""
263
  #: inc/class-destination-folder-downloader.php:55
264
  #: inc/class-destination-ftp-downloader.php:89
265
  #: inc/class-destination-s3-downloader.php:63
266
- #: inc/Pro/class-destination-gdrive-downloader.php:102
267
- #: inc/class-destination-ftp-downloader.php:126
268
- #: inc/class-destination-folder-downloader.php:137
269
  #: inc/class-destination-dropbox-downloader.php:104
 
 
270
  #: inc/class-destination-s3-downloader.php:112
 
271
  msgid "File could not be opened for writing."
272
  msgstr "Non è possibile aprire il file in scrittura."
273
 
@@ -276,10 +279,10 @@ msgstr "Non è possibile aprire il file in scrittura."
276
  #: inc/class-destination-folder-downloader.php:79
277
  #: inc/class-destination-ftp-downloader.php:100
278
  #: inc/class-destination-s3-downloader.php:69
279
- #: inc/Pro/class-destination-gdrive-downloader.php:74
280
- #: inc/class-destination-ftp-downloader.php:72
281
  #: inc/class-destination-dropbox-downloader.php:72
 
282
  #: inc/class-destination-s3-downloader.php:83
 
283
  msgid "Could not write data to file."
284
  msgstr "Non è possibile scrivere il file di log."
285
 
@@ -334,9 +337,9 @@ msgstr "<strong>Attenzione</strong>: I file appartenenti a questo processo ora s
334
  #: inc/class-destination-rsc.php:292
335
  #: inc/class-destination-s3.php:825
336
  #: inc/class-destination-s3.php:940
337
- #: inc/Pro/class-destination-gdrive.php:905
338
  #: inc/class-destination-s3.php:843
339
  #: inc/class-destination-s3.php:958
 
340
  msgid "Can not open source file for transfer."
341
  msgstr "Non è possibile aprire il file sorgente per il trasferimento."
342
 
@@ -816,11 +819,13 @@ msgstr "Avvia il wizard"
816
 
817
  #: inc/Pro/class-pro.php:131
818
  #: inc/class-page-about.php:549
 
819
  msgid "Backup to Amazon Glacier"
820
  msgstr "Backup su Amazon Glacier"
821
 
822
  #: inc/Pro/class-pro.php:152
823
  #: inc/class-page-about.php:544
 
824
  msgid "Backup to Google Drive"
825
  msgstr "Backup su Google Drive"
826
 
@@ -850,6 +855,11 @@ msgstr "Ripristina"
850
  #: inc/class-page-backwpup.php:260
851
  #: inc/class-page-backwpup.php:262
852
  #: inc/class-page-settings.php:1134
 
 
 
 
 
853
  #: inc/class-page-settings.php:1123
854
  msgid "http://backwpup.com"
855
  msgstr ""
@@ -2062,64 +2072,79 @@ msgid "BackWPup jobs helper"
2062
  msgstr "BackWPup assistenza processi"
2063
 
2064
  #: inc/class-job.php:269
 
2065
  msgid "Starting job"
2066
  msgstr "Inizializzazione processo"
2067
 
2068
  #: inc/class-job.php:284
 
2069
  msgid "Job Start"
2070
  msgstr "Inizio processo"
2071
 
2072
  #: inc/class-job.php:304
 
2073
  msgid "Creates manifest file"
2074
  msgstr "Crea il file manifest"
2075
 
2076
  #: inc/class-job.php:326
 
2077
  msgid "Creates archive"
2078
  msgstr "Crea archivi"
2079
 
2080
  #: inc/class-job.php:332
 
2081
  msgid "Encrypts the archive"
2082
  msgstr "Cripta l'archivio"
2083
 
2084
  #: inc/class-job.php:373
 
2085
  msgid "End of Job"
2086
  msgstr "Fine del processo"
2087
 
2088
  #: inc/class-job.php:395
 
2089
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2090
  msgstr "Log BackWPup per %1$s da %2$s a %3$s"
2091
 
2092
  #: inc/class-job.php:412
 
2093
  msgctxt "Plugin name; Plugin Version; plugin url"
2094
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2095
  msgstr "[INFO] %1$s %2$s; Progetto realizzato da Inpsyde GmbH"
2096
 
2097
  #: inc/class-job.php:413
 
2098
  msgctxt "WordPress Version; Blog url"
2099
  msgid "[INFO] WordPress %1$s on %2$s"
2100
  msgstr "[INFO] WordPress %1$s su %2$s"
2101
 
2102
  #: inc/class-job.php:414
 
2103
  msgid "Normal"
2104
  msgstr "Normale"
2105
 
2106
  #: inc/class-job.php:417
 
2107
  msgid "Debug"
2108
  msgstr ""
2109
 
2110
  #: inc/class-job.php:420
 
2111
  msgid "(translated)"
2112
  msgstr "(tradotto)"
2113
 
2114
  #: inc/class-job.php:422
 
2115
  msgid "[INFO] Log Level: %1$s %2$s"
2116
  msgstr "[INFO] Livello Log: %1$s %2$s"
2117
 
2118
  #: inc/class-job.php:427
 
2119
  msgid "[INFO] BackWPup job: %1$s"
2120
  msgstr "[INFO] Processo BackWPup: %1$s"
2121
 
2122
  #: inc/class-job.php:430
 
2123
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2124
  msgstr "[INFO] Funzionamento con utente: %1$s (%2$d) "
2125
 
@@ -2127,121 +2152,151 @@ msgstr "[INFO] Funzionamento con utente: %1$s (%2$d) "
2127
  #: inc/class-page-backwpup.php:323
2128
  #: inc/class-page-jobs.php:282
2129
  #: inc/class-page-jobs.php:291
 
2130
  msgid "Not scheduled!"
2131
  msgstr "Non programmato!"
2132
 
2133
  #: inc/class-job.php:448
2134
  #: inc/class-job.php:458
 
 
2135
  msgid "[INFO] Cron: %s; Next: %s "
2136
  msgstr "[INFO] Cron: %s; Prossimo: %s "
2137
 
2138
  #: inc/class-job.php:451
 
2139
  msgid "[INFO] BackWPup job start with link is active"
2140
  msgstr "[INFO] Il processo BackWPup inizia con link attivo"
2141
 
2142
  #: inc/class-job.php:453
 
2143
  msgid "[INFO] BackWPup job start with EasyCron.com"
2144
  msgstr "[INFO] Il processo BackWPup inizia con EasyCron.com"
2145
 
2146
  #: inc/class-job.php:461
 
2147
  msgid "[INFO] BackWPup no automatic job start configured"
2148
  msgstr "[INFO] Nessun avvio automatico di processo BackWPup configurato"
2149
 
2150
  #: inc/class-job.php:465
 
2151
  msgid "[INFO] BackWPup job started from wp-cron"
2152
  msgstr "[INFO] Il processo BackWPup è partito da wp-cron"
2153
 
2154
  #: inc/class-job.php:467
 
2155
  msgid "[INFO] BackWPup job started manually"
2156
  msgstr "[INFO] Il processo BackWPup è partito manualmente"
2157
 
2158
  #: inc/class-job.php:469
 
2159
  msgid "[INFO] BackWPup job started from external url"
2160
  msgstr "[INFO] Il processo BackWPup è partito da url esterno"
2161
 
2162
  #: inc/class-job.php:471
 
2163
  msgid "[INFO] BackWPup job started form commandline interface"
2164
  msgstr "[INFO] Il processo BackWPup è partito da interfaccia di commandline "
2165
 
2166
  #: inc/class-job.php:480
 
2167
  msgid "[INFO] PHP ver.:"
2168
  msgstr ""
2169
 
2170
  #: inc/class-job.php:481
 
2171
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2172
  msgstr "[INFO] Il Max PHP script execution time è di %1$d secondi"
2173
 
2174
  #: inc/class-job.php:485
 
2175
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2176
  msgstr "[INFO] Il restart dello script è configurato su %1$d secondi"
2177
 
2178
  #: inc/class-job.php:488
 
2179
  msgid "[INFO] MySQL ver.: %s"
2180
  msgstr ""
2181
 
2182
  #: inc/class-job.php:490
 
2183
  msgid "[INFO] Web Server: %s"
2184
  msgstr ""
2185
 
2186
  #: inc/class-job.php:494
 
2187
  msgid "[INFO] curl ver.: %1$s; %2$s"
2188
  msgstr ""
2189
 
2190
  #: inc/class-job.php:496
 
2191
  msgid "[INFO] Temp folder is: %s"
2192
  msgstr "[INFO] Temp folder è: %s"
2193
 
2194
  #: inc/class-job.php:503
 
2195
  msgid "[INFO] Logfile is: %s"
2196
  msgstr "[INFO] Logfile è: %s"
2197
 
2198
  #: inc/class-job.php:510
 
2199
  msgid "[INFO] Backup file is: %s"
2200
  msgstr "[INFO] Il file di backup è: %s"
2201
 
2202
  #: inc/class-job.php:512
 
2203
  msgid "[INFO] Backup type is: %s"
2204
  msgstr "[INFO] Il tipo di backup è: %s"
2205
 
2206
  #: inc/class-job.php:520
 
2207
  msgid "Could not write log file"
2208
  msgstr "Non è possibile scrivere il file di log"
2209
 
2210
  #: inc/class-job.php:532
 
2211
  msgid "No destination correctly defined for backup! Please correct job settings."
2212
  msgstr "Nessuna destinazione definita correttamente per il backup! Correggi le impostazioni del processo."
2213
 
2214
  #: inc/class-job.php:628
 
2215
  msgid "Cannot write progress to working file. Job will be aborted."
2216
  msgstr "Impossibile scrivere l'avanzamento del processo sul file in esecuzione. Il processo verrà interrotto."
2217
 
2218
  #: inc/class-job.php:700
2219
  #: inc/class-page-jobs.php:786
 
2220
  msgid "WARNING:"
2221
  msgstr "AVVISO:"
2222
 
2223
  #: inc/class-job.php:709
2224
  #: inc/class-page-jobs.php:784
 
2225
  msgid "ERROR:"
2226
  msgstr "ERRORE:"
2227
 
2228
  #: inc/class-job.php:713
 
2229
  msgid "DEPRECATED:"
2230
  msgstr ""
2231
 
2232
  #: inc/class-job.php:716
 
2233
  msgid "STRICT NOTICE:"
2234
  msgstr "AVVISO IMPORTANTE:"
2235
 
2236
  #: inc/class-job.php:721
 
2237
  msgid "RECOVERABLE ERROR:"
2238
  msgstr "ERRORE RECUPERABILE:"
2239
 
2240
  #: inc/class-job.php:972
 
2241
  msgid "Aborted by user!"
2242
  msgstr "Annullato dall'utente!"
2243
 
2244
  #: inc/class-job.php:1005
 
2245
  msgid "One old log deleted"
2246
  msgid_plural "%d old logs deleted"
2247
  msgstr[0] "Un log vecchio eliminato"
@@ -2249,326 +2304,339 @@ msgstr[1] "%d log vecchi eliminati"
2249
 
2250
  #: inc/class-job.php:1012
2251
  #: inc/class-page-jobs.php:784
 
2252
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2253
  msgstr "Il processo si è concluso con errori in %s secondi. È necessario risolvere gli errori per l'esecuzione corretta."
2254
 
2255
  #: inc/class-job.php:1014
 
2256
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2257
  msgstr "Processo finito con avvisi in% s secondi. Si prega di risolverli per l'esecuzione corretta."
2258
 
2259
  #: inc/class-job.php:1016
2260
  #: inc/class-page-jobs.php:788
 
2261
  msgid "Job done in %s seconds."
2262
  msgstr "Processo eseguito in %s secondi."
2263
 
2264
  #: inc/class-job.php:1060
 
2265
  msgid "SUCCESSFUL"
2266
  msgstr "SUCCESSO"
2267
 
2268
  #: inc/class-job.php:1062
 
2269
  msgid "WARNING"
2270
  msgstr "ATTENZIONE"
2271
 
2272
  #: inc/class-job.php:1065
 
2273
  msgid "ERROR"
2274
  msgstr "ERRORE"
2275
 
2276
  #: inc/class-job.php:1068
 
2277
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2278
  msgstr ""
2279
 
2280
  #: inc/class-job.php:1180
 
2281
  msgid "Restart after %1$d seconds."
2282
  msgstr "Riparte dopo %1$d secondi."
2283
 
2284
  #: inc/class-job.php:1182
 
2285
  msgid "Restart after getting signal."
2286
  msgstr "Riprende dopo aver ottenuto il segnale"
2287
 
2288
  #: inc/class-job.php:1357
 
2289
  msgid "Job restarts due to inactivity for more than 5 minutes."
2290
  msgstr "Il processo riparte a causa di un'inattività di oltre 5 minuti."
2291
 
2292
  #: inc/class-job.php:1455
 
2293
  msgid "Step aborted: too many attempts!"
2294
  msgstr "Step annullato: troppi tentativi!"
2295
 
2296
  #: inc/class-job.php:1528
 
2297
  msgid "%d. Trying to create backup archive &hellip;"
2298
  msgstr "%d. Provo a creare l'archivio di backup &hellip;"
2299
 
2300
  #: inc/class-job.php:1536
 
2301
  msgctxt "Archive compression method"
2302
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2303
  msgstr "Compressione file come %s. Si prega di pazientare, potrebbe richiedere qualche istante."
2304
 
2305
  #: inc/class-job.php:1543
2306
- #: inc/class-job.php:1544
2307
  msgid "Adding Extra files to Archive"
2308
  msgstr "Aggiunti file extra all'archivio"
2309
 
2310
  #: inc/class-job.php:1554
2311
  #: inc/class-job.php:1614
2312
- #: inc/class-job.php:1555
2313
- #: inc/class-job.php:1626
2314
  msgid "Cannot create backup archive correctly. Aborting creation."
2315
  msgstr "Impossibile creare correttamente il file d'archivio. Creazione annullata."
2316
 
2317
  #: inc/class-job.php:1570
2318
- #: inc/class-job.php:1571
2319
  msgid "Archiving Folder: %s"
2320
  msgstr "Cartella di archiviazione: %s"
2321
 
2322
  #: inc/class-job.php:1624
2323
- #: inc/class-job.php:1636
2324
  msgid "Backup archive created."
2325
  msgstr "Archivio di backup creato."
2326
 
2327
  #: inc/class-job.php:1638
2328
- #: inc/class-job.php:1650
2329
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2330
  msgstr "L'archivio di backup è troppo grande per le operazioni sui file con questa versione di PHP. Si potrebbe prendere in considerazione la divisione del processo di backup in più processi con meno file ciascuno."
2331
 
2332
  #: inc/class-job.php:1641
2333
- #: inc/class-job.php:1653
2334
  msgid "Archive size is %s."
2335
  msgstr "La grandezza dell'archivio è %s."
2336
 
2337
  #: inc/class-job.php:1644
2338
- #: inc/class-job.php:1656
2339
  msgid "%1$d Files with %2$s in Archive."
2340
  msgstr "%1$d Files con %2$s nell'archivio."
2341
 
2342
  #: inc/class-job.php:1677
2343
- #: inc/class-job.php:1689
2344
  msgid "No encryption key was provided. Aborting encryption."
2345
  msgstr "Nessuna chiave di criptazione disponibile. Criptazione annullata."
2346
 
2347
  #: inc/class-job.php:1684
2348
- #: inc/class-job.php:1696
2349
  msgid "%d. Trying to encrypt archive &hellip;"
2350
  msgstr "%d. Criptazione dell'archivio in corso &hellip;"
2351
 
2352
  #: inc/class-job.php:1694
2353
- #: inc/class-job.php:1706
2354
  msgid "Cannot open the archive for reading. Aborting encryption."
2355
  msgstr "Impossibile aprire l'archivio in lettura. Criptazione annullata."
2356
 
2357
  #: inc/class-job.php:1700
2358
- #: inc/class-job.php:1712
2359
  msgid "Cannot write the encrypted archive. Aborting encryption."
2360
  msgstr "Impossibile accedere in scrittura all'archivio criptato. Criptazione annullata."
2361
 
2362
  #: inc/class-job.php:1757
2363
- #: inc/class-job.php:1769
2364
  msgid "Encrypted %s of data."
2365
  msgstr "%s dati criptati."
2366
 
2367
  #: inc/class-job.php:1761
2368
- #: inc/class-job.php:1773
2369
  msgid "Unable to delete unencrypted archive."
2370
  msgstr "Non è possibile eliminare l'archivio non criptato. "
2371
 
2372
  #: inc/class-job.php:1765
2373
- #: inc/class-job.php:1777
2374
  msgid "Unable to rename encrypted archive."
2375
  msgstr "Non è possibile rinominare l'archivio criptato."
2376
 
2377
  #: inc/class-job.php:1770
2378
- #: inc/class-job.php:1782
2379
  msgid "Archive has been successfully encrypted."
2380
  msgstr "L'archivio è stato criptato con successo."
2381
 
2382
  #: inc/class-job.php:1819
2383
- #: inc/class-job.php:1831
2384
  #, fuzzy
2385
  msgctxt "Folder name"
2386
  msgid "Folder %s does not exist"
2387
  msgstr "La cartella %s non esiste"
2388
 
2389
  #: inc/class-job.php:1825
2390
- #: inc/class-job.php:1837
2391
  #, fuzzy
2392
  msgctxt "Folder name"
2393
  msgid "Folder %s is not readable"
2394
  msgstr "La cartella \"%s\" non è leggibile!"
2395
 
2396
  #: inc/class-job.php:1848
2397
- #: inc/class-job.php:1860
2398
  msgid "Link \"%s\" not following."
2399
  msgstr "Link \"%s\" non funzionante."
2400
 
2401
  #: inc/class-job.php:1850
2402
- #: inc/class-job.php:1862
2403
  msgid "File \"%s\" is not readable!"
2404
  msgstr "Il file \"%s\" non è leggibile!"
2405
 
2406
  #: inc/class-job.php:1854
2407
- #: inc/class-job.php:1866
2408
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2409
  msgstr "La dimensione del file %s non può essere recuperata. Il file potrebbe essere troppo grande e non sarà aggiunto alla coda."
2410
 
2411
  #: inc/class-job.php:1937
2412
- #: inc/class-job.php:1949
2413
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2414
  msgstr "%d. Provo a generare un manifest file&#160;&hellip;"
2415
 
2416
  #: inc/class-job.php:1993
2417
- #: inc/class-job.php:2005
2418
  msgid "You may have noticed the manifest.json file in this archive."
2419
  msgstr "Potresti aver notato il manifest.json file in questo archivio."
2420
 
2421
  #: inc/class-job.php:1994
2422
- #: inc/class-job.php:2006
2423
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2424
  msgstr "manifest.json potrebbe essere necessario per poi ripristinare un backup da questo archivio."
2425
 
2426
  #: inc/class-job.php:1995
2427
- #: inc/class-job.php:2007
2428
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2429
  msgstr "Si prega di lasciare manifest.json intatto e al suo posto. In caso contrario può essere ignorato."
2430
 
2431
  #: inc/class-job.php:2005
2432
- #: inc/class-job.php:2017
2433
  msgid "Added manifest.json file with %1$s to backup file list."
2434
  msgstr "Aggiunto il file manifest.json con %1$s alla lista di backup dei file."
2435
 
2436
  #: inc/class-job.php:2044
2437
- #: inc/class-job.php:2056
2438
  msgid "Wrong BackWPup JobID"
2439
  msgstr "BackWPup JobID Errato"
2440
 
2441
  #: inc/class-job.php:2057
2442
- #: inc/class-job.php:2069
2443
  msgid "A BackWPup job is already running"
2444
  msgstr "Un processo di BackWPup è già in esecuzione"
2445
 
2446
  #: inc/class-job.php:2439
2447
- #: inc/class-job.php:2451
2448
  msgid "exec command is not active."
2449
  msgstr "il comando exec non è attivo."
2450
 
2451
  #: inc/class-job.php:2444
2452
- #: inc/class-job.php:2456
2453
  msgid "mysqldump binary not found."
2454
  msgstr "mysqldump binary non trovato."
2455
 
2456
  #: inc/class-job.php:2470
2457
- #: inc/class-job.php:2482
2458
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2459
  msgid "Hangup detected on controlling terminal or death of controlling process"
2460
  msgstr "Connessione saltata durante il controllo del terminale o il processo è stato terminato"
2461
 
2462
  #: inc/class-job.php:2474
2463
- #: inc/class-job.php:2486
2464
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2465
  msgid "Interrupt from keyboard"
2466
  msgstr "Interrotto da tastiera"
2467
 
2468
  #: inc/class-job.php:2478
2469
- #: inc/class-job.php:2490
2470
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2471
  msgid "Quit from keyboard"
2472
  msgstr "Esci da tastiera"
2473
 
2474
  #: inc/class-job.php:2482
2475
- #: inc/class-job.php:2494
2476
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2477
  msgid "Illegal Instruction"
2478
  msgstr "Istruzioni non valide"
2479
 
2480
  #: inc/class-job.php:2486
2481
- #: inc/class-job.php:2498
2482
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2483
  msgid "Abort signal from abort(3)"
2484
  msgstr "Segnale di annullamento da abort(3)"
2485
 
2486
  #: inc/class-job.php:2490
2487
- #: inc/class-job.php:2502
2488
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2489
  msgid "Bus error (bad memory access)"
2490
  msgstr "Errore bus (errore di accesso alla memoria)"
2491
 
2492
  #: inc/class-job.php:2494
2493
- #: inc/class-job.php:2506
2494
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2495
  msgid "Floating point exception"
2496
  msgstr "Eccezione floating point"
2497
 
2498
  #: inc/class-job.php:2498
2499
- #: inc/class-job.php:2510
2500
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2501
  msgid "Invalid memory reference"
2502
  msgstr "Riferimento di memoria non valido"
2503
 
2504
  #: inc/class-job.php:2502
2505
- #: inc/class-job.php:2514
2506
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2507
  msgid "Termination signal"
2508
  msgstr "Segnale di terminazione"
2509
 
2510
  #: inc/class-job.php:2506
2511
- #: inc/class-job.php:2518
2512
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2513
  msgid "Stack fault on coprocessor"
2514
  msgstr "Errore sullo stack del coprocessore"
2515
 
2516
  #: inc/class-job.php:2510
2517
- #: inc/class-job.php:2522
2518
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2519
  msgid "User-defined signal 1"
2520
  msgstr "Segnale utente 1"
2521
 
2522
  #: inc/class-job.php:2514
2523
- #: inc/class-job.php:2526
2524
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2525
  msgid "User-defined signal 2"
2526
  msgstr "Segnale utente 2"
2527
 
2528
  #: inc/class-job.php:2518
2529
- #: inc/class-job.php:2530
2530
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2531
  msgid "Urgent condition on socket"
2532
  msgstr "Condizione urgente sul socket"
2533
 
2534
  #: inc/class-job.php:2522
2535
- #: inc/class-job.php:2534
2536
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2537
  msgid "CPU time limit exceeded"
2538
  msgstr "Superato il limite massimo di tempo della CPU"
2539
 
2540
  #: inc/class-job.php:2526
2541
- #: inc/class-job.php:2538
2542
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2543
  msgid "File size limit exceeded"
2544
  msgstr "Superata la grandezza massima del file"
2545
 
2546
  #: inc/class-job.php:2530
2547
- #: inc/class-job.php:2542
2548
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2549
  msgid "Power failure"
2550
  msgstr "Errore di alimentazione"
2551
 
2552
  #: inc/class-job.php:2534
2553
- #: inc/class-job.php:2546
2554
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2555
  msgid "Bad argument to routine"
2556
  msgstr "Parametri di routine errati"
2557
 
2558
  #: inc/class-job.php:2541
2559
- #: inc/class-job.php:2553
2560
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2561
  msgstr "Il segnale \"%1$s\" (%2$s) è stato inviato allo script!"
2562
 
2563
  #: inc/class-job.php:2575
2564
  #: inc/class-job.php:2588
2565
- #: inc/class-job.php:2587
2566
- #: inc/class-job.php:2600
2567
  msgid "System: %s"
2568
  msgstr "Sistema: %s"
2569
 
2570
  #: inc/class-job.php:2603
2571
- #: inc/class-job.php:2615
2572
  msgid "Exception caught in %1$s: %2$s"
2573
  msgstr "Eccezione individuata in %1$s: %2$s"
2574
 
@@ -2748,6 +2816,7 @@ msgstr ""
2748
 
2749
  #: inc/class-jobtype-wpexp.php:14
2750
  #: inc/class-page-about.php:474
 
2751
  msgid "WordPress XML export"
2752
  msgstr ""
2753
 
@@ -2899,231 +2968,284 @@ msgid "New Job"
2899
  msgstr "Nuovo processo"
2900
 
2901
  #: inc/class-page-about.php:371
 
2902
  msgid "Welcome to BackWPup Pro"
2903
  msgstr "Benvenuti su BackWPup Pro"
2904
 
2905
  #: inc/class-page-about.php:372
2906
  #: inc/class-page-backwpup.php:75
 
2907
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2908
  msgstr "Il wizard di processo di BackWPup rende la pianificazione e la programmazione dei processi di backup un gioco da ragazzi."
2909
 
2910
- #: inc/class-page-about.php:373
2911
- #: inc/class-page-about.php:386
2912
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2913
- msgstr "Usa i tuoi archivi di backup per salvare l'intera installazione di WordPress compreso <code>/wp-content/</code>. Inviali ad un servizio di archiviazione esterno se non vuoi salvare i backup sullo stesso server. Con un unico archivio di backup è possibile ripristinare un'installazione. Utilizza uno strumento come phpMyAdmin per ripristinare i file di backup del database."
2914
-
2915
  #: inc/class-page-about.php:374
 
2916
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2917
  msgstr "Sei pronto ad <a href=\"%1$s\">impostare un processo di backup</a>? Puoi <a href=\"%2$s\">usare il wizards</a> o pianificare il tuo backup in expert mode."
2918
 
2919
  #: inc/class-page-about.php:384
 
2920
  msgid "Welcome to BackWPup"
2921
  msgstr "Benvenuto su BackWPup"
2922
 
2923
  #: inc/class-page-about.php:387
 
2924
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2925
  msgstr "Sei pronto ad impostare un processo di backup? Utilizza una delle procedure guidate (wizard) per pianificare ciò che si desidera salvare."
2926
 
2927
  #: inc/class-page-about.php:400
 
2928
  msgid "Save your database"
2929
  msgstr "Salva il database"
2930
 
2931
  #: inc/class-page-about.php:403
 
2932
  msgid "Save your database regularly"
2933
  msgstr "Salva il databse regolarmente"
2934
 
2935
  #: inc/class-page-about.php:404
 
2936
  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."
2937
  msgstr "Con BackWPup è possibile pianificare il backup del database per avviarlo automaticamente. Con un singolo file di backup è possibile ripristinare il database. Puoi <a href=\"%s\"> impostare un processo di backup </a>, in modo da non dimenticarlo. C'è anche la possibilità di riparare e ottimizzare il database dopo ogni backup."
2938
 
2939
  #: inc/class-page-about.php:409
2940
  #: inc/class-page-about.php:413
 
 
2941
  msgid "WordPress XML Export"
2942
  msgstr ""
2943
 
2944
  #: inc/class-page-about.php:410
 
2945
  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."
2946
  msgstr "È possibile scegliere il formato di esportazione di WordPress in aggiunta o in esclusiva per salvare i dati. Questo funziona anche nei backup automatici. Il vantaggio principale è che puoi importare questi file in un blog con mediante le funzionalità di importazione di WordPress."
2947
 
2948
  #: inc/class-page-about.php:418
 
2949
  msgid "Save all data from the webserver"
2950
  msgstr "Salva tutti i dati dal webserver"
2951
 
2952
  #: inc/class-page-about.php:421
 
2953
  msgid "Save all files"
2954
  msgstr "Salva tutti i file"
2955
 
2956
  #: inc/class-page-about.php:422
 
2957
  msgid "You can backup 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."
2958
  msgstr "Puoi eseguire il backup di tutti gli allegati, incluso i file di sistema, i plugin e i temi in un unico file. Puoi <a href=\"%s\"> creare un processo</a> per aggiornare una copia di backup del file system solo quando i file vengono modificati."
2959
 
2960
  #: inc/class-page-about.php:427
2961
  #: inc/class-page-about.php:431
 
 
2962
  msgid "Security!"
2963
  msgstr "Sicurezza!"
2964
 
2965
  #: inc/class-page-about.php:428
 
2966
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2967
  msgstr "Per impostazione predefinita tutto è crittografato: le connessioni ai servizi esterni, i file locali e l'accesso alle directory."
2968
 
2969
  #: inc/class-page-about.php:436
2970
  #: inc/class-page-about.php:439
 
 
2971
  msgid "Cloud Support"
2972
  msgstr "Supporto cloud"
2973
 
2974
  #: inc/class-page-about.php:440
 
2975
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2976
  msgstr "BackWPup supporta più servizi cloud in parallelo. In questo modo i backup sono ridondanti."
2977
 
2978
  #: inc/class-page-about.php:446
 
2979
  msgid "Features / differences between Free and Pro"
2980
  msgstr "Caratteristiche/differenze tra Free e Pro"
2981
 
2982
  #: inc/class-page-about.php:449
 
2983
  msgid "Features"
2984
  msgstr "Caratteristiche"
2985
 
2986
  #: inc/class-page-about.php:450
 
2987
  msgid "FREE"
2988
  msgstr ""
2989
 
2990
  #: inc/class-page-about.php:451
 
2991
  msgid "PRO"
2992
  msgstr ""
2993
 
2994
  #: inc/class-page-about.php:454
 
2995
  msgid "Complete database backup"
2996
  msgstr "Backup completo del database"
2997
 
2998
  #: inc/class-page-about.php:459
 
2999
  msgid "Complete file backup"
3000
  msgstr "Backup completo dei file"
3001
 
3002
  #: inc/class-page-about.php:464
 
3003
  msgid "Database check"
3004
  msgstr "Controllo database"
3005
 
3006
  #: inc/class-page-about.php:469
 
3007
  msgid "Data compression"
3008
  msgstr "Compressione dati"
3009
 
3010
  #: inc/class-page-about.php:479
 
3011
  msgid "List of installed plugins"
3012
  msgstr "Lista dei plugin istallati"
3013
 
3014
  #: inc/class-page-about.php:484
 
3015
  msgid "Backup archives management"
3016
  msgstr "Gestione degli archivi di backup"
3017
 
3018
  #: inc/class-page-about.php:489
 
3019
  msgid "Log file management"
3020
  msgstr "Gestione dei file di log"
3021
 
3022
  #: inc/class-page-about.php:494
 
3023
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3024
  msgstr "Inizia processo per WP-Cron, URL, system, backend or WP-CLI"
3025
 
3026
  #: inc/class-page-about.php:499
 
3027
  msgid "Log report via email"
3028
  msgstr "Rapporto log via mail"
3029
 
3030
  #: inc/class-page-about.php:504
 
3031
  msgid "Backup to Microsoft Azure"
3032
  msgstr "Backup su Microsoft Azure"
3033
 
3034
  #: inc/class-page-about.php:509
 
3035
  msgid "Backup as email"
3036
  msgstr "Backup su email"
3037
 
3038
  #: inc/class-page-about.php:514
 
3039
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3040
  msgstr "Backup su S3 services (Amazon, Google Storage, Hosteurope e altri)"
3041
 
3042
  #: inc/class-page-about.php:529
 
3043
  msgid "Backup to FTP server"
3044
  msgstr "Backup su server FTP"
3045
 
3046
  #: inc/class-page-about.php:534
 
3047
  msgid "Backup to your web space"
3048
  msgstr "Backup sul tuo spazio web"
3049
 
3050
  #: inc/class-page-about.php:554
 
3051
  msgid "Custom API keys for DropBox and SugarSync"
3052
  msgstr "Custom API keys per DropBox e SugarSync"
3053
 
3054
  #: inc/class-page-about.php:559
 
3055
  msgid "XML database backup as PHPMyAdmin schema"
3056
  msgstr "XML database backup come PHPMyAdmin schema"
3057
 
3058
  #: inc/class-page-about.php:564
 
3059
  msgid "Database backup as mysqldump per command line"
3060
  msgstr "Database backup come mysqldump per linea di comando"
3061
 
3062
  #: inc/class-page-about.php:569
 
3063
  msgid "Database backup for additional MySQL databases"
3064
  msgstr "Database backup per database MySQL aggiuntivi"
3065
 
3066
  #: inc/class-page-about.php:574
 
3067
  msgid "Import and export job settings as XML"
3068
  msgstr "Importa ed esporta le impostazioni dei processi come XML"
3069
 
3070
  #: inc/class-page-about.php:579
 
3071
  msgid "Wizard for system tests"
3072
  msgstr "Wizard per system tests"
3073
 
3074
  #: inc/class-page-about.php:584
 
3075
  msgid "Wizard for scheduled backup jobs"
3076
  msgstr "Wizard per processi di backup programmati"
3077
 
3078
  #: inc/class-page-about.php:589
 
3079
  msgid "Wizard to import settings and backup jobs"
3080
  msgstr "Wizard per importare impostazioni e i processi di backup"
3081
 
3082
  #: inc/class-page-about.php:594
 
3083
  msgid "Differential backup of changed directories to Dropbox"
3084
  msgstr "Backup differenziale delle directory cambiate su Dropbox"
3085
 
3086
  #: inc/class-page-about.php:599
 
3087
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3088
  msgstr "Backup differenziale delle directory cambiate su Rackspace Cloud Files"
3089
 
3090
  #: inc/class-page-about.php:604
 
3091
  msgid "Differential backup of changed directories to S3"
3092
  msgstr "Backup differenziale delle directory cambiate su S3"
3093
 
3094
  #: inc/class-page-about.php:609
 
3095
  msgid "Differential backup of changed directories to MS Azure"
3096
  msgstr "Backup differenziale delle directory cambiate su MS Azure"
3097
 
3098
  #: inc/class-page-about.php:614
 
3099
  msgid "Restore from Folder"
3100
  msgstr "Ripristino dalla Cartella"
3101
 
3102
  #: inc/class-page-about.php:619
 
3103
  msgid "Restore from Google Drive"
3104
  msgstr "Ripristino da Google Drive"
3105
 
3106
  #: inc/class-page-about.php:624
 
3107
  msgid "Restore from Amazon S3"
3108
  msgstr "Ripristino da Amazon S3"
3109
 
3110
  #: inc/class-page-about.php:629
 
3111
  msgid "Restore from Dropbox"
3112
  msgstr "Ripristino da Dropbox"
3113
 
3114
  #: inc/class-page-about.php:634
 
3115
  msgid "Restore from FTP"
3116
  msgstr "Rispristino da FTP"
3117
 
3118
  #: inc/class-page-about.php:639
 
3119
  msgid "<strong>Premium support</strong>"
3120
  msgstr "<strong>Supporto Premium</strong>"
3121
 
3122
  #: inc/class-page-about.php:644
 
3123
  msgid "<strong>Automatic updates</strong>"
3124
  msgstr "<strong>Aggiornamenti automatici</strong>"
3125
 
3126
  #: inc/class-page-about.php:651
 
3127
  msgid "GET PRO"
3128
  msgstr "PASSA ALLA VERSIONE PRO"
3129
 
@@ -3290,11 +3412,6 @@ msgctxt "Dashboard heading"
3290
  msgid "Restoring backups"
3291
  msgstr "Ripristino dei backup"
3292
 
3293
- #: inc/class-page-backwpup.php:77
3294
- #: inc/class-page-backwpup.php:86
3295
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3296
- msgstr "Con un unico archivio di backup è possibile di ripristinare un'installazione. Utilizzare uno strumento come phpMyAdmin per ripristinare i file di backup del database."
3297
-
3298
  #: inc/class-page-backwpup.php:78
3299
  #: inc/class-page-backwpup.php:87
3300
  msgctxt "Dashboard heading"
@@ -4881,33 +4998,65 @@ msgstr "Le Cartelle sono state ripristinate con successo."
4881
 
4882
  #: inc/class-destination-folder-downloader.php:64
4883
  msgid "Could not read data from source file."
4884
- msgstr ""
4885
 
4886
  #: inc/class-destination-folder-downloader.php:69
4887
  msgid "Could not write data into target file."
4888
- msgstr ""
4889
 
4890
  #. translators: $1 is the path of the local file where the backup will be stored
4891
  #: inc/class-destination-folder-downloader.php:141
4892
  msgid "%s is a directory not a file."
4893
- msgstr ""
 
 
 
 
4894
 
4895
  #: inc/class-destination-s3.php:102
4896
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
4897
- msgstr ""
4898
 
4899
- #: inc/class-page-backups.php:575
4900
- msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
 
 
4901
  msgstr ""
4902
 
4903
- #: inc/class-page-settings.php:981
4904
- msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4905
- msgstr ""
 
4906
 
4907
- #: inc/class-destination-s3-downloader.php:76
4908
- msgid "Could not write data to file. Empty source file."
 
 
 
 
4909
  msgstr ""
4910
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4911
  #: inc/class-page-editjob.php:452
4912
  msgid "Preview: "
4913
- msgstr ""
 
 
 
 
31
 
32
  #: backwpup.php:275
33
  #: inc/class-page-backups.php:276
 
34
  #: backwpup.php:286
35
+ #: inc/class-page-backups.php:243
36
  #: vendor_dist/backwpup.php:286
37
  msgid "Folder"
38
  msgstr "Cartella"
77
  #: backwpup.php:324
78
  #: inc/class-page-about.php:519
79
  #: backwpup.php:335
80
+ #: inc/class-page-about.php:508
81
  #: vendor_dist/backwpup.php:335
82
  msgid "Backup to Dropbox"
83
  msgstr "Backup su Dropbox"
84
 
85
  #: backwpup.php:339
86
  #: inc/class-destination-s3.php:41
 
87
  #: backwpup.php:350
88
+ #: inc/class-destination-s3.php:42
89
  #: vendor_dist/backwpup.php:350
90
  msgid "S3 Service"
91
  msgstr ""
117
  #: backwpup.php:377
118
  #: inc/class-page-about.php:524
119
  #: backwpup.php:388
120
+ #: inc/class-page-about.php:513
121
  #: vendor_dist/backwpup.php:388
122
  msgid "Backup to Rackspace Cloud Files"
123
  msgstr "Backup su Rackspace Cloud Files"
131
  #: backwpup.php:397
132
  #: inc/class-page-about.php:539
133
  #: backwpup.php:408
134
+ #: inc/class-page-about.php:528
135
  #: vendor_dist/backwpup.php:408
136
  msgid "Backup to SugarSync"
137
  msgstr "Backup su SugarSync"
208
  #: inc/class-destination-rsc.php:118
209
  #: inc/class-destination-s3.php:214
210
  #: inc/class-destination-sugarsync.php:104
 
211
  #: inc/class-destination-s3.php:245
212
+ #: inc/Pro/class-destination-gdrive.php:462
213
  msgid "Do not delete files while syncing to destination!"
214
  msgstr "Non eliminare i file durante la sincronizzazione verso la destinazione!"
215
 
266
  #: inc/class-destination-folder-downloader.php:55
267
  #: inc/class-destination-ftp-downloader.php:89
268
  #: inc/class-destination-s3-downloader.php:63
 
 
 
269
  #: inc/class-destination-dropbox-downloader.php:104
270
+ #: inc/class-destination-folder-downloader.php:137
271
+ #: inc/class-destination-ftp-downloader.php:126
272
  #: inc/class-destination-s3-downloader.php:112
273
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
274
  msgid "File could not be opened for writing."
275
  msgstr "Non è possibile aprire il file in scrittura."
276
 
279
  #: inc/class-destination-folder-downloader.php:79
280
  #: inc/class-destination-ftp-downloader.php:100
281
  #: inc/class-destination-s3-downloader.php:69
 
 
282
  #: inc/class-destination-dropbox-downloader.php:72
283
+ #: inc/class-destination-ftp-downloader.php:72
284
  #: inc/class-destination-s3-downloader.php:83
285
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
286
  msgid "Could not write data to file."
287
  msgstr "Non è possibile scrivere il file di log."
288
 
337
  #: inc/class-destination-rsc.php:292
338
  #: inc/class-destination-s3.php:825
339
  #: inc/class-destination-s3.php:940
 
340
  #: inc/class-destination-s3.php:843
341
  #: inc/class-destination-s3.php:958
342
+ #: inc/Pro/class-destination-gdrive.php:905
343
  msgid "Can not open source file for transfer."
344
  msgstr "Non è possibile aprire il file sorgente per il trasferimento."
345
 
819
 
820
  #: inc/Pro/class-pro.php:131
821
  #: inc/class-page-about.php:549
822
+ #: inc/class-page-about.php:558
823
  msgid "Backup to Amazon Glacier"
824
  msgstr "Backup su Amazon Glacier"
825
 
826
  #: inc/Pro/class-pro.php:152
827
  #: inc/class-page-about.php:544
828
+ #: inc/class-page-about.php:553
829
  msgid "Backup to Google Drive"
830
  msgstr "Backup su Google Drive"
831
 
855
  #: inc/class-page-backwpup.php:260
856
  #: inc/class-page-backwpup.php:262
857
  #: inc/class-page-settings.php:1134
858
+ #: inc/class-job.php:459
859
+ #: inc/class-page-about.php:365
860
+ #: inc/class-page-about.php:375
861
+ #: inc/class-page-about.php:660
862
+ #: inc/class-page-backwpup.php:254
863
  #: inc/class-page-settings.php:1123
864
  msgid "http://backwpup.com"
865
  msgstr ""
2072
  msgstr "BackWPup assistenza processi"
2073
 
2074
  #: inc/class-job.php:269
2075
+ #: inc/class-job.php:297
2076
  msgid "Starting job"
2077
  msgstr "Inizializzazione processo"
2078
 
2079
  #: inc/class-job.php:284
2080
+ #: inc/class-job.php:314
2081
  msgid "Job Start"
2082
  msgstr "Inizio processo"
2083
 
2084
  #: inc/class-job.php:304
2085
+ #: inc/class-job.php:334
2086
  msgid "Creates manifest file"
2087
  msgstr "Crea il file manifest"
2088
 
2089
  #: inc/class-job.php:326
2090
+ #: inc/class-job.php:356
2091
  msgid "Creates archive"
2092
  msgstr "Crea archivi"
2093
 
2094
  #: inc/class-job.php:332
2095
+ #: inc/class-job.php:362
2096
  msgid "Encrypts the archive"
2097
  msgstr "Cripta l'archivio"
2098
 
2099
  #: inc/class-job.php:373
2100
+ #: inc/class-job.php:403
2101
  msgid "End of Job"
2102
  msgstr "Fine del processo"
2103
 
2104
  #: inc/class-job.php:395
2105
+ #: inc/class-job.php:428
2106
  msgid "BackWPup log for %1$s from %2$s at %3$s"
2107
  msgstr "Log BackWPup per %1$s da %2$s a %3$s"
2108
 
2109
  #: inc/class-job.php:412
2110
+ #: inc/class-job.php:456
2111
  msgctxt "Plugin name; Plugin Version; plugin url"
2112
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
2113
  msgstr "[INFO] %1$s %2$s; Progetto realizzato da Inpsyde GmbH"
2114
 
2115
  #: inc/class-job.php:413
2116
+ #: inc/class-job.php:462
2117
  msgctxt "WordPress Version; Blog url"
2118
  msgid "[INFO] WordPress %1$s on %2$s"
2119
  msgstr "[INFO] WordPress %1$s su %2$s"
2120
 
2121
  #: inc/class-job.php:414
2122
+ #: inc/class-job.php:465
2123
  msgid "Normal"
2124
  msgstr "Normale"
2125
 
2126
  #: inc/class-job.php:417
2127
+ #: inc/class-job.php:468
2128
  msgid "Debug"
2129
  msgstr ""
2130
 
2131
  #: inc/class-job.php:420
2132
+ #: inc/class-job.php:471
2133
  msgid "(translated)"
2134
  msgstr "(tradotto)"
2135
 
2136
  #: inc/class-job.php:422
2137
+ #: inc/class-job.php:474
2138
  msgid "[INFO] Log Level: %1$s %2$s"
2139
  msgstr "[INFO] Livello Log: %1$s %2$s"
2140
 
2141
  #: inc/class-job.php:427
2142
+ #: inc/class-job.php:480
2143
  msgid "[INFO] BackWPup job: %1$s"
2144
  msgstr "[INFO] Processo BackWPup: %1$s"
2145
 
2146
  #: inc/class-job.php:430
2147
+ #: inc/class-job.php:484
2148
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2149
  msgstr "[INFO] Funzionamento con utente: %1$s (%2$d) "
2150
 
2152
  #: inc/class-page-backwpup.php:323
2153
  #: inc/class-page-jobs.php:282
2154
  #: inc/class-page-jobs.php:291
2155
+ #: inc/class-job.php:500
2156
  msgid "Not scheduled!"
2157
  msgstr "Non programmato!"
2158
 
2159
  #: inc/class-job.php:448
2160
  #: inc/class-job.php:458
2161
+ #: inc/class-job.php:507
2162
+ #: inc/class-job.php:519
2163
  msgid "[INFO] Cron: %s; Next: %s "
2164
  msgstr "[INFO] Cron: %s; Prossimo: %s "
2165
 
2166
  #: inc/class-job.php:451
2167
+ #: inc/class-job.php:511
2168
  msgid "[INFO] BackWPup job start with link is active"
2169
  msgstr "[INFO] Il processo BackWPup inizia con link attivo"
2170
 
2171
  #: inc/class-job.php:453
2172
+ #: inc/class-job.php:513
2173
  msgid "[INFO] BackWPup job start with EasyCron.com"
2174
  msgstr "[INFO] Il processo BackWPup inizia con EasyCron.com"
2175
 
2176
  #: inc/class-job.php:461
2177
+ #: inc/class-job.php:523
2178
  msgid "[INFO] BackWPup no automatic job start configured"
2179
  msgstr "[INFO] Nessun avvio automatico di processo BackWPup configurato"
2180
 
2181
  #: inc/class-job.php:465
2182
+ #: inc/class-job.php:527
2183
  msgid "[INFO] BackWPup job started from wp-cron"
2184
  msgstr "[INFO] Il processo BackWPup è partito da wp-cron"
2185
 
2186
  #: inc/class-job.php:467
2187
+ #: inc/class-job.php:529
2188
  msgid "[INFO] BackWPup job started manually"
2189
  msgstr "[INFO] Il processo BackWPup è partito manualmente"
2190
 
2191
  #: inc/class-job.php:469
2192
+ #: inc/class-job.php:531
2193
  msgid "[INFO] BackWPup job started from external url"
2194
  msgstr "[INFO] Il processo BackWPup è partito da url esterno"
2195
 
2196
  #: inc/class-job.php:471
2197
+ #: inc/class-job.php:533
2198
  msgid "[INFO] BackWPup job started form commandline interface"
2199
  msgstr "[INFO] Il processo BackWPup è partito da interfaccia di commandline "
2200
 
2201
  #: inc/class-job.php:480
2202
+ #: inc/class-job.php:544
2203
  msgid "[INFO] PHP ver.:"
2204
  msgstr ""
2205
 
2206
  #: inc/class-job.php:481
2207
+ #: inc/class-job.php:548
2208
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2209
  msgstr "[INFO] Il Max PHP script execution time è di %1$d secondi"
2210
 
2211
  #: inc/class-job.php:485
2212
+ #: inc/class-job.php:555
2213
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2214
  msgstr "[INFO] Il restart dello script è configurato su %1$d secondi"
2215
 
2216
  #: inc/class-job.php:488
2217
+ #: inc/class-job.php:561
2218
  msgid "[INFO] MySQL ver.: %s"
2219
  msgstr ""
2220
 
2221
  #: inc/class-job.php:490
2222
+ #: inc/class-job.php:565
2223
  msgid "[INFO] Web Server: %s"
2224
  msgstr ""
2225
 
2226
  #: inc/class-job.php:494
2227
+ #: inc/class-job.php:571
2228
  msgid "[INFO] curl ver.: %1$s; %2$s"
2229
  msgstr ""
2230
 
2231
  #: inc/class-job.php:496
2232
+ #: inc/class-job.php:576
2233
  msgid "[INFO] Temp folder is: %s"
2234
  msgstr "[INFO] Temp folder è: %s"
2235
 
2236
  #: inc/class-job.php:503
2237
+ #: inc/class-job.php:584
2238
  msgid "[INFO] Logfile is: %s"
2239
  msgstr "[INFO] Logfile è: %s"
2240
 
2241
  #: inc/class-job.php:510
2242
+ #: inc/class-job.php:591
2243
  msgid "[INFO] Backup file is: %s"
2244
  msgstr "[INFO] Il file di backup è: %s"
2245
 
2246
  #: inc/class-job.php:512
2247
+ #: inc/class-job.php:594
2248
  msgid "[INFO] Backup type is: %s"
2249
  msgstr "[INFO] Il tipo di backup è: %s"
2250
 
2251
  #: inc/class-job.php:520
2252
+ #: inc/class-job.php:603
2253
  msgid "Could not write log file"
2254
  msgstr "Non è possibile scrivere il file di log"
2255
 
2256
  #: inc/class-job.php:532
2257
+ #: inc/class-job.php:616
2258
  msgid "No destination correctly defined for backup! Please correct job settings."
2259
  msgstr "Nessuna destinazione definita correttamente per il backup! Correggi le impostazioni del processo."
2260
 
2261
  #: inc/class-job.php:628
2262
+ #: inc/class-job.php:718
2263
  msgid "Cannot write progress to working file. Job will be aborted."
2264
  msgstr "Impossibile scrivere l'avanzamento del processo sul file in esecuzione. Il processo verrà interrotto."
2265
 
2266
  #: inc/class-job.php:700
2267
  #: inc/class-page-jobs.php:786
2268
+ #: inc/class-job.php:793
2269
  msgid "WARNING:"
2270
  msgstr "AVVISO:"
2271
 
2272
  #: inc/class-job.php:709
2273
  #: inc/class-page-jobs.php:784
2274
+ #: inc/class-job.php:802
2275
  msgid "ERROR:"
2276
  msgstr "ERRORE:"
2277
 
2278
  #: inc/class-job.php:713
2279
+ #: inc/class-job.php:806
2280
  msgid "DEPRECATED:"
2281
  msgstr ""
2282
 
2283
  #: inc/class-job.php:716
2284
+ #: inc/class-job.php:809
2285
  msgid "STRICT NOTICE:"
2286
  msgstr "AVVISO IMPORTANTE:"
2287
 
2288
  #: inc/class-job.php:721
2289
+ #: inc/class-job.php:814
2290
  msgid "RECOVERABLE ERROR:"
2291
  msgstr "ERRORE RECUPERABILE:"
2292
 
2293
  #: inc/class-job.php:972
2294
+ #: inc/class-job.php:1091
2295
  msgid "Aborted by user!"
2296
  msgstr "Annullato dall'utente!"
2297
 
2298
  #: inc/class-job.php:1005
2299
+ #: inc/class-job.php:1129
2300
  msgid "One old log deleted"
2301
  msgid_plural "%d old logs deleted"
2302
  msgstr[0] "Un log vecchio eliminato"
2304
 
2305
  #: inc/class-job.php:1012
2306
  #: inc/class-page-jobs.php:784
2307
+ #: inc/class-job.php:1141
2308
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2309
  msgstr "Il processo si è concluso con errori in %s secondi. È necessario risolvere gli errori per l'esecuzione corretta."
2310
 
2311
  #: inc/class-job.php:1014
2312
+ #: inc/class-job.php:1150
2313
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2314
  msgstr "Processo finito con avvisi in% s secondi. Si prega di risolverli per l'esecuzione corretta."
2315
 
2316
  #: inc/class-job.php:1016
2317
  #: inc/class-page-jobs.php:788
2318
+ #: inc/class-job.php:1158
2319
  msgid "Job done in %s seconds."
2320
  msgstr "Processo eseguito in %s secondi."
2321
 
2322
  #: inc/class-job.php:1060
2323
+ #: inc/class-job.php:1212
2324
  msgid "SUCCESSFUL"
2325
  msgstr "SUCCESSO"
2326
 
2327
  #: inc/class-job.php:1062
2328
+ #: inc/class-job.php:1214
2329
  msgid "WARNING"
2330
  msgstr "ATTENZIONE"
2331
 
2332
  #: inc/class-job.php:1065
2333
+ #: inc/class-job.php:1217
2334
  msgid "ERROR"
2335
  msgstr "ERRORE"
2336
 
2337
  #: inc/class-job.php:1068
2338
+ #: inc/class-job.php:1221
2339
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2340
  msgstr ""
2341
 
2342
  #: inc/class-job.php:1180
2343
+ #: inc/class-job.php:1341
2344
  msgid "Restart after %1$d seconds."
2345
  msgstr "Riparte dopo %1$d secondi."
2346
 
2347
  #: inc/class-job.php:1182
2348
+ #: inc/class-job.php:1343
2349
  msgid "Restart after getting signal."
2350
  msgstr "Riprende dopo aver ottenuto il segnale"
2351
 
2352
  #: inc/class-job.php:1357
2353
+ #: inc/class-job.php:1534
2354
  msgid "Job restarts due to inactivity for more than 5 minutes."
2355
  msgstr "Il processo riparte a causa di un'inattività di oltre 5 minuti."
2356
 
2357
  #: inc/class-job.php:1455
2358
+ #: inc/class-job.php:1636
2359
  msgid "Step aborted: too many attempts!"
2360
  msgstr "Step annullato: troppi tentativi!"
2361
 
2362
  #: inc/class-job.php:1528
2363
+ #: inc/class-job.php:1716
2364
  msgid "%d. Trying to create backup archive &hellip;"
2365
  msgstr "%d. Provo a creare l'archivio di backup &hellip;"
2366
 
2367
  #: inc/class-job.php:1536
2368
+ #: inc/class-job.php:1729
2369
  msgctxt "Archive compression method"
2370
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2371
  msgstr "Compressione file come %s. Si prega di pazientare, potrebbe richiedere qualche istante."
2372
 
2373
  #: inc/class-job.php:1543
2374
+ #: inc/class-job.php:1742
2375
  msgid "Adding Extra files to Archive"
2376
  msgstr "Aggiunti file extra all'archivio"
2377
 
2378
  #: inc/class-job.php:1554
2379
  #: inc/class-job.php:1614
2380
+ #: inc/class-job.php:1754
2381
+ #: inc/class-job.php:1823
2382
  msgid "Cannot create backup archive correctly. Aborting creation."
2383
  msgstr "Impossibile creare correttamente il file d'archivio. Creazione annullata."
2384
 
2385
  #: inc/class-job.php:1570
2386
+ #: inc/class-job.php:1772
2387
  msgid "Archiving Folder: %s"
2388
  msgstr "Cartella di archiviazione: %s"
2389
 
2390
  #: inc/class-job.php:1624
2391
+ #: inc/class-job.php:1834
2392
  msgid "Backup archive created."
2393
  msgstr "Archivio di backup creato."
2394
 
2395
  #: inc/class-job.php:1638
2396
+ #: inc/class-job.php:1849
2397
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2398
  msgstr "L'archivio di backup è troppo grande per le operazioni sui file con questa versione di PHP. Si potrebbe prendere in considerazione la divisione del processo di backup in più processi con meno file ciascuno."
2399
 
2400
  #: inc/class-job.php:1641
2401
+ #: inc/class-job.php:1857
2402
  msgid "Archive size is %s."
2403
  msgstr "La grandezza dell'archivio è %s."
2404
 
2405
  #: inc/class-job.php:1644
2406
+ #: inc/class-job.php:1864
2407
  msgid "%1$d Files with %2$s in Archive."
2408
  msgstr "%1$d Files con %2$s nell'archivio."
2409
 
2410
  #: inc/class-job.php:1677
2411
+ #: inc/class-job.php:1902
2412
  msgid "No encryption key was provided. Aborting encryption."
2413
  msgstr "Nessuna chiave di criptazione disponibile. Criptazione annullata."
2414
 
2415
  #: inc/class-job.php:1684
2416
+ #: inc/class-job.php:1912
2417
  msgid "%d. Trying to encrypt archive &hellip;"
2418
  msgstr "%d. Criptazione dell'archivio in corso &hellip;"
2419
 
2420
  #: inc/class-job.php:1694
2421
+ #: inc/class-job.php:1925
2422
  msgid "Cannot open the archive for reading. Aborting encryption."
2423
  msgstr "Impossibile aprire l'archivio in lettura. Criptazione annullata."
2424
 
2425
  #: inc/class-job.php:1700
2426
+ #: inc/class-job.php:1932
2427
  msgid "Cannot write the encrypted archive. Aborting encryption."
2428
  msgstr "Impossibile accedere in scrittura all'archivio criptato. Criptazione annullata."
2429
 
2430
  #: inc/class-job.php:1757
2431
+ #: inc/class-job.php:1991
2432
  msgid "Encrypted %s of data."
2433
  msgstr "%s dati criptati."
2434
 
2435
  #: inc/class-job.php:1761
2436
+ #: inc/class-job.php:1996
2437
  msgid "Unable to delete unencrypted archive."
2438
  msgstr "Non è possibile eliminare l'archivio non criptato. "
2439
 
2440
  #: inc/class-job.php:1765
2441
+ #: inc/class-job.php:2003
2442
  msgid "Unable to rename encrypted archive."
2443
  msgstr "Non è possibile rinominare l'archivio criptato."
2444
 
2445
  #: inc/class-job.php:1770
2446
+ #: inc/class-job.php:2009
2447
  msgid "Archive has been successfully encrypted."
2448
  msgstr "L'archivio è stato criptato con successo."
2449
 
2450
  #: inc/class-job.php:1819
2451
+ #: inc/class-job.php:2059
2452
  #, fuzzy
2453
  msgctxt "Folder name"
2454
  msgid "Folder %s does not exist"
2455
  msgstr "La cartella %s non esiste"
2456
 
2457
  #: inc/class-job.php:1825
2458
+ #: inc/class-job.php:2067
2459
  #, fuzzy
2460
  msgctxt "Folder name"
2461
  msgid "Folder %s is not readable"
2462
  msgstr "La cartella \"%s\" non è leggibile!"
2463
 
2464
  #: inc/class-job.php:1848
2465
+ #: inc/class-job.php:2096
2466
  msgid "Link \"%s\" not following."
2467
  msgstr "Link \"%s\" non funzionante."
2468
 
2469
  #: inc/class-job.php:1850
2470
+ #: inc/class-job.php:2100
2471
  msgid "File \"%s\" is not readable!"
2472
  msgstr "Il file \"%s\" non è leggibile!"
2473
 
2474
  #: inc/class-job.php:1854
2475
+ #: inc/class-job.php:2107
2476
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2477
  msgstr "La dimensione del file %s non può essere recuperata. Il file potrebbe essere troppo grande e non sarà aggiunto alla coda."
2478
 
2479
  #: inc/class-job.php:1937
2480
+ #: inc/class-job.php:2197
2481
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2482
  msgstr "%d. Provo a generare un manifest file&#160;&hellip;"
2483
 
2484
  #: inc/class-job.php:1993
2485
+ #: inc/class-job.php:2264
2486
  msgid "You may have noticed the manifest.json file in this archive."
2487
  msgstr "Potresti aver notato il manifest.json file in questo archivio."
2488
 
2489
  #: inc/class-job.php:1994
2490
+ #: inc/class-job.php:2265
2491
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2492
  msgstr "manifest.json potrebbe essere necessario per poi ripristinare un backup da questo archivio."
2493
 
2494
  #: inc/class-job.php:1995
2495
+ #: inc/class-job.php:2268
2496
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2497
  msgstr "Si prega di lasciare manifest.json intatto e al suo posto. In caso contrario può essere ignorato."
2498
 
2499
  #: inc/class-job.php:2005
2500
+ #: inc/class-job.php:2282
2501
  msgid "Added manifest.json file with %1$s to backup file list."
2502
  msgstr "Aggiunto il file manifest.json con %1$s alla lista di backup dei file."
2503
 
2504
  #: inc/class-job.php:2044
2505
+ #: inc/class-job.php:2324
2506
  msgid "Wrong BackWPup JobID"
2507
  msgstr "BackWPup JobID Errato"
2508
 
2509
  #: inc/class-job.php:2057
2510
+ #: inc/class-job.php:2337
2511
  msgid "A BackWPup job is already running"
2512
  msgstr "Un processo di BackWPup è già in esecuzione"
2513
 
2514
  #: inc/class-job.php:2439
2515
+ #: inc/class-job.php:2719
2516
  msgid "exec command is not active."
2517
  msgstr "il comando exec non è attivo."
2518
 
2519
  #: inc/class-job.php:2444
2520
+ #: inc/class-job.php:2725
2521
  msgid "mysqldump binary not found."
2522
  msgstr "mysqldump binary non trovato."
2523
 
2524
  #: inc/class-job.php:2470
2525
+ #: inc/class-job.php:2752
2526
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2527
  msgid "Hangup detected on controlling terminal or death of controlling process"
2528
  msgstr "Connessione saltata durante il controllo del terminale o il processo è stato terminato"
2529
 
2530
  #: inc/class-job.php:2474
2531
+ #: inc/class-job.php:2759
2532
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2533
  msgid "Interrupt from keyboard"
2534
  msgstr "Interrotto da tastiera"
2535
 
2536
  #: inc/class-job.php:2478
2537
+ #: inc/class-job.php:2766
2538
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2539
  msgid "Quit from keyboard"
2540
  msgstr "Esci da tastiera"
2541
 
2542
  #: inc/class-job.php:2482
2543
+ #: inc/class-job.php:2773
2544
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2545
  msgid "Illegal Instruction"
2546
  msgstr "Istruzioni non valide"
2547
 
2548
  #: inc/class-job.php:2486
2549
+ #: inc/class-job.php:2780
2550
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2551
  msgid "Abort signal from abort(3)"
2552
  msgstr "Segnale di annullamento da abort(3)"
2553
 
2554
  #: inc/class-job.php:2490
2555
+ #: inc/class-job.php:2787
2556
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2557
  msgid "Bus error (bad memory access)"
2558
  msgstr "Errore bus (errore di accesso alla memoria)"
2559
 
2560
  #: inc/class-job.php:2494
2561
+ #: inc/class-job.php:2794
2562
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2563
  msgid "Floating point exception"
2564
  msgstr "Eccezione floating point"
2565
 
2566
  #: inc/class-job.php:2498
2567
+ #: inc/class-job.php:2801
2568
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2569
  msgid "Invalid memory reference"
2570
  msgstr "Riferimento di memoria non valido"
2571
 
2572
  #: inc/class-job.php:2502
2573
+ #: inc/class-job.php:2808
2574
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2575
  msgid "Termination signal"
2576
  msgstr "Segnale di terminazione"
2577
 
2578
  #: inc/class-job.php:2506
2579
+ #: inc/class-job.php:2815
2580
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2581
  msgid "Stack fault on coprocessor"
2582
  msgstr "Errore sullo stack del coprocessore"
2583
 
2584
  #: inc/class-job.php:2510
2585
+ #: inc/class-job.php:2822
2586
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2587
  msgid "User-defined signal 1"
2588
  msgstr "Segnale utente 1"
2589
 
2590
  #: inc/class-job.php:2514
2591
+ #: inc/class-job.php:2829
2592
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2593
  msgid "User-defined signal 2"
2594
  msgstr "Segnale utente 2"
2595
 
2596
  #: inc/class-job.php:2518
2597
+ #: inc/class-job.php:2836
2598
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2599
  msgid "Urgent condition on socket"
2600
  msgstr "Condizione urgente sul socket"
2601
 
2602
  #: inc/class-job.php:2522
2603
+ #: inc/class-job.php:2843
2604
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2605
  msgid "CPU time limit exceeded"
2606
  msgstr "Superato il limite massimo di tempo della CPU"
2607
 
2608
  #: inc/class-job.php:2526
2609
+ #: inc/class-job.php:2850
2610
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2611
  msgid "File size limit exceeded"
2612
  msgstr "Superata la grandezza massima del file"
2613
 
2614
  #: inc/class-job.php:2530
2615
+ #: inc/class-job.php:2857
2616
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2617
  msgid "Power failure"
2618
  msgstr "Errore di alimentazione"
2619
 
2620
  #: inc/class-job.php:2534
2621
+ #: inc/class-job.php:2864
2622
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2623
  msgid "Bad argument to routine"
2624
  msgstr "Parametri di routine errati"
2625
 
2626
  #: inc/class-job.php:2541
2627
+ #: inc/class-job.php:2876
2628
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2629
  msgstr "Il segnale \"%1$s\" (%2$s) è stato inviato allo script!"
2630
 
2631
  #: inc/class-job.php:2575
2632
  #: inc/class-job.php:2588
2633
+ #: inc/class-job.php:2912
2634
+ #: inc/class-job.php:2925
2635
  msgid "System: %s"
2636
  msgstr "Sistema: %s"
2637
 
2638
  #: inc/class-job.php:2603
2639
+ #: inc/class-job.php:2942
2640
  msgid "Exception caught in %1$s: %2$s"
2641
  msgstr "Eccezione individuata in %1$s: %2$s"
2642
 
2816
 
2817
  #: inc/class-jobtype-wpexp.php:14
2818
  #: inc/class-page-about.php:474
2819
+ #: inc/class-page-about.php:463
2820
  msgid "WordPress XML export"
2821
  msgstr ""
2822
 
2968
  msgstr "Nuovo processo"
2969
 
2970
  #: inc/class-page-about.php:371
2971
+ #: inc/class-page-about.php:366
2972
  msgid "Welcome to BackWPup Pro"
2973
  msgstr "Benvenuti su BackWPup Pro"
2974
 
2975
  #: inc/class-page-about.php:372
2976
  #: inc/class-page-backwpup.php:75
2977
+ #: inc/class-page-about.php:367
2978
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2979
  msgstr "Il wizard di processo di BackWPup rende la pianificazione e la programmazione dei processi di backup un gioco da ragazzi."
2980
 
 
 
 
 
 
2981
  #: inc/class-page-about.php:374
2982
+ #: inc/class-page-about.php:369
2983
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2984
  msgstr "Sei pronto ad <a href=\"%1$s\">impostare un processo di backup</a>? Puoi <a href=\"%2$s\">usare il wizards</a> o pianificare il tuo backup in expert mode."
2985
 
2986
  #: inc/class-page-about.php:384
2987
+ #: inc/class-page-about.php:376
2988
  msgid "Welcome to BackWPup"
2989
  msgstr "Benvenuto su BackWPup"
2990
 
2991
  #: inc/class-page-about.php:387
2992
+ #: inc/class-page-about.php:379
2993
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2994
  msgstr "Sei pronto ad impostare un processo di backup? Utilizza una delle procedure guidate (wizard) per pianificare ciò che si desidera salvare."
2995
 
2996
  #: inc/class-page-about.php:400
2997
+ #: inc/class-page-about.php:389
2998
  msgid "Save your database"
2999
  msgstr "Salva il database"
3000
 
3001
  #: inc/class-page-about.php:403
3002
+ #: inc/class-page-about.php:392
3003
  msgid "Save your database regularly"
3004
  msgstr "Salva il databse regolarmente"
3005
 
3006
  #: inc/class-page-about.php:404
3007
+ #: inc/class-page-about.php:393
3008
  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."
3009
  msgstr "Con BackWPup è possibile pianificare il backup del database per avviarlo automaticamente. Con un singolo file di backup è possibile ripristinare il database. Puoi <a href=\"%s\"> impostare un processo di backup </a>, in modo da non dimenticarlo. C'è anche la possibilità di riparare e ottimizzare il database dopo ogni backup."
3010
 
3011
  #: inc/class-page-about.php:409
3012
  #: inc/class-page-about.php:413
3013
+ #: inc/class-page-about.php:398
3014
+ #: inc/class-page-about.php:402
3015
  msgid "WordPress XML Export"
3016
  msgstr ""
3017
 
3018
  #: inc/class-page-about.php:410
3019
+ #: inc/class-page-about.php:399
3020
  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."
3021
  msgstr "È possibile scegliere il formato di esportazione di WordPress in aggiunta o in esclusiva per salvare i dati. Questo funziona anche nei backup automatici. Il vantaggio principale è che puoi importare questi file in un blog con mediante le funzionalità di importazione di WordPress."
3022
 
3023
  #: inc/class-page-about.php:418
3024
+ #: inc/class-page-about.php:407
3025
  msgid "Save all data from the webserver"
3026
  msgstr "Salva tutti i dati dal webserver"
3027
 
3028
  #: inc/class-page-about.php:421
3029
+ #: inc/class-page-about.php:410
3030
  msgid "Save all files"
3031
  msgstr "Salva tutti i file"
3032
 
3033
  #: inc/class-page-about.php:422
3034
+ #: inc/class-page-about.php:411
3035
  msgid "You can backup 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."
3036
  msgstr "Puoi eseguire il backup di tutti gli allegati, incluso i file di sistema, i plugin e i temi in un unico file. Puoi <a href=\"%s\"> creare un processo</a> per aggiornare una copia di backup del file system solo quando i file vengono modificati."
3037
 
3038
  #: inc/class-page-about.php:427
3039
  #: inc/class-page-about.php:431
3040
+ #: inc/class-page-about.php:416
3041
+ #: inc/class-page-about.php:420
3042
  msgid "Security!"
3043
  msgstr "Sicurezza!"
3044
 
3045
  #: inc/class-page-about.php:428
3046
+ #: inc/class-page-about.php:417
3047
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3048
  msgstr "Per impostazione predefinita tutto è crittografato: le connessioni ai servizi esterni, i file locali e l'accesso alle directory."
3049
 
3050
  #: inc/class-page-about.php:436
3051
  #: inc/class-page-about.php:439
3052
+ #: inc/class-page-about.php:425
3053
+ #: inc/class-page-about.php:428
3054
  msgid "Cloud Support"
3055
  msgstr "Supporto cloud"
3056
 
3057
  #: inc/class-page-about.php:440
3058
+ #: inc/class-page-about.php:429
3059
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3060
  msgstr "BackWPup supporta più servizi cloud in parallelo. In questo modo i backup sono ridondanti."
3061
 
3062
  #: inc/class-page-about.php:446
3063
+ #: inc/class-page-about.php:435
3064
  msgid "Features / differences between Free and Pro"
3065
  msgstr "Caratteristiche/differenze tra Free e Pro"
3066
 
3067
  #: inc/class-page-about.php:449
3068
+ #: inc/class-page-about.php:438
3069
  msgid "Features"
3070
  msgstr "Caratteristiche"
3071
 
3072
  #: inc/class-page-about.php:450
3073
+ #: inc/class-page-about.php:439
3074
  msgid "FREE"
3075
  msgstr ""
3076
 
3077
  #: inc/class-page-about.php:451
3078
+ #: inc/class-page-about.php:440
3079
  msgid "PRO"
3080
  msgstr ""
3081
 
3082
  #: inc/class-page-about.php:454
3083
+ #: inc/class-page-about.php:443
3084
  msgid "Complete database backup"
3085
  msgstr "Backup completo del database"
3086
 
3087
  #: inc/class-page-about.php:459
3088
+ #: inc/class-page-about.php:448
3089
  msgid "Complete file backup"
3090
  msgstr "Backup completo dei file"
3091
 
3092
  #: inc/class-page-about.php:464
3093
+ #: inc/class-page-about.php:453
3094
  msgid "Database check"
3095
  msgstr "Controllo database"
3096
 
3097
  #: inc/class-page-about.php:469
3098
+ #: inc/class-page-about.php:458
3099
  msgid "Data compression"
3100
  msgstr "Compressione dati"
3101
 
3102
  #: inc/class-page-about.php:479
3103
+ #: inc/class-page-about.php:468
3104
  msgid "List of installed plugins"
3105
  msgstr "Lista dei plugin istallati"
3106
 
3107
  #: inc/class-page-about.php:484
3108
+ #: inc/class-page-about.php:473
3109
  msgid "Backup archives management"
3110
  msgstr "Gestione degli archivi di backup"
3111
 
3112
  #: inc/class-page-about.php:489
3113
+ #: inc/class-page-about.php:478
3114
  msgid "Log file management"
3115
  msgstr "Gestione dei file di log"
3116
 
3117
  #: inc/class-page-about.php:494
3118
+ #: inc/class-page-about.php:483
3119
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3120
  msgstr "Inizia processo per WP-Cron, URL, system, backend or WP-CLI"
3121
 
3122
  #: inc/class-page-about.php:499
3123
+ #: inc/class-page-about.php:488
3124
  msgid "Log report via email"
3125
  msgstr "Rapporto log via mail"
3126
 
3127
  #: inc/class-page-about.php:504
3128
+ #: inc/class-page-about.php:493
3129
  msgid "Backup to Microsoft Azure"
3130
  msgstr "Backup su Microsoft Azure"
3131
 
3132
  #: inc/class-page-about.php:509
3133
+ #: inc/class-page-about.php:498
3134
  msgid "Backup as email"
3135
  msgstr "Backup su email"
3136
 
3137
  #: inc/class-page-about.php:514
3138
+ #: inc/class-page-about.php:503
3139
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3140
  msgstr "Backup su S3 services (Amazon, Google Storage, Hosteurope e altri)"
3141
 
3142
  #: inc/class-page-about.php:529
3143
+ #: inc/class-page-about.php:518
3144
  msgid "Backup to FTP server"
3145
  msgstr "Backup su server FTP"
3146
 
3147
  #: inc/class-page-about.php:534
3148
+ #: inc/class-page-about.php:523
3149
  msgid "Backup to your web space"
3150
  msgstr "Backup sul tuo spazio web"
3151
 
3152
  #: inc/class-page-about.php:554
3153
+ #: inc/class-page-about.php:563
3154
  msgid "Custom API keys for DropBox and SugarSync"
3155
  msgstr "Custom API keys per DropBox e SugarSync"
3156
 
3157
  #: inc/class-page-about.php:559
3158
+ #: inc/class-page-about.php:568
3159
  msgid "XML database backup as PHPMyAdmin schema"
3160
  msgstr "XML database backup come PHPMyAdmin schema"
3161
 
3162
  #: inc/class-page-about.php:564
3163
+ #: inc/class-page-about.php:573
3164
  msgid "Database backup as mysqldump per command line"
3165
  msgstr "Database backup come mysqldump per linea di comando"
3166
 
3167
  #: inc/class-page-about.php:569
3168
+ #: inc/class-page-about.php:578
3169
  msgid "Database backup for additional MySQL databases"
3170
  msgstr "Database backup per database MySQL aggiuntivi"
3171
 
3172
  #: inc/class-page-about.php:574
3173
+ #: inc/class-page-about.php:583
3174
  msgid "Import and export job settings as XML"
3175
  msgstr "Importa ed esporta le impostazioni dei processi come XML"
3176
 
3177
  #: inc/class-page-about.php:579
3178
+ #: inc/class-page-about.php:588
3179
  msgid "Wizard for system tests"
3180
  msgstr "Wizard per system tests"
3181
 
3182
  #: inc/class-page-about.php:584
3183
+ #: inc/class-page-about.php:593
3184
  msgid "Wizard for scheduled backup jobs"
3185
  msgstr "Wizard per processi di backup programmati"
3186
 
3187
  #: inc/class-page-about.php:589
3188
+ #: inc/class-page-about.php:598
3189
  msgid "Wizard to import settings and backup jobs"
3190
  msgstr "Wizard per importare impostazioni e i processi di backup"
3191
 
3192
  #: inc/class-page-about.php:594
3193
+ #: inc/class-page-about.php:603
3194
  msgid "Differential backup of changed directories to Dropbox"
3195
  msgstr "Backup differenziale delle directory cambiate su Dropbox"
3196
 
3197
  #: inc/class-page-about.php:599
3198
+ #: inc/class-page-about.php:608
3199
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3200
  msgstr "Backup differenziale delle directory cambiate su Rackspace Cloud Files"
3201
 
3202
  #: inc/class-page-about.php:604
3203
+ #: inc/class-page-about.php:613
3204
  msgid "Differential backup of changed directories to S3"
3205
  msgstr "Backup differenziale delle directory cambiate su S3"
3206
 
3207
  #: inc/class-page-about.php:609
3208
+ #: inc/class-page-about.php:618
3209
  msgid "Differential backup of changed directories to MS Azure"
3210
  msgstr "Backup differenziale delle directory cambiate su MS Azure"
3211
 
3212
  #: inc/class-page-about.php:614
3213
+ #: inc/class-page-about.php:623
3214
  msgid "Restore from Folder"
3215
  msgstr "Ripristino dalla Cartella"
3216
 
3217
  #: inc/class-page-about.php:619
3218
+ #: inc/class-page-about.php:628
3219
  msgid "Restore from Google Drive"
3220
  msgstr "Ripristino da Google Drive"
3221
 
3222
  #: inc/class-page-about.php:624
3223
+ #: inc/class-page-about.php:633
3224
  msgid "Restore from Amazon S3"
3225
  msgstr "Ripristino da Amazon S3"
3226
 
3227
  #: inc/class-page-about.php:629
3228
+ #: inc/class-page-about.php:638
3229
  msgid "Restore from Dropbox"
3230
  msgstr "Ripristino da Dropbox"
3231
 
3232
  #: inc/class-page-about.php:634
3233
+ #: inc/class-page-about.php:643
3234
  msgid "Restore from FTP"
3235
  msgstr "Rispristino da FTP"
3236
 
3237
  #: inc/class-page-about.php:639
3238
+ #: inc/class-page-about.php:648
3239
  msgid "<strong>Premium support</strong>"
3240
  msgstr "<strong>Supporto Premium</strong>"
3241
 
3242
  #: inc/class-page-about.php:644
3243
+ #: inc/class-page-about.php:653
3244
  msgid "<strong>Automatic updates</strong>"
3245
  msgstr "<strong>Aggiornamenti automatici</strong>"
3246
 
3247
  #: inc/class-page-about.php:651
3248
+ #: inc/class-page-about.php:660
3249
  msgid "GET PRO"
3250
  msgstr "PASSA ALLA VERSIONE PRO"
3251
 
3412
  msgid "Restoring backups"
3413
  msgstr "Ripristino dei backup"
3414
 
 
 
 
 
 
3415
  #: inc/class-page-backwpup.php:78
3416
  #: inc/class-page-backwpup.php:87
3417
  msgctxt "Dashboard heading"
4998
 
4999
  #: inc/class-destination-folder-downloader.php:64
5000
  msgid "Could not read data from source file."
5001
+ msgstr "Impossibile leggere il file sorgente."
5002
 
5003
  #: inc/class-destination-folder-downloader.php:69
5004
  msgid "Could not write data into target file."
5005
+ msgstr "Non è possibile scrivere il file selezionato."
5006
 
5007
  #. translators: $1 is the path of the local file where the backup will be stored
5008
  #: inc/class-destination-folder-downloader.php:141
5009
  msgid "%s is a directory not a file."
5010
+ msgstr "%s è una cartella, non un file."
5011
+
5012
+ #: inc/class-destination-s3-downloader.php:76
5013
+ msgid "Could not write data to file. Empty source file."
5014
+ msgstr "Impossibile scrivere il file. il file sorgente è vuoto."
5015
 
5016
  #: inc/class-destination-s3.php:102
5017
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5018
+ msgstr "Multipart divide il file in più blocchi durante il caricamento. <br /> Ciò è necessario per visualizzare il processo di caricamento e trasferire file più grandi. <br /> Non funziona con Google o DreamHost."
5019
 
5020
+ #: inc/class-page-about.php:365
5021
+ #: inc/class-page-about.php:375
5022
+ #: inc/class-page-backwpup.php:254
5023
+ msgid "BackWPup banner"
5024
  msgstr ""
5025
 
5026
+ #: inc/class-page-about.php:368
5027
+ #: inc/class-page-about.php:378
5028
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5029
+ msgstr "Usa i tuoi archivi di backup per salvare l'intera installazione di WordPress, incluso <code> / wp-content / </ code>. Trasferiscili mediante un servizio di archiviazione esterno se non desideri salvare i backup sullo stesso server. Con un singolo archivio di backup è possibile ripristinare un'installazione. Utilizza la funzionalità di ripristino integrata per ripristinare il tuo sito direttamente dal tuo backend WordPress o dall'app Restore Standalone nel caso in cui il tuo sito venga completamente distrutto."
5030
 
5031
+ #: inc/class-page-about.php:533
5032
+ msgid "Restore manually uploaded Backup Archives"
5033
+ msgstr "Ripristina gli archivi di backup caricati manualmente"
5034
+
5035
+ #: inc/class-page-about.php:538
5036
+ msgid "Standalone Restore App"
5037
  msgstr ""
5038
 
5039
+ #: inc/class-page-about.php:543
5040
+ msgid "Encrypt Backup Archives"
5041
+ msgstr "Cripta gli Archivi di Backup"
5042
+
5043
+ #: inc/class-page-about.php:548
5044
+ msgid "Restore Encrypted Backups"
5045
+ msgstr "Ripristina gli Archivi di Backup"
5046
+
5047
+ #: inc/class-page-backups.php:575
5048
+ msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5049
+ msgstr "Sembra impossibile memorizzare la tua chiave privata, assicurati che la cartella %s sia accessibile in scrittura."
5050
+
5051
+ #: inc/class-page-backwpup.php:77
5052
+ #: inc/class-page-backwpup.php:86
5053
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5054
+ msgstr "Con un singolo archivio di backup è possibile ripristinare un'installazione. Utilizza la nostra funzione di ripristino, che è integrata in BackWPup Pro, per ripristinare il tuo sito web direttamente dal tuo backend WordPress. Forniamo anche un'app standalone di ripristino con la versione Pro per ripristinare il tuo sito nel caso in cui sia completamente distrutto."
5055
+
5056
  #: inc/class-page-editjob.php:452
5057
  msgid "Preview: "
5058
+ msgstr "Anteprima:"
5059
+
5060
+ #: inc/class-page-settings.php:981
5061
+ msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
5062
+ msgstr "<strong>Nota</strong>: desideri un supporto più rapido? Gli utenti Pro possono contattare BackWPup direttamente dal plug-in."
languages/backwpup-ja_JP.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "フォルダ"
@@ -53,24 +53,24 @@ msgstr "FTPにバックアップ"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Dropboxにバックアップ"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3サービス"
@@ -101,8 +101,8 @@ msgstr "RSC"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Rackspaceのクラウドファイルにバックアップ"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "SugarSyncにバックアップ"
@@ -178,8 +178,8 @@ msgstr "新規ジョブを追加"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "ログ"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "Dropbox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "ログイン"
472
 
@@ -480,16 +480,16 @@ msgstr "認証"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "認証されていません!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "アカウントを作成"
495
 
@@ -499,11 +499,11 @@ msgstr "アカウントを作成"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "認証済み!"
509
 
@@ -555,10 +555,10 @@ msgstr "BackWPupは完全な読み取り権限を持っており、全体をDrop
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "バックアップ設定"
564
 
@@ -577,10 +577,10 @@ msgstr "バックアップアーカイブを保存するサブフォルダを指
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "ファイルを削除"
586
 
@@ -598,17 +598,17 @@ msgstr "ファイルを削除"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "フォルダ内に保持するファイルの数"
614
 
@@ -621,12 +621,12 @@ msgstr "フォルダ内に保持するファイルの数"
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "宛先への同期中にファイルを削除しない!"
664
 
@@ -669,22 +669,22 @@ msgstr "%d. Dropboxにバックアップファイルを送信中..."
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr "Dropboxに%sが利用可能"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Dropboxに認証されていません!"
690
 
@@ -697,26 +697,26 @@ msgstr "Dropboxへアップロード..."
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "バックアップで%sに転送"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "アップロードされたファイルのサイズと、ローカルファイルサイズが一致しません。"
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr "%sエラー転送するバックアップ。"
722
 
@@ -744,9 +744,9 @@ msgstr ""
744
  #: inc/class-destination-email.php:38
745
  #: inc/pro/class-destination-email.php:16
746
  #: inc/pro/class-destination-email.php:18
 
747
  #: inc/Pro/class-destination-email.php:16
748
  #: inc/Pro/class-destination-email.php:18
749
- #: inc/class-destination-email.php:39
750
  msgid "Email address"
751
  msgstr "メールアドレス"
752
 
@@ -759,10 +759,10 @@ msgstr ""
759
  #: inc/class-destination-email.php:49
760
  #: inc/pro/class-destination-email.php:29
761
  #: inc/pro/class-destination-email.php:30
762
- #: inc/Pro/class-destination-email.php:29
763
- #: inc/Pro/class-destination-email.php:30
764
  #: inc/class-destination-email.php:52
765
  #: inc/class-destination-email.php:56
 
 
766
  msgid "Send test email"
767
  msgstr "テストメールを送信"
768
 
@@ -837,9 +837,9 @@ msgstr "SMTPホスト名"
837
  #: inc/class-destination-email.php:98
838
  #: inc/class-destination-ftp.php:31
839
  #: inc/pro/class-destination-ftp.php:21
840
- #: inc/Pro/class-destination-ftp.php:35
841
  #: inc/class-destination-email.php:124
842
  #: inc/class-destination-ftp.php:56
 
843
  msgid "Port:"
844
  msgstr "ポート:"
845
 
@@ -858,10 +858,10 @@ msgstr "SMTP セキュア接続"
858
  #: inc/class-page-settings.php:328
859
  #: inc/pro/class-jobtype-dbdump.php:157
860
  #: inc/pro/class-jobtype-dbdump.php:205
861
- #: inc/Pro/class-jobtype-dbdump.php:157
862
- #: inc/Pro/class-jobtype-dbdump.php:205
863
  #: inc/class-destination-email.php:141
864
  #: inc/class-page-settings.php:837
 
 
865
  msgid "none"
866
  msgstr "なし"
867
 
@@ -984,8 +984,8 @@ msgstr "FTP接続のタイムアウト"
984
  #: inc/class-destination-ftp.php:87
985
  #: inc/class-page-logs.php:257
986
  #: inc/class-page-settings.php:466
987
- #: inc/class-page-logs.php:288
988
  #: inc/class-destination-ftp.php:137
 
989
  msgid "seconds"
990
  msgstr "秒"
991
 
@@ -1140,15 +1140,15 @@ msgstr "バックアップをFTPサーバーに転送する: %s"
1140
  #: inc/pro/class-destination-glacier.php:468
1141
  #: inc/pro/class-destination-rsc.php:226
1142
  #: inc/pro/class-destination-rsc.php:259
 
 
1143
  #: inc/class-destination-rsc.php:292
 
 
1144
  #: inc/Pro/class-destination-gdrive.php:905
1145
  #: inc/Pro/class-destination-glacier.php:470
1146
  #: inc/Pro/class-destination-rsc.php:228
1147
  #: inc/Pro/class-destination-rsc.php:261
1148
- #: inc/class-destination-msazure.php:275
1149
- #: inc/class-destination-s3.php:843
1150
- #: inc/class-destination-s3.php:958
1151
- #: inc/class-destination-ftp.php:673
1152
  msgid "Can not open source file for transfer."
1153
  msgstr ""
1154
 
@@ -1197,8 +1197,8 @@ msgstr "コンテナ内のフォルダ"
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
1200
- #: inc/Pro/class-destination-glacier.php:96
1201
  #: inc/class-destination-s3.php:215
 
1202
  msgid "File deletion"
1203
  msgstr "ファイルの削除"
1204
 
@@ -1221,15 +1221,15 @@ msgstr "%d. Microsoft Azure (Blob)にバックアップを送ってみてくだ
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
1224
- #: inc/Pro/class-destination-msazure.php:144
1225
  #: inc/class-destination-msazure.php:237
 
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "MS Azureのコンテナ\"%s\"は存在しません!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
1231
- #: inc/Pro/class-destination-msazure.php:148
1232
  #: inc/class-destination-msazure.php:241
 
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "MS Azureのコンテナ\"%s\"に接続されています。"
1235
 
@@ -1241,9 +1241,9 @@ msgstr "MS Azureにアップロード開始..."
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
1244
- #: inc/Pro/class-destination-msazure.php:233
1245
  #: inc/class-destination-msazure.php:296
1246
  #: inc/class-destination-msazure.php:352
 
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "Microsoft Azure API: %s"
1249
 
@@ -1261,9 +1261,9 @@ msgstr "アカウント名が見つかりません!"
1261
  #: inc/class-destination-msazure.php:444
1262
  #: inc/class-destination-s3.php:222
1263
  #: inc/pro/class-destination-glacier.php:166
1264
- #: inc/Pro/class-destination-glacier.php:166
1265
  #: inc/class-destination-msazure.php:448
1266
  #: inc/class-destination-s3.php:359
 
1267
  msgid "Missing access key!"
1268
  msgstr "アクセスキーが見つかりません!"
1269
 
@@ -1408,122 +1408,122 @@ msgstr "S3サービスを選択"
1408
 
1409
  #: inc/class-destination-s3.php:33
1410
  #: inc/pro/class-destination-s3.php:18
1411
- #: inc/Pro/class-destination-s3.php:32
1412
  #: inc/class-destination-s3.php:54
 
1413
  msgid "Amazon S3 Region"
1414
  msgstr "Amazon S3の地域"
1415
 
1416
  #: inc/class-destination-s3.php:34
1417
  #: inc/pro/class-destination-s3.php:19
1418
- #: inc/Pro/class-destination-s3.php:40
1419
  #: inc/class-destination-s3.php:1118
 
1420
  msgid "Amazon S3: US Standard"
1421
  msgstr "Amazon S3: 米国標準"
1422
 
1423
  #: inc/class-destination-s3.php:35
1424
  #: inc/pro/class-destination-s3.php:20
1425
- #: inc/Pro/class-destination-s3.php:45
1426
  #: inc/class-destination-s3.php:1122
 
1427
  msgid "Amazon S3: US West (Northern California)"
1428
  msgstr "Amazon S3: 米国西部(北カリフォルニア)"
1429
 
1430
  #: inc/class-destination-s3.php:36
1431
  #: inc/pro/class-destination-s3.php:21
1432
- #: inc/Pro/class-destination-s3.php:53
1433
  #: inc/class-destination-s3.php:1126
 
1434
  msgid "Amazon S3: US West (Oregon)"
1435
  msgstr "Amazon S3: 米国西部(オレゴン州)"
1436
 
1437
  #: inc/class-destination-s3.php:37
1438
  #: inc/pro/class-destination-s3.php:22
1439
- #: inc/Pro/class-destination-s3.php:58
1440
  #: inc/class-destination-s3.php:1130
 
1441
  msgid "Amazon S3: EU (Ireland)"
1442
  msgstr "Amazon S3: EU(アイルランド)"
1443
 
1444
  #: inc/class-destination-s3.php:38
1445
  #: inc/pro/class-destination-s3.php:23
1446
- #: inc/Pro/class-destination-s3.php:68
1447
  #: inc/class-destination-s3.php:1138
 
1448
  msgid "Amazon S3: EU (Germany)"
1449
  msgstr "Amazon S3: EU (ドイツ)"
1450
 
1451
  #: inc/class-destination-s3.php:39
1452
  #: inc/pro/class-destination-s3.php:24
1453
- #: inc/Pro/class-destination-s3.php:73
1454
  #: inc/class-destination-s3.php:1142
 
1455
  #, fuzzy
1456
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1457
  msgstr "Amazon S3: アジア太平洋地域(東京都)"
1458
 
1459
  #: inc/class-destination-s3.php:40
1460
  #: inc/pro/class-destination-s3.php:25
1461
- #: inc/Pro/class-destination-s3.php:78
1462
  #: inc/class-destination-s3.php:1146
 
1463
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1464
  msgstr "Amazon S3: アジア太平洋地域(東京都)"
1465
 
1466
  #: inc/class-destination-s3.php:41
1467
  #: inc/pro/class-destination-s3.php:26
1468
- #: inc/Pro/class-destination-s3.php:83
1469
  #: inc/class-destination-s3.php:1150
 
1470
  #, fuzzy
1471
  msgid "Amazon S3: Asia Pacific (Seoul)"
1472
  msgstr "Amazon S3: アジア太平洋(シドニー)"
1473
 
1474
  #: inc/class-destination-s3.php:42
1475
  #: inc/pro/class-destination-s3.php:27
1476
- #: inc/Pro/class-destination-s3.php:88
1477
  #: inc/class-destination-s3.php:1154
 
1478
  msgid "Amazon S3: Asia Pacific (Singapore)"
1479
  msgstr "Amazon S3: アジアパシフィック(シンガポール)"
1480
 
1481
  #: inc/class-destination-s3.php:43
1482
  #: inc/pro/class-destination-s3.php:28
1483
- #: inc/Pro/class-destination-s3.php:93
1484
  #: inc/class-destination-s3.php:1158
 
1485
  msgid "Amazon S3: Asia Pacific (Sydney)"
1486
  msgstr "Amazon S3: アジア太平洋(シドニー)"
1487
 
1488
  #: inc/class-destination-s3.php:44
1489
  #: inc/pro/class-destination-s3.php:29
1490
- #: inc/Pro/class-destination-s3.php:98
1491
  #: inc/class-destination-s3.php:1162
 
1492
  msgid "Amazon S3: South America (Sao Paulo)"
1493
  msgstr "Amazon S3: 南米(サンパウロ)"
1494
 
1495
  #: inc/class-destination-s3.php:45
1496
  #: inc/pro/class-destination-s3.php:30
1497
- #: inc/Pro/class-destination-s3.php:103
1498
  #: inc/class-destination-s3.php:1166
 
1499
  msgid "Amazon S3: China (Beijing)"
1500
  msgstr "Amazon S3: 中国 (北京)"
1501
 
1502
  #: inc/class-destination-s3.php:46
1503
  #: inc/pro/class-destination-s3.php:31
1504
- #: inc/Pro/class-destination-s3.php:108
1505
  #: inc/class-destination-s3.php:1170
 
1506
  msgid "Google Storage: EU"
1507
  msgstr ""
1508
 
1509
  #: inc/class-destination-s3.php:47
1510
  #: inc/pro/class-destination-s3.php:32
1511
- #: inc/Pro/class-destination-s3.php:113
1512
  #: inc/class-destination-s3.php:1174
 
1513
  msgid "Google Storage: USA"
1514
  msgstr ""
1515
 
1516
  #: inc/class-destination-s3.php:48
1517
  #: inc/pro/class-destination-s3.php:33
1518
- #: inc/Pro/class-destination-s3.php:118
1519
  #: inc/class-destination-s3.php:1178
 
1520
  msgid "Google Storage: Asia"
1521
  msgstr ""
1522
 
1523
  #: inc/class-destination-s3.php:49
1524
  #: inc/pro/class-destination-s3.php:34
1525
- #: inc/Pro/class-destination-s3.php:123
1526
  #: inc/class-destination-s3.php:1182
 
1527
  msgid "Dream Host Cloud Storage"
1528
  msgstr "Dream Hostクラウドストレージ"
1529
 
@@ -1539,15 +1539,15 @@ msgstr "S3のアクセスキー"
1539
 
1540
  #: inc/class-destination-s3.php:65
1541
  #: inc/pro/class-destination-glacier.php:54
1542
- #: inc/Pro/class-destination-glacier.php:54
1543
  #: inc/class-destination-s3.php:121
 
1544
  msgid "Access Key"
1545
  msgstr "アクセスキー"
1546
 
1547
  #: inc/class-destination-s3.php:72
1548
  #: inc/pro/class-destination-glacier.php:61
1549
- #: inc/Pro/class-destination-glacier.php:61
1550
  #: inc/class-destination-s3.php:135
 
1551
  msgid "Secret Key"
1552
  msgstr "秘密鍵"
1553
 
@@ -1615,8 +1615,8 @@ msgstr "サーバー上でファイルを暗号化(AES256)して保存"
1615
 
1616
  #: inc/class-destination-s3.php:224
1617
  #: inc/pro/class-destination-glacier.php:168
1618
- #: inc/Pro/class-destination-glacier.php:168
1619
  #: inc/class-destination-s3.php:361
 
1620
  msgid "Missing secret access key!"
1621
  msgstr "シークレットアクセスキーが見つかりません!"
1622
 
@@ -1632,8 +1632,8 @@ msgstr "バケット%1$sを作成しました。"
1632
 
1633
  #: inc/class-destination-s3.php:348
1634
  #: inc/pro/class-destination-s3.php:147
1635
- #: inc/Pro/class-destination-s3.php:285
1636
  #: inc/class-destination-s3.php:520
 
1637
  msgid " %s is not a valid bucket name."
1638
  msgstr "%sは有効なバケット名ではありません。"
1639
 
@@ -1643,12 +1643,12 @@ msgstr "%sは有効なバケット名ではありません。"
1643
  #: inc/class-destination-s3.php:610
1644
  #: inc/class-destination-s3.php:670
1645
  #: inc/pro/class-destination-s3.php:337
1646
- #: inc/Pro/class-destination-s3.php:623
1647
  #: inc/class-destination-s3.php:570
1648
  #: inc/class-destination-s3.php:868
1649
  #: inc/class-destination-s3.php:936
1650
  #: inc/class-destination-s3.php:995
1651
  #: inc/class-destination-s3.php:1006
 
1652
  msgid "S3 Service API: %s"
1653
  msgstr "S3サービスAPI: %s"
1654
 
@@ -1659,15 +1659,15 @@ msgstr "%d. S3サービスにバックアップファイルを送信..."
1659
 
1660
  #: inc/class-destination-s3.php:470
1661
  #: inc/pro/class-destination-s3.php:188
1662
- #: inc/Pro/class-destination-s3.php:383
1663
  #: inc/class-destination-s3.php:803
 
1664
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1665
  msgstr "S3バケットに接続済 \"%1$s \"%2$s"
1666
 
1667
  #: inc/class-destination-s3.php:473
1668
  #: inc/pro/class-destination-s3.php:191
1669
- #: inc/Pro/class-destination-s3.php:391
1670
  #: inc/class-destination-s3.php:808
 
1671
  msgid "S3 Bucket \"%s\" does not exist!"
1672
  msgstr "S3バケット\"%s\"は存在しません!"
1673
 
@@ -1688,8 +1688,8 @@ msgstr "S3サービスへのアップロードを開始しています&#160;&hel
1688
 
1689
  #: inc/class-destination-s3.php:601
1690
  #: inc/pro/class-destination-glacier.php:444
1691
- #: inc/Pro/class-destination-glacier.php:446
1692
  #: inc/class-destination-s3.php:972
 
1693
  msgid "Backup transferred to %s."
1694
  msgstr "バックアップは%sに転送されます。"
1695
 
@@ -1728,9 +1728,9 @@ msgstr "メールアドレス:"
1728
  #: inc/pro/class-destination-ftp.php:29
1729
  #: inc/pro/class-destination-sugarsync.php:20
1730
  #: inc/pro/class-jobtype-dbdump.php:126
1731
- #: inc/Pro/class-jobtype-dbdump.php:126
1732
  #: inc/Pro/class-destination-ftp.php:47
1733
  #: inc/Pro/class-destination-sugarsync.php:20
 
1734
  msgid "Password:"
1735
  msgstr "パスワード:"
1736
 
@@ -1907,75 +1907,75 @@ msgid "BackWPup jobs helper"
1907
  msgstr "BackWPup ジョブヘルパー"
1908
 
1909
  #: inc/class-job.php:263
1910
- #: inc/class-job.php:269
1911
  msgid "Starting job"
1912
  msgstr "ジョブを開始"
1913
 
1914
  #: inc/class-job.php:278
1915
- #: inc/class-job.php:284
1916
  msgid "Job Start"
1917
  msgstr "ジョブを開始"
1918
 
1919
  #: inc/class-job.php:298
1920
- #: inc/class-job.php:304
1921
  msgid "Creates manifest file"
1922
  msgstr "マニフェストファイルを作成します。"
1923
 
1924
  #: inc/class-job.php:320
1925
- #: inc/class-job.php:326
1926
  msgid "Creates archive"
1927
  msgstr "アーカイブを作成"
1928
 
1929
  #: inc/class-job.php:360
1930
- #: inc/class-job.php:373
1931
  msgid "End of Job"
1932
  msgstr "ジョブ終了"
1933
 
1934
  #: inc/class-job.php:377
1935
- #: inc/class-job.php:395
1936
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1937
  msgstr "BackWPup log for %1$s from %2$s at %3$s"
1938
 
1939
  #: inc/class-job.php:394
1940
- #: inc/class-job.php:412
1941
  msgctxt "Plugin name; Plugin Version; plugin url"
1942
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1943
  msgstr ""
1944
 
1945
  #: inc/class-job.php:395
1946
- #: inc/class-job.php:413
1947
  msgctxt "WordPress Version; Blog url"
1948
  msgid "[INFO] WordPress %1$s on %2$s"
1949
  msgstr ""
1950
 
1951
  #: inc/class-job.php:396
1952
- #: inc/class-job.php:414
1953
  msgid "Normal"
1954
  msgstr ""
1955
 
1956
  #: inc/class-job.php:399
1957
- #: inc/class-job.php:417
1958
  msgid "Debug"
1959
  msgstr ""
1960
 
1961
  #: inc/class-job.php:402
1962
- #: inc/class-job.php:420
1963
  msgid "(translated)"
1964
  msgstr ""
1965
 
1966
  #: inc/class-job.php:404
1967
- #: inc/class-job.php:422
1968
  #, fuzzy
1969
  msgid "[INFO] Log Level: %1$s %2$s"
1970
  msgstr "[情報] curlバージョン: %1$s; %2$s"
1971
 
1972
  #: inc/class-job.php:409
1973
- #: inc/class-job.php:427
1974
  msgid "[INFO] BackWPup job: %1$s"
1975
  msgstr ""
1976
 
1977
  #: inc/class-job.php:412
1978
- #: inc/class-job.php:430
1979
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1980
  msgstr ""
1981
 
@@ -1983,443 +1983,443 @@ msgstr ""
1983
  #: inc/class-page-backwpup.php:323
1984
  #: inc/class-page-jobs.php:282
1985
  #: inc/class-page-jobs.php:291
1986
- #: inc/class-job.php:444
1987
  msgid "Not scheduled!"
1988
  msgstr "スケジュールされていない!"
1989
 
1990
  #: inc/class-job.php:430
1991
  #: inc/class-job.php:440
1992
- #: inc/class-job.php:448
1993
- #: inc/class-job.php:458
1994
  msgid "[INFO] Cron: %s; Next: %s "
1995
  msgstr ""
1996
 
1997
  #: inc/class-job.php:433
1998
- #: inc/class-job.php:451
1999
  msgid "[INFO] BackWPup job start with link is active"
2000
  msgstr "[情報]リンクをBackWPupジョブスタートが有効になっています。"
2001
 
2002
  #: inc/class-job.php:435
2003
- #: inc/class-job.php:453
2004
  msgid "[INFO] BackWPup job start with EasyCron.com"
2005
  msgstr ""
2006
 
2007
  #: inc/class-job.php:443
2008
- #: inc/class-job.php:461
2009
  msgid "[INFO] BackWPup no automatic job start configured"
2010
  msgstr "[情報] BackWPupの自動開始ジョブが設定されていません"
2011
 
2012
  #: inc/class-job.php:447
2013
- #: inc/class-job.php:465
2014
  msgid "[INFO] BackWPup job started from wp-cron"
2015
  msgstr "[情報] WP-CronからBackWPupジョブを起動"
2016
 
2017
  #: inc/class-job.php:449
2018
- #: inc/class-job.php:467
2019
  msgid "[INFO] BackWPup job started manually"
2020
  msgstr "[情報] BackWPup ジョブを手動で開始"
2021
 
2022
  #: inc/class-job.php:451
2023
- #: inc/class-job.php:469
2024
  msgid "[INFO] BackWPup job started from external url"
2025
  msgstr "[情報] 外部URLからBackWPupジョブを起動"
2026
 
2027
  #: inc/class-job.php:453
2028
- #: inc/class-job.php:471
2029
  msgid "[INFO] BackWPup job started form commandline interface"
2030
  msgstr "[情報] BackWPupジョブはコマンドライン形式のインターフェイスを開始しました。"
2031
 
2032
  #: inc/class-job.php:462
2033
- #: inc/class-job.php:480
2034
  msgid "[INFO] PHP ver.:"
2035
  msgstr "[情報] PHPバージョン:"
2036
 
2037
  #: inc/class-job.php:463
2038
- #: inc/class-job.php:481
2039
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2040
  msgstr "[情報] PHPスクリプトの最大実行時間 %1$d seconds"
2041
 
2042
  #: inc/class-job.php:467
2043
- #: inc/class-job.php:485
2044
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2045
  msgstr "[情報]スクリプト再起動時間は、%1$d秒に設定されています。"
2046
 
2047
  #: inc/class-job.php:470
2048
- #: inc/class-job.php:488
2049
  msgid "[INFO] MySQL ver.: %s"
2050
  msgstr "[情報] MySQL バージョン:%s"
2051
 
2052
  #: inc/class-job.php:472
2053
- #: inc/class-job.php:490
2054
  msgid "[INFO] Web Server: %s"
2055
  msgstr "[情報] Webサーバー: %s"
2056
 
2057
  #: inc/class-job.php:476
2058
- #: inc/class-job.php:494
2059
  msgid "[INFO] curl ver.: %1$s; %2$s"
2060
  msgstr "[情報] curlバージョン: %1$s; %2$s"
2061
 
2062
  #: inc/class-job.php:478
2063
- #: inc/class-job.php:496
2064
  msgid "[INFO] Temp folder is: %s"
2065
  msgstr "[情報] Tempフォルダ: %s"
2066
 
2067
  #: inc/class-job.php:485
2068
- #: inc/class-job.php:503
2069
  msgid "[INFO] Logfile is: %s"
2070
  msgstr "[情報] ログファイル: %s"
2071
 
2072
  #: inc/class-job.php:492
2073
- #: inc/class-job.php:510
2074
  msgid "[INFO] Backup file is: %s"
2075
  msgstr "[情報] バックアップファイル: %s"
2076
 
2077
  #: inc/class-job.php:494
2078
- #: inc/class-job.php:512
2079
  msgid "[INFO] Backup type is: %s"
2080
  msgstr "[情報] バックアップタイプ: %s"
2081
 
2082
  #: inc/class-job.php:502
2083
- #: inc/class-job.php:520
2084
  msgid "Could not write log file"
2085
  msgstr ""
2086
 
2087
  #: inc/class-job.php:514
2088
- #: inc/class-job.php:532
2089
  msgid "No destination correctly defined for backup! Please correct job settings."
2090
  msgstr "宛先が正しくバックアップ用に定義されていません! 適切なジョブ設定してください。"
2091
 
2092
  #: inc/class-job.php:644
2093
- #: inc/class-job.php:628
2094
  msgid "Cannot write progress to working file. Job will be aborted."
2095
  msgstr "進行作業をファイルに書き込みできません。ジョブを中止します。"
2096
 
2097
  #: inc/class-job.php:716
2098
  #: inc/class-page-jobs.php:786
2099
- #: inc/class-job.php:700
2100
  msgid "WARNING:"
2101
  msgstr "警告:"
2102
 
2103
  #: inc/class-job.php:725
2104
  #: inc/class-page-jobs.php:784
2105
- #: inc/class-job.php:709
2106
  msgid "ERROR:"
2107
  msgstr "エラー:"
2108
 
2109
  #: inc/class-job.php:729
2110
- #: inc/class-job.php:713
2111
  msgid "DEPRECATED:"
2112
  msgstr "非推奨:"
2113
 
2114
  #: inc/class-job.php:732
2115
- #: inc/class-job.php:716
2116
  msgid "STRICT NOTICE:"
2117
  msgstr "厳重注意:"
2118
 
2119
  #: inc/class-job.php:737
2120
- #: inc/class-job.php:721
2121
  msgid "RECOVERABLE ERROR:"
2122
  msgstr "回復可能なエラー:"
2123
 
2124
  #: inc/class-job.php:985
2125
- #: inc/class-job.php:972
2126
  msgid "Aborted by user!"
2127
  msgstr "ユーザーによって中止されました。"
2128
 
2129
  #: inc/class-job.php:1019
2130
- #: inc/class-job.php:1005
2131
  msgid "One old log deleted"
2132
  msgid_plural "%d old logs deleted"
2133
  msgstr[0] "%d個の古いログを削除しました。"
2134
 
2135
  #: inc/class-job.php:1026
2136
  #: inc/class-page-jobs.php:784
2137
- #: inc/class-job.php:1012
2138
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2139
  msgstr "ジョブは%s秒でエラー終了しました。エラーを解決する必要があります。"
2140
 
2141
  #: inc/class-job.php:1028
2142
- #: inc/class-job.php:1014
2143
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2144
  msgstr "ジョブは%s秒で警告終了しました。正しく実行するために問題を解決してください。"
2145
 
2146
  #: inc/class-job.php:1030
2147
  #: inc/class-page-jobs.php:788
2148
- #: inc/class-job.php:1016
2149
  msgid "Job done in %s seconds."
2150
  msgstr "ジョブは%s秒で完了しました。"
2151
 
2152
  #: inc/class-job.php:1074
2153
- #: inc/class-job.php:1060
2154
  msgid "SUCCESSFUL"
2155
  msgstr "成功"
2156
 
2157
  #: inc/class-job.php:1076
2158
- #: inc/class-job.php:1062
2159
  msgid "WARNING"
2160
  msgstr "警告"
2161
 
2162
  #: inc/class-job.php:1079
2163
- #: inc/class-job.php:1065
2164
  msgid "ERROR"
2165
  msgstr "エラー"
2166
 
2167
  #: inc/class-job.php:1082
2168
- #: inc/class-job.php:1068
2169
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2170
  msgstr "[%3$s] BackWPupログ %1$s: %2$s"
2171
 
2172
  #: inc/class-job.php:1188
2173
- #: inc/class-job.php:1180
2174
  msgid "Restart after %1$d seconds."
2175
  msgstr "%1$d秒後に再起動します。"
2176
 
2177
  #: inc/class-job.php:1190
2178
- #: inc/class-job.php:1182
2179
  #, fuzzy
2180
  msgid "Restart after getting signal."
2181
  msgstr "%1$d秒後に再起動します。"
2182
 
2183
  #: inc/class-job.php:1363
2184
- #: inc/class-job.php:1357
2185
  msgid "Job restarts due to inactivity for more than 5 minutes."
2186
  msgstr "ジョブが5分以上無動作により再起動します。"
2187
 
2188
  #: inc/class-job.php:1461
2189
- #: inc/class-job.php:1455
2190
  msgid "Step aborted: too many attempts!"
2191
  msgstr "ステップを中止: 回数が多すぎます!"
2192
 
2193
  #: inc/class-job.php:1532
2194
- #: inc/class-job.php:1528
2195
  msgid "%d. Trying to create backup archive &hellip;"
2196
  msgstr "%d. バックアップアーカイブを作成中..."
2197
 
2198
  #: inc/class-job.php:1540
2199
- #: inc/class-job.php:1536
2200
  msgctxt "Archive compression method"
2201
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2202
  msgstr "%sにファイルを圧縮します。これは時間がかかる場合があります。しばらくお待ちください。"
2203
 
2204
  #: inc/class-job.php:1547
2205
- #: inc/class-job.php:1544
2206
  msgid "Adding Extra files to Archive"
2207
  msgstr ""
2208
 
2209
  #: inc/class-job.php:1559
2210
  #: inc/class-job.php:1619
2211
- #: inc/class-job.php:1555
2212
- #: inc/class-job.php:1626
2213
  msgid "Cannot create backup archive correctly. Aborting creation."
2214
  msgstr "バックアップアーカイブを正しく作成できません。作成を中止します。"
2215
 
2216
  #: inc/class-job.php:1575
2217
- #: inc/class-job.php:1571
2218
  msgid "Archiving Folder: %s"
2219
  msgstr ""
2220
 
2221
  #: inc/class-job.php:1629
2222
- #: inc/class-job.php:1636
2223
  msgid "Backup archive created."
2224
  msgstr "バックアップアーカイブを作成しました。"
2225
 
2226
  #: inc/class-job.php:1643
2227
- #: inc/class-job.php:1650
2228
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2229
  msgstr ""
2230
 
2231
  #: inc/class-job.php:1646
2232
- #: inc/class-job.php:1653
2233
  msgid "Archive size is %s."
2234
  msgstr "アーカイブのサイズは%sです。"
2235
 
2236
  #: inc/class-job.php:1649
2237
- #: inc/class-job.php:1656
2238
  msgid "%1$d Files with %2$s in Archive."
2239
  msgstr "アーカイブのサイズは%2$s、%1$d個のファイルです。"
2240
 
2241
  #: inc/class-job.php:1698
2242
- #: inc/class-job.php:1831
2243
  #, fuzzy
2244
  msgctxt "Folder name"
2245
  msgid "Folder %s does not exist"
2246
  msgstr "フォルダ%sは存在しません。"
2247
 
2248
  #: inc/class-job.php:1703
2249
- #: inc/class-job.php:1837
2250
  #, fuzzy
2251
  msgctxt "Folder name"
2252
  msgid "Folder %s is not readable"
2253
  msgstr "フォルダ\"%s\"を読めません!"
2254
 
2255
  #: inc/class-job.php:1725
2256
- #: inc/class-job.php:1860
2257
  msgid "Link \"%s\" not following."
2258
  msgstr "リンク\"%s\"は次のようではない。"
2259
 
2260
  #: inc/class-job.php:1727
2261
- #: inc/class-job.php:1862
2262
  msgid "File \"%s\" is not readable!"
2263
  msgstr "ファイル\"%s\"が読めません!"
2264
 
2265
  #: inc/class-job.php:1731
2266
- #: inc/class-job.php:1866
2267
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2268
  msgstr "“%s”のファイルサイズを取得できません。ファイルが大きすぎる可能性があり、キューに追加されません。"
2269
 
2270
  #: inc/class-job.php:1814
2271
- #: inc/class-job.php:1949
2272
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2273
  msgstr "%d. マニフェストファイルを生成&#160;&hellip;"
2274
 
2275
  #: inc/class-job.php:1870
2276
- #: inc/class-job.php:2005
2277
  msgid "You may have noticed the manifest.json file in this archive."
2278
  msgstr "このアーカイブ内のmanifest.jsonファイルに気づいているかもしれません。"
2279
 
2280
  #: inc/class-job.php:1871
2281
- #: inc/class-job.php:2006
2282
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2283
  msgstr "manifest.jsonは、このアーカイブからバックアップを復元するために必要とする場合があります。"
2284
 
2285
  #: inc/class-job.php:1872
2286
- #: inc/class-job.php:2007
2287
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2288
  msgstr "manifest.jsonは手つかずの所定の位置に残してください。それ以外の場合は無視されても安全です。"
2289
 
2290
  #: inc/class-job.php:1882
2291
- #: inc/class-job.php:2017
2292
  msgid "Added manifest.json file with %1$s to backup file list."
2293
  msgstr "バックアップファイルリストに %1$sのmanifest.jsonファイルを追加しました。"
2294
 
2295
  #: inc/class-job.php:1921
2296
- #: inc/class-job.php:2056
2297
  msgid "Wrong BackWPup JobID"
2298
  msgstr "間違ったジョブID"
2299
 
2300
  #: inc/class-job.php:1934
2301
- #: inc/class-job.php:2069
2302
  msgid "A BackWPup job is already running"
2303
  msgstr "バックアップジョブがすでに実行されています"
2304
 
2305
  #: inc/class-job.php:2302
2306
- #: inc/class-job.php:2482
2307
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2308
  msgid "Hangup detected on controlling terminal or death of controlling process"
2309
  msgstr ""
2310
 
2311
  #: inc/class-job.php:2306
2312
- #: inc/class-job.php:2486
2313
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2314
  msgid "Interrupt from keyboard"
2315
  msgstr ""
2316
 
2317
  #: inc/class-job.php:2310
2318
- #: inc/class-job.php:2490
2319
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2320
  msgid "Quit from keyboard"
2321
  msgstr ""
2322
 
2323
  #: inc/class-job.php:2314
2324
- #: inc/class-job.php:2494
2325
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2326
  msgid "Illegal Instruction"
2327
  msgstr ""
2328
 
2329
  #: inc/class-job.php:2318
2330
- #: inc/class-job.php:2498
2331
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2332
  msgid "Abort signal from abort(3)"
2333
  msgstr ""
2334
 
2335
  #: inc/class-job.php:2322
2336
- #: inc/class-job.php:2502
2337
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2338
  msgid "Bus error (bad memory access)"
2339
  msgstr ""
2340
 
2341
  #: inc/class-job.php:2326
2342
- #: inc/class-job.php:2506
2343
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2344
  msgid "Floating point exception"
2345
  msgstr ""
2346
 
2347
  #: inc/class-job.php:2330
2348
- #: inc/class-job.php:2510
2349
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2350
  msgid "Invalid memory reference"
2351
  msgstr ""
2352
 
2353
  #: inc/class-job.php:2334
2354
- #: inc/class-job.php:2514
2355
  #, fuzzy
2356
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2357
  msgid "Termination signal"
2358
  msgstr "宛先"
2359
 
2360
  #: inc/class-job.php:2338
2361
- #: inc/class-job.php:2518
2362
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2363
  msgid "Stack fault on coprocessor"
2364
  msgstr ""
2365
 
2366
  #: inc/class-job.php:2342
2367
- #: inc/class-job.php:2522
2368
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2369
  msgid "User-defined signal 1"
2370
  msgstr ""
2371
 
2372
  #: inc/class-job.php:2346
2373
- #: inc/class-job.php:2526
2374
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2375
  msgid "User-defined signal 2"
2376
  msgstr ""
2377
 
2378
  #: inc/class-job.php:2350
2379
- #: inc/class-job.php:2530
2380
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2381
  msgid "Urgent condition on socket"
2382
  msgstr ""
2383
 
2384
  #: inc/class-job.php:2354
2385
- #: inc/class-job.php:2534
2386
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2387
  msgid "CPU time limit exceeded"
2388
  msgstr ""
2389
 
2390
  #: inc/class-job.php:2358
2391
- #: inc/class-job.php:2538
2392
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2393
  msgid "File size limit exceeded"
2394
  msgstr ""
2395
 
2396
  #: inc/class-job.php:2362
2397
- #: inc/class-job.php:2542
2398
  #, fuzzy
2399
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2400
  msgid "Power failure"
2401
  msgstr "FTP:ログイン失敗!"
2402
 
2403
  #: inc/class-job.php:2366
2404
- #: inc/class-job.php:2546
2405
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2406
  msgid "Bad argument to routine"
2407
  msgstr ""
2408
 
2409
  #: inc/class-job.php:2373
2410
- #: inc/class-job.php:2553
2411
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2412
  msgstr ""
2413
 
2414
  #: inc/class-job.php:2407
2415
  #: inc/class-job.php:2420
2416
- #: inc/class-job.php:2587
2417
- #: inc/class-job.php:2600
2418
  msgid "System: %s"
2419
  msgstr ""
2420
 
2421
  #: inc/class-job.php:2435
2422
- #: inc/class-job.php:2615
2423
  msgid "Exception caught in %1$s: %2$s"
2424
  msgstr "%1$sにキャッチされた例外: %2$s"
2425
 
@@ -2719,7 +2719,7 @@ msgstr "XMLエクスポート"
2719
 
2720
  #: inc/class-jobtype-wpexp.php:14
2721
  #: inc/class-page-about.php:472
2722
- #: inc/class-page-about.php:474
2723
  msgid "WordPress XML export"
2724
  msgstr "WordPressのXMLエクスポート"
2725
 
@@ -2956,281 +2956,274 @@ msgid "New Job"
2956
  msgstr "新規ジョブ"
2957
 
2958
  #: inc/class-page-about.php:369
2959
- #: inc/class-page-about.php:371
2960
  msgid "Welcome to BackWPup Pro"
2961
  msgstr "BackWPup Proへようこそ"
2962
 
2963
  #: inc/class-page-about.php:370
2964
  #: inc/class-page-backwpup.php:75
2965
- #: inc/class-page-about.php:372
2966
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2967
  msgstr "BackWPupジョブウィザードの計画を作成しバックアップジョブをスケジュールします。"
2968
 
2969
- #: inc/class-page-about.php:371
2970
- #: inc/class-page-about.php:384
2971
- #: inc/class-page-about.php:373
2972
- #: inc/class-page-about.php:386
2973
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2974
- msgstr "バックアップ アーカイブを使用して<code>/wp-content/</code>を含むあなたのWordPress全体を保存します。同じサーバー上にバックアップを保存したくない場合は、外部ストレージサービスを使用してください。単一のバックアップアーカイブを使用すると、データーを復元することができます。データベースのバックアップファイルを復元するには<a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a>やphpMyAdminのようなツールやプラグインを使用してください。"
2975
-
2976
  #: inc/class-page-about.php:372
2977
- #: inc/class-page-about.php:374
2978
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2979
  msgstr "<a href=\"%1$s\">バックアップジョブの設定</a>準備ができましたか? <a href=\"%2$s\">ウィザードを使用</a>するかエキスパートモードでバックアップを計画することができます。"
2980
 
2981
  #: inc/class-page-about.php:382
2982
- #: inc/class-page-about.php:384
2983
  msgid "Welcome to BackWPup"
2984
  msgstr "BackWPupへようこそ"
2985
 
2986
  #: inc/class-page-about.php:385
2987
- #: inc/class-page-about.php:387
2988
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2989
  msgstr "バックアップジョブの準備はできましたか?ウィザードを使用して保存を計画します。"
2990
 
2991
  #: inc/class-page-about.php:398
2992
- #: inc/class-page-about.php:400
2993
  msgid "Save your database"
2994
  msgstr "データベースを保存します。"
2995
 
2996
  #: inc/class-page-about.php:401
2997
- #: inc/class-page-about.php:403
2998
  msgid "Save your database regularly"
2999
  msgstr "定期的にデータベースを保存します。"
3000
 
3001
  #: inc/class-page-about.php:402
3002
- #: inc/class-page-about.php:404
3003
  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."
3004
  msgstr "BackWPupを使用すると、データベースのバックアップを自動実行してスケジュールすることができます。単一のバックアップファイルを使用すると、データベースを復元することができます。バックアップジョブを設定する必要がありますので、それを決して忘れてはいけません。各バックアップ後にデータベースを修復、最適化するオプションもあります。"
3005
 
3006
  #: inc/class-page-about.php:407
3007
  #: inc/class-page-about.php:411
3008
- #: inc/class-page-about.php:409
3009
- #: inc/class-page-about.php:413
3010
  msgid "WordPress XML Export"
3011
  msgstr "WordPressのXMLエクスポート"
3012
 
3013
  #: inc/class-page-about.php:408
3014
- #: inc/class-page-about.php:410
3015
  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."
3016
  msgstr "あなたのデータを保存するために追加または排他的にWordPressに組み込まれたエクスポート形式を選択することができます。もちろん、これは自動バックアップで動作します。利点: 定期的にWordPress importerとブログにこれらのファイルをインポートすることができます。"
3017
 
3018
  #: inc/class-page-about.php:416
3019
- #: inc/class-page-about.php:418
3020
  msgid "Save all data from the webserver"
3021
  msgstr "ウェブサーバーからすべてのデータを保存"
3022
 
3023
  #: inc/class-page-about.php:419
3024
- #: inc/class-page-about.php:421
3025
  msgid "Save all files"
3026
  msgstr "すべてのファイルを保存"
3027
 
3028
  #: inc/class-page-about.php:420
3029
- #: inc/class-page-about.php:422
3030
  msgid "You can backup 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."
3031
  msgstr "すべての添付ファイル、またすべてのシステムファイル、プラグインとテーマを単一のファイルをバックアップすることができます。ファイルが変更されたときにのみ、ファイルシステムのバックアップコピーを更新する<a href=\"%s\">ジョブを作成</a>することができます。"
3032
 
3033
  #: inc/class-page-about.php:425
3034
  #: inc/class-page-about.php:429
3035
- #: inc/class-page-about.php:427
3036
- #: inc/class-page-about.php:431
3037
  msgid "Security!"
3038
  msgstr "セキュリティ!"
3039
 
3040
  #: inc/class-page-about.php:426
3041
- #: inc/class-page-about.php:428
3042
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3043
  msgstr "外部サービス、ローカルファイルおよびディレクトリへの接続: デフォルトでは全てが暗号化されています。"
3044
 
3045
  #: inc/class-page-about.php:434
3046
  #: inc/class-page-about.php:437
3047
- #: inc/class-page-about.php:436
3048
- #: inc/class-page-about.php:439
3049
  msgid "Cloud Support"
3050
  msgstr "クラウドのサポート"
3051
 
3052
  #: inc/class-page-about.php:438
3053
- #: inc/class-page-about.php:440
3054
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3055
  msgstr "BackWPupは、並行して複数のクラウドサービスをサポートします。これはバックアップが冗長であるようにします。"
3056
 
3057
  #: inc/class-page-about.php:444
3058
- #: inc/class-page-about.php:446
3059
  msgid "Features / differences between Free and Pro"
3060
  msgstr "特長 / 無料版とPro版の違い"
3061
 
3062
  #: inc/class-page-about.php:447
3063
- #: inc/class-page-about.php:449
3064
  msgid "Features"
3065
  msgstr "特長"
3066
 
3067
  #: inc/class-page-about.php:448
3068
- #: inc/class-page-about.php:450
3069
  msgid "FREE"
3070
  msgstr "無料"
3071
 
3072
  #: inc/class-page-about.php:449
3073
- #: inc/class-page-about.php:451
3074
  msgid "PRO"
3075
  msgstr "PRO"
3076
 
3077
  #: inc/class-page-about.php:452
3078
- #: inc/class-page-about.php:454
3079
  msgid "Complete database backup"
3080
  msgstr "完全なデータベースのバックアップ"
3081
 
3082
  #: inc/class-page-about.php:457
3083
- #: inc/class-page-about.php:459
3084
  msgid "Complete file backup"
3085
  msgstr "完全なファイルのバックアップ"
3086
 
3087
  #: inc/class-page-about.php:462
3088
- #: inc/class-page-about.php:464
3089
  msgid "Database check"
3090
  msgstr "データベースチェック"
3091
 
3092
  #: inc/class-page-about.php:467
3093
- #: inc/class-page-about.php:469
3094
  msgid "Data compression"
3095
  msgstr "データ圧縮"
3096
 
3097
  #: inc/class-page-about.php:477
3098
- #: inc/class-page-about.php:479
3099
  msgid "List of installed plugins"
3100
  msgstr "インストールされたプラグインの一覧"
3101
 
3102
  #: inc/class-page-about.php:482
3103
- #: inc/class-page-about.php:484
3104
  msgid "Backup archives management"
3105
  msgstr "バックアップアーカイブの管理"
3106
 
3107
  #: inc/class-page-about.php:487
3108
- #: inc/class-page-about.php:489
3109
  msgid "Log file management"
3110
  msgstr "ログファイルの管理"
3111
 
3112
  #: inc/class-page-about.php:492
3113
- #: inc/class-page-about.php:494
3114
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3115
  msgstr "WP-Cron、URL、システム、バックエンドまたはWP-CLIでジョブを開始"
3116
 
3117
  #: inc/class-page-about.php:497
3118
- #: inc/class-page-about.php:499
3119
  msgid "Log report via email"
3120
  msgstr "メール経由でレポートをログに記録"
3121
 
3122
  #: inc/class-page-about.php:502
3123
- #: inc/class-page-about.php:504
3124
  msgid "Backup to Microsoft Azure"
3125
  msgstr "Microsoft Azureにバックアップ"
3126
 
3127
  #: inc/class-page-about.php:507
3128
- #: inc/class-page-about.php:509
3129
  msgid "Backup as email"
3130
  msgstr "メールでバックアップ"
3131
 
3132
  #: inc/class-page-about.php:512
3133
- #: inc/class-page-about.php:514
3134
  #, fuzzy
3135
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3136
  msgstr "S3サービス<small>(Amazon、Googleストレージ、Hosteurope等)</small>にバックアップ"
3137
 
3138
  #: inc/class-page-about.php:527
3139
- #: inc/class-page-about.php:529
3140
  msgid "Backup to FTP server"
3141
  msgstr "FTPサーバーにバックアップ"
3142
 
3143
  #: inc/class-page-about.php:532
3144
- #: inc/class-page-about.php:534
3145
  msgid "Backup to your web space"
3146
  msgstr "ウェブスペースにバックアップ"
3147
 
3148
  #: inc/class-page-about.php:542
3149
  #: inc/pro/class-pro.php:112
 
3150
  #: inc/Pro/class-pro.php:152
3151
- #: inc/class-page-about.php:544
3152
  msgid "Backup to Google Drive"
3153
  msgstr "Google Driveにバックアップ"
3154
 
3155
  #: inc/class-page-about.php:547
3156
  #: inc/pro/class-pro.php:93
 
3157
  #: inc/Pro/class-pro.php:131
3158
- #: inc/class-page-about.php:549
3159
  msgid "Backup to Amazon Glacier"
3160
  msgstr "Amazon Glacierにバックアップ"
3161
 
3162
  #: inc/class-page-about.php:552
3163
- #: inc/class-page-about.php:554
3164
  msgid "Custom API keys for DropBox and SugarSync"
3165
  msgstr "DropBoxとSugarSyncのカスタムAPIキー"
3166
 
3167
  #: inc/class-page-about.php:557
3168
- #: inc/class-page-about.php:559
3169
  msgid "XML database backup as PHPMyAdmin schema"
3170
  msgstr "PHPMyAdminのスキーマなどのXMLデータベースのバックアップ"
3171
 
3172
  #: inc/class-page-about.php:562
3173
- #: inc/class-page-about.php:564
3174
  msgid "Database backup as mysqldump per command line"
3175
  msgstr "mysqldumpコマンドラインあたりのデータベースのバックアップ"
3176
 
3177
  #: inc/class-page-about.php:567
3178
- #: inc/class-page-about.php:569
3179
  msgid "Database backup for additional MySQL databases"
3180
  msgstr "追加のMySQLデータベース用のデータベースのバックアップ"
3181
 
3182
  #: inc/class-page-about.php:572
3183
- #: inc/class-page-about.php:574
3184
  msgid "Import and export job settings as XML"
3185
  msgstr "XMLのインポートおよびエクスポートジョブの設定"
3186
 
3187
  #: inc/class-page-about.php:577
3188
- #: inc/class-page-about.php:579
3189
  msgid "Wizard for system tests"
3190
  msgstr "システムテストのためのウィザード"
3191
 
3192
  #: inc/class-page-about.php:582
3193
- #: inc/class-page-about.php:584
3194
  msgid "Wizard for scheduled backup jobs"
3195
  msgstr "スケジュールされたバックアップジョブのウィザード"
3196
 
3197
  #: inc/class-page-about.php:587
3198
- #: inc/class-page-about.php:589
3199
  msgid "Wizard to import settings and backup jobs"
3200
  msgstr "設定およびバックアップジョブをインポートするウィザード"
3201
 
3202
  #: inc/class-page-about.php:592
3203
- #: inc/class-page-about.php:594
3204
  msgid "Differential backup of changed directories to Dropbox"
3205
  msgstr "Dropboxに変更されたディレクトリの差分バックアップ"
3206
 
3207
  #: inc/class-page-about.php:597
3208
- #: inc/class-page-about.php:599
3209
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3210
  msgstr "Rackspace Cloud Filesに変更されたディレクトリの差分バックアップ"
3211
 
3212
  #: inc/class-page-about.php:602
3213
- #: inc/class-page-about.php:604
3214
  msgid "Differential backup of changed directories to S3"
3215
  msgstr "S3に変更されたディレクトリの差分バックアップ"
3216
 
3217
  #: inc/class-page-about.php:607
3218
- #: inc/class-page-about.php:609
3219
  msgid "Differential backup of changed directories to MS Azure"
3220
  msgstr "MS Azureに変更されたディレクトリの差分バックアップ"
3221
 
3222
  #: inc/class-page-about.php:612
3223
- #: inc/class-page-about.php:639
3224
  msgid "<strong>Premium support</strong>"
3225
  msgstr "<strong>プレミアムサポート</strong>"
3226
 
3227
  #: inc/class-page-about.php:617
3228
- #: inc/class-page-about.php:644
3229
  msgid "<strong>Automatic updates</strong>"
3230
  msgstr "<strong>backwpup.com から自動更新</strong>"
3231
 
3232
  #: inc/class-page-about.php:624
3233
- #: inc/class-page-about.php:651
3234
  msgid "GET PRO"
3235
  msgstr "GET PRO"
3236
 
@@ -3292,9 +3285,9 @@ msgstr ""
3292
  #: inc/class-page-logs.php:206
3293
  #: inc/class-page-backups.php:281
3294
  #: inc/class-page-backups.php:285
 
3295
  #: inc/class-page-settings.php:768
3296
  #: inc/class-page-settings.php:779
3297
- #: inc/class-page-logs.php:234
3298
  msgid "Download"
3299
  msgstr "ダウンロード"
3300
 
@@ -3354,11 +3347,6 @@ msgctxt "Dashboard heading"
3354
  msgid "Restoring backups"
3355
  msgstr "バックアップの復元"
3356
 
3357
- #: inc/class-page-backwpup.php:77
3358
- #: inc/class-page-backwpup.php:86
3359
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3360
- msgstr "単一のバックアップアーカイブを使用して復元することができます。データベースのバックアップファイルを復元するには<a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a>やphpMyAdminのようなツールやプラグインを使用してください。"
3361
-
3362
  #: inc/class-page-backwpup.php:78
3363
  #: inc/class-page-backwpup.php:87
3364
  msgctxt "Dashboard heading"
@@ -3590,8 +3578,8 @@ msgstr "%1$s %2$s"
3590
 
3591
  #: inc/class-page-editjob.php:328
3592
  #: inc/class-page-settings.php:117
3593
- #: inc/class-page-settings.php:214
3594
  #: inc/class-page-editjob.php:337
 
3595
  msgid "General"
3596
  msgstr "一般"
3597
 
@@ -3625,15 +3613,15 @@ msgstr "ジョブタスク"
3625
 
3626
  #: inc/class-page-editjob.php:391
3627
  #: inc/pro/class-wizard-job.php:254
3628
- #: inc/Pro/class-wizard-job.php:254
3629
  #: inc/class-page-editjob.php:400
 
3630
  msgid "This job is a&#160;&hellip;"
3631
  msgstr "このジョブは&#160;&hellip;"
3632
 
3633
  #: inc/class-page-editjob.php:394
3634
  #: inc/pro/class-wizard-job.php:257
3635
- #: inc/Pro/class-wizard-job.php:257
3636
  #: inc/class-page-editjob.php:403
 
3637
  msgid "Job tasks"
3638
  msgstr "ジョブタスク"
3639
 
@@ -3646,10 +3634,10 @@ msgstr "バックアップファイルの作成"
3646
  #: inc/class-page-editjob.php:420
3647
  #: inc/pro/class-wizard-job.php:402
3648
  #: inc/pro/class-wizard-job.php:405
3649
- #: inc/Pro/class-wizard-job.php:402
3650
- #: inc/Pro/class-wizard-job.php:405
3651
  #: inc/class-page-editjob.php:426
3652
  #: inc/class-page-editjob.php:429
 
 
3653
  msgid "Backup type"
3654
  msgstr "バックアップの種類"
3655
 
@@ -3660,8 +3648,8 @@ msgstr "宛先にファイルして、ファイルを同期"
3660
 
3661
  #: inc/class-page-editjob.php:428
3662
  #: inc/pro/class-wizard-job.php:413
3663
- #: inc/Pro/class-wizard-job.php:413
3664
  #: inc/class-page-editjob.php:437
 
3665
  msgid "Create a backup archive"
3666
  msgstr "バックアップアーカイブを作成"
3667
 
@@ -3761,17 +3749,17 @@ msgstr "アーカイブ形式"
3761
  #: inc/class-page-editjob.php:476
3762
  #: inc/pro/class-wizard-job.php:426
3763
  #: inc/pro/class-wizard-job.php:429
3764
- #: inc/Pro/class-wizard-job.php:426
3765
- #: inc/Pro/class-wizard-job.php:429
3766
  #: inc/class-page-editjob.php:481
3767
  #: inc/class-page-editjob.php:483
 
 
3768
  msgid "Zip"
3769
  msgstr "Zip"
3770
 
3771
  #: inc/class-page-editjob.php:479
3772
  #: inc/pro/class-wizard-job.php:433
3773
- #: inc/Pro/class-wizard-job.php:433
3774
  #: inc/class-page-editjob.php:486
 
3775
  msgid "Tar"
3776
  msgstr "Tar"
3777
 
@@ -3779,10 +3767,10 @@ msgstr "Tar"
3779
  #: inc/class-page-editjob.php:483
3780
  #: inc/pro/class-wizard-job.php:437
3781
  #: inc/pro/class-wizard-job.php:440
3782
- #: inc/Pro/class-wizard-job.php:437
3783
- #: inc/Pro/class-wizard-job.php:440
3784
  #: inc/class-page-editjob.php:488
3785
  #: inc/class-page-editjob.php:490
 
 
3786
  msgid "Tar GZip"
3787
  msgstr "Tar GZip"
3788
 
@@ -3798,10 +3786,10 @@ msgstr "起因するPHPの関数の欠落に無効。"
3798
  #: inc/class-page-editjob.php:489
3799
  #: inc/pro/class-wizard-job.php:444
3800
  #: inc/pro/class-wizard-job.php:447
3801
- #: inc/Pro/class-wizard-job.php:444
3802
- #: inc/Pro/class-wizard-job.php:447
3803
  #: inc/class-page-editjob.php:494
3804
  #: inc/class-page-editjob.php:497
 
 
3805
  msgid "Tar BZip2"
3806
  msgstr "Tar BZip2"
3807
 
@@ -3929,9 +3917,9 @@ msgstr "高度"
3929
  #: inc/class-page-editjob.php:650
3930
  #: inc/class-page-editjob.php:718
3931
  #: inc/pro/class-wizard-job.php:320
3932
- #: inc/Pro/class-wizard-job.php:320
3933
  #: inc/class-page-editjob.php:686
3934
  #: inc/class-page-editjob.php:754
 
3935
  msgid "Scheduler"
3936
  msgstr "スケジューラ"
3937
 
@@ -3939,121 +3927,121 @@ msgstr "スケジューラ"
3939
  #: inc/class-page-jobs.php:126
3940
  #: inc/class-page-logs.php:139
3941
  #: inc/pro/class-wizard-job.php:324
3942
- #: inc/Pro/class-wizard-job.php:324
3943
- #: inc/class-page-logs.php:166
3944
  #: inc/class-page-editjob.php:691
 
 
3945
  msgid "Type"
3946
  msgstr "タイプ"
3947
 
3948
  #: inc/class-page-editjob.php:660
3949
  #: inc/pro/class-wizard-job.php:330
3950
- #: inc/Pro/class-wizard-job.php:330
3951
  #: inc/class-page-editjob.php:696
 
3952
  msgid "Hour"
3953
  msgstr "時間"
3954
 
3955
  #: inc/class-page-editjob.php:663
3956
  #: inc/pro/class-wizard-job.php:333
3957
- #: inc/Pro/class-wizard-job.php:333
3958
  #: inc/class-page-editjob.php:699
 
3959
  msgid "Minute"
3960
  msgstr "分"
3961
 
3962
  #: inc/class-page-editjob.php:667
3963
  #: inc/pro/class-wizard-job.php:337
3964
- #: inc/Pro/class-wizard-job.php:337
3965
  #: inc/class-page-editjob.php:703
 
3966
  msgid "monthly"
3967
  msgstr "毎月"
3968
 
3969
  #: inc/class-page-editjob.php:669
3970
  #: inc/pro/class-wizard-job.php:339
3971
- #: inc/Pro/class-wizard-job.php:339
3972
  #: inc/class-page-editjob.php:705
 
3973
  msgid "on"
3974
  msgstr "実行日"
3975
 
3976
  #: inc/class-page-editjob.php:679
3977
  #: inc/pro/class-wizard-job.php:349
3978
- #: inc/Pro/class-wizard-job.php:349
3979
  #: inc/class-page-editjob.php:715
 
3980
  msgid "weekly"
3981
  msgstr "毎週"
3982
 
3983
  #: inc/class-page-editjob.php:681
3984
  #: inc/class-page-editjob.php:788
3985
  #: inc/pro/class-wizard-job.php:351
3986
- #: inc/Pro/class-wizard-job.php:351
3987
  #: inc/class-page-editjob.php:717
3988
  #: inc/class-page-editjob.php:824
 
3989
  msgid "Sunday"
3990
  msgstr "日曜日"
3991
 
3992
  #: inc/class-page-editjob.php:682
3993
  #: inc/class-page-editjob.php:789
3994
  #: inc/pro/class-wizard-job.php:352
3995
- #: inc/Pro/class-wizard-job.php:352
3996
  #: inc/class-page-editjob.php:718
3997
  #: inc/class-page-editjob.php:825
 
3998
  msgid "Monday"
3999
  msgstr "月曜日"
4000
 
4001
  #: inc/class-page-editjob.php:683
4002
  #: inc/class-page-editjob.php:790
4003
  #: inc/pro/class-wizard-job.php:353
4004
- #: inc/Pro/class-wizard-job.php:353
4005
  #: inc/class-page-editjob.php:719
4006
  #: inc/class-page-editjob.php:826
 
4007
  msgid "Tuesday"
4008
  msgstr "火曜日"
4009
 
4010
  #: inc/class-page-editjob.php:684
4011
  #: inc/class-page-editjob.php:791
4012
  #: inc/pro/class-wizard-job.php:354
4013
- #: inc/Pro/class-wizard-job.php:354
4014
  #: inc/class-page-editjob.php:720
4015
  #: inc/class-page-editjob.php:827
 
4016
  msgid "Wednesday"
4017
  msgstr "水曜日"
4018
 
4019
  #: inc/class-page-editjob.php:685
4020
  #: inc/class-page-editjob.php:792
4021
  #: inc/pro/class-wizard-job.php:355
4022
- #: inc/Pro/class-wizard-job.php:355
4023
  #: inc/class-page-editjob.php:721
4024
  #: inc/class-page-editjob.php:828
 
4025
  msgid "Thursday"
4026
  msgstr "木曜日"
4027
 
4028
  #: inc/class-page-editjob.php:686
4029
  #: inc/class-page-editjob.php:793
4030
  #: inc/pro/class-wizard-job.php:356
4031
- #: inc/Pro/class-wizard-job.php:356
4032
  #: inc/class-page-editjob.php:722
4033
  #: inc/class-page-editjob.php:829
 
4034
  msgid "Friday"
4035
  msgstr "金曜日"
4036
 
4037
  #: inc/class-page-editjob.php:687
4038
  #: inc/class-page-editjob.php:794
4039
  #: inc/pro/class-wizard-job.php:357
4040
- #: inc/Pro/class-wizard-job.php:357
4041
  #: inc/class-page-editjob.php:723
4042
  #: inc/class-page-editjob.php:830
 
4043
  msgid "Saturday"
4044
  msgstr "土曜日"
4045
 
4046
  #: inc/class-page-editjob.php:697
4047
  #: inc/pro/class-wizard-job.php:367
4048
- #: inc/Pro/class-wizard-job.php:367
4049
  #: inc/class-page-editjob.php:733
 
4050
  msgid "daily"
4051
  msgstr "毎日"
4052
 
4053
  #: inc/class-page-editjob.php:707
4054
  #: inc/pro/class-wizard-job.php:377
4055
- #: inc/Pro/class-wizard-job.php:377
4056
  #: inc/class-page-editjob.php:743
 
4057
  msgid "hourly"
4058
  msgstr "毎時"
4059
 
@@ -4201,8 +4189,8 @@ msgstr "前回の実行"
4201
 
4202
  #: inc/class-page-jobs.php:172
4203
  #: inc/class-page-logs.php:200
4204
- #: inc/Pro/class-page-support.php:221
4205
  #: inc/class-page-logs.php:228
 
4206
  msgid "Job ID: %d"
4207
  msgstr "ジョブID: %d"
4208
 
@@ -5032,14 +5020,17 @@ msgstr ""
5032
  #: inc/pro/class-wizard-job.php:17
5033
  #: inc/pro/class-wizard-jobimport.php:16
5034
  #: inc/pro/class-wizard-systemtest.php:16
5035
- #: inc/Pro/class-wizard-jobimport.php:16
5036
- #: inc/Pro/class-wizard-job.php:17
5037
- #: inc/Pro/class-wizard-systemtest.php:27
5038
  #: inc/class-admin.php:510
5039
  #: inc/class-admin.php:531
 
 
 
 
 
5040
  #: inc/class-page-settings.php:1123
5041
- #: inc/class-page-about.php:651
5042
- #: inc/class-job.php:412
 
5043
  msgid "http://backwpup.com"
5044
  msgstr "http://backwpup.com"
5045
 
@@ -5052,61 +5043,59 @@ msgstr "http://backwpup.com"
5052
  #: inc/pro/class-wizard-job.php:19
5053
  #: inc/pro/class-wizard-jobimport.php:18
5054
  #: inc/pro/class-wizard-systemtest.php:18
5055
- #: inc/Pro/class-wizard-jobimport.php:18
5056
  #: inc/Pro/class-wizard-job.php:19
 
5057
  #: inc/Pro/class-wizard-systemtest.php:29
5058
  msgid "http://inpsyde.com"
5059
  msgstr "http://inpsyde.com"
5060
 
5061
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5062
- #: inc/class-destination-ftp-downloader.php:72
5063
- #: inc/class-destination-dropbox-downloader.php:72
5064
- #: inc/class-destination-s3-downloader.php:83
5065
- msgid "Could not write data to file."
5066
  msgstr ""
5067
 
5068
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5069
- #: inc/class-destination-ftp-downloader.php:126
5070
- #: inc/class-destination-folder-downloader.php:137
5071
- #: inc/class-destination-dropbox-downloader.php:104
5072
- #: inc/class-destination-s3-downloader.php:112
5073
- msgid "File could not be opened for writing."
5074
  msgstr ""
5075
 
5076
- #: inc/Pro/class-destination-s3.php:63
5077
- #: inc/class-destination-s3.php:1134
5078
- msgid "Amazon S3: EU (London)"
5079
  msgstr ""
5080
 
5081
- #: inc/Pro/class-pro.php:285
5082
- #: inc/Pro/class-pro.php:286
5083
- #: inc/class-page-backups.php:293
5084
- #: views/pro/restore/steps/step4_top.php:2
5085
- msgid "Restore"
5086
  msgstr ""
5087
 
5088
- #: inc/class-system-tests-runner.php:77
5089
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5090
  msgstr ""
5091
 
5092
- #: inc/class-system-tests-runner.php:88
5093
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5094
  msgstr ""
5095
 
5096
- #: inc/class-system-tests-runner.php:100
5097
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5098
  msgstr ""
5099
 
5100
- #: inc/class-system-tests-runner.php:193
5101
- msgid "Yeah!"
5102
  msgstr ""
5103
 
5104
- #: inc/class-system-tests-runner.php:261
5105
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5106
  msgstr ""
5107
 
5108
- #: inc/class-destination-ftp-downloader.php:108
5109
- msgid "Cannot open FTP file for download."
 
 
 
 
5110
  msgstr ""
5111
 
5112
  #: inc/class-destination-folder-downloader.php:64
@@ -5126,10 +5115,133 @@ msgstr ""
5126
  msgid "%s is a directory not a file."
5127
  msgstr ""
5128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5129
  #: inc/class-destination-s3.php:102
5130
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5131
  msgstr ""
5132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5133
  #: inc/class-page-backups.php:408
5134
  msgid "&laquo; Go back"
5135
  msgstr ""
@@ -5172,21 +5284,35 @@ msgstr ""
5172
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5173
  msgstr ""
5174
 
5175
- #: inc/class-create-archive.php:114
5176
- msgid "Functions for bz2 compression not available."
 
5177
  msgstr ""
5178
 
5179
- #: inc/class-create-archive.php:311
5180
- msgid "File name cannot be empty."
5181
  msgstr ""
5182
 
5183
- #: inc/class-create-archive.php:741
5184
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5185
  msgstr ""
5186
 
5187
- #. translators: $1 is the filename to add into the archive.
5188
- #: inc/class-create-archive.php:996
5189
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5190
  msgstr ""
5191
 
5192
  #: inc/class-page-settings.php:39
@@ -5399,127 +5525,24 @@ msgstr ""
5399
  msgid "BackWPup maximum script execution time"
5400
  msgstr ""
5401
 
5402
- #: inc/class-download-file.php:135
5403
- msgid "Invalid file name, seems file include invalid characters."
5404
- msgstr ""
5405
-
5406
- #: inc/class-page-about.php:614
5407
- msgid "Restore from Folder"
5408
- msgstr ""
5409
-
5410
- #: inc/class-page-about.php:619
5411
- msgid "Restore from Google Drive"
5412
- msgstr ""
5413
-
5414
- #: inc/class-page-about.php:624
5415
- msgid "Restore from Amazon S3"
5416
- msgstr ""
5417
-
5418
- #: inc/class-page-about.php:629
5419
- msgid "Restore from Dropbox"
5420
- msgstr ""
5421
-
5422
- #: inc/class-page-about.php:634
5423
- msgid "Restore from FTP"
5424
- msgstr ""
5425
-
5426
- #: inc/class-destination-s3-downloader.php:76
5427
- msgid "Could not write data to file. Empty source file."
5428
- msgstr ""
5429
-
5430
- #: inc/class-job.php:332
5431
- msgid "Encrypts the archive"
5432
- msgstr ""
5433
-
5434
- #: inc/class-job.php:1689
5435
- msgid "No encryption key was provided. Aborting encryption."
5436
- msgstr ""
5437
-
5438
- #: inc/class-job.php:1696
5439
- msgid "%d. Trying to encrypt archive &hellip;"
5440
- msgstr ""
5441
-
5442
- #: inc/class-job.php:1706
5443
- msgid "Cannot open the archive for reading. Aborting encryption."
5444
- msgstr ""
5445
-
5446
- #: inc/class-job.php:1712
5447
- msgid "Cannot write the encrypted archive. Aborting encryption."
5448
- msgstr ""
5449
-
5450
- #: inc/class-job.php:1769
5451
- msgid "Encrypted %s of data."
5452
- msgstr ""
5453
-
5454
- #: inc/class-job.php:1773
5455
- msgid "Unable to delete unencrypted archive."
5456
- msgstr ""
5457
-
5458
- #: inc/class-job.php:1777
5459
- msgid "Unable to rename encrypted archive."
5460
- msgstr ""
5461
-
5462
- #: inc/class-job.php:1782
5463
- msgid "Archive has been successfully encrypted."
5464
- msgstr ""
5465
-
5466
- #: inc/class-job.php:2451
5467
- msgid "exec command is not active."
5468
- msgstr ""
5469
-
5470
- #: inc/class-job.php:2456
5471
- msgid "mysqldump binary not found."
5472
- msgstr ""
5473
-
5474
- #: inc/class-page-editjob.php:448
5475
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5476
- msgstr ""
5477
-
5478
- #: inc/class-page-editjob.php:452
5479
- msgid "Preview: "
5480
- msgstr ""
5481
-
5482
- #: inc/class-page-editjob.php:484
5483
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5484
- msgstr ""
5485
-
5486
- #: inc/class-page-editjob.php:495
5487
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5488
- msgstr ""
5489
-
5490
- #: inc/class-page-editjob.php:506
5491
- #: inc/class-page-editjob.php:511
5492
- #: inc/class-page-editjob.php:520
5493
- msgid "Encrypt Archive"
5494
- msgstr ""
5495
-
5496
- #: inc/class-page-editjob.php:524
5497
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5498
- msgstr ""
5499
-
5500
- #: inc/class-decrypter.php:56
5501
- msgid "Cannot open the archive for reading."
5502
- msgstr ""
5503
-
5504
- #: inc/class-decrypter.php:82
5505
- msgid "Cannot write the encrypted archive."
5506
  msgstr ""
5507
 
5508
- #: inc/class-decrypter.php:162
5509
- msgid "Private key invalid."
5510
  msgstr ""
5511
 
5512
- #: inc/class-destination-ftp.php:321
5513
- msgid "Could not log in to FTP server."
5514
  msgstr ""
5515
 
5516
- #: inc/class-destination-ftp.php:735
5517
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5518
  msgstr ""
5519
 
5520
- #: backwpup.php:573
5521
- #: vendor_dist/backwpup.php:573
5522
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5523
  msgstr ""
5524
 
5525
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "フォルダ"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Dropboxにバックアップ"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3サービス"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Rackspaceのクラウドファイルにバックアップ"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "SugarSyncにバックアップ"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "ログ"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "Dropbox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "ログイン"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "認証されていません!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "アカウントを作成"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "認証済み!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "バックアップ設定"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "ファイルを削除"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "フォルダ内に保持するファイルの数"
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "宛先への同期中にファイルを削除しない!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr "Dropboxに%sが利用可能"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Dropboxに認証されていません!"
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "バックアップで%sに転送"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "アップロードされたファイルのサイズと、ローカルファイルサイズが一致しません。"
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr "%sエラー転送するバックアップ。"
722
 
744
  #: inc/class-destination-email.php:38
745
  #: inc/pro/class-destination-email.php:16
746
  #: inc/pro/class-destination-email.php:18
747
+ #: inc/class-destination-email.php:39
748
  #: inc/Pro/class-destination-email.php:16
749
  #: inc/Pro/class-destination-email.php:18
 
750
  msgid "Email address"
751
  msgstr "メールアドレス"
752
 
759
  #: inc/class-destination-email.php:49
760
  #: inc/pro/class-destination-email.php:29
761
  #: inc/pro/class-destination-email.php:30
 
 
762
  #: inc/class-destination-email.php:52
763
  #: inc/class-destination-email.php:56
764
+ #: inc/Pro/class-destination-email.php:29
765
+ #: inc/Pro/class-destination-email.php:30
766
  msgid "Send test email"
767
  msgstr "テストメールを送信"
768
 
837
  #: inc/class-destination-email.php:98
838
  #: inc/class-destination-ftp.php:31
839
  #: inc/pro/class-destination-ftp.php:21
 
840
  #: inc/class-destination-email.php:124
841
  #: inc/class-destination-ftp.php:56
842
+ #: inc/Pro/class-destination-ftp.php:35
843
  msgid "Port:"
844
  msgstr "ポート:"
845
 
858
  #: inc/class-page-settings.php:328
859
  #: inc/pro/class-jobtype-dbdump.php:157
860
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
861
  #: inc/class-destination-email.php:141
862
  #: inc/class-page-settings.php:837
863
+ #: inc/Pro/class-jobtype-dbdump.php:157
864
+ #: inc/Pro/class-jobtype-dbdump.php:205
865
  msgid "none"
866
  msgstr "なし"
867
 
984
  #: inc/class-destination-ftp.php:87
985
  #: inc/class-page-logs.php:257
986
  #: inc/class-page-settings.php:466
 
987
  #: inc/class-destination-ftp.php:137
988
+ #: inc/class-page-logs.php:288
989
  msgid "seconds"
990
  msgstr "秒"
991
 
1140
  #: inc/pro/class-destination-glacier.php:468
1141
  #: inc/pro/class-destination-rsc.php:226
1142
  #: inc/pro/class-destination-rsc.php:259
1143
+ #: inc/class-destination-ftp.php:673
1144
+ #: inc/class-destination-msazure.php:275
1145
  #: inc/class-destination-rsc.php:292
1146
+ #: inc/class-destination-s3.php:843
1147
+ #: inc/class-destination-s3.php:958
1148
  #: inc/Pro/class-destination-gdrive.php:905
1149
  #: inc/Pro/class-destination-glacier.php:470
1150
  #: inc/Pro/class-destination-rsc.php:228
1151
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1152
  msgid "Can not open source file for transfer."
1153
  msgstr ""
1154
 
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
 
1200
  #: inc/class-destination-s3.php:215
1201
+ #: inc/Pro/class-destination-glacier.php:96
1202
  msgid "File deletion"
1203
  msgstr "ファイルの削除"
1204
 
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
 
1224
  #: inc/class-destination-msazure.php:237
1225
+ #: inc/Pro/class-destination-msazure.php:144
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "MS Azureのコンテナ\"%s\"は存在しません!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
 
1231
  #: inc/class-destination-msazure.php:241
1232
+ #: inc/Pro/class-destination-msazure.php:148
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "MS Azureのコンテナ\"%s\"に接続されています。"
1235
 
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
 
1244
  #: inc/class-destination-msazure.php:296
1245
  #: inc/class-destination-msazure.php:352
1246
+ #: inc/Pro/class-destination-msazure.php:233
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "Microsoft Azure API: %s"
1249
 
1261
  #: inc/class-destination-msazure.php:444
1262
  #: inc/class-destination-s3.php:222
1263
  #: inc/pro/class-destination-glacier.php:166
 
1264
  #: inc/class-destination-msazure.php:448
1265
  #: inc/class-destination-s3.php:359
1266
+ #: inc/Pro/class-destination-glacier.php:166
1267
  msgid "Missing access key!"
1268
  msgstr "アクセスキーが見つかりません!"
1269
 
1408
 
1409
  #: inc/class-destination-s3.php:33
1410
  #: inc/pro/class-destination-s3.php:18
 
1411
  #: inc/class-destination-s3.php:54
1412
+ #: inc/Pro/class-destination-s3.php:32
1413
  msgid "Amazon S3 Region"
1414
  msgstr "Amazon S3の地域"
1415
 
1416
  #: inc/class-destination-s3.php:34
1417
  #: inc/pro/class-destination-s3.php:19
 
1418
  #: inc/class-destination-s3.php:1118
1419
+ #: inc/Pro/class-destination-s3.php:40
1420
  msgid "Amazon S3: US Standard"
1421
  msgstr "Amazon S3: 米国標準"
1422
 
1423
  #: inc/class-destination-s3.php:35
1424
  #: inc/pro/class-destination-s3.php:20
 
1425
  #: inc/class-destination-s3.php:1122
1426
+ #: inc/Pro/class-destination-s3.php:45
1427
  msgid "Amazon S3: US West (Northern California)"
1428
  msgstr "Amazon S3: 米国西部(北カリフォルニア)"
1429
 
1430
  #: inc/class-destination-s3.php:36
1431
  #: inc/pro/class-destination-s3.php:21
 
1432
  #: inc/class-destination-s3.php:1126
1433
+ #: inc/Pro/class-destination-s3.php:53
1434
  msgid "Amazon S3: US West (Oregon)"
1435
  msgstr "Amazon S3: 米国西部(オレゴン州)"
1436
 
1437
  #: inc/class-destination-s3.php:37
1438
  #: inc/pro/class-destination-s3.php:22
 
1439
  #: inc/class-destination-s3.php:1130
1440
+ #: inc/Pro/class-destination-s3.php:58
1441
  msgid "Amazon S3: EU (Ireland)"
1442
  msgstr "Amazon S3: EU(アイルランド)"
1443
 
1444
  #: inc/class-destination-s3.php:38
1445
  #: inc/pro/class-destination-s3.php:23
 
1446
  #: inc/class-destination-s3.php:1138
1447
+ #: inc/Pro/class-destination-s3.php:68
1448
  msgid "Amazon S3: EU (Germany)"
1449
  msgstr "Amazon S3: EU (ドイツ)"
1450
 
1451
  #: inc/class-destination-s3.php:39
1452
  #: inc/pro/class-destination-s3.php:24
 
1453
  #: inc/class-destination-s3.php:1142
1454
+ #: inc/Pro/class-destination-s3.php:73
1455
  #, fuzzy
1456
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1457
  msgstr "Amazon S3: アジア太平洋地域(東京都)"
1458
 
1459
  #: inc/class-destination-s3.php:40
1460
  #: inc/pro/class-destination-s3.php:25
 
1461
  #: inc/class-destination-s3.php:1146
1462
+ #: inc/Pro/class-destination-s3.php:78
1463
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1464
  msgstr "Amazon S3: アジア太平洋地域(東京都)"
1465
 
1466
  #: inc/class-destination-s3.php:41
1467
  #: inc/pro/class-destination-s3.php:26
 
1468
  #: inc/class-destination-s3.php:1150
1469
+ #: inc/Pro/class-destination-s3.php:83
1470
  #, fuzzy
1471
  msgid "Amazon S3: Asia Pacific (Seoul)"
1472
  msgstr "Amazon S3: アジア太平洋(シドニー)"
1473
 
1474
  #: inc/class-destination-s3.php:42
1475
  #: inc/pro/class-destination-s3.php:27
 
1476
  #: inc/class-destination-s3.php:1154
1477
+ #: inc/Pro/class-destination-s3.php:88
1478
  msgid "Amazon S3: Asia Pacific (Singapore)"
1479
  msgstr "Amazon S3: アジアパシフィック(シンガポール)"
1480
 
1481
  #: inc/class-destination-s3.php:43
1482
  #: inc/pro/class-destination-s3.php:28
 
1483
  #: inc/class-destination-s3.php:1158
1484
+ #: inc/Pro/class-destination-s3.php:93
1485
  msgid "Amazon S3: Asia Pacific (Sydney)"
1486
  msgstr "Amazon S3: アジア太平洋(シドニー)"
1487
 
1488
  #: inc/class-destination-s3.php:44
1489
  #: inc/pro/class-destination-s3.php:29
 
1490
  #: inc/class-destination-s3.php:1162
1491
+ #: inc/Pro/class-destination-s3.php:98
1492
  msgid "Amazon S3: South America (Sao Paulo)"
1493
  msgstr "Amazon S3: 南米(サンパウロ)"
1494
 
1495
  #: inc/class-destination-s3.php:45
1496
  #: inc/pro/class-destination-s3.php:30
 
1497
  #: inc/class-destination-s3.php:1166
1498
+ #: inc/Pro/class-destination-s3.php:103
1499
  msgid "Amazon S3: China (Beijing)"
1500
  msgstr "Amazon S3: 中国 (北京)"
1501
 
1502
  #: inc/class-destination-s3.php:46
1503
  #: inc/pro/class-destination-s3.php:31
 
1504
  #: inc/class-destination-s3.php:1170
1505
+ #: inc/Pro/class-destination-s3.php:108
1506
  msgid "Google Storage: EU"
1507
  msgstr ""
1508
 
1509
  #: inc/class-destination-s3.php:47
1510
  #: inc/pro/class-destination-s3.php:32
 
1511
  #: inc/class-destination-s3.php:1174
1512
+ #: inc/Pro/class-destination-s3.php:113
1513
  msgid "Google Storage: USA"
1514
  msgstr ""
1515
 
1516
  #: inc/class-destination-s3.php:48
1517
  #: inc/pro/class-destination-s3.php:33
 
1518
  #: inc/class-destination-s3.php:1178
1519
+ #: inc/Pro/class-destination-s3.php:118
1520
  msgid "Google Storage: Asia"
1521
  msgstr ""
1522
 
1523
  #: inc/class-destination-s3.php:49
1524
  #: inc/pro/class-destination-s3.php:34
 
1525
  #: inc/class-destination-s3.php:1182
1526
+ #: inc/Pro/class-destination-s3.php:123
1527
  msgid "Dream Host Cloud Storage"
1528
  msgstr "Dream Hostクラウドストレージ"
1529
 
1539
 
1540
  #: inc/class-destination-s3.php:65
1541
  #: inc/pro/class-destination-glacier.php:54
 
1542
  #: inc/class-destination-s3.php:121
1543
+ #: inc/Pro/class-destination-glacier.php:54
1544
  msgid "Access Key"
1545
  msgstr "アクセスキー"
1546
 
1547
  #: inc/class-destination-s3.php:72
1548
  #: inc/pro/class-destination-glacier.php:61
 
1549
  #: inc/class-destination-s3.php:135
1550
+ #: inc/Pro/class-destination-glacier.php:61
1551
  msgid "Secret Key"
1552
  msgstr "秘密鍵"
1553
 
1615
 
1616
  #: inc/class-destination-s3.php:224
1617
  #: inc/pro/class-destination-glacier.php:168
 
1618
  #: inc/class-destination-s3.php:361
1619
+ #: inc/Pro/class-destination-glacier.php:168
1620
  msgid "Missing secret access key!"
1621
  msgstr "シークレットアクセスキーが見つかりません!"
1622
 
1632
 
1633
  #: inc/class-destination-s3.php:348
1634
  #: inc/pro/class-destination-s3.php:147
 
1635
  #: inc/class-destination-s3.php:520
1636
+ #: inc/Pro/class-destination-s3.php:285
1637
  msgid " %s is not a valid bucket name."
1638
  msgstr "%sは有効なバケット名ではありません。"
1639
 
1643
  #: inc/class-destination-s3.php:610
1644
  #: inc/class-destination-s3.php:670
1645
  #: inc/pro/class-destination-s3.php:337
 
1646
  #: inc/class-destination-s3.php:570
1647
  #: inc/class-destination-s3.php:868
1648
  #: inc/class-destination-s3.php:936
1649
  #: inc/class-destination-s3.php:995
1650
  #: inc/class-destination-s3.php:1006
1651
+ #: inc/Pro/class-destination-s3.php:623
1652
  msgid "S3 Service API: %s"
1653
  msgstr "S3サービスAPI: %s"
1654
 
1659
 
1660
  #: inc/class-destination-s3.php:470
1661
  #: inc/pro/class-destination-s3.php:188
 
1662
  #: inc/class-destination-s3.php:803
1663
+ #: inc/Pro/class-destination-s3.php:383
1664
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1665
  msgstr "S3バケットに接続済 \"%1$s \"%2$s"
1666
 
1667
  #: inc/class-destination-s3.php:473
1668
  #: inc/pro/class-destination-s3.php:191
 
1669
  #: inc/class-destination-s3.php:808
1670
+ #: inc/Pro/class-destination-s3.php:391
1671
  msgid "S3 Bucket \"%s\" does not exist!"
1672
  msgstr "S3バケット\"%s\"は存在しません!"
1673
 
1688
 
1689
  #: inc/class-destination-s3.php:601
1690
  #: inc/pro/class-destination-glacier.php:444
 
1691
  #: inc/class-destination-s3.php:972
1692
+ #: inc/Pro/class-destination-glacier.php:446
1693
  msgid "Backup transferred to %s."
1694
  msgstr "バックアップは%sに転送されます。"
1695
 
1728
  #: inc/pro/class-destination-ftp.php:29
1729
  #: inc/pro/class-destination-sugarsync.php:20
1730
  #: inc/pro/class-jobtype-dbdump.php:126
 
1731
  #: inc/Pro/class-destination-ftp.php:47
1732
  #: inc/Pro/class-destination-sugarsync.php:20
1733
+ #: inc/Pro/class-jobtype-dbdump.php:126
1734
  msgid "Password:"
1735
  msgstr "パスワード:"
1736
 
1907
  msgstr "BackWPup ジョブヘルパー"
1908
 
1909
  #: inc/class-job.php:263
1910
+ #: inc/class-job.php:297
1911
  msgid "Starting job"
1912
  msgstr "ジョブを開始"
1913
 
1914
  #: inc/class-job.php:278
1915
+ #: inc/class-job.php:314
1916
  msgid "Job Start"
1917
  msgstr "ジョブを開始"
1918
 
1919
  #: inc/class-job.php:298
1920
+ #: inc/class-job.php:334
1921
  msgid "Creates manifest file"
1922
  msgstr "マニフェストファイルを作成します。"
1923
 
1924
  #: inc/class-job.php:320
1925
+ #: inc/class-job.php:356
1926
  msgid "Creates archive"
1927
  msgstr "アーカイブを作成"
1928
 
1929
  #: inc/class-job.php:360
1930
+ #: inc/class-job.php:403
1931
  msgid "End of Job"
1932
  msgstr "ジョブ終了"
1933
 
1934
  #: inc/class-job.php:377
1935
+ #: inc/class-job.php:428
1936
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1937
  msgstr "BackWPup log for %1$s from %2$s at %3$s"
1938
 
1939
  #: inc/class-job.php:394
1940
+ #: inc/class-job.php:456
1941
  msgctxt "Plugin name; Plugin Version; plugin url"
1942
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1943
  msgstr ""
1944
 
1945
  #: inc/class-job.php:395
1946
+ #: inc/class-job.php:462
1947
  msgctxt "WordPress Version; Blog url"
1948
  msgid "[INFO] WordPress %1$s on %2$s"
1949
  msgstr ""
1950
 
1951
  #: inc/class-job.php:396
1952
+ #: inc/class-job.php:465
1953
  msgid "Normal"
1954
  msgstr ""
1955
 
1956
  #: inc/class-job.php:399
1957
+ #: inc/class-job.php:468
1958
  msgid "Debug"
1959
  msgstr ""
1960
 
1961
  #: inc/class-job.php:402
1962
+ #: inc/class-job.php:471
1963
  msgid "(translated)"
1964
  msgstr ""
1965
 
1966
  #: inc/class-job.php:404
1967
+ #: inc/class-job.php:474
1968
  #, fuzzy
1969
  msgid "[INFO] Log Level: %1$s %2$s"
1970
  msgstr "[情報] curlバージョン: %1$s; %2$s"
1971
 
1972
  #: inc/class-job.php:409
1973
+ #: inc/class-job.php:480
1974
  msgid "[INFO] BackWPup job: %1$s"
1975
  msgstr ""
1976
 
1977
  #: inc/class-job.php:412
1978
+ #: inc/class-job.php:484
1979
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1980
  msgstr ""
1981
 
1983
  #: inc/class-page-backwpup.php:323
1984
  #: inc/class-page-jobs.php:282
1985
  #: inc/class-page-jobs.php:291
1986
+ #: inc/class-job.php:500
1987
  msgid "Not scheduled!"
1988
  msgstr "スケジュールされていない!"
1989
 
1990
  #: inc/class-job.php:430
1991
  #: inc/class-job.php:440
1992
+ #: inc/class-job.php:507
1993
+ #: inc/class-job.php:519
1994
  msgid "[INFO] Cron: %s; Next: %s "
1995
  msgstr ""
1996
 
1997
  #: inc/class-job.php:433
1998
+ #: inc/class-job.php:511
1999
  msgid "[INFO] BackWPup job start with link is active"
2000
  msgstr "[情報]リンクをBackWPupジョブスタートが有効になっています。"
2001
 
2002
  #: inc/class-job.php:435
2003
+ #: inc/class-job.php:513
2004
  msgid "[INFO] BackWPup job start with EasyCron.com"
2005
  msgstr ""
2006
 
2007
  #: inc/class-job.php:443
2008
+ #: inc/class-job.php:523
2009
  msgid "[INFO] BackWPup no automatic job start configured"
2010
  msgstr "[情報] BackWPupの自動開始ジョブが設定されていません"
2011
 
2012
  #: inc/class-job.php:447
2013
+ #: inc/class-job.php:527
2014
  msgid "[INFO] BackWPup job started from wp-cron"
2015
  msgstr "[情報] WP-CronからBackWPupジョブを起動"
2016
 
2017
  #: inc/class-job.php:449
2018
+ #: inc/class-job.php:529
2019
  msgid "[INFO] BackWPup job started manually"
2020
  msgstr "[情報] BackWPup ジョブを手動で開始"
2021
 
2022
  #: inc/class-job.php:451
2023
+ #: inc/class-job.php:531
2024
  msgid "[INFO] BackWPup job started from external url"
2025
  msgstr "[情報] 外部URLからBackWPupジョブを起動"
2026
 
2027
  #: inc/class-job.php:453
2028
+ #: inc/class-job.php:533
2029
  msgid "[INFO] BackWPup job started form commandline interface"
2030
  msgstr "[情報] BackWPupジョブはコマンドライン形式のインターフェイスを開始しました。"
2031
 
2032
  #: inc/class-job.php:462
2033
+ #: inc/class-job.php:544
2034
  msgid "[INFO] PHP ver.:"
2035
  msgstr "[情報] PHPバージョン:"
2036
 
2037
  #: inc/class-job.php:463
2038
+ #: inc/class-job.php:548
2039
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2040
  msgstr "[情報] PHPスクリプトの最大実行時間 %1$d seconds"
2041
 
2042
  #: inc/class-job.php:467
2043
+ #: inc/class-job.php:555
2044
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2045
  msgstr "[情報]スクリプト再起動時間は、%1$d秒に設定されています。"
2046
 
2047
  #: inc/class-job.php:470
2048
+ #: inc/class-job.php:561
2049
  msgid "[INFO] MySQL ver.: %s"
2050
  msgstr "[情報] MySQL バージョン:%s"
2051
 
2052
  #: inc/class-job.php:472
2053
+ #: inc/class-job.php:565
2054
  msgid "[INFO] Web Server: %s"
2055
  msgstr "[情報] Webサーバー: %s"
2056
 
2057
  #: inc/class-job.php:476
2058
+ #: inc/class-job.php:571
2059
  msgid "[INFO] curl ver.: %1$s; %2$s"
2060
  msgstr "[情報] curlバージョン: %1$s; %2$s"
2061
 
2062
  #: inc/class-job.php:478
2063
+ #: inc/class-job.php:576
2064
  msgid "[INFO] Temp folder is: %s"
2065
  msgstr "[情報] Tempフォルダ: %s"
2066
 
2067
  #: inc/class-job.php:485
2068
+ #: inc/class-job.php:584
2069
  msgid "[INFO] Logfile is: %s"
2070
  msgstr "[情報] ログファイル: %s"
2071
 
2072
  #: inc/class-job.php:492
2073
+ #: inc/class-job.php:591
2074
  msgid "[INFO] Backup file is: %s"
2075
  msgstr "[情報] バックアップファイル: %s"
2076
 
2077
  #: inc/class-job.php:494
2078
+ #: inc/class-job.php:594
2079
  msgid "[INFO] Backup type is: %s"
2080
  msgstr "[情報] バックアップタイプ: %s"
2081
 
2082
  #: inc/class-job.php:502
2083
+ #: inc/class-job.php:603
2084
  msgid "Could not write log file"
2085
  msgstr ""
2086
 
2087
  #: inc/class-job.php:514
2088
+ #: inc/class-job.php:616
2089
  msgid "No destination correctly defined for backup! Please correct job settings."
2090
  msgstr "宛先が正しくバックアップ用に定義されていません! 適切なジョブ設定してください。"
2091
 
2092
  #: inc/class-job.php:644
2093
+ #: inc/class-job.php:718
2094
  msgid "Cannot write progress to working file. Job will be aborted."
2095
  msgstr "進行作業をファイルに書き込みできません。ジョブを中止します。"
2096
 
2097
  #: inc/class-job.php:716
2098
  #: inc/class-page-jobs.php:786
2099
+ #: inc/class-job.php:793
2100
  msgid "WARNING:"
2101
  msgstr "警告:"
2102
 
2103
  #: inc/class-job.php:725
2104
  #: inc/class-page-jobs.php:784
2105
+ #: inc/class-job.php:802
2106
  msgid "ERROR:"
2107
  msgstr "エラー:"
2108
 
2109
  #: inc/class-job.php:729
2110
+ #: inc/class-job.php:806
2111
  msgid "DEPRECATED:"
2112
  msgstr "非推奨:"
2113
 
2114
  #: inc/class-job.php:732
2115
+ #: inc/class-job.php:809
2116
  msgid "STRICT NOTICE:"
2117
  msgstr "厳重注意:"
2118
 
2119
  #: inc/class-job.php:737
2120
+ #: inc/class-job.php:814
2121
  msgid "RECOVERABLE ERROR:"
2122
  msgstr "回復可能なエラー:"
2123
 
2124
  #: inc/class-job.php:985
2125
+ #: inc/class-job.php:1091
2126
  msgid "Aborted by user!"
2127
  msgstr "ユーザーによって中止されました。"
2128
 
2129
  #: inc/class-job.php:1019
2130
+ #: inc/class-job.php:1129
2131
  msgid "One old log deleted"
2132
  msgid_plural "%d old logs deleted"
2133
  msgstr[0] "%d個の古いログを削除しました。"
2134
 
2135
  #: inc/class-job.php:1026
2136
  #: inc/class-page-jobs.php:784
2137
+ #: inc/class-job.php:1141
2138
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2139
  msgstr "ジョブは%s秒でエラー終了しました。エラーを解決する必要があります。"
2140
 
2141
  #: inc/class-job.php:1028
2142
+ #: inc/class-job.php:1150
2143
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2144
  msgstr "ジョブは%s秒で警告終了しました。正しく実行するために問題を解決してください。"
2145
 
2146
  #: inc/class-job.php:1030
2147
  #: inc/class-page-jobs.php:788
2148
+ #: inc/class-job.php:1158
2149
  msgid "Job done in %s seconds."
2150
  msgstr "ジョブは%s秒で完了しました。"
2151
 
2152
  #: inc/class-job.php:1074
2153
+ #: inc/class-job.php:1212
2154
  msgid "SUCCESSFUL"
2155
  msgstr "成功"
2156
 
2157
  #: inc/class-job.php:1076
2158
+ #: inc/class-job.php:1214
2159
  msgid "WARNING"
2160
  msgstr "警告"
2161
 
2162
  #: inc/class-job.php:1079
2163
+ #: inc/class-job.php:1217
2164
  msgid "ERROR"
2165
  msgstr "エラー"
2166
 
2167
  #: inc/class-job.php:1082
2168
+ #: inc/class-job.php:1221
2169
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2170
  msgstr "[%3$s] BackWPupログ %1$s: %2$s"
2171
 
2172
  #: inc/class-job.php:1188
2173
+ #: inc/class-job.php:1341
2174
  msgid "Restart after %1$d seconds."
2175
  msgstr "%1$d秒後に再起動します。"
2176
 
2177
  #: inc/class-job.php:1190
2178
+ #: inc/class-job.php:1343
2179
  #, fuzzy
2180
  msgid "Restart after getting signal."
2181
  msgstr "%1$d秒後に再起動します。"
2182
 
2183
  #: inc/class-job.php:1363
2184
+ #: inc/class-job.php:1534
2185
  msgid "Job restarts due to inactivity for more than 5 minutes."
2186
  msgstr "ジョブが5分以上無動作により再起動します。"
2187
 
2188
  #: inc/class-job.php:1461
2189
+ #: inc/class-job.php:1636
2190
  msgid "Step aborted: too many attempts!"
2191
  msgstr "ステップを中止: 回数が多すぎます!"
2192
 
2193
  #: inc/class-job.php:1532
2194
+ #: inc/class-job.php:1716
2195
  msgid "%d. Trying to create backup archive &hellip;"
2196
  msgstr "%d. バックアップアーカイブを作成中..."
2197
 
2198
  #: inc/class-job.php:1540
2199
+ #: inc/class-job.php:1729
2200
  msgctxt "Archive compression method"
2201
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2202
  msgstr "%sにファイルを圧縮します。これは時間がかかる場合があります。しばらくお待ちください。"
2203
 
2204
  #: inc/class-job.php:1547
2205
+ #: inc/class-job.php:1742
2206
  msgid "Adding Extra files to Archive"
2207
  msgstr ""
2208
 
2209
  #: inc/class-job.php:1559
2210
  #: inc/class-job.php:1619
2211
+ #: inc/class-job.php:1754
2212
+ #: inc/class-job.php:1823
2213
  msgid "Cannot create backup archive correctly. Aborting creation."
2214
  msgstr "バックアップアーカイブを正しく作成できません。作成を中止します。"
2215
 
2216
  #: inc/class-job.php:1575
2217
+ #: inc/class-job.php:1772
2218
  msgid "Archiving Folder: %s"
2219
  msgstr ""
2220
 
2221
  #: inc/class-job.php:1629
2222
+ #: inc/class-job.php:1834
2223
  msgid "Backup archive created."
2224
  msgstr "バックアップアーカイブを作成しました。"
2225
 
2226
  #: inc/class-job.php:1643
2227
+ #: inc/class-job.php:1849
2228
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2229
  msgstr ""
2230
 
2231
  #: inc/class-job.php:1646
2232
+ #: inc/class-job.php:1857
2233
  msgid "Archive size is %s."
2234
  msgstr "アーカイブのサイズは%sです。"
2235
 
2236
  #: inc/class-job.php:1649
2237
+ #: inc/class-job.php:1864
2238
  msgid "%1$d Files with %2$s in Archive."
2239
  msgstr "アーカイブのサイズは%2$s、%1$d個のファイルです。"
2240
 
2241
  #: inc/class-job.php:1698
2242
+ #: inc/class-job.php:2059
2243
  #, fuzzy
2244
  msgctxt "Folder name"
2245
  msgid "Folder %s does not exist"
2246
  msgstr "フォルダ%sは存在しません。"
2247
 
2248
  #: inc/class-job.php:1703
2249
+ #: inc/class-job.php:2067
2250
  #, fuzzy
2251
  msgctxt "Folder name"
2252
  msgid "Folder %s is not readable"
2253
  msgstr "フォルダ\"%s\"を読めません!"
2254
 
2255
  #: inc/class-job.php:1725
2256
+ #: inc/class-job.php:2096
2257
  msgid "Link \"%s\" not following."
2258
  msgstr "リンク\"%s\"は次のようではない。"
2259
 
2260
  #: inc/class-job.php:1727
2261
+ #: inc/class-job.php:2100
2262
  msgid "File \"%s\" is not readable!"
2263
  msgstr "ファイル\"%s\"が読めません!"
2264
 
2265
  #: inc/class-job.php:1731
2266
+ #: inc/class-job.php:2107
2267
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2268
  msgstr "“%s”のファイルサイズを取得できません。ファイルが大きすぎる可能性があり、キューに追加されません。"
2269
 
2270
  #: inc/class-job.php:1814
2271
+ #: inc/class-job.php:2197
2272
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2273
  msgstr "%d. マニフェストファイルを生成&#160;&hellip;"
2274
 
2275
  #: inc/class-job.php:1870
2276
+ #: inc/class-job.php:2264
2277
  msgid "You may have noticed the manifest.json file in this archive."
2278
  msgstr "このアーカイブ内のmanifest.jsonファイルに気づいているかもしれません。"
2279
 
2280
  #: inc/class-job.php:1871
2281
+ #: inc/class-job.php:2265
2282
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2283
  msgstr "manifest.jsonは、このアーカイブからバックアップを復元するために必要とする場合があります。"
2284
 
2285
  #: inc/class-job.php:1872
2286
+ #: inc/class-job.php:2268
2287
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2288
  msgstr "manifest.jsonは手つかずの所定の位置に残してください。それ以外の場合は無視されても安全です。"
2289
 
2290
  #: inc/class-job.php:1882
2291
+ #: inc/class-job.php:2282
2292
  msgid "Added manifest.json file with %1$s to backup file list."
2293
  msgstr "バックアップファイルリストに %1$sのmanifest.jsonファイルを追加しました。"
2294
 
2295
  #: inc/class-job.php:1921
2296
+ #: inc/class-job.php:2324
2297
  msgid "Wrong BackWPup JobID"
2298
  msgstr "間違ったジョブID"
2299
 
2300
  #: inc/class-job.php:1934
2301
+ #: inc/class-job.php:2337
2302
  msgid "A BackWPup job is already running"
2303
  msgstr "バックアップジョブがすでに実行されています"
2304
 
2305
  #: inc/class-job.php:2302
2306
+ #: inc/class-job.php:2752
2307
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2308
  msgid "Hangup detected on controlling terminal or death of controlling process"
2309
  msgstr ""
2310
 
2311
  #: inc/class-job.php:2306
2312
+ #: inc/class-job.php:2759
2313
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2314
  msgid "Interrupt from keyboard"
2315
  msgstr ""
2316
 
2317
  #: inc/class-job.php:2310
2318
+ #: inc/class-job.php:2766
2319
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2320
  msgid "Quit from keyboard"
2321
  msgstr ""
2322
 
2323
  #: inc/class-job.php:2314
2324
+ #: inc/class-job.php:2773
2325
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2326
  msgid "Illegal Instruction"
2327
  msgstr ""
2328
 
2329
  #: inc/class-job.php:2318
2330
+ #: inc/class-job.php:2780
2331
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2332
  msgid "Abort signal from abort(3)"
2333
  msgstr ""
2334
 
2335
  #: inc/class-job.php:2322
2336
+ #: inc/class-job.php:2787
2337
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2338
  msgid "Bus error (bad memory access)"
2339
  msgstr ""
2340
 
2341
  #: inc/class-job.php:2326
2342
+ #: inc/class-job.php:2794
2343
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2344
  msgid "Floating point exception"
2345
  msgstr ""
2346
 
2347
  #: inc/class-job.php:2330
2348
+ #: inc/class-job.php:2801
2349
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2350
  msgid "Invalid memory reference"
2351
  msgstr ""
2352
 
2353
  #: inc/class-job.php:2334
2354
+ #: inc/class-job.php:2808
2355
  #, fuzzy
2356
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2357
  msgid "Termination signal"
2358
  msgstr "宛先"
2359
 
2360
  #: inc/class-job.php:2338
2361
+ #: inc/class-job.php:2815
2362
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2363
  msgid "Stack fault on coprocessor"
2364
  msgstr ""
2365
 
2366
  #: inc/class-job.php:2342
2367
+ #: inc/class-job.php:2822
2368
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2369
  msgid "User-defined signal 1"
2370
  msgstr ""
2371
 
2372
  #: inc/class-job.php:2346
2373
+ #: inc/class-job.php:2829
2374
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2375
  msgid "User-defined signal 2"
2376
  msgstr ""
2377
 
2378
  #: inc/class-job.php:2350
2379
+ #: inc/class-job.php:2836
2380
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2381
  msgid "Urgent condition on socket"
2382
  msgstr ""
2383
 
2384
  #: inc/class-job.php:2354
2385
+ #: inc/class-job.php:2843
2386
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2387
  msgid "CPU time limit exceeded"
2388
  msgstr ""
2389
 
2390
  #: inc/class-job.php:2358
2391
+ #: inc/class-job.php:2850
2392
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2393
  msgid "File size limit exceeded"
2394
  msgstr ""
2395
 
2396
  #: inc/class-job.php:2362
2397
+ #: inc/class-job.php:2857
2398
  #, fuzzy
2399
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2400
  msgid "Power failure"
2401
  msgstr "FTP:ログイン失敗!"
2402
 
2403
  #: inc/class-job.php:2366
2404
+ #: inc/class-job.php:2864
2405
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2406
  msgid "Bad argument to routine"
2407
  msgstr ""
2408
 
2409
  #: inc/class-job.php:2373
2410
+ #: inc/class-job.php:2876
2411
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2412
  msgstr ""
2413
 
2414
  #: inc/class-job.php:2407
2415
  #: inc/class-job.php:2420
2416
+ #: inc/class-job.php:2912
2417
+ #: inc/class-job.php:2925
2418
  msgid "System: %s"
2419
  msgstr ""
2420
 
2421
  #: inc/class-job.php:2435
2422
+ #: inc/class-job.php:2942
2423
  msgid "Exception caught in %1$s: %2$s"
2424
  msgstr "%1$sにキャッチされた例外: %2$s"
2425
 
2719
 
2720
  #: inc/class-jobtype-wpexp.php:14
2721
  #: inc/class-page-about.php:472
2722
+ #: inc/class-page-about.php:463
2723
  msgid "WordPress XML export"
2724
  msgstr "WordPressのXMLエクスポート"
2725
 
2956
  msgstr "新規ジョブ"
2957
 
2958
  #: inc/class-page-about.php:369
2959
+ #: inc/class-page-about.php:366
2960
  msgid "Welcome to BackWPup Pro"
2961
  msgstr "BackWPup Proへようこそ"
2962
 
2963
  #: inc/class-page-about.php:370
2964
  #: inc/class-page-backwpup.php:75
2965
+ #: inc/class-page-about.php:367
2966
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2967
  msgstr "BackWPupジョブウィザードの計画を作成しバックアップジョブをスケジュールします。"
2968
 
 
 
 
 
 
 
 
2969
  #: inc/class-page-about.php:372
2970
+ #: inc/class-page-about.php:369
2971
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2972
  msgstr "<a href=\"%1$s\">バックアップジョブの設定</a>準備ができましたか? <a href=\"%2$s\">ウィザードを使用</a>するかエキスパートモードでバックアップを計画することができます。"
2973
 
2974
  #: inc/class-page-about.php:382
2975
+ #: inc/class-page-about.php:376
2976
  msgid "Welcome to BackWPup"
2977
  msgstr "BackWPupへようこそ"
2978
 
2979
  #: inc/class-page-about.php:385
2980
+ #: inc/class-page-about.php:379
2981
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2982
  msgstr "バックアップジョブの準備はできましたか?ウィザードを使用して保存を計画します。"
2983
 
2984
  #: inc/class-page-about.php:398
2985
+ #: inc/class-page-about.php:389
2986
  msgid "Save your database"
2987
  msgstr "データベースを保存します。"
2988
 
2989
  #: inc/class-page-about.php:401
2990
+ #: inc/class-page-about.php:392
2991
  msgid "Save your database regularly"
2992
  msgstr "定期的にデータベースを保存します。"
2993
 
2994
  #: inc/class-page-about.php:402
2995
+ #: inc/class-page-about.php:393
2996
  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."
2997
  msgstr "BackWPupを使用すると、データベースのバックアップを自動実行してスケジュールすることができます。単一のバックアップファイルを使用すると、データベースを復元することができます。バックアップジョブを設定する必要がありますので、それを決して忘れてはいけません。各バックアップ後にデータベースを修復、最適化するオプションもあります。"
2998
 
2999
  #: inc/class-page-about.php:407
3000
  #: inc/class-page-about.php:411
3001
+ #: inc/class-page-about.php:398
3002
+ #: inc/class-page-about.php:402
3003
  msgid "WordPress XML Export"
3004
  msgstr "WordPressのXMLエクスポート"
3005
 
3006
  #: inc/class-page-about.php:408
3007
+ #: inc/class-page-about.php:399
3008
  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."
3009
  msgstr "あなたのデータを保存するために追加または排他的にWordPressに組み込まれたエクスポート形式を選択することができます。もちろん、これは自動バックアップで動作します。利点: 定期的にWordPress importerとブログにこれらのファイルをインポートすることができます。"
3010
 
3011
  #: inc/class-page-about.php:416
3012
+ #: inc/class-page-about.php:407
3013
  msgid "Save all data from the webserver"
3014
  msgstr "ウェブサーバーからすべてのデータを保存"
3015
 
3016
  #: inc/class-page-about.php:419
3017
+ #: inc/class-page-about.php:410
3018
  msgid "Save all files"
3019
  msgstr "すべてのファイルを保存"
3020
 
3021
  #: inc/class-page-about.php:420
3022
+ #: inc/class-page-about.php:411
3023
  msgid "You can backup 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."
3024
  msgstr "すべての添付ファイル、またすべてのシステムファイル、プラグインとテーマを単一のファイルをバックアップすることができます。ファイルが変更されたときにのみ、ファイルシステムのバックアップコピーを更新する<a href=\"%s\">ジョブを作成</a>することができます。"
3025
 
3026
  #: inc/class-page-about.php:425
3027
  #: inc/class-page-about.php:429
3028
+ #: inc/class-page-about.php:416
3029
+ #: inc/class-page-about.php:420
3030
  msgid "Security!"
3031
  msgstr "セキュリティ!"
3032
 
3033
  #: inc/class-page-about.php:426
3034
+ #: inc/class-page-about.php:417
3035
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3036
  msgstr "外部サービス、ローカルファイルおよびディレクトリへの接続: デフォルトでは全てが暗号化されています。"
3037
 
3038
  #: inc/class-page-about.php:434
3039
  #: inc/class-page-about.php:437
3040
+ #: inc/class-page-about.php:425
3041
+ #: inc/class-page-about.php:428
3042
  msgid "Cloud Support"
3043
  msgstr "クラウドのサポート"
3044
 
3045
  #: inc/class-page-about.php:438
3046
+ #: inc/class-page-about.php:429
3047
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3048
  msgstr "BackWPupは、並行して複数のクラウドサービスをサポートします。これはバックアップが冗長であるようにします。"
3049
 
3050
  #: inc/class-page-about.php:444
3051
+ #: inc/class-page-about.php:435
3052
  msgid "Features / differences between Free and Pro"
3053
  msgstr "特長 / 無料版とPro版の違い"
3054
 
3055
  #: inc/class-page-about.php:447
3056
+ #: inc/class-page-about.php:438
3057
  msgid "Features"
3058
  msgstr "特長"
3059
 
3060
  #: inc/class-page-about.php:448
3061
+ #: inc/class-page-about.php:439
3062
  msgid "FREE"
3063
  msgstr "無料"
3064
 
3065
  #: inc/class-page-about.php:449
3066
+ #: inc/class-page-about.php:440
3067
  msgid "PRO"
3068
  msgstr "PRO"
3069
 
3070
  #: inc/class-page-about.php:452
3071
+ #: inc/class-page-about.php:443
3072
  msgid "Complete database backup"
3073
  msgstr "完全なデータベースのバックアップ"
3074
 
3075
  #: inc/class-page-about.php:457
3076
+ #: inc/class-page-about.php:448
3077
  msgid "Complete file backup"
3078
  msgstr "完全なファイルのバックアップ"
3079
 
3080
  #: inc/class-page-about.php:462
3081
+ #: inc/class-page-about.php:453
3082
  msgid "Database check"
3083
  msgstr "データベースチェック"
3084
 
3085
  #: inc/class-page-about.php:467
3086
+ #: inc/class-page-about.php:458
3087
  msgid "Data compression"
3088
  msgstr "データ圧縮"
3089
 
3090
  #: inc/class-page-about.php:477
3091
+ #: inc/class-page-about.php:468
3092
  msgid "List of installed plugins"
3093
  msgstr "インストールされたプラグインの一覧"
3094
 
3095
  #: inc/class-page-about.php:482
3096
+ #: inc/class-page-about.php:473
3097
  msgid "Backup archives management"
3098
  msgstr "バックアップアーカイブの管理"
3099
 
3100
  #: inc/class-page-about.php:487
3101
+ #: inc/class-page-about.php:478
3102
  msgid "Log file management"
3103
  msgstr "ログファイルの管理"
3104
 
3105
  #: inc/class-page-about.php:492
3106
+ #: inc/class-page-about.php:483
3107
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3108
  msgstr "WP-Cron、URL、システム、バックエンドまたはWP-CLIでジョブを開始"
3109
 
3110
  #: inc/class-page-about.php:497
3111
+ #: inc/class-page-about.php:488
3112
  msgid "Log report via email"
3113
  msgstr "メール経由でレポートをログに記録"
3114
 
3115
  #: inc/class-page-about.php:502
3116
+ #: inc/class-page-about.php:493
3117
  msgid "Backup to Microsoft Azure"
3118
  msgstr "Microsoft Azureにバックアップ"
3119
 
3120
  #: inc/class-page-about.php:507
3121
+ #: inc/class-page-about.php:498
3122
  msgid "Backup as email"
3123
  msgstr "メールでバックアップ"
3124
 
3125
  #: inc/class-page-about.php:512
3126
+ #: inc/class-page-about.php:503
3127
  #, fuzzy
3128
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3129
  msgstr "S3サービス<small>(Amazon、Googleストレージ、Hosteurope等)</small>にバックアップ"
3130
 
3131
  #: inc/class-page-about.php:527
3132
+ #: inc/class-page-about.php:518
3133
  msgid "Backup to FTP server"
3134
  msgstr "FTPサーバーにバックアップ"
3135
 
3136
  #: inc/class-page-about.php:532
3137
+ #: inc/class-page-about.php:523
3138
  msgid "Backup to your web space"
3139
  msgstr "ウェブスペースにバックアップ"
3140
 
3141
  #: inc/class-page-about.php:542
3142
  #: inc/pro/class-pro.php:112
3143
+ #: inc/class-page-about.php:553
3144
  #: inc/Pro/class-pro.php:152
 
3145
  msgid "Backup to Google Drive"
3146
  msgstr "Google Driveにバックアップ"
3147
 
3148
  #: inc/class-page-about.php:547
3149
  #: inc/pro/class-pro.php:93
3150
+ #: inc/class-page-about.php:558
3151
  #: inc/Pro/class-pro.php:131
 
3152
  msgid "Backup to Amazon Glacier"
3153
  msgstr "Amazon Glacierにバックアップ"
3154
 
3155
  #: inc/class-page-about.php:552
3156
+ #: inc/class-page-about.php:563
3157
  msgid "Custom API keys for DropBox and SugarSync"
3158
  msgstr "DropBoxとSugarSyncのカスタムAPIキー"
3159
 
3160
  #: inc/class-page-about.php:557
3161
+ #: inc/class-page-about.php:568
3162
  msgid "XML database backup as PHPMyAdmin schema"
3163
  msgstr "PHPMyAdminのスキーマなどのXMLデータベースのバックアップ"
3164
 
3165
  #: inc/class-page-about.php:562
3166
+ #: inc/class-page-about.php:573
3167
  msgid "Database backup as mysqldump per command line"
3168
  msgstr "mysqldumpコマンドラインあたりのデータベースのバックアップ"
3169
 
3170
  #: inc/class-page-about.php:567
3171
+ #: inc/class-page-about.php:578
3172
  msgid "Database backup for additional MySQL databases"
3173
  msgstr "追加のMySQLデータベース用のデータベースのバックアップ"
3174
 
3175
  #: inc/class-page-about.php:572
3176
+ #: inc/class-page-about.php:583
3177
  msgid "Import and export job settings as XML"
3178
  msgstr "XMLのインポートおよびエクスポートジョブの設定"
3179
 
3180
  #: inc/class-page-about.php:577
3181
+ #: inc/class-page-about.php:588
3182
  msgid "Wizard for system tests"
3183
  msgstr "システムテストのためのウィザード"
3184
 
3185
  #: inc/class-page-about.php:582
3186
+ #: inc/class-page-about.php:593
3187
  msgid "Wizard for scheduled backup jobs"
3188
  msgstr "スケジュールされたバックアップジョブのウィザード"
3189
 
3190
  #: inc/class-page-about.php:587
3191
+ #: inc/class-page-about.php:598
3192
  msgid "Wizard to import settings and backup jobs"
3193
  msgstr "設定およびバックアップジョブをインポートするウィザード"
3194
 
3195
  #: inc/class-page-about.php:592
3196
+ #: inc/class-page-about.php:603
3197
  msgid "Differential backup of changed directories to Dropbox"
3198
  msgstr "Dropboxに変更されたディレクトリの差分バックアップ"
3199
 
3200
  #: inc/class-page-about.php:597
3201
+ #: inc/class-page-about.php:608
3202
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3203
  msgstr "Rackspace Cloud Filesに変更されたディレクトリの差分バックアップ"
3204
 
3205
  #: inc/class-page-about.php:602
3206
+ #: inc/class-page-about.php:613
3207
  msgid "Differential backup of changed directories to S3"
3208
  msgstr "S3に変更されたディレクトリの差分バックアップ"
3209
 
3210
  #: inc/class-page-about.php:607
3211
+ #: inc/class-page-about.php:618
3212
  msgid "Differential backup of changed directories to MS Azure"
3213
  msgstr "MS Azureに変更されたディレクトリの差分バックアップ"
3214
 
3215
  #: inc/class-page-about.php:612
3216
+ #: inc/class-page-about.php:648
3217
  msgid "<strong>Premium support</strong>"
3218
  msgstr "<strong>プレミアムサポート</strong>"
3219
 
3220
  #: inc/class-page-about.php:617
3221
+ #: inc/class-page-about.php:653
3222
  msgid "<strong>Automatic updates</strong>"
3223
  msgstr "<strong>backwpup.com から自動更新</strong>"
3224
 
3225
  #: inc/class-page-about.php:624
3226
+ #: inc/class-page-about.php:660
3227
  msgid "GET PRO"
3228
  msgstr "GET PRO"
3229
 
3285
  #: inc/class-page-logs.php:206
3286
  #: inc/class-page-backups.php:281
3287
  #: inc/class-page-backups.php:285
3288
+ #: inc/class-page-logs.php:234
3289
  #: inc/class-page-settings.php:768
3290
  #: inc/class-page-settings.php:779
 
3291
  msgid "Download"
3292
  msgstr "ダウンロード"
3293
 
3347
  msgid "Restoring backups"
3348
  msgstr "バックアップの復元"
3349
 
 
 
 
 
 
3350
  #: inc/class-page-backwpup.php:78
3351
  #: inc/class-page-backwpup.php:87
3352
  msgctxt "Dashboard heading"
3578
 
3579
  #: inc/class-page-editjob.php:328
3580
  #: inc/class-page-settings.php:117
 
3581
  #: inc/class-page-editjob.php:337
3582
+ #: inc/class-page-settings.php:214
3583
  msgid "General"
3584
  msgstr "一般"
3585
 
3613
 
3614
  #: inc/class-page-editjob.php:391
3615
  #: inc/pro/class-wizard-job.php:254
 
3616
  #: inc/class-page-editjob.php:400
3617
+ #: inc/Pro/class-wizard-job.php:254
3618
  msgid "This job is a&#160;&hellip;"
3619
  msgstr "このジョブは&#160;&hellip;"
3620
 
3621
  #: inc/class-page-editjob.php:394
3622
  #: inc/pro/class-wizard-job.php:257
 
3623
  #: inc/class-page-editjob.php:403
3624
+ #: inc/Pro/class-wizard-job.php:257
3625
  msgid "Job tasks"
3626
  msgstr "ジョブタスク"
3627
 
3634
  #: inc/class-page-editjob.php:420
3635
  #: inc/pro/class-wizard-job.php:402
3636
  #: inc/pro/class-wizard-job.php:405
 
 
3637
  #: inc/class-page-editjob.php:426
3638
  #: inc/class-page-editjob.php:429
3639
+ #: inc/Pro/class-wizard-job.php:402
3640
+ #: inc/Pro/class-wizard-job.php:405
3641
  msgid "Backup type"
3642
  msgstr "バックアップの種類"
3643
 
3648
 
3649
  #: inc/class-page-editjob.php:428
3650
  #: inc/pro/class-wizard-job.php:413
 
3651
  #: inc/class-page-editjob.php:437
3652
+ #: inc/Pro/class-wizard-job.php:413
3653
  msgid "Create a backup archive"
3654
  msgstr "バックアップアーカイブを作成"
3655
 
3749
  #: inc/class-page-editjob.php:476
3750
  #: inc/pro/class-wizard-job.php:426
3751
  #: inc/pro/class-wizard-job.php:429
 
 
3752
  #: inc/class-page-editjob.php:481
3753
  #: inc/class-page-editjob.php:483
3754
+ #: inc/Pro/class-wizard-job.php:426
3755
+ #: inc/Pro/class-wizard-job.php:429
3756
  msgid "Zip"
3757
  msgstr "Zip"
3758
 
3759
  #: inc/class-page-editjob.php:479
3760
  #: inc/pro/class-wizard-job.php:433
 
3761
  #: inc/class-page-editjob.php:486
3762
+ #: inc/Pro/class-wizard-job.php:433
3763
  msgid "Tar"
3764
  msgstr "Tar"
3765
 
3767
  #: inc/class-page-editjob.php:483
3768
  #: inc/pro/class-wizard-job.php:437
3769
  #: inc/pro/class-wizard-job.php:440
 
 
3770
  #: inc/class-page-editjob.php:488
3771
  #: inc/class-page-editjob.php:490
3772
+ #: inc/Pro/class-wizard-job.php:437
3773
+ #: inc/Pro/class-wizard-job.php:440
3774
  msgid "Tar GZip"
3775
  msgstr "Tar GZip"
3776
 
3786
  #: inc/class-page-editjob.php:489
3787
  #: inc/pro/class-wizard-job.php:444
3788
  #: inc/pro/class-wizard-job.php:447
 
 
3789
  #: inc/class-page-editjob.php:494
3790
  #: inc/class-page-editjob.php:497
3791
+ #: inc/Pro/class-wizard-job.php:444
3792
+ #: inc/Pro/class-wizard-job.php:447
3793
  msgid "Tar BZip2"
3794
  msgstr "Tar BZip2"
3795
 
3917
  #: inc/class-page-editjob.php:650
3918
  #: inc/class-page-editjob.php:718
3919
  #: inc/pro/class-wizard-job.php:320
 
3920
  #: inc/class-page-editjob.php:686
3921
  #: inc/class-page-editjob.php:754
3922
+ #: inc/Pro/class-wizard-job.php:320
3923
  msgid "Scheduler"
3924
  msgstr "スケジューラ"
3925
 
3927
  #: inc/class-page-jobs.php:126
3928
  #: inc/class-page-logs.php:139
3929
  #: inc/pro/class-wizard-job.php:324
 
 
3930
  #: inc/class-page-editjob.php:691
3931
+ #: inc/class-page-logs.php:166
3932
+ #: inc/Pro/class-wizard-job.php:324
3933
  msgid "Type"
3934
  msgstr "タイプ"
3935
 
3936
  #: inc/class-page-editjob.php:660
3937
  #: inc/pro/class-wizard-job.php:330
 
3938
  #: inc/class-page-editjob.php:696
3939
+ #: inc/Pro/class-wizard-job.php:330
3940
  msgid "Hour"
3941
  msgstr "時間"
3942
 
3943
  #: inc/class-page-editjob.php:663
3944
  #: inc/pro/class-wizard-job.php:333
 
3945
  #: inc/class-page-editjob.php:699
3946
+ #: inc/Pro/class-wizard-job.php:333
3947
  msgid "Minute"
3948
  msgstr "分"
3949
 
3950
  #: inc/class-page-editjob.php:667
3951
  #: inc/pro/class-wizard-job.php:337
 
3952
  #: inc/class-page-editjob.php:703
3953
+ #: inc/Pro/class-wizard-job.php:337
3954
  msgid "monthly"
3955
  msgstr "毎月"
3956
 
3957
  #: inc/class-page-editjob.php:669
3958
  #: inc/pro/class-wizard-job.php:339
 
3959
  #: inc/class-page-editjob.php:705
3960
+ #: inc/Pro/class-wizard-job.php:339
3961
  msgid "on"
3962
  msgstr "実行日"
3963
 
3964
  #: inc/class-page-editjob.php:679
3965
  #: inc/pro/class-wizard-job.php:349
 
3966
  #: inc/class-page-editjob.php:715
3967
+ #: inc/Pro/class-wizard-job.php:349
3968
  msgid "weekly"
3969
  msgstr "毎週"
3970
 
3971
  #: inc/class-page-editjob.php:681
3972
  #: inc/class-page-editjob.php:788
3973
  #: inc/pro/class-wizard-job.php:351
 
3974
  #: inc/class-page-editjob.php:717
3975
  #: inc/class-page-editjob.php:824
3976
+ #: inc/Pro/class-wizard-job.php:351
3977
  msgid "Sunday"
3978
  msgstr "日曜日"
3979
 
3980
  #: inc/class-page-editjob.php:682
3981
  #: inc/class-page-editjob.php:789
3982
  #: inc/pro/class-wizard-job.php:352
 
3983
  #: inc/class-page-editjob.php:718
3984
  #: inc/class-page-editjob.php:825
3985
+ #: inc/Pro/class-wizard-job.php:352
3986
  msgid "Monday"
3987
  msgstr "月曜日"
3988
 
3989
  #: inc/class-page-editjob.php:683
3990
  #: inc/class-page-editjob.php:790
3991
  #: inc/pro/class-wizard-job.php:353
 
3992
  #: inc/class-page-editjob.php:719
3993
  #: inc/class-page-editjob.php:826
3994
+ #: inc/Pro/class-wizard-job.php:353
3995
  msgid "Tuesday"
3996
  msgstr "火曜日"
3997
 
3998
  #: inc/class-page-editjob.php:684
3999
  #: inc/class-page-editjob.php:791
4000
  #: inc/pro/class-wizard-job.php:354
 
4001
  #: inc/class-page-editjob.php:720
4002
  #: inc/class-page-editjob.php:827
4003
+ #: inc/Pro/class-wizard-job.php:354
4004
  msgid "Wednesday"
4005
  msgstr "水曜日"
4006
 
4007
  #: inc/class-page-editjob.php:685
4008
  #: inc/class-page-editjob.php:792
4009
  #: inc/pro/class-wizard-job.php:355
 
4010
  #: inc/class-page-editjob.php:721
4011
  #: inc/class-page-editjob.php:828
4012
+ #: inc/Pro/class-wizard-job.php:355
4013
  msgid "Thursday"
4014
  msgstr "木曜日"
4015
 
4016
  #: inc/class-page-editjob.php:686
4017
  #: inc/class-page-editjob.php:793
4018
  #: inc/pro/class-wizard-job.php:356
 
4019
  #: inc/class-page-editjob.php:722
4020
  #: inc/class-page-editjob.php:829
4021
+ #: inc/Pro/class-wizard-job.php:356
4022
  msgid "Friday"
4023
  msgstr "金曜日"
4024
 
4025
  #: inc/class-page-editjob.php:687
4026
  #: inc/class-page-editjob.php:794
4027
  #: inc/pro/class-wizard-job.php:357
 
4028
  #: inc/class-page-editjob.php:723
4029
  #: inc/class-page-editjob.php:830
4030
+ #: inc/Pro/class-wizard-job.php:357
4031
  msgid "Saturday"
4032
  msgstr "土曜日"
4033
 
4034
  #: inc/class-page-editjob.php:697
4035
  #: inc/pro/class-wizard-job.php:367
 
4036
  #: inc/class-page-editjob.php:733
4037
+ #: inc/Pro/class-wizard-job.php:367
4038
  msgid "daily"
4039
  msgstr "毎日"
4040
 
4041
  #: inc/class-page-editjob.php:707
4042
  #: inc/pro/class-wizard-job.php:377
 
4043
  #: inc/class-page-editjob.php:743
4044
+ #: inc/Pro/class-wizard-job.php:377
4045
  msgid "hourly"
4046
  msgstr "毎時"
4047
 
4189
 
4190
  #: inc/class-page-jobs.php:172
4191
  #: inc/class-page-logs.php:200
 
4192
  #: inc/class-page-logs.php:228
4193
+ #: inc/Pro/class-page-support.php:221
4194
  msgid "Job ID: %d"
4195
  msgstr "ジョブID: %d"
4196
 
5020
  #: inc/pro/class-wizard-job.php:17
5021
  #: inc/pro/class-wizard-jobimport.php:16
5022
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5023
  #: inc/class-admin.php:510
5024
  #: inc/class-admin.php:531
5025
+ #: inc/class-job.php:459
5026
+ #: inc/class-page-about.php:365
5027
+ #: inc/class-page-about.php:375
5028
+ #: inc/class-page-about.php:660
5029
+ #: inc/class-page-backwpup.php:254
5030
  #: inc/class-page-settings.php:1123
5031
+ #: inc/Pro/class-wizard-job.php:17
5032
+ #: inc/Pro/class-wizard-jobimport.php:16
5033
+ #: inc/Pro/class-wizard-systemtest.php:27
5034
  msgid "http://backwpup.com"
5035
  msgstr "http://backwpup.com"
5036
 
5043
  #: inc/pro/class-wizard-job.php:19
5044
  #: inc/pro/class-wizard-jobimport.php:18
5045
  #: inc/pro/class-wizard-systemtest.php:18
 
5046
  #: inc/Pro/class-wizard-job.php:19
5047
+ #: inc/Pro/class-wizard-jobimport.php:18
5048
  #: inc/Pro/class-wizard-systemtest.php:29
5049
  msgid "http://inpsyde.com"
5050
  msgstr "http://inpsyde.com"
5051
 
5052
+ #: backwpup.php:573
5053
+ #: vendor_dist/backwpup.php:573
5054
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5055
  msgstr ""
5056
 
5057
+ #: inc/class-create-archive.php:114
5058
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5059
  msgstr ""
5060
 
5061
+ #: inc/class-create-archive.php:311
5062
+ msgid "File name cannot be empty."
 
5063
  msgstr ""
5064
 
5065
+ #: inc/class-create-archive.php:741
5066
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5067
  msgstr ""
5068
 
5069
+ #. translators: $1 is the filename to add into the archive.
5070
+ #: inc/class-create-archive.php:996
5071
+ msgid "Cannot open source file %s."
5072
  msgstr ""
5073
 
5074
+ #: inc/class-decrypter.php:56
5075
+ msgid "Cannot open the archive for reading."
5076
  msgstr ""
5077
 
5078
+ #: inc/class-decrypter.php:82
5079
+ msgid "Cannot write the encrypted archive."
5080
  msgstr ""
5081
 
5082
+ #: inc/class-decrypter.php:162
5083
+ msgid "Private key invalid."
5084
  msgstr ""
5085
 
5086
+ #: inc/class-destination-dropbox-downloader.php:72
5087
+ #: inc/class-destination-ftp-downloader.php:72
5088
+ #: inc/class-destination-s3-downloader.php:83
5089
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5090
+ msgid "Could not write data to file."
5091
  msgstr ""
5092
 
5093
+ #: inc/class-destination-dropbox-downloader.php:104
5094
+ #: inc/class-destination-folder-downloader.php:137
5095
+ #: inc/class-destination-ftp-downloader.php:126
5096
+ #: inc/class-destination-s3-downloader.php:112
5097
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5098
+ msgid "File could not be opened for writing."
5099
  msgstr ""
5100
 
5101
  #: inc/class-destination-folder-downloader.php:64
5115
  msgid "%s is a directory not a file."
5116
  msgstr ""
5117
 
5118
+ #: inc/class-destination-ftp-downloader.php:108
5119
+ msgid "Cannot open FTP file for download."
5120
+ msgstr ""
5121
+
5122
+ #: inc/class-destination-ftp.php:321
5123
+ msgid "Could not log in to FTP server."
5124
+ msgstr ""
5125
+
5126
+ #: inc/class-destination-ftp.php:735
5127
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5128
+ msgstr ""
5129
+
5130
+ #: inc/class-destination-s3-downloader.php:76
5131
+ msgid "Could not write data to file. Empty source file."
5132
+ msgstr ""
5133
+
5134
  #: inc/class-destination-s3.php:102
5135
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5136
  msgstr ""
5137
 
5138
+ #: inc/class-destination-s3.php:1134
5139
+ #: inc/Pro/class-destination-s3.php:63
5140
+ msgid "Amazon S3: EU (London)"
5141
+ msgstr ""
5142
+
5143
+ #: inc/class-download-file.php:135
5144
+ msgid "Invalid file name, seems file include invalid characters."
5145
+ msgstr ""
5146
+
5147
+ #: inc/class-job.php:362
5148
+ msgid "Encrypts the archive"
5149
+ msgstr ""
5150
+
5151
+ #: inc/class-job.php:1902
5152
+ msgid "No encryption key was provided. Aborting encryption."
5153
+ msgstr ""
5154
+
5155
+ #: inc/class-job.php:1912
5156
+ msgid "%d. Trying to encrypt archive &hellip;"
5157
+ msgstr ""
5158
+
5159
+ #: inc/class-job.php:1925
5160
+ msgid "Cannot open the archive for reading. Aborting encryption."
5161
+ msgstr ""
5162
+
5163
+ #: inc/class-job.php:1932
5164
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5165
+ msgstr ""
5166
+
5167
+ #: inc/class-job.php:1991
5168
+ msgid "Encrypted %s of data."
5169
+ msgstr ""
5170
+
5171
+ #: inc/class-job.php:1996
5172
+ msgid "Unable to delete unencrypted archive."
5173
+ msgstr ""
5174
+
5175
+ #: inc/class-job.php:2003
5176
+ msgid "Unable to rename encrypted archive."
5177
+ msgstr ""
5178
+
5179
+ #: inc/class-job.php:2009
5180
+ msgid "Archive has been successfully encrypted."
5181
+ msgstr ""
5182
+
5183
+ #: inc/class-job.php:2719
5184
+ msgid "exec command is not active."
5185
+ msgstr ""
5186
+
5187
+ #: inc/class-job.php:2725
5188
+ msgid "mysqldump binary not found."
5189
+ msgstr ""
5190
+
5191
+ #: inc/class-page-about.php:365
5192
+ #: inc/class-page-about.php:375
5193
+ #: inc/class-page-backwpup.php:254
5194
+ msgid "BackWPup banner"
5195
+ msgstr ""
5196
+
5197
+ #: inc/class-page-about.php:368
5198
+ #: inc/class-page-about.php:378
5199
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5200
+ msgstr ""
5201
+
5202
+ #: inc/class-page-about.php:533
5203
+ msgid "Restore manually uploaded Backup Archives"
5204
+ msgstr ""
5205
+
5206
+ #: inc/class-page-about.php:538
5207
+ msgid "Standalone Restore App"
5208
+ msgstr ""
5209
+
5210
+ #: inc/class-page-about.php:543
5211
+ msgid "Encrypt Backup Archives"
5212
+ msgstr ""
5213
+
5214
+ #: inc/class-page-about.php:548
5215
+ msgid "Restore Encrypted Backups"
5216
+ msgstr ""
5217
+
5218
+ #: inc/class-page-about.php:623
5219
+ msgid "Restore from Folder"
5220
+ msgstr ""
5221
+
5222
+ #: inc/class-page-about.php:628
5223
+ msgid "Restore from Google Drive"
5224
+ msgstr ""
5225
+
5226
+ #: inc/class-page-about.php:633
5227
+ msgid "Restore from Amazon S3"
5228
+ msgstr ""
5229
+
5230
+ #: inc/class-page-about.php:638
5231
+ msgid "Restore from Dropbox"
5232
+ msgstr ""
5233
+
5234
+ #: inc/class-page-about.php:643
5235
+ msgid "Restore from FTP"
5236
+ msgstr ""
5237
+
5238
+ #: inc/class-page-backups.php:293
5239
+ #: inc/Pro/class-pro.php:285
5240
+ #: inc/Pro/class-pro.php:286
5241
+ #: views/pro/restore/steps/step4_top.php:2
5242
+ msgid "Restore"
5243
+ msgstr ""
5244
+
5245
  #: inc/class-page-backups.php:408
5246
  msgid "&laquo; Go back"
5247
  msgstr ""
5284
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5285
  msgstr ""
5286
 
5287
+ #: inc/class-page-backwpup.php:77
5288
+ #: inc/class-page-backwpup.php:86
5289
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5290
  msgstr ""
5291
 
5292
+ #: inc/class-page-editjob.php:448
5293
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5294
  msgstr ""
5295
 
5296
+ #: inc/class-page-editjob.php:452
5297
+ msgid "Preview: "
5298
  msgstr ""
5299
 
5300
+ #: inc/class-page-editjob.php:484
5301
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5302
+ msgstr ""
5303
+
5304
+ #: inc/class-page-editjob.php:495
5305
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5306
+ msgstr ""
5307
+
5308
+ #: inc/class-page-editjob.php:506
5309
+ #: inc/class-page-editjob.php:511
5310
+ #: inc/class-page-editjob.php:520
5311
+ msgid "Encrypt Archive"
5312
+ msgstr ""
5313
+
5314
+ #: inc/class-page-editjob.php:524
5315
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5316
  msgstr ""
5317
 
5318
  #: inc/class-page-settings.php:39
5525
  msgid "BackWPup maximum script execution time"
5526
  msgstr ""
5527
 
5528
+ #: inc/class-system-tests-runner.php:77
5529
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5530
  msgstr ""
5531
 
5532
+ #: inc/class-system-tests-runner.php:88
5533
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5534
  msgstr ""
5535
 
5536
+ #: inc/class-system-tests-runner.php:100
5537
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5538
  msgstr ""
5539
 
5540
+ #: inc/class-system-tests-runner.php:193
5541
+ msgid "Yeah!"
5542
  msgstr ""
5543
 
5544
+ #: inc/class-system-tests-runner.php:261
5545
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5546
  msgstr ""
5547
 
5548
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-pt_BR.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Pasta"
@@ -53,24 +53,24 @@ msgstr "Backup para FTP"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Backup para Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Serviço S3"
@@ -101,8 +101,8 @@ msgstr "RSC"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Backup para arquivos em nuvem da Rackspace"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Backup para SugarSync"
@@ -178,8 +178,8 @@ msgstr ""
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "Logs"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "API do Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "Login"
472
 
@@ -480,16 +480,16 @@ msgstr "Autenticação"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "Não autenticado!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "Criar Conta"
495
 
@@ -499,11 +499,11 @@ msgstr "Criar Conta"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "Autenticado!"
509
 
@@ -555,10 +555,10 @@ msgstr ""
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "Configurações de Backup"
564
 
@@ -577,10 +577,10 @@ msgstr ""
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "Exclusão de arquivo"
586
 
@@ -598,17 +598,17 @@ msgstr "Exclusão de arquivo"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "Número de arquivos para manter na pasta."
614
 
@@ -621,12 +621,12 @@ msgstr "Número de arquivos para manter na pasta."
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Não exclua arquivos durante a sincronização de destino!"
664
 
@@ -669,22 +669,22 @@ msgstr ""
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr ""
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr ""
690
 
@@ -697,26 +697,26 @@ msgstr ""
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "Backup transferido para %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr ""
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr ""
722
 
@@ -745,9 +745,9 @@ msgstr ""
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
 
748
  #: inc/Pro/class-destination-email.php:16
749
  #: inc/Pro/class-destination-email.php:18
750
- #: inc/class-destination-email.php:39
751
  msgid "Email address"
752
  msgstr ""
753
 
@@ -760,10 +760,10 @@ msgstr ""
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
763
- #: inc/Pro/class-destination-email.php:29
764
- #: inc/Pro/class-destination-email.php:30
765
  #: inc/class-destination-email.php:52
766
  #: inc/class-destination-email.php:56
 
 
767
  msgid "Send test email"
768
  msgstr ""
769
 
@@ -835,9 +835,9 @@ msgstr "Nome do host de SMTP"
835
  #: inc/class-destination-email.php:98
836
  #: inc/class-destination-ftp.php:31
837
  #: inc/pro/class-destination-ftp.php:21
838
- #: inc/Pro/class-destination-ftp.php:35
839
  #: inc/class-destination-email.php:124
840
  #: inc/class-destination-ftp.php:56
 
841
  msgid "Port:"
842
  msgstr "Porta:"
843
 
@@ -856,10 +856,10 @@ msgstr "Conexão segura de SMTP"
856
  #: inc/class-page-settings.php:328
857
  #: inc/pro/class-jobtype-dbdump.php:157
858
  #: inc/pro/class-jobtype-dbdump.php:205
859
- #: inc/Pro/class-jobtype-dbdump.php:157
860
- #: inc/Pro/class-jobtype-dbdump.php:205
861
  #: inc/class-destination-email.php:141
862
  #: inc/class-page-settings.php:837
 
 
863
  msgid "none"
864
  msgstr "nenhum"
865
 
@@ -983,8 +983,8 @@ msgstr "Tempo limite de conexão FTP"
983
  #: inc/class-destination-ftp.php:87
984
  #: inc/class-page-logs.php:257
985
  #: inc/class-page-settings.php:466
986
- #: inc/class-page-logs.php:288
987
  #: inc/class-destination-ftp.php:137
 
988
  msgid "seconds"
989
  msgstr ""
990
 
@@ -1139,15 +1139,15 @@ msgstr "Backup transferidos para o servidor FTP: %s"
1139
  #: inc/pro/class-destination-glacier.php:468
1140
  #: inc/pro/class-destination-rsc.php:226
1141
  #: inc/pro/class-destination-rsc.php:259
 
 
1142
  #: inc/class-destination-rsc.php:292
 
 
1143
  #: inc/Pro/class-destination-gdrive.php:905
1144
  #: inc/Pro/class-destination-glacier.php:470
1145
  #: inc/Pro/class-destination-rsc.php:228
1146
  #: inc/Pro/class-destination-rsc.php:261
1147
- #: inc/class-destination-msazure.php:275
1148
- #: inc/class-destination-s3.php:843
1149
- #: inc/class-destination-s3.php:958
1150
- #: inc/class-destination-ftp.php:673
1151
  msgid "Can not open source file for transfer."
1152
  msgstr ""
1153
 
@@ -1197,8 +1197,8 @@ msgstr "Pasta no repositório"
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
1200
- #: inc/Pro/class-destination-glacier.php:96
1201
  #: inc/class-destination-s3.php:215
 
1202
  msgid "File deletion"
1203
  msgstr "Exclusão de arquivo"
1204
 
@@ -1221,15 +1221,15 @@ msgstr ""
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
1224
- #: inc/Pro/class-destination-msazure.php:144
1225
  #: inc/class-destination-msazure.php:237
 
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "Repositório \"%s\" da MS Azure não existe!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
1231
- #: inc/Pro/class-destination-msazure.php:148
1232
  #: inc/class-destination-msazure.php:241
 
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "Conectado ao repositório \"%s\" da MS Azure."
1235
 
@@ -1241,9 +1241,9 @@ msgstr ""
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
1244
- #: inc/Pro/class-destination-msazure.php:233
1245
  #: inc/class-destination-msazure.php:296
1246
  #: inc/class-destination-msazure.php:352
 
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "API Microsoft Azure: %s"
1249
 
@@ -1262,9 +1262,9 @@ msgstr ""
1262
  #: inc/class-destination-msazure.php:444
1263
  #: inc/class-destination-s3.php:222
1264
  #: inc/pro/class-destination-glacier.php:166
1265
- #: inc/Pro/class-destination-glacier.php:166
1266
  #: inc/class-destination-msazure.php:448
1267
  #: inc/class-destination-s3.php:359
 
1268
  msgid "Missing access key!"
1269
  msgstr "Falta a chave de acesso!"
1270
 
@@ -1410,122 +1410,122 @@ msgstr ""
1410
 
1411
  #: inc/class-destination-s3.php:33
1412
  #: inc/pro/class-destination-s3.php:18
1413
- #: inc/Pro/class-destination-s3.php:32
1414
  #: inc/class-destination-s3.php:54
 
1415
  msgid "Amazon S3 Region"
1416
  msgstr "Região de Amazon S3"
1417
 
1418
  #: inc/class-destination-s3.php:34
1419
  #: inc/pro/class-destination-s3.php:19
1420
- #: inc/Pro/class-destination-s3.php:40
1421
  #: inc/class-destination-s3.php:1118
 
1422
  msgid "Amazon S3: US Standard"
1423
  msgstr "Amazon S3: EUA padrão"
1424
 
1425
  #: inc/class-destination-s3.php:35
1426
  #: inc/pro/class-destination-s3.php:20
1427
- #: inc/Pro/class-destination-s3.php:45
1428
  #: inc/class-destination-s3.php:1122
 
1429
  msgid "Amazon S3: US West (Northern California)"
1430
  msgstr "Amazon S3: Oeste dos EUA (Norte da Califórnia)"
1431
 
1432
  #: inc/class-destination-s3.php:36
1433
  #: inc/pro/class-destination-s3.php:21
1434
- #: inc/Pro/class-destination-s3.php:53
1435
  #: inc/class-destination-s3.php:1126
 
1436
  msgid "Amazon S3: US West (Oregon)"
1437
  msgstr "Amazon S3: Oeste dos EUA (Oregon)"
1438
 
1439
  #: inc/class-destination-s3.php:37
1440
  #: inc/pro/class-destination-s3.php:22
1441
- #: inc/Pro/class-destination-s3.php:58
1442
  #: inc/class-destination-s3.php:1130
 
1443
  msgid "Amazon S3: EU (Ireland)"
1444
  msgstr "Amazon S3: Europa (Irlanda)"
1445
 
1446
  #: inc/class-destination-s3.php:38
1447
  #: inc/pro/class-destination-s3.php:23
1448
- #: inc/Pro/class-destination-s3.php:68
1449
  #: inc/class-destination-s3.php:1138
 
1450
  msgid "Amazon S3: EU (Germany)"
1451
  msgstr ""
1452
 
1453
  #: inc/class-destination-s3.php:39
1454
  #: inc/pro/class-destination-s3.php:24
1455
- #: inc/Pro/class-destination-s3.php:73
1456
  #: inc/class-destination-s3.php:1142
 
1457
  #, fuzzy
1458
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1459
  msgstr "Amazon S3: Ásia-Pacífico (Tóquio)"
1460
 
1461
  #: inc/class-destination-s3.php:40
1462
  #: inc/pro/class-destination-s3.php:25
1463
- #: inc/Pro/class-destination-s3.php:78
1464
  #: inc/class-destination-s3.php:1146
 
1465
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1466
  msgstr "Amazon S3: Ásia-Pacífico (Tóquio)"
1467
 
1468
  #: inc/class-destination-s3.php:41
1469
  #: inc/pro/class-destination-s3.php:26
1470
- #: inc/Pro/class-destination-s3.php:83
1471
  #: inc/class-destination-s3.php:1150
 
1472
  #, fuzzy
1473
  msgid "Amazon S3: Asia Pacific (Seoul)"
1474
  msgstr "Amazon S3: Ásia-Pacífico (Sidnei)"
1475
 
1476
  #: inc/class-destination-s3.php:42
1477
  #: inc/pro/class-destination-s3.php:27
1478
- #: inc/Pro/class-destination-s3.php:88
1479
  #: inc/class-destination-s3.php:1154
 
1480
  msgid "Amazon S3: Asia Pacific (Singapore)"
1481
  msgstr "Amazon S3: Ásia-Pacífico (Singapura)"
1482
 
1483
  #: inc/class-destination-s3.php:43
1484
  #: inc/pro/class-destination-s3.php:28
1485
- #: inc/Pro/class-destination-s3.php:93
1486
  #: inc/class-destination-s3.php:1158
 
1487
  msgid "Amazon S3: Asia Pacific (Sydney)"
1488
  msgstr "Amazon S3: Ásia-Pacífico (Sidnei)"
1489
 
1490
  #: inc/class-destination-s3.php:44
1491
  #: inc/pro/class-destination-s3.php:29
1492
- #: inc/Pro/class-destination-s3.php:98
1493
  #: inc/class-destination-s3.php:1162
 
1494
  msgid "Amazon S3: South America (Sao Paulo)"
1495
  msgstr "Amazon S3: Ámérica do Sul (São Paulo)"
1496
 
1497
  #: inc/class-destination-s3.php:45
1498
  #: inc/pro/class-destination-s3.php:30
1499
- #: inc/Pro/class-destination-s3.php:103
1500
  #: inc/class-destination-s3.php:1166
 
1501
  msgid "Amazon S3: China (Beijing)"
1502
  msgstr ""
1503
 
1504
  #: inc/class-destination-s3.php:46
1505
  #: inc/pro/class-destination-s3.php:31
1506
- #: inc/Pro/class-destination-s3.php:108
1507
  #: inc/class-destination-s3.php:1170
 
1508
  msgid "Google Storage: EU"
1509
  msgstr ""
1510
 
1511
  #: inc/class-destination-s3.php:47
1512
  #: inc/pro/class-destination-s3.php:32
1513
- #: inc/Pro/class-destination-s3.php:113
1514
  #: inc/class-destination-s3.php:1174
 
1515
  msgid "Google Storage: USA"
1516
  msgstr ""
1517
 
1518
  #: inc/class-destination-s3.php:48
1519
  #: inc/pro/class-destination-s3.php:33
1520
- #: inc/Pro/class-destination-s3.php:118
1521
  #: inc/class-destination-s3.php:1178
 
1522
  msgid "Google Storage: Asia"
1523
  msgstr ""
1524
 
1525
  #: inc/class-destination-s3.php:49
1526
  #: inc/pro/class-destination-s3.php:34
1527
- #: inc/Pro/class-destination-s3.php:123
1528
  #: inc/class-destination-s3.php:1182
 
1529
  msgid "Dream Host Cloud Storage"
1530
  msgstr "Armazenamento em nuvem da Dream Host"
1531
 
@@ -1541,15 +1541,15 @@ msgstr "Chaves de Acesso S3"
1541
 
1542
  #: inc/class-destination-s3.php:65
1543
  #: inc/pro/class-destination-glacier.php:54
1544
- #: inc/Pro/class-destination-glacier.php:54
1545
  #: inc/class-destination-s3.php:121
 
1546
  msgid "Access Key"
1547
  msgstr "Chave de acesso"
1548
 
1549
  #: inc/class-destination-s3.php:72
1550
  #: inc/pro/class-destination-glacier.php:61
1551
- #: inc/Pro/class-destination-glacier.php:61
1552
  #: inc/class-destination-s3.php:135
 
1553
  msgid "Secret Key"
1554
  msgstr "Chave Secreta"
1555
 
@@ -1617,8 +1617,8 @@ msgstr "Salve arquivos criptografados (AES256) no servidor."
1617
 
1618
  #: inc/class-destination-s3.php:224
1619
  #: inc/pro/class-destination-glacier.php:168
1620
- #: inc/Pro/class-destination-glacier.php:168
1621
  #: inc/class-destination-s3.php:361
 
1622
  msgid "Missing secret access key!"
1623
  msgstr "Falta a chave de acesso secreto!"
1624
 
@@ -1634,8 +1634,8 @@ msgstr ""
1634
 
1635
  #: inc/class-destination-s3.php:348
1636
  #: inc/pro/class-destination-s3.php:147
1637
- #: inc/Pro/class-destination-s3.php:285
1638
  #: inc/class-destination-s3.php:520
 
1639
  msgid " %s is not a valid bucket name."
1640
  msgstr "%s não é um nome válido para repositório."
1641
 
@@ -1645,12 +1645,12 @@ msgstr "%s não é um nome válido para repositório."
1645
  #: inc/class-destination-s3.php:610
1646
  #: inc/class-destination-s3.php:670
1647
  #: inc/pro/class-destination-s3.php:337
1648
- #: inc/Pro/class-destination-s3.php:623
1649
  #: inc/class-destination-s3.php:570
1650
  #: inc/class-destination-s3.php:868
1651
  #: inc/class-destination-s3.php:936
1652
  #: inc/class-destination-s3.php:995
1653
  #: inc/class-destination-s3.php:1006
 
1654
  msgid "S3 Service API: %s"
1655
  msgstr "API de Serviço S3: %s"
1656
 
@@ -1661,15 +1661,15 @@ msgstr ""
1661
 
1662
  #: inc/class-destination-s3.php:470
1663
  #: inc/pro/class-destination-s3.php:188
1664
- #: inc/Pro/class-destination-s3.php:383
1665
  #: inc/class-destination-s3.php:803
 
1666
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1667
  msgstr ""
1668
 
1669
  #: inc/class-destination-s3.php:473
1670
  #: inc/pro/class-destination-s3.php:191
1671
- #: inc/Pro/class-destination-s3.php:391
1672
  #: inc/class-destination-s3.php:808
 
1673
  msgid "S3 Bucket \"%s\" does not exist!"
1674
  msgstr "Repositório \"%s\" da S3 não existe!"
1675
 
@@ -1690,8 +1690,8 @@ msgstr ""
1690
 
1691
  #: inc/class-destination-s3.php:601
1692
  #: inc/pro/class-destination-glacier.php:444
1693
- #: inc/Pro/class-destination-glacier.php:446
1694
  #: inc/class-destination-s3.php:972
 
1695
  msgid "Backup transferred to %s."
1696
  msgstr "Backup transferido para %s."
1697
 
@@ -1731,9 +1731,9 @@ msgstr ""
1731
  #: inc/pro/class-destination-ftp.php:29
1732
  #: inc/pro/class-destination-sugarsync.php:20
1733
  #: inc/pro/class-jobtype-dbdump.php:126
1734
- #: inc/Pro/class-jobtype-dbdump.php:126
1735
  #: inc/Pro/class-destination-ftp.php:47
1736
  #: inc/Pro/class-destination-sugarsync.php:20
 
1737
  msgid "Password:"
1738
  msgstr "Senha:"
1739
 
@@ -1911,75 +1911,75 @@ msgid "BackWPup jobs helper"
1911
  msgstr "Auxiliador de tarefas do BackWPup"
1912
 
1913
  #: inc/class-job.php:263
1914
- #: inc/class-job.php:269
1915
  msgid "Starting job"
1916
  msgstr "Iniciando tarefa"
1917
 
1918
  #: inc/class-job.php:278
1919
- #: inc/class-job.php:284
1920
  msgid "Job Start"
1921
  msgstr ""
1922
 
1923
  #: inc/class-job.php:298
1924
- #: inc/class-job.php:304
1925
  msgid "Creates manifest file"
1926
  msgstr ""
1927
 
1928
  #: inc/class-job.php:320
1929
- #: inc/class-job.php:326
1930
  msgid "Creates archive"
1931
  msgstr "Cria o arquivo"
1932
 
1933
  #: inc/class-job.php:360
1934
- #: inc/class-job.php:373
1935
  msgid "End of Job"
1936
  msgstr ""
1937
 
1938
  #: inc/class-job.php:377
1939
- #: inc/class-job.php:395
1940
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1941
  msgstr "Log do BackWPup para %1$s de %2$s em %3$s"
1942
 
1943
  #: inc/class-job.php:394
1944
- #: inc/class-job.php:412
1945
  msgctxt "Plugin name; Plugin Version; plugin url"
1946
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1947
  msgstr ""
1948
 
1949
  #: inc/class-job.php:395
1950
- #: inc/class-job.php:413
1951
  msgctxt "WordPress Version; Blog url"
1952
  msgid "[INFO] WordPress %1$s on %2$s"
1953
  msgstr ""
1954
 
1955
  #: inc/class-job.php:396
1956
- #: inc/class-job.php:414
1957
  msgid "Normal"
1958
  msgstr ""
1959
 
1960
  #: inc/class-job.php:399
1961
- #: inc/class-job.php:417
1962
  msgid "Debug"
1963
  msgstr ""
1964
 
1965
  #: inc/class-job.php:402
1966
- #: inc/class-job.php:420
1967
  msgid "(translated)"
1968
  msgstr ""
1969
 
1970
  #: inc/class-job.php:404
1971
- #: inc/class-job.php:422
1972
  #, fuzzy
1973
  msgid "[INFO] Log Level: %1$s %2$s"
1974
  msgstr "[INFO] Versão do curl: %1$s; %2$s"
1975
 
1976
  #: inc/class-job.php:409
1977
- #: inc/class-job.php:427
1978
  msgid "[INFO] BackWPup job: %1$s"
1979
  msgstr ""
1980
 
1981
  #: inc/class-job.php:412
1982
- #: inc/class-job.php:430
1983
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1984
  msgstr ""
1985
 
@@ -1987,151 +1987,151 @@ msgstr ""
1987
  #: inc/class-page-backwpup.php:323
1988
  #: inc/class-page-jobs.php:282
1989
  #: inc/class-page-jobs.php:291
1990
- #: inc/class-job.php:444
1991
  msgid "Not scheduled!"
1992
  msgstr ""
1993
 
1994
  #: inc/class-job.php:430
1995
  #: inc/class-job.php:440
1996
- #: inc/class-job.php:448
1997
- #: inc/class-job.php:458
1998
  msgid "[INFO] Cron: %s; Next: %s "
1999
  msgstr ""
2000
 
2001
  #: inc/class-job.php:433
2002
- #: inc/class-job.php:451
2003
  msgid "[INFO] BackWPup job start with link is active"
2004
  msgstr ""
2005
 
2006
  #: inc/class-job.php:435
2007
- #: inc/class-job.php:453
2008
  msgid "[INFO] BackWPup job start with EasyCron.com"
2009
  msgstr ""
2010
 
2011
  #: inc/class-job.php:443
2012
- #: inc/class-job.php:461
2013
  msgid "[INFO] BackWPup no automatic job start configured"
2014
  msgstr ""
2015
 
2016
  #: inc/class-job.php:447
2017
- #: inc/class-job.php:465
2018
  msgid "[INFO] BackWPup job started from wp-cron"
2019
  msgstr "[INFO] Tarefa do BackWPup começou do wp-cron"
2020
 
2021
  #: inc/class-job.php:449
2022
- #: inc/class-job.php:467
2023
  msgid "[INFO] BackWPup job started manually"
2024
  msgstr "[INFO] Tarefa do BackWPup começou manualmente"
2025
 
2026
  #: inc/class-job.php:451
2027
- #: inc/class-job.php:469
2028
  msgid "[INFO] BackWPup job started from external url"
2029
  msgstr "[INFO] Tarefa do BackWPup começou de uma URL externa"
2030
 
2031
  #: inc/class-job.php:453
2032
- #: inc/class-job.php:471
2033
  msgid "[INFO] BackWPup job started form commandline interface"
2034
  msgstr ""
2035
 
2036
  #: inc/class-job.php:462
2037
- #: inc/class-job.php:480
2038
  msgid "[INFO] PHP ver.:"
2039
  msgstr "[INFO] Versão do PHP:"
2040
 
2041
  #: inc/class-job.php:463
2042
- #: inc/class-job.php:481
2043
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2044
  msgstr ""
2045
 
2046
  #: inc/class-job.php:467
2047
- #: inc/class-job.php:485
2048
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2049
  msgstr ""
2050
 
2051
  #: inc/class-job.php:470
2052
- #: inc/class-job.php:488
2053
  msgid "[INFO] MySQL ver.: %s"
2054
  msgstr "[INFO] Versão do MySQL: %s"
2055
 
2056
  #: inc/class-job.php:472
2057
- #: inc/class-job.php:490
2058
  msgid "[INFO] Web Server: %s"
2059
  msgstr ""
2060
 
2061
  #: inc/class-job.php:476
2062
- #: inc/class-job.php:494
2063
  msgid "[INFO] curl ver.: %1$s; %2$s"
2064
  msgstr "[INFO] Versão do curl: %1$s; %2$s"
2065
 
2066
  #: inc/class-job.php:478
2067
- #: inc/class-job.php:496
2068
  msgid "[INFO] Temp folder is: %s"
2069
  msgstr "[INFO] Pasta temporária é: %s"
2070
 
2071
  #: inc/class-job.php:485
2072
- #: inc/class-job.php:503
2073
  msgid "[INFO] Logfile is: %s"
2074
  msgstr ""
2075
 
2076
  #: inc/class-job.php:492
2077
- #: inc/class-job.php:510
2078
  msgid "[INFO] Backup file is: %s"
2079
  msgstr "[INFO] Arquivo de backup é: %s"
2080
 
2081
  #: inc/class-job.php:494
2082
- #: inc/class-job.php:512
2083
  msgid "[INFO] Backup type is: %s"
2084
  msgstr "[INFO] Tipo de backup é: %s"
2085
 
2086
  #: inc/class-job.php:502
2087
- #: inc/class-job.php:520
2088
  msgid "Could not write log file"
2089
  msgstr ""
2090
 
2091
  #: inc/class-job.php:514
2092
- #: inc/class-job.php:532
2093
  msgid "No destination correctly defined for backup! Please correct job settings."
2094
  msgstr ""
2095
 
2096
  #: inc/class-job.php:644
2097
- #: inc/class-job.php:628
2098
  msgid "Cannot write progress to working file. Job will be aborted."
2099
  msgstr ""
2100
 
2101
  #: inc/class-job.php:716
2102
  #: inc/class-page-jobs.php:786
2103
- #: inc/class-job.php:700
2104
  msgid "WARNING:"
2105
  msgstr "AVISO:"
2106
 
2107
  #: inc/class-job.php:725
2108
  #: inc/class-page-jobs.php:784
2109
- #: inc/class-job.php:709
2110
  msgid "ERROR:"
2111
  msgstr "ERRO:"
2112
 
2113
  #: inc/class-job.php:729
2114
- #: inc/class-job.php:713
2115
  msgid "DEPRECATED:"
2116
  msgstr "DESCONTINUADO:"
2117
 
2118
  #: inc/class-job.php:732
2119
- #: inc/class-job.php:716
2120
  msgid "STRICT NOTICE:"
2121
  msgstr "AVISO ESTRITO:"
2122
 
2123
  #: inc/class-job.php:737
2124
- #: inc/class-job.php:721
2125
  msgid "RECOVERABLE ERROR:"
2126
  msgstr "ERRO REPARÁVEL:"
2127
 
2128
  #: inc/class-job.php:985
2129
- #: inc/class-job.php:972
2130
  msgid "Aborted by user!"
2131
  msgstr ""
2132
 
2133
  #: inc/class-job.php:1019
2134
- #: inc/class-job.php:1005
2135
  msgid "One old log deleted"
2136
  msgid_plural "%d old logs deleted"
2137
  msgstr[0] "Um antigo log foi excluídos"
@@ -2139,290 +2139,290 @@ msgstr[1] "%d antigos logs foram excluídos"
2139
 
2140
  #: inc/class-job.php:1026
2141
  #: inc/class-page-jobs.php:784
2142
- #: inc/class-job.php:1012
2143
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2144
  msgstr ""
2145
 
2146
  #: inc/class-job.php:1028
2147
- #: inc/class-job.php:1014
2148
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2149
  msgstr ""
2150
 
2151
  #: inc/class-job.php:1030
2152
  #: inc/class-page-jobs.php:788
2153
- #: inc/class-job.php:1016
2154
  msgid "Job done in %s seconds."
2155
  msgstr "Tarefa feita em %s segundos."
2156
 
2157
  #: inc/class-job.php:1074
2158
- #: inc/class-job.php:1060
2159
  msgid "SUCCESSFUL"
2160
  msgstr "SUCESSO"
2161
 
2162
  #: inc/class-job.php:1076
2163
- #: inc/class-job.php:1062
2164
  msgid "WARNING"
2165
  msgstr "AVISO"
2166
 
2167
  #: inc/class-job.php:1079
2168
- #: inc/class-job.php:1065
2169
  msgid "ERROR"
2170
  msgstr "ERRO!"
2171
 
2172
  #: inc/class-job.php:1082
2173
- #: inc/class-job.php:1068
2174
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2175
  msgstr "[%3$s] Log do BackWPup %1$s: %2$s"
2176
 
2177
  #: inc/class-job.php:1188
2178
- #: inc/class-job.php:1180
2179
  msgid "Restart after %1$d seconds."
2180
  msgstr ""
2181
 
2182
  #: inc/class-job.php:1190
2183
- #: inc/class-job.php:1182
2184
  msgid "Restart after getting signal."
2185
  msgstr ""
2186
 
2187
  #: inc/class-job.php:1363
2188
- #: inc/class-job.php:1357
2189
  msgid "Job restarts due to inactivity for more than 5 minutes."
2190
  msgstr ""
2191
 
2192
  #: inc/class-job.php:1461
2193
- #: inc/class-job.php:1455
2194
  msgid "Step aborted: too many attempts!"
2195
  msgstr "Etapa anulada: muitas tentativas!"
2196
 
2197
  #: inc/class-job.php:1532
2198
- #: inc/class-job.php:1528
2199
  msgid "%d. Trying to create backup archive &hellip;"
2200
  msgstr ""
2201
 
2202
  #: inc/class-job.php:1540
2203
- #: inc/class-job.php:1536
2204
  msgctxt "Archive compression method"
2205
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2206
  msgstr ""
2207
 
2208
  #: inc/class-job.php:1547
2209
- #: inc/class-job.php:1544
2210
  msgid "Adding Extra files to Archive"
2211
  msgstr ""
2212
 
2213
  #: inc/class-job.php:1559
2214
  #: inc/class-job.php:1619
2215
- #: inc/class-job.php:1555
2216
- #: inc/class-job.php:1626
2217
  msgid "Cannot create backup archive correctly. Aborting creation."
2218
  msgstr ""
2219
 
2220
  #: inc/class-job.php:1575
2221
- #: inc/class-job.php:1571
2222
  msgid "Archiving Folder: %s"
2223
  msgstr ""
2224
 
2225
  #: inc/class-job.php:1629
2226
- #: inc/class-job.php:1636
2227
  msgid "Backup archive created."
2228
  msgstr ""
2229
 
2230
  #: inc/class-job.php:1643
2231
- #: inc/class-job.php:1650
2232
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2233
  msgstr ""
2234
 
2235
  #: inc/class-job.php:1646
2236
- #: inc/class-job.php:1653
2237
  msgid "Archive size is %s."
2238
  msgstr "Tamanho do arquivo é %s."
2239
 
2240
  #: inc/class-job.php:1649
2241
- #: inc/class-job.php:1656
2242
  msgid "%1$d Files with %2$s in Archive."
2243
  msgstr "%1$d arquivos com %2$s em Arquivo."
2244
 
2245
  #: inc/class-job.php:1698
2246
- #: inc/class-job.php:1831
2247
  #, fuzzy
2248
  msgctxt "Folder name"
2249
  msgid "Folder %s does not exist"
2250
  msgstr "Repositório \"%s\" da S3 não existe!"
2251
 
2252
  #: inc/class-job.php:1703
2253
- #: inc/class-job.php:1837
2254
  #, fuzzy
2255
  msgctxt "Folder name"
2256
  msgid "Folder %s is not readable"
2257
  msgstr "A pasta \"%s\" não pode ser lida!"
2258
 
2259
  #: inc/class-job.php:1725
2260
- #: inc/class-job.php:1860
2261
  msgid "Link \"%s\" not following."
2262
  msgstr ""
2263
 
2264
  #: inc/class-job.php:1727
2265
- #: inc/class-job.php:1862
2266
  msgid "File \"%s\" is not readable!"
2267
  msgstr "Arquivo \"%s\" não é legível!"
2268
 
2269
  #: inc/class-job.php:1731
2270
- #: inc/class-job.php:1866
2271
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2272
  msgstr ""
2273
 
2274
  #: inc/class-job.php:1814
2275
- #: inc/class-job.php:1949
2276
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2277
  msgstr ""
2278
 
2279
  #: inc/class-job.php:1870
2280
- #: inc/class-job.php:2005
2281
  msgid "You may have noticed the manifest.json file in this archive."
2282
  msgstr ""
2283
 
2284
  #: inc/class-job.php:1871
2285
- #: inc/class-job.php:2006
2286
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2287
  msgstr ""
2288
 
2289
  #: inc/class-job.php:1872
2290
- #: inc/class-job.php:2007
2291
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2292
  msgstr ""
2293
 
2294
  #: inc/class-job.php:1882
2295
- #: inc/class-job.php:2017
2296
  msgid "Added manifest.json file with %1$s to backup file list."
2297
  msgstr ""
2298
 
2299
  #: inc/class-job.php:1921
2300
- #: inc/class-job.php:2056
2301
  msgid "Wrong BackWPup JobID"
2302
  msgstr "ID de tarefa (JobID) do BackWPup errado. "
2303
 
2304
  #: inc/class-job.php:1934
2305
- #: inc/class-job.php:2069
2306
  msgid "A BackWPup job is already running"
2307
  msgstr "Uma tarefa do BackWPup já está em execução"
2308
 
2309
  #: inc/class-job.php:2302
2310
- #: inc/class-job.php:2482
2311
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2312
  msgid "Hangup detected on controlling terminal or death of controlling process"
2313
  msgstr ""
2314
 
2315
  #: inc/class-job.php:2306
2316
- #: inc/class-job.php:2486
2317
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2318
  msgid "Interrupt from keyboard"
2319
  msgstr ""
2320
 
2321
  #: inc/class-job.php:2310
2322
- #: inc/class-job.php:2490
2323
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2324
  msgid "Quit from keyboard"
2325
  msgstr ""
2326
 
2327
  #: inc/class-job.php:2314
2328
- #: inc/class-job.php:2494
2329
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Illegal Instruction"
2331
  msgstr ""
2332
 
2333
  #: inc/class-job.php:2318
2334
- #: inc/class-job.php:2498
2335
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Abort signal from abort(3)"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2322
2340
- #: inc/class-job.php:2502
2341
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Bus error (bad memory access)"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2326
2346
- #: inc/class-job.php:2506
2347
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Floating point exception"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2330
2352
- #: inc/class-job.php:2510
2353
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Invalid memory reference"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2334
2358
- #: inc/class-job.php:2514
2359
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2360
  msgid "Termination signal"
2361
  msgstr ""
2362
 
2363
  #: inc/class-job.php:2338
2364
- #: inc/class-job.php:2518
2365
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Stack fault on coprocessor"
2367
  msgstr ""
2368
 
2369
  #: inc/class-job.php:2342
2370
- #: inc/class-job.php:2522
2371
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2372
  msgid "User-defined signal 1"
2373
  msgstr ""
2374
 
2375
  #: inc/class-job.php:2346
2376
- #: inc/class-job.php:2526
2377
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2378
  msgid "User-defined signal 2"
2379
  msgstr ""
2380
 
2381
  #: inc/class-job.php:2350
2382
- #: inc/class-job.php:2530
2383
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2384
  msgid "Urgent condition on socket"
2385
  msgstr ""
2386
 
2387
  #: inc/class-job.php:2354
2388
- #: inc/class-job.php:2534
2389
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2390
  msgid "CPU time limit exceeded"
2391
  msgstr ""
2392
 
2393
  #: inc/class-job.php:2358
2394
- #: inc/class-job.php:2538
2395
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2396
  msgid "File size limit exceeded"
2397
  msgstr ""
2398
 
2399
  #: inc/class-job.php:2362
2400
- #: inc/class-job.php:2542
2401
  #, fuzzy
2402
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2403
  msgid "Power failure"
2404
  msgstr "FTP: falha de login!"
2405
 
2406
  #: inc/class-job.php:2366
2407
- #: inc/class-job.php:2546
2408
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "Bad argument to routine"
2410
  msgstr ""
2411
 
2412
  #: inc/class-job.php:2373
2413
- #: inc/class-job.php:2553
2414
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2415
  msgstr ""
2416
 
2417
  #: inc/class-job.php:2407
2418
  #: inc/class-job.php:2420
2419
- #: inc/class-job.php:2587
2420
- #: inc/class-job.php:2600
2421
  msgid "System: %s"
2422
  msgstr ""
2423
 
2424
  #: inc/class-job.php:2435
2425
- #: inc/class-job.php:2615
2426
  msgid "Exception caught in %1$s: %2$s"
2427
  msgstr "Exceção detectada em %1$s: %2$s"
2428
 
@@ -2721,7 +2721,7 @@ msgstr "Exportar XML"
2721
 
2722
  #: inc/class-jobtype-wpexp.php:14
2723
  #: inc/class-page-about.php:472
2724
- #: inc/class-page-about.php:474
2725
  msgid "WordPress XML export"
2726
  msgstr "Exportar XML do WordPress"
2727
 
@@ -2955,280 +2955,273 @@ msgid "New Job"
2955
  msgstr ""
2956
 
2957
  #: inc/class-page-about.php:369
2958
- #: inc/class-page-about.php:371
2959
  msgid "Welcome to BackWPup Pro"
2960
  msgstr "Bem-vindo ao BackWPup Pro"
2961
 
2962
  #: inc/class-page-about.php:370
2963
  #: inc/class-page-backwpup.php:75
2964
- #: inc/class-page-about.php:372
2965
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2966
  msgstr ""
2967
 
2968
- #: inc/class-page-about.php:371
2969
- #: inc/class-page-about.php:384
2970
- #: inc/class-page-about.php:373
2971
- #: inc/class-page-about.php:386
2972
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2973
- msgstr ""
2974
-
2975
  #: inc/class-page-about.php:372
2976
- #: inc/class-page-about.php:374
2977
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2978
  msgstr ""
2979
 
2980
  #: inc/class-page-about.php:382
2981
- #: inc/class-page-about.php:384
2982
  msgid "Welcome to BackWPup"
2983
  msgstr "Bem-vindo ao BackWPup"
2984
 
2985
  #: inc/class-page-about.php:385
2986
- #: inc/class-page-about.php:387
2987
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2988
  msgstr ""
2989
 
2990
  #: inc/class-page-about.php:398
2991
- #: inc/class-page-about.php:400
2992
  msgid "Save your database"
2993
  msgstr ""
2994
 
2995
  #: inc/class-page-about.php:401
2996
- #: inc/class-page-about.php:403
2997
  msgid "Save your database regularly"
2998
  msgstr ""
2999
 
3000
  #: inc/class-page-about.php:402
3001
- #: inc/class-page-about.php:404
3002
  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."
3003
  msgstr ""
3004
 
3005
  #: inc/class-page-about.php:407
3006
  #: inc/class-page-about.php:411
3007
- #: inc/class-page-about.php:409
3008
- #: inc/class-page-about.php:413
3009
  msgid "WordPress XML Export"
3010
  msgstr ""
3011
 
3012
  #: inc/class-page-about.php:408
3013
- #: inc/class-page-about.php:410
3014
  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."
3015
  msgstr ""
3016
 
3017
  #: inc/class-page-about.php:416
3018
- #: inc/class-page-about.php:418
3019
  msgid "Save all data from the webserver"
3020
  msgstr ""
3021
 
3022
  #: inc/class-page-about.php:419
3023
- #: inc/class-page-about.php:421
3024
  msgid "Save all files"
3025
  msgstr ""
3026
 
3027
  #: inc/class-page-about.php:420
3028
- #: inc/class-page-about.php:422
3029
  msgid "You can backup 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."
3030
  msgstr ""
3031
 
3032
  #: inc/class-page-about.php:425
3033
  #: inc/class-page-about.php:429
3034
- #: inc/class-page-about.php:427
3035
- #: inc/class-page-about.php:431
3036
  msgid "Security!"
3037
  msgstr ""
3038
 
3039
  #: inc/class-page-about.php:426
3040
- #: inc/class-page-about.php:428
3041
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3042
  msgstr ""
3043
 
3044
  #: inc/class-page-about.php:434
3045
  #: inc/class-page-about.php:437
3046
- #: inc/class-page-about.php:436
3047
- #: inc/class-page-about.php:439
3048
  msgid "Cloud Support"
3049
  msgstr ""
3050
 
3051
  #: inc/class-page-about.php:438
3052
- #: inc/class-page-about.php:440
3053
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3054
  msgstr ""
3055
 
3056
  #: inc/class-page-about.php:444
3057
- #: inc/class-page-about.php:446
3058
  msgid "Features / differences between Free and Pro"
3059
  msgstr ""
3060
 
3061
  #: inc/class-page-about.php:447
3062
- #: inc/class-page-about.php:449
3063
  msgid "Features"
3064
  msgstr ""
3065
 
3066
  #: inc/class-page-about.php:448
3067
- #: inc/class-page-about.php:450
3068
  msgid "FREE"
3069
  msgstr ""
3070
 
3071
  #: inc/class-page-about.php:449
3072
- #: inc/class-page-about.php:451
3073
  msgid "PRO"
3074
  msgstr ""
3075
 
3076
  #: inc/class-page-about.php:452
3077
- #: inc/class-page-about.php:454
3078
  msgid "Complete database backup"
3079
  msgstr ""
3080
 
3081
  #: inc/class-page-about.php:457
3082
- #: inc/class-page-about.php:459
3083
  msgid "Complete file backup"
3084
  msgstr ""
3085
 
3086
  #: inc/class-page-about.php:462
3087
- #: inc/class-page-about.php:464
3088
  msgid "Database check"
3089
  msgstr ""
3090
 
3091
  #: inc/class-page-about.php:467
3092
- #: inc/class-page-about.php:469
3093
  msgid "Data compression"
3094
  msgstr ""
3095
 
3096
  #: inc/class-page-about.php:477
3097
- #: inc/class-page-about.php:479
3098
  msgid "List of installed plugins"
3099
  msgstr ""
3100
 
3101
  #: inc/class-page-about.php:482
3102
- #: inc/class-page-about.php:484
3103
  msgid "Backup archives management"
3104
  msgstr ""
3105
 
3106
  #: inc/class-page-about.php:487
3107
- #: inc/class-page-about.php:489
3108
  msgid "Log file management"
3109
  msgstr ""
3110
 
3111
  #: inc/class-page-about.php:492
3112
- #: inc/class-page-about.php:494
3113
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3114
  msgstr ""
3115
 
3116
  #: inc/class-page-about.php:497
3117
- #: inc/class-page-about.php:499
3118
  msgid "Log report via email"
3119
  msgstr ""
3120
 
3121
  #: inc/class-page-about.php:502
3122
- #: inc/class-page-about.php:504
3123
  msgid "Backup to Microsoft Azure"
3124
  msgstr ""
3125
 
3126
  #: inc/class-page-about.php:507
3127
- #: inc/class-page-about.php:509
3128
  msgid "Backup as email"
3129
  msgstr ""
3130
 
3131
  #: inc/class-page-about.php:512
3132
- #: inc/class-page-about.php:514
3133
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3134
  msgstr ""
3135
 
3136
  #: inc/class-page-about.php:527
3137
- #: inc/class-page-about.php:529
3138
  msgid "Backup to FTP server"
3139
  msgstr ""
3140
 
3141
  #: inc/class-page-about.php:532
3142
- #: inc/class-page-about.php:534
3143
  msgid "Backup to your web space"
3144
  msgstr ""
3145
 
3146
  #: inc/class-page-about.php:542
3147
  #: inc/pro/class-pro.php:112
 
3148
  #: inc/Pro/class-pro.php:152
3149
- #: inc/class-page-about.php:544
3150
  msgid "Backup to Google Drive"
3151
  msgstr ""
3152
 
3153
  #: inc/class-page-about.php:547
3154
  #: inc/pro/class-pro.php:93
 
3155
  #: inc/Pro/class-pro.php:131
3156
- #: inc/class-page-about.php:549
3157
  msgid "Backup to Amazon Glacier"
3158
  msgstr ""
3159
 
3160
  #: inc/class-page-about.php:552
3161
- #: inc/class-page-about.php:554
3162
  msgid "Custom API keys for DropBox and SugarSync"
3163
  msgstr ""
3164
 
3165
  #: inc/class-page-about.php:557
3166
- #: inc/class-page-about.php:559
3167
  msgid "XML database backup as PHPMyAdmin schema"
3168
  msgstr ""
3169
 
3170
  #: inc/class-page-about.php:562
3171
- #: inc/class-page-about.php:564
3172
  msgid "Database backup as mysqldump per command line"
3173
  msgstr ""
3174
 
3175
  #: inc/class-page-about.php:567
3176
- #: inc/class-page-about.php:569
3177
  msgid "Database backup for additional MySQL databases"
3178
  msgstr ""
3179
 
3180
  #: inc/class-page-about.php:572
3181
- #: inc/class-page-about.php:574
3182
  msgid "Import and export job settings as XML"
3183
  msgstr ""
3184
 
3185
  #: inc/class-page-about.php:577
3186
- #: inc/class-page-about.php:579
3187
  msgid "Wizard for system tests"
3188
  msgstr ""
3189
 
3190
  #: inc/class-page-about.php:582
3191
- #: inc/class-page-about.php:584
3192
  msgid "Wizard for scheduled backup jobs"
3193
  msgstr ""
3194
 
3195
  #: inc/class-page-about.php:587
3196
- #: inc/class-page-about.php:589
3197
  msgid "Wizard to import settings and backup jobs"
3198
  msgstr ""
3199
 
3200
  #: inc/class-page-about.php:592
3201
- #: inc/class-page-about.php:594
3202
  msgid "Differential backup of changed directories to Dropbox"
3203
  msgstr ""
3204
 
3205
  #: inc/class-page-about.php:597
3206
- #: inc/class-page-about.php:599
3207
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3208
  msgstr ""
3209
 
3210
  #: inc/class-page-about.php:602
3211
- #: inc/class-page-about.php:604
3212
  msgid "Differential backup of changed directories to S3"
3213
  msgstr ""
3214
 
3215
  #: inc/class-page-about.php:607
3216
- #: inc/class-page-about.php:609
3217
  msgid "Differential backup of changed directories to MS Azure"
3218
  msgstr ""
3219
 
3220
  #: inc/class-page-about.php:612
3221
- #: inc/class-page-about.php:639
3222
  msgid "<strong>Premium support</strong>"
3223
  msgstr ""
3224
 
3225
  #: inc/class-page-about.php:617
3226
- #: inc/class-page-about.php:644
3227
  msgid "<strong>Automatic updates</strong>"
3228
  msgstr ""
3229
 
3230
  #: inc/class-page-about.php:624
3231
- #: inc/class-page-about.php:651
3232
  msgid "GET PRO"
3233
  msgstr ""
3234
 
@@ -3288,9 +3281,9 @@ msgstr ""
3288
  #: inc/class-page-logs.php:206
3289
  #: inc/class-page-backups.php:281
3290
  #: inc/class-page-backups.php:285
 
3291
  #: inc/class-page-settings.php:768
3292
  #: inc/class-page-settings.php:779
3293
- #: inc/class-page-logs.php:234
3294
  msgid "Download"
3295
  msgstr "Baixar"
3296
 
@@ -3349,11 +3342,6 @@ msgctxt "Dashboard heading"
3349
  msgid "Restoring backups"
3350
  msgstr ""
3351
 
3352
- #: inc/class-page-backwpup.php:77
3353
- #: inc/class-page-backwpup.php:86
3354
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3355
- msgstr ""
3356
-
3357
  #: inc/class-page-backwpup.php:78
3358
  #: inc/class-page-backwpup.php:87
3359
  msgctxt "Dashboard heading"
@@ -3582,8 +3570,8 @@ msgstr ""
3582
 
3583
  #: inc/class-page-editjob.php:328
3584
  #: inc/class-page-settings.php:117
3585
- #: inc/class-page-settings.php:214
3586
  #: inc/class-page-editjob.php:337
 
3587
  msgid "General"
3588
  msgstr "Geral"
3589
 
@@ -3617,15 +3605,15 @@ msgstr ""
3617
 
3618
  #: inc/class-page-editjob.php:391
3619
  #: inc/pro/class-wizard-job.php:254
3620
- #: inc/Pro/class-wizard-job.php:254
3621
  #: inc/class-page-editjob.php:400
 
3622
  msgid "This job is a&#160;&hellip;"
3623
  msgstr ""
3624
 
3625
  #: inc/class-page-editjob.php:394
3626
  #: inc/pro/class-wizard-job.php:257
3627
- #: inc/Pro/class-wizard-job.php:257
3628
  #: inc/class-page-editjob.php:403
 
3629
  msgid "Job tasks"
3630
  msgstr ""
3631
 
@@ -3638,10 +3626,10 @@ msgstr ""
3638
  #: inc/class-page-editjob.php:420
3639
  #: inc/pro/class-wizard-job.php:402
3640
  #: inc/pro/class-wizard-job.php:405
3641
- #: inc/Pro/class-wizard-job.php:402
3642
- #: inc/Pro/class-wizard-job.php:405
3643
  #: inc/class-page-editjob.php:426
3644
  #: inc/class-page-editjob.php:429
 
 
3645
  msgid "Backup type"
3646
  msgstr ""
3647
 
@@ -3652,8 +3640,8 @@ msgstr ""
3652
 
3653
  #: inc/class-page-editjob.php:428
3654
  #: inc/pro/class-wizard-job.php:413
3655
- #: inc/Pro/class-wizard-job.php:413
3656
  #: inc/class-page-editjob.php:437
 
3657
  msgid "Create a backup archive"
3658
  msgstr "Criar um arquivo de backup"
3659
 
@@ -3753,17 +3741,17 @@ msgstr ""
3753
  #: inc/class-page-editjob.php:476
3754
  #: inc/pro/class-wizard-job.php:426
3755
  #: inc/pro/class-wizard-job.php:429
3756
- #: inc/Pro/class-wizard-job.php:426
3757
- #: inc/Pro/class-wizard-job.php:429
3758
  #: inc/class-page-editjob.php:481
3759
  #: inc/class-page-editjob.php:483
 
 
3760
  msgid "Zip"
3761
  msgstr "Zip"
3762
 
3763
  #: inc/class-page-editjob.php:479
3764
  #: inc/pro/class-wizard-job.php:433
3765
- #: inc/Pro/class-wizard-job.php:433
3766
  #: inc/class-page-editjob.php:486
 
3767
  msgid "Tar"
3768
  msgstr "Tar"
3769
 
@@ -3771,10 +3759,10 @@ msgstr "Tar"
3771
  #: inc/class-page-editjob.php:483
3772
  #: inc/pro/class-wizard-job.php:437
3773
  #: inc/pro/class-wizard-job.php:440
3774
- #: inc/Pro/class-wizard-job.php:437
3775
- #: inc/Pro/class-wizard-job.php:440
3776
  #: inc/class-page-editjob.php:488
3777
  #: inc/class-page-editjob.php:490
 
 
3778
  msgid "Tar GZip"
3779
  msgstr "Tar GZip"
3780
 
@@ -3789,10 +3777,10 @@ msgstr ""
3789
  #: inc/class-page-editjob.php:489
3790
  #: inc/pro/class-wizard-job.php:444
3791
  #: inc/pro/class-wizard-job.php:447
3792
- #: inc/Pro/class-wizard-job.php:444
3793
- #: inc/Pro/class-wizard-job.php:447
3794
  #: inc/class-page-editjob.php:494
3795
  #: inc/class-page-editjob.php:497
 
 
3796
  msgid "Tar BZip2"
3797
  msgstr "Tas BZip2"
3798
 
@@ -3920,9 +3908,9 @@ msgstr ""
3920
  #: inc/class-page-editjob.php:650
3921
  #: inc/class-page-editjob.php:718
3922
  #: inc/pro/class-wizard-job.php:320
3923
- #: inc/Pro/class-wizard-job.php:320
3924
  #: inc/class-page-editjob.php:686
3925
  #: inc/class-page-editjob.php:754
 
3926
  msgid "Scheduler"
3927
  msgstr ""
3928
 
@@ -3930,121 +3918,121 @@ msgstr ""
3930
  #: inc/class-page-jobs.php:126
3931
  #: inc/class-page-logs.php:139
3932
  #: inc/pro/class-wizard-job.php:324
3933
- #: inc/Pro/class-wizard-job.php:324
3934
- #: inc/class-page-logs.php:166
3935
  #: inc/class-page-editjob.php:691
 
 
3936
  msgid "Type"
3937
  msgstr ""
3938
 
3939
  #: inc/class-page-editjob.php:660
3940
  #: inc/pro/class-wizard-job.php:330
3941
- #: inc/Pro/class-wizard-job.php:330
3942
  #: inc/class-page-editjob.php:696
 
3943
  msgid "Hour"
3944
  msgstr ""
3945
 
3946
  #: inc/class-page-editjob.php:663
3947
  #: inc/pro/class-wizard-job.php:333
3948
- #: inc/Pro/class-wizard-job.php:333
3949
  #: inc/class-page-editjob.php:699
 
3950
  msgid "Minute"
3951
  msgstr ""
3952
 
3953
  #: inc/class-page-editjob.php:667
3954
  #: inc/pro/class-wizard-job.php:337
3955
- #: inc/Pro/class-wizard-job.php:337
3956
  #: inc/class-page-editjob.php:703
 
3957
  msgid "monthly"
3958
  msgstr ""
3959
 
3960
  #: inc/class-page-editjob.php:669
3961
  #: inc/pro/class-wizard-job.php:339
3962
- #: inc/Pro/class-wizard-job.php:339
3963
  #: inc/class-page-editjob.php:705
 
3964
  msgid "on"
3965
  msgstr ""
3966
 
3967
  #: inc/class-page-editjob.php:679
3968
  #: inc/pro/class-wizard-job.php:349
3969
- #: inc/Pro/class-wizard-job.php:349
3970
  #: inc/class-page-editjob.php:715
 
3971
  msgid "weekly"
3972
  msgstr ""
3973
 
3974
  #: inc/class-page-editjob.php:681
3975
  #: inc/class-page-editjob.php:788
3976
  #: inc/pro/class-wizard-job.php:351
3977
- #: inc/Pro/class-wizard-job.php:351
3978
  #: inc/class-page-editjob.php:717
3979
  #: inc/class-page-editjob.php:824
 
3980
  msgid "Sunday"
3981
  msgstr ""
3982
 
3983
  #: inc/class-page-editjob.php:682
3984
  #: inc/class-page-editjob.php:789
3985
  #: inc/pro/class-wizard-job.php:352
3986
- #: inc/Pro/class-wizard-job.php:352
3987
  #: inc/class-page-editjob.php:718
3988
  #: inc/class-page-editjob.php:825
 
3989
  msgid "Monday"
3990
  msgstr ""
3991
 
3992
  #: inc/class-page-editjob.php:683
3993
  #: inc/class-page-editjob.php:790
3994
  #: inc/pro/class-wizard-job.php:353
3995
- #: inc/Pro/class-wizard-job.php:353
3996
  #: inc/class-page-editjob.php:719
3997
  #: inc/class-page-editjob.php:826
 
3998
  msgid "Tuesday"
3999
  msgstr ""
4000
 
4001
  #: inc/class-page-editjob.php:684
4002
  #: inc/class-page-editjob.php:791
4003
  #: inc/pro/class-wizard-job.php:354
4004
- #: inc/Pro/class-wizard-job.php:354
4005
  #: inc/class-page-editjob.php:720
4006
  #: inc/class-page-editjob.php:827
 
4007
  msgid "Wednesday"
4008
  msgstr ""
4009
 
4010
  #: inc/class-page-editjob.php:685
4011
  #: inc/class-page-editjob.php:792
4012
  #: inc/pro/class-wizard-job.php:355
4013
- #: inc/Pro/class-wizard-job.php:355
4014
  #: inc/class-page-editjob.php:721
4015
  #: inc/class-page-editjob.php:828
 
4016
  msgid "Thursday"
4017
  msgstr ""
4018
 
4019
  #: inc/class-page-editjob.php:686
4020
  #: inc/class-page-editjob.php:793
4021
  #: inc/pro/class-wizard-job.php:356
4022
- #: inc/Pro/class-wizard-job.php:356
4023
  #: inc/class-page-editjob.php:722
4024
  #: inc/class-page-editjob.php:829
 
4025
  msgid "Friday"
4026
  msgstr ""
4027
 
4028
  #: inc/class-page-editjob.php:687
4029
  #: inc/class-page-editjob.php:794
4030
  #: inc/pro/class-wizard-job.php:357
4031
- #: inc/Pro/class-wizard-job.php:357
4032
  #: inc/class-page-editjob.php:723
4033
  #: inc/class-page-editjob.php:830
 
4034
  msgid "Saturday"
4035
  msgstr ""
4036
 
4037
  #: inc/class-page-editjob.php:697
4038
  #: inc/pro/class-wizard-job.php:367
4039
- #: inc/Pro/class-wizard-job.php:367
4040
  #: inc/class-page-editjob.php:733
 
4041
  msgid "daily"
4042
  msgstr ""
4043
 
4044
  #: inc/class-page-editjob.php:707
4045
  #: inc/pro/class-wizard-job.php:377
4046
- #: inc/Pro/class-wizard-job.php:377
4047
  #: inc/class-page-editjob.php:743
 
4048
  msgid "hourly"
4049
  msgstr ""
4050
 
@@ -4192,8 +4180,8 @@ msgstr ""
4192
 
4193
  #: inc/class-page-jobs.php:172
4194
  #: inc/class-page-logs.php:200
4195
- #: inc/Pro/class-page-support.php:221
4196
  #: inc/class-page-logs.php:228
 
4197
  msgid "Job ID: %d"
4198
  msgstr ""
4199
 
@@ -5016,14 +5004,17 @@ msgstr ""
5016
  #: inc/pro/class-wizard-job.php:17
5017
  #: inc/pro/class-wizard-jobimport.php:16
5018
  #: inc/pro/class-wizard-systemtest.php:16
5019
- #: inc/Pro/class-wizard-jobimport.php:16
5020
- #: inc/Pro/class-wizard-job.php:17
5021
- #: inc/Pro/class-wizard-systemtest.php:27
5022
  #: inc/class-admin.php:510
5023
  #: inc/class-admin.php:531
 
 
 
 
 
5024
  #: inc/class-page-settings.php:1123
5025
- #: inc/class-page-about.php:651
5026
- #: inc/class-job.php:412
 
5027
  msgid "http://backwpup.com"
5028
  msgstr ""
5029
 
@@ -5036,61 +5027,59 @@ msgstr ""
5036
  #: inc/pro/class-wizard-job.php:19
5037
  #: inc/pro/class-wizard-jobimport.php:18
5038
  #: inc/pro/class-wizard-systemtest.php:18
5039
- #: inc/Pro/class-wizard-jobimport.php:18
5040
  #: inc/Pro/class-wizard-job.php:19
 
5041
  #: inc/Pro/class-wizard-systemtest.php:29
5042
  msgid "http://inpsyde.com"
5043
  msgstr ""
5044
 
5045
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5046
- #: inc/class-destination-ftp-downloader.php:72
5047
- #: inc/class-destination-dropbox-downloader.php:72
5048
- #: inc/class-destination-s3-downloader.php:83
5049
- msgid "Could not write data to file."
5050
  msgstr ""
5051
 
5052
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5053
- #: inc/class-destination-ftp-downloader.php:126
5054
- #: inc/class-destination-folder-downloader.php:137
5055
- #: inc/class-destination-dropbox-downloader.php:104
5056
- #: inc/class-destination-s3-downloader.php:112
5057
- msgid "File could not be opened for writing."
5058
  msgstr ""
5059
 
5060
- #: inc/Pro/class-destination-s3.php:63
5061
- #: inc/class-destination-s3.php:1134
5062
- msgid "Amazon S3: EU (London)"
5063
  msgstr ""
5064
 
5065
- #: inc/Pro/class-pro.php:285
5066
- #: inc/Pro/class-pro.php:286
5067
- #: inc/class-page-backups.php:293
5068
- #: views/pro/restore/steps/step4_top.php:2
5069
- msgid "Restore"
5070
  msgstr ""
5071
 
5072
- #: inc/class-system-tests-runner.php:77
5073
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5074
  msgstr ""
5075
 
5076
- #: inc/class-system-tests-runner.php:88
5077
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5078
  msgstr ""
5079
 
5080
- #: inc/class-system-tests-runner.php:100
5081
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5082
  msgstr ""
5083
 
5084
- #: inc/class-system-tests-runner.php:193
5085
- msgid "Yeah!"
5086
  msgstr ""
5087
 
5088
- #: inc/class-system-tests-runner.php:261
5089
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5090
  msgstr ""
5091
 
5092
- #: inc/class-destination-ftp-downloader.php:108
5093
- msgid "Cannot open FTP file for download."
 
 
 
 
5094
  msgstr ""
5095
 
5096
  #: inc/class-destination-folder-downloader.php:64
@@ -5110,10 +5099,133 @@ msgstr ""
5110
  msgid "%s is a directory not a file."
5111
  msgstr ""
5112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5113
  #: inc/class-destination-s3.php:102
5114
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5115
  msgstr ""
5116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5117
  #: inc/class-page-backups.php:408
5118
  msgid "&laquo; Go back"
5119
  msgstr ""
@@ -5156,21 +5268,35 @@ msgstr ""
5156
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5157
  msgstr ""
5158
 
5159
- #: inc/class-create-archive.php:114
5160
- msgid "Functions for bz2 compression not available."
 
5161
  msgstr ""
5162
 
5163
- #: inc/class-create-archive.php:311
5164
- msgid "File name cannot be empty."
5165
  msgstr ""
5166
 
5167
- #: inc/class-create-archive.php:741
5168
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5169
  msgstr ""
5170
 
5171
- #. translators: $1 is the filename to add into the archive.
5172
- #: inc/class-create-archive.php:996
5173
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5174
  msgstr ""
5175
 
5176
  #: inc/class-page-settings.php:39
@@ -5383,127 +5509,24 @@ msgstr ""
5383
  msgid "BackWPup maximum script execution time"
5384
  msgstr ""
5385
 
5386
- #: inc/class-download-file.php:135
5387
- msgid "Invalid file name, seems file include invalid characters."
5388
- msgstr ""
5389
-
5390
- #: inc/class-page-about.php:614
5391
- msgid "Restore from Folder"
5392
- msgstr ""
5393
-
5394
- #: inc/class-page-about.php:619
5395
- msgid "Restore from Google Drive"
5396
- msgstr ""
5397
-
5398
- #: inc/class-page-about.php:624
5399
- msgid "Restore from Amazon S3"
5400
- msgstr ""
5401
-
5402
- #: inc/class-page-about.php:629
5403
- msgid "Restore from Dropbox"
5404
- msgstr ""
5405
-
5406
- #: inc/class-page-about.php:634
5407
- msgid "Restore from FTP"
5408
- msgstr ""
5409
-
5410
- #: inc/class-destination-s3-downloader.php:76
5411
- msgid "Could not write data to file. Empty source file."
5412
- msgstr ""
5413
-
5414
- #: inc/class-job.php:332
5415
- msgid "Encrypts the archive"
5416
- msgstr ""
5417
-
5418
- #: inc/class-job.php:1689
5419
- msgid "No encryption key was provided. Aborting encryption."
5420
- msgstr ""
5421
-
5422
- #: inc/class-job.php:1696
5423
- msgid "%d. Trying to encrypt archive &hellip;"
5424
- msgstr ""
5425
-
5426
- #: inc/class-job.php:1706
5427
- msgid "Cannot open the archive for reading. Aborting encryption."
5428
- msgstr ""
5429
-
5430
- #: inc/class-job.php:1712
5431
- msgid "Cannot write the encrypted archive. Aborting encryption."
5432
- msgstr ""
5433
-
5434
- #: inc/class-job.php:1769
5435
- msgid "Encrypted %s of data."
5436
- msgstr ""
5437
-
5438
- #: inc/class-job.php:1773
5439
- msgid "Unable to delete unencrypted archive."
5440
- msgstr ""
5441
-
5442
- #: inc/class-job.php:1777
5443
- msgid "Unable to rename encrypted archive."
5444
- msgstr ""
5445
-
5446
- #: inc/class-job.php:1782
5447
- msgid "Archive has been successfully encrypted."
5448
- msgstr ""
5449
-
5450
- #: inc/class-job.php:2451
5451
- msgid "exec command is not active."
5452
- msgstr ""
5453
-
5454
- #: inc/class-job.php:2456
5455
- msgid "mysqldump binary not found."
5456
- msgstr ""
5457
-
5458
- #: inc/class-page-editjob.php:448
5459
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5460
- msgstr ""
5461
-
5462
- #: inc/class-page-editjob.php:452
5463
- msgid "Preview: "
5464
- msgstr ""
5465
-
5466
- #: inc/class-page-editjob.php:484
5467
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5468
- msgstr ""
5469
-
5470
- #: inc/class-page-editjob.php:495
5471
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5472
- msgstr ""
5473
-
5474
- #: inc/class-page-editjob.php:506
5475
- #: inc/class-page-editjob.php:511
5476
- #: inc/class-page-editjob.php:520
5477
- msgid "Encrypt Archive"
5478
- msgstr ""
5479
-
5480
- #: inc/class-page-editjob.php:524
5481
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5482
- msgstr ""
5483
-
5484
- #: inc/class-decrypter.php:56
5485
- msgid "Cannot open the archive for reading."
5486
- msgstr ""
5487
-
5488
- #: inc/class-decrypter.php:82
5489
- msgid "Cannot write the encrypted archive."
5490
  msgstr ""
5491
 
5492
- #: inc/class-decrypter.php:162
5493
- msgid "Private key invalid."
5494
  msgstr ""
5495
 
5496
- #: inc/class-destination-ftp.php:321
5497
- msgid "Could not log in to FTP server."
5498
  msgstr ""
5499
 
5500
- #: inc/class-destination-ftp.php:735
5501
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5502
  msgstr ""
5503
 
5504
- #: backwpup.php:573
5505
- #: vendor_dist/backwpup.php:573
5506
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5507
  msgstr ""
5508
 
5509
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Pasta"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Backup para Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Serviço S3"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Backup para arquivos em nuvem da Rackspace"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Backup para SugarSync"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "Logs"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "API do Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "Login"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "Não autenticado!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "Criar Conta"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "Autenticado!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "Configurações de Backup"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "Exclusão de arquivo"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "Número de arquivos para manter na pasta."
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Não exclua arquivos durante a sincronização de destino!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr ""
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr ""
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "Backup transferido para %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr ""
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr ""
722
 
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
748
+ #: inc/class-destination-email.php:39
749
  #: inc/Pro/class-destination-email.php:16
750
  #: inc/Pro/class-destination-email.php:18
 
751
  msgid "Email address"
752
  msgstr ""
753
 
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
 
 
763
  #: inc/class-destination-email.php:52
764
  #: inc/class-destination-email.php:56
765
+ #: inc/Pro/class-destination-email.php:29
766
+ #: inc/Pro/class-destination-email.php:30
767
  msgid "Send test email"
768
  msgstr ""
769
 
835
  #: inc/class-destination-email.php:98
836
  #: inc/class-destination-ftp.php:31
837
  #: inc/pro/class-destination-ftp.php:21
 
838
  #: inc/class-destination-email.php:124
839
  #: inc/class-destination-ftp.php:56
840
+ #: inc/Pro/class-destination-ftp.php:35
841
  msgid "Port:"
842
  msgstr "Porta:"
843
 
856
  #: inc/class-page-settings.php:328
857
  #: inc/pro/class-jobtype-dbdump.php:157
858
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
859
  #: inc/class-destination-email.php:141
860
  #: inc/class-page-settings.php:837
861
+ #: inc/Pro/class-jobtype-dbdump.php:157
862
+ #: inc/Pro/class-jobtype-dbdump.php:205
863
  msgid "none"
864
  msgstr "nenhum"
865
 
983
  #: inc/class-destination-ftp.php:87
984
  #: inc/class-page-logs.php:257
985
  #: inc/class-page-settings.php:466
 
986
  #: inc/class-destination-ftp.php:137
987
+ #: inc/class-page-logs.php:288
988
  msgid "seconds"
989
  msgstr ""
990
 
1139
  #: inc/pro/class-destination-glacier.php:468
1140
  #: inc/pro/class-destination-rsc.php:226
1141
  #: inc/pro/class-destination-rsc.php:259
1142
+ #: inc/class-destination-ftp.php:673
1143
+ #: inc/class-destination-msazure.php:275
1144
  #: inc/class-destination-rsc.php:292
1145
+ #: inc/class-destination-s3.php:843
1146
+ #: inc/class-destination-s3.php:958
1147
  #: inc/Pro/class-destination-gdrive.php:905
1148
  #: inc/Pro/class-destination-glacier.php:470
1149
  #: inc/Pro/class-destination-rsc.php:228
1150
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1151
  msgid "Can not open source file for transfer."
1152
  msgstr ""
1153
 
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
 
1200
  #: inc/class-destination-s3.php:215
1201
+ #: inc/Pro/class-destination-glacier.php:96
1202
  msgid "File deletion"
1203
  msgstr "Exclusão de arquivo"
1204
 
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
 
1224
  #: inc/class-destination-msazure.php:237
1225
+ #: inc/Pro/class-destination-msazure.php:144
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "Repositório \"%s\" da MS Azure não existe!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
 
1231
  #: inc/class-destination-msazure.php:241
1232
+ #: inc/Pro/class-destination-msazure.php:148
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "Conectado ao repositório \"%s\" da MS Azure."
1235
 
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
 
1244
  #: inc/class-destination-msazure.php:296
1245
  #: inc/class-destination-msazure.php:352
1246
+ #: inc/Pro/class-destination-msazure.php:233
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "API Microsoft Azure: %s"
1249
 
1262
  #: inc/class-destination-msazure.php:444
1263
  #: inc/class-destination-s3.php:222
1264
  #: inc/pro/class-destination-glacier.php:166
 
1265
  #: inc/class-destination-msazure.php:448
1266
  #: inc/class-destination-s3.php:359
1267
+ #: inc/Pro/class-destination-glacier.php:166
1268
  msgid "Missing access key!"
1269
  msgstr "Falta a chave de acesso!"
1270
 
1410
 
1411
  #: inc/class-destination-s3.php:33
1412
  #: inc/pro/class-destination-s3.php:18
 
1413
  #: inc/class-destination-s3.php:54
1414
+ #: inc/Pro/class-destination-s3.php:32
1415
  msgid "Amazon S3 Region"
1416
  msgstr "Região de Amazon S3"
1417
 
1418
  #: inc/class-destination-s3.php:34
1419
  #: inc/pro/class-destination-s3.php:19
 
1420
  #: inc/class-destination-s3.php:1118
1421
+ #: inc/Pro/class-destination-s3.php:40
1422
  msgid "Amazon S3: US Standard"
1423
  msgstr "Amazon S3: EUA padrão"
1424
 
1425
  #: inc/class-destination-s3.php:35
1426
  #: inc/pro/class-destination-s3.php:20
 
1427
  #: inc/class-destination-s3.php:1122
1428
+ #: inc/Pro/class-destination-s3.php:45
1429
  msgid "Amazon S3: US West (Northern California)"
1430
  msgstr "Amazon S3: Oeste dos EUA (Norte da Califórnia)"
1431
 
1432
  #: inc/class-destination-s3.php:36
1433
  #: inc/pro/class-destination-s3.php:21
 
1434
  #: inc/class-destination-s3.php:1126
1435
+ #: inc/Pro/class-destination-s3.php:53
1436
  msgid "Amazon S3: US West (Oregon)"
1437
  msgstr "Amazon S3: Oeste dos EUA (Oregon)"
1438
 
1439
  #: inc/class-destination-s3.php:37
1440
  #: inc/pro/class-destination-s3.php:22
 
1441
  #: inc/class-destination-s3.php:1130
1442
+ #: inc/Pro/class-destination-s3.php:58
1443
  msgid "Amazon S3: EU (Ireland)"
1444
  msgstr "Amazon S3: Europa (Irlanda)"
1445
 
1446
  #: inc/class-destination-s3.php:38
1447
  #: inc/pro/class-destination-s3.php:23
 
1448
  #: inc/class-destination-s3.php:1138
1449
+ #: inc/Pro/class-destination-s3.php:68
1450
  msgid "Amazon S3: EU (Germany)"
1451
  msgstr ""
1452
 
1453
  #: inc/class-destination-s3.php:39
1454
  #: inc/pro/class-destination-s3.php:24
 
1455
  #: inc/class-destination-s3.php:1142
1456
+ #: inc/Pro/class-destination-s3.php:73
1457
  #, fuzzy
1458
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1459
  msgstr "Amazon S3: Ásia-Pacífico (Tóquio)"
1460
 
1461
  #: inc/class-destination-s3.php:40
1462
  #: inc/pro/class-destination-s3.php:25
 
1463
  #: inc/class-destination-s3.php:1146
1464
+ #: inc/Pro/class-destination-s3.php:78
1465
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1466
  msgstr "Amazon S3: Ásia-Pacífico (Tóquio)"
1467
 
1468
  #: inc/class-destination-s3.php:41
1469
  #: inc/pro/class-destination-s3.php:26
 
1470
  #: inc/class-destination-s3.php:1150
1471
+ #: inc/Pro/class-destination-s3.php:83
1472
  #, fuzzy
1473
  msgid "Amazon S3: Asia Pacific (Seoul)"
1474
  msgstr "Amazon S3: Ásia-Pacífico (Sidnei)"
1475
 
1476
  #: inc/class-destination-s3.php:42
1477
  #: inc/pro/class-destination-s3.php:27
 
1478
  #: inc/class-destination-s3.php:1154
1479
+ #: inc/Pro/class-destination-s3.php:88
1480
  msgid "Amazon S3: Asia Pacific (Singapore)"
1481
  msgstr "Amazon S3: Ásia-Pacífico (Singapura)"
1482
 
1483
  #: inc/class-destination-s3.php:43
1484
  #: inc/pro/class-destination-s3.php:28
 
1485
  #: inc/class-destination-s3.php:1158
1486
+ #: inc/Pro/class-destination-s3.php:93
1487
  msgid "Amazon S3: Asia Pacific (Sydney)"
1488
  msgstr "Amazon S3: Ásia-Pacífico (Sidnei)"
1489
 
1490
  #: inc/class-destination-s3.php:44
1491
  #: inc/pro/class-destination-s3.php:29
 
1492
  #: inc/class-destination-s3.php:1162
1493
+ #: inc/Pro/class-destination-s3.php:98
1494
  msgid "Amazon S3: South America (Sao Paulo)"
1495
  msgstr "Amazon S3: Ámérica do Sul (São Paulo)"
1496
 
1497
  #: inc/class-destination-s3.php:45
1498
  #: inc/pro/class-destination-s3.php:30
 
1499
  #: inc/class-destination-s3.php:1166
1500
+ #: inc/Pro/class-destination-s3.php:103
1501
  msgid "Amazon S3: China (Beijing)"
1502
  msgstr ""
1503
 
1504
  #: inc/class-destination-s3.php:46
1505
  #: inc/pro/class-destination-s3.php:31
 
1506
  #: inc/class-destination-s3.php:1170
1507
+ #: inc/Pro/class-destination-s3.php:108
1508
  msgid "Google Storage: EU"
1509
  msgstr ""
1510
 
1511
  #: inc/class-destination-s3.php:47
1512
  #: inc/pro/class-destination-s3.php:32
 
1513
  #: inc/class-destination-s3.php:1174
1514
+ #: inc/Pro/class-destination-s3.php:113
1515
  msgid "Google Storage: USA"
1516
  msgstr ""
1517
 
1518
  #: inc/class-destination-s3.php:48
1519
  #: inc/pro/class-destination-s3.php:33
 
1520
  #: inc/class-destination-s3.php:1178
1521
+ #: inc/Pro/class-destination-s3.php:118
1522
  msgid "Google Storage: Asia"
1523
  msgstr ""
1524
 
1525
  #: inc/class-destination-s3.php:49
1526
  #: inc/pro/class-destination-s3.php:34
 
1527
  #: inc/class-destination-s3.php:1182
1528
+ #: inc/Pro/class-destination-s3.php:123
1529
  msgid "Dream Host Cloud Storage"
1530
  msgstr "Armazenamento em nuvem da Dream Host"
1531
 
1541
 
1542
  #: inc/class-destination-s3.php:65
1543
  #: inc/pro/class-destination-glacier.php:54
 
1544
  #: inc/class-destination-s3.php:121
1545
+ #: inc/Pro/class-destination-glacier.php:54
1546
  msgid "Access Key"
1547
  msgstr "Chave de acesso"
1548
 
1549
  #: inc/class-destination-s3.php:72
1550
  #: inc/pro/class-destination-glacier.php:61
 
1551
  #: inc/class-destination-s3.php:135
1552
+ #: inc/Pro/class-destination-glacier.php:61
1553
  msgid "Secret Key"
1554
  msgstr "Chave Secreta"
1555
 
1617
 
1618
  #: inc/class-destination-s3.php:224
1619
  #: inc/pro/class-destination-glacier.php:168
 
1620
  #: inc/class-destination-s3.php:361
1621
+ #: inc/Pro/class-destination-glacier.php:168
1622
  msgid "Missing secret access key!"
1623
  msgstr "Falta a chave de acesso secreto!"
1624
 
1634
 
1635
  #: inc/class-destination-s3.php:348
1636
  #: inc/pro/class-destination-s3.php:147
 
1637
  #: inc/class-destination-s3.php:520
1638
+ #: inc/Pro/class-destination-s3.php:285
1639
  msgid " %s is not a valid bucket name."
1640
  msgstr "%s não é um nome válido para repositório."
1641
 
1645
  #: inc/class-destination-s3.php:610
1646
  #: inc/class-destination-s3.php:670
1647
  #: inc/pro/class-destination-s3.php:337
 
1648
  #: inc/class-destination-s3.php:570
1649
  #: inc/class-destination-s3.php:868
1650
  #: inc/class-destination-s3.php:936
1651
  #: inc/class-destination-s3.php:995
1652
  #: inc/class-destination-s3.php:1006
1653
+ #: inc/Pro/class-destination-s3.php:623
1654
  msgid "S3 Service API: %s"
1655
  msgstr "API de Serviço S3: %s"
1656
 
1661
 
1662
  #: inc/class-destination-s3.php:470
1663
  #: inc/pro/class-destination-s3.php:188
 
1664
  #: inc/class-destination-s3.php:803
1665
+ #: inc/Pro/class-destination-s3.php:383
1666
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1667
  msgstr ""
1668
 
1669
  #: inc/class-destination-s3.php:473
1670
  #: inc/pro/class-destination-s3.php:191
 
1671
  #: inc/class-destination-s3.php:808
1672
+ #: inc/Pro/class-destination-s3.php:391
1673
  msgid "S3 Bucket \"%s\" does not exist!"
1674
  msgstr "Repositório \"%s\" da S3 não existe!"
1675
 
1690
 
1691
  #: inc/class-destination-s3.php:601
1692
  #: inc/pro/class-destination-glacier.php:444
 
1693
  #: inc/class-destination-s3.php:972
1694
+ #: inc/Pro/class-destination-glacier.php:446
1695
  msgid "Backup transferred to %s."
1696
  msgstr "Backup transferido para %s."
1697
 
1731
  #: inc/pro/class-destination-ftp.php:29
1732
  #: inc/pro/class-destination-sugarsync.php:20
1733
  #: inc/pro/class-jobtype-dbdump.php:126
 
1734
  #: inc/Pro/class-destination-ftp.php:47
1735
  #: inc/Pro/class-destination-sugarsync.php:20
1736
+ #: inc/Pro/class-jobtype-dbdump.php:126
1737
  msgid "Password:"
1738
  msgstr "Senha:"
1739
 
1911
  msgstr "Auxiliador de tarefas do BackWPup"
1912
 
1913
  #: inc/class-job.php:263
1914
+ #: inc/class-job.php:297
1915
  msgid "Starting job"
1916
  msgstr "Iniciando tarefa"
1917
 
1918
  #: inc/class-job.php:278
1919
+ #: inc/class-job.php:314
1920
  msgid "Job Start"
1921
  msgstr ""
1922
 
1923
  #: inc/class-job.php:298
1924
+ #: inc/class-job.php:334
1925
  msgid "Creates manifest file"
1926
  msgstr ""
1927
 
1928
  #: inc/class-job.php:320
1929
+ #: inc/class-job.php:356
1930
  msgid "Creates archive"
1931
  msgstr "Cria o arquivo"
1932
 
1933
  #: inc/class-job.php:360
1934
+ #: inc/class-job.php:403
1935
  msgid "End of Job"
1936
  msgstr ""
1937
 
1938
  #: inc/class-job.php:377
1939
+ #: inc/class-job.php:428
1940
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1941
  msgstr "Log do BackWPup para %1$s de %2$s em %3$s"
1942
 
1943
  #: inc/class-job.php:394
1944
+ #: inc/class-job.php:456
1945
  msgctxt "Plugin name; Plugin Version; plugin url"
1946
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1947
  msgstr ""
1948
 
1949
  #: inc/class-job.php:395
1950
+ #: inc/class-job.php:462
1951
  msgctxt "WordPress Version; Blog url"
1952
  msgid "[INFO] WordPress %1$s on %2$s"
1953
  msgstr ""
1954
 
1955
  #: inc/class-job.php:396
1956
+ #: inc/class-job.php:465
1957
  msgid "Normal"
1958
  msgstr ""
1959
 
1960
  #: inc/class-job.php:399
1961
+ #: inc/class-job.php:468
1962
  msgid "Debug"
1963
  msgstr ""
1964
 
1965
  #: inc/class-job.php:402
1966
+ #: inc/class-job.php:471
1967
  msgid "(translated)"
1968
  msgstr ""
1969
 
1970
  #: inc/class-job.php:404
1971
+ #: inc/class-job.php:474
1972
  #, fuzzy
1973
  msgid "[INFO] Log Level: %1$s %2$s"
1974
  msgstr "[INFO] Versão do curl: %1$s; %2$s"
1975
 
1976
  #: inc/class-job.php:409
1977
+ #: inc/class-job.php:480
1978
  msgid "[INFO] BackWPup job: %1$s"
1979
  msgstr ""
1980
 
1981
  #: inc/class-job.php:412
1982
+ #: inc/class-job.php:484
1983
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1984
  msgstr ""
1985
 
1987
  #: inc/class-page-backwpup.php:323
1988
  #: inc/class-page-jobs.php:282
1989
  #: inc/class-page-jobs.php:291
1990
+ #: inc/class-job.php:500
1991
  msgid "Not scheduled!"
1992
  msgstr ""
1993
 
1994
  #: inc/class-job.php:430
1995
  #: inc/class-job.php:440
1996
+ #: inc/class-job.php:507
1997
+ #: inc/class-job.php:519
1998
  msgid "[INFO] Cron: %s; Next: %s "
1999
  msgstr ""
2000
 
2001
  #: inc/class-job.php:433
2002
+ #: inc/class-job.php:511
2003
  msgid "[INFO] BackWPup job start with link is active"
2004
  msgstr ""
2005
 
2006
  #: inc/class-job.php:435
2007
+ #: inc/class-job.php:513
2008
  msgid "[INFO] BackWPup job start with EasyCron.com"
2009
  msgstr ""
2010
 
2011
  #: inc/class-job.php:443
2012
+ #: inc/class-job.php:523
2013
  msgid "[INFO] BackWPup no automatic job start configured"
2014
  msgstr ""
2015
 
2016
  #: inc/class-job.php:447
2017
+ #: inc/class-job.php:527
2018
  msgid "[INFO] BackWPup job started from wp-cron"
2019
  msgstr "[INFO] Tarefa do BackWPup começou do wp-cron"
2020
 
2021
  #: inc/class-job.php:449
2022
+ #: inc/class-job.php:529
2023
  msgid "[INFO] BackWPup job started manually"
2024
  msgstr "[INFO] Tarefa do BackWPup começou manualmente"
2025
 
2026
  #: inc/class-job.php:451
2027
+ #: inc/class-job.php:531
2028
  msgid "[INFO] BackWPup job started from external url"
2029
  msgstr "[INFO] Tarefa do BackWPup começou de uma URL externa"
2030
 
2031
  #: inc/class-job.php:453
2032
+ #: inc/class-job.php:533
2033
  msgid "[INFO] BackWPup job started form commandline interface"
2034
  msgstr ""
2035
 
2036
  #: inc/class-job.php:462
2037
+ #: inc/class-job.php:544
2038
  msgid "[INFO] PHP ver.:"
2039
  msgstr "[INFO] Versão do PHP:"
2040
 
2041
  #: inc/class-job.php:463
2042
+ #: inc/class-job.php:548
2043
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2044
  msgstr ""
2045
 
2046
  #: inc/class-job.php:467
2047
+ #: inc/class-job.php:555
2048
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2049
  msgstr ""
2050
 
2051
  #: inc/class-job.php:470
2052
+ #: inc/class-job.php:561
2053
  msgid "[INFO] MySQL ver.: %s"
2054
  msgstr "[INFO] Versão do MySQL: %s"
2055
 
2056
  #: inc/class-job.php:472
2057
+ #: inc/class-job.php:565
2058
  msgid "[INFO] Web Server: %s"
2059
  msgstr ""
2060
 
2061
  #: inc/class-job.php:476
2062
+ #: inc/class-job.php:571
2063
  msgid "[INFO] curl ver.: %1$s; %2$s"
2064
  msgstr "[INFO] Versão do curl: %1$s; %2$s"
2065
 
2066
  #: inc/class-job.php:478
2067
+ #: inc/class-job.php:576
2068
  msgid "[INFO] Temp folder is: %s"
2069
  msgstr "[INFO] Pasta temporária é: %s"
2070
 
2071
  #: inc/class-job.php:485
2072
+ #: inc/class-job.php:584
2073
  msgid "[INFO] Logfile is: %s"
2074
  msgstr ""
2075
 
2076
  #: inc/class-job.php:492
2077
+ #: inc/class-job.php:591
2078
  msgid "[INFO] Backup file is: %s"
2079
  msgstr "[INFO] Arquivo de backup é: %s"
2080
 
2081
  #: inc/class-job.php:494
2082
+ #: inc/class-job.php:594
2083
  msgid "[INFO] Backup type is: %s"
2084
  msgstr "[INFO] Tipo de backup é: %s"
2085
 
2086
  #: inc/class-job.php:502
2087
+ #: inc/class-job.php:603
2088
  msgid "Could not write log file"
2089
  msgstr ""
2090
 
2091
  #: inc/class-job.php:514
2092
+ #: inc/class-job.php:616
2093
  msgid "No destination correctly defined for backup! Please correct job settings."
2094
  msgstr ""
2095
 
2096
  #: inc/class-job.php:644
2097
+ #: inc/class-job.php:718
2098
  msgid "Cannot write progress to working file. Job will be aborted."
2099
  msgstr ""
2100
 
2101
  #: inc/class-job.php:716
2102
  #: inc/class-page-jobs.php:786
2103
+ #: inc/class-job.php:793
2104
  msgid "WARNING:"
2105
  msgstr "AVISO:"
2106
 
2107
  #: inc/class-job.php:725
2108
  #: inc/class-page-jobs.php:784
2109
+ #: inc/class-job.php:802
2110
  msgid "ERROR:"
2111
  msgstr "ERRO:"
2112
 
2113
  #: inc/class-job.php:729
2114
+ #: inc/class-job.php:806
2115
  msgid "DEPRECATED:"
2116
  msgstr "DESCONTINUADO:"
2117
 
2118
  #: inc/class-job.php:732
2119
+ #: inc/class-job.php:809
2120
  msgid "STRICT NOTICE:"
2121
  msgstr "AVISO ESTRITO:"
2122
 
2123
  #: inc/class-job.php:737
2124
+ #: inc/class-job.php:814
2125
  msgid "RECOVERABLE ERROR:"
2126
  msgstr "ERRO REPARÁVEL:"
2127
 
2128
  #: inc/class-job.php:985
2129
+ #: inc/class-job.php:1091
2130
  msgid "Aborted by user!"
2131
  msgstr ""
2132
 
2133
  #: inc/class-job.php:1019
2134
+ #: inc/class-job.php:1129
2135
  msgid "One old log deleted"
2136
  msgid_plural "%d old logs deleted"
2137
  msgstr[0] "Um antigo log foi excluídos"
2139
 
2140
  #: inc/class-job.php:1026
2141
  #: inc/class-page-jobs.php:784
2142
+ #: inc/class-job.php:1141
2143
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2144
  msgstr ""
2145
 
2146
  #: inc/class-job.php:1028
2147
+ #: inc/class-job.php:1150
2148
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2149
  msgstr ""
2150
 
2151
  #: inc/class-job.php:1030
2152
  #: inc/class-page-jobs.php:788
2153
+ #: inc/class-job.php:1158
2154
  msgid "Job done in %s seconds."
2155
  msgstr "Tarefa feita em %s segundos."
2156
 
2157
  #: inc/class-job.php:1074
2158
+ #: inc/class-job.php:1212
2159
  msgid "SUCCESSFUL"
2160
  msgstr "SUCESSO"
2161
 
2162
  #: inc/class-job.php:1076
2163
+ #: inc/class-job.php:1214
2164
  msgid "WARNING"
2165
  msgstr "AVISO"
2166
 
2167
  #: inc/class-job.php:1079
2168
+ #: inc/class-job.php:1217
2169
  msgid "ERROR"
2170
  msgstr "ERRO!"
2171
 
2172
  #: inc/class-job.php:1082
2173
+ #: inc/class-job.php:1221
2174
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2175
  msgstr "[%3$s] Log do BackWPup %1$s: %2$s"
2176
 
2177
  #: inc/class-job.php:1188
2178
+ #: inc/class-job.php:1341
2179
  msgid "Restart after %1$d seconds."
2180
  msgstr ""
2181
 
2182
  #: inc/class-job.php:1190
2183
+ #: inc/class-job.php:1343
2184
  msgid "Restart after getting signal."
2185
  msgstr ""
2186
 
2187
  #: inc/class-job.php:1363
2188
+ #: inc/class-job.php:1534
2189
  msgid "Job restarts due to inactivity for more than 5 minutes."
2190
  msgstr ""
2191
 
2192
  #: inc/class-job.php:1461
2193
+ #: inc/class-job.php:1636
2194
  msgid "Step aborted: too many attempts!"
2195
  msgstr "Etapa anulada: muitas tentativas!"
2196
 
2197
  #: inc/class-job.php:1532
2198
+ #: inc/class-job.php:1716
2199
  msgid "%d. Trying to create backup archive &hellip;"
2200
  msgstr ""
2201
 
2202
  #: inc/class-job.php:1540
2203
+ #: inc/class-job.php:1729
2204
  msgctxt "Archive compression method"
2205
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2206
  msgstr ""
2207
 
2208
  #: inc/class-job.php:1547
2209
+ #: inc/class-job.php:1742
2210
  msgid "Adding Extra files to Archive"
2211
  msgstr ""
2212
 
2213
  #: inc/class-job.php:1559
2214
  #: inc/class-job.php:1619
2215
+ #: inc/class-job.php:1754
2216
+ #: inc/class-job.php:1823
2217
  msgid "Cannot create backup archive correctly. Aborting creation."
2218
  msgstr ""
2219
 
2220
  #: inc/class-job.php:1575
2221
+ #: inc/class-job.php:1772
2222
  msgid "Archiving Folder: %s"
2223
  msgstr ""
2224
 
2225
  #: inc/class-job.php:1629
2226
+ #: inc/class-job.php:1834
2227
  msgid "Backup archive created."
2228
  msgstr ""
2229
 
2230
  #: inc/class-job.php:1643
2231
+ #: inc/class-job.php:1849
2232
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2233
  msgstr ""
2234
 
2235
  #: inc/class-job.php:1646
2236
+ #: inc/class-job.php:1857
2237
  msgid "Archive size is %s."
2238
  msgstr "Tamanho do arquivo é %s."
2239
 
2240
  #: inc/class-job.php:1649
2241
+ #: inc/class-job.php:1864
2242
  msgid "%1$d Files with %2$s in Archive."
2243
  msgstr "%1$d arquivos com %2$s em Arquivo."
2244
 
2245
  #: inc/class-job.php:1698
2246
+ #: inc/class-job.php:2059
2247
  #, fuzzy
2248
  msgctxt "Folder name"
2249
  msgid "Folder %s does not exist"
2250
  msgstr "Repositório \"%s\" da S3 não existe!"
2251
 
2252
  #: inc/class-job.php:1703
2253
+ #: inc/class-job.php:2067
2254
  #, fuzzy
2255
  msgctxt "Folder name"
2256
  msgid "Folder %s is not readable"
2257
  msgstr "A pasta \"%s\" não pode ser lida!"
2258
 
2259
  #: inc/class-job.php:1725
2260
+ #: inc/class-job.php:2096
2261
  msgid "Link \"%s\" not following."
2262
  msgstr ""
2263
 
2264
  #: inc/class-job.php:1727
2265
+ #: inc/class-job.php:2100
2266
  msgid "File \"%s\" is not readable!"
2267
  msgstr "Arquivo \"%s\" não é legível!"
2268
 
2269
  #: inc/class-job.php:1731
2270
+ #: inc/class-job.php:2107
2271
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2272
  msgstr ""
2273
 
2274
  #: inc/class-job.php:1814
2275
+ #: inc/class-job.php:2197
2276
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2277
  msgstr ""
2278
 
2279
  #: inc/class-job.php:1870
2280
+ #: inc/class-job.php:2264
2281
  msgid "You may have noticed the manifest.json file in this archive."
2282
  msgstr ""
2283
 
2284
  #: inc/class-job.php:1871
2285
+ #: inc/class-job.php:2265
2286
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2287
  msgstr ""
2288
 
2289
  #: inc/class-job.php:1872
2290
+ #: inc/class-job.php:2268
2291
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2292
  msgstr ""
2293
 
2294
  #: inc/class-job.php:1882
2295
+ #: inc/class-job.php:2282
2296
  msgid "Added manifest.json file with %1$s to backup file list."
2297
  msgstr ""
2298
 
2299
  #: inc/class-job.php:1921
2300
+ #: inc/class-job.php:2324
2301
  msgid "Wrong BackWPup JobID"
2302
  msgstr "ID de tarefa (JobID) do BackWPup errado. "
2303
 
2304
  #: inc/class-job.php:1934
2305
+ #: inc/class-job.php:2337
2306
  msgid "A BackWPup job is already running"
2307
  msgstr "Uma tarefa do BackWPup já está em execução"
2308
 
2309
  #: inc/class-job.php:2302
2310
+ #: inc/class-job.php:2752
2311
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2312
  msgid "Hangup detected on controlling terminal or death of controlling process"
2313
  msgstr ""
2314
 
2315
  #: inc/class-job.php:2306
2316
+ #: inc/class-job.php:2759
2317
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2318
  msgid "Interrupt from keyboard"
2319
  msgstr ""
2320
 
2321
  #: inc/class-job.php:2310
2322
+ #: inc/class-job.php:2766
2323
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2324
  msgid "Quit from keyboard"
2325
  msgstr ""
2326
 
2327
  #: inc/class-job.php:2314
2328
+ #: inc/class-job.php:2773
2329
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Illegal Instruction"
2331
  msgstr ""
2332
 
2333
  #: inc/class-job.php:2318
2334
+ #: inc/class-job.php:2780
2335
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Abort signal from abort(3)"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2322
2340
+ #: inc/class-job.php:2787
2341
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Bus error (bad memory access)"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2326
2346
+ #: inc/class-job.php:2794
2347
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Floating point exception"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2330
2352
+ #: inc/class-job.php:2801
2353
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Invalid memory reference"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2334
2358
+ #: inc/class-job.php:2808
2359
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2360
  msgid "Termination signal"
2361
  msgstr ""
2362
 
2363
  #: inc/class-job.php:2338
2364
+ #: inc/class-job.php:2815
2365
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Stack fault on coprocessor"
2367
  msgstr ""
2368
 
2369
  #: inc/class-job.php:2342
2370
+ #: inc/class-job.php:2822
2371
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2372
  msgid "User-defined signal 1"
2373
  msgstr ""
2374
 
2375
  #: inc/class-job.php:2346
2376
+ #: inc/class-job.php:2829
2377
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2378
  msgid "User-defined signal 2"
2379
  msgstr ""
2380
 
2381
  #: inc/class-job.php:2350
2382
+ #: inc/class-job.php:2836
2383
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2384
  msgid "Urgent condition on socket"
2385
  msgstr ""
2386
 
2387
  #: inc/class-job.php:2354
2388
+ #: inc/class-job.php:2843
2389
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2390
  msgid "CPU time limit exceeded"
2391
  msgstr ""
2392
 
2393
  #: inc/class-job.php:2358
2394
+ #: inc/class-job.php:2850
2395
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2396
  msgid "File size limit exceeded"
2397
  msgstr ""
2398
 
2399
  #: inc/class-job.php:2362
2400
+ #: inc/class-job.php:2857
2401
  #, fuzzy
2402
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2403
  msgid "Power failure"
2404
  msgstr "FTP: falha de login!"
2405
 
2406
  #: inc/class-job.php:2366
2407
+ #: inc/class-job.php:2864
2408
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "Bad argument to routine"
2410
  msgstr ""
2411
 
2412
  #: inc/class-job.php:2373
2413
+ #: inc/class-job.php:2876
2414
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2415
  msgstr ""
2416
 
2417
  #: inc/class-job.php:2407
2418
  #: inc/class-job.php:2420
2419
+ #: inc/class-job.php:2912
2420
+ #: inc/class-job.php:2925
2421
  msgid "System: %s"
2422
  msgstr ""
2423
 
2424
  #: inc/class-job.php:2435
2425
+ #: inc/class-job.php:2942
2426
  msgid "Exception caught in %1$s: %2$s"
2427
  msgstr "Exceção detectada em %1$s: %2$s"
2428
 
2721
 
2722
  #: inc/class-jobtype-wpexp.php:14
2723
  #: inc/class-page-about.php:472
2724
+ #: inc/class-page-about.php:463
2725
  msgid "WordPress XML export"
2726
  msgstr "Exportar XML do WordPress"
2727
 
2955
  msgstr ""
2956
 
2957
  #: inc/class-page-about.php:369
2958
+ #: inc/class-page-about.php:366
2959
  msgid "Welcome to BackWPup Pro"
2960
  msgstr "Bem-vindo ao BackWPup Pro"
2961
 
2962
  #: inc/class-page-about.php:370
2963
  #: inc/class-page-backwpup.php:75
2964
+ #: inc/class-page-about.php:367
2965
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2966
  msgstr ""
2967
 
 
 
 
 
 
 
 
2968
  #: inc/class-page-about.php:372
2969
+ #: inc/class-page-about.php:369
2970
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2971
  msgstr ""
2972
 
2973
  #: inc/class-page-about.php:382
2974
+ #: inc/class-page-about.php:376
2975
  msgid "Welcome to BackWPup"
2976
  msgstr "Bem-vindo ao BackWPup"
2977
 
2978
  #: inc/class-page-about.php:385
2979
+ #: inc/class-page-about.php:379
2980
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2981
  msgstr ""
2982
 
2983
  #: inc/class-page-about.php:398
2984
+ #: inc/class-page-about.php:389
2985
  msgid "Save your database"
2986
  msgstr ""
2987
 
2988
  #: inc/class-page-about.php:401
2989
+ #: inc/class-page-about.php:392
2990
  msgid "Save your database regularly"
2991
  msgstr ""
2992
 
2993
  #: inc/class-page-about.php:402
2994
+ #: inc/class-page-about.php:393
2995
  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."
2996
  msgstr ""
2997
 
2998
  #: inc/class-page-about.php:407
2999
  #: inc/class-page-about.php:411
3000
+ #: inc/class-page-about.php:398
3001
+ #: inc/class-page-about.php:402
3002
  msgid "WordPress XML Export"
3003
  msgstr ""
3004
 
3005
  #: inc/class-page-about.php:408
3006
+ #: inc/class-page-about.php:399
3007
  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."
3008
  msgstr ""
3009
 
3010
  #: inc/class-page-about.php:416
3011
+ #: inc/class-page-about.php:407
3012
  msgid "Save all data from the webserver"
3013
  msgstr ""
3014
 
3015
  #: inc/class-page-about.php:419
3016
+ #: inc/class-page-about.php:410
3017
  msgid "Save all files"
3018
  msgstr ""
3019
 
3020
  #: inc/class-page-about.php:420
3021
+ #: inc/class-page-about.php:411
3022
  msgid "You can backup 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."
3023
  msgstr ""
3024
 
3025
  #: inc/class-page-about.php:425
3026
  #: inc/class-page-about.php:429
3027
+ #: inc/class-page-about.php:416
3028
+ #: inc/class-page-about.php:420
3029
  msgid "Security!"
3030
  msgstr ""
3031
 
3032
  #: inc/class-page-about.php:426
3033
+ #: inc/class-page-about.php:417
3034
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3035
  msgstr ""
3036
 
3037
  #: inc/class-page-about.php:434
3038
  #: inc/class-page-about.php:437
3039
+ #: inc/class-page-about.php:425
3040
+ #: inc/class-page-about.php:428
3041
  msgid "Cloud Support"
3042
  msgstr ""
3043
 
3044
  #: inc/class-page-about.php:438
3045
+ #: inc/class-page-about.php:429
3046
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3047
  msgstr ""
3048
 
3049
  #: inc/class-page-about.php:444
3050
+ #: inc/class-page-about.php:435
3051
  msgid "Features / differences between Free and Pro"
3052
  msgstr ""
3053
 
3054
  #: inc/class-page-about.php:447
3055
+ #: inc/class-page-about.php:438
3056
  msgid "Features"
3057
  msgstr ""
3058
 
3059
  #: inc/class-page-about.php:448
3060
+ #: inc/class-page-about.php:439
3061
  msgid "FREE"
3062
  msgstr ""
3063
 
3064
  #: inc/class-page-about.php:449
3065
+ #: inc/class-page-about.php:440
3066
  msgid "PRO"
3067
  msgstr ""
3068
 
3069
  #: inc/class-page-about.php:452
3070
+ #: inc/class-page-about.php:443
3071
  msgid "Complete database backup"
3072
  msgstr ""
3073
 
3074
  #: inc/class-page-about.php:457
3075
+ #: inc/class-page-about.php:448
3076
  msgid "Complete file backup"
3077
  msgstr ""
3078
 
3079
  #: inc/class-page-about.php:462
3080
+ #: inc/class-page-about.php:453
3081
  msgid "Database check"
3082
  msgstr ""
3083
 
3084
  #: inc/class-page-about.php:467
3085
+ #: inc/class-page-about.php:458
3086
  msgid "Data compression"
3087
  msgstr ""
3088
 
3089
  #: inc/class-page-about.php:477
3090
+ #: inc/class-page-about.php:468
3091
  msgid "List of installed plugins"
3092
  msgstr ""
3093
 
3094
  #: inc/class-page-about.php:482
3095
+ #: inc/class-page-about.php:473
3096
  msgid "Backup archives management"
3097
  msgstr ""
3098
 
3099
  #: inc/class-page-about.php:487
3100
+ #: inc/class-page-about.php:478
3101
  msgid "Log file management"
3102
  msgstr ""
3103
 
3104
  #: inc/class-page-about.php:492
3105
+ #: inc/class-page-about.php:483
3106
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3107
  msgstr ""
3108
 
3109
  #: inc/class-page-about.php:497
3110
+ #: inc/class-page-about.php:488
3111
  msgid "Log report via email"
3112
  msgstr ""
3113
 
3114
  #: inc/class-page-about.php:502
3115
+ #: inc/class-page-about.php:493
3116
  msgid "Backup to Microsoft Azure"
3117
  msgstr ""
3118
 
3119
  #: inc/class-page-about.php:507
3120
+ #: inc/class-page-about.php:498
3121
  msgid "Backup as email"
3122
  msgstr ""
3123
 
3124
  #: inc/class-page-about.php:512
3125
+ #: inc/class-page-about.php:503
3126
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3127
  msgstr ""
3128
 
3129
  #: inc/class-page-about.php:527
3130
+ #: inc/class-page-about.php:518
3131
  msgid "Backup to FTP server"
3132
  msgstr ""
3133
 
3134
  #: inc/class-page-about.php:532
3135
+ #: inc/class-page-about.php:523
3136
  msgid "Backup to your web space"
3137
  msgstr ""
3138
 
3139
  #: inc/class-page-about.php:542
3140
  #: inc/pro/class-pro.php:112
3141
+ #: inc/class-page-about.php:553
3142
  #: inc/Pro/class-pro.php:152
 
3143
  msgid "Backup to Google Drive"
3144
  msgstr ""
3145
 
3146
  #: inc/class-page-about.php:547
3147
  #: inc/pro/class-pro.php:93
3148
+ #: inc/class-page-about.php:558
3149
  #: inc/Pro/class-pro.php:131
 
3150
  msgid "Backup to Amazon Glacier"
3151
  msgstr ""
3152
 
3153
  #: inc/class-page-about.php:552
3154
+ #: inc/class-page-about.php:563
3155
  msgid "Custom API keys for DropBox and SugarSync"
3156
  msgstr ""
3157
 
3158
  #: inc/class-page-about.php:557
3159
+ #: inc/class-page-about.php:568
3160
  msgid "XML database backup as PHPMyAdmin schema"
3161
  msgstr ""
3162
 
3163
  #: inc/class-page-about.php:562
3164
+ #: inc/class-page-about.php:573
3165
  msgid "Database backup as mysqldump per command line"
3166
  msgstr ""
3167
 
3168
  #: inc/class-page-about.php:567
3169
+ #: inc/class-page-about.php:578
3170
  msgid "Database backup for additional MySQL databases"
3171
  msgstr ""
3172
 
3173
  #: inc/class-page-about.php:572
3174
+ #: inc/class-page-about.php:583
3175
  msgid "Import and export job settings as XML"
3176
  msgstr ""
3177
 
3178
  #: inc/class-page-about.php:577
3179
+ #: inc/class-page-about.php:588
3180
  msgid "Wizard for system tests"
3181
  msgstr ""
3182
 
3183
  #: inc/class-page-about.php:582
3184
+ #: inc/class-page-about.php:593
3185
  msgid "Wizard for scheduled backup jobs"
3186
  msgstr ""
3187
 
3188
  #: inc/class-page-about.php:587
3189
+ #: inc/class-page-about.php:598
3190
  msgid "Wizard to import settings and backup jobs"
3191
  msgstr ""
3192
 
3193
  #: inc/class-page-about.php:592
3194
+ #: inc/class-page-about.php:603
3195
  msgid "Differential backup of changed directories to Dropbox"
3196
  msgstr ""
3197
 
3198
  #: inc/class-page-about.php:597
3199
+ #: inc/class-page-about.php:608
3200
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3201
  msgstr ""
3202
 
3203
  #: inc/class-page-about.php:602
3204
+ #: inc/class-page-about.php:613
3205
  msgid "Differential backup of changed directories to S3"
3206
  msgstr ""
3207
 
3208
  #: inc/class-page-about.php:607
3209
+ #: inc/class-page-about.php:618
3210
  msgid "Differential backup of changed directories to MS Azure"
3211
  msgstr ""
3212
 
3213
  #: inc/class-page-about.php:612
3214
+ #: inc/class-page-about.php:648
3215
  msgid "<strong>Premium support</strong>"
3216
  msgstr ""
3217
 
3218
  #: inc/class-page-about.php:617
3219
+ #: inc/class-page-about.php:653
3220
  msgid "<strong>Automatic updates</strong>"
3221
  msgstr ""
3222
 
3223
  #: inc/class-page-about.php:624
3224
+ #: inc/class-page-about.php:660
3225
  msgid "GET PRO"
3226
  msgstr ""
3227
 
3281
  #: inc/class-page-logs.php:206
3282
  #: inc/class-page-backups.php:281
3283
  #: inc/class-page-backups.php:285
3284
+ #: inc/class-page-logs.php:234
3285
  #: inc/class-page-settings.php:768
3286
  #: inc/class-page-settings.php:779
 
3287
  msgid "Download"
3288
  msgstr "Baixar"
3289
 
3342
  msgid "Restoring backups"
3343
  msgstr ""
3344
 
 
 
 
 
 
3345
  #: inc/class-page-backwpup.php:78
3346
  #: inc/class-page-backwpup.php:87
3347
  msgctxt "Dashboard heading"
3570
 
3571
  #: inc/class-page-editjob.php:328
3572
  #: inc/class-page-settings.php:117
 
3573
  #: inc/class-page-editjob.php:337
3574
+ #: inc/class-page-settings.php:214
3575
  msgid "General"
3576
  msgstr "Geral"
3577
 
3605
 
3606
  #: inc/class-page-editjob.php:391
3607
  #: inc/pro/class-wizard-job.php:254
 
3608
  #: inc/class-page-editjob.php:400
3609
+ #: inc/Pro/class-wizard-job.php:254
3610
  msgid "This job is a&#160;&hellip;"
3611
  msgstr ""
3612
 
3613
  #: inc/class-page-editjob.php:394
3614
  #: inc/pro/class-wizard-job.php:257
 
3615
  #: inc/class-page-editjob.php:403
3616
+ #: inc/Pro/class-wizard-job.php:257
3617
  msgid "Job tasks"
3618
  msgstr ""
3619
 
3626
  #: inc/class-page-editjob.php:420
3627
  #: inc/pro/class-wizard-job.php:402
3628
  #: inc/pro/class-wizard-job.php:405
 
 
3629
  #: inc/class-page-editjob.php:426
3630
  #: inc/class-page-editjob.php:429
3631
+ #: inc/Pro/class-wizard-job.php:402
3632
+ #: inc/Pro/class-wizard-job.php:405
3633
  msgid "Backup type"
3634
  msgstr ""
3635
 
3640
 
3641
  #: inc/class-page-editjob.php:428
3642
  #: inc/pro/class-wizard-job.php:413
 
3643
  #: inc/class-page-editjob.php:437
3644
+ #: inc/Pro/class-wizard-job.php:413
3645
  msgid "Create a backup archive"
3646
  msgstr "Criar um arquivo de backup"
3647
 
3741
  #: inc/class-page-editjob.php:476
3742
  #: inc/pro/class-wizard-job.php:426
3743
  #: inc/pro/class-wizard-job.php:429
 
 
3744
  #: inc/class-page-editjob.php:481
3745
  #: inc/class-page-editjob.php:483
3746
+ #: inc/Pro/class-wizard-job.php:426
3747
+ #: inc/Pro/class-wizard-job.php:429
3748
  msgid "Zip"
3749
  msgstr "Zip"
3750
 
3751
  #: inc/class-page-editjob.php:479
3752
  #: inc/pro/class-wizard-job.php:433
 
3753
  #: inc/class-page-editjob.php:486
3754
+ #: inc/Pro/class-wizard-job.php:433
3755
  msgid "Tar"
3756
  msgstr "Tar"
3757
 
3759
  #: inc/class-page-editjob.php:483
3760
  #: inc/pro/class-wizard-job.php:437
3761
  #: inc/pro/class-wizard-job.php:440
 
 
3762
  #: inc/class-page-editjob.php:488
3763
  #: inc/class-page-editjob.php:490
3764
+ #: inc/Pro/class-wizard-job.php:437
3765
+ #: inc/Pro/class-wizard-job.php:440
3766
  msgid "Tar GZip"
3767
  msgstr "Tar GZip"
3768
 
3777
  #: inc/class-page-editjob.php:489
3778
  #: inc/pro/class-wizard-job.php:444
3779
  #: inc/pro/class-wizard-job.php:447
 
 
3780
  #: inc/class-page-editjob.php:494
3781
  #: inc/class-page-editjob.php:497
3782
+ #: inc/Pro/class-wizard-job.php:444
3783
+ #: inc/Pro/class-wizard-job.php:447
3784
  msgid "Tar BZip2"
3785
  msgstr "Tas BZip2"
3786
 
3908
  #: inc/class-page-editjob.php:650
3909
  #: inc/class-page-editjob.php:718
3910
  #: inc/pro/class-wizard-job.php:320
 
3911
  #: inc/class-page-editjob.php:686
3912
  #: inc/class-page-editjob.php:754
3913
+ #: inc/Pro/class-wizard-job.php:320
3914
  msgid "Scheduler"
3915
  msgstr ""
3916
 
3918
  #: inc/class-page-jobs.php:126
3919
  #: inc/class-page-logs.php:139
3920
  #: inc/pro/class-wizard-job.php:324
 
 
3921
  #: inc/class-page-editjob.php:691
3922
+ #: inc/class-page-logs.php:166
3923
+ #: inc/Pro/class-wizard-job.php:324
3924
  msgid "Type"
3925
  msgstr ""
3926
 
3927
  #: inc/class-page-editjob.php:660
3928
  #: inc/pro/class-wizard-job.php:330
 
3929
  #: inc/class-page-editjob.php:696
3930
+ #: inc/Pro/class-wizard-job.php:330
3931
  msgid "Hour"
3932
  msgstr ""
3933
 
3934
  #: inc/class-page-editjob.php:663
3935
  #: inc/pro/class-wizard-job.php:333
 
3936
  #: inc/class-page-editjob.php:699
3937
+ #: inc/Pro/class-wizard-job.php:333
3938
  msgid "Minute"
3939
  msgstr ""
3940
 
3941
  #: inc/class-page-editjob.php:667
3942
  #: inc/pro/class-wizard-job.php:337
 
3943
  #: inc/class-page-editjob.php:703
3944
+ #: inc/Pro/class-wizard-job.php:337
3945
  msgid "monthly"
3946
  msgstr ""
3947
 
3948
  #: inc/class-page-editjob.php:669
3949
  #: inc/pro/class-wizard-job.php:339
 
3950
  #: inc/class-page-editjob.php:705
3951
+ #: inc/Pro/class-wizard-job.php:339
3952
  msgid "on"
3953
  msgstr ""
3954
 
3955
  #: inc/class-page-editjob.php:679
3956
  #: inc/pro/class-wizard-job.php:349
 
3957
  #: inc/class-page-editjob.php:715
3958
+ #: inc/Pro/class-wizard-job.php:349
3959
  msgid "weekly"
3960
  msgstr ""
3961
 
3962
  #: inc/class-page-editjob.php:681
3963
  #: inc/class-page-editjob.php:788
3964
  #: inc/pro/class-wizard-job.php:351
 
3965
  #: inc/class-page-editjob.php:717
3966
  #: inc/class-page-editjob.php:824
3967
+ #: inc/Pro/class-wizard-job.php:351
3968
  msgid "Sunday"
3969
  msgstr ""
3970
 
3971
  #: inc/class-page-editjob.php:682
3972
  #: inc/class-page-editjob.php:789
3973
  #: inc/pro/class-wizard-job.php:352
 
3974
  #: inc/class-page-editjob.php:718
3975
  #: inc/class-page-editjob.php:825
3976
+ #: inc/Pro/class-wizard-job.php:352
3977
  msgid "Monday"
3978
  msgstr ""
3979
 
3980
  #: inc/class-page-editjob.php:683
3981
  #: inc/class-page-editjob.php:790
3982
  #: inc/pro/class-wizard-job.php:353
 
3983
  #: inc/class-page-editjob.php:719
3984
  #: inc/class-page-editjob.php:826
3985
+ #: inc/Pro/class-wizard-job.php:353
3986
  msgid "Tuesday"
3987
  msgstr ""
3988
 
3989
  #: inc/class-page-editjob.php:684
3990
  #: inc/class-page-editjob.php:791
3991
  #: inc/pro/class-wizard-job.php:354
 
3992
  #: inc/class-page-editjob.php:720
3993
  #: inc/class-page-editjob.php:827
3994
+ #: inc/Pro/class-wizard-job.php:354
3995
  msgid "Wednesday"
3996
  msgstr ""
3997
 
3998
  #: inc/class-page-editjob.php:685
3999
  #: inc/class-page-editjob.php:792
4000
  #: inc/pro/class-wizard-job.php:355
 
4001
  #: inc/class-page-editjob.php:721
4002
  #: inc/class-page-editjob.php:828
4003
+ #: inc/Pro/class-wizard-job.php:355
4004
  msgid "Thursday"
4005
  msgstr ""
4006
 
4007
  #: inc/class-page-editjob.php:686
4008
  #: inc/class-page-editjob.php:793
4009
  #: inc/pro/class-wizard-job.php:356
 
4010
  #: inc/class-page-editjob.php:722
4011
  #: inc/class-page-editjob.php:829
4012
+ #: inc/Pro/class-wizard-job.php:356
4013
  msgid "Friday"
4014
  msgstr ""
4015
 
4016
  #: inc/class-page-editjob.php:687
4017
  #: inc/class-page-editjob.php:794
4018
  #: inc/pro/class-wizard-job.php:357
 
4019
  #: inc/class-page-editjob.php:723
4020
  #: inc/class-page-editjob.php:830
4021
+ #: inc/Pro/class-wizard-job.php:357
4022
  msgid "Saturday"
4023
  msgstr ""
4024
 
4025
  #: inc/class-page-editjob.php:697
4026
  #: inc/pro/class-wizard-job.php:367
 
4027
  #: inc/class-page-editjob.php:733
4028
+ #: inc/Pro/class-wizard-job.php:367
4029
  msgid "daily"
4030
  msgstr ""
4031
 
4032
  #: inc/class-page-editjob.php:707
4033
  #: inc/pro/class-wizard-job.php:377
 
4034
  #: inc/class-page-editjob.php:743
4035
+ #: inc/Pro/class-wizard-job.php:377
4036
  msgid "hourly"
4037
  msgstr ""
4038
 
4180
 
4181
  #: inc/class-page-jobs.php:172
4182
  #: inc/class-page-logs.php:200
 
4183
  #: inc/class-page-logs.php:228
4184
+ #: inc/Pro/class-page-support.php:221
4185
  msgid "Job ID: %d"
4186
  msgstr ""
4187
 
5004
  #: inc/pro/class-wizard-job.php:17
5005
  #: inc/pro/class-wizard-jobimport.php:16
5006
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5007
  #: inc/class-admin.php:510
5008
  #: inc/class-admin.php:531
5009
+ #: inc/class-job.php:459
5010
+ #: inc/class-page-about.php:365
5011
+ #: inc/class-page-about.php:375
5012
+ #: inc/class-page-about.php:660
5013
+ #: inc/class-page-backwpup.php:254
5014
  #: inc/class-page-settings.php:1123
5015
+ #: inc/Pro/class-wizard-job.php:17
5016
+ #: inc/Pro/class-wizard-jobimport.php:16
5017
+ #: inc/Pro/class-wizard-systemtest.php:27
5018
  msgid "http://backwpup.com"
5019
  msgstr ""
5020
 
5027
  #: inc/pro/class-wizard-job.php:19
5028
  #: inc/pro/class-wizard-jobimport.php:18
5029
  #: inc/pro/class-wizard-systemtest.php:18
 
5030
  #: inc/Pro/class-wizard-job.php:19
5031
+ #: inc/Pro/class-wizard-jobimport.php:18
5032
  #: inc/Pro/class-wizard-systemtest.php:29
5033
  msgid "http://inpsyde.com"
5034
  msgstr ""
5035
 
5036
+ #: backwpup.php:573
5037
+ #: vendor_dist/backwpup.php:573
5038
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5039
  msgstr ""
5040
 
5041
+ #: inc/class-create-archive.php:114
5042
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5043
  msgstr ""
5044
 
5045
+ #: inc/class-create-archive.php:311
5046
+ msgid "File name cannot be empty."
 
5047
  msgstr ""
5048
 
5049
+ #: inc/class-create-archive.php:741
5050
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5051
  msgstr ""
5052
 
5053
+ #. translators: $1 is the filename to add into the archive.
5054
+ #: inc/class-create-archive.php:996
5055
+ msgid "Cannot open source file %s."
5056
  msgstr ""
5057
 
5058
+ #: inc/class-decrypter.php:56
5059
+ msgid "Cannot open the archive for reading."
5060
  msgstr ""
5061
 
5062
+ #: inc/class-decrypter.php:82
5063
+ msgid "Cannot write the encrypted archive."
5064
  msgstr ""
5065
 
5066
+ #: inc/class-decrypter.php:162
5067
+ msgid "Private key invalid."
5068
  msgstr ""
5069
 
5070
+ #: inc/class-destination-dropbox-downloader.php:72
5071
+ #: inc/class-destination-ftp-downloader.php:72
5072
+ #: inc/class-destination-s3-downloader.php:83
5073
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5074
+ msgid "Could not write data to file."
5075
  msgstr ""
5076
 
5077
+ #: inc/class-destination-dropbox-downloader.php:104
5078
+ #: inc/class-destination-folder-downloader.php:137
5079
+ #: inc/class-destination-ftp-downloader.php:126
5080
+ #: inc/class-destination-s3-downloader.php:112
5081
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5082
+ msgid "File could not be opened for writing."
5083
  msgstr ""
5084
 
5085
  #: inc/class-destination-folder-downloader.php:64
5099
  msgid "%s is a directory not a file."
5100
  msgstr ""
5101
 
5102
+ #: inc/class-destination-ftp-downloader.php:108
5103
+ msgid "Cannot open FTP file for download."
5104
+ msgstr ""
5105
+
5106
+ #: inc/class-destination-ftp.php:321
5107
+ msgid "Could not log in to FTP server."
5108
+ msgstr ""
5109
+
5110
+ #: inc/class-destination-ftp.php:735
5111
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5112
+ msgstr ""
5113
+
5114
+ #: inc/class-destination-s3-downloader.php:76
5115
+ msgid "Could not write data to file. Empty source file."
5116
+ msgstr ""
5117
+
5118
  #: inc/class-destination-s3.php:102
5119
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5120
  msgstr ""
5121
 
5122
+ #: inc/class-destination-s3.php:1134
5123
+ #: inc/Pro/class-destination-s3.php:63
5124
+ msgid "Amazon S3: EU (London)"
5125
+ msgstr ""
5126
+
5127
+ #: inc/class-download-file.php:135
5128
+ msgid "Invalid file name, seems file include invalid characters."
5129
+ msgstr ""
5130
+
5131
+ #: inc/class-job.php:362
5132
+ msgid "Encrypts the archive"
5133
+ msgstr ""
5134
+
5135
+ #: inc/class-job.php:1902
5136
+ msgid "No encryption key was provided. Aborting encryption."
5137
+ msgstr ""
5138
+
5139
+ #: inc/class-job.php:1912
5140
+ msgid "%d. Trying to encrypt archive &hellip;"
5141
+ msgstr ""
5142
+
5143
+ #: inc/class-job.php:1925
5144
+ msgid "Cannot open the archive for reading. Aborting encryption."
5145
+ msgstr ""
5146
+
5147
+ #: inc/class-job.php:1932
5148
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5149
+ msgstr ""
5150
+
5151
+ #: inc/class-job.php:1991
5152
+ msgid "Encrypted %s of data."
5153
+ msgstr ""
5154
+
5155
+ #: inc/class-job.php:1996
5156
+ msgid "Unable to delete unencrypted archive."
5157
+ msgstr ""
5158
+
5159
+ #: inc/class-job.php:2003
5160
+ msgid "Unable to rename encrypted archive."
5161
+ msgstr ""
5162
+
5163
+ #: inc/class-job.php:2009
5164
+ msgid "Archive has been successfully encrypted."
5165
+ msgstr ""
5166
+
5167
+ #: inc/class-job.php:2719
5168
+ msgid "exec command is not active."
5169
+ msgstr ""
5170
+
5171
+ #: inc/class-job.php:2725
5172
+ msgid "mysqldump binary not found."
5173
+ msgstr ""
5174
+
5175
+ #: inc/class-page-about.php:365
5176
+ #: inc/class-page-about.php:375
5177
+ #: inc/class-page-backwpup.php:254
5178
+ msgid "BackWPup banner"
5179
+ msgstr ""
5180
+
5181
+ #: inc/class-page-about.php:368
5182
+ #: inc/class-page-about.php:378
5183
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5184
+ msgstr ""
5185
+
5186
+ #: inc/class-page-about.php:533
5187
+ msgid "Restore manually uploaded Backup Archives"
5188
+ msgstr ""
5189
+
5190
+ #: inc/class-page-about.php:538
5191
+ msgid "Standalone Restore App"
5192
+ msgstr ""
5193
+
5194
+ #: inc/class-page-about.php:543
5195
+ msgid "Encrypt Backup Archives"
5196
+ msgstr ""
5197
+
5198
+ #: inc/class-page-about.php:548
5199
+ msgid "Restore Encrypted Backups"
5200
+ msgstr ""
5201
+
5202
+ #: inc/class-page-about.php:623
5203
+ msgid "Restore from Folder"
5204
+ msgstr ""
5205
+
5206
+ #: inc/class-page-about.php:628
5207
+ msgid "Restore from Google Drive"
5208
+ msgstr ""
5209
+
5210
+ #: inc/class-page-about.php:633
5211
+ msgid "Restore from Amazon S3"
5212
+ msgstr ""
5213
+
5214
+ #: inc/class-page-about.php:638
5215
+ msgid "Restore from Dropbox"
5216
+ msgstr ""
5217
+
5218
+ #: inc/class-page-about.php:643
5219
+ msgid "Restore from FTP"
5220
+ msgstr ""
5221
+
5222
+ #: inc/class-page-backups.php:293
5223
+ #: inc/Pro/class-pro.php:285
5224
+ #: inc/Pro/class-pro.php:286
5225
+ #: views/pro/restore/steps/step4_top.php:2
5226
+ msgid "Restore"
5227
+ msgstr ""
5228
+
5229
  #: inc/class-page-backups.php:408
5230
  msgid "&laquo; Go back"
5231
  msgstr ""
5268
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5269
  msgstr ""
5270
 
5271
+ #: inc/class-page-backwpup.php:77
5272
+ #: inc/class-page-backwpup.php:86
5273
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5274
  msgstr ""
5275
 
5276
+ #: inc/class-page-editjob.php:448
5277
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5278
  msgstr ""
5279
 
5280
+ #: inc/class-page-editjob.php:452
5281
+ msgid "Preview: "
5282
  msgstr ""
5283
 
5284
+ #: inc/class-page-editjob.php:484
5285
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5286
+ msgstr ""
5287
+
5288
+ #: inc/class-page-editjob.php:495
5289
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5290
+ msgstr ""
5291
+
5292
+ #: inc/class-page-editjob.php:506
5293
+ #: inc/class-page-editjob.php:511
5294
+ #: inc/class-page-editjob.php:520
5295
+ msgid "Encrypt Archive"
5296
+ msgstr ""
5297
+
5298
+ #: inc/class-page-editjob.php:524
5299
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5300
  msgstr ""
5301
 
5302
  #: inc/class-page-settings.php:39
5509
  msgid "BackWPup maximum script execution time"
5510
  msgstr ""
5511
 
5512
+ #: inc/class-system-tests-runner.php:77
5513
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5514
  msgstr ""
5515
 
5516
+ #: inc/class-system-tests-runner.php:88
5517
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5518
  msgstr ""
5519
 
5520
+ #: inc/class-system-tests-runner.php:100
5521
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5522
  msgstr ""
5523
 
5524
+ #: inc/class-system-tests-runner.php:193
5525
+ msgid "Yeah!"
5526
  msgstr ""
5527
 
5528
+ #: inc/class-system-tests-runner.php:261
5529
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5530
  msgstr ""
5531
 
5532
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-pt_PT.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Pasta"
@@ -53,24 +53,24 @@ msgstr "Cópia de segurança para FTP"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Cópia de segurança para Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Serviço S3"
@@ -101,8 +101,8 @@ msgstr "RSC"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Cópia de segurança para Rackspace Cloud Files"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Cópia de segurança para SugarSync"
@@ -178,8 +178,8 @@ msgstr "Adicionar nova tarefa"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "Registos"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "API da Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "Iniciar sessão"
472
 
@@ -480,16 +480,16 @@ msgstr "Autenticação"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "Não autenticado!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "Criar conta"
495
 
@@ -499,11 +499,11 @@ msgstr "Criar conta"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "Autenticado!"
509
 
@@ -555,10 +555,10 @@ msgstr "O BackWPup terá acesso completo de leitura e gravação a toda a sua Dr
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "Definições da cópia de segurança"
564
 
@@ -577,10 +577,10 @@ msgstr "Especifique uma subpasta onde os ficheiros de arquivo de cópia de segur
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "Eliminação de ficheiros"
586
 
@@ -598,17 +598,17 @@ msgstr "Eliminação de ficheiros"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "Número de ficheiros a manter na pasta."
614
 
@@ -621,12 +621,12 @@ msgstr "Número de ficheiros a manter na pasta."
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "No eliminar ficheiros durante a sincronização com o destino!"
664
 
@@ -669,22 +669,22 @@ msgstr "%d. Tentar enviar o ficheiro da cópia de segurança para a Dropbox&#160
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr "Autenticado com Dropbox do utilizador: %s"
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s disponível na sua Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Não autenticado com Dropbox!"
690
 
@@ -697,26 +697,26 @@ msgstr "A carregar para a Dropbox&#160;&hellip;"
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "Cópia de segurança transferida para %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Os tamanhos do ficheiro local e do ficheiro carregado não correspondem."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr "Erro ao transferir cópia de segurança para %s."
722
 
@@ -745,9 +745,9 @@ msgstr ""
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
 
748
  #: inc/Pro/class-destination-email.php:16
749
  #: inc/Pro/class-destination-email.php:18
750
- #: inc/class-destination-email.php:39
751
  msgid "Email address"
752
  msgstr "Endereço de email"
753
 
@@ -760,10 +760,10 @@ msgstr ""
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
763
- #: inc/Pro/class-destination-email.php:29
764
- #: inc/Pro/class-destination-email.php:30
765
  #: inc/class-destination-email.php:52
766
  #: inc/class-destination-email.php:56
 
 
767
  msgid "Send test email"
768
  msgstr "Enviar email de teste"
769
 
@@ -835,9 +835,9 @@ msgstr "Nome do servidor SMTP"
835
  #: inc/class-destination-email.php:98
836
  #: inc/class-destination-ftp.php:31
837
  #: inc/pro/class-destination-ftp.php:21
838
- #: inc/Pro/class-destination-ftp.php:35
839
  #: inc/class-destination-email.php:124
840
  #: inc/class-destination-ftp.php:56
 
841
  msgid "Port:"
842
  msgstr "Porta:"
843
 
@@ -856,10 +856,10 @@ msgstr "Ligação segura SMTP"
856
  #: inc/class-page-settings.php:328
857
  #: inc/pro/class-jobtype-dbdump.php:157
858
  #: inc/pro/class-jobtype-dbdump.php:205
859
- #: inc/Pro/class-jobtype-dbdump.php:157
860
- #: inc/Pro/class-jobtype-dbdump.php:205
861
  #: inc/class-destination-email.php:141
862
  #: inc/class-page-settings.php:837
 
 
863
  msgid "none"
864
  msgstr "nenhuma"
865
 
@@ -983,8 +983,8 @@ msgstr "Tempo de espera para ligação FTP"
983
  #: inc/class-destination-ftp.php:87
984
  #: inc/class-page-logs.php:257
985
  #: inc/class-page-settings.php:466
986
- #: inc/class-page-logs.php:288
987
  #: inc/class-destination-ftp.php:137
 
988
  msgid "seconds"
989
  msgstr "segundos"
990
 
@@ -1139,15 +1139,15 @@ msgstr "Cópia de segurança transferida para o servidor FTP: %s"
1139
  #: inc/pro/class-destination-glacier.php:468
1140
  #: inc/pro/class-destination-rsc.php:226
1141
  #: inc/pro/class-destination-rsc.php:259
 
 
1142
  #: inc/class-destination-rsc.php:292
 
 
1143
  #: inc/Pro/class-destination-gdrive.php:905
1144
  #: inc/Pro/class-destination-glacier.php:470
1145
  #: inc/Pro/class-destination-rsc.php:228
1146
  #: inc/Pro/class-destination-rsc.php:261
1147
- #: inc/class-destination-msazure.php:275
1148
- #: inc/class-destination-s3.php:843
1149
- #: inc/class-destination-s3.php:958
1150
- #: inc/class-destination-ftp.php:673
1151
  msgid "Can not open source file for transfer."
1152
  msgstr "Não é possível abrir o ficheiro de origem para transferir."
1153
 
@@ -1197,8 +1197,8 @@ msgstr "Pasta no container"
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
1200
- #: inc/Pro/class-destination-glacier.php:96
1201
  #: inc/class-destination-s3.php:215
 
1202
  msgid "File deletion"
1203
  msgstr "Eliminação de ficheiros"
1204
 
@@ -1221,15 +1221,15 @@ msgstr "%d. Tentar enviar o ficheiro da cópia de segurança para o Microsoft Az
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
1224
- #: inc/Pro/class-destination-msazure.php:144
1225
  #: inc/class-destination-msazure.php:237
 
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "O container \"%s\" do MS Azure não existe!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
1231
- #: inc/Pro/class-destination-msazure.php:148
1232
  #: inc/class-destination-msazure.php:241
 
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "Ligado ao container \"%s\" do MS Azure."
1235
 
@@ -1241,9 +1241,9 @@ msgstr "A começar a carregar para o MS Azure&#160;&hellip;"
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
1244
- #: inc/Pro/class-destination-msazure.php:233
1245
  #: inc/class-destination-msazure.php:296
1246
  #: inc/class-destination-msazure.php:352
 
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "API do Microsoft Azure: %s"
1249
 
@@ -1262,9 +1262,9 @@ msgstr "Nome de conta em falta!"
1262
  #: inc/class-destination-msazure.php:444
1263
  #: inc/class-destination-s3.php:222
1264
  #: inc/pro/class-destination-glacier.php:166
1265
- #: inc/Pro/class-destination-glacier.php:166
1266
  #: inc/class-destination-msazure.php:448
1267
  #: inc/class-destination-s3.php:359
 
1268
  msgid "Missing access key!"
1269
  msgstr "Chave de acesso em falta!"
1270
 
@@ -1410,121 +1410,121 @@ msgstr "Seleccione um Serviço S3"
1410
 
1411
  #: inc/class-destination-s3.php:33
1412
  #: inc/pro/class-destination-s3.php:18
1413
- #: inc/Pro/class-destination-s3.php:32
1414
  #: inc/class-destination-s3.php:54
 
1415
  msgid "Amazon S3 Region"
1416
  msgstr "Região do Amazon S3"
1417
 
1418
  #: inc/class-destination-s3.php:34
1419
  #: inc/pro/class-destination-s3.php:19
1420
- #: inc/Pro/class-destination-s3.php:40
1421
  #: inc/class-destination-s3.php:1118
 
1422
  msgid "Amazon S3: US Standard"
1423
  msgstr "Amazon S3: EUA Standard"
1424
 
1425
  #: inc/class-destination-s3.php:35
1426
  #: inc/pro/class-destination-s3.php:20
1427
- #: inc/Pro/class-destination-s3.php:45
1428
  #: inc/class-destination-s3.php:1122
 
1429
  msgid "Amazon S3: US West (Northern California)"
1430
  msgstr "Amazon S3: EUA Oeste (Norte da Califórnia)"
1431
 
1432
  #: inc/class-destination-s3.php:36
1433
  #: inc/pro/class-destination-s3.php:21
1434
- #: inc/Pro/class-destination-s3.php:53
1435
  #: inc/class-destination-s3.php:1126
 
1436
  msgid "Amazon S3: US West (Oregon)"
1437
  msgstr "Amazon S3: EUA Oeste (Oregon)"
1438
 
1439
  #: inc/class-destination-s3.php:37
1440
  #: inc/pro/class-destination-s3.php:22
1441
- #: inc/Pro/class-destination-s3.php:58
1442
  #: inc/class-destination-s3.php:1130
 
1443
  msgid "Amazon S3: EU (Ireland)"
1444
  msgstr "Amazon S3: Europa (Irlanda)"
1445
 
1446
  #: inc/class-destination-s3.php:38
1447
  #: inc/pro/class-destination-s3.php:23
1448
- #: inc/Pro/class-destination-s3.php:68
1449
  #: inc/class-destination-s3.php:1138
 
1450
  msgid "Amazon S3: EU (Germany)"
1451
  msgstr "Amazon S3: Europa (Alemanha)"
1452
 
1453
  #: inc/class-destination-s3.php:39
1454
  #: inc/pro/class-destination-s3.php:24
1455
- #: inc/Pro/class-destination-s3.php:73
1456
  #: inc/class-destination-s3.php:1142
 
1457
  #, fuzzy
1458
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1459
  msgstr "Amazon S3: Ásia Pacífico (Seul)"
1460
 
1461
  #: inc/class-destination-s3.php:40
1462
  #: inc/pro/class-destination-s3.php:25
1463
- #: inc/Pro/class-destination-s3.php:78
1464
  #: inc/class-destination-s3.php:1146
 
1465
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1466
  msgstr "Amazon S3: Ásia Pacífico (Tóquio)"
1467
 
1468
  #: inc/class-destination-s3.php:41
1469
  #: inc/pro/class-destination-s3.php:26
1470
- #: inc/Pro/class-destination-s3.php:83
1471
  #: inc/class-destination-s3.php:1150
 
1472
  msgid "Amazon S3: Asia Pacific (Seoul)"
1473
  msgstr "Amazon S3: Ásia Pacífico (Seul)"
1474
 
1475
  #: inc/class-destination-s3.php:42
1476
  #: inc/pro/class-destination-s3.php:27
1477
- #: inc/Pro/class-destination-s3.php:88
1478
  #: inc/class-destination-s3.php:1154
 
1479
  msgid "Amazon S3: Asia Pacific (Singapore)"
1480
  msgstr "Amazon S3: Ásia Pacífico (Singapura)"
1481
 
1482
  #: inc/class-destination-s3.php:43
1483
  #: inc/pro/class-destination-s3.php:28
1484
- #: inc/Pro/class-destination-s3.php:93
1485
  #: inc/class-destination-s3.php:1158
 
1486
  msgid "Amazon S3: Asia Pacific (Sydney)"
1487
  msgstr "Amazon S3: Ásia Pacífico (Sidney)"
1488
 
1489
  #: inc/class-destination-s3.php:44
1490
  #: inc/pro/class-destination-s3.php:29
1491
- #: inc/Pro/class-destination-s3.php:98
1492
  #: inc/class-destination-s3.php:1162
 
1493
  msgid "Amazon S3: South America (Sao Paulo)"
1494
  msgstr "Amazon S3: América do Sul (São Paulo)"
1495
 
1496
  #: inc/class-destination-s3.php:45
1497
  #: inc/pro/class-destination-s3.php:30
1498
- #: inc/Pro/class-destination-s3.php:103
1499
  #: inc/class-destination-s3.php:1166
 
1500
  msgid "Amazon S3: China (Beijing)"
1501
  msgstr "Amazon S3: China (Pequim)"
1502
 
1503
  #: inc/class-destination-s3.php:46
1504
  #: inc/pro/class-destination-s3.php:31
1505
- #: inc/Pro/class-destination-s3.php:108
1506
  #: inc/class-destination-s3.php:1170
 
1507
  msgid "Google Storage: EU"
1508
  msgstr "Google Storage: UE"
1509
 
1510
  #: inc/class-destination-s3.php:47
1511
  #: inc/pro/class-destination-s3.php:32
1512
- #: inc/Pro/class-destination-s3.php:113
1513
  #: inc/class-destination-s3.php:1174
 
1514
  msgid "Google Storage: USA"
1515
  msgstr "Google Storage: EUA"
1516
 
1517
  #: inc/class-destination-s3.php:48
1518
  #: inc/pro/class-destination-s3.php:33
1519
- #: inc/Pro/class-destination-s3.php:118
1520
  #: inc/class-destination-s3.php:1178
 
1521
  msgid "Google Storage: Asia"
1522
  msgstr "Google Storage: Ásia"
1523
 
1524
  #: inc/class-destination-s3.php:49
1525
  #: inc/pro/class-destination-s3.php:34
1526
- #: inc/Pro/class-destination-s3.php:123
1527
  #: inc/class-destination-s3.php:1182
 
1528
  msgid "Dream Host Cloud Storage"
1529
  msgstr "Dream Host Cloud Storage"
1530
 
@@ -1540,15 +1540,15 @@ msgstr "Chaves de acesso S3"
1540
 
1541
  #: inc/class-destination-s3.php:65
1542
  #: inc/pro/class-destination-glacier.php:54
1543
- #: inc/Pro/class-destination-glacier.php:54
1544
  #: inc/class-destination-s3.php:121
 
1545
  msgid "Access Key"
1546
  msgstr "Chave de acesso"
1547
 
1548
  #: inc/class-destination-s3.php:72
1549
  #: inc/pro/class-destination-glacier.php:61
1550
- #: inc/Pro/class-destination-glacier.php:61
1551
  #: inc/class-destination-s3.php:135
 
1552
  msgid "Secret Key"
1553
  msgstr "Chave secreta"
1554
 
@@ -1616,8 +1616,8 @@ msgstr "Guardar ficheiros encriptados (AES256) no servidor."
1616
 
1617
  #: inc/class-destination-s3.php:224
1618
  #: inc/pro/class-destination-glacier.php:168
1619
- #: inc/Pro/class-destination-glacier.php:168
1620
  #: inc/class-destination-s3.php:361
 
1621
  msgid "Missing secret access key!"
1622
  msgstr "Chave de acesso secreta não encontrada!"
1623
 
@@ -1633,8 +1633,8 @@ msgstr "Bucket %1$s criado."
1633
 
1634
  #: inc/class-destination-s3.php:348
1635
  #: inc/pro/class-destination-s3.php:147
1636
- #: inc/Pro/class-destination-s3.php:285
1637
  #: inc/class-destination-s3.php:520
 
1638
  msgid " %s is not a valid bucket name."
1639
  msgstr "%s não é um nome de bucket válido."
1640
 
@@ -1644,12 +1644,12 @@ msgstr "%s não é um nome de bucket válido."
1644
  #: inc/class-destination-s3.php:610
1645
  #: inc/class-destination-s3.php:670
1646
  #: inc/pro/class-destination-s3.php:337
1647
- #: inc/Pro/class-destination-s3.php:623
1648
  #: inc/class-destination-s3.php:570
1649
  #: inc/class-destination-s3.php:868
1650
  #: inc/class-destination-s3.php:936
1651
  #: inc/class-destination-s3.php:995
1652
  #: inc/class-destination-s3.php:1006
 
1653
  msgid "S3 Service API: %s"
1654
  msgstr "API do Serviço S3: %s"
1655
 
@@ -1660,15 +1660,15 @@ msgstr "%d. A tentar enviar o ficheiro da cópia de segurança para o Serviço S
1660
 
1661
  #: inc/class-destination-s3.php:470
1662
  #: inc/pro/class-destination-s3.php:188
1663
- #: inc/Pro/class-destination-s3.php:383
1664
  #: inc/class-destination-s3.php:803
 
1665
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1666
  msgstr "Ligado ao bucket S3 \"%1$s\" em %2$s"
1667
 
1668
  #: inc/class-destination-s3.php:473
1669
  #: inc/pro/class-destination-s3.php:191
1670
- #: inc/Pro/class-destination-s3.php:391
1671
  #: inc/class-destination-s3.php:808
 
1672
  msgid "S3 Bucket \"%s\" does not exist!"
1673
  msgstr "O bucket S3 \"%s\" não existe!"
1674
 
@@ -1689,8 +1689,8 @@ msgstr "A começar a carregar para o Serviço S3&#160;&hellip;"
1689
 
1690
  #: inc/class-destination-s3.php:601
1691
  #: inc/pro/class-destination-glacier.php:444
1692
- #: inc/Pro/class-destination-glacier.php:446
1693
  #: inc/class-destination-s3.php:972
 
1694
  msgid "Backup transferred to %s."
1695
  msgstr "Cópia de segurança transferida para %s."
1696
 
@@ -1730,9 +1730,9 @@ msgstr "Endereço de email:"
1730
  #: inc/pro/class-destination-ftp.php:29
1731
  #: inc/pro/class-destination-sugarsync.php:20
1732
  #: inc/pro/class-jobtype-dbdump.php:126
1733
- #: inc/Pro/class-jobtype-dbdump.php:126
1734
  #: inc/Pro/class-destination-ftp.php:47
1735
  #: inc/Pro/class-destination-sugarsync.php:20
 
1736
  msgid "Password:"
1737
  msgstr "Senha:"
1738
 
@@ -1910,74 +1910,74 @@ msgid "BackWPup jobs helper"
1910
  msgstr "Ajudante de tarefas do BackWPup"
1911
 
1912
  #: inc/class-job.php:263
1913
- #: inc/class-job.php:269
1914
  msgid "Starting job"
1915
  msgstr "A iniciar a tarefa"
1916
 
1917
  #: inc/class-job.php:278
1918
- #: inc/class-job.php:284
1919
  msgid "Job Start"
1920
  msgstr "Início da tarefa"
1921
 
1922
  #: inc/class-job.php:298
1923
- #: inc/class-job.php:304
1924
  msgid "Creates manifest file"
1925
  msgstr "Cria ficheiro manifest"
1926
 
1927
  #: inc/class-job.php:320
1928
- #: inc/class-job.php:326
1929
  msgid "Creates archive"
1930
  msgstr "Cria ficheiro de arquivo"
1931
 
1932
  #: inc/class-job.php:360
1933
- #: inc/class-job.php:373
1934
  msgid "End of Job"
1935
  msgstr "Fim da tarefa"
1936
 
1937
  #: inc/class-job.php:377
1938
- #: inc/class-job.php:395
1939
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1940
  msgstr "Registo do BackWPup para %1$s em %2$s às %3$s"
1941
 
1942
  #: inc/class-job.php:394
1943
- #: inc/class-job.php:412
1944
  msgctxt "Plugin name; Plugin Version; plugin url"
1945
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1946
  msgstr "[INFO] %1$s %2$s; Um projecto de Inpsyde GmbH"
1947
 
1948
  #: inc/class-job.php:395
1949
- #: inc/class-job.php:413
1950
  msgctxt "WordPress Version; Blog url"
1951
  msgid "[INFO] WordPress %1$s on %2$s"
1952
  msgstr "[INFO] WordPress %1$s em %2$s"
1953
 
1954
  #: inc/class-job.php:396
1955
- #: inc/class-job.php:414
1956
  msgid "Normal"
1957
  msgstr "Normal"
1958
 
1959
  #: inc/class-job.php:399
1960
- #: inc/class-job.php:417
1961
  msgid "Debug"
1962
  msgstr "Depuração"
1963
 
1964
  #: inc/class-job.php:402
1965
- #: inc/class-job.php:420
1966
  msgid "(translated)"
1967
  msgstr "(traduzido)"
1968
 
1969
  #: inc/class-job.php:404
1970
- #: inc/class-job.php:422
1971
  msgid "[INFO] Log Level: %1$s %2$s"
1972
  msgstr "[INFO] Nível de registo: %1$s %2$s"
1973
 
1974
  #: inc/class-job.php:409
1975
- #: inc/class-job.php:427
1976
  msgid "[INFO] BackWPup job: %1$s"
1977
  msgstr "[INFO] Tarefa do BackWPup: %1$s"
1978
 
1979
  #: inc/class-job.php:412
1980
- #: inc/class-job.php:430
1981
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1982
  msgstr "[INFO] Executado pelo utilizador: %1$s (%2$d) "
1983
 
@@ -1985,151 +1985,151 @@ msgstr "[INFO] Executado pelo utilizador: %1$s (%2$d) "
1985
  #: inc/class-page-backwpup.php:323
1986
  #: inc/class-page-jobs.php:282
1987
  #: inc/class-page-jobs.php:291
1988
- #: inc/class-job.php:444
1989
  msgid "Not scheduled!"
1990
  msgstr "Não agendado!"
1991
 
1992
  #: inc/class-job.php:430
1993
  #: inc/class-job.php:440
1994
- #: inc/class-job.php:448
1995
- #: inc/class-job.php:458
1996
  msgid "[INFO] Cron: %s; Next: %s "
1997
  msgstr "[INFO] Cron: %s; Próximo: %s "
1998
 
1999
  #: inc/class-job.php:433
2000
- #: inc/class-job.php:451
2001
  msgid "[INFO] BackWPup job start with link is active"
2002
  msgstr "[INFO] Tarefa do BackWPup iniciada com ligação"
2003
 
2004
  #: inc/class-job.php:435
2005
- #: inc/class-job.php:453
2006
  msgid "[INFO] BackWPup job start with EasyCron.com"
2007
  msgstr "[INFO] Tarefa do BackWPup iniciada com o EasyCron.com"
2008
 
2009
  #: inc/class-job.php:443
2010
- #: inc/class-job.php:461
2011
  msgid "[INFO] BackWPup no automatic job start configured"
2012
  msgstr "[INFO] Tarefa do BackWPup sem início automático configurado"
2013
 
2014
  #: inc/class-job.php:447
2015
- #: inc/class-job.php:465
2016
  msgid "[INFO] BackWPup job started from wp-cron"
2017
  msgstr "[INFO] Tarefa do BackWPup iniciada com o wp-cron"
2018
 
2019
  #: inc/class-job.php:449
2020
- #: inc/class-job.php:467
2021
  msgid "[INFO] BackWPup job started manually"
2022
  msgstr "[INFO] Tarefa do BackWPup iniciada manualmente"
2023
 
2024
  #: inc/class-job.php:451
2025
- #: inc/class-job.php:469
2026
  msgid "[INFO] BackWPup job started from external url"
2027
  msgstr "[INFO] Tarefa do BackWPup iniciada com um URL externo"
2028
 
2029
  #: inc/class-job.php:453
2030
- #: inc/class-job.php:471
2031
  msgid "[INFO] BackWPup job started form commandline interface"
2032
  msgstr "[INFO] Tarefa do BackWPup iniciada com a interface da linha de comandos"
2033
 
2034
  #: inc/class-job.php:462
2035
- #: inc/class-job.php:480
2036
  msgid "[INFO] PHP ver.:"
2037
  msgstr "[INFO] Versão de PHP:"
2038
 
2039
  #: inc/class-job.php:463
2040
- #: inc/class-job.php:481
2041
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2042
  msgstr "[INFO] Tempo máximo de execução de scripts PHP é %1$d segundos"
2043
 
2044
  #: inc/class-job.php:467
2045
- #: inc/class-job.php:485
2046
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2047
  msgstr "[INFO] O tempo para reiniciar script está configurado para %1$d segundos"
2048
 
2049
  #: inc/class-job.php:470
2050
- #: inc/class-job.php:488
2051
  msgid "[INFO] MySQL ver.: %s"
2052
  msgstr "[INFO] Versão de MySQL: %s"
2053
 
2054
  #: inc/class-job.php:472
2055
- #: inc/class-job.php:490
2056
  msgid "[INFO] Web Server: %s"
2057
  msgstr "[INFO] Servidor web: %s"
2058
 
2059
  #: inc/class-job.php:476
2060
- #: inc/class-job.php:494
2061
  msgid "[INFO] curl ver.: %1$s; %2$s"
2062
  msgstr "[INFO] Versão de curl: %1$s; %2$s"
2063
 
2064
  #: inc/class-job.php:478
2065
- #: inc/class-job.php:496
2066
  msgid "[INFO] Temp folder is: %s"
2067
  msgstr "[INFO] A pasta temporária é: %s"
2068
 
2069
  #: inc/class-job.php:485
2070
- #: inc/class-job.php:503
2071
  msgid "[INFO] Logfile is: %s"
2072
  msgstr "[INFO] O ficheiro de registo é: %s"
2073
 
2074
  #: inc/class-job.php:492
2075
- #: inc/class-job.php:510
2076
  msgid "[INFO] Backup file is: %s"
2077
  msgstr "[INFO] O ficheiro de cópia de segurança é: %s"
2078
 
2079
  #: inc/class-job.php:494
2080
- #: inc/class-job.php:512
2081
  msgid "[INFO] Backup type is: %s"
2082
  msgstr "[INFO] O tipo de cópia de segurança é: %s"
2083
 
2084
  #: inc/class-job.php:502
2085
- #: inc/class-job.php:520
2086
  msgid "Could not write log file"
2087
  msgstr "Não foi possível gravar o ficheiro de registo"
2088
 
2089
  #: inc/class-job.php:514
2090
- #: inc/class-job.php:532
2091
  msgid "No destination correctly defined for backup! Please correct job settings."
2092
  msgstr "Sem destino correctamente definido para cópia de segurança! Por favor corrija as definições da tarefa."
2093
 
2094
  #: inc/class-job.php:644
2095
- #: inc/class-job.php:628
2096
  msgid "Cannot write progress to working file. Job will be aborted."
2097
  msgstr "Não é possível gravar o progresso no ficheiro em execução. A tarefa será abortada."
2098
 
2099
  #: inc/class-job.php:716
2100
  #: inc/class-page-jobs.php:786
2101
- #: inc/class-job.php:700
2102
  msgid "WARNING:"
2103
  msgstr "AVISO:"
2104
 
2105
  #: inc/class-job.php:725
2106
  #: inc/class-page-jobs.php:784
2107
- #: inc/class-job.php:709
2108
  msgid "ERROR:"
2109
  msgstr "ERRO:"
2110
 
2111
  #: inc/class-job.php:729
2112
- #: inc/class-job.php:713
2113
  msgid "DEPRECATED:"
2114
  msgstr "OBSOLETO:"
2115
 
2116
  #: inc/class-job.php:732
2117
- #: inc/class-job.php:716
2118
  msgid "STRICT NOTICE:"
2119
  msgstr "AVISO IMPORTANTE :"
2120
 
2121
  #: inc/class-job.php:737
2122
- #: inc/class-job.php:721
2123
  msgid "RECOVERABLE ERROR:"
2124
  msgstr "ERRO RECUPERÁVEL:"
2125
 
2126
  #: inc/class-job.php:985
2127
- #: inc/class-job.php:972
2128
  msgid "Aborted by user!"
2129
  msgstr "Abortado pelo utilizador!"
2130
 
2131
  #: inc/class-job.php:1019
2132
- #: inc/class-job.php:1005
2133
  msgid "One old log deleted"
2134
  msgid_plural "%d old logs deleted"
2135
  msgstr[0] "Foi eliminado um registo antigo"
@@ -2137,294 +2137,294 @@ msgstr[1] "Foram eliminados %d registos antigos"
2137
 
2138
  #: inc/class-job.php:1026
2139
  #: inc/class-page-jobs.php:784
2140
- #: inc/class-job.php:1012
2141
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2142
  msgstr "A tarefa foi concluída com erros em %s segundos. Tem de resolver os erros para uma execução correcta."
2143
 
2144
  #: inc/class-job.php:1028
2145
- #: inc/class-job.php:1014
2146
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2147
  msgstr "A tarefa foi concluída com avisos em %s segundos. Por favor resolva-os para uma execução correcta."
2148
 
2149
  #: inc/class-job.php:1030
2150
  #: inc/class-page-jobs.php:788
2151
- #: inc/class-job.php:1016
2152
  msgid "Job done in %s seconds."
2153
  msgstr "Tarefa executada em %s segundos."
2154
 
2155
  #: inc/class-job.php:1074
2156
- #: inc/class-job.php:1060
2157
  msgid "SUCCESSFUL"
2158
  msgstr "SUCESSO"
2159
 
2160
  #: inc/class-job.php:1076
2161
- #: inc/class-job.php:1062
2162
  msgid "WARNING"
2163
  msgstr "AVISO"
2164
 
2165
  #: inc/class-job.php:1079
2166
- #: inc/class-job.php:1065
2167
  msgid "ERROR"
2168
  msgstr "ERRO"
2169
 
2170
  #: inc/class-job.php:1082
2171
- #: inc/class-job.php:1068
2172
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2173
  msgstr "[%3$s] Registo do BackWPup de %1$s: %2$s"
2174
 
2175
  #: inc/class-job.php:1188
2176
- #: inc/class-job.php:1180
2177
  msgid "Restart after %1$d seconds."
2178
  msgstr "Reiniciar após %1$d segundos."
2179
 
2180
  #: inc/class-job.php:1190
2181
- #: inc/class-job.php:1182
2182
  #, fuzzy
2183
  msgid "Restart after getting signal."
2184
  msgstr "Reiniciar após %1$d segundos."
2185
 
2186
  #: inc/class-job.php:1363
2187
- #: inc/class-job.php:1357
2188
  msgid "Job restarts due to inactivity for more than 5 minutes."
2189
  msgstr "A tarefa reiniciou devido a inactividade durante mais de 5 minutos."
2190
 
2191
  #: inc/class-job.php:1461
2192
- #: inc/class-job.php:1455
2193
  msgid "Step aborted: too many attempts!"
2194
  msgstr "Passo abortado: demasiadas tentativas!"
2195
 
2196
  #: inc/class-job.php:1532
2197
- #: inc/class-job.php:1528
2198
  msgid "%d. Trying to create backup archive &hellip;"
2199
  msgstr "%d. A tentar criar o ficheiro de arquivo da cópia de segurança &hellip;"
2200
 
2201
  #: inc/class-job.php:1540
2202
- #: inc/class-job.php:1536
2203
  msgctxt "Archive compression method"
2204
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2205
  msgstr "A comprimir ficheiros como %s. Por favor tenha paciência, isto pode demorar algum tempo."
2206
 
2207
  #: inc/class-job.php:1547
2208
- #: inc/class-job.php:1544
2209
  msgid "Adding Extra files to Archive"
2210
  msgstr "A adicionar ficheiros extra ao ficheiro de arquivo"
2211
 
2212
  #: inc/class-job.php:1559
2213
  #: inc/class-job.php:1619
2214
- #: inc/class-job.php:1555
2215
- #: inc/class-job.php:1626
2216
  msgid "Cannot create backup archive correctly. Aborting creation."
2217
  msgstr "Não é possível criar o ficheiro de arquivo da cópia de segurança correctamente. A abortar a criação do ficheiro."
2218
 
2219
  #: inc/class-job.php:1575
2220
- #: inc/class-job.php:1571
2221
  msgid "Archiving Folder: %s"
2222
  msgstr "A arquivar a pasta: %s"
2223
 
2224
  #: inc/class-job.php:1629
2225
- #: inc/class-job.php:1636
2226
  msgid "Backup archive created."
2227
  msgstr "Foi criado o ficheiro de arquivo da cópia de segurança."
2228
 
2229
  #: inc/class-job.php:1643
2230
- #: inc/class-job.php:1650
2231
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2232
  msgstr "O ficheiro de arquivo da cópia de segurança será demasiado grande para operações com ficheiros nesta versão do PHP. Deve considerar dividir a cópia de segurança em múltiplas tarefas com menos ficheiros cada."
2233
 
2234
  #: inc/class-job.php:1646
2235
- #: inc/class-job.php:1653
2236
  msgid "Archive size is %s."
2237
  msgstr "O tamanho do ficheiro de arquivo é de %s."
2238
 
2239
  #: inc/class-job.php:1649
2240
- #: inc/class-job.php:1656
2241
  msgid "%1$d Files with %2$s in Archive."
2242
  msgstr "Foram arquivados %1$d ficheiros somando um total de %2$s."
2243
 
2244
  #: inc/class-job.php:1698
2245
- #: inc/class-job.php:1831
2246
  #, fuzzy
2247
  msgctxt "Folder name"
2248
  msgid "Folder %s does not exist"
2249
  msgstr "A pasta %s não existe"
2250
 
2251
  #: inc/class-job.php:1703
2252
- #: inc/class-job.php:1837
2253
  #, fuzzy
2254
  msgctxt "Folder name"
2255
  msgid "Folder %s is not readable"
2256
  msgstr "A pasta %s não é legível!"
2257
 
2258
  #: inc/class-job.php:1725
2259
- #: inc/class-job.php:1860
2260
  msgid "Link \"%s\" not following."
2261
  msgstr "Ligação \"%s\" não utilizada."
2262
 
2263
  #: inc/class-job.php:1727
2264
- #: inc/class-job.php:1862
2265
  msgid "File \"%s\" is not readable!"
2266
  msgstr "O ficheiro \"%s\" não pode ser lido!"
2267
 
2268
  #: inc/class-job.php:1731
2269
- #: inc/class-job.php:1866
2270
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2271
  msgstr "Não é possível obter o tamanho do ficheiro \"%s\". O ficheiro deve ser demasiado grande e não será adicionado à fila."
2272
 
2273
  #: inc/class-job.php:1814
2274
- #: inc/class-job.php:1949
2275
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2276
  msgstr "%d. A tentar criar um ficheiro manifest&#160;&hellip;"
2277
 
2278
  #: inc/class-job.php:1870
2279
- #: inc/class-job.php:2005
2280
  msgid "You may have noticed the manifest.json file in this archive."
2281
  msgstr "Poderá ter reparado na presença do ficheiro manifest.json neste ficheiro de arquivo."
2282
 
2283
  #: inc/class-job.php:1871
2284
- #: inc/class-job.php:2006
2285
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2286
  msgstr "O manifest.json poderá ser necessário mais tarde para restaurar a partir deste ficheiro de arquivo."
2287
 
2288
  #: inc/class-job.php:1872
2289
- #: inc/class-job.php:2007
2290
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2291
  msgstr "Por favor, deixe o ficheiro manifest.json intacto e no lugar. Caso contrário pode ignorá-lo em segurança."
2292
 
2293
  #: inc/class-job.php:1882
2294
- #: inc/class-job.php:2017
2295
  msgid "Added manifest.json file with %1$s to backup file list."
2296
  msgstr "Foi adicionado o ficheiro manifest.json com \"%1$s\" à lista de ficheiros da cópia de segurança."
2297
 
2298
  #: inc/class-job.php:1921
2299
- #: inc/class-job.php:2056
2300
  msgid "Wrong BackWPup JobID"
2301
  msgstr "ID da tarefa do BackWPup errado"
2302
 
2303
  #: inc/class-job.php:1934
2304
- #: inc/class-job.php:2069
2305
  msgid "A BackWPup job is already running"
2306
  msgstr "Já está a ser executada uma tarefa do BackWPup"
2307
 
2308
  #: inc/class-job.php:2302
2309
- #: inc/class-job.php:2482
2310
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2311
  msgid "Hangup detected on controlling terminal or death of controlling process"
2312
  msgstr ""
2313
 
2314
  #: inc/class-job.php:2306
2315
- #: inc/class-job.php:2486
2316
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2317
  msgid "Interrupt from keyboard"
2318
  msgstr ""
2319
 
2320
  #: inc/class-job.php:2310
2321
- #: inc/class-job.php:2490
2322
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2323
  msgid "Quit from keyboard"
2324
  msgstr ""
2325
 
2326
  #: inc/class-job.php:2314
2327
- #: inc/class-job.php:2494
2328
  #, fuzzy
2329
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Illegal Instruction"
2331
  msgstr "Vídeo: Introdução"
2332
 
2333
  #: inc/class-job.php:2318
2334
- #: inc/class-job.php:2498
2335
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Abort signal from abort(3)"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2322
2340
- #: inc/class-job.php:2502
2341
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Bus error (bad memory access)"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2326
2346
- #: inc/class-job.php:2506
2347
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Floating point exception"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2330
2352
- #: inc/class-job.php:2510
2353
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Invalid memory reference"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2334
2358
- #: inc/class-job.php:2514
2359
  #, fuzzy
2360
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2361
  msgid "Termination signal"
2362
  msgstr "Destinos"
2363
 
2364
  #: inc/class-job.php:2338
2365
- #: inc/class-job.php:2518
2366
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2367
  msgid "Stack fault on coprocessor"
2368
  msgstr ""
2369
 
2370
  #: inc/class-job.php:2342
2371
- #: inc/class-job.php:2522
2372
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2373
  msgid "User-defined signal 1"
2374
  msgstr ""
2375
 
2376
  #: inc/class-job.php:2346
2377
- #: inc/class-job.php:2526
2378
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2379
  msgid "User-defined signal 2"
2380
  msgstr ""
2381
 
2382
  #: inc/class-job.php:2350
2383
- #: inc/class-job.php:2530
2384
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2385
  msgid "Urgent condition on socket"
2386
  msgstr ""
2387
 
2388
  #: inc/class-job.php:2354
2389
- #: inc/class-job.php:2534
2390
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2391
  msgid "CPU time limit exceeded"
2392
  msgstr ""
2393
 
2394
  #: inc/class-job.php:2358
2395
- #: inc/class-job.php:2538
2396
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2397
  msgid "File size limit exceeded"
2398
  msgstr ""
2399
 
2400
  #: inc/class-job.php:2362
2401
- #: inc/class-job.php:2542
2402
  #, fuzzy
2403
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2404
  msgid "Power failure"
2405
  msgstr "FTP: Falha no início de sessão!"
2406
 
2407
  #: inc/class-job.php:2366
2408
- #: inc/class-job.php:2546
2409
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2410
  msgid "Bad argument to routine"
2411
  msgstr ""
2412
 
2413
  #: inc/class-job.php:2373
2414
- #: inc/class-job.php:2553
2415
  #, fuzzy
2416
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2417
  msgstr "Sinal \"%s\" enviado para o script!"
2418
 
2419
  #: inc/class-job.php:2407
2420
  #: inc/class-job.php:2420
2421
- #: inc/class-job.php:2587
2422
- #: inc/class-job.php:2600
2423
  msgid "System: %s"
2424
  msgstr "Sistema: %s"
2425
 
2426
  #: inc/class-job.php:2435
2427
- #: inc/class-job.php:2615
2428
  msgid "Exception caught in %1$s: %2$s"
2429
  msgstr "Ocorreu excepção em %1$s: %2$s"
2430
 
@@ -2724,7 +2724,7 @@ msgstr "Exportação XML"
2724
 
2725
  #: inc/class-jobtype-wpexp.php:14
2726
  #: inc/class-page-about.php:472
2727
- #: inc/class-page-about.php:474
2728
  msgid "WordPress XML export"
2729
  msgstr "Exportação do WordPress em XML"
2730
 
@@ -2957,281 +2957,274 @@ msgid "New Job"
2957
  msgstr "Nova tarefa"
2958
 
2959
  #: inc/class-page-about.php:369
2960
- #: inc/class-page-about.php:371
2961
  msgid "Welcome to BackWPup Pro"
2962
  msgstr "Bem-vindo ao BackWPup Pro"
2963
 
2964
  #: inc/class-page-about.php:370
2965
  #: inc/class-page-backwpup.php:75
2966
- #: inc/class-page-about.php:372
2967
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2968
  msgstr "Os assistentes de tarefas do BackWPup tornam mais fácil o planeamento e agendamento das suas tarefas de cópia de segurança."
2969
 
2970
- #: inc/class-page-about.php:371
2971
- #: inc/class-page-about.php:384
2972
- #: inc/class-page-about.php:373
2973
- #: inc/class-page-about.php:386
2974
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2975
- msgstr "Utilize os seus ficheiros arquivo de cópia de segurança para guardar toda a sua instalação do WordPress, incluindo a pasta <code>/wp-content/</code>. Transfira-os para um serviço de alojamento externo caso não pretenda guardar as cópias de segurança no mesmo servidor. Pode restaurar uma instalação apenas com um ficheiro de arquivo de cópia de segurança. Utilize uma ferramenta como o phpMyAdmin ou um plugin como o <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> para restaurar os ficheiros de cópia de segurança da sua base de dados."
2976
-
2977
  #: inc/class-page-about.php:372
2978
- #: inc/class-page-about.php:374
2979
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2980
  msgstr "Pronto para <a href=\"%1$s\">definir uma tarefa de cópia de segurança</a>? Pode <a href=\"%2$s\">utilizar os assistentes</a> ou planear a sua cópia de segurança em modo avançado."
2981
 
2982
  #: inc/class-page-about.php:382
2983
- #: inc/class-page-about.php:384
2984
  msgid "Welcome to BackWPup"
2985
  msgstr "Bem-vindo ao BackWPup"
2986
 
2987
  #: inc/class-page-about.php:385
2988
- #: inc/class-page-about.php:387
2989
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2990
  msgstr "Pronto para definir uma tarefa de cópia de segurança? Utilize um dos assistentes para planear o que pretende guardar."
2991
 
2992
  #: inc/class-page-about.php:398
2993
- #: inc/class-page-about.php:400
2994
  msgid "Save your database"
2995
  msgstr "Guarde a sua base de dados"
2996
 
2997
  #: inc/class-page-about.php:401
2998
- #: inc/class-page-about.php:403
2999
  msgid "Save your database regularly"
3000
  msgstr "Guarde a sua base de dados regularmente"
3001
 
3002
  #: inc/class-page-about.php:402
3003
- #: inc/class-page-about.php:404
3004
  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."
3005
  msgstr "Com o BackWPup pode agendar a cópia de segurança da base de dados para ser executada automaticamente. Com um único ficheiro de cópia de segurança pode restaurar a base de dados. Deverá <a href=\"%s\">definir uma tarefa de cópia de segurança</a>, assim nunca se esquecerá. Também tem a opção de raparar e optimizar a base de dados depois de cada cópia de segurança."
3006
 
3007
  #: inc/class-page-about.php:407
3008
  #: inc/class-page-about.php:411
3009
- #: inc/class-page-about.php:409
3010
- #: inc/class-page-about.php:413
3011
  msgid "WordPress XML Export"
3012
  msgstr "Exportação do WordPress em XML"
3013
 
3014
  #: inc/class-page-about.php:408
3015
- #: inc/class-page-about.php:410
3016
  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."
3017
  msgstr "Pode escolher adicionalmente ou exclusivamente o formato de exportação incorporado no WordPress para guardar os seus dados. Isto também funciona em cópias de segurança automatizadas, naturalmente. A vantagem é: pode importar estes ficheiros para um blog com o importador do WordPress."
3018
 
3019
  #: inc/class-page-about.php:416
3020
- #: inc/class-page-about.php:418
3021
  msgid "Save all data from the webserver"
3022
  msgstr "Guardar todos os dados do servidor web"
3023
 
3024
  #: inc/class-page-about.php:419
3025
- #: inc/class-page-about.php:421
3026
  msgid "Save all files"
3027
  msgstr "Guardar todos os ficheiros"
3028
 
3029
  #: inc/class-page-about.php:420
3030
- #: inc/class-page-about.php:422
3031
  msgid "You can backup 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."
3032
  msgstr "Pode fazer cópia de segurança de todos os seus anexos, todos os ficheiros do sistema, plugins e temas, tudo num único ficheiro. Pode <a href=\"%s\">criar uma tarefa</a> para actualizar uma cópia de segurança do seu sistema de ficheiros apenas quando alguns ficheiros forem alterados."
3033
 
3034
  #: inc/class-page-about.php:425
3035
  #: inc/class-page-about.php:429
3036
- #: inc/class-page-about.php:427
3037
- #: inc/class-page-about.php:431
3038
  msgid "Security!"
3039
  msgstr "Segurança!"
3040
 
3041
  #: inc/class-page-about.php:426
3042
- #: inc/class-page-about.php:428
3043
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3044
  msgstr "Por omissão tudo é encriptado: ligações a serviços externos, ficheiros locais e acesso às pastas."
3045
 
3046
  #: inc/class-page-about.php:434
3047
  #: inc/class-page-about.php:437
3048
- #: inc/class-page-about.php:436
3049
- #: inc/class-page-about.php:439
3050
  msgid "Cloud Support"
3051
  msgstr "Suporte de nuvem"
3052
 
3053
  #: inc/class-page-about.php:438
3054
- #: inc/class-page-about.php:440
3055
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3056
  msgstr "O BackWPup suporta múltiplos serviços de núvem em paralelo. Assim é assegurada a redundância das cópias de segurança."
3057
 
3058
  #: inc/class-page-about.php:444
3059
- #: inc/class-page-about.php:446
3060
  msgid "Features / differences between Free and Pro"
3061
  msgstr "Recursos / diferenças entre Gratuito e Pro"
3062
 
3063
  #: inc/class-page-about.php:447
3064
- #: inc/class-page-about.php:449
3065
  msgid "Features"
3066
  msgstr "Recursos"
3067
 
3068
  #: inc/class-page-about.php:448
3069
- #: inc/class-page-about.php:450
3070
  msgid "FREE"
3071
  msgstr "GRATUITO"
3072
 
3073
  #: inc/class-page-about.php:449
3074
- #: inc/class-page-about.php:451
3075
  msgid "PRO"
3076
  msgstr "PRO"
3077
 
3078
  #: inc/class-page-about.php:452
3079
- #: inc/class-page-about.php:454
3080
  msgid "Complete database backup"
3081
  msgstr "Cópia de segurança completa da base de dados"
3082
 
3083
  #: inc/class-page-about.php:457
3084
- #: inc/class-page-about.php:459
3085
  msgid "Complete file backup"
3086
  msgstr "Cópia de segurança completa dos ficheiros"
3087
 
3088
  #: inc/class-page-about.php:462
3089
- #: inc/class-page-about.php:464
3090
  msgid "Database check"
3091
  msgstr "Verificação da base de dados"
3092
 
3093
  #: inc/class-page-about.php:467
3094
- #: inc/class-page-about.php:469
3095
  msgid "Data compression"
3096
  msgstr "Compressão de dados"
3097
 
3098
  #: inc/class-page-about.php:477
3099
- #: inc/class-page-about.php:479
3100
  msgid "List of installed plugins"
3101
  msgstr "Lista de plugins instalados"
3102
 
3103
  #: inc/class-page-about.php:482
3104
- #: inc/class-page-about.php:484
3105
  msgid "Backup archives management"
3106
  msgstr "Gestão de ficheiros de arquivo de cópia de segurança"
3107
 
3108
  #: inc/class-page-about.php:487
3109
- #: inc/class-page-about.php:489
3110
  msgid "Log file management"
3111
  msgstr "Gestão de ficheiros de registo"
3112
 
3113
  #: inc/class-page-about.php:492
3114
- #: inc/class-page-about.php:494
3115
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3116
  msgstr "Iniciar tarefas com o WP-Cron, URL, sistema, administração ou WP-CLI"
3117
 
3118
  #: inc/class-page-about.php:497
3119
- #: inc/class-page-about.php:499
3120
  msgid "Log report via email"
3121
  msgstr "Relatório de registo por email"
3122
 
3123
  #: inc/class-page-about.php:502
3124
- #: inc/class-page-about.php:504
3125
  msgid "Backup to Microsoft Azure"
3126
  msgstr "Cópia de segurança para Microsoft Azure"
3127
 
3128
  #: inc/class-page-about.php:507
3129
- #: inc/class-page-about.php:509
3130
  msgid "Backup as email"
3131
  msgstr "Cópia de segurança por email"
3132
 
3133
  #: inc/class-page-about.php:512
3134
- #: inc/class-page-about.php:514
3135
  #, fuzzy
3136
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3137
  msgstr "Cópia de segurança para Serviços S3 <small>(Amazon, Google Storage, Hosteurope e outros)</small>"
3138
 
3139
  #: inc/class-page-about.php:527
3140
- #: inc/class-page-about.php:529
3141
  msgid "Backup to FTP server"
3142
  msgstr "Cópia de segurança para servidor FTP"
3143
 
3144
  #: inc/class-page-about.php:532
3145
- #: inc/class-page-about.php:534
3146
  msgid "Backup to your web space"
3147
  msgstr "Cópia de segurança para o teu serviço de alojamento"
3148
 
3149
  #: inc/class-page-about.php:542
3150
  #: inc/pro/class-pro.php:112
 
3151
  #: inc/Pro/class-pro.php:152
3152
- #: inc/class-page-about.php:544
3153
  msgid "Backup to Google Drive"
3154
  msgstr "Cópia de segurança para Google Drive"
3155
 
3156
  #: inc/class-page-about.php:547
3157
  #: inc/pro/class-pro.php:93
 
3158
  #: inc/Pro/class-pro.php:131
3159
- #: inc/class-page-about.php:549
3160
  msgid "Backup to Amazon Glacier"
3161
  msgstr "Cópia de segurança para Amazon Glacier"
3162
 
3163
  #: inc/class-page-about.php:552
3164
- #: inc/class-page-about.php:554
3165
  msgid "Custom API keys for DropBox and SugarSync"
3166
  msgstr "Chaves de API personalizadas para Dropbox e SugarSync"
3167
 
3168
  #: inc/class-page-about.php:557
3169
- #: inc/class-page-about.php:559
3170
  msgid "XML database backup as PHPMyAdmin schema"
3171
  msgstr "Cópia de segurança da base de dados em XML como estrutura do phpMyAdmin"
3172
 
3173
  #: inc/class-page-about.php:562
3174
- #: inc/class-page-about.php:564
3175
  msgid "Database backup as mysqldump per command line"
3176
  msgstr "Cópia de segurança da base de dados por mysqldump através da linha de comandos"
3177
 
3178
  #: inc/class-page-about.php:567
3179
- #: inc/class-page-about.php:569
3180
  msgid "Database backup for additional MySQL databases"
3181
  msgstr "Cópia de segurança de bases de dados MySQL adicionais"
3182
 
3183
  #: inc/class-page-about.php:572
3184
- #: inc/class-page-about.php:574
3185
  msgid "Import and export job settings as XML"
3186
  msgstr "Importar e exportar definições de tarefas em XML"
3187
 
3188
  #: inc/class-page-about.php:577
3189
- #: inc/class-page-about.php:579
3190
  msgid "Wizard for system tests"
3191
  msgstr "Assistente para testes do sistema"
3192
 
3193
  #: inc/class-page-about.php:582
3194
- #: inc/class-page-about.php:584
3195
  msgid "Wizard for scheduled backup jobs"
3196
  msgstr "Assistente para agendar tarefas de cópia de segurança"
3197
 
3198
  #: inc/class-page-about.php:587
3199
- #: inc/class-page-about.php:589
3200
  msgid "Wizard to import settings and backup jobs"
3201
  msgstr "Assistente para importar definições e tarefas de cópia de segurança"
3202
 
3203
  #: inc/class-page-about.php:592
3204
- #: inc/class-page-about.php:594
3205
  msgid "Differential backup of changed directories to Dropbox"
3206
  msgstr "Cópia de segurança diferencial de directórios alterados para a Dropbox"
3207
 
3208
  #: inc/class-page-about.php:597
3209
- #: inc/class-page-about.php:599
3210
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3211
  msgstr "Cópia de segurança diferencial de directórios alterados para o Rackspace Cloud Files"
3212
 
3213
  #: inc/class-page-about.php:602
3214
- #: inc/class-page-about.php:604
3215
  msgid "Differential backup of changed directories to S3"
3216
  msgstr "Cópia de segurança diferencial de directórios alterados para o S3"
3217
 
3218
  #: inc/class-page-about.php:607
3219
- #: inc/class-page-about.php:609
3220
  msgid "Differential backup of changed directories to MS Azure"
3221
  msgstr "Cópia de segurança diferencial de directórios alterados para o MS Azure"
3222
 
3223
  #: inc/class-page-about.php:612
3224
- #: inc/class-page-about.php:639
3225
  msgid "<strong>Premium support</strong>"
3226
  msgstr "<strong>Suporte Premium</strong>"
3227
 
3228
  #: inc/class-page-about.php:617
3229
- #: inc/class-page-about.php:644
3230
  msgid "<strong>Automatic updates</strong>"
3231
  msgstr "<strong>Actualização automática</strong>"
3232
 
3233
  #: inc/class-page-about.php:624
3234
- #: inc/class-page-about.php:651
3235
  msgid "GET PRO"
3236
  msgstr "OBTER PRO"
3237
 
@@ -3293,9 +3286,9 @@ msgstr ""
3293
  #: inc/class-page-logs.php:206
3294
  #: inc/class-page-backups.php:281
3295
  #: inc/class-page-backups.php:285
 
3296
  #: inc/class-page-settings.php:768
3297
  #: inc/class-page-settings.php:779
3298
- #: inc/class-page-logs.php:234
3299
  msgid "Download"
3300
  msgstr "Descarregar"
3301
 
@@ -3353,11 +3346,6 @@ msgctxt "Dashboard heading"
3353
  msgid "Restoring backups"
3354
  msgstr "Restauro de cópias de segurança"
3355
 
3356
- #: inc/class-page-backwpup.php:77
3357
- #: inc/class-page-backwpup.php:86
3358
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3359
- msgstr "Pode restaurar uma instalação com apenas um ficheiro de arquivo de cópia de segurança. Utilize uma ferramenta como o phpMyAdmin ou um plugin como o <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> para restaurar os ficheiros de cópia de segurança da sua base de dados."
3360
-
3361
  #: inc/class-page-backwpup.php:78
3362
  #: inc/class-page-backwpup.php:87
3363
  msgctxt "Dashboard heading"
@@ -3587,8 +3575,8 @@ msgstr "%1$s &rsaquo; Tarefa: %2$s"
3587
 
3588
  #: inc/class-page-editjob.php:328
3589
  #: inc/class-page-settings.php:117
3590
- #: inc/class-page-settings.php:214
3591
  #: inc/class-page-editjob.php:337
 
3592
  msgid "General"
3593
  msgstr "Geral"
3594
 
@@ -3622,15 +3610,15 @@ msgstr "Sub-tarefas"
3622
 
3623
  #: inc/class-page-editjob.php:391
3624
  #: inc/pro/class-wizard-job.php:254
3625
- #: inc/Pro/class-wizard-job.php:254
3626
  #: inc/class-page-editjob.php:400
 
3627
  msgid "This job is a&#160;&hellip;"
3628
  msgstr "Esta tarefa inclui&#160;&hellip;"
3629
 
3630
  #: inc/class-page-editjob.php:394
3631
  #: inc/pro/class-wizard-job.php:257
3632
- #: inc/Pro/class-wizard-job.php:257
3633
  #: inc/class-page-editjob.php:403
 
3634
  msgid "Job tasks"
3635
  msgstr "Sub-tarefas"
3636
 
@@ -3643,10 +3631,10 @@ msgstr "Criação do ficheiro de cópia de segurança"
3643
  #: inc/class-page-editjob.php:420
3644
  #: inc/pro/class-wizard-job.php:402
3645
  #: inc/pro/class-wizard-job.php:405
3646
- #: inc/Pro/class-wizard-job.php:402
3647
- #: inc/Pro/class-wizard-job.php:405
3648
  #: inc/class-page-editjob.php:426
3649
  #: inc/class-page-editjob.php:429
 
 
3650
  msgid "Backup type"
3651
  msgstr "Tipo de cópia de segurança"
3652
 
@@ -3657,8 +3645,8 @@ msgstr "Sincronizar ficheiro a ficheiro com o destino"
3657
 
3658
  #: inc/class-page-editjob.php:428
3659
  #: inc/pro/class-wizard-job.php:413
3660
- #: inc/Pro/class-wizard-job.php:413
3661
  #: inc/class-page-editjob.php:437
 
3662
  msgid "Create a backup archive"
3663
  msgstr "Cria um ficheiro de arquivo de cópia de segurança"
3664
 
@@ -3758,17 +3746,17 @@ msgstr "Formato do ficheiro de arquivo"
3758
  #: inc/class-page-editjob.php:476
3759
  #: inc/pro/class-wizard-job.php:426
3760
  #: inc/pro/class-wizard-job.php:429
3761
- #: inc/Pro/class-wizard-job.php:426
3762
- #: inc/Pro/class-wizard-job.php:429
3763
  #: inc/class-page-editjob.php:481
3764
  #: inc/class-page-editjob.php:483
 
 
3765
  msgid "Zip"
3766
  msgstr "Zip"
3767
 
3768
  #: inc/class-page-editjob.php:479
3769
  #: inc/pro/class-wizard-job.php:433
3770
- #: inc/Pro/class-wizard-job.php:433
3771
  #: inc/class-page-editjob.php:486
 
3772
  msgid "Tar"
3773
  msgstr "Tar"
3774
 
@@ -3776,10 +3764,10 @@ msgstr "Tar"
3776
  #: inc/class-page-editjob.php:483
3777
  #: inc/pro/class-wizard-job.php:437
3778
  #: inc/pro/class-wizard-job.php:440
3779
- #: inc/Pro/class-wizard-job.php:437
3780
- #: inc/Pro/class-wizard-job.php:440
3781
  #: inc/class-page-editjob.php:488
3782
  #: inc/class-page-editjob.php:490
 
 
3783
  msgid "Tar GZip"
3784
  msgstr "Tar GZip"
3785
 
@@ -3794,10 +3782,10 @@ msgstr "Desactivado devido à falta da função PHP %s."
3794
  #: inc/class-page-editjob.php:489
3795
  #: inc/pro/class-wizard-job.php:444
3796
  #: inc/pro/class-wizard-job.php:447
3797
- #: inc/Pro/class-wizard-job.php:444
3798
- #: inc/Pro/class-wizard-job.php:447
3799
  #: inc/class-page-editjob.php:494
3800
  #: inc/class-page-editjob.php:497
 
 
3801
  msgid "Tar BZip2"
3802
  msgstr "Tar BZip2"
3803
 
@@ -3925,9 +3913,9 @@ msgstr "avançado"
3925
  #: inc/class-page-editjob.php:650
3926
  #: inc/class-page-editjob.php:718
3927
  #: inc/pro/class-wizard-job.php:320
3928
- #: inc/Pro/class-wizard-job.php:320
3929
  #: inc/class-page-editjob.php:686
3930
  #: inc/class-page-editjob.php:754
 
3931
  msgid "Scheduler"
3932
  msgstr "Calendário"
3933
 
@@ -3935,121 +3923,121 @@ msgstr "Calendário"
3935
  #: inc/class-page-jobs.php:126
3936
  #: inc/class-page-logs.php:139
3937
  #: inc/pro/class-wizard-job.php:324
3938
- #: inc/Pro/class-wizard-job.php:324
3939
- #: inc/class-page-logs.php:166
3940
  #: inc/class-page-editjob.php:691
 
 
3941
  msgid "Type"
3942
  msgstr "Tipo"
3943
 
3944
  #: inc/class-page-editjob.php:660
3945
  #: inc/pro/class-wizard-job.php:330
3946
- #: inc/Pro/class-wizard-job.php:330
3947
  #: inc/class-page-editjob.php:696
 
3948
  msgid "Hour"
3949
  msgstr "Hora"
3950
 
3951
  #: inc/class-page-editjob.php:663
3952
  #: inc/pro/class-wizard-job.php:333
3953
- #: inc/Pro/class-wizard-job.php:333
3954
  #: inc/class-page-editjob.php:699
 
3955
  msgid "Minute"
3956
  msgstr "Minuto"
3957
 
3958
  #: inc/class-page-editjob.php:667
3959
  #: inc/pro/class-wizard-job.php:337
3960
- #: inc/Pro/class-wizard-job.php:337
3961
  #: inc/class-page-editjob.php:703
 
3962
  msgid "monthly"
3963
  msgstr "mensal"
3964
 
3965
  #: inc/class-page-editjob.php:669
3966
  #: inc/pro/class-wizard-job.php:339
3967
- #: inc/Pro/class-wizard-job.php:339
3968
  #: inc/class-page-editjob.php:705
 
3969
  msgid "on"
3970
  msgstr "dia"
3971
 
3972
  #: inc/class-page-editjob.php:679
3973
  #: inc/pro/class-wizard-job.php:349
3974
- #: inc/Pro/class-wizard-job.php:349
3975
  #: inc/class-page-editjob.php:715
 
3976
  msgid "weekly"
3977
  msgstr "semanal"
3978
 
3979
  #: inc/class-page-editjob.php:681
3980
  #: inc/class-page-editjob.php:788
3981
  #: inc/pro/class-wizard-job.php:351
3982
- #: inc/Pro/class-wizard-job.php:351
3983
  #: inc/class-page-editjob.php:717
3984
  #: inc/class-page-editjob.php:824
 
3985
  msgid "Sunday"
3986
  msgstr "Domingo"
3987
 
3988
  #: inc/class-page-editjob.php:682
3989
  #: inc/class-page-editjob.php:789
3990
  #: inc/pro/class-wizard-job.php:352
3991
- #: inc/Pro/class-wizard-job.php:352
3992
  #: inc/class-page-editjob.php:718
3993
  #: inc/class-page-editjob.php:825
 
3994
  msgid "Monday"
3995
  msgstr "Segunda"
3996
 
3997
  #: inc/class-page-editjob.php:683
3998
  #: inc/class-page-editjob.php:790
3999
  #: inc/pro/class-wizard-job.php:353
4000
- #: inc/Pro/class-wizard-job.php:353
4001
  #: inc/class-page-editjob.php:719
4002
  #: inc/class-page-editjob.php:826
 
4003
  msgid "Tuesday"
4004
  msgstr "Terça"
4005
 
4006
  #: inc/class-page-editjob.php:684
4007
  #: inc/class-page-editjob.php:791
4008
  #: inc/pro/class-wizard-job.php:354
4009
- #: inc/Pro/class-wizard-job.php:354
4010
  #: inc/class-page-editjob.php:720
4011
  #: inc/class-page-editjob.php:827
 
4012
  msgid "Wednesday"
4013
  msgstr "Quarta"
4014
 
4015
  #: inc/class-page-editjob.php:685
4016
  #: inc/class-page-editjob.php:792
4017
  #: inc/pro/class-wizard-job.php:355
4018
- #: inc/Pro/class-wizard-job.php:355
4019
  #: inc/class-page-editjob.php:721
4020
  #: inc/class-page-editjob.php:828
 
4021
  msgid "Thursday"
4022
  msgstr "Quinta"
4023
 
4024
  #: inc/class-page-editjob.php:686
4025
  #: inc/class-page-editjob.php:793
4026
  #: inc/pro/class-wizard-job.php:356
4027
- #: inc/Pro/class-wizard-job.php:356
4028
  #: inc/class-page-editjob.php:722
4029
  #: inc/class-page-editjob.php:829
 
4030
  msgid "Friday"
4031
  msgstr "Sexta"
4032
 
4033
  #: inc/class-page-editjob.php:687
4034
  #: inc/class-page-editjob.php:794
4035
  #: inc/pro/class-wizard-job.php:357
4036
- #: inc/Pro/class-wizard-job.php:357
4037
  #: inc/class-page-editjob.php:723
4038
  #: inc/class-page-editjob.php:830
 
4039
  msgid "Saturday"
4040
  msgstr "Sábado"
4041
 
4042
  #: inc/class-page-editjob.php:697
4043
  #: inc/pro/class-wizard-job.php:367
4044
- #: inc/Pro/class-wizard-job.php:367
4045
  #: inc/class-page-editjob.php:733
 
4046
  msgid "daily"
4047
  msgstr "diário"
4048
 
4049
  #: inc/class-page-editjob.php:707
4050
  #: inc/pro/class-wizard-job.php:377
4051
- #: inc/Pro/class-wizard-job.php:377
4052
  #: inc/class-page-editjob.php:743
 
4053
  msgid "hourly"
4054
  msgstr "horário"
4055
 
@@ -4197,8 +4185,8 @@ msgstr "Última execução"
4197
 
4198
  #: inc/class-page-jobs.php:172
4199
  #: inc/class-page-logs.php:200
4200
- #: inc/Pro/class-page-support.php:221
4201
  #: inc/class-page-logs.php:228
 
4202
  msgid "Job ID: %d"
4203
  msgstr "ID da tarefa: %d"
4204
 
@@ -5021,14 +5009,17 @@ msgstr "Ocorreram erros. Por favor corrija-os, ou o BackWPup não poderá funcio
5021
  #: inc/pro/class-wizard-job.php:17
5022
  #: inc/pro/class-wizard-jobimport.php:16
5023
  #: inc/pro/class-wizard-systemtest.php:16
5024
- #: inc/Pro/class-wizard-jobimport.php:16
5025
- #: inc/Pro/class-wizard-job.php:17
5026
- #: inc/Pro/class-wizard-systemtest.php:27
5027
  #: inc/class-admin.php:510
5028
  #: inc/class-admin.php:531
 
 
 
 
 
5029
  #: inc/class-page-settings.php:1123
5030
- #: inc/class-page-about.php:651
5031
- #: inc/class-job.php:412
 
5032
  msgid "http://backwpup.com"
5033
  msgstr "http://backwpup.com"
5034
 
@@ -5041,61 +5032,59 @@ msgstr "http://backwpup.com"
5041
  #: inc/pro/class-wizard-job.php:19
5042
  #: inc/pro/class-wizard-jobimport.php:18
5043
  #: inc/pro/class-wizard-systemtest.php:18
5044
- #: inc/Pro/class-wizard-jobimport.php:18
5045
  #: inc/Pro/class-wizard-job.php:19
 
5046
  #: inc/Pro/class-wizard-systemtest.php:29
5047
  msgid "http://inpsyde.com"
5048
  msgstr "http://inpsyde.com"
5049
 
5050
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5051
- #: inc/class-destination-ftp-downloader.php:72
5052
- #: inc/class-destination-dropbox-downloader.php:72
5053
- #: inc/class-destination-s3-downloader.php:83
5054
- msgid "Could not write data to file."
5055
  msgstr ""
5056
 
5057
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5058
- #: inc/class-destination-ftp-downloader.php:126
5059
- #: inc/class-destination-folder-downloader.php:137
5060
- #: inc/class-destination-dropbox-downloader.php:104
5061
- #: inc/class-destination-s3-downloader.php:112
5062
- msgid "File could not be opened for writing."
5063
  msgstr ""
5064
 
5065
- #: inc/Pro/class-destination-s3.php:63
5066
- #: inc/class-destination-s3.php:1134
5067
- msgid "Amazon S3: EU (London)"
5068
  msgstr ""
5069
 
5070
- #: inc/Pro/class-pro.php:285
5071
- #: inc/Pro/class-pro.php:286
5072
- #: inc/class-page-backups.php:293
5073
- #: views/pro/restore/steps/step4_top.php:2
5074
- msgid "Restore"
5075
  msgstr ""
5076
 
5077
- #: inc/class-system-tests-runner.php:77
5078
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5079
  msgstr ""
5080
 
5081
- #: inc/class-system-tests-runner.php:88
5082
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5083
  msgstr ""
5084
 
5085
- #: inc/class-system-tests-runner.php:100
5086
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5087
  msgstr ""
5088
 
5089
- #: inc/class-system-tests-runner.php:193
5090
- msgid "Yeah!"
5091
  msgstr ""
5092
 
5093
- #: inc/class-system-tests-runner.php:261
5094
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5095
  msgstr ""
5096
 
5097
- #: inc/class-destination-ftp-downloader.php:108
5098
- msgid "Cannot open FTP file for download."
 
 
 
 
5099
  msgstr ""
5100
 
5101
  #: inc/class-destination-folder-downloader.php:64
@@ -5115,10 +5104,133 @@ msgstr ""
5115
  msgid "%s is a directory not a file."
5116
  msgstr ""
5117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5118
  #: inc/class-destination-s3.php:102
5119
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5120
  msgstr ""
5121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5122
  #: inc/class-page-backups.php:408
5123
  msgid "&laquo; Go back"
5124
  msgstr ""
@@ -5161,21 +5273,35 @@ msgstr ""
5161
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5162
  msgstr ""
5163
 
5164
- #: inc/class-create-archive.php:114
5165
- msgid "Functions for bz2 compression not available."
 
5166
  msgstr ""
5167
 
5168
- #: inc/class-create-archive.php:311
5169
- msgid "File name cannot be empty."
5170
  msgstr ""
5171
 
5172
- #: inc/class-create-archive.php:741
5173
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5174
  msgstr ""
5175
 
5176
- #. translators: $1 is the filename to add into the archive.
5177
- #: inc/class-create-archive.php:996
5178
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5179
  msgstr ""
5180
 
5181
  #: inc/class-page-settings.php:39
@@ -5388,127 +5514,24 @@ msgstr ""
5388
  msgid "BackWPup maximum script execution time"
5389
  msgstr ""
5390
 
5391
- #: inc/class-download-file.php:135
5392
- msgid "Invalid file name, seems file include invalid characters."
5393
- msgstr ""
5394
-
5395
- #: inc/class-page-about.php:614
5396
- msgid "Restore from Folder"
5397
- msgstr ""
5398
-
5399
- #: inc/class-page-about.php:619
5400
- msgid "Restore from Google Drive"
5401
- msgstr ""
5402
-
5403
- #: inc/class-page-about.php:624
5404
- msgid "Restore from Amazon S3"
5405
- msgstr ""
5406
-
5407
- #: inc/class-page-about.php:629
5408
- msgid "Restore from Dropbox"
5409
- msgstr ""
5410
-
5411
- #: inc/class-page-about.php:634
5412
- msgid "Restore from FTP"
5413
- msgstr ""
5414
-
5415
- #: inc/class-destination-s3-downloader.php:76
5416
- msgid "Could not write data to file. Empty source file."
5417
- msgstr ""
5418
-
5419
- #: inc/class-job.php:332
5420
- msgid "Encrypts the archive"
5421
- msgstr ""
5422
-
5423
- #: inc/class-job.php:1689
5424
- msgid "No encryption key was provided. Aborting encryption."
5425
- msgstr ""
5426
-
5427
- #: inc/class-job.php:1696
5428
- msgid "%d. Trying to encrypt archive &hellip;"
5429
- msgstr ""
5430
-
5431
- #: inc/class-job.php:1706
5432
- msgid "Cannot open the archive for reading. Aborting encryption."
5433
- msgstr ""
5434
-
5435
- #: inc/class-job.php:1712
5436
- msgid "Cannot write the encrypted archive. Aborting encryption."
5437
- msgstr ""
5438
-
5439
- #: inc/class-job.php:1769
5440
- msgid "Encrypted %s of data."
5441
- msgstr ""
5442
-
5443
- #: inc/class-job.php:1773
5444
- msgid "Unable to delete unencrypted archive."
5445
- msgstr ""
5446
-
5447
- #: inc/class-job.php:1777
5448
- msgid "Unable to rename encrypted archive."
5449
- msgstr ""
5450
-
5451
- #: inc/class-job.php:1782
5452
- msgid "Archive has been successfully encrypted."
5453
- msgstr ""
5454
-
5455
- #: inc/class-job.php:2451
5456
- msgid "exec command is not active."
5457
- msgstr ""
5458
-
5459
- #: inc/class-job.php:2456
5460
- msgid "mysqldump binary not found."
5461
- msgstr ""
5462
-
5463
- #: inc/class-page-editjob.php:448
5464
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5465
- msgstr ""
5466
-
5467
- #: inc/class-page-editjob.php:452
5468
- msgid "Preview: "
5469
- msgstr ""
5470
-
5471
- #: inc/class-page-editjob.php:484
5472
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5473
- msgstr ""
5474
-
5475
- #: inc/class-page-editjob.php:495
5476
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5477
- msgstr ""
5478
-
5479
- #: inc/class-page-editjob.php:506
5480
- #: inc/class-page-editjob.php:511
5481
- #: inc/class-page-editjob.php:520
5482
- msgid "Encrypt Archive"
5483
- msgstr ""
5484
-
5485
- #: inc/class-page-editjob.php:524
5486
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5487
- msgstr ""
5488
-
5489
- #: inc/class-decrypter.php:56
5490
- msgid "Cannot open the archive for reading."
5491
- msgstr ""
5492
-
5493
- #: inc/class-decrypter.php:82
5494
- msgid "Cannot write the encrypted archive."
5495
  msgstr ""
5496
 
5497
- #: inc/class-decrypter.php:162
5498
- msgid "Private key invalid."
5499
  msgstr ""
5500
 
5501
- #: inc/class-destination-ftp.php:321
5502
- msgid "Could not log in to FTP server."
5503
  msgstr ""
5504
 
5505
- #: inc/class-destination-ftp.php:735
5506
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5507
  msgstr ""
5508
 
5509
- #: backwpup.php:573
5510
- #: vendor_dist/backwpup.php:573
5511
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5512
  msgstr ""
5513
 
5514
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Pasta"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Cópia de segurança para Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Serviço S3"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Cópia de segurança para Rackspace Cloud Files"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Cópia de segurança para SugarSync"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "Registos"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "API da Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "Iniciar sessão"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "Não autenticado!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "Criar conta"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "Autenticado!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "Definições da cópia de segurança"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "Eliminação de ficheiros"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "Número de ficheiros a manter na pasta."
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "No eliminar ficheiros durante a sincronização com o destino!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr "Autenticado com Dropbox do utilizador: %s"
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s disponível na sua Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Não autenticado com Dropbox!"
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "Cópia de segurança transferida para %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Os tamanhos do ficheiro local e do ficheiro carregado não correspondem."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr "Erro ao transferir cópia de segurança para %s."
722
 
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
748
+ #: inc/class-destination-email.php:39
749
  #: inc/Pro/class-destination-email.php:16
750
  #: inc/Pro/class-destination-email.php:18
 
751
  msgid "Email address"
752
  msgstr "Endereço de email"
753
 
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
 
 
763
  #: inc/class-destination-email.php:52
764
  #: inc/class-destination-email.php:56
765
+ #: inc/Pro/class-destination-email.php:29
766
+ #: inc/Pro/class-destination-email.php:30
767
  msgid "Send test email"
768
  msgstr "Enviar email de teste"
769
 
835
  #: inc/class-destination-email.php:98
836
  #: inc/class-destination-ftp.php:31
837
  #: inc/pro/class-destination-ftp.php:21
 
838
  #: inc/class-destination-email.php:124
839
  #: inc/class-destination-ftp.php:56
840
+ #: inc/Pro/class-destination-ftp.php:35
841
  msgid "Port:"
842
  msgstr "Porta:"
843
 
856
  #: inc/class-page-settings.php:328
857
  #: inc/pro/class-jobtype-dbdump.php:157
858
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
859
  #: inc/class-destination-email.php:141
860
  #: inc/class-page-settings.php:837
861
+ #: inc/Pro/class-jobtype-dbdump.php:157
862
+ #: inc/Pro/class-jobtype-dbdump.php:205
863
  msgid "none"
864
  msgstr "nenhuma"
865
 
983
  #: inc/class-destination-ftp.php:87
984
  #: inc/class-page-logs.php:257
985
  #: inc/class-page-settings.php:466
 
986
  #: inc/class-destination-ftp.php:137
987
+ #: inc/class-page-logs.php:288
988
  msgid "seconds"
989
  msgstr "segundos"
990
 
1139
  #: inc/pro/class-destination-glacier.php:468
1140
  #: inc/pro/class-destination-rsc.php:226
1141
  #: inc/pro/class-destination-rsc.php:259
1142
+ #: inc/class-destination-ftp.php:673
1143
+ #: inc/class-destination-msazure.php:275
1144
  #: inc/class-destination-rsc.php:292
1145
+ #: inc/class-destination-s3.php:843
1146
+ #: inc/class-destination-s3.php:958
1147
  #: inc/Pro/class-destination-gdrive.php:905
1148
  #: inc/Pro/class-destination-glacier.php:470
1149
  #: inc/Pro/class-destination-rsc.php:228
1150
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1151
  msgid "Can not open source file for transfer."
1152
  msgstr "Não é possível abrir o ficheiro de origem para transferir."
1153
 
1197
  #: inc/class-destination-rsc.php:105
1198
  #: inc/class-destination-s3.php:114
1199
  #: inc/pro/class-destination-glacier.php:96
 
1200
  #: inc/class-destination-s3.php:215
1201
+ #: inc/Pro/class-destination-glacier.php:96
1202
  msgid "File deletion"
1203
  msgstr "Eliminação de ficheiros"
1204
 
1221
 
1222
  #: inc/class-destination-msazure.php:233
1223
  #: inc/pro/class-destination-msazure.php:144
 
1224
  #: inc/class-destination-msazure.php:237
1225
+ #: inc/Pro/class-destination-msazure.php:144
1226
  msgid "MS Azure container \"%s\" does not exist!"
1227
  msgstr "O container \"%s\" do MS Azure não existe!"
1228
 
1229
  #: inc/class-destination-msazure.php:237
1230
  #: inc/pro/class-destination-msazure.php:148
 
1231
  #: inc/class-destination-msazure.php:241
1232
+ #: inc/Pro/class-destination-msazure.php:148
1233
  msgid "Connected to MS Azure container \"%s\"."
1234
  msgstr "Ligado ao container \"%s\" do MS Azure."
1235
 
1241
  #: inc/class-destination-msazure.php:292
1242
  #: inc/class-destination-msazure.php:348
1243
  #: inc/pro/class-destination-msazure.php:233
 
1244
  #: inc/class-destination-msazure.php:296
1245
  #: inc/class-destination-msazure.php:352
1246
+ #: inc/Pro/class-destination-msazure.php:233
1247
  msgid "Microsoft Azure API: %s"
1248
  msgstr "API do Microsoft Azure: %s"
1249
 
1262
  #: inc/class-destination-msazure.php:444
1263
  #: inc/class-destination-s3.php:222
1264
  #: inc/pro/class-destination-glacier.php:166
 
1265
  #: inc/class-destination-msazure.php:448
1266
  #: inc/class-destination-s3.php:359
1267
+ #: inc/Pro/class-destination-glacier.php:166
1268
  msgid "Missing access key!"
1269
  msgstr "Chave de acesso em falta!"
1270
 
1410
 
1411
  #: inc/class-destination-s3.php:33
1412
  #: inc/pro/class-destination-s3.php:18
 
1413
  #: inc/class-destination-s3.php:54
1414
+ #: inc/Pro/class-destination-s3.php:32
1415
  msgid "Amazon S3 Region"
1416
  msgstr "Região do Amazon S3"
1417
 
1418
  #: inc/class-destination-s3.php:34
1419
  #: inc/pro/class-destination-s3.php:19
 
1420
  #: inc/class-destination-s3.php:1118
1421
+ #: inc/Pro/class-destination-s3.php:40
1422
  msgid "Amazon S3: US Standard"
1423
  msgstr "Amazon S3: EUA Standard"
1424
 
1425
  #: inc/class-destination-s3.php:35
1426
  #: inc/pro/class-destination-s3.php:20
 
1427
  #: inc/class-destination-s3.php:1122
1428
+ #: inc/Pro/class-destination-s3.php:45
1429
  msgid "Amazon S3: US West (Northern California)"
1430
  msgstr "Amazon S3: EUA Oeste (Norte da Califórnia)"
1431
 
1432
  #: inc/class-destination-s3.php:36
1433
  #: inc/pro/class-destination-s3.php:21
 
1434
  #: inc/class-destination-s3.php:1126
1435
+ #: inc/Pro/class-destination-s3.php:53
1436
  msgid "Amazon S3: US West (Oregon)"
1437
  msgstr "Amazon S3: EUA Oeste (Oregon)"
1438
 
1439
  #: inc/class-destination-s3.php:37
1440
  #: inc/pro/class-destination-s3.php:22
 
1441
  #: inc/class-destination-s3.php:1130
1442
+ #: inc/Pro/class-destination-s3.php:58
1443
  msgid "Amazon S3: EU (Ireland)"
1444
  msgstr "Amazon S3: Europa (Irlanda)"
1445
 
1446
  #: inc/class-destination-s3.php:38
1447
  #: inc/pro/class-destination-s3.php:23
 
1448
  #: inc/class-destination-s3.php:1138
1449
+ #: inc/Pro/class-destination-s3.php:68
1450
  msgid "Amazon S3: EU (Germany)"
1451
  msgstr "Amazon S3: Europa (Alemanha)"
1452
 
1453
  #: inc/class-destination-s3.php:39
1454
  #: inc/pro/class-destination-s3.php:24
 
1455
  #: inc/class-destination-s3.php:1142
1456
+ #: inc/Pro/class-destination-s3.php:73
1457
  #, fuzzy
1458
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1459
  msgstr "Amazon S3: Ásia Pacífico (Seul)"
1460
 
1461
  #: inc/class-destination-s3.php:40
1462
  #: inc/pro/class-destination-s3.php:25
 
1463
  #: inc/class-destination-s3.php:1146
1464
+ #: inc/Pro/class-destination-s3.php:78
1465
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1466
  msgstr "Amazon S3: Ásia Pacífico (Tóquio)"
1467
 
1468
  #: inc/class-destination-s3.php:41
1469
  #: inc/pro/class-destination-s3.php:26
 
1470
  #: inc/class-destination-s3.php:1150
1471
+ #: inc/Pro/class-destination-s3.php:83
1472
  msgid "Amazon S3: Asia Pacific (Seoul)"
1473
  msgstr "Amazon S3: Ásia Pacífico (Seul)"
1474
 
1475
  #: inc/class-destination-s3.php:42
1476
  #: inc/pro/class-destination-s3.php:27
 
1477
  #: inc/class-destination-s3.php:1154
1478
+ #: inc/Pro/class-destination-s3.php:88
1479
  msgid "Amazon S3: Asia Pacific (Singapore)"
1480
  msgstr "Amazon S3: Ásia Pacífico (Singapura)"
1481
 
1482
  #: inc/class-destination-s3.php:43
1483
  #: inc/pro/class-destination-s3.php:28
 
1484
  #: inc/class-destination-s3.php:1158
1485
+ #: inc/Pro/class-destination-s3.php:93
1486
  msgid "Amazon S3: Asia Pacific (Sydney)"
1487
  msgstr "Amazon S3: Ásia Pacífico (Sidney)"
1488
 
1489
  #: inc/class-destination-s3.php:44
1490
  #: inc/pro/class-destination-s3.php:29
 
1491
  #: inc/class-destination-s3.php:1162
1492
+ #: inc/Pro/class-destination-s3.php:98
1493
  msgid "Amazon S3: South America (Sao Paulo)"
1494
  msgstr "Amazon S3: América do Sul (São Paulo)"
1495
 
1496
  #: inc/class-destination-s3.php:45
1497
  #: inc/pro/class-destination-s3.php:30
 
1498
  #: inc/class-destination-s3.php:1166
1499
+ #: inc/Pro/class-destination-s3.php:103
1500
  msgid "Amazon S3: China (Beijing)"
1501
  msgstr "Amazon S3: China (Pequim)"
1502
 
1503
  #: inc/class-destination-s3.php:46
1504
  #: inc/pro/class-destination-s3.php:31
 
1505
  #: inc/class-destination-s3.php:1170
1506
+ #: inc/Pro/class-destination-s3.php:108
1507
  msgid "Google Storage: EU"
1508
  msgstr "Google Storage: UE"
1509
 
1510
  #: inc/class-destination-s3.php:47
1511
  #: inc/pro/class-destination-s3.php:32
 
1512
  #: inc/class-destination-s3.php:1174
1513
+ #: inc/Pro/class-destination-s3.php:113
1514
  msgid "Google Storage: USA"
1515
  msgstr "Google Storage: EUA"
1516
 
1517
  #: inc/class-destination-s3.php:48
1518
  #: inc/pro/class-destination-s3.php:33
 
1519
  #: inc/class-destination-s3.php:1178
1520
+ #: inc/Pro/class-destination-s3.php:118
1521
  msgid "Google Storage: Asia"
1522
  msgstr "Google Storage: Ásia"
1523
 
1524
  #: inc/class-destination-s3.php:49
1525
  #: inc/pro/class-destination-s3.php:34
 
1526
  #: inc/class-destination-s3.php:1182
1527
+ #: inc/Pro/class-destination-s3.php:123
1528
  msgid "Dream Host Cloud Storage"
1529
  msgstr "Dream Host Cloud Storage"
1530
 
1540
 
1541
  #: inc/class-destination-s3.php:65
1542
  #: inc/pro/class-destination-glacier.php:54
 
1543
  #: inc/class-destination-s3.php:121
1544
+ #: inc/Pro/class-destination-glacier.php:54
1545
  msgid "Access Key"
1546
  msgstr "Chave de acesso"
1547
 
1548
  #: inc/class-destination-s3.php:72
1549
  #: inc/pro/class-destination-glacier.php:61
 
1550
  #: inc/class-destination-s3.php:135
1551
+ #: inc/Pro/class-destination-glacier.php:61
1552
  msgid "Secret Key"
1553
  msgstr "Chave secreta"
1554
 
1616
 
1617
  #: inc/class-destination-s3.php:224
1618
  #: inc/pro/class-destination-glacier.php:168
 
1619
  #: inc/class-destination-s3.php:361
1620
+ #: inc/Pro/class-destination-glacier.php:168
1621
  msgid "Missing secret access key!"
1622
  msgstr "Chave de acesso secreta não encontrada!"
1623
 
1633
 
1634
  #: inc/class-destination-s3.php:348
1635
  #: inc/pro/class-destination-s3.php:147
 
1636
  #: inc/class-destination-s3.php:520
1637
+ #: inc/Pro/class-destination-s3.php:285
1638
  msgid " %s is not a valid bucket name."
1639
  msgstr "%s não é um nome de bucket válido."
1640
 
1644
  #: inc/class-destination-s3.php:610
1645
  #: inc/class-destination-s3.php:670
1646
  #: inc/pro/class-destination-s3.php:337
 
1647
  #: inc/class-destination-s3.php:570
1648
  #: inc/class-destination-s3.php:868
1649
  #: inc/class-destination-s3.php:936
1650
  #: inc/class-destination-s3.php:995
1651
  #: inc/class-destination-s3.php:1006
1652
+ #: inc/Pro/class-destination-s3.php:623
1653
  msgid "S3 Service API: %s"
1654
  msgstr "API do Serviço S3: %s"
1655
 
1660
 
1661
  #: inc/class-destination-s3.php:470
1662
  #: inc/pro/class-destination-s3.php:188
 
1663
  #: inc/class-destination-s3.php:803
1664
+ #: inc/Pro/class-destination-s3.php:383
1665
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1666
  msgstr "Ligado ao bucket S3 \"%1$s\" em %2$s"
1667
 
1668
  #: inc/class-destination-s3.php:473
1669
  #: inc/pro/class-destination-s3.php:191
 
1670
  #: inc/class-destination-s3.php:808
1671
+ #: inc/Pro/class-destination-s3.php:391
1672
  msgid "S3 Bucket \"%s\" does not exist!"
1673
  msgstr "O bucket S3 \"%s\" não existe!"
1674
 
1689
 
1690
  #: inc/class-destination-s3.php:601
1691
  #: inc/pro/class-destination-glacier.php:444
 
1692
  #: inc/class-destination-s3.php:972
1693
+ #: inc/Pro/class-destination-glacier.php:446
1694
  msgid "Backup transferred to %s."
1695
  msgstr "Cópia de segurança transferida para %s."
1696
 
1730
  #: inc/pro/class-destination-ftp.php:29
1731
  #: inc/pro/class-destination-sugarsync.php:20
1732
  #: inc/pro/class-jobtype-dbdump.php:126
 
1733
  #: inc/Pro/class-destination-ftp.php:47
1734
  #: inc/Pro/class-destination-sugarsync.php:20
1735
+ #: inc/Pro/class-jobtype-dbdump.php:126
1736
  msgid "Password:"
1737
  msgstr "Senha:"
1738
 
1910
  msgstr "Ajudante de tarefas do BackWPup"
1911
 
1912
  #: inc/class-job.php:263
1913
+ #: inc/class-job.php:297
1914
  msgid "Starting job"
1915
  msgstr "A iniciar a tarefa"
1916
 
1917
  #: inc/class-job.php:278
1918
+ #: inc/class-job.php:314
1919
  msgid "Job Start"
1920
  msgstr "Início da tarefa"
1921
 
1922
  #: inc/class-job.php:298
1923
+ #: inc/class-job.php:334
1924
  msgid "Creates manifest file"
1925
  msgstr "Cria ficheiro manifest"
1926
 
1927
  #: inc/class-job.php:320
1928
+ #: inc/class-job.php:356
1929
  msgid "Creates archive"
1930
  msgstr "Cria ficheiro de arquivo"
1931
 
1932
  #: inc/class-job.php:360
1933
+ #: inc/class-job.php:403
1934
  msgid "End of Job"
1935
  msgstr "Fim da tarefa"
1936
 
1937
  #: inc/class-job.php:377
1938
+ #: inc/class-job.php:428
1939
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1940
  msgstr "Registo do BackWPup para %1$s em %2$s às %3$s"
1941
 
1942
  #: inc/class-job.php:394
1943
+ #: inc/class-job.php:456
1944
  msgctxt "Plugin name; Plugin Version; plugin url"
1945
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1946
  msgstr "[INFO] %1$s %2$s; Um projecto de Inpsyde GmbH"
1947
 
1948
  #: inc/class-job.php:395
1949
+ #: inc/class-job.php:462
1950
  msgctxt "WordPress Version; Blog url"
1951
  msgid "[INFO] WordPress %1$s on %2$s"
1952
  msgstr "[INFO] WordPress %1$s em %2$s"
1953
 
1954
  #: inc/class-job.php:396
1955
+ #: inc/class-job.php:465
1956
  msgid "Normal"
1957
  msgstr "Normal"
1958
 
1959
  #: inc/class-job.php:399
1960
+ #: inc/class-job.php:468
1961
  msgid "Debug"
1962
  msgstr "Depuração"
1963
 
1964
  #: inc/class-job.php:402
1965
+ #: inc/class-job.php:471
1966
  msgid "(translated)"
1967
  msgstr "(traduzido)"
1968
 
1969
  #: inc/class-job.php:404
1970
+ #: inc/class-job.php:474
1971
  msgid "[INFO] Log Level: %1$s %2$s"
1972
  msgstr "[INFO] Nível de registo: %1$s %2$s"
1973
 
1974
  #: inc/class-job.php:409
1975
+ #: inc/class-job.php:480
1976
  msgid "[INFO] BackWPup job: %1$s"
1977
  msgstr "[INFO] Tarefa do BackWPup: %1$s"
1978
 
1979
  #: inc/class-job.php:412
1980
+ #: inc/class-job.php:484
1981
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1982
  msgstr "[INFO] Executado pelo utilizador: %1$s (%2$d) "
1983
 
1985
  #: inc/class-page-backwpup.php:323
1986
  #: inc/class-page-jobs.php:282
1987
  #: inc/class-page-jobs.php:291
1988
+ #: inc/class-job.php:500
1989
  msgid "Not scheduled!"
1990
  msgstr "Não agendado!"
1991
 
1992
  #: inc/class-job.php:430
1993
  #: inc/class-job.php:440
1994
+ #: inc/class-job.php:507
1995
+ #: inc/class-job.php:519
1996
  msgid "[INFO] Cron: %s; Next: %s "
1997
  msgstr "[INFO] Cron: %s; Próximo: %s "
1998
 
1999
  #: inc/class-job.php:433
2000
+ #: inc/class-job.php:511
2001
  msgid "[INFO] BackWPup job start with link is active"
2002
  msgstr "[INFO] Tarefa do BackWPup iniciada com ligação"
2003
 
2004
  #: inc/class-job.php:435
2005
+ #: inc/class-job.php:513
2006
  msgid "[INFO] BackWPup job start with EasyCron.com"
2007
  msgstr "[INFO] Tarefa do BackWPup iniciada com o EasyCron.com"
2008
 
2009
  #: inc/class-job.php:443
2010
+ #: inc/class-job.php:523
2011
  msgid "[INFO] BackWPup no automatic job start configured"
2012
  msgstr "[INFO] Tarefa do BackWPup sem início automático configurado"
2013
 
2014
  #: inc/class-job.php:447
2015
+ #: inc/class-job.php:527
2016
  msgid "[INFO] BackWPup job started from wp-cron"
2017
  msgstr "[INFO] Tarefa do BackWPup iniciada com o wp-cron"
2018
 
2019
  #: inc/class-job.php:449
2020
+ #: inc/class-job.php:529
2021
  msgid "[INFO] BackWPup job started manually"
2022
  msgstr "[INFO] Tarefa do BackWPup iniciada manualmente"
2023
 
2024
  #: inc/class-job.php:451
2025
+ #: inc/class-job.php:531
2026
  msgid "[INFO] BackWPup job started from external url"
2027
  msgstr "[INFO] Tarefa do BackWPup iniciada com um URL externo"
2028
 
2029
  #: inc/class-job.php:453
2030
+ #: inc/class-job.php:533
2031
  msgid "[INFO] BackWPup job started form commandline interface"
2032
  msgstr "[INFO] Tarefa do BackWPup iniciada com a interface da linha de comandos"
2033
 
2034
  #: inc/class-job.php:462
2035
+ #: inc/class-job.php:544
2036
  msgid "[INFO] PHP ver.:"
2037
  msgstr "[INFO] Versão de PHP:"
2038
 
2039
  #: inc/class-job.php:463
2040
+ #: inc/class-job.php:548
2041
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2042
  msgstr "[INFO] Tempo máximo de execução de scripts PHP é %1$d segundos"
2043
 
2044
  #: inc/class-job.php:467
2045
+ #: inc/class-job.php:555
2046
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2047
  msgstr "[INFO] O tempo para reiniciar script está configurado para %1$d segundos"
2048
 
2049
  #: inc/class-job.php:470
2050
+ #: inc/class-job.php:561
2051
  msgid "[INFO] MySQL ver.: %s"
2052
  msgstr "[INFO] Versão de MySQL: %s"
2053
 
2054
  #: inc/class-job.php:472
2055
+ #: inc/class-job.php:565
2056
  msgid "[INFO] Web Server: %s"
2057
  msgstr "[INFO] Servidor web: %s"
2058
 
2059
  #: inc/class-job.php:476
2060
+ #: inc/class-job.php:571
2061
  msgid "[INFO] curl ver.: %1$s; %2$s"
2062
  msgstr "[INFO] Versão de curl: %1$s; %2$s"
2063
 
2064
  #: inc/class-job.php:478
2065
+ #: inc/class-job.php:576
2066
  msgid "[INFO] Temp folder is: %s"
2067
  msgstr "[INFO] A pasta temporária é: %s"
2068
 
2069
  #: inc/class-job.php:485
2070
+ #: inc/class-job.php:584
2071
  msgid "[INFO] Logfile is: %s"
2072
  msgstr "[INFO] O ficheiro de registo é: %s"
2073
 
2074
  #: inc/class-job.php:492
2075
+ #: inc/class-job.php:591
2076
  msgid "[INFO] Backup file is: %s"
2077
  msgstr "[INFO] O ficheiro de cópia de segurança é: %s"
2078
 
2079
  #: inc/class-job.php:494
2080
+ #: inc/class-job.php:594
2081
  msgid "[INFO] Backup type is: %s"
2082
  msgstr "[INFO] O tipo de cópia de segurança é: %s"
2083
 
2084
  #: inc/class-job.php:502
2085
+ #: inc/class-job.php:603
2086
  msgid "Could not write log file"
2087
  msgstr "Não foi possível gravar o ficheiro de registo"
2088
 
2089
  #: inc/class-job.php:514
2090
+ #: inc/class-job.php:616
2091
  msgid "No destination correctly defined for backup! Please correct job settings."
2092
  msgstr "Sem destino correctamente definido para cópia de segurança! Por favor corrija as definições da tarefa."
2093
 
2094
  #: inc/class-job.php:644
2095
+ #: inc/class-job.php:718
2096
  msgid "Cannot write progress to working file. Job will be aborted."
2097
  msgstr "Não é possível gravar o progresso no ficheiro em execução. A tarefa será abortada."
2098
 
2099
  #: inc/class-job.php:716
2100
  #: inc/class-page-jobs.php:786
2101
+ #: inc/class-job.php:793
2102
  msgid "WARNING:"
2103
  msgstr "AVISO:"
2104
 
2105
  #: inc/class-job.php:725
2106
  #: inc/class-page-jobs.php:784
2107
+ #: inc/class-job.php:802
2108
  msgid "ERROR:"
2109
  msgstr "ERRO:"
2110
 
2111
  #: inc/class-job.php:729
2112
+ #: inc/class-job.php:806
2113
  msgid "DEPRECATED:"
2114
  msgstr "OBSOLETO:"
2115
 
2116
  #: inc/class-job.php:732
2117
+ #: inc/class-job.php:809
2118
  msgid "STRICT NOTICE:"
2119
  msgstr "AVISO IMPORTANTE :"
2120
 
2121
  #: inc/class-job.php:737
2122
+ #: inc/class-job.php:814
2123
  msgid "RECOVERABLE ERROR:"
2124
  msgstr "ERRO RECUPERÁVEL:"
2125
 
2126
  #: inc/class-job.php:985
2127
+ #: inc/class-job.php:1091
2128
  msgid "Aborted by user!"
2129
  msgstr "Abortado pelo utilizador!"
2130
 
2131
  #: inc/class-job.php:1019
2132
+ #: inc/class-job.php:1129
2133
  msgid "One old log deleted"
2134
  msgid_plural "%d old logs deleted"
2135
  msgstr[0] "Foi eliminado um registo antigo"
2137
 
2138
  #: inc/class-job.php:1026
2139
  #: inc/class-page-jobs.php:784
2140
+ #: inc/class-job.php:1141
2141
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2142
  msgstr "A tarefa foi concluída com erros em %s segundos. Tem de resolver os erros para uma execução correcta."
2143
 
2144
  #: inc/class-job.php:1028
2145
+ #: inc/class-job.php:1150
2146
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2147
  msgstr "A tarefa foi concluída com avisos em %s segundos. Por favor resolva-os para uma execução correcta."
2148
 
2149
  #: inc/class-job.php:1030
2150
  #: inc/class-page-jobs.php:788
2151
+ #: inc/class-job.php:1158
2152
  msgid "Job done in %s seconds."
2153
  msgstr "Tarefa executada em %s segundos."
2154
 
2155
  #: inc/class-job.php:1074
2156
+ #: inc/class-job.php:1212
2157
  msgid "SUCCESSFUL"
2158
  msgstr "SUCESSO"
2159
 
2160
  #: inc/class-job.php:1076
2161
+ #: inc/class-job.php:1214
2162
  msgid "WARNING"
2163
  msgstr "AVISO"
2164
 
2165
  #: inc/class-job.php:1079
2166
+ #: inc/class-job.php:1217
2167
  msgid "ERROR"
2168
  msgstr "ERRO"
2169
 
2170
  #: inc/class-job.php:1082
2171
+ #: inc/class-job.php:1221
2172
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2173
  msgstr "[%3$s] Registo do BackWPup de %1$s: %2$s"
2174
 
2175
  #: inc/class-job.php:1188
2176
+ #: inc/class-job.php:1341
2177
  msgid "Restart after %1$d seconds."
2178
  msgstr "Reiniciar após %1$d segundos."
2179
 
2180
  #: inc/class-job.php:1190
2181
+ #: inc/class-job.php:1343
2182
  #, fuzzy
2183
  msgid "Restart after getting signal."
2184
  msgstr "Reiniciar após %1$d segundos."
2185
 
2186
  #: inc/class-job.php:1363
2187
+ #: inc/class-job.php:1534
2188
  msgid "Job restarts due to inactivity for more than 5 minutes."
2189
  msgstr "A tarefa reiniciou devido a inactividade durante mais de 5 minutos."
2190
 
2191
  #: inc/class-job.php:1461
2192
+ #: inc/class-job.php:1636
2193
  msgid "Step aborted: too many attempts!"
2194
  msgstr "Passo abortado: demasiadas tentativas!"
2195
 
2196
  #: inc/class-job.php:1532
2197
+ #: inc/class-job.php:1716
2198
  msgid "%d. Trying to create backup archive &hellip;"
2199
  msgstr "%d. A tentar criar o ficheiro de arquivo da cópia de segurança &hellip;"
2200
 
2201
  #: inc/class-job.php:1540
2202
+ #: inc/class-job.php:1729
2203
  msgctxt "Archive compression method"
2204
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2205
  msgstr "A comprimir ficheiros como %s. Por favor tenha paciência, isto pode demorar algum tempo."
2206
 
2207
  #: inc/class-job.php:1547
2208
+ #: inc/class-job.php:1742
2209
  msgid "Adding Extra files to Archive"
2210
  msgstr "A adicionar ficheiros extra ao ficheiro de arquivo"
2211
 
2212
  #: inc/class-job.php:1559
2213
  #: inc/class-job.php:1619
2214
+ #: inc/class-job.php:1754
2215
+ #: inc/class-job.php:1823
2216
  msgid "Cannot create backup archive correctly. Aborting creation."
2217
  msgstr "Não é possível criar o ficheiro de arquivo da cópia de segurança correctamente. A abortar a criação do ficheiro."
2218
 
2219
  #: inc/class-job.php:1575
2220
+ #: inc/class-job.php:1772
2221
  msgid "Archiving Folder: %s"
2222
  msgstr "A arquivar a pasta: %s"
2223
 
2224
  #: inc/class-job.php:1629
2225
+ #: inc/class-job.php:1834
2226
  msgid "Backup archive created."
2227
  msgstr "Foi criado o ficheiro de arquivo da cópia de segurança."
2228
 
2229
  #: inc/class-job.php:1643
2230
+ #: inc/class-job.php:1849
2231
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2232
  msgstr "O ficheiro de arquivo da cópia de segurança será demasiado grande para operações com ficheiros nesta versão do PHP. Deve considerar dividir a cópia de segurança em múltiplas tarefas com menos ficheiros cada."
2233
 
2234
  #: inc/class-job.php:1646
2235
+ #: inc/class-job.php:1857
2236
  msgid "Archive size is %s."
2237
  msgstr "O tamanho do ficheiro de arquivo é de %s."
2238
 
2239
  #: inc/class-job.php:1649
2240
+ #: inc/class-job.php:1864
2241
  msgid "%1$d Files with %2$s in Archive."
2242
  msgstr "Foram arquivados %1$d ficheiros somando um total de %2$s."
2243
 
2244
  #: inc/class-job.php:1698
2245
+ #: inc/class-job.php:2059
2246
  #, fuzzy
2247
  msgctxt "Folder name"
2248
  msgid "Folder %s does not exist"
2249
  msgstr "A pasta %s não existe"
2250
 
2251
  #: inc/class-job.php:1703
2252
+ #: inc/class-job.php:2067
2253
  #, fuzzy
2254
  msgctxt "Folder name"
2255
  msgid "Folder %s is not readable"
2256
  msgstr "A pasta %s não é legível!"
2257
 
2258
  #: inc/class-job.php:1725
2259
+ #: inc/class-job.php:2096
2260
  msgid "Link \"%s\" not following."
2261
  msgstr "Ligação \"%s\" não utilizada."
2262
 
2263
  #: inc/class-job.php:1727
2264
+ #: inc/class-job.php:2100
2265
  msgid "File \"%s\" is not readable!"
2266
  msgstr "O ficheiro \"%s\" não pode ser lido!"
2267
 
2268
  #: inc/class-job.php:1731
2269
+ #: inc/class-job.php:2107
2270
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2271
  msgstr "Não é possível obter o tamanho do ficheiro \"%s\". O ficheiro deve ser demasiado grande e não será adicionado à fila."
2272
 
2273
  #: inc/class-job.php:1814
2274
+ #: inc/class-job.php:2197
2275
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2276
  msgstr "%d. A tentar criar um ficheiro manifest&#160;&hellip;"
2277
 
2278
  #: inc/class-job.php:1870
2279
+ #: inc/class-job.php:2264
2280
  msgid "You may have noticed the manifest.json file in this archive."
2281
  msgstr "Poderá ter reparado na presença do ficheiro manifest.json neste ficheiro de arquivo."
2282
 
2283
  #: inc/class-job.php:1871
2284
+ #: inc/class-job.php:2265
2285
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2286
  msgstr "O manifest.json poderá ser necessário mais tarde para restaurar a partir deste ficheiro de arquivo."
2287
 
2288
  #: inc/class-job.php:1872
2289
+ #: inc/class-job.php:2268
2290
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2291
  msgstr "Por favor, deixe o ficheiro manifest.json intacto e no lugar. Caso contrário pode ignorá-lo em segurança."
2292
 
2293
  #: inc/class-job.php:1882
2294
+ #: inc/class-job.php:2282
2295
  msgid "Added manifest.json file with %1$s to backup file list."
2296
  msgstr "Foi adicionado o ficheiro manifest.json com \"%1$s\" à lista de ficheiros da cópia de segurança."
2297
 
2298
  #: inc/class-job.php:1921
2299
+ #: inc/class-job.php:2324
2300
  msgid "Wrong BackWPup JobID"
2301
  msgstr "ID da tarefa do BackWPup errado"
2302
 
2303
  #: inc/class-job.php:1934
2304
+ #: inc/class-job.php:2337
2305
  msgid "A BackWPup job is already running"
2306
  msgstr "Já está a ser executada uma tarefa do BackWPup"
2307
 
2308
  #: inc/class-job.php:2302
2309
+ #: inc/class-job.php:2752
2310
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2311
  msgid "Hangup detected on controlling terminal or death of controlling process"
2312
  msgstr ""
2313
 
2314
  #: inc/class-job.php:2306
2315
+ #: inc/class-job.php:2759
2316
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2317
  msgid "Interrupt from keyboard"
2318
  msgstr ""
2319
 
2320
  #: inc/class-job.php:2310
2321
+ #: inc/class-job.php:2766
2322
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2323
  msgid "Quit from keyboard"
2324
  msgstr ""
2325
 
2326
  #: inc/class-job.php:2314
2327
+ #: inc/class-job.php:2773
2328
  #, fuzzy
2329
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Illegal Instruction"
2331
  msgstr "Vídeo: Introdução"
2332
 
2333
  #: inc/class-job.php:2318
2334
+ #: inc/class-job.php:2780
2335
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Abort signal from abort(3)"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2322
2340
+ #: inc/class-job.php:2787
2341
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Bus error (bad memory access)"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2326
2346
+ #: inc/class-job.php:2794
2347
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Floating point exception"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2330
2352
+ #: inc/class-job.php:2801
2353
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Invalid memory reference"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2334
2358
+ #: inc/class-job.php:2808
2359
  #, fuzzy
2360
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2361
  msgid "Termination signal"
2362
  msgstr "Destinos"
2363
 
2364
  #: inc/class-job.php:2338
2365
+ #: inc/class-job.php:2815
2366
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2367
  msgid "Stack fault on coprocessor"
2368
  msgstr ""
2369
 
2370
  #: inc/class-job.php:2342
2371
+ #: inc/class-job.php:2822
2372
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2373
  msgid "User-defined signal 1"
2374
  msgstr ""
2375
 
2376
  #: inc/class-job.php:2346
2377
+ #: inc/class-job.php:2829
2378
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2379
  msgid "User-defined signal 2"
2380
  msgstr ""
2381
 
2382
  #: inc/class-job.php:2350
2383
+ #: inc/class-job.php:2836
2384
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2385
  msgid "Urgent condition on socket"
2386
  msgstr ""
2387
 
2388
  #: inc/class-job.php:2354
2389
+ #: inc/class-job.php:2843
2390
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2391
  msgid "CPU time limit exceeded"
2392
  msgstr ""
2393
 
2394
  #: inc/class-job.php:2358
2395
+ #: inc/class-job.php:2850
2396
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2397
  msgid "File size limit exceeded"
2398
  msgstr ""
2399
 
2400
  #: inc/class-job.php:2362
2401
+ #: inc/class-job.php:2857
2402
  #, fuzzy
2403
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2404
  msgid "Power failure"
2405
  msgstr "FTP: Falha no início de sessão!"
2406
 
2407
  #: inc/class-job.php:2366
2408
+ #: inc/class-job.php:2864
2409
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2410
  msgid "Bad argument to routine"
2411
  msgstr ""
2412
 
2413
  #: inc/class-job.php:2373
2414
+ #: inc/class-job.php:2876
2415
  #, fuzzy
2416
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2417
  msgstr "Sinal \"%s\" enviado para o script!"
2418
 
2419
  #: inc/class-job.php:2407
2420
  #: inc/class-job.php:2420
2421
+ #: inc/class-job.php:2912
2422
+ #: inc/class-job.php:2925
2423
  msgid "System: %s"
2424
  msgstr "Sistema: %s"
2425
 
2426
  #: inc/class-job.php:2435
2427
+ #: inc/class-job.php:2942
2428
  msgid "Exception caught in %1$s: %2$s"
2429
  msgstr "Ocorreu excepção em %1$s: %2$s"
2430
 
2724
 
2725
  #: inc/class-jobtype-wpexp.php:14
2726
  #: inc/class-page-about.php:472
2727
+ #: inc/class-page-about.php:463
2728
  msgid "WordPress XML export"
2729
  msgstr "Exportação do WordPress em XML"
2730
 
2957
  msgstr "Nova tarefa"
2958
 
2959
  #: inc/class-page-about.php:369
2960
+ #: inc/class-page-about.php:366
2961
  msgid "Welcome to BackWPup Pro"
2962
  msgstr "Bem-vindo ao BackWPup Pro"
2963
 
2964
  #: inc/class-page-about.php:370
2965
  #: inc/class-page-backwpup.php:75
2966
+ #: inc/class-page-about.php:367
2967
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2968
  msgstr "Os assistentes de tarefas do BackWPup tornam mais fácil o planeamento e agendamento das suas tarefas de cópia de segurança."
2969
 
 
 
 
 
 
 
 
2970
  #: inc/class-page-about.php:372
2971
+ #: inc/class-page-about.php:369
2972
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2973
  msgstr "Pronto para <a href=\"%1$s\">definir uma tarefa de cópia de segurança</a>? Pode <a href=\"%2$s\">utilizar os assistentes</a> ou planear a sua cópia de segurança em modo avançado."
2974
 
2975
  #: inc/class-page-about.php:382
2976
+ #: inc/class-page-about.php:376
2977
  msgid "Welcome to BackWPup"
2978
  msgstr "Bem-vindo ao BackWPup"
2979
 
2980
  #: inc/class-page-about.php:385
2981
+ #: inc/class-page-about.php:379
2982
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2983
  msgstr "Pronto para definir uma tarefa de cópia de segurança? Utilize um dos assistentes para planear o que pretende guardar."
2984
 
2985
  #: inc/class-page-about.php:398
2986
+ #: inc/class-page-about.php:389
2987
  msgid "Save your database"
2988
  msgstr "Guarde a sua base de dados"
2989
 
2990
  #: inc/class-page-about.php:401
2991
+ #: inc/class-page-about.php:392
2992
  msgid "Save your database regularly"
2993
  msgstr "Guarde a sua base de dados regularmente"
2994
 
2995
  #: inc/class-page-about.php:402
2996
+ #: inc/class-page-about.php:393
2997
  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."
2998
  msgstr "Com o BackWPup pode agendar a cópia de segurança da base de dados para ser executada automaticamente. Com um único ficheiro de cópia de segurança pode restaurar a base de dados. Deverá <a href=\"%s\">definir uma tarefa de cópia de segurança</a>, assim nunca se esquecerá. Também tem a opção de raparar e optimizar a base de dados depois de cada cópia de segurança."
2999
 
3000
  #: inc/class-page-about.php:407
3001
  #: inc/class-page-about.php:411
3002
+ #: inc/class-page-about.php:398
3003
+ #: inc/class-page-about.php:402
3004
  msgid "WordPress XML Export"
3005
  msgstr "Exportação do WordPress em XML"
3006
 
3007
  #: inc/class-page-about.php:408
3008
+ #: inc/class-page-about.php:399
3009
  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."
3010
  msgstr "Pode escolher adicionalmente ou exclusivamente o formato de exportação incorporado no WordPress para guardar os seus dados. Isto também funciona em cópias de segurança automatizadas, naturalmente. A vantagem é: pode importar estes ficheiros para um blog com o importador do WordPress."
3011
 
3012
  #: inc/class-page-about.php:416
3013
+ #: inc/class-page-about.php:407
3014
  msgid "Save all data from the webserver"
3015
  msgstr "Guardar todos os dados do servidor web"
3016
 
3017
  #: inc/class-page-about.php:419
3018
+ #: inc/class-page-about.php:410
3019
  msgid "Save all files"
3020
  msgstr "Guardar todos os ficheiros"
3021
 
3022
  #: inc/class-page-about.php:420
3023
+ #: inc/class-page-about.php:411
3024
  msgid "You can backup 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."
3025
  msgstr "Pode fazer cópia de segurança de todos os seus anexos, todos os ficheiros do sistema, plugins e temas, tudo num único ficheiro. Pode <a href=\"%s\">criar uma tarefa</a> para actualizar uma cópia de segurança do seu sistema de ficheiros apenas quando alguns ficheiros forem alterados."
3026
 
3027
  #: inc/class-page-about.php:425
3028
  #: inc/class-page-about.php:429
3029
+ #: inc/class-page-about.php:416
3030
+ #: inc/class-page-about.php:420
3031
  msgid "Security!"
3032
  msgstr "Segurança!"
3033
 
3034
  #: inc/class-page-about.php:426
3035
+ #: inc/class-page-about.php:417
3036
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3037
  msgstr "Por omissão tudo é encriptado: ligações a serviços externos, ficheiros locais e acesso às pastas."
3038
 
3039
  #: inc/class-page-about.php:434
3040
  #: inc/class-page-about.php:437
3041
+ #: inc/class-page-about.php:425
3042
+ #: inc/class-page-about.php:428
3043
  msgid "Cloud Support"
3044
  msgstr "Suporte de nuvem"
3045
 
3046
  #: inc/class-page-about.php:438
3047
+ #: inc/class-page-about.php:429
3048
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3049
  msgstr "O BackWPup suporta múltiplos serviços de núvem em paralelo. Assim é assegurada a redundância das cópias de segurança."
3050
 
3051
  #: inc/class-page-about.php:444
3052
+ #: inc/class-page-about.php:435
3053
  msgid "Features / differences between Free and Pro"
3054
  msgstr "Recursos / diferenças entre Gratuito e Pro"
3055
 
3056
  #: inc/class-page-about.php:447
3057
+ #: inc/class-page-about.php:438
3058
  msgid "Features"
3059
  msgstr "Recursos"
3060
 
3061
  #: inc/class-page-about.php:448
3062
+ #: inc/class-page-about.php:439
3063
  msgid "FREE"
3064
  msgstr "GRATUITO"
3065
 
3066
  #: inc/class-page-about.php:449
3067
+ #: inc/class-page-about.php:440
3068
  msgid "PRO"
3069
  msgstr "PRO"
3070
 
3071
  #: inc/class-page-about.php:452
3072
+ #: inc/class-page-about.php:443
3073
  msgid "Complete database backup"
3074
  msgstr "Cópia de segurança completa da base de dados"
3075
 
3076
  #: inc/class-page-about.php:457
3077
+ #: inc/class-page-about.php:448
3078
  msgid "Complete file backup"
3079
  msgstr "Cópia de segurança completa dos ficheiros"
3080
 
3081
  #: inc/class-page-about.php:462
3082
+ #: inc/class-page-about.php:453
3083
  msgid "Database check"
3084
  msgstr "Verificação da base de dados"
3085
 
3086
  #: inc/class-page-about.php:467
3087
+ #: inc/class-page-about.php:458
3088
  msgid "Data compression"
3089
  msgstr "Compressão de dados"
3090
 
3091
  #: inc/class-page-about.php:477
3092
+ #: inc/class-page-about.php:468
3093
  msgid "List of installed plugins"
3094
  msgstr "Lista de plugins instalados"
3095
 
3096
  #: inc/class-page-about.php:482
3097
+ #: inc/class-page-about.php:473
3098
  msgid "Backup archives management"
3099
  msgstr "Gestão de ficheiros de arquivo de cópia de segurança"
3100
 
3101
  #: inc/class-page-about.php:487
3102
+ #: inc/class-page-about.php:478
3103
  msgid "Log file management"
3104
  msgstr "Gestão de ficheiros de registo"
3105
 
3106
  #: inc/class-page-about.php:492
3107
+ #: inc/class-page-about.php:483
3108
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3109
  msgstr "Iniciar tarefas com o WP-Cron, URL, sistema, administração ou WP-CLI"
3110
 
3111
  #: inc/class-page-about.php:497
3112
+ #: inc/class-page-about.php:488
3113
  msgid "Log report via email"
3114
  msgstr "Relatório de registo por email"
3115
 
3116
  #: inc/class-page-about.php:502
3117
+ #: inc/class-page-about.php:493
3118
  msgid "Backup to Microsoft Azure"
3119
  msgstr "Cópia de segurança para Microsoft Azure"
3120
 
3121
  #: inc/class-page-about.php:507
3122
+ #: inc/class-page-about.php:498
3123
  msgid "Backup as email"
3124
  msgstr "Cópia de segurança por email"
3125
 
3126
  #: inc/class-page-about.php:512
3127
+ #: inc/class-page-about.php:503
3128
  #, fuzzy
3129
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3130
  msgstr "Cópia de segurança para Serviços S3 <small>(Amazon, Google Storage, Hosteurope e outros)</small>"
3131
 
3132
  #: inc/class-page-about.php:527
3133
+ #: inc/class-page-about.php:518
3134
  msgid "Backup to FTP server"
3135
  msgstr "Cópia de segurança para servidor FTP"
3136
 
3137
  #: inc/class-page-about.php:532
3138
+ #: inc/class-page-about.php:523
3139
  msgid "Backup to your web space"
3140
  msgstr "Cópia de segurança para o teu serviço de alojamento"
3141
 
3142
  #: inc/class-page-about.php:542
3143
  #: inc/pro/class-pro.php:112
3144
+ #: inc/class-page-about.php:553
3145
  #: inc/Pro/class-pro.php:152
 
3146
  msgid "Backup to Google Drive"
3147
  msgstr "Cópia de segurança para Google Drive"
3148
 
3149
  #: inc/class-page-about.php:547
3150
  #: inc/pro/class-pro.php:93
3151
+ #: inc/class-page-about.php:558
3152
  #: inc/Pro/class-pro.php:131
 
3153
  msgid "Backup to Amazon Glacier"
3154
  msgstr "Cópia de segurança para Amazon Glacier"
3155
 
3156
  #: inc/class-page-about.php:552
3157
+ #: inc/class-page-about.php:563
3158
  msgid "Custom API keys for DropBox and SugarSync"
3159
  msgstr "Chaves de API personalizadas para Dropbox e SugarSync"
3160
 
3161
  #: inc/class-page-about.php:557
3162
+ #: inc/class-page-about.php:568
3163
  msgid "XML database backup as PHPMyAdmin schema"
3164
  msgstr "Cópia de segurança da base de dados em XML como estrutura do phpMyAdmin"
3165
 
3166
  #: inc/class-page-about.php:562
3167
+ #: inc/class-page-about.php:573
3168
  msgid "Database backup as mysqldump per command line"
3169
  msgstr "Cópia de segurança da base de dados por mysqldump através da linha de comandos"
3170
 
3171
  #: inc/class-page-about.php:567
3172
+ #: inc/class-page-about.php:578
3173
  msgid "Database backup for additional MySQL databases"
3174
  msgstr "Cópia de segurança de bases de dados MySQL adicionais"
3175
 
3176
  #: inc/class-page-about.php:572
3177
+ #: inc/class-page-about.php:583
3178
  msgid "Import and export job settings as XML"
3179
  msgstr "Importar e exportar definições de tarefas em XML"
3180
 
3181
  #: inc/class-page-about.php:577
3182
+ #: inc/class-page-about.php:588
3183
  msgid "Wizard for system tests"
3184
  msgstr "Assistente para testes do sistema"
3185
 
3186
  #: inc/class-page-about.php:582
3187
+ #: inc/class-page-about.php:593
3188
  msgid "Wizard for scheduled backup jobs"
3189
  msgstr "Assistente para agendar tarefas de cópia de segurança"
3190
 
3191
  #: inc/class-page-about.php:587
3192
+ #: inc/class-page-about.php:598
3193
  msgid "Wizard to import settings and backup jobs"
3194
  msgstr "Assistente para importar definições e tarefas de cópia de segurança"
3195
 
3196
  #: inc/class-page-about.php:592
3197
+ #: inc/class-page-about.php:603
3198
  msgid "Differential backup of changed directories to Dropbox"
3199
  msgstr "Cópia de segurança diferencial de directórios alterados para a Dropbox"
3200
 
3201
  #: inc/class-page-about.php:597
3202
+ #: inc/class-page-about.php:608
3203
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3204
  msgstr "Cópia de segurança diferencial de directórios alterados para o Rackspace Cloud Files"
3205
 
3206
  #: inc/class-page-about.php:602
3207
+ #: inc/class-page-about.php:613
3208
  msgid "Differential backup of changed directories to S3"
3209
  msgstr "Cópia de segurança diferencial de directórios alterados para o S3"
3210
 
3211
  #: inc/class-page-about.php:607
3212
+ #: inc/class-page-about.php:618
3213
  msgid "Differential backup of changed directories to MS Azure"
3214
  msgstr "Cópia de segurança diferencial de directórios alterados para o MS Azure"
3215
 
3216
  #: inc/class-page-about.php:612
3217
+ #: inc/class-page-about.php:648
3218
  msgid "<strong>Premium support</strong>"
3219
  msgstr "<strong>Suporte Premium</strong>"
3220
 
3221
  #: inc/class-page-about.php:617
3222
+ #: inc/class-page-about.php:653
3223
  msgid "<strong>Automatic updates</strong>"
3224
  msgstr "<strong>Actualização automática</strong>"
3225
 
3226
  #: inc/class-page-about.php:624
3227
+ #: inc/class-page-about.php:660
3228
  msgid "GET PRO"
3229
  msgstr "OBTER PRO"
3230
 
3286
  #: inc/class-page-logs.php:206
3287
  #: inc/class-page-backups.php:281
3288
  #: inc/class-page-backups.php:285
3289
+ #: inc/class-page-logs.php:234
3290
  #: inc/class-page-settings.php:768
3291
  #: inc/class-page-settings.php:779
 
3292
  msgid "Download"
3293
  msgstr "Descarregar"
3294
 
3346
  msgid "Restoring backups"
3347
  msgstr "Restauro de cópias de segurança"
3348
 
 
 
 
 
 
3349
  #: inc/class-page-backwpup.php:78
3350
  #: inc/class-page-backwpup.php:87
3351
  msgctxt "Dashboard heading"
3575
 
3576
  #: inc/class-page-editjob.php:328
3577
  #: inc/class-page-settings.php:117
 
3578
  #: inc/class-page-editjob.php:337
3579
+ #: inc/class-page-settings.php:214
3580
  msgid "General"
3581
  msgstr "Geral"
3582
 
3610
 
3611
  #: inc/class-page-editjob.php:391
3612
  #: inc/pro/class-wizard-job.php:254
 
3613
  #: inc/class-page-editjob.php:400
3614
+ #: inc/Pro/class-wizard-job.php:254
3615
  msgid "This job is a&#160;&hellip;"
3616
  msgstr "Esta tarefa inclui&#160;&hellip;"
3617
 
3618
  #: inc/class-page-editjob.php:394
3619
  #: inc/pro/class-wizard-job.php:257
 
3620
  #: inc/class-page-editjob.php:403
3621
+ #: inc/Pro/class-wizard-job.php:257
3622
  msgid "Job tasks"
3623
  msgstr "Sub-tarefas"
3624
 
3631
  #: inc/class-page-editjob.php:420
3632
  #: inc/pro/class-wizard-job.php:402
3633
  #: inc/pro/class-wizard-job.php:405
 
 
3634
  #: inc/class-page-editjob.php:426
3635
  #: inc/class-page-editjob.php:429
3636
+ #: inc/Pro/class-wizard-job.php:402
3637
+ #: inc/Pro/class-wizard-job.php:405
3638
  msgid "Backup type"
3639
  msgstr "Tipo de cópia de segurança"
3640
 
3645
 
3646
  #: inc/class-page-editjob.php:428
3647
  #: inc/pro/class-wizard-job.php:413
 
3648
  #: inc/class-page-editjob.php:437
3649
+ #: inc/Pro/class-wizard-job.php:413
3650
  msgid "Create a backup archive"
3651
  msgstr "Cria um ficheiro de arquivo de cópia de segurança"
3652
 
3746
  #: inc/class-page-editjob.php:476
3747
  #: inc/pro/class-wizard-job.php:426
3748
  #: inc/pro/class-wizard-job.php:429
 
 
3749
  #: inc/class-page-editjob.php:481
3750
  #: inc/class-page-editjob.php:483
3751
+ #: inc/Pro/class-wizard-job.php:426
3752
+ #: inc/Pro/class-wizard-job.php:429
3753
  msgid "Zip"
3754
  msgstr "Zip"
3755
 
3756
  #: inc/class-page-editjob.php:479
3757
  #: inc/pro/class-wizard-job.php:433
 
3758
  #: inc/class-page-editjob.php:486
3759
+ #: inc/Pro/class-wizard-job.php:433
3760
  msgid "Tar"
3761
  msgstr "Tar"
3762
 
3764
  #: inc/class-page-editjob.php:483
3765
  #: inc/pro/class-wizard-job.php:437
3766
  #: inc/pro/class-wizard-job.php:440
 
 
3767
  #: inc/class-page-editjob.php:488
3768
  #: inc/class-page-editjob.php:490
3769
+ #: inc/Pro/class-wizard-job.php:437
3770
+ #: inc/Pro/class-wizard-job.php:440
3771
  msgid "Tar GZip"
3772
  msgstr "Tar GZip"
3773
 
3782
  #: inc/class-page-editjob.php:489
3783
  #: inc/pro/class-wizard-job.php:444
3784
  #: inc/pro/class-wizard-job.php:447
 
 
3785
  #: inc/class-page-editjob.php:494
3786
  #: inc/class-page-editjob.php:497
3787
+ #: inc/Pro/class-wizard-job.php:444
3788
+ #: inc/Pro/class-wizard-job.php:447
3789
  msgid "Tar BZip2"
3790
  msgstr "Tar BZip2"
3791
 
3913
  #: inc/class-page-editjob.php:650
3914
  #: inc/class-page-editjob.php:718
3915
  #: inc/pro/class-wizard-job.php:320
 
3916
  #: inc/class-page-editjob.php:686
3917
  #: inc/class-page-editjob.php:754
3918
+ #: inc/Pro/class-wizard-job.php:320
3919
  msgid "Scheduler"
3920
  msgstr "Calendário"
3921
 
3923
  #: inc/class-page-jobs.php:126
3924
  #: inc/class-page-logs.php:139
3925
  #: inc/pro/class-wizard-job.php:324
 
 
3926
  #: inc/class-page-editjob.php:691
3927
+ #: inc/class-page-logs.php:166
3928
+ #: inc/Pro/class-wizard-job.php:324
3929
  msgid "Type"
3930
  msgstr "Tipo"
3931
 
3932
  #: inc/class-page-editjob.php:660
3933
  #: inc/pro/class-wizard-job.php:330
 
3934
  #: inc/class-page-editjob.php:696
3935
+ #: inc/Pro/class-wizard-job.php:330
3936
  msgid "Hour"
3937
  msgstr "Hora"
3938
 
3939
  #: inc/class-page-editjob.php:663
3940
  #: inc/pro/class-wizard-job.php:333
 
3941
  #: inc/class-page-editjob.php:699
3942
+ #: inc/Pro/class-wizard-job.php:333
3943
  msgid "Minute"
3944
  msgstr "Minuto"
3945
 
3946
  #: inc/class-page-editjob.php:667
3947
  #: inc/pro/class-wizard-job.php:337
 
3948
  #: inc/class-page-editjob.php:703
3949
+ #: inc/Pro/class-wizard-job.php:337
3950
  msgid "monthly"
3951
  msgstr "mensal"
3952
 
3953
  #: inc/class-page-editjob.php:669
3954
  #: inc/pro/class-wizard-job.php:339
 
3955
  #: inc/class-page-editjob.php:705
3956
+ #: inc/Pro/class-wizard-job.php:339
3957
  msgid "on"
3958
  msgstr "dia"
3959
 
3960
  #: inc/class-page-editjob.php:679
3961
  #: inc/pro/class-wizard-job.php:349
 
3962
  #: inc/class-page-editjob.php:715
3963
+ #: inc/Pro/class-wizard-job.php:349
3964
  msgid "weekly"
3965
  msgstr "semanal"
3966
 
3967
  #: inc/class-page-editjob.php:681
3968
  #: inc/class-page-editjob.php:788
3969
  #: inc/pro/class-wizard-job.php:351
 
3970
  #: inc/class-page-editjob.php:717
3971
  #: inc/class-page-editjob.php:824
3972
+ #: inc/Pro/class-wizard-job.php:351
3973
  msgid "Sunday"
3974
  msgstr "Domingo"
3975
 
3976
  #: inc/class-page-editjob.php:682
3977
  #: inc/class-page-editjob.php:789
3978
  #: inc/pro/class-wizard-job.php:352
 
3979
  #: inc/class-page-editjob.php:718
3980
  #: inc/class-page-editjob.php:825
3981
+ #: inc/Pro/class-wizard-job.php:352
3982
  msgid "Monday"
3983
  msgstr "Segunda"
3984
 
3985
  #: inc/class-page-editjob.php:683
3986
  #: inc/class-page-editjob.php:790
3987
  #: inc/pro/class-wizard-job.php:353
 
3988
  #: inc/class-page-editjob.php:719
3989
  #: inc/class-page-editjob.php:826
3990
+ #: inc/Pro/class-wizard-job.php:353
3991
  msgid "Tuesday"
3992
  msgstr "Terça"
3993
 
3994
  #: inc/class-page-editjob.php:684
3995
  #: inc/class-page-editjob.php:791
3996
  #: inc/pro/class-wizard-job.php:354
 
3997
  #: inc/class-page-editjob.php:720
3998
  #: inc/class-page-editjob.php:827
3999
+ #: inc/Pro/class-wizard-job.php:354
4000
  msgid "Wednesday"
4001
  msgstr "Quarta"
4002
 
4003
  #: inc/class-page-editjob.php:685
4004
  #: inc/class-page-editjob.php:792
4005
  #: inc/pro/class-wizard-job.php:355
 
4006
  #: inc/class-page-editjob.php:721
4007
  #: inc/class-page-editjob.php:828
4008
+ #: inc/Pro/class-wizard-job.php:355
4009
  msgid "Thursday"
4010
  msgstr "Quinta"
4011
 
4012
  #: inc/class-page-editjob.php:686
4013
  #: inc/class-page-editjob.php:793
4014
  #: inc/pro/class-wizard-job.php:356
 
4015
  #: inc/class-page-editjob.php:722
4016
  #: inc/class-page-editjob.php:829
4017
+ #: inc/Pro/class-wizard-job.php:356
4018
  msgid "Friday"
4019
  msgstr "Sexta"
4020
 
4021
  #: inc/class-page-editjob.php:687
4022
  #: inc/class-page-editjob.php:794
4023
  #: inc/pro/class-wizard-job.php:357
 
4024
  #: inc/class-page-editjob.php:723
4025
  #: inc/class-page-editjob.php:830
4026
+ #: inc/Pro/class-wizard-job.php:357
4027
  msgid "Saturday"
4028
  msgstr "Sábado"
4029
 
4030
  #: inc/class-page-editjob.php:697
4031
  #: inc/pro/class-wizard-job.php:367
 
4032
  #: inc/class-page-editjob.php:733
4033
+ #: inc/Pro/class-wizard-job.php:367
4034
  msgid "daily"
4035
  msgstr "diário"
4036
 
4037
  #: inc/class-page-editjob.php:707
4038
  #: inc/pro/class-wizard-job.php:377
 
4039
  #: inc/class-page-editjob.php:743
4040
+ #: inc/Pro/class-wizard-job.php:377
4041
  msgid "hourly"
4042
  msgstr "horário"
4043
 
4185
 
4186
  #: inc/class-page-jobs.php:172
4187
  #: inc/class-page-logs.php:200
 
4188
  #: inc/class-page-logs.php:228
4189
+ #: inc/Pro/class-page-support.php:221
4190
  msgid "Job ID: %d"
4191
  msgstr "ID da tarefa: %d"
4192
 
5009
  #: inc/pro/class-wizard-job.php:17
5010
  #: inc/pro/class-wizard-jobimport.php:16
5011
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5012
  #: inc/class-admin.php:510
5013
  #: inc/class-admin.php:531
5014
+ #: inc/class-job.php:459
5015
+ #: inc/class-page-about.php:365
5016
+ #: inc/class-page-about.php:375
5017
+ #: inc/class-page-about.php:660
5018
+ #: inc/class-page-backwpup.php:254
5019
  #: inc/class-page-settings.php:1123
5020
+ #: inc/Pro/class-wizard-job.php:17
5021
+ #: inc/Pro/class-wizard-jobimport.php:16
5022
+ #: inc/Pro/class-wizard-systemtest.php:27
5023
  msgid "http://backwpup.com"
5024
  msgstr "http://backwpup.com"
5025
 
5032
  #: inc/pro/class-wizard-job.php:19
5033
  #: inc/pro/class-wizard-jobimport.php:18
5034
  #: inc/pro/class-wizard-systemtest.php:18
 
5035
  #: inc/Pro/class-wizard-job.php:19
5036
+ #: inc/Pro/class-wizard-jobimport.php:18
5037
  #: inc/Pro/class-wizard-systemtest.php:29
5038
  msgid "http://inpsyde.com"
5039
  msgstr "http://inpsyde.com"
5040
 
5041
+ #: backwpup.php:573
5042
+ #: vendor_dist/backwpup.php:573
5043
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5044
  msgstr ""
5045
 
5046
+ #: inc/class-create-archive.php:114
5047
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5048
  msgstr ""
5049
 
5050
+ #: inc/class-create-archive.php:311
5051
+ msgid "File name cannot be empty."
 
5052
  msgstr ""
5053
 
5054
+ #: inc/class-create-archive.php:741
5055
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5056
  msgstr ""
5057
 
5058
+ #. translators: $1 is the filename to add into the archive.
5059
+ #: inc/class-create-archive.php:996
5060
+ msgid "Cannot open source file %s."
5061
  msgstr ""
5062
 
5063
+ #: inc/class-decrypter.php:56
5064
+ msgid "Cannot open the archive for reading."
5065
  msgstr ""
5066
 
5067
+ #: inc/class-decrypter.php:82
5068
+ msgid "Cannot write the encrypted archive."
5069
  msgstr ""
5070
 
5071
+ #: inc/class-decrypter.php:162
5072
+ msgid "Private key invalid."
5073
  msgstr ""
5074
 
5075
+ #: inc/class-destination-dropbox-downloader.php:72
5076
+ #: inc/class-destination-ftp-downloader.php:72
5077
+ #: inc/class-destination-s3-downloader.php:83
5078
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5079
+ msgid "Could not write data to file."
5080
  msgstr ""
5081
 
5082
+ #: inc/class-destination-dropbox-downloader.php:104
5083
+ #: inc/class-destination-folder-downloader.php:137
5084
+ #: inc/class-destination-ftp-downloader.php:126
5085
+ #: inc/class-destination-s3-downloader.php:112
5086
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5087
+ msgid "File could not be opened for writing."
5088
  msgstr ""
5089
 
5090
  #: inc/class-destination-folder-downloader.php:64
5104
  msgid "%s is a directory not a file."
5105
  msgstr ""
5106
 
5107
+ #: inc/class-destination-ftp-downloader.php:108
5108
+ msgid "Cannot open FTP file for download."
5109
+ msgstr ""
5110
+
5111
+ #: inc/class-destination-ftp.php:321
5112
+ msgid "Could not log in to FTP server."
5113
+ msgstr ""
5114
+
5115
+ #: inc/class-destination-ftp.php:735
5116
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5117
+ msgstr ""
5118
+
5119
+ #: inc/class-destination-s3-downloader.php:76
5120
+ msgid "Could not write data to file. Empty source file."
5121
+ msgstr ""
5122
+
5123
  #: inc/class-destination-s3.php:102
5124
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5125
  msgstr ""
5126
 
5127
+ #: inc/class-destination-s3.php:1134
5128
+ #: inc/Pro/class-destination-s3.php:63
5129
+ msgid "Amazon S3: EU (London)"
5130
+ msgstr ""
5131
+
5132
+ #: inc/class-download-file.php:135
5133
+ msgid "Invalid file name, seems file include invalid characters."
5134
+ msgstr ""
5135
+
5136
+ #: inc/class-job.php:362
5137
+ msgid "Encrypts the archive"
5138
+ msgstr ""
5139
+
5140
+ #: inc/class-job.php:1902
5141
+ msgid "No encryption key was provided. Aborting encryption."
5142
+ msgstr ""
5143
+
5144
+ #: inc/class-job.php:1912
5145
+ msgid "%d. Trying to encrypt archive &hellip;"
5146
+ msgstr ""
5147
+
5148
+ #: inc/class-job.php:1925
5149
+ msgid "Cannot open the archive for reading. Aborting encryption."
5150
+ msgstr ""
5151
+
5152
+ #: inc/class-job.php:1932
5153
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5154
+ msgstr ""
5155
+
5156
+ #: inc/class-job.php:1991
5157
+ msgid "Encrypted %s of data."
5158
+ msgstr ""
5159
+
5160
+ #: inc/class-job.php:1996
5161
+ msgid "Unable to delete unencrypted archive."
5162
+ msgstr ""
5163
+
5164
+ #: inc/class-job.php:2003
5165
+ msgid "Unable to rename encrypted archive."
5166
+ msgstr ""
5167
+
5168
+ #: inc/class-job.php:2009
5169
+ msgid "Archive has been successfully encrypted."
5170
+ msgstr ""
5171
+
5172
+ #: inc/class-job.php:2719
5173
+ msgid "exec command is not active."
5174
+ msgstr ""
5175
+
5176
+ #: inc/class-job.php:2725
5177
+ msgid "mysqldump binary not found."
5178
+ msgstr ""
5179
+
5180
+ #: inc/class-page-about.php:365
5181
+ #: inc/class-page-about.php:375
5182
+ #: inc/class-page-backwpup.php:254
5183
+ msgid "BackWPup banner"
5184
+ msgstr ""
5185
+
5186
+ #: inc/class-page-about.php:368
5187
+ #: inc/class-page-about.php:378
5188
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5189
+ msgstr ""
5190
+
5191
+ #: inc/class-page-about.php:533
5192
+ msgid "Restore manually uploaded Backup Archives"
5193
+ msgstr ""
5194
+
5195
+ #: inc/class-page-about.php:538
5196
+ msgid "Standalone Restore App"
5197
+ msgstr ""
5198
+
5199
+ #: inc/class-page-about.php:543
5200
+ msgid "Encrypt Backup Archives"
5201
+ msgstr ""
5202
+
5203
+ #: inc/class-page-about.php:548
5204
+ msgid "Restore Encrypted Backups"
5205
+ msgstr ""
5206
+
5207
+ #: inc/class-page-about.php:623
5208
+ msgid "Restore from Folder"
5209
+ msgstr ""
5210
+
5211
+ #: inc/class-page-about.php:628
5212
+ msgid "Restore from Google Drive"
5213
+ msgstr ""
5214
+
5215
+ #: inc/class-page-about.php:633
5216
+ msgid "Restore from Amazon S3"
5217
+ msgstr ""
5218
+
5219
+ #: inc/class-page-about.php:638
5220
+ msgid "Restore from Dropbox"
5221
+ msgstr ""
5222
+
5223
+ #: inc/class-page-about.php:643
5224
+ msgid "Restore from FTP"
5225
+ msgstr ""
5226
+
5227
+ #: inc/class-page-backups.php:293
5228
+ #: inc/Pro/class-pro.php:285
5229
+ #: inc/Pro/class-pro.php:286
5230
+ #: views/pro/restore/steps/step4_top.php:2
5231
+ msgid "Restore"
5232
+ msgstr ""
5233
+
5234
  #: inc/class-page-backups.php:408
5235
  msgid "&laquo; Go back"
5236
  msgstr ""
5273
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5274
  msgstr ""
5275
 
5276
+ #: inc/class-page-backwpup.php:77
5277
+ #: inc/class-page-backwpup.php:86
5278
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5279
  msgstr ""
5280
 
5281
+ #: inc/class-page-editjob.php:448
5282
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5283
  msgstr ""
5284
 
5285
+ #: inc/class-page-editjob.php:452
5286
+ msgid "Preview: "
5287
  msgstr ""
5288
 
5289
+ #: inc/class-page-editjob.php:484
5290
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5291
+ msgstr ""
5292
+
5293
+ #: inc/class-page-editjob.php:495
5294
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5295
+ msgstr ""
5296
+
5297
+ #: inc/class-page-editjob.php:506
5298
+ #: inc/class-page-editjob.php:511
5299
+ #: inc/class-page-editjob.php:520
5300
+ msgid "Encrypt Archive"
5301
+ msgstr ""
5302
+
5303
+ #: inc/class-page-editjob.php:524
5304
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5305
  msgstr ""
5306
 
5307
  #: inc/class-page-settings.php:39
5514
  msgid "BackWPup maximum script execution time"
5515
  msgstr ""
5516
 
5517
+ #: inc/class-system-tests-runner.php:77
5518
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5519
  msgstr ""
5520
 
5521
+ #: inc/class-system-tests-runner.php:88
5522
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5523
  msgstr ""
5524
 
5525
+ #: inc/class-system-tests-runner.php:100
5526
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5527
  msgstr ""
5528
 
5529
+ #: inc/class-system-tests-runner.php:193
5530
+ msgid "Yeah!"
5531
  msgstr ""
5532
 
5533
+ #: inc/class-system-tests-runner.php:261
5534
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5535
  msgstr ""
5536
 
5537
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-ru_RU.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Папка"
@@ -53,24 +53,24 @@ msgstr "Резервное копирование на FTP"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Резервное копирование на Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Сервис S3"
@@ -101,8 +101,8 @@ msgstr "RSC"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Резервное копирование на Rackspace Cloud Files"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Резервное копирование на SugarSync"
@@ -178,8 +178,8 @@ msgstr "Добавить новое задание"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "Журналы"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "Dropbox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "Логин"
472
 
@@ -480,16 +480,16 @@ msgstr "Идентификация"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "Не выполнена проверка подлинности!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "Регистрация"
495
 
@@ -499,11 +499,11 @@ msgstr "Регистрация"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "Проверка подлинности выполнена!"
509
 
@@ -555,10 +555,10 @@ msgstr "BackWPup будет иметь полный доступ на чтени
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "Настройки резервного копирования"
564
 
@@ -577,10 +577,10 @@ msgstr ""
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "Удаление файлов"
586
 
@@ -598,17 +598,17 @@ msgstr "Удаление файлов"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "Количество файлов для хранения в папке."
614
 
@@ -621,12 +621,12 @@ msgstr "Количество файлов для хранения в папке.
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Не удалять файлы при синхронизации на месте хранения!"
664
 
@@ -669,22 +669,22 @@ msgstr "%d. Попытка отправки файла резервной коп
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s доступно на Вашем Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Не прошла проверка подлинности на Dropbox!"
690
 
@@ -697,26 +697,26 @@ msgstr "Загрузка на Dropbox&#160;&hellip;"
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "Резервные копии переданы %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Размер загруженного файла и размер локального файла не одинаковые."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr "Ошибка при передаче резервной копии на %s."
722
 
@@ -746,9 +746,9 @@ msgstr ""
746
  #: inc/class-destination-email.php:38
747
  #: inc/pro/class-destination-email.php:16
748
  #: inc/pro/class-destination-email.php:18
 
749
  #: inc/Pro/class-destination-email.php:16
750
  #: inc/Pro/class-destination-email.php:18
751
- #: inc/class-destination-email.php:39
752
  msgid "Email address"
753
  msgstr "E-mail адрес"
754
 
@@ -761,10 +761,10 @@ msgstr ""
761
  #: inc/class-destination-email.php:49
762
  #: inc/pro/class-destination-email.php:29
763
  #: inc/pro/class-destination-email.php:30
764
- #: inc/Pro/class-destination-email.php:29
765
- #: inc/Pro/class-destination-email.php:30
766
  #: inc/class-destination-email.php:52
767
  #: inc/class-destination-email.php:56
 
 
768
  msgid "Send test email"
769
  msgstr "Отправить тестовое сообщение"
770
 
@@ -839,9 +839,9 @@ msgstr "Имя хоста SMTP"
839
  #: inc/class-destination-email.php:98
840
  #: inc/class-destination-ftp.php:31
841
  #: inc/pro/class-destination-ftp.php:21
842
- #: inc/Pro/class-destination-ftp.php:35
843
  #: inc/class-destination-email.php:124
844
  #: inc/class-destination-ftp.php:56
 
845
  msgid "Port:"
846
  msgstr "Порт:"
847
 
@@ -860,10 +860,10 @@ msgstr "SMTP безопасное соединение"
860
  #: inc/class-page-settings.php:328
861
  #: inc/pro/class-jobtype-dbdump.php:157
862
  #: inc/pro/class-jobtype-dbdump.php:205
863
- #: inc/Pro/class-jobtype-dbdump.php:157
864
- #: inc/Pro/class-jobtype-dbdump.php:205
865
  #: inc/class-destination-email.php:141
866
  #: inc/class-page-settings.php:837
 
 
867
  msgid "none"
868
  msgstr "нет"
869
 
@@ -988,8 +988,8 @@ msgstr "Тайм-аут для FTP-соединения "
988
  #: inc/class-destination-ftp.php:87
989
  #: inc/class-page-logs.php:257
990
  #: inc/class-page-settings.php:466
991
- #: inc/class-page-logs.php:288
992
  #: inc/class-destination-ftp.php:137
 
993
  msgid "seconds"
994
  msgstr "сек."
995
 
@@ -1144,15 +1144,15 @@ msgstr "Резервная копия передана FTP-сервер: %s"
1144
  #: inc/pro/class-destination-glacier.php:468
1145
  #: inc/pro/class-destination-rsc.php:226
1146
  #: inc/pro/class-destination-rsc.php:259
 
 
1147
  #: inc/class-destination-rsc.php:292
 
 
1148
  #: inc/Pro/class-destination-gdrive.php:905
1149
  #: inc/Pro/class-destination-glacier.php:470
1150
  #: inc/Pro/class-destination-rsc.php:228
1151
  #: inc/Pro/class-destination-rsc.php:261
1152
- #: inc/class-destination-msazure.php:275
1153
- #: inc/class-destination-s3.php:843
1154
- #: inc/class-destination-s3.php:958
1155
- #: inc/class-destination-ftp.php:673
1156
  msgid "Can not open source file for transfer."
1157
  msgstr ""
1158
 
@@ -1203,8 +1203,8 @@ msgstr "Папка в контейнере"
1203
  #: inc/class-destination-rsc.php:105
1204
  #: inc/class-destination-s3.php:114
1205
  #: inc/pro/class-destination-glacier.php:96
1206
- #: inc/Pro/class-destination-glacier.php:96
1207
  #: inc/class-destination-s3.php:215
 
1208
  msgid "File deletion"
1209
  msgstr "Удаление файлов"
1210
 
@@ -1227,15 +1227,15 @@ msgstr "%d. Попытка отправить резервную копию в M
1227
 
1228
  #: inc/class-destination-msazure.php:233
1229
  #: inc/pro/class-destination-msazure.php:144
1230
- #: inc/Pro/class-destination-msazure.php:144
1231
  #: inc/class-destination-msazure.php:237
 
1232
  msgid "MS Azure container \"%s\" does not exist!"
1233
  msgstr "Контейнер MS Azure \"%s\" не существует!"
1234
 
1235
  #: inc/class-destination-msazure.php:237
1236
  #: inc/pro/class-destination-msazure.php:148
1237
- #: inc/Pro/class-destination-msazure.php:148
1238
  #: inc/class-destination-msazure.php:241
 
1239
  msgid "Connected to MS Azure container \"%s\"."
1240
  msgstr "Подключен к контейнеру MS Azure \"%s\""
1241
 
@@ -1247,9 +1247,9 @@ msgstr "Начинаю загрузку в MS Azure&#160;&hellip;"
1247
  #: inc/class-destination-msazure.php:292
1248
  #: inc/class-destination-msazure.php:348
1249
  #: inc/pro/class-destination-msazure.php:233
1250
- #: inc/Pro/class-destination-msazure.php:233
1251
  #: inc/class-destination-msazure.php:296
1252
  #: inc/class-destination-msazure.php:352
 
1253
  msgid "Microsoft Azure API: %s"
1254
  msgstr "Microsoft Azure API: %s"
1255
 
@@ -1269,9 +1269,9 @@ msgstr "Отсутствует имя учетной записи!"
1269
  #: inc/class-destination-msazure.php:444
1270
  #: inc/class-destination-s3.php:222
1271
  #: inc/pro/class-destination-glacier.php:166
1272
- #: inc/Pro/class-destination-glacier.php:166
1273
  #: inc/class-destination-msazure.php:448
1274
  #: inc/class-destination-s3.php:359
 
1275
  msgid "Missing access key!"
1276
  msgstr "Отсутствует ключ доступа!"
1277
 
@@ -1418,122 +1418,122 @@ msgstr "Выбор сервиса S3"
1418
 
1419
  #: inc/class-destination-s3.php:33
1420
  #: inc/pro/class-destination-s3.php:18
1421
- #: inc/Pro/class-destination-s3.php:32
1422
  #: inc/class-destination-s3.php:54
 
1423
  msgid "Amazon S3 Region"
1424
  msgstr "Регион Amazon S3"
1425
 
1426
  #: inc/class-destination-s3.php:34
1427
  #: inc/pro/class-destination-s3.php:19
1428
- #: inc/Pro/class-destination-s3.php:40
1429
  #: inc/class-destination-s3.php:1118
 
1430
  msgid "Amazon S3: US Standard"
1431
  msgstr "Amazon S3: США стандарт"
1432
 
1433
  #: inc/class-destination-s3.php:35
1434
  #: inc/pro/class-destination-s3.php:20
1435
- #: inc/Pro/class-destination-s3.php:45
1436
  #: inc/class-destination-s3.php:1122
 
1437
  msgid "Amazon S3: US West (Northern California)"
1438
  msgstr "Amazon S3: Запад США (Северная Калифорния)"
1439
 
1440
  #: inc/class-destination-s3.php:36
1441
  #: inc/pro/class-destination-s3.php:21
1442
- #: inc/Pro/class-destination-s3.php:53
1443
  #: inc/class-destination-s3.php:1126
 
1444
  msgid "Amazon S3: US West (Oregon)"
1445
  msgstr "Amazon S3: Запад США (Орегон)"
1446
 
1447
  #: inc/class-destination-s3.php:37
1448
  #: inc/pro/class-destination-s3.php:22
1449
- #: inc/Pro/class-destination-s3.php:58
1450
  #: inc/class-destination-s3.php:1130
 
1451
  msgid "Amazon S3: EU (Ireland)"
1452
  msgstr "Amazon S3: ЕС (Ирландия)"
1453
 
1454
  #: inc/class-destination-s3.php:38
1455
  #: inc/pro/class-destination-s3.php:23
1456
- #: inc/Pro/class-destination-s3.php:68
1457
  #: inc/class-destination-s3.php:1138
 
1458
  msgid "Amazon S3: EU (Germany)"
1459
  msgstr "Amazon S3: ЕС (Германия)"
1460
 
1461
  #: inc/class-destination-s3.php:39
1462
  #: inc/pro/class-destination-s3.php:24
1463
- #: inc/Pro/class-destination-s3.php:73
1464
  #: inc/class-destination-s3.php:1142
 
1465
  #, fuzzy
1466
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1467
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Токио)"
1468
 
1469
  #: inc/class-destination-s3.php:40
1470
  #: inc/pro/class-destination-s3.php:25
1471
- #: inc/Pro/class-destination-s3.php:78
1472
  #: inc/class-destination-s3.php:1146
 
1473
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1474
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Токио)"
1475
 
1476
  #: inc/class-destination-s3.php:41
1477
  #: inc/pro/class-destination-s3.php:26
1478
- #: inc/Pro/class-destination-s3.php:83
1479
  #: inc/class-destination-s3.php:1150
 
1480
  #, fuzzy
1481
  msgid "Amazon S3: Asia Pacific (Seoul)"
1482
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сидней)"
1483
 
1484
  #: inc/class-destination-s3.php:42
1485
  #: inc/pro/class-destination-s3.php:27
1486
- #: inc/Pro/class-destination-s3.php:88
1487
  #: inc/class-destination-s3.php:1154
 
1488
  msgid "Amazon S3: Asia Pacific (Singapore)"
1489
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сингапур)"
1490
 
1491
  #: inc/class-destination-s3.php:43
1492
  #: inc/pro/class-destination-s3.php:28
1493
- #: inc/Pro/class-destination-s3.php:93
1494
  #: inc/class-destination-s3.php:1158
 
1495
  msgid "Amazon S3: Asia Pacific (Sydney)"
1496
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сидней)"
1497
 
1498
  #: inc/class-destination-s3.php:44
1499
  #: inc/pro/class-destination-s3.php:29
1500
- #: inc/Pro/class-destination-s3.php:98
1501
  #: inc/class-destination-s3.php:1162
 
1502
  msgid "Amazon S3: South America (Sao Paulo)"
1503
  msgstr "Amazon S3: Южная Америка (Сан-Паулу)"
1504
 
1505
  #: inc/class-destination-s3.php:45
1506
  #: inc/pro/class-destination-s3.php:30
1507
- #: inc/Pro/class-destination-s3.php:103
1508
  #: inc/class-destination-s3.php:1166
 
1509
  msgid "Amazon S3: China (Beijing)"
1510
  msgstr "Amazon S3: Китай (Пекин)"
1511
 
1512
  #: inc/class-destination-s3.php:46
1513
  #: inc/pro/class-destination-s3.php:31
1514
- #: inc/Pro/class-destination-s3.php:108
1515
  #: inc/class-destination-s3.php:1170
 
1516
  msgid "Google Storage: EU"
1517
  msgstr ""
1518
 
1519
  #: inc/class-destination-s3.php:47
1520
  #: inc/pro/class-destination-s3.php:32
1521
- #: inc/Pro/class-destination-s3.php:113
1522
  #: inc/class-destination-s3.php:1174
 
1523
  msgid "Google Storage: USA"
1524
  msgstr ""
1525
 
1526
  #: inc/class-destination-s3.php:48
1527
  #: inc/pro/class-destination-s3.php:33
1528
- #: inc/Pro/class-destination-s3.php:118
1529
  #: inc/class-destination-s3.php:1178
 
1530
  msgid "Google Storage: Asia"
1531
  msgstr ""
1532
 
1533
  #: inc/class-destination-s3.php:49
1534
  #: inc/pro/class-destination-s3.php:34
1535
- #: inc/Pro/class-destination-s3.php:123
1536
  #: inc/class-destination-s3.php:1182
 
1537
  msgid "Dream Host Cloud Storage"
1538
  msgstr "Dream Host Cloud Storage"
1539
 
@@ -1549,15 +1549,15 @@ msgstr "Ключи доступа S3"
1549
 
1550
  #: inc/class-destination-s3.php:65
1551
  #: inc/pro/class-destination-glacier.php:54
1552
- #: inc/Pro/class-destination-glacier.php:54
1553
  #: inc/class-destination-s3.php:121
 
1554
  msgid "Access Key"
1555
  msgstr "Ключ доступа"
1556
 
1557
  #: inc/class-destination-s3.php:72
1558
  #: inc/pro/class-destination-glacier.php:61
1559
- #: inc/Pro/class-destination-glacier.php:61
1560
  #: inc/class-destination-s3.php:135
 
1561
  msgid "Secret Key"
1562
  msgstr "Секретный ключ"
1563
 
@@ -1625,8 +1625,8 @@ msgstr "Сохранить зашифрованные файлы на стор
1625
 
1626
  #: inc/class-destination-s3.php:224
1627
  #: inc/pro/class-destination-glacier.php:168
1628
- #: inc/Pro/class-destination-glacier.php:168
1629
  #: inc/class-destination-s3.php:361
 
1630
  msgid "Missing secret access key!"
1631
  msgstr "Отсутствует секретный ключ доступа!"
1632
 
@@ -1642,8 +1642,8 @@ msgstr "Bucket %1$s создан."
1642
 
1643
  #: inc/class-destination-s3.php:348
1644
  #: inc/pro/class-destination-s3.php:147
1645
- #: inc/Pro/class-destination-s3.php:285
1646
  #: inc/class-destination-s3.php:520
 
1647
  msgid " %s is not a valid bucket name."
1648
  msgstr " %s недопустимое имя bucket "
1649
 
@@ -1653,12 +1653,12 @@ msgstr " %s недопустимое имя bucket "
1653
  #: inc/class-destination-s3.php:610
1654
  #: inc/class-destination-s3.php:670
1655
  #: inc/pro/class-destination-s3.php:337
1656
- #: inc/Pro/class-destination-s3.php:623
1657
  #: inc/class-destination-s3.php:570
1658
  #: inc/class-destination-s3.php:868
1659
  #: inc/class-destination-s3.php:936
1660
  #: inc/class-destination-s3.php:995
1661
  #: inc/class-destination-s3.php:1006
 
1662
  msgid "S3 Service API: %s"
1663
  msgstr "API сервиса S3: %s"
1664
 
@@ -1669,15 +1669,15 @@ msgstr "%d. Попытка отправить файл резервной коп
1669
 
1670
  #: inc/class-destination-s3.php:470
1671
  #: inc/pro/class-destination-s3.php:188
1672
- #: inc/Pro/class-destination-s3.php:383
1673
  #: inc/class-destination-s3.php:803
 
1674
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1675
  msgstr "Подключено к S3 Bucket \"%1$s\" in %2$s"
1676
 
1677
  #: inc/class-destination-s3.php:473
1678
  #: inc/pro/class-destination-s3.php:191
1679
- #: inc/Pro/class-destination-s3.php:391
1680
  #: inc/class-destination-s3.php:808
 
1681
  msgid "S3 Bucket \"%s\" does not exist!"
1682
  msgstr "S3 Bucket \"%s\" не существует!"
1683
 
@@ -1698,8 +1698,8 @@ msgstr "Начало загрузки на сервис S3&#160;&hellip;"
1698
 
1699
  #: inc/class-destination-s3.php:601
1700
  #: inc/pro/class-destination-glacier.php:444
1701
- #: inc/Pro/class-destination-glacier.php:446
1702
  #: inc/class-destination-s3.php:972
 
1703
  msgid "Backup transferred to %s."
1704
  msgstr "Передано %s резервной копии"
1705
 
@@ -1740,9 +1740,9 @@ msgstr "Email адрес:"
1740
  #: inc/pro/class-destination-ftp.php:29
1741
  #: inc/pro/class-destination-sugarsync.php:20
1742
  #: inc/pro/class-jobtype-dbdump.php:126
1743
- #: inc/Pro/class-jobtype-dbdump.php:126
1744
  #: inc/Pro/class-destination-ftp.php:47
1745
  #: inc/Pro/class-destination-sugarsync.php:20
 
1746
  msgid "Password:"
1747
  msgstr "Пароль:"
1748
 
@@ -1921,75 +1921,75 @@ msgid "BackWPup jobs helper"
1921
  msgstr "Помощник заданий BackWPup"
1922
 
1923
  #: inc/class-job.php:263
1924
- #: inc/class-job.php:269
1925
  msgid "Starting job"
1926
  msgstr "Запуск задания"
1927
 
1928
  #: inc/class-job.php:278
1929
- #: inc/class-job.php:284
1930
  msgid "Job Start"
1931
  msgstr "Запуск задания"
1932
 
1933
  #: inc/class-job.php:298
1934
- #: inc/class-job.php:304
1935
  msgid "Creates manifest file"
1936
  msgstr "Создает файл манифеста"
1937
 
1938
  #: inc/class-job.php:320
1939
- #: inc/class-job.php:326
1940
  msgid "Creates archive"
1941
  msgstr "Создает архив"
1942
 
1943
  #: inc/class-job.php:360
1944
- #: inc/class-job.php:373
1945
  msgid "End of Job"
1946
  msgstr "Конец задания"
1947
 
1948
  #: inc/class-job.php:377
1949
- #: inc/class-job.php:395
1950
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1951
  msgstr "Журнал BackWPup для %1$s из %2$s в %3$s"
1952
 
1953
  #: inc/class-job.php:394
1954
- #: inc/class-job.php:412
1955
  msgctxt "Plugin name; Plugin Version; plugin url"
1956
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1957
  msgstr ""
1958
 
1959
  #: inc/class-job.php:395
1960
- #: inc/class-job.php:413
1961
  msgctxt "WordPress Version; Blog url"
1962
  msgid "[INFO] WordPress %1$s on %2$s"
1963
  msgstr ""
1964
 
1965
  #: inc/class-job.php:396
1966
- #: inc/class-job.php:414
1967
  msgid "Normal"
1968
  msgstr ""
1969
 
1970
  #: inc/class-job.php:399
1971
- #: inc/class-job.php:417
1972
  msgid "Debug"
1973
  msgstr ""
1974
 
1975
  #: inc/class-job.php:402
1976
- #: inc/class-job.php:420
1977
  msgid "(translated)"
1978
  msgstr ""
1979
 
1980
  #: inc/class-job.php:404
1981
- #: inc/class-job.php:422
1982
  #, fuzzy
1983
  msgid "[INFO] Log Level: %1$s %2$s"
1984
  msgstr "[INFO] curl вер.: %1$s; %2$s"
1985
 
1986
  #: inc/class-job.php:409
1987
- #: inc/class-job.php:427
1988
  msgid "[INFO] BackWPup job: %1$s"
1989
  msgstr ""
1990
 
1991
  #: inc/class-job.php:412
1992
- #: inc/class-job.php:430
1993
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1994
  msgstr ""
1995
 
@@ -1997,151 +1997,151 @@ msgstr ""
1997
  #: inc/class-page-backwpup.php:323
1998
  #: inc/class-page-jobs.php:282
1999
  #: inc/class-page-jobs.php:291
2000
- #: inc/class-job.php:444
2001
  msgid "Not scheduled!"
2002
  msgstr "Не запланировано!"
2003
 
2004
  #: inc/class-job.php:430
2005
  #: inc/class-job.php:440
2006
- #: inc/class-job.php:448
2007
- #: inc/class-job.php:458
2008
  msgid "[INFO] Cron: %s; Next: %s "
2009
  msgstr ""
2010
 
2011
  #: inc/class-job.php:433
2012
- #: inc/class-job.php:451
2013
  msgid "[INFO] BackWPup job start with link is active"
2014
  msgstr "[INFO] Задание BackWPup запущено из активной ссылки"
2015
 
2016
  #: inc/class-job.php:435
2017
- #: inc/class-job.php:453
2018
  msgid "[INFO] BackWPup job start with EasyCron.com"
2019
  msgstr ""
2020
 
2021
  #: inc/class-job.php:443
2022
- #: inc/class-job.php:461
2023
  msgid "[INFO] BackWPup no automatic job start configured"
2024
  msgstr "[INFO] Автоматический запуск задания BackWPup не настроен"
2025
 
2026
  #: inc/class-job.php:447
2027
- #: inc/class-job.php:465
2028
  msgid "[INFO] BackWPup job started from wp-cron"
2029
  msgstr "[INFO] Задание BackWPupзапущено из wp-cron"
2030
 
2031
  #: inc/class-job.php:449
2032
- #: inc/class-job.php:467
2033
  msgid "[INFO] BackWPup job started manually"
2034
  msgstr "[INFO] Задание BackWPup запущено вручную"
2035
 
2036
  #: inc/class-job.php:451
2037
- #: inc/class-job.php:469
2038
  msgid "[INFO] BackWPup job started from external url"
2039
  msgstr "[INFO] Задание BackWPup запущено из внешнего url"
2040
 
2041
  #: inc/class-job.php:453
2042
- #: inc/class-job.php:471
2043
  msgid "[INFO] BackWPup job started form commandline interface"
2044
  msgstr "[INFO] Задание BackWPup запущено из интерфейса командной строки"
2045
 
2046
  #: inc/class-job.php:462
2047
- #: inc/class-job.php:480
2048
  msgid "[INFO] PHP ver.:"
2049
  msgstr "[INFO] PHP вер.:"
2050
 
2051
  #: inc/class-job.php:463
2052
- #: inc/class-job.php:481
2053
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2054
  msgstr "[INFO] Максимальное время исполнения сценария PHP %1$d сек."
2055
 
2056
  #: inc/class-job.php:467
2057
- #: inc/class-job.php:485
2058
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2059
  msgstr "[INFO] Время перезапуска сценария установлено в %1$d сек."
2060
 
2061
  #: inc/class-job.php:470
2062
- #: inc/class-job.php:488
2063
  msgid "[INFO] MySQL ver.: %s"
2064
  msgstr "[INFO] MySQL вер.: %s"
2065
 
2066
  #: inc/class-job.php:472
2067
- #: inc/class-job.php:490
2068
  msgid "[INFO] Web Server: %s"
2069
  msgstr "[INFO] Web сервер: %s"
2070
 
2071
  #: inc/class-job.php:476
2072
- #: inc/class-job.php:494
2073
  msgid "[INFO] curl ver.: %1$s; %2$s"
2074
  msgstr "[INFO] curl вер.: %1$s; %2$s"
2075
 
2076
  #: inc/class-job.php:478
2077
- #: inc/class-job.php:496
2078
  msgid "[INFO] Temp folder is: %s"
2079
  msgstr "[INFO] Временная папка: %s"
2080
 
2081
  #: inc/class-job.php:485
2082
- #: inc/class-job.php:503
2083
  msgid "[INFO] Logfile is: %s"
2084
  msgstr "[INFO] Журнал: %s"
2085
 
2086
  #: inc/class-job.php:492
2087
- #: inc/class-job.php:510
2088
  msgid "[INFO] Backup file is: %s"
2089
  msgstr "[INFO] Файл резервной копии: %s"
2090
 
2091
  #: inc/class-job.php:494
2092
- #: inc/class-job.php:512
2093
  msgid "[INFO] Backup type is: %s"
2094
  msgstr "[INFO] Тип резервной копии: %s"
2095
 
2096
  #: inc/class-job.php:502
2097
- #: inc/class-job.php:520
2098
  msgid "Could not write log file"
2099
  msgstr ""
2100
 
2101
  #: inc/class-job.php:514
2102
- #: inc/class-job.php:532
2103
  msgid "No destination correctly defined for backup! Please correct job settings."
2104
  msgstr "Не определено место хранения для резервных копий! Пожалуйста, исправьте настройки задания."
2105
 
2106
  #: inc/class-job.php:644
2107
- #: inc/class-job.php:628
2108
  msgid "Cannot write progress to working file. Job will be aborted."
2109
  msgstr "Не удается записать ход выполнения в рабочий файл. Задание будет прервано."
2110
 
2111
  #: inc/class-job.php:716
2112
  #: inc/class-page-jobs.php:786
2113
- #: inc/class-job.php:700
2114
  msgid "WARNING:"
2115
  msgstr "ПРЕДУПРЕЖДЕНИЕ:"
2116
 
2117
  #: inc/class-job.php:725
2118
  #: inc/class-page-jobs.php:784
2119
- #: inc/class-job.php:709
2120
  msgid "ERROR:"
2121
  msgstr "ОШИБКА:"
2122
 
2123
  #: inc/class-job.php:729
2124
- #: inc/class-job.php:713
2125
  msgid "DEPRECATED:"
2126
  msgstr "УСТАРЕЛО:"
2127
 
2128
  #: inc/class-job.php:732
2129
- #: inc/class-job.php:716
2130
  msgid "STRICT NOTICE:"
2131
  msgstr "ОСОБОЕ ВНИМАНИЕ:"
2132
 
2133
  #: inc/class-job.php:737
2134
- #: inc/class-job.php:721
2135
  msgid "RECOVERABLE ERROR:"
2136
  msgstr "НЕУСТРАНИМАЯ ОШИБКА:"
2137
 
2138
  #: inc/class-job.php:985
2139
- #: inc/class-job.php:972
2140
  msgid "Aborted by user!"
2141
  msgstr "Прервано пользователем!"
2142
 
2143
  #: inc/class-job.php:1019
2144
- #: inc/class-job.php:1005
2145
  msgid "One old log deleted"
2146
  msgid_plural "%d old logs deleted"
2147
  msgstr[0] "Удален %d резервный файл "
@@ -2150,292 +2150,292 @@ msgstr[2] "Удалено %d резервных файлов"
2150
 
2151
  #: inc/class-job.php:1026
2152
  #: inc/class-page-jobs.php:784
2153
- #: inc/class-job.php:1012
2154
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2155
  msgstr "Задание завершилось с ошибками за %s сек. Вы должны устранить ошибки для правильного выполнения."
2156
 
2157
  #: inc/class-job.php:1028
2158
- #: inc/class-job.php:1014
2159
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2160
  msgstr "Задание выполнено с предупреждениями за %s сек. Пожалуйста, устраните их для правильного выполнения."
2161
 
2162
  #: inc/class-job.php:1030
2163
  #: inc/class-page-jobs.php:788
2164
- #: inc/class-job.php:1016
2165
  msgid "Job done in %s seconds."
2166
  msgstr "Задание выполнено за %s сек."
2167
 
2168
  #: inc/class-job.php:1074
2169
- #: inc/class-job.php:1060
2170
  msgid "SUCCESSFUL"
2171
  msgstr "УСПЕШНО"
2172
 
2173
  #: inc/class-job.php:1076
2174
- #: inc/class-job.php:1062
2175
  msgid "WARNING"
2176
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
2177
 
2178
  #: inc/class-job.php:1079
2179
- #: inc/class-job.php:1065
2180
  msgid "ERROR"
2181
  msgstr "ОШИБКА"
2182
 
2183
  #: inc/class-job.php:1082
2184
- #: inc/class-job.php:1068
2185
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2186
  msgstr "[%3$s] журнал BackWPup %1$s: %2$s"
2187
 
2188
  #: inc/class-job.php:1188
2189
- #: inc/class-job.php:1180
2190
  msgid "Restart after %1$d seconds."
2191
  msgstr "Перезапуск через %1$d сек."
2192
 
2193
  #: inc/class-job.php:1190
2194
- #: inc/class-job.php:1182
2195
  #, fuzzy
2196
  msgid "Restart after getting signal."
2197
  msgstr "Перезапуск через %1$d сек."
2198
 
2199
  #: inc/class-job.php:1363
2200
- #: inc/class-job.php:1357
2201
  msgid "Job restarts due to inactivity for more than 5 minutes."
2202
  msgstr "Задание перезапущено из-за неактивности в течение более 5 минут."
2203
 
2204
  #: inc/class-job.php:1461
2205
- #: inc/class-job.php:1455
2206
  msgid "Step aborted: too many attempts!"
2207
  msgstr "Шаг прерван: слишком много попыток!"
2208
 
2209
  #: inc/class-job.php:1532
2210
- #: inc/class-job.php:1528
2211
  msgid "%d. Trying to create backup archive &hellip;"
2212
  msgstr "%d. Попытка создать архив резервной копии&#160;&hellip;"
2213
 
2214
  #: inc/class-job.php:1540
2215
- #: inc/class-job.php:1536
2216
  msgctxt "Archive compression method"
2217
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2218
  msgstr "Сжатие файлов с использованием %s. Пожалуйста, будьте терпеливы это может занять некоторое время."
2219
 
2220
  #: inc/class-job.php:1547
2221
- #: inc/class-job.php:1544
2222
  msgid "Adding Extra files to Archive"
2223
  msgstr ""
2224
 
2225
  #: inc/class-job.php:1559
2226
  #: inc/class-job.php:1619
2227
- #: inc/class-job.php:1555
2228
- #: inc/class-job.php:1626
2229
  msgid "Cannot create backup archive correctly. Aborting creation."
2230
  msgstr "Невозможно правильно создать резервный архив. Произошло прерывание."
2231
 
2232
  #: inc/class-job.php:1575
2233
- #: inc/class-job.php:1571
2234
  msgid "Archiving Folder: %s"
2235
  msgstr ""
2236
 
2237
  #: inc/class-job.php:1629
2238
- #: inc/class-job.php:1636
2239
  msgid "Backup archive created."
2240
  msgstr "Резервная копия создана."
2241
 
2242
  #: inc/class-job.php:1643
2243
- #: inc/class-job.php:1650
2244
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2245
  msgstr ""
2246
 
2247
  #: inc/class-job.php:1646
2248
- #: inc/class-job.php:1653
2249
  msgid "Archive size is %s."
2250
  msgstr "Размер архива %s."
2251
 
2252
  #: inc/class-job.php:1649
2253
- #: inc/class-job.php:1656
2254
  msgid "%1$d Files with %2$s in Archive."
2255
  msgstr "%1$d файлов с %2$s в архиве."
2256
 
2257
  #: inc/class-job.php:1698
2258
- #: inc/class-job.php:1831
2259
  #, fuzzy
2260
  msgctxt "Folder name"
2261
  msgid "Folder %s does not exist"
2262
  msgstr "Папка %s не существует"
2263
 
2264
  #: inc/class-job.php:1703
2265
- #: inc/class-job.php:1837
2266
  #, fuzzy
2267
  msgctxt "Folder name"
2268
  msgid "Folder %s is not readable"
2269
  msgstr "Папка \"%s\" недоступна для чтения!"
2270
 
2271
  #: inc/class-job.php:1725
2272
- #: inc/class-job.php:1860
2273
  msgid "Link \"%s\" not following."
2274
  msgstr "Не корректная ссылка \"%s\"."
2275
 
2276
  #: inc/class-job.php:1727
2277
- #: inc/class-job.php:1862
2278
  msgid "File \"%s\" is not readable!"
2279
  msgstr "Файл \"%s\" не доступен для чтения!"
2280
 
2281
  #: inc/class-job.php:1731
2282
- #: inc/class-job.php:1866
2283
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2284
  msgstr "Размер файла “%s” не может быть восстановлен. Возможно файл слишком большой и не будут добавлен в очередь."
2285
 
2286
  #: inc/class-job.php:1814
2287
- #: inc/class-job.php:1949
2288
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2289
  msgstr "%d. Попытка создать файл манифеста&#160;&hellip;"
2290
 
2291
  #: inc/class-job.php:1870
2292
- #: inc/class-job.php:2005
2293
  msgid "You may have noticed the manifest.json file in this archive."
2294
  msgstr "Обратите внимание на файл manifest.json в этом архиве."
2295
 
2296
  #: inc/class-job.php:1871
2297
- #: inc/class-job.php:2006
2298
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2299
  msgstr "manifest.json может понадобиться для последующего восстановления резервной копии из этого архива."
2300
 
2301
  #: inc/class-job.php:1872
2302
- #: inc/class-job.php:2007
2303
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2304
  msgstr "Пожалуйста, оставьте manifest.json нетронутым и на месте. В противном случае сохранность будет нарушена."
2305
 
2306
  #: inc/class-job.php:1882
2307
- #: inc/class-job.php:2017
2308
  msgid "Added manifest.json file with %1$s to backup file list."
2309
  msgstr "Добавлен файл manifest.json с %1$s в список файлов резервных копий."
2310
 
2311
  #: inc/class-job.php:1921
2312
- #: inc/class-job.php:2056
2313
  msgid "Wrong BackWPup JobID"
2314
  msgstr "Неправильный BackWPup JobID"
2315
 
2316
  #: inc/class-job.php:1934
2317
- #: inc/class-job.php:2069
2318
  msgid "A BackWPup job is already running"
2319
  msgstr "Задание BackWPup уже запущено"
2320
 
2321
  #: inc/class-job.php:2302
2322
- #: inc/class-job.php:2482
2323
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2324
  msgid "Hangup detected on controlling terminal or death of controlling process"
2325
  msgstr ""
2326
 
2327
  #: inc/class-job.php:2306
2328
- #: inc/class-job.php:2486
2329
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Interrupt from keyboard"
2331
  msgstr ""
2332
 
2333
  #: inc/class-job.php:2310
2334
- #: inc/class-job.php:2490
2335
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Quit from keyboard"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2314
2340
- #: inc/class-job.php:2494
2341
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Illegal Instruction"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2318
2346
- #: inc/class-job.php:2498
2347
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Abort signal from abort(3)"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2322
2352
- #: inc/class-job.php:2502
2353
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Bus error (bad memory access)"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2326
2358
- #: inc/class-job.php:2506
2359
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2360
  msgid "Floating point exception"
2361
  msgstr ""
2362
 
2363
  #: inc/class-job.php:2330
2364
- #: inc/class-job.php:2510
2365
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Invalid memory reference"
2367
  msgstr ""
2368
 
2369
  #: inc/class-job.php:2334
2370
- #: inc/class-job.php:2514
2371
  #, fuzzy
2372
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2373
  msgid "Termination signal"
2374
  msgstr "Место"
2375
 
2376
  #: inc/class-job.php:2338
2377
- #: inc/class-job.php:2518
2378
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2379
  msgid "Stack fault on coprocessor"
2380
  msgstr ""
2381
 
2382
  #: inc/class-job.php:2342
2383
- #: inc/class-job.php:2522
2384
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2385
  msgid "User-defined signal 1"
2386
  msgstr ""
2387
 
2388
  #: inc/class-job.php:2346
2389
- #: inc/class-job.php:2526
2390
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2391
  msgid "User-defined signal 2"
2392
  msgstr ""
2393
 
2394
  #: inc/class-job.php:2350
2395
- #: inc/class-job.php:2530
2396
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2397
  msgid "Urgent condition on socket"
2398
  msgstr ""
2399
 
2400
  #: inc/class-job.php:2354
2401
- #: inc/class-job.php:2534
2402
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2403
  msgid "CPU time limit exceeded"
2404
  msgstr ""
2405
 
2406
  #: inc/class-job.php:2358
2407
- #: inc/class-job.php:2538
2408
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "File size limit exceeded"
2410
  msgstr ""
2411
 
2412
  #: inc/class-job.php:2362
2413
- #: inc/class-job.php:2542
2414
  #, fuzzy
2415
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2416
  msgid "Power failure"
2417
  msgstr "FTP: Вход не выполнен!"
2418
 
2419
  #: inc/class-job.php:2366
2420
- #: inc/class-job.php:2546
2421
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2422
  msgid "Bad argument to routine"
2423
  msgstr ""
2424
 
2425
  #: inc/class-job.php:2373
2426
- #: inc/class-job.php:2553
2427
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2428
  msgstr ""
2429
 
2430
  #: inc/class-job.php:2407
2431
  #: inc/class-job.php:2420
2432
- #: inc/class-job.php:2587
2433
- #: inc/class-job.php:2600
2434
  msgid "System: %s"
2435
  msgstr ""
2436
 
2437
  #: inc/class-job.php:2435
2438
- #: inc/class-job.php:2615
2439
  msgid "Exception caught in %1$s: %2$s"
2440
  msgstr "Исключения в %1$s: %2$s"
2441
 
@@ -2735,7 +2735,7 @@ msgstr "XML экспорт"
2735
 
2736
  #: inc/class-jobtype-wpexp.php:14
2737
  #: inc/class-page-about.php:472
2738
- #: inc/class-page-about.php:474
2739
  msgid "WordPress XML export"
2740
  msgstr "XML экспорт WordPress"
2741
 
@@ -2972,281 +2972,274 @@ msgid "New Job"
2972
  msgstr "Новое задание"
2973
 
2974
  #: inc/class-page-about.php:369
2975
- #: inc/class-page-about.php:371
2976
  msgid "Welcome to BackWPup Pro"
2977
  msgstr "Добро пожаловать в BackWPup Pro"
2978
 
2979
  #: inc/class-page-about.php:370
2980
  #: inc/class-page-backwpup.php:75
2981
- #: inc/class-page-about.php:372
2982
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2983
  msgstr "Мастер заданий BackWPup создаёт план и расписание резервного копирования на одном дыхании."
2984
 
2985
- #: inc/class-page-about.php:371
2986
- #: inc/class-page-about.php:384
2987
- #: inc/class-page-about.php:373
2988
- #: inc/class-page-about.php:386
2989
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2990
- msgstr "Используйте архивы резервных копий, чтобы сохранить все установки WordPress включая<code>/wp-content/</code>. Отправьте их на внешний сервис резервного копирования, если Вы не хотите сохранять резервные копии на том же сервере. Используйте такие инструменты как phpMyAdmin или плагин <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> для восстановления файлов резервной копии базы данных."
2991
-
2992
  #: inc/class-page-about.php:372
2993
- #: inc/class-page-about.php:374
2994
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2995
  msgstr "Готовы <a href=\"%1$s\">настроить задание резервного копирования</a>? Вы можете <a href=\"%2$s\">использовать мастер</a> или запланировать резервное копирование в экспертном режиме."
2996
 
2997
  #: inc/class-page-about.php:382
2998
- #: inc/class-page-about.php:384
2999
  msgid "Welcome to BackWPup"
3000
  msgstr "Добро пожаловать в BackWPup"
3001
 
3002
  #: inc/class-page-about.php:385
3003
- #: inc/class-page-about.php:387
3004
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
3005
  msgstr "Готовы настроить задание резервного копирования? Используйте мастер, чтобы запланировать, что Вы хотите сохранить."
3006
 
3007
  #: inc/class-page-about.php:398
3008
- #: inc/class-page-about.php:400
3009
  msgid "Save your database"
3010
  msgstr "Сохранять базу данных"
3011
 
3012
  #: inc/class-page-about.php:401
3013
- #: inc/class-page-about.php:403
3014
  msgid "Save your database regularly"
3015
  msgstr "Сохранять базу данных регулярно"
3016
 
3017
  #: inc/class-page-about.php:402
3018
- #: inc/class-page-about.php:404
3019
  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."
3020
  msgstr "Используя BackWPup Вы можете запланировать автоматический запуск резервного копирования базы данных. Используя один архивный файл, Вы можете восстановить базу данных. <a href=\"%s\">Создайте задание резервного копирования</a>, и Вы никогда не забудете о нем. Существует также возможность восстановления и оптимизации базы данных после каждого резервного копирования."
3021
 
3022
  #: inc/class-page-about.php:407
3023
  #: inc/class-page-about.php:411
3024
- #: inc/class-page-about.php:409
3025
- #: inc/class-page-about.php:413
3026
  msgid "WordPress XML Export"
3027
  msgstr "Экспорт XML WordPress "
3028
 
3029
  #: inc/class-page-about.php:408
3030
- #: inc/class-page-about.php:410
3031
  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."
3032
  msgstr "Вы можете выбрать встроенный формат экспорта WordPress в дополнение или исключительно для сохранения ваших данных. Автоматическое резервное копирование конечно тоже работает. Преимущество состоит в том: вы можете импортировать эти файлы в блог, используя стандартный импортер WordPress."
3033
 
3034
  #: inc/class-page-about.php:416
3035
- #: inc/class-page-about.php:418
3036
  msgid "Save all data from the webserver"
3037
  msgstr "Сохранить все данные с веб-сервера"
3038
 
3039
  #: inc/class-page-about.php:419
3040
- #: inc/class-page-about.php:421
3041
  msgid "Save all files"
3042
  msgstr "Сохранить все файлы"
3043
 
3044
  #: inc/class-page-about.php:420
3045
- #: inc/class-page-about.php:422
3046
  msgid "You can backup 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."
3047
  msgstr "Вы можете создать резервную копию всех Ваших вложений, а также всех системных файлов, плагинов и тем в одном файле. Вы можете <a href=\"%s\">создать задание</a> для обновления резервной копии файловой системы только тогда, когда файлы изменены."
3048
 
3049
  #: inc/class-page-about.php:425
3050
  #: inc/class-page-about.php:429
3051
- #: inc/class-page-about.php:427
3052
- #: inc/class-page-about.php:431
3053
  msgid "Security!"
3054
  msgstr "Безопасность превыше всего!"
3055
 
3056
  #: inc/class-page-about.php:426
3057
- #: inc/class-page-about.php:428
3058
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3059
  msgstr "По умолчанию все зашифровано: подключение к внешним услугам, локальным файлам и доступ к каталогам."
3060
 
3061
  #: inc/class-page-about.php:434
3062
  #: inc/class-page-about.php:437
3063
- #: inc/class-page-about.php:436
3064
- #: inc/class-page-about.php:439
3065
  msgid "Cloud Support"
3066
  msgstr "Поддержка облака"
3067
 
3068
  #: inc/class-page-about.php:438
3069
- #: inc/class-page-about.php:440
3070
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3071
  msgstr "BackWPup поддерживает несколько облачных сервисов параллельно. Это гарантирует, что резервные копии являются избыточными."
3072
 
3073
  #: inc/class-page-about.php:444
3074
- #: inc/class-page-about.php:446
3075
  msgid "Features / differences between Free and Pro"
3076
  msgstr "Возможности / различия между Free и Pro"
3077
 
3078
  #: inc/class-page-about.php:447
3079
- #: inc/class-page-about.php:449
3080
  msgid "Features"
3081
  msgstr "Возможности"
3082
 
3083
  #: inc/class-page-about.php:448
3084
- #: inc/class-page-about.php:450
3085
  msgid "FREE"
3086
  msgstr "FREE"
3087
 
3088
  #: inc/class-page-about.php:449
3089
- #: inc/class-page-about.php:451
3090
  msgid "PRO"
3091
  msgstr "PRO"
3092
 
3093
  #: inc/class-page-about.php:452
3094
- #: inc/class-page-about.php:454
3095
  msgid "Complete database backup"
3096
  msgstr "Полное резервное копирование базы данных"
3097
 
3098
  #: inc/class-page-about.php:457
3099
- #: inc/class-page-about.php:459
3100
  msgid "Complete file backup"
3101
  msgstr "Полное резервное копирование файлов"
3102
 
3103
  #: inc/class-page-about.php:462
3104
- #: inc/class-page-about.php:464
3105
  msgid "Database check"
3106
  msgstr "Проверка база данных "
3107
 
3108
  #: inc/class-page-about.php:467
3109
- #: inc/class-page-about.php:469
3110
  msgid "Data compression"
3111
  msgstr "Сжатие данных"
3112
 
3113
  #: inc/class-page-about.php:477
3114
- #: inc/class-page-about.php:479
3115
  msgid "List of installed plugins"
3116
  msgstr "Список установленных плагинов"
3117
 
3118
  #: inc/class-page-about.php:482
3119
- #: inc/class-page-about.php:484
3120
  msgid "Backup archives management"
3121
  msgstr "Управление резервными копиями "
3122
 
3123
  #: inc/class-page-about.php:487
3124
- #: inc/class-page-about.php:489
3125
  msgid "Log file management"
3126
  msgstr "Управление файлами журналов"
3127
 
3128
  #: inc/class-page-about.php:492
3129
- #: inc/class-page-about.php:494
3130
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3131
  msgstr "Запуск заданий в WP-Cron, URL, системе, бэкенд или WP-CLI"
3132
 
3133
  #: inc/class-page-about.php:497
3134
- #: inc/class-page-about.php:499
3135
  msgid "Log report via email"
3136
  msgstr "Отчет журнала по email"
3137
 
3138
  #: inc/class-page-about.php:502
3139
- #: inc/class-page-about.php:504
3140
  msgid "Backup to Microsoft Azure"
3141
  msgstr "Резервное копирование на Microsoft Azure"
3142
 
3143
  #: inc/class-page-about.php:507
3144
- #: inc/class-page-about.php:509
3145
  msgid "Backup as email"
3146
  msgstr "Резервное копирование как email"
3147
 
3148
  #: inc/class-page-about.php:512
3149
- #: inc/class-page-about.php:514
3150
  #, fuzzy
3151
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3152
  msgstr "Резервное копирование на сервис S3 услуг <small>(Amazon, Google Storage, Hosteurope и др.)</small>"
3153
 
3154
  #: inc/class-page-about.php:527
3155
- #: inc/class-page-about.php:529
3156
  msgid "Backup to FTP server"
3157
  msgstr "Резервное копирование на FTP-сервер"
3158
 
3159
  #: inc/class-page-about.php:532
3160
- #: inc/class-page-about.php:534
3161
  msgid "Backup to your web space"
3162
  msgstr "Резервное копирование в Ваше веб-пространство"
3163
 
3164
  #: inc/class-page-about.php:542
3165
  #: inc/pro/class-pro.php:112
 
3166
  #: inc/Pro/class-pro.php:152
3167
- #: inc/class-page-about.php:544
3168
  msgid "Backup to Google Drive"
3169
  msgstr "Резервное копирование на Google Диск"
3170
 
3171
  #: inc/class-page-about.php:547
3172
  #: inc/pro/class-pro.php:93
 
3173
  #: inc/Pro/class-pro.php:131
3174
- #: inc/class-page-about.php:549
3175
  msgid "Backup to Amazon Glacier"
3176
  msgstr "Резервное копирование на Amazon Glacier"
3177
 
3178
  #: inc/class-page-about.php:552
3179
- #: inc/class-page-about.php:554
3180
  msgid "Custom API keys for DropBox and SugarSync"
3181
  msgstr "Пользовательские ключи API для DropBox и SugarSync"
3182
 
3183
  #: inc/class-page-about.php:557
3184
- #: inc/class-page-about.php:559
3185
  msgid "XML database backup as PHPMyAdmin schema"
3186
  msgstr "XML резервной копии базы данных, как PHPMyAdmin схемы"
3187
 
3188
  #: inc/class-page-about.php:562
3189
- #: inc/class-page-about.php:564
3190
  msgid "Database backup as mysqldump per command line"
3191
  msgstr "Резервное копирование базы данных, как mysqldump в командной строке"
3192
 
3193
  #: inc/class-page-about.php:567
3194
- #: inc/class-page-about.php:569
3195
  msgid "Database backup for additional MySQL databases"
3196
  msgstr "Резервное копирование базы данных для дополнительных баз данных MySQL"
3197
 
3198
  #: inc/class-page-about.php:572
3199
- #: inc/class-page-about.php:574
3200
  msgid "Import and export job settings as XML"
3201
  msgstr "Импорт и экспорт настроек заданий как XML"
3202
 
3203
  #: inc/class-page-about.php:577
3204
- #: inc/class-page-about.php:579
3205
  msgid "Wizard for system tests"
3206
  msgstr "Мастер для проверки системы"
3207
 
3208
  #: inc/class-page-about.php:582
3209
- #: inc/class-page-about.php:584
3210
  msgid "Wizard for scheduled backup jobs"
3211
  msgstr "Мастер для запланированных заданий резервного копирования"
3212
 
3213
  #: inc/class-page-about.php:587
3214
- #: inc/class-page-about.php:589
3215
  msgid "Wizard to import settings and backup jobs"
3216
  msgstr "Мастер импорта настроек и заданий резервного копирования"
3217
 
3218
  #: inc/class-page-about.php:592
3219
- #: inc/class-page-about.php:594
3220
  msgid "Differential backup of changed directories to Dropbox"
3221
  msgstr "Дифференциальное резервное копирование измененных каталогов Dropbox"
3222
 
3223
  #: inc/class-page-about.php:597
3224
- #: inc/class-page-about.php:599
3225
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3226
  msgstr "Дифференциальное резервное копирование измененных каталогов Файлов Rackspace Cloud"
3227
 
3228
  #: inc/class-page-about.php:602
3229
- #: inc/class-page-about.php:604
3230
  msgid "Differential backup of changed directories to S3"
3231
  msgstr "Дифференциальное резервное копирование измененных каталогов S3"
3232
 
3233
  #: inc/class-page-about.php:607
3234
- #: inc/class-page-about.php:609
3235
  msgid "Differential backup of changed directories to MS Azure"
3236
  msgstr "Дифференциальное резервное копирование измененных каталогов MS Azure"
3237
 
3238
  #: inc/class-page-about.php:612
3239
- #: inc/class-page-about.php:639
3240
  msgid "<strong>Premium support</strong>"
3241
  msgstr "<strong>Премиум-поддержка</strong>"
3242
 
3243
  #: inc/class-page-about.php:617
3244
- #: inc/class-page-about.php:644
3245
  msgid "<strong>Automatic updates</strong>"
3246
  msgstr "<strong>Автоматическое обновление</strong>"
3247
 
3248
  #: inc/class-page-about.php:624
3249
- #: inc/class-page-about.php:651
3250
  msgid "GET PRO"
3251
  msgstr "ПОЛУЧИТЬ PRO"
3252
 
@@ -3308,9 +3301,9 @@ msgstr ""
3308
  #: inc/class-page-logs.php:206
3309
  #: inc/class-page-backups.php:281
3310
  #: inc/class-page-backups.php:285
 
3311
  #: inc/class-page-settings.php:768
3312
  #: inc/class-page-settings.php:779
3313
- #: inc/class-page-logs.php:234
3314
  msgid "Download"
3315
  msgstr "Загрузить"
3316
 
@@ -3370,11 +3363,6 @@ msgctxt "Dashboard heading"
3370
  msgid "Restoring backups"
3371
  msgstr "Восстановление резервных копий"
3372
 
3373
- #: inc/class-page-backwpup.php:77
3374
- #: inc/class-page-backwpup.php:86
3375
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3376
- msgstr "С помощью одного архива резервной копии Вы можете восстановить установку. Используйте такие инструменты как PhpMyAdmin или плагин <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> для восстановления файлов резервной копии базы данных."
3377
-
3378
  #: inc/class-page-backwpup.php:78
3379
  #: inc/class-page-backwpup.php:87
3380
  msgctxt "Dashboard heading"
@@ -3609,8 +3597,8 @@ msgstr "%1$s в %2$s"
3609
 
3610
  #: inc/class-page-editjob.php:328
3611
  #: inc/class-page-settings.php:117
3612
- #: inc/class-page-settings.php:214
3613
  #: inc/class-page-editjob.php:337
 
3614
  msgid "General"
3615
  msgstr "Общие"
3616
 
@@ -3644,15 +3632,15 @@ msgstr "Задачи"
3644
 
3645
  #: inc/class-page-editjob.php:391
3646
  #: inc/pro/class-wizard-job.php:254
3647
- #: inc/Pro/class-wizard-job.php:254
3648
  #: inc/class-page-editjob.php:400
 
3649
  msgid "This job is a&#160;&hellip;"
3650
  msgstr "Это задание&#160;&hellip;"
3651
 
3652
  #: inc/class-page-editjob.php:394
3653
  #: inc/pro/class-wizard-job.php:257
3654
- #: inc/Pro/class-wizard-job.php:257
3655
  #: inc/class-page-editjob.php:403
 
3656
  msgid "Job tasks"
3657
  msgstr "Задачи"
3658
 
@@ -3665,10 +3653,10 @@ msgstr "Создание резервной копии"
3665
  #: inc/class-page-editjob.php:420
3666
  #: inc/pro/class-wizard-job.php:402
3667
  #: inc/pro/class-wizard-job.php:405
3668
- #: inc/Pro/class-wizard-job.php:402
3669
- #: inc/Pro/class-wizard-job.php:405
3670
  #: inc/class-page-editjob.php:426
3671
  #: inc/class-page-editjob.php:429
 
 
3672
  msgid "Backup type"
3673
  msgstr "Тип резервного копирования"
3674
 
@@ -3679,8 +3667,8 @@ msgstr "Синхронизация файла за файлом в место х
3679
 
3680
  #: inc/class-page-editjob.php:428
3681
  #: inc/pro/class-wizard-job.php:413
3682
- #: inc/Pro/class-wizard-job.php:413
3683
  #: inc/class-page-editjob.php:437
 
3684
  msgid "Create a backup archive"
3685
  msgstr "Создать архив"
3686
 
@@ -3780,17 +3768,17 @@ msgstr "Формат архива"
3780
  #: inc/class-page-editjob.php:476
3781
  #: inc/pro/class-wizard-job.php:426
3782
  #: inc/pro/class-wizard-job.php:429
3783
- #: inc/Pro/class-wizard-job.php:426
3784
- #: inc/Pro/class-wizard-job.php:429
3785
  #: inc/class-page-editjob.php:481
3786
  #: inc/class-page-editjob.php:483
 
 
3787
  msgid "Zip"
3788
  msgstr "Zip"
3789
 
3790
  #: inc/class-page-editjob.php:479
3791
  #: inc/pro/class-wizard-job.php:433
3792
- #: inc/Pro/class-wizard-job.php:433
3793
  #: inc/class-page-editjob.php:486
 
3794
  msgid "Tar"
3795
  msgstr "Tar"
3796
 
@@ -3798,10 +3786,10 @@ msgstr "Tar"
3798
  #: inc/class-page-editjob.php:483
3799
  #: inc/pro/class-wizard-job.php:437
3800
  #: inc/pro/class-wizard-job.php:440
3801
- #: inc/Pro/class-wizard-job.php:437
3802
- #: inc/Pro/class-wizard-job.php:440
3803
  #: inc/class-page-editjob.php:488
3804
  #: inc/class-page-editjob.php:490
 
 
3805
  msgid "Tar GZip"
3806
  msgstr "Tar GZip"
3807
 
@@ -3817,10 +3805,10 @@ msgstr "Отключено из-за отсутствия функции PHP."
3817
  #: inc/class-page-editjob.php:489
3818
  #: inc/pro/class-wizard-job.php:444
3819
  #: inc/pro/class-wizard-job.php:447
3820
- #: inc/Pro/class-wizard-job.php:444
3821
- #: inc/Pro/class-wizard-job.php:447
3822
  #: inc/class-page-editjob.php:494
3823
  #: inc/class-page-editjob.php:497
 
 
3824
  msgid "Tar BZip2"
3825
  msgstr "Tar BZip2"
3826
 
@@ -3948,9 +3936,9 @@ msgstr "расширенный"
3948
  #: inc/class-page-editjob.php:650
3949
  #: inc/class-page-editjob.php:718
3950
  #: inc/pro/class-wizard-job.php:320
3951
- #: inc/Pro/class-wizard-job.php:320
3952
  #: inc/class-page-editjob.php:686
3953
  #: inc/class-page-editjob.php:754
 
3954
  msgid "Scheduler"
3955
  msgstr "Планировщик"
3956
 
@@ -3958,121 +3946,121 @@ msgstr "Планировщик"
3958
  #: inc/class-page-jobs.php:126
3959
  #: inc/class-page-logs.php:139
3960
  #: inc/pro/class-wizard-job.php:324
3961
- #: inc/Pro/class-wizard-job.php:324
3962
- #: inc/class-page-logs.php:166
3963
  #: inc/class-page-editjob.php:691
 
 
3964
  msgid "Type"
3965
  msgstr "Тип"
3966
 
3967
  #: inc/class-page-editjob.php:660
3968
  #: inc/pro/class-wizard-job.php:330
3969
- #: inc/Pro/class-wizard-job.php:330
3970
  #: inc/class-page-editjob.php:696
 
3971
  msgid "Hour"
3972
  msgstr "час"
3973
 
3974
  #: inc/class-page-editjob.php:663
3975
  #: inc/pro/class-wizard-job.php:333
3976
- #: inc/Pro/class-wizard-job.php:333
3977
  #: inc/class-page-editjob.php:699
 
3978
  msgid "Minute"
3979
  msgstr "минута"
3980
 
3981
  #: inc/class-page-editjob.php:667
3982
  #: inc/pro/class-wizard-job.php:337
3983
- #: inc/Pro/class-wizard-job.php:337
3984
  #: inc/class-page-editjob.php:703
 
3985
  msgid "monthly"
3986
  msgstr "ежемесячно"
3987
 
3988
  #: inc/class-page-editjob.php:669
3989
  #: inc/pro/class-wizard-job.php:339
3990
- #: inc/Pro/class-wizard-job.php:339
3991
  #: inc/class-page-editjob.php:705
 
3992
  msgid "on"
3993
  msgstr "в"
3994
 
3995
  #: inc/class-page-editjob.php:679
3996
  #: inc/pro/class-wizard-job.php:349
3997
- #: inc/Pro/class-wizard-job.php:349
3998
  #: inc/class-page-editjob.php:715
 
3999
  msgid "weekly"
4000
  msgstr "еженедельно"
4001
 
4002
  #: inc/class-page-editjob.php:681
4003
  #: inc/class-page-editjob.php:788
4004
  #: inc/pro/class-wizard-job.php:351
4005
- #: inc/Pro/class-wizard-job.php:351
4006
  #: inc/class-page-editjob.php:717
4007
  #: inc/class-page-editjob.php:824
 
4008
  msgid "Sunday"
4009
  msgstr "Воскресенье"
4010
 
4011
  #: inc/class-page-editjob.php:682
4012
  #: inc/class-page-editjob.php:789
4013
  #: inc/pro/class-wizard-job.php:352
4014
- #: inc/Pro/class-wizard-job.php:352
4015
  #: inc/class-page-editjob.php:718
4016
  #: inc/class-page-editjob.php:825
 
4017
  msgid "Monday"
4018
  msgstr "Понедельник"
4019
 
4020
  #: inc/class-page-editjob.php:683
4021
  #: inc/class-page-editjob.php:790
4022
  #: inc/pro/class-wizard-job.php:353
4023
- #: inc/Pro/class-wizard-job.php:353
4024
  #: inc/class-page-editjob.php:719
4025
  #: inc/class-page-editjob.php:826
 
4026
  msgid "Tuesday"
4027
  msgstr "Вторник"
4028
 
4029
  #: inc/class-page-editjob.php:684
4030
  #: inc/class-page-editjob.php:791
4031
  #: inc/pro/class-wizard-job.php:354
4032
- #: inc/Pro/class-wizard-job.php:354
4033
  #: inc/class-page-editjob.php:720
4034
  #: inc/class-page-editjob.php:827
 
4035
  msgid "Wednesday"
4036
  msgstr "Среда"
4037
 
4038
  #: inc/class-page-editjob.php:685
4039
  #: inc/class-page-editjob.php:792
4040
  #: inc/pro/class-wizard-job.php:355
4041
- #: inc/Pro/class-wizard-job.php:355
4042
  #: inc/class-page-editjob.php:721
4043
  #: inc/class-page-editjob.php:828
 
4044
  msgid "Thursday"
4045
  msgstr "Четверг"
4046
 
4047
  #: inc/class-page-editjob.php:686
4048
  #: inc/class-page-editjob.php:793
4049
  #: inc/pro/class-wizard-job.php:356
4050
- #: inc/Pro/class-wizard-job.php:356
4051
  #: inc/class-page-editjob.php:722
4052
  #: inc/class-page-editjob.php:829
 
4053
  msgid "Friday"
4054
  msgstr "Пятница"
4055
 
4056
  #: inc/class-page-editjob.php:687
4057
  #: inc/class-page-editjob.php:794
4058
  #: inc/pro/class-wizard-job.php:357
4059
- #: inc/Pro/class-wizard-job.php:357
4060
  #: inc/class-page-editjob.php:723
4061
  #: inc/class-page-editjob.php:830
 
4062
  msgid "Saturday"
4063
  msgstr "Суббота"
4064
 
4065
  #: inc/class-page-editjob.php:697
4066
  #: inc/pro/class-wizard-job.php:367
4067
- #: inc/Pro/class-wizard-job.php:367
4068
  #: inc/class-page-editjob.php:733
 
4069
  msgid "daily"
4070
  msgstr "ежедневно"
4071
 
4072
  #: inc/class-page-editjob.php:707
4073
  #: inc/pro/class-wizard-job.php:377
4074
- #: inc/Pro/class-wizard-job.php:377
4075
  #: inc/class-page-editjob.php:743
 
4076
  msgid "hourly"
4077
  msgstr "каждый час"
4078
 
@@ -4220,8 +4208,8 @@ msgstr "Последний запуск"
4220
 
4221
  #: inc/class-page-jobs.php:172
4222
  #: inc/class-page-logs.php:200
4223
- #: inc/Pro/class-page-support.php:221
4224
  #: inc/class-page-logs.php:228
 
4225
  msgid "Job ID: %d"
4226
  msgstr "ID задания: %d"
4227
 
@@ -5053,14 +5041,17 @@ msgstr ""
5053
  #: inc/pro/class-wizard-job.php:17
5054
  #: inc/pro/class-wizard-jobimport.php:16
5055
  #: inc/pro/class-wizard-systemtest.php:16
5056
- #: inc/Pro/class-wizard-jobimport.php:16
5057
- #: inc/Pro/class-wizard-job.php:17
5058
- #: inc/Pro/class-wizard-systemtest.php:27
5059
  #: inc/class-admin.php:510
5060
  #: inc/class-admin.php:531
 
 
 
 
 
5061
  #: inc/class-page-settings.php:1123
5062
- #: inc/class-page-about.php:651
5063
- #: inc/class-job.php:412
 
5064
  msgid "http://backwpup.com"
5065
  msgstr "http://backwpup.com"
5066
 
@@ -5073,61 +5064,59 @@ msgstr "http://backwpup.com"
5073
  #: inc/pro/class-wizard-job.php:19
5074
  #: inc/pro/class-wizard-jobimport.php:18
5075
  #: inc/pro/class-wizard-systemtest.php:18
5076
- #: inc/Pro/class-wizard-jobimport.php:18
5077
  #: inc/Pro/class-wizard-job.php:19
 
5078
  #: inc/Pro/class-wizard-systemtest.php:29
5079
  msgid "http://inpsyde.com"
5080
  msgstr ""
5081
 
5082
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5083
- #: inc/class-destination-ftp-downloader.php:72
5084
- #: inc/class-destination-dropbox-downloader.php:72
5085
- #: inc/class-destination-s3-downloader.php:83
5086
- msgid "Could not write data to file."
5087
  msgstr ""
5088
 
5089
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5090
- #: inc/class-destination-ftp-downloader.php:126
5091
- #: inc/class-destination-folder-downloader.php:137
5092
- #: inc/class-destination-dropbox-downloader.php:104
5093
- #: inc/class-destination-s3-downloader.php:112
5094
- msgid "File could not be opened for writing."
5095
  msgstr ""
5096
 
5097
- #: inc/Pro/class-destination-s3.php:63
5098
- #: inc/class-destination-s3.php:1134
5099
- msgid "Amazon S3: EU (London)"
5100
  msgstr ""
5101
 
5102
- #: inc/Pro/class-pro.php:285
5103
- #: inc/Pro/class-pro.php:286
5104
- #: inc/class-page-backups.php:293
5105
- #: views/pro/restore/steps/step4_top.php:2
5106
- msgid "Restore"
5107
  msgstr ""
5108
 
5109
- #: inc/class-system-tests-runner.php:77
5110
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5111
  msgstr ""
5112
 
5113
- #: inc/class-system-tests-runner.php:88
5114
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5115
  msgstr ""
5116
 
5117
- #: inc/class-system-tests-runner.php:100
5118
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5119
  msgstr ""
5120
 
5121
- #: inc/class-system-tests-runner.php:193
5122
- msgid "Yeah!"
5123
  msgstr ""
5124
 
5125
- #: inc/class-system-tests-runner.php:261
5126
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5127
  msgstr ""
5128
 
5129
- #: inc/class-destination-ftp-downloader.php:108
5130
- msgid "Cannot open FTP file for download."
 
 
 
 
5131
  msgstr ""
5132
 
5133
  #: inc/class-destination-folder-downloader.php:64
@@ -5147,10 +5136,133 @@ msgstr ""
5147
  msgid "%s is a directory not a file."
5148
  msgstr ""
5149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5150
  #: inc/class-destination-s3.php:102
5151
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5152
  msgstr ""
5153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5154
  #: inc/class-page-backups.php:408
5155
  msgid "&laquo; Go back"
5156
  msgstr ""
@@ -5193,21 +5305,35 @@ msgstr ""
5193
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5194
  msgstr ""
5195
 
5196
- #: inc/class-create-archive.php:114
5197
- msgid "Functions for bz2 compression not available."
 
5198
  msgstr ""
5199
 
5200
- #: inc/class-create-archive.php:311
5201
- msgid "File name cannot be empty."
5202
  msgstr ""
5203
 
5204
- #: inc/class-create-archive.php:741
5205
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5206
  msgstr ""
5207
 
5208
- #. translators: $1 is the filename to add into the archive.
5209
- #: inc/class-create-archive.php:996
5210
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5211
  msgstr ""
5212
 
5213
  #: inc/class-page-settings.php:39
@@ -5420,127 +5546,24 @@ msgstr ""
5420
  msgid "BackWPup maximum script execution time"
5421
  msgstr ""
5422
 
5423
- #: inc/class-download-file.php:135
5424
- msgid "Invalid file name, seems file include invalid characters."
5425
- msgstr ""
5426
-
5427
- #: inc/class-page-about.php:614
5428
- msgid "Restore from Folder"
5429
- msgstr ""
5430
-
5431
- #: inc/class-page-about.php:619
5432
- msgid "Restore from Google Drive"
5433
- msgstr ""
5434
-
5435
- #: inc/class-page-about.php:624
5436
- msgid "Restore from Amazon S3"
5437
- msgstr ""
5438
-
5439
- #: inc/class-page-about.php:629
5440
- msgid "Restore from Dropbox"
5441
- msgstr ""
5442
-
5443
- #: inc/class-page-about.php:634
5444
- msgid "Restore from FTP"
5445
- msgstr ""
5446
-
5447
- #: inc/class-destination-s3-downloader.php:76
5448
- msgid "Could not write data to file. Empty source file."
5449
- msgstr ""
5450
-
5451
- #: inc/class-job.php:332
5452
- msgid "Encrypts the archive"
5453
- msgstr ""
5454
-
5455
- #: inc/class-job.php:1689
5456
- msgid "No encryption key was provided. Aborting encryption."
5457
- msgstr ""
5458
-
5459
- #: inc/class-job.php:1696
5460
- msgid "%d. Trying to encrypt archive &hellip;"
5461
- msgstr ""
5462
-
5463
- #: inc/class-job.php:1706
5464
- msgid "Cannot open the archive for reading. Aborting encryption."
5465
- msgstr ""
5466
-
5467
- #: inc/class-job.php:1712
5468
- msgid "Cannot write the encrypted archive. Aborting encryption."
5469
- msgstr ""
5470
-
5471
- #: inc/class-job.php:1769
5472
- msgid "Encrypted %s of data."
5473
- msgstr ""
5474
-
5475
- #: inc/class-job.php:1773
5476
- msgid "Unable to delete unencrypted archive."
5477
- msgstr ""
5478
-
5479
- #: inc/class-job.php:1777
5480
- msgid "Unable to rename encrypted archive."
5481
- msgstr ""
5482
-
5483
- #: inc/class-job.php:1782
5484
- msgid "Archive has been successfully encrypted."
5485
- msgstr ""
5486
-
5487
- #: inc/class-job.php:2451
5488
- msgid "exec command is not active."
5489
- msgstr ""
5490
-
5491
- #: inc/class-job.php:2456
5492
- msgid "mysqldump binary not found."
5493
- msgstr ""
5494
-
5495
- #: inc/class-page-editjob.php:448
5496
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5497
- msgstr ""
5498
-
5499
- #: inc/class-page-editjob.php:452
5500
- msgid "Preview: "
5501
- msgstr ""
5502
-
5503
- #: inc/class-page-editjob.php:484
5504
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5505
- msgstr ""
5506
-
5507
- #: inc/class-page-editjob.php:495
5508
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5509
- msgstr ""
5510
-
5511
- #: inc/class-page-editjob.php:506
5512
- #: inc/class-page-editjob.php:511
5513
- #: inc/class-page-editjob.php:520
5514
- msgid "Encrypt Archive"
5515
- msgstr ""
5516
-
5517
- #: inc/class-page-editjob.php:524
5518
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5519
- msgstr ""
5520
-
5521
- #: inc/class-decrypter.php:56
5522
- msgid "Cannot open the archive for reading."
5523
- msgstr ""
5524
-
5525
- #: inc/class-decrypter.php:82
5526
- msgid "Cannot write the encrypted archive."
5527
  msgstr ""
5528
 
5529
- #: inc/class-decrypter.php:162
5530
- msgid "Private key invalid."
5531
  msgstr ""
5532
 
5533
- #: inc/class-destination-ftp.php:321
5534
- msgid "Could not log in to FTP server."
5535
  msgstr ""
5536
 
5537
- #: inc/class-destination-ftp.php:735
5538
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5539
  msgstr ""
5540
 
5541
- #: backwpup.php:573
5542
- #: vendor_dist/backwpup.php:573
5543
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5544
  msgstr ""
5545
 
5546
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Папка"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Резервное копирование на Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "Сервис S3"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Резервное копирование на Rackspace Cloud Files"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Резервное копирование на SugarSync"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "Журналы"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "Dropbox API: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "Логин"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "Не выполнена проверка подлинности!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "Регистрация"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "Проверка подлинности выполнена!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "Настройки резервного копирования"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "Удаление файлов"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "Количество файлов для хранения в папке."
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Не удалять файлы при синхронизации на месте хранения!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s доступно на Вашем Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Не прошла проверка подлинности на Dropbox!"
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "Резервные копии переданы %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Размер загруженного файла и размер локального файла не одинаковые."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr "Ошибка при передаче резервной копии на %s."
722
 
746
  #: inc/class-destination-email.php:38
747
  #: inc/pro/class-destination-email.php:16
748
  #: inc/pro/class-destination-email.php:18
749
+ #: inc/class-destination-email.php:39
750
  #: inc/Pro/class-destination-email.php:16
751
  #: inc/Pro/class-destination-email.php:18
 
752
  msgid "Email address"
753
  msgstr "E-mail адрес"
754
 
761
  #: inc/class-destination-email.php:49
762
  #: inc/pro/class-destination-email.php:29
763
  #: inc/pro/class-destination-email.php:30
 
 
764
  #: inc/class-destination-email.php:52
765
  #: inc/class-destination-email.php:56
766
+ #: inc/Pro/class-destination-email.php:29
767
+ #: inc/Pro/class-destination-email.php:30
768
  msgid "Send test email"
769
  msgstr "Отправить тестовое сообщение"
770
 
839
  #: inc/class-destination-email.php:98
840
  #: inc/class-destination-ftp.php:31
841
  #: inc/pro/class-destination-ftp.php:21
 
842
  #: inc/class-destination-email.php:124
843
  #: inc/class-destination-ftp.php:56
844
+ #: inc/Pro/class-destination-ftp.php:35
845
  msgid "Port:"
846
  msgstr "Порт:"
847
 
860
  #: inc/class-page-settings.php:328
861
  #: inc/pro/class-jobtype-dbdump.php:157
862
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
863
  #: inc/class-destination-email.php:141
864
  #: inc/class-page-settings.php:837
865
+ #: inc/Pro/class-jobtype-dbdump.php:157
866
+ #: inc/Pro/class-jobtype-dbdump.php:205
867
  msgid "none"
868
  msgstr "нет"
869
 
988
  #: inc/class-destination-ftp.php:87
989
  #: inc/class-page-logs.php:257
990
  #: inc/class-page-settings.php:466
 
991
  #: inc/class-destination-ftp.php:137
992
+ #: inc/class-page-logs.php:288
993
  msgid "seconds"
994
  msgstr "сек."
995
 
1144
  #: inc/pro/class-destination-glacier.php:468
1145
  #: inc/pro/class-destination-rsc.php:226
1146
  #: inc/pro/class-destination-rsc.php:259
1147
+ #: inc/class-destination-ftp.php:673
1148
+ #: inc/class-destination-msazure.php:275
1149
  #: inc/class-destination-rsc.php:292
1150
+ #: inc/class-destination-s3.php:843
1151
+ #: inc/class-destination-s3.php:958
1152
  #: inc/Pro/class-destination-gdrive.php:905
1153
  #: inc/Pro/class-destination-glacier.php:470
1154
  #: inc/Pro/class-destination-rsc.php:228
1155
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1156
  msgid "Can not open source file for transfer."
1157
  msgstr ""
1158
 
1203
  #: inc/class-destination-rsc.php:105
1204
  #: inc/class-destination-s3.php:114
1205
  #: inc/pro/class-destination-glacier.php:96
 
1206
  #: inc/class-destination-s3.php:215
1207
+ #: inc/Pro/class-destination-glacier.php:96
1208
  msgid "File deletion"
1209
  msgstr "Удаление файлов"
1210
 
1227
 
1228
  #: inc/class-destination-msazure.php:233
1229
  #: inc/pro/class-destination-msazure.php:144
 
1230
  #: inc/class-destination-msazure.php:237
1231
+ #: inc/Pro/class-destination-msazure.php:144
1232
  msgid "MS Azure container \"%s\" does not exist!"
1233
  msgstr "Контейнер MS Azure \"%s\" не существует!"
1234
 
1235
  #: inc/class-destination-msazure.php:237
1236
  #: inc/pro/class-destination-msazure.php:148
 
1237
  #: inc/class-destination-msazure.php:241
1238
+ #: inc/Pro/class-destination-msazure.php:148
1239
  msgid "Connected to MS Azure container \"%s\"."
1240
  msgstr "Подключен к контейнеру MS Azure \"%s\""
1241
 
1247
  #: inc/class-destination-msazure.php:292
1248
  #: inc/class-destination-msazure.php:348
1249
  #: inc/pro/class-destination-msazure.php:233
 
1250
  #: inc/class-destination-msazure.php:296
1251
  #: inc/class-destination-msazure.php:352
1252
+ #: inc/Pro/class-destination-msazure.php:233
1253
  msgid "Microsoft Azure API: %s"
1254
  msgstr "Microsoft Azure API: %s"
1255
 
1269
  #: inc/class-destination-msazure.php:444
1270
  #: inc/class-destination-s3.php:222
1271
  #: inc/pro/class-destination-glacier.php:166
 
1272
  #: inc/class-destination-msazure.php:448
1273
  #: inc/class-destination-s3.php:359
1274
+ #: inc/Pro/class-destination-glacier.php:166
1275
  msgid "Missing access key!"
1276
  msgstr "Отсутствует ключ доступа!"
1277
 
1418
 
1419
  #: inc/class-destination-s3.php:33
1420
  #: inc/pro/class-destination-s3.php:18
 
1421
  #: inc/class-destination-s3.php:54
1422
+ #: inc/Pro/class-destination-s3.php:32
1423
  msgid "Amazon S3 Region"
1424
  msgstr "Регион Amazon S3"
1425
 
1426
  #: inc/class-destination-s3.php:34
1427
  #: inc/pro/class-destination-s3.php:19
 
1428
  #: inc/class-destination-s3.php:1118
1429
+ #: inc/Pro/class-destination-s3.php:40
1430
  msgid "Amazon S3: US Standard"
1431
  msgstr "Amazon S3: США стандарт"
1432
 
1433
  #: inc/class-destination-s3.php:35
1434
  #: inc/pro/class-destination-s3.php:20
 
1435
  #: inc/class-destination-s3.php:1122
1436
+ #: inc/Pro/class-destination-s3.php:45
1437
  msgid "Amazon S3: US West (Northern California)"
1438
  msgstr "Amazon S3: Запад США (Северная Калифорния)"
1439
 
1440
  #: inc/class-destination-s3.php:36
1441
  #: inc/pro/class-destination-s3.php:21
 
1442
  #: inc/class-destination-s3.php:1126
1443
+ #: inc/Pro/class-destination-s3.php:53
1444
  msgid "Amazon S3: US West (Oregon)"
1445
  msgstr "Amazon S3: Запад США (Орегон)"
1446
 
1447
  #: inc/class-destination-s3.php:37
1448
  #: inc/pro/class-destination-s3.php:22
 
1449
  #: inc/class-destination-s3.php:1130
1450
+ #: inc/Pro/class-destination-s3.php:58
1451
  msgid "Amazon S3: EU (Ireland)"
1452
  msgstr "Amazon S3: ЕС (Ирландия)"
1453
 
1454
  #: inc/class-destination-s3.php:38
1455
  #: inc/pro/class-destination-s3.php:23
 
1456
  #: inc/class-destination-s3.php:1138
1457
+ #: inc/Pro/class-destination-s3.php:68
1458
  msgid "Amazon S3: EU (Germany)"
1459
  msgstr "Amazon S3: ЕС (Германия)"
1460
 
1461
  #: inc/class-destination-s3.php:39
1462
  #: inc/pro/class-destination-s3.php:24
 
1463
  #: inc/class-destination-s3.php:1142
1464
+ #: inc/Pro/class-destination-s3.php:73
1465
  #, fuzzy
1466
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1467
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Токио)"
1468
 
1469
  #: inc/class-destination-s3.php:40
1470
  #: inc/pro/class-destination-s3.php:25
 
1471
  #: inc/class-destination-s3.php:1146
1472
+ #: inc/Pro/class-destination-s3.php:78
1473
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1474
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Токио)"
1475
 
1476
  #: inc/class-destination-s3.php:41
1477
  #: inc/pro/class-destination-s3.php:26
 
1478
  #: inc/class-destination-s3.php:1150
1479
+ #: inc/Pro/class-destination-s3.php:83
1480
  #, fuzzy
1481
  msgid "Amazon S3: Asia Pacific (Seoul)"
1482
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сидней)"
1483
 
1484
  #: inc/class-destination-s3.php:42
1485
  #: inc/pro/class-destination-s3.php:27
 
1486
  #: inc/class-destination-s3.php:1154
1487
+ #: inc/Pro/class-destination-s3.php:88
1488
  msgid "Amazon S3: Asia Pacific (Singapore)"
1489
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сингапур)"
1490
 
1491
  #: inc/class-destination-s3.php:43
1492
  #: inc/pro/class-destination-s3.php:28
 
1493
  #: inc/class-destination-s3.php:1158
1494
+ #: inc/Pro/class-destination-s3.php:93
1495
  msgid "Amazon S3: Asia Pacific (Sydney)"
1496
  msgstr "Amazon S3: Азиатско-Тихоокеанский регион (Сидней)"
1497
 
1498
  #: inc/class-destination-s3.php:44
1499
  #: inc/pro/class-destination-s3.php:29
 
1500
  #: inc/class-destination-s3.php:1162
1501
+ #: inc/Pro/class-destination-s3.php:98
1502
  msgid "Amazon S3: South America (Sao Paulo)"
1503
  msgstr "Amazon S3: Южная Америка (Сан-Паулу)"
1504
 
1505
  #: inc/class-destination-s3.php:45
1506
  #: inc/pro/class-destination-s3.php:30
 
1507
  #: inc/class-destination-s3.php:1166
1508
+ #: inc/Pro/class-destination-s3.php:103
1509
  msgid "Amazon S3: China (Beijing)"
1510
  msgstr "Amazon S3: Китай (Пекин)"
1511
 
1512
  #: inc/class-destination-s3.php:46
1513
  #: inc/pro/class-destination-s3.php:31
 
1514
  #: inc/class-destination-s3.php:1170
1515
+ #: inc/Pro/class-destination-s3.php:108
1516
  msgid "Google Storage: EU"
1517
  msgstr ""
1518
 
1519
  #: inc/class-destination-s3.php:47
1520
  #: inc/pro/class-destination-s3.php:32
 
1521
  #: inc/class-destination-s3.php:1174
1522
+ #: inc/Pro/class-destination-s3.php:113
1523
  msgid "Google Storage: USA"
1524
  msgstr ""
1525
 
1526
  #: inc/class-destination-s3.php:48
1527
  #: inc/pro/class-destination-s3.php:33
 
1528
  #: inc/class-destination-s3.php:1178
1529
+ #: inc/Pro/class-destination-s3.php:118
1530
  msgid "Google Storage: Asia"
1531
  msgstr ""
1532
 
1533
  #: inc/class-destination-s3.php:49
1534
  #: inc/pro/class-destination-s3.php:34
 
1535
  #: inc/class-destination-s3.php:1182
1536
+ #: inc/Pro/class-destination-s3.php:123
1537
  msgid "Dream Host Cloud Storage"
1538
  msgstr "Dream Host Cloud Storage"
1539
 
1549
 
1550
  #: inc/class-destination-s3.php:65
1551
  #: inc/pro/class-destination-glacier.php:54
 
1552
  #: inc/class-destination-s3.php:121
1553
+ #: inc/Pro/class-destination-glacier.php:54
1554
  msgid "Access Key"
1555
  msgstr "Ключ доступа"
1556
 
1557
  #: inc/class-destination-s3.php:72
1558
  #: inc/pro/class-destination-glacier.php:61
 
1559
  #: inc/class-destination-s3.php:135
1560
+ #: inc/Pro/class-destination-glacier.php:61
1561
  msgid "Secret Key"
1562
  msgstr "Секретный ключ"
1563
 
1625
 
1626
  #: inc/class-destination-s3.php:224
1627
  #: inc/pro/class-destination-glacier.php:168
 
1628
  #: inc/class-destination-s3.php:361
1629
+ #: inc/Pro/class-destination-glacier.php:168
1630
  msgid "Missing secret access key!"
1631
  msgstr "Отсутствует секретный ключ доступа!"
1632
 
1642
 
1643
  #: inc/class-destination-s3.php:348
1644
  #: inc/pro/class-destination-s3.php:147
 
1645
  #: inc/class-destination-s3.php:520
1646
+ #: inc/Pro/class-destination-s3.php:285
1647
  msgid " %s is not a valid bucket name."
1648
  msgstr " %s недопустимое имя bucket "
1649
 
1653
  #: inc/class-destination-s3.php:610
1654
  #: inc/class-destination-s3.php:670
1655
  #: inc/pro/class-destination-s3.php:337
 
1656
  #: inc/class-destination-s3.php:570
1657
  #: inc/class-destination-s3.php:868
1658
  #: inc/class-destination-s3.php:936
1659
  #: inc/class-destination-s3.php:995
1660
  #: inc/class-destination-s3.php:1006
1661
+ #: inc/Pro/class-destination-s3.php:623
1662
  msgid "S3 Service API: %s"
1663
  msgstr "API сервиса S3: %s"
1664
 
1669
 
1670
  #: inc/class-destination-s3.php:470
1671
  #: inc/pro/class-destination-s3.php:188
 
1672
  #: inc/class-destination-s3.php:803
1673
+ #: inc/Pro/class-destination-s3.php:383
1674
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1675
  msgstr "Подключено к S3 Bucket \"%1$s\" in %2$s"
1676
 
1677
  #: inc/class-destination-s3.php:473
1678
  #: inc/pro/class-destination-s3.php:191
 
1679
  #: inc/class-destination-s3.php:808
1680
+ #: inc/Pro/class-destination-s3.php:391
1681
  msgid "S3 Bucket \"%s\" does not exist!"
1682
  msgstr "S3 Bucket \"%s\" не существует!"
1683
 
1698
 
1699
  #: inc/class-destination-s3.php:601
1700
  #: inc/pro/class-destination-glacier.php:444
 
1701
  #: inc/class-destination-s3.php:972
1702
+ #: inc/Pro/class-destination-glacier.php:446
1703
  msgid "Backup transferred to %s."
1704
  msgstr "Передано %s резервной копии"
1705
 
1740
  #: inc/pro/class-destination-ftp.php:29
1741
  #: inc/pro/class-destination-sugarsync.php:20
1742
  #: inc/pro/class-jobtype-dbdump.php:126
 
1743
  #: inc/Pro/class-destination-ftp.php:47
1744
  #: inc/Pro/class-destination-sugarsync.php:20
1745
+ #: inc/Pro/class-jobtype-dbdump.php:126
1746
  msgid "Password:"
1747
  msgstr "Пароль:"
1748
 
1921
  msgstr "Помощник заданий BackWPup"
1922
 
1923
  #: inc/class-job.php:263
1924
+ #: inc/class-job.php:297
1925
  msgid "Starting job"
1926
  msgstr "Запуск задания"
1927
 
1928
  #: inc/class-job.php:278
1929
+ #: inc/class-job.php:314
1930
  msgid "Job Start"
1931
  msgstr "Запуск задания"
1932
 
1933
  #: inc/class-job.php:298
1934
+ #: inc/class-job.php:334
1935
  msgid "Creates manifest file"
1936
  msgstr "Создает файл манифеста"
1937
 
1938
  #: inc/class-job.php:320
1939
+ #: inc/class-job.php:356
1940
  msgid "Creates archive"
1941
  msgstr "Создает архив"
1942
 
1943
  #: inc/class-job.php:360
1944
+ #: inc/class-job.php:403
1945
  msgid "End of Job"
1946
  msgstr "Конец задания"
1947
 
1948
  #: inc/class-job.php:377
1949
+ #: inc/class-job.php:428
1950
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1951
  msgstr "Журнал BackWPup для %1$s из %2$s в %3$s"
1952
 
1953
  #: inc/class-job.php:394
1954
+ #: inc/class-job.php:456
1955
  msgctxt "Plugin name; Plugin Version; plugin url"
1956
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1957
  msgstr ""
1958
 
1959
  #: inc/class-job.php:395
1960
+ #: inc/class-job.php:462
1961
  msgctxt "WordPress Version; Blog url"
1962
  msgid "[INFO] WordPress %1$s on %2$s"
1963
  msgstr ""
1964
 
1965
  #: inc/class-job.php:396
1966
+ #: inc/class-job.php:465
1967
  msgid "Normal"
1968
  msgstr ""
1969
 
1970
  #: inc/class-job.php:399
1971
+ #: inc/class-job.php:468
1972
  msgid "Debug"
1973
  msgstr ""
1974
 
1975
  #: inc/class-job.php:402
1976
+ #: inc/class-job.php:471
1977
  msgid "(translated)"
1978
  msgstr ""
1979
 
1980
  #: inc/class-job.php:404
1981
+ #: inc/class-job.php:474
1982
  #, fuzzy
1983
  msgid "[INFO] Log Level: %1$s %2$s"
1984
  msgstr "[INFO] curl вер.: %1$s; %2$s"
1985
 
1986
  #: inc/class-job.php:409
1987
+ #: inc/class-job.php:480
1988
  msgid "[INFO] BackWPup job: %1$s"
1989
  msgstr ""
1990
 
1991
  #: inc/class-job.php:412
1992
+ #: inc/class-job.php:484
1993
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1994
  msgstr ""
1995
 
1997
  #: inc/class-page-backwpup.php:323
1998
  #: inc/class-page-jobs.php:282
1999
  #: inc/class-page-jobs.php:291
2000
+ #: inc/class-job.php:500
2001
  msgid "Not scheduled!"
2002
  msgstr "Не запланировано!"
2003
 
2004
  #: inc/class-job.php:430
2005
  #: inc/class-job.php:440
2006
+ #: inc/class-job.php:507
2007
+ #: inc/class-job.php:519
2008
  msgid "[INFO] Cron: %s; Next: %s "
2009
  msgstr ""
2010
 
2011
  #: inc/class-job.php:433
2012
+ #: inc/class-job.php:511
2013
  msgid "[INFO] BackWPup job start with link is active"
2014
  msgstr "[INFO] Задание BackWPup запущено из активной ссылки"
2015
 
2016
  #: inc/class-job.php:435
2017
+ #: inc/class-job.php:513
2018
  msgid "[INFO] BackWPup job start with EasyCron.com"
2019
  msgstr ""
2020
 
2021
  #: inc/class-job.php:443
2022
+ #: inc/class-job.php:523
2023
  msgid "[INFO] BackWPup no automatic job start configured"
2024
  msgstr "[INFO] Автоматический запуск задания BackWPup не настроен"
2025
 
2026
  #: inc/class-job.php:447
2027
+ #: inc/class-job.php:527
2028
  msgid "[INFO] BackWPup job started from wp-cron"
2029
  msgstr "[INFO] Задание BackWPupзапущено из wp-cron"
2030
 
2031
  #: inc/class-job.php:449
2032
+ #: inc/class-job.php:529
2033
  msgid "[INFO] BackWPup job started manually"
2034
  msgstr "[INFO] Задание BackWPup запущено вручную"
2035
 
2036
  #: inc/class-job.php:451
2037
+ #: inc/class-job.php:531
2038
  msgid "[INFO] BackWPup job started from external url"
2039
  msgstr "[INFO] Задание BackWPup запущено из внешнего url"
2040
 
2041
  #: inc/class-job.php:453
2042
+ #: inc/class-job.php:533
2043
  msgid "[INFO] BackWPup job started form commandline interface"
2044
  msgstr "[INFO] Задание BackWPup запущено из интерфейса командной строки"
2045
 
2046
  #: inc/class-job.php:462
2047
+ #: inc/class-job.php:544
2048
  msgid "[INFO] PHP ver.:"
2049
  msgstr "[INFO] PHP вер.:"
2050
 
2051
  #: inc/class-job.php:463
2052
+ #: inc/class-job.php:548
2053
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2054
  msgstr "[INFO] Максимальное время исполнения сценария PHP %1$d сек."
2055
 
2056
  #: inc/class-job.php:467
2057
+ #: inc/class-job.php:555
2058
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2059
  msgstr "[INFO] Время перезапуска сценария установлено в %1$d сек."
2060
 
2061
  #: inc/class-job.php:470
2062
+ #: inc/class-job.php:561
2063
  msgid "[INFO] MySQL ver.: %s"
2064
  msgstr "[INFO] MySQL вер.: %s"
2065
 
2066
  #: inc/class-job.php:472
2067
+ #: inc/class-job.php:565
2068
  msgid "[INFO] Web Server: %s"
2069
  msgstr "[INFO] Web сервер: %s"
2070
 
2071
  #: inc/class-job.php:476
2072
+ #: inc/class-job.php:571
2073
  msgid "[INFO] curl ver.: %1$s; %2$s"
2074
  msgstr "[INFO] curl вер.: %1$s; %2$s"
2075
 
2076
  #: inc/class-job.php:478
2077
+ #: inc/class-job.php:576
2078
  msgid "[INFO] Temp folder is: %s"
2079
  msgstr "[INFO] Временная папка: %s"
2080
 
2081
  #: inc/class-job.php:485
2082
+ #: inc/class-job.php:584
2083
  msgid "[INFO] Logfile is: %s"
2084
  msgstr "[INFO] Журнал: %s"
2085
 
2086
  #: inc/class-job.php:492
2087
+ #: inc/class-job.php:591
2088
  msgid "[INFO] Backup file is: %s"
2089
  msgstr "[INFO] Файл резервной копии: %s"
2090
 
2091
  #: inc/class-job.php:494
2092
+ #: inc/class-job.php:594
2093
  msgid "[INFO] Backup type is: %s"
2094
  msgstr "[INFO] Тип резервной копии: %s"
2095
 
2096
  #: inc/class-job.php:502
2097
+ #: inc/class-job.php:603
2098
  msgid "Could not write log file"
2099
  msgstr ""
2100
 
2101
  #: inc/class-job.php:514
2102
+ #: inc/class-job.php:616
2103
  msgid "No destination correctly defined for backup! Please correct job settings."
2104
  msgstr "Не определено место хранения для резервных копий! Пожалуйста, исправьте настройки задания."
2105
 
2106
  #: inc/class-job.php:644
2107
+ #: inc/class-job.php:718
2108
  msgid "Cannot write progress to working file. Job will be aborted."
2109
  msgstr "Не удается записать ход выполнения в рабочий файл. Задание будет прервано."
2110
 
2111
  #: inc/class-job.php:716
2112
  #: inc/class-page-jobs.php:786
2113
+ #: inc/class-job.php:793
2114
  msgid "WARNING:"
2115
  msgstr "ПРЕДУПРЕЖДЕНИЕ:"
2116
 
2117
  #: inc/class-job.php:725
2118
  #: inc/class-page-jobs.php:784
2119
+ #: inc/class-job.php:802
2120
  msgid "ERROR:"
2121
  msgstr "ОШИБКА:"
2122
 
2123
  #: inc/class-job.php:729
2124
+ #: inc/class-job.php:806
2125
  msgid "DEPRECATED:"
2126
  msgstr "УСТАРЕЛО:"
2127
 
2128
  #: inc/class-job.php:732
2129
+ #: inc/class-job.php:809
2130
  msgid "STRICT NOTICE:"
2131
  msgstr "ОСОБОЕ ВНИМАНИЕ:"
2132
 
2133
  #: inc/class-job.php:737
2134
+ #: inc/class-job.php:814
2135
  msgid "RECOVERABLE ERROR:"
2136
  msgstr "НЕУСТРАНИМАЯ ОШИБКА:"
2137
 
2138
  #: inc/class-job.php:985
2139
+ #: inc/class-job.php:1091
2140
  msgid "Aborted by user!"
2141
  msgstr "Прервано пользователем!"
2142
 
2143
  #: inc/class-job.php:1019
2144
+ #: inc/class-job.php:1129
2145
  msgid "One old log deleted"
2146
  msgid_plural "%d old logs deleted"
2147
  msgstr[0] "Удален %d резервный файл "
2150
 
2151
  #: inc/class-job.php:1026
2152
  #: inc/class-page-jobs.php:784
2153
+ #: inc/class-job.php:1141
2154
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2155
  msgstr "Задание завершилось с ошибками за %s сек. Вы должны устранить ошибки для правильного выполнения."
2156
 
2157
  #: inc/class-job.php:1028
2158
+ #: inc/class-job.php:1150
2159
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2160
  msgstr "Задание выполнено с предупреждениями за %s сек. Пожалуйста, устраните их для правильного выполнения."
2161
 
2162
  #: inc/class-job.php:1030
2163
  #: inc/class-page-jobs.php:788
2164
+ #: inc/class-job.php:1158
2165
  msgid "Job done in %s seconds."
2166
  msgstr "Задание выполнено за %s сек."
2167
 
2168
  #: inc/class-job.php:1074
2169
+ #: inc/class-job.php:1212
2170
  msgid "SUCCESSFUL"
2171
  msgstr "УСПЕШНО"
2172
 
2173
  #: inc/class-job.php:1076
2174
+ #: inc/class-job.php:1214
2175
  msgid "WARNING"
2176
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
2177
 
2178
  #: inc/class-job.php:1079
2179
+ #: inc/class-job.php:1217
2180
  msgid "ERROR"
2181
  msgstr "ОШИБКА"
2182
 
2183
  #: inc/class-job.php:1082
2184
+ #: inc/class-job.php:1221
2185
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2186
  msgstr "[%3$s] журнал BackWPup %1$s: %2$s"
2187
 
2188
  #: inc/class-job.php:1188
2189
+ #: inc/class-job.php:1341
2190
  msgid "Restart after %1$d seconds."
2191
  msgstr "Перезапуск через %1$d сек."
2192
 
2193
  #: inc/class-job.php:1190
2194
+ #: inc/class-job.php:1343
2195
  #, fuzzy
2196
  msgid "Restart after getting signal."
2197
  msgstr "Перезапуск через %1$d сек."
2198
 
2199
  #: inc/class-job.php:1363
2200
+ #: inc/class-job.php:1534
2201
  msgid "Job restarts due to inactivity for more than 5 minutes."
2202
  msgstr "Задание перезапущено из-за неактивности в течение более 5 минут."
2203
 
2204
  #: inc/class-job.php:1461
2205
+ #: inc/class-job.php:1636
2206
  msgid "Step aborted: too many attempts!"
2207
  msgstr "Шаг прерван: слишком много попыток!"
2208
 
2209
  #: inc/class-job.php:1532
2210
+ #: inc/class-job.php:1716
2211
  msgid "%d. Trying to create backup archive &hellip;"
2212
  msgstr "%d. Попытка создать архив резервной копии&#160;&hellip;"
2213
 
2214
  #: inc/class-job.php:1540
2215
+ #: inc/class-job.php:1729
2216
  msgctxt "Archive compression method"
2217
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2218
  msgstr "Сжатие файлов с использованием %s. Пожалуйста, будьте терпеливы это может занять некоторое время."
2219
 
2220
  #: inc/class-job.php:1547
2221
+ #: inc/class-job.php:1742
2222
  msgid "Adding Extra files to Archive"
2223
  msgstr ""
2224
 
2225
  #: inc/class-job.php:1559
2226
  #: inc/class-job.php:1619
2227
+ #: inc/class-job.php:1754
2228
+ #: inc/class-job.php:1823
2229
  msgid "Cannot create backup archive correctly. Aborting creation."
2230
  msgstr "Невозможно правильно создать резервный архив. Произошло прерывание."
2231
 
2232
  #: inc/class-job.php:1575
2233
+ #: inc/class-job.php:1772
2234
  msgid "Archiving Folder: %s"
2235
  msgstr ""
2236
 
2237
  #: inc/class-job.php:1629
2238
+ #: inc/class-job.php:1834
2239
  msgid "Backup archive created."
2240
  msgstr "Резервная копия создана."
2241
 
2242
  #: inc/class-job.php:1643
2243
+ #: inc/class-job.php:1849
2244
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2245
  msgstr ""
2246
 
2247
  #: inc/class-job.php:1646
2248
+ #: inc/class-job.php:1857
2249
  msgid "Archive size is %s."
2250
  msgstr "Размер архива %s."
2251
 
2252
  #: inc/class-job.php:1649
2253
+ #: inc/class-job.php:1864
2254
  msgid "%1$d Files with %2$s in Archive."
2255
  msgstr "%1$d файлов с %2$s в архиве."
2256
 
2257
  #: inc/class-job.php:1698
2258
+ #: inc/class-job.php:2059
2259
  #, fuzzy
2260
  msgctxt "Folder name"
2261
  msgid "Folder %s does not exist"
2262
  msgstr "Папка %s не существует"
2263
 
2264
  #: inc/class-job.php:1703
2265
+ #: inc/class-job.php:2067
2266
  #, fuzzy
2267
  msgctxt "Folder name"
2268
  msgid "Folder %s is not readable"
2269
  msgstr "Папка \"%s\" недоступна для чтения!"
2270
 
2271
  #: inc/class-job.php:1725
2272
+ #: inc/class-job.php:2096
2273
  msgid "Link \"%s\" not following."
2274
  msgstr "Не корректная ссылка \"%s\"."
2275
 
2276
  #: inc/class-job.php:1727
2277
+ #: inc/class-job.php:2100
2278
  msgid "File \"%s\" is not readable!"
2279
  msgstr "Файл \"%s\" не доступен для чтения!"
2280
 
2281
  #: inc/class-job.php:1731
2282
+ #: inc/class-job.php:2107
2283
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2284
  msgstr "Размер файла “%s” не может быть восстановлен. Возможно файл слишком большой и не будут добавлен в очередь."
2285
 
2286
  #: inc/class-job.php:1814
2287
+ #: inc/class-job.php:2197
2288
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2289
  msgstr "%d. Попытка создать файл манифеста&#160;&hellip;"
2290
 
2291
  #: inc/class-job.php:1870
2292
+ #: inc/class-job.php:2264
2293
  msgid "You may have noticed the manifest.json file in this archive."
2294
  msgstr "Обратите внимание на файл manifest.json в этом архиве."
2295
 
2296
  #: inc/class-job.php:1871
2297
+ #: inc/class-job.php:2265
2298
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2299
  msgstr "manifest.json может понадобиться для последующего восстановления резервной копии из этого архива."
2300
 
2301
  #: inc/class-job.php:1872
2302
+ #: inc/class-job.php:2268
2303
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2304
  msgstr "Пожалуйста, оставьте manifest.json нетронутым и на месте. В противном случае сохранность будет нарушена."
2305
 
2306
  #: inc/class-job.php:1882
2307
+ #: inc/class-job.php:2282
2308
  msgid "Added manifest.json file with %1$s to backup file list."
2309
  msgstr "Добавлен файл manifest.json с %1$s в список файлов резервных копий."
2310
 
2311
  #: inc/class-job.php:1921
2312
+ #: inc/class-job.php:2324
2313
  msgid "Wrong BackWPup JobID"
2314
  msgstr "Неправильный BackWPup JobID"
2315
 
2316
  #: inc/class-job.php:1934
2317
+ #: inc/class-job.php:2337
2318
  msgid "A BackWPup job is already running"
2319
  msgstr "Задание BackWPup уже запущено"
2320
 
2321
  #: inc/class-job.php:2302
2322
+ #: inc/class-job.php:2752
2323
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2324
  msgid "Hangup detected on controlling terminal or death of controlling process"
2325
  msgstr ""
2326
 
2327
  #: inc/class-job.php:2306
2328
+ #: inc/class-job.php:2759
2329
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2330
  msgid "Interrupt from keyboard"
2331
  msgstr ""
2332
 
2333
  #: inc/class-job.php:2310
2334
+ #: inc/class-job.php:2766
2335
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2336
  msgid "Quit from keyboard"
2337
  msgstr ""
2338
 
2339
  #: inc/class-job.php:2314
2340
+ #: inc/class-job.php:2773
2341
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2342
  msgid "Illegal Instruction"
2343
  msgstr ""
2344
 
2345
  #: inc/class-job.php:2318
2346
+ #: inc/class-job.php:2780
2347
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2348
  msgid "Abort signal from abort(3)"
2349
  msgstr ""
2350
 
2351
  #: inc/class-job.php:2322
2352
+ #: inc/class-job.php:2787
2353
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2354
  msgid "Bus error (bad memory access)"
2355
  msgstr ""
2356
 
2357
  #: inc/class-job.php:2326
2358
+ #: inc/class-job.php:2794
2359
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2360
  msgid "Floating point exception"
2361
  msgstr ""
2362
 
2363
  #: inc/class-job.php:2330
2364
+ #: inc/class-job.php:2801
2365
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Invalid memory reference"
2367
  msgstr ""
2368
 
2369
  #: inc/class-job.php:2334
2370
+ #: inc/class-job.php:2808
2371
  #, fuzzy
2372
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2373
  msgid "Termination signal"
2374
  msgstr "Место"
2375
 
2376
  #: inc/class-job.php:2338
2377
+ #: inc/class-job.php:2815
2378
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2379
  msgid "Stack fault on coprocessor"
2380
  msgstr ""
2381
 
2382
  #: inc/class-job.php:2342
2383
+ #: inc/class-job.php:2822
2384
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2385
  msgid "User-defined signal 1"
2386
  msgstr ""
2387
 
2388
  #: inc/class-job.php:2346
2389
+ #: inc/class-job.php:2829
2390
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2391
  msgid "User-defined signal 2"
2392
  msgstr ""
2393
 
2394
  #: inc/class-job.php:2350
2395
+ #: inc/class-job.php:2836
2396
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2397
  msgid "Urgent condition on socket"
2398
  msgstr ""
2399
 
2400
  #: inc/class-job.php:2354
2401
+ #: inc/class-job.php:2843
2402
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2403
  msgid "CPU time limit exceeded"
2404
  msgstr ""
2405
 
2406
  #: inc/class-job.php:2358
2407
+ #: inc/class-job.php:2850
2408
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "File size limit exceeded"
2410
  msgstr ""
2411
 
2412
  #: inc/class-job.php:2362
2413
+ #: inc/class-job.php:2857
2414
  #, fuzzy
2415
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2416
  msgid "Power failure"
2417
  msgstr "FTP: Вход не выполнен!"
2418
 
2419
  #: inc/class-job.php:2366
2420
+ #: inc/class-job.php:2864
2421
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2422
  msgid "Bad argument to routine"
2423
  msgstr ""
2424
 
2425
  #: inc/class-job.php:2373
2426
+ #: inc/class-job.php:2876
2427
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2428
  msgstr ""
2429
 
2430
  #: inc/class-job.php:2407
2431
  #: inc/class-job.php:2420
2432
+ #: inc/class-job.php:2912
2433
+ #: inc/class-job.php:2925
2434
  msgid "System: %s"
2435
  msgstr ""
2436
 
2437
  #: inc/class-job.php:2435
2438
+ #: inc/class-job.php:2942
2439
  msgid "Exception caught in %1$s: %2$s"
2440
  msgstr "Исключения в %1$s: %2$s"
2441
 
2735
 
2736
  #: inc/class-jobtype-wpexp.php:14
2737
  #: inc/class-page-about.php:472
2738
+ #: inc/class-page-about.php:463
2739
  msgid "WordPress XML export"
2740
  msgstr "XML экспорт WordPress"
2741
 
2972
  msgstr "Новое задание"
2973
 
2974
  #: inc/class-page-about.php:369
2975
+ #: inc/class-page-about.php:366
2976
  msgid "Welcome to BackWPup Pro"
2977
  msgstr "Добро пожаловать в BackWPup Pro"
2978
 
2979
  #: inc/class-page-about.php:370
2980
  #: inc/class-page-backwpup.php:75
2981
+ #: inc/class-page-about.php:367
2982
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2983
  msgstr "Мастер заданий BackWPup создаёт план и расписание резервного копирования на одном дыхании."
2984
 
 
 
 
 
 
 
 
2985
  #: inc/class-page-about.php:372
2986
+ #: inc/class-page-about.php:369
2987
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2988
  msgstr "Готовы <a href=\"%1$s\">настроить задание резервного копирования</a>? Вы можете <a href=\"%2$s\">использовать мастер</a> или запланировать резервное копирование в экспертном режиме."
2989
 
2990
  #: inc/class-page-about.php:382
2991
+ #: inc/class-page-about.php:376
2992
  msgid "Welcome to BackWPup"
2993
  msgstr "Добро пожаловать в BackWPup"
2994
 
2995
  #: inc/class-page-about.php:385
2996
+ #: inc/class-page-about.php:379
2997
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2998
  msgstr "Готовы настроить задание резервного копирования? Используйте мастер, чтобы запланировать, что Вы хотите сохранить."
2999
 
3000
  #: inc/class-page-about.php:398
3001
+ #: inc/class-page-about.php:389
3002
  msgid "Save your database"
3003
  msgstr "Сохранять базу данных"
3004
 
3005
  #: inc/class-page-about.php:401
3006
+ #: inc/class-page-about.php:392
3007
  msgid "Save your database regularly"
3008
  msgstr "Сохранять базу данных регулярно"
3009
 
3010
  #: inc/class-page-about.php:402
3011
+ #: inc/class-page-about.php:393
3012
  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."
3013
  msgstr "Используя BackWPup Вы можете запланировать автоматический запуск резервного копирования базы данных. Используя один архивный файл, Вы можете восстановить базу данных. <a href=\"%s\">Создайте задание резервного копирования</a>, и Вы никогда не забудете о нем. Существует также возможность восстановления и оптимизации базы данных после каждого резервного копирования."
3014
 
3015
  #: inc/class-page-about.php:407
3016
  #: inc/class-page-about.php:411
3017
+ #: inc/class-page-about.php:398
3018
+ #: inc/class-page-about.php:402
3019
  msgid "WordPress XML Export"
3020
  msgstr "Экспорт XML WordPress "
3021
 
3022
  #: inc/class-page-about.php:408
3023
+ #: inc/class-page-about.php:399
3024
  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."
3025
  msgstr "Вы можете выбрать встроенный формат экспорта WordPress в дополнение или исключительно для сохранения ваших данных. Автоматическое резервное копирование конечно тоже работает. Преимущество состоит в том: вы можете импортировать эти файлы в блог, используя стандартный импортер WordPress."
3026
 
3027
  #: inc/class-page-about.php:416
3028
+ #: inc/class-page-about.php:407
3029
  msgid "Save all data from the webserver"
3030
  msgstr "Сохранить все данные с веб-сервера"
3031
 
3032
  #: inc/class-page-about.php:419
3033
+ #: inc/class-page-about.php:410
3034
  msgid "Save all files"
3035
  msgstr "Сохранить все файлы"
3036
 
3037
  #: inc/class-page-about.php:420
3038
+ #: inc/class-page-about.php:411
3039
  msgid "You can backup 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."
3040
  msgstr "Вы можете создать резервную копию всех Ваших вложений, а также всех системных файлов, плагинов и тем в одном файле. Вы можете <a href=\"%s\">создать задание</a> для обновления резервной копии файловой системы только тогда, когда файлы изменены."
3041
 
3042
  #: inc/class-page-about.php:425
3043
  #: inc/class-page-about.php:429
3044
+ #: inc/class-page-about.php:416
3045
+ #: inc/class-page-about.php:420
3046
  msgid "Security!"
3047
  msgstr "Безопасность превыше всего!"
3048
 
3049
  #: inc/class-page-about.php:426
3050
+ #: inc/class-page-about.php:417
3051
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3052
  msgstr "По умолчанию все зашифровано: подключение к внешним услугам, локальным файлам и доступ к каталогам."
3053
 
3054
  #: inc/class-page-about.php:434
3055
  #: inc/class-page-about.php:437
3056
+ #: inc/class-page-about.php:425
3057
+ #: inc/class-page-about.php:428
3058
  msgid "Cloud Support"
3059
  msgstr "Поддержка облака"
3060
 
3061
  #: inc/class-page-about.php:438
3062
+ #: inc/class-page-about.php:429
3063
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3064
  msgstr "BackWPup поддерживает несколько облачных сервисов параллельно. Это гарантирует, что резервные копии являются избыточными."
3065
 
3066
  #: inc/class-page-about.php:444
3067
+ #: inc/class-page-about.php:435
3068
  msgid "Features / differences between Free and Pro"
3069
  msgstr "Возможности / различия между Free и Pro"
3070
 
3071
  #: inc/class-page-about.php:447
3072
+ #: inc/class-page-about.php:438
3073
  msgid "Features"
3074
  msgstr "Возможности"
3075
 
3076
  #: inc/class-page-about.php:448
3077
+ #: inc/class-page-about.php:439
3078
  msgid "FREE"
3079
  msgstr "FREE"
3080
 
3081
  #: inc/class-page-about.php:449
3082
+ #: inc/class-page-about.php:440
3083
  msgid "PRO"
3084
  msgstr "PRO"
3085
 
3086
  #: inc/class-page-about.php:452
3087
+ #: inc/class-page-about.php:443
3088
  msgid "Complete database backup"
3089
  msgstr "Полное резервное копирование базы данных"
3090
 
3091
  #: inc/class-page-about.php:457
3092
+ #: inc/class-page-about.php:448
3093
  msgid "Complete file backup"
3094
  msgstr "Полное резервное копирование файлов"
3095
 
3096
  #: inc/class-page-about.php:462
3097
+ #: inc/class-page-about.php:453
3098
  msgid "Database check"
3099
  msgstr "Проверка база данных "
3100
 
3101
  #: inc/class-page-about.php:467
3102
+ #: inc/class-page-about.php:458
3103
  msgid "Data compression"
3104
  msgstr "Сжатие данных"
3105
 
3106
  #: inc/class-page-about.php:477
3107
+ #: inc/class-page-about.php:468
3108
  msgid "List of installed plugins"
3109
  msgstr "Список установленных плагинов"
3110
 
3111
  #: inc/class-page-about.php:482
3112
+ #: inc/class-page-about.php:473
3113
  msgid "Backup archives management"
3114
  msgstr "Управление резервными копиями "
3115
 
3116
  #: inc/class-page-about.php:487
3117
+ #: inc/class-page-about.php:478
3118
  msgid "Log file management"
3119
  msgstr "Управление файлами журналов"
3120
 
3121
  #: inc/class-page-about.php:492
3122
+ #: inc/class-page-about.php:483
3123
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3124
  msgstr "Запуск заданий в WP-Cron, URL, системе, бэкенд или WP-CLI"
3125
 
3126
  #: inc/class-page-about.php:497
3127
+ #: inc/class-page-about.php:488
3128
  msgid "Log report via email"
3129
  msgstr "Отчет журнала по email"
3130
 
3131
  #: inc/class-page-about.php:502
3132
+ #: inc/class-page-about.php:493
3133
  msgid "Backup to Microsoft Azure"
3134
  msgstr "Резервное копирование на Microsoft Azure"
3135
 
3136
  #: inc/class-page-about.php:507
3137
+ #: inc/class-page-about.php:498
3138
  msgid "Backup as email"
3139
  msgstr "Резервное копирование как email"
3140
 
3141
  #: inc/class-page-about.php:512
3142
+ #: inc/class-page-about.php:503
3143
  #, fuzzy
3144
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3145
  msgstr "Резервное копирование на сервис S3 услуг <small>(Amazon, Google Storage, Hosteurope и др.)</small>"
3146
 
3147
  #: inc/class-page-about.php:527
3148
+ #: inc/class-page-about.php:518
3149
  msgid "Backup to FTP server"
3150
  msgstr "Резервное копирование на FTP-сервер"
3151
 
3152
  #: inc/class-page-about.php:532
3153
+ #: inc/class-page-about.php:523
3154
  msgid "Backup to your web space"
3155
  msgstr "Резервное копирование в Ваше веб-пространство"
3156
 
3157
  #: inc/class-page-about.php:542
3158
  #: inc/pro/class-pro.php:112
3159
+ #: inc/class-page-about.php:553
3160
  #: inc/Pro/class-pro.php:152
 
3161
  msgid "Backup to Google Drive"
3162
  msgstr "Резервное копирование на Google Диск"
3163
 
3164
  #: inc/class-page-about.php:547
3165
  #: inc/pro/class-pro.php:93
3166
+ #: inc/class-page-about.php:558
3167
  #: inc/Pro/class-pro.php:131
 
3168
  msgid "Backup to Amazon Glacier"
3169
  msgstr "Резервное копирование на Amazon Glacier"
3170
 
3171
  #: inc/class-page-about.php:552
3172
+ #: inc/class-page-about.php:563
3173
  msgid "Custom API keys for DropBox and SugarSync"
3174
  msgstr "Пользовательские ключи API для DropBox и SugarSync"
3175
 
3176
  #: inc/class-page-about.php:557
3177
+ #: inc/class-page-about.php:568
3178
  msgid "XML database backup as PHPMyAdmin schema"
3179
  msgstr "XML резервной копии базы данных, как PHPMyAdmin схемы"
3180
 
3181
  #: inc/class-page-about.php:562
3182
+ #: inc/class-page-about.php:573
3183
  msgid "Database backup as mysqldump per command line"
3184
  msgstr "Резервное копирование базы данных, как mysqldump в командной строке"
3185
 
3186
  #: inc/class-page-about.php:567
3187
+ #: inc/class-page-about.php:578
3188
  msgid "Database backup for additional MySQL databases"
3189
  msgstr "Резервное копирование базы данных для дополнительных баз данных MySQL"
3190
 
3191
  #: inc/class-page-about.php:572
3192
+ #: inc/class-page-about.php:583
3193
  msgid "Import and export job settings as XML"
3194
  msgstr "Импорт и экспорт настроек заданий как XML"
3195
 
3196
  #: inc/class-page-about.php:577
3197
+ #: inc/class-page-about.php:588
3198
  msgid "Wizard for system tests"
3199
  msgstr "Мастер для проверки системы"
3200
 
3201
  #: inc/class-page-about.php:582
3202
+ #: inc/class-page-about.php:593
3203
  msgid "Wizard for scheduled backup jobs"
3204
  msgstr "Мастер для запланированных заданий резервного копирования"
3205
 
3206
  #: inc/class-page-about.php:587
3207
+ #: inc/class-page-about.php:598
3208
  msgid "Wizard to import settings and backup jobs"
3209
  msgstr "Мастер импорта настроек и заданий резервного копирования"
3210
 
3211
  #: inc/class-page-about.php:592
3212
+ #: inc/class-page-about.php:603
3213
  msgid "Differential backup of changed directories to Dropbox"
3214
  msgstr "Дифференциальное резервное копирование измененных каталогов Dropbox"
3215
 
3216
  #: inc/class-page-about.php:597
3217
+ #: inc/class-page-about.php:608
3218
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3219
  msgstr "Дифференциальное резервное копирование измененных каталогов Файлов Rackspace Cloud"
3220
 
3221
  #: inc/class-page-about.php:602
3222
+ #: inc/class-page-about.php:613
3223
  msgid "Differential backup of changed directories to S3"
3224
  msgstr "Дифференциальное резервное копирование измененных каталогов S3"
3225
 
3226
  #: inc/class-page-about.php:607
3227
+ #: inc/class-page-about.php:618
3228
  msgid "Differential backup of changed directories to MS Azure"
3229
  msgstr "Дифференциальное резервное копирование измененных каталогов MS Azure"
3230
 
3231
  #: inc/class-page-about.php:612
3232
+ #: inc/class-page-about.php:648
3233
  msgid "<strong>Premium support</strong>"
3234
  msgstr "<strong>Премиум-поддержка</strong>"
3235
 
3236
  #: inc/class-page-about.php:617
3237
+ #: inc/class-page-about.php:653
3238
  msgid "<strong>Automatic updates</strong>"
3239
  msgstr "<strong>Автоматическое обновление</strong>"
3240
 
3241
  #: inc/class-page-about.php:624
3242
+ #: inc/class-page-about.php:660
3243
  msgid "GET PRO"
3244
  msgstr "ПОЛУЧИТЬ PRO"
3245
 
3301
  #: inc/class-page-logs.php:206
3302
  #: inc/class-page-backups.php:281
3303
  #: inc/class-page-backups.php:285
3304
+ #: inc/class-page-logs.php:234
3305
  #: inc/class-page-settings.php:768
3306
  #: inc/class-page-settings.php:779
 
3307
  msgid "Download"
3308
  msgstr "Загрузить"
3309
 
3363
  msgid "Restoring backups"
3364
  msgstr "Восстановление резервных копий"
3365
 
 
 
 
 
 
3366
  #: inc/class-page-backwpup.php:78
3367
  #: inc/class-page-backwpup.php:87
3368
  msgctxt "Dashboard heading"
3597
 
3598
  #: inc/class-page-editjob.php:328
3599
  #: inc/class-page-settings.php:117
 
3600
  #: inc/class-page-editjob.php:337
3601
+ #: inc/class-page-settings.php:214
3602
  msgid "General"
3603
  msgstr "Общие"
3604
 
3632
 
3633
  #: inc/class-page-editjob.php:391
3634
  #: inc/pro/class-wizard-job.php:254
 
3635
  #: inc/class-page-editjob.php:400
3636
+ #: inc/Pro/class-wizard-job.php:254
3637
  msgid "This job is a&#160;&hellip;"
3638
  msgstr "Это задание&#160;&hellip;"
3639
 
3640
  #: inc/class-page-editjob.php:394
3641
  #: inc/pro/class-wizard-job.php:257
 
3642
  #: inc/class-page-editjob.php:403
3643
+ #: inc/Pro/class-wizard-job.php:257
3644
  msgid "Job tasks"
3645
  msgstr "Задачи"
3646
 
3653
  #: inc/class-page-editjob.php:420
3654
  #: inc/pro/class-wizard-job.php:402
3655
  #: inc/pro/class-wizard-job.php:405
 
 
3656
  #: inc/class-page-editjob.php:426
3657
  #: inc/class-page-editjob.php:429
3658
+ #: inc/Pro/class-wizard-job.php:402
3659
+ #: inc/Pro/class-wizard-job.php:405
3660
  msgid "Backup type"
3661
  msgstr "Тип резервного копирования"
3662
 
3667
 
3668
  #: inc/class-page-editjob.php:428
3669
  #: inc/pro/class-wizard-job.php:413
 
3670
  #: inc/class-page-editjob.php:437
3671
+ #: inc/Pro/class-wizard-job.php:413
3672
  msgid "Create a backup archive"
3673
  msgstr "Создать архив"
3674
 
3768
  #: inc/class-page-editjob.php:476
3769
  #: inc/pro/class-wizard-job.php:426
3770
  #: inc/pro/class-wizard-job.php:429
 
 
3771
  #: inc/class-page-editjob.php:481
3772
  #: inc/class-page-editjob.php:483
3773
+ #: inc/Pro/class-wizard-job.php:426
3774
+ #: inc/Pro/class-wizard-job.php:429
3775
  msgid "Zip"
3776
  msgstr "Zip"
3777
 
3778
  #: inc/class-page-editjob.php:479
3779
  #: inc/pro/class-wizard-job.php:433
 
3780
  #: inc/class-page-editjob.php:486
3781
+ #: inc/Pro/class-wizard-job.php:433
3782
  msgid "Tar"
3783
  msgstr "Tar"
3784
 
3786
  #: inc/class-page-editjob.php:483
3787
  #: inc/pro/class-wizard-job.php:437
3788
  #: inc/pro/class-wizard-job.php:440
 
 
3789
  #: inc/class-page-editjob.php:488
3790
  #: inc/class-page-editjob.php:490
3791
+ #: inc/Pro/class-wizard-job.php:437
3792
+ #: inc/Pro/class-wizard-job.php:440
3793
  msgid "Tar GZip"
3794
  msgstr "Tar GZip"
3795
 
3805
  #: inc/class-page-editjob.php:489
3806
  #: inc/pro/class-wizard-job.php:444
3807
  #: inc/pro/class-wizard-job.php:447
 
 
3808
  #: inc/class-page-editjob.php:494
3809
  #: inc/class-page-editjob.php:497
3810
+ #: inc/Pro/class-wizard-job.php:444
3811
+ #: inc/Pro/class-wizard-job.php:447
3812
  msgid "Tar BZip2"
3813
  msgstr "Tar BZip2"
3814
 
3936
  #: inc/class-page-editjob.php:650
3937
  #: inc/class-page-editjob.php:718
3938
  #: inc/pro/class-wizard-job.php:320
 
3939
  #: inc/class-page-editjob.php:686
3940
  #: inc/class-page-editjob.php:754
3941
+ #: inc/Pro/class-wizard-job.php:320
3942
  msgid "Scheduler"
3943
  msgstr "Планировщик"
3944
 
3946
  #: inc/class-page-jobs.php:126
3947
  #: inc/class-page-logs.php:139
3948
  #: inc/pro/class-wizard-job.php:324
 
 
3949
  #: inc/class-page-editjob.php:691
3950
+ #: inc/class-page-logs.php:166
3951
+ #: inc/Pro/class-wizard-job.php:324
3952
  msgid "Type"
3953
  msgstr "Тип"
3954
 
3955
  #: inc/class-page-editjob.php:660
3956
  #: inc/pro/class-wizard-job.php:330
 
3957
  #: inc/class-page-editjob.php:696
3958
+ #: inc/Pro/class-wizard-job.php:330
3959
  msgid "Hour"
3960
  msgstr "час"
3961
 
3962
  #: inc/class-page-editjob.php:663
3963
  #: inc/pro/class-wizard-job.php:333
 
3964
  #: inc/class-page-editjob.php:699
3965
+ #: inc/Pro/class-wizard-job.php:333
3966
  msgid "Minute"
3967
  msgstr "минута"
3968
 
3969
  #: inc/class-page-editjob.php:667
3970
  #: inc/pro/class-wizard-job.php:337
 
3971
  #: inc/class-page-editjob.php:703
3972
+ #: inc/Pro/class-wizard-job.php:337
3973
  msgid "monthly"
3974
  msgstr "ежемесячно"
3975
 
3976
  #: inc/class-page-editjob.php:669
3977
  #: inc/pro/class-wizard-job.php:339
 
3978
  #: inc/class-page-editjob.php:705
3979
+ #: inc/Pro/class-wizard-job.php:339
3980
  msgid "on"
3981
  msgstr "в"
3982
 
3983
  #: inc/class-page-editjob.php:679
3984
  #: inc/pro/class-wizard-job.php:349
 
3985
  #: inc/class-page-editjob.php:715
3986
+ #: inc/Pro/class-wizard-job.php:349
3987
  msgid "weekly"
3988
  msgstr "еженедельно"
3989
 
3990
  #: inc/class-page-editjob.php:681
3991
  #: inc/class-page-editjob.php:788
3992
  #: inc/pro/class-wizard-job.php:351
 
3993
  #: inc/class-page-editjob.php:717
3994
  #: inc/class-page-editjob.php:824
3995
+ #: inc/Pro/class-wizard-job.php:351
3996
  msgid "Sunday"
3997
  msgstr "Воскресенье"
3998
 
3999
  #: inc/class-page-editjob.php:682
4000
  #: inc/class-page-editjob.php:789
4001
  #: inc/pro/class-wizard-job.php:352
 
4002
  #: inc/class-page-editjob.php:718
4003
  #: inc/class-page-editjob.php:825
4004
+ #: inc/Pro/class-wizard-job.php:352
4005
  msgid "Monday"
4006
  msgstr "Понедельник"
4007
 
4008
  #: inc/class-page-editjob.php:683
4009
  #: inc/class-page-editjob.php:790
4010
  #: inc/pro/class-wizard-job.php:353
 
4011
  #: inc/class-page-editjob.php:719
4012
  #: inc/class-page-editjob.php:826
4013
+ #: inc/Pro/class-wizard-job.php:353
4014
  msgid "Tuesday"
4015
  msgstr "Вторник"
4016
 
4017
  #: inc/class-page-editjob.php:684
4018
  #: inc/class-page-editjob.php:791
4019
  #: inc/pro/class-wizard-job.php:354
 
4020
  #: inc/class-page-editjob.php:720
4021
  #: inc/class-page-editjob.php:827
4022
+ #: inc/Pro/class-wizard-job.php:354
4023
  msgid "Wednesday"
4024
  msgstr "Среда"
4025
 
4026
  #: inc/class-page-editjob.php:685
4027
  #: inc/class-page-editjob.php:792
4028
  #: inc/pro/class-wizard-job.php:355
 
4029
  #: inc/class-page-editjob.php:721
4030
  #: inc/class-page-editjob.php:828
4031
+ #: inc/Pro/class-wizard-job.php:355
4032
  msgid "Thursday"
4033
  msgstr "Четверг"
4034
 
4035
  #: inc/class-page-editjob.php:686
4036
  #: inc/class-page-editjob.php:793
4037
  #: inc/pro/class-wizard-job.php:356
 
4038
  #: inc/class-page-editjob.php:722
4039
  #: inc/class-page-editjob.php:829
4040
+ #: inc/Pro/class-wizard-job.php:356
4041
  msgid "Friday"
4042
  msgstr "Пятница"
4043
 
4044
  #: inc/class-page-editjob.php:687
4045
  #: inc/class-page-editjob.php:794
4046
  #: inc/pro/class-wizard-job.php:357
 
4047
  #: inc/class-page-editjob.php:723
4048
  #: inc/class-page-editjob.php:830
4049
+ #: inc/Pro/class-wizard-job.php:357
4050
  msgid "Saturday"
4051
  msgstr "Суббота"
4052
 
4053
  #: inc/class-page-editjob.php:697
4054
  #: inc/pro/class-wizard-job.php:367
 
4055
  #: inc/class-page-editjob.php:733
4056
+ #: inc/Pro/class-wizard-job.php:367
4057
  msgid "daily"
4058
  msgstr "ежедневно"
4059
 
4060
  #: inc/class-page-editjob.php:707
4061
  #: inc/pro/class-wizard-job.php:377
 
4062
  #: inc/class-page-editjob.php:743
4063
+ #: inc/Pro/class-wizard-job.php:377
4064
  msgid "hourly"
4065
  msgstr "каждый час"
4066
 
4208
 
4209
  #: inc/class-page-jobs.php:172
4210
  #: inc/class-page-logs.php:200
 
4211
  #: inc/class-page-logs.php:228
4212
+ #: inc/Pro/class-page-support.php:221
4213
  msgid "Job ID: %d"
4214
  msgstr "ID задания: %d"
4215
 
5041
  #: inc/pro/class-wizard-job.php:17
5042
  #: inc/pro/class-wizard-jobimport.php:16
5043
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5044
  #: inc/class-admin.php:510
5045
  #: inc/class-admin.php:531
5046
+ #: inc/class-job.php:459
5047
+ #: inc/class-page-about.php:365
5048
+ #: inc/class-page-about.php:375
5049
+ #: inc/class-page-about.php:660
5050
+ #: inc/class-page-backwpup.php:254
5051
  #: inc/class-page-settings.php:1123
5052
+ #: inc/Pro/class-wizard-job.php:17
5053
+ #: inc/Pro/class-wizard-jobimport.php:16
5054
+ #: inc/Pro/class-wizard-systemtest.php:27
5055
  msgid "http://backwpup.com"
5056
  msgstr "http://backwpup.com"
5057
 
5064
  #: inc/pro/class-wizard-job.php:19
5065
  #: inc/pro/class-wizard-jobimport.php:18
5066
  #: inc/pro/class-wizard-systemtest.php:18
 
5067
  #: inc/Pro/class-wizard-job.php:19
5068
+ #: inc/Pro/class-wizard-jobimport.php:18
5069
  #: inc/Pro/class-wizard-systemtest.php:29
5070
  msgid "http://inpsyde.com"
5071
  msgstr ""
5072
 
5073
+ #: backwpup.php:573
5074
+ #: vendor_dist/backwpup.php:573
5075
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5076
  msgstr ""
5077
 
5078
+ #: inc/class-create-archive.php:114
5079
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5080
  msgstr ""
5081
 
5082
+ #: inc/class-create-archive.php:311
5083
+ msgid "File name cannot be empty."
 
5084
  msgstr ""
5085
 
5086
+ #: inc/class-create-archive.php:741
5087
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5088
  msgstr ""
5089
 
5090
+ #. translators: $1 is the filename to add into the archive.
5091
+ #: inc/class-create-archive.php:996
5092
+ msgid "Cannot open source file %s."
5093
  msgstr ""
5094
 
5095
+ #: inc/class-decrypter.php:56
5096
+ msgid "Cannot open the archive for reading."
5097
  msgstr ""
5098
 
5099
+ #: inc/class-decrypter.php:82
5100
+ msgid "Cannot write the encrypted archive."
5101
  msgstr ""
5102
 
5103
+ #: inc/class-decrypter.php:162
5104
+ msgid "Private key invalid."
5105
  msgstr ""
5106
 
5107
+ #: inc/class-destination-dropbox-downloader.php:72
5108
+ #: inc/class-destination-ftp-downloader.php:72
5109
+ #: inc/class-destination-s3-downloader.php:83
5110
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5111
+ msgid "Could not write data to file."
5112
  msgstr ""
5113
 
5114
+ #: inc/class-destination-dropbox-downloader.php:104
5115
+ #: inc/class-destination-folder-downloader.php:137
5116
+ #: inc/class-destination-ftp-downloader.php:126
5117
+ #: inc/class-destination-s3-downloader.php:112
5118
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5119
+ msgid "File could not be opened for writing."
5120
  msgstr ""
5121
 
5122
  #: inc/class-destination-folder-downloader.php:64
5136
  msgid "%s is a directory not a file."
5137
  msgstr ""
5138
 
5139
+ #: inc/class-destination-ftp-downloader.php:108
5140
+ msgid "Cannot open FTP file for download."
5141
+ msgstr ""
5142
+
5143
+ #: inc/class-destination-ftp.php:321
5144
+ msgid "Could not log in to FTP server."
5145
+ msgstr ""
5146
+
5147
+ #: inc/class-destination-ftp.php:735
5148
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5149
+ msgstr ""
5150
+
5151
+ #: inc/class-destination-s3-downloader.php:76
5152
+ msgid "Could not write data to file. Empty source file."
5153
+ msgstr ""
5154
+
5155
  #: inc/class-destination-s3.php:102
5156
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5157
  msgstr ""
5158
 
5159
+ #: inc/class-destination-s3.php:1134
5160
+ #: inc/Pro/class-destination-s3.php:63
5161
+ msgid "Amazon S3: EU (London)"
5162
+ msgstr ""
5163
+
5164
+ #: inc/class-download-file.php:135
5165
+ msgid "Invalid file name, seems file include invalid characters."
5166
+ msgstr ""
5167
+
5168
+ #: inc/class-job.php:362
5169
+ msgid "Encrypts the archive"
5170
+ msgstr ""
5171
+
5172
+ #: inc/class-job.php:1902
5173
+ msgid "No encryption key was provided. Aborting encryption."
5174
+ msgstr ""
5175
+
5176
+ #: inc/class-job.php:1912
5177
+ msgid "%d. Trying to encrypt archive &hellip;"
5178
+ msgstr ""
5179
+
5180
+ #: inc/class-job.php:1925
5181
+ msgid "Cannot open the archive for reading. Aborting encryption."
5182
+ msgstr ""
5183
+
5184
+ #: inc/class-job.php:1932
5185
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5186
+ msgstr ""
5187
+
5188
+ #: inc/class-job.php:1991
5189
+ msgid "Encrypted %s of data."
5190
+ msgstr ""
5191
+
5192
+ #: inc/class-job.php:1996
5193
+ msgid "Unable to delete unencrypted archive."
5194
+ msgstr ""
5195
+
5196
+ #: inc/class-job.php:2003
5197
+ msgid "Unable to rename encrypted archive."
5198
+ msgstr ""
5199
+
5200
+ #: inc/class-job.php:2009
5201
+ msgid "Archive has been successfully encrypted."
5202
+ msgstr ""
5203
+
5204
+ #: inc/class-job.php:2719
5205
+ msgid "exec command is not active."
5206
+ msgstr ""
5207
+
5208
+ #: inc/class-job.php:2725
5209
+ msgid "mysqldump binary not found."
5210
+ msgstr ""
5211
+
5212
+ #: inc/class-page-about.php:365
5213
+ #: inc/class-page-about.php:375
5214
+ #: inc/class-page-backwpup.php:254
5215
+ msgid "BackWPup banner"
5216
+ msgstr ""
5217
+
5218
+ #: inc/class-page-about.php:368
5219
+ #: inc/class-page-about.php:378
5220
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5221
+ msgstr ""
5222
+
5223
+ #: inc/class-page-about.php:533
5224
+ msgid "Restore manually uploaded Backup Archives"
5225
+ msgstr ""
5226
+
5227
+ #: inc/class-page-about.php:538
5228
+ msgid "Standalone Restore App"
5229
+ msgstr ""
5230
+
5231
+ #: inc/class-page-about.php:543
5232
+ msgid "Encrypt Backup Archives"
5233
+ msgstr ""
5234
+
5235
+ #: inc/class-page-about.php:548
5236
+ msgid "Restore Encrypted Backups"
5237
+ msgstr ""
5238
+
5239
+ #: inc/class-page-about.php:623
5240
+ msgid "Restore from Folder"
5241
+ msgstr ""
5242
+
5243
+ #: inc/class-page-about.php:628
5244
+ msgid "Restore from Google Drive"
5245
+ msgstr ""
5246
+
5247
+ #: inc/class-page-about.php:633
5248
+ msgid "Restore from Amazon S3"
5249
+ msgstr ""
5250
+
5251
+ #: inc/class-page-about.php:638
5252
+ msgid "Restore from Dropbox"
5253
+ msgstr ""
5254
+
5255
+ #: inc/class-page-about.php:643
5256
+ msgid "Restore from FTP"
5257
+ msgstr ""
5258
+
5259
+ #: inc/class-page-backups.php:293
5260
+ #: inc/Pro/class-pro.php:285
5261
+ #: inc/Pro/class-pro.php:286
5262
+ #: views/pro/restore/steps/step4_top.php:2
5263
+ msgid "Restore"
5264
+ msgstr ""
5265
+
5266
  #: inc/class-page-backups.php:408
5267
  msgid "&laquo; Go back"
5268
  msgstr ""
5305
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5306
  msgstr ""
5307
 
5308
+ #: inc/class-page-backwpup.php:77
5309
+ #: inc/class-page-backwpup.php:86
5310
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5311
  msgstr ""
5312
 
5313
+ #: inc/class-page-editjob.php:448
5314
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5315
  msgstr ""
5316
 
5317
+ #: inc/class-page-editjob.php:452
5318
+ msgid "Preview: "
5319
  msgstr ""
5320
 
5321
+ #: inc/class-page-editjob.php:484
5322
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5323
+ msgstr ""
5324
+
5325
+ #: inc/class-page-editjob.php:495
5326
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5327
+ msgstr ""
5328
+
5329
+ #: inc/class-page-editjob.php:506
5330
+ #: inc/class-page-editjob.php:511
5331
+ #: inc/class-page-editjob.php:520
5332
+ msgid "Encrypt Archive"
5333
+ msgstr ""
5334
+
5335
+ #: inc/class-page-editjob.php:524
5336
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5337
  msgstr ""
5338
 
5339
  #: inc/class-page-settings.php:39
5546
  msgid "BackWPup maximum script execution time"
5547
  msgstr ""
5548
 
5549
+ #: inc/class-system-tests-runner.php:77
5550
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5551
  msgstr ""
5552
 
5553
+ #: inc/class-system-tests-runner.php:88
5554
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5555
  msgstr ""
5556
 
5557
+ #: inc/class-system-tests-runner.php:100
5558
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5559
  msgstr ""
5560
 
5561
+ #: inc/class-system-tests-runner.php:193
5562
+ msgid "Yeah!"
5563
  msgstr ""
5564
 
5565
+ #: inc/class-system-tests-runner.php:261
5566
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5567
  msgstr ""
5568
 
5569
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-sv_SE.po CHANGED
@@ -15,8 +15,8 @@ msgstr ""
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
18
- #: inc/class-page-backups.php:243
19
  #: backwpup.php:286
 
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Mapp"
@@ -53,24 +53,24 @@ msgstr "Backup till FTP"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
56
- #: inc/class-destination-dropbox.php:445
57
  #: backwpup.php:334
 
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
64
- #: inc/class-page-about.php:519
65
  #: backwpup.php:335
 
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Backup till Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
72
- #: inc/class-destination-s3.php:42
73
  #: backwpup.php:350
 
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3-tjänst"
@@ -101,8 +101,8 @@ msgstr "RSC"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
104
- #: inc/class-page-about.php:524
105
  #: backwpup.php:388
 
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Backup till Rackspace Cloud Files"
@@ -115,8 +115,8 @@ msgstr "SugarSync"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
118
- #: inc/class-page-about.php:539
119
  #: backwpup.php:408
 
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Backup till SugarSync"
@@ -178,8 +178,8 @@ msgstr "Skapa nytt jobb"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
181
- #: inc/class-page-settings.php:219
182
  #: inc/class-page-logs.php:377
 
183
  msgid "Logs"
184
  msgstr "Loggar"
185
 
@@ -280,8 +280,8 @@ msgstr ""
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
283
- #: inc/class-become-inpsyder-widget.php:152
284
  #: inc/class-admin-notice.php:121
 
285
  msgid "Don't show again"
286
  msgstr ""
287
 
@@ -457,16 +457,16 @@ msgstr ""
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
460
- #: inc/Pro/class-destination-dropbox.php:405
461
  #: inc/class-destination-dropbox.php:55
462
  #: inc/class-destination-dropbox.php:458
 
463
  msgid "Dropbox API: %s"
464
  msgstr "API för Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
468
- #: inc/Pro/class-destination-gdrive.php:93
469
  #: inc/class-destination-dropbox.php:72
 
470
  msgid "Login"
471
  msgstr "Logga in"
472
 
@@ -480,16 +480,16 @@ msgstr "Autentisering"
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
 
483
  #: inc/Pro/class-destination-gdrive.php:99
484
  #: inc/Pro/class-destination-gdrive.php:415
485
- #: inc/class-destination-dropbox.php:78
486
  msgid "Not authenticated!"
487
  msgstr "Ej autentiserad!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
491
- #: inc/Pro/class-destination-dropbox.php:51
492
  #: inc/class-destination-dropbox.php:81
 
493
  msgid "Create Account"
494
  msgstr "Skapa Konto"
495
 
@@ -499,11 +499,11 @@ msgstr "Skapa Konto"
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
 
 
502
  #: inc/Pro/class-destination-gdrive.php:101
503
  #: inc/Pro/class-destination-gdrive.php:425
504
- #: inc/Pro/class-destination-dropbox.php:57
505
  #: inc/Pro/class-destination-sugarsync.php:31
506
- #: inc/class-destination-dropbox.php:83
507
  msgid "Authenticated!"
508
  msgstr "Autentiserad!"
509
 
@@ -555,10 +555,10 @@ msgstr "BackWPup kommer att ha fullständiga läs- och skrivrättigheter till he
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
558
- #: inc/Pro/class-destination-gdrive.php:112
559
  #: inc/class-destination-dropbox.php:141
560
  #: inc/class-destination-folder.php:27
561
  #: inc/class-destination-ftp.php:82
 
562
  msgid "Backup settings"
563
  msgstr "Backup-inställningar"
564
 
@@ -577,10 +577,10 @@ msgstr ""
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
580
- #: inc/Pro/class-destination-gdrive.php:125
581
  #: inc/class-destination-dropbox.php:162
582
  #: inc/class-destination-folder.php:40
583
  #: inc/class-destination-ftp.php:95
 
584
  msgid "File Deletion"
585
  msgstr "Filborttagning"
586
 
@@ -598,17 +598,17 @@ msgstr "Filborttagning"
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
601
  #: inc/Pro/class-destination-gdrive.php:134
602
  #: inc/Pro/class-destination-gdrive.php:456
603
- #: inc/Pro/class-destination-rsc.php:65
604
  #: inc/Pro/class-destination-msazure.php:45
 
605
  #: inc/Pro/class-destination-s3.php:182
606
- #: inc/Pro/class-destination-dropbox.php:76
607
- #: inc/Pro/class-destination-folder.php:45
608
- #: inc/class-destination-s3.php:229
609
- #: inc/class-destination-dropbox.php:171
610
- #: inc/class-destination-folder.php:49
611
- #: inc/class-destination-ftp.php:104
612
  msgid "Number of files to keep in folder."
613
  msgstr "Antal filer att lagra i mapp."
614
 
@@ -621,12 +621,12 @@ msgstr "Antal filer att lagra i mapp."
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
624
- #: inc/Pro/class-destination-gdrive.php:136
625
- #: inc/Pro/class-destination-glacier.php:109
626
- #: inc/class-destination-s3.php:232
627
  #: inc/class-destination-dropbox.php:173
628
  #: inc/class-destination-folder.php:51
629
  #: inc/class-destination-ftp.php:106
 
 
 
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
@@ -646,19 +646,19 @@ msgstr ""
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
649
  #: inc/Pro/class-destination-gdrive.php:148
650
  #: inc/Pro/class-destination-gdrive.php:462
651
- #: inc/Pro/class-destination-rsc.php:70
652
  #: inc/Pro/class-destination-msazure.php:56
 
653
  #: inc/Pro/class-destination-s3.php:187
654
- #: inc/Pro/class-destination-dropbox.php:82
655
- #: inc/Pro/class-destination-folder.php:51
656
- #: inc/Pro/class-destination-ftp.php:75
657
  #: inc/Pro/class-destination-sugarsync.php:65
658
- #: inc/class-destination-s3.php:245
659
- #: inc/class-destination-dropbox.php:183
660
- #: inc/class-destination-folder.php:57
661
- #: inc/class-destination-ftp.php:118
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Ta ej bort filer medans synkning mot målmapp sker!"
664
 
@@ -669,22 +669,22 @@ msgstr "%d. Försök skicka backup-fil till Dropbox&#160;&hellip;"
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
672
- #: inc/Pro/class-destination-dropbox.php:209
673
  #: inc/class-destination-dropbox.php:390
 
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
679
- #: inc/Pro/class-destination-dropbox.php:217
680
  #: inc/class-destination-dropbox.php:398
 
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s tillgängligt i din Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
686
- #: inc/Pro/class-destination-dropbox.php:223
687
  #: inc/class-destination-dropbox.php:404
 
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Ej Autentiserad hos Dropbox!"
690
 
@@ -697,26 +697,26 @@ msgstr "Laddar upp till Dropbox&#160;&hellip;"
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
700
- #: inc/Pro/class-destination-gdrive.php:924
701
- #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-dropbox.php:432
 
703
  #: inc/class-destination-sugarsync.php:263
 
704
  msgid "Backup transferred to %s"
705
  msgstr "Backup överförd till %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
709
- #: inc/Pro/class-destination-gdrive.php:930
710
  #: inc/class-destination-dropbox.php:438
 
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Uppladdad filstorlek och lokal filstorlek matchar ej."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
 
717
  #: inc/Pro/class-destination-gdrive.php:936
718
  #: inc/Pro/class-destination-glacier.php:450
719
- #: inc/class-destination-dropbox.php:444
720
  msgid "Error transfering backup to %s."
721
  msgstr "Fel vid överföring av backup-fil %s."
722
 
@@ -745,9 +745,9 @@ msgstr ""
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
 
748
  #: inc/Pro/class-destination-email.php:16
749
  #: inc/Pro/class-destination-email.php:18
750
- #: inc/class-destination-email.php:39
751
  msgid "Email address"
752
  msgstr "E-postadress"
753
 
@@ -760,10 +760,10 @@ msgstr ""
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
763
- #: inc/Pro/class-destination-email.php:29
764
- #: inc/Pro/class-destination-email.php:30
765
  #: inc/class-destination-email.php:52
766
  #: inc/class-destination-email.php:56
 
 
767
  msgid "Send test email"
768
  msgstr "Skicka e-posttest"
769
 
@@ -838,9 +838,9 @@ msgstr "SMTP värdnamn"
838
  #: inc/class-destination-email.php:98
839
  #: inc/class-destination-ftp.php:31
840
  #: inc/pro/class-destination-ftp.php:21
841
- #: inc/Pro/class-destination-ftp.php:35
842
  #: inc/class-destination-email.php:124
843
  #: inc/class-destination-ftp.php:56
 
844
  msgid "Port:"
845
  msgstr "Port:"
846
 
@@ -859,10 +859,10 @@ msgstr "SMTP säker anslutning"
859
  #: inc/class-page-settings.php:328
860
  #: inc/pro/class-jobtype-dbdump.php:157
861
  #: inc/pro/class-jobtype-dbdump.php:205
862
- #: inc/Pro/class-jobtype-dbdump.php:157
863
- #: inc/Pro/class-jobtype-dbdump.php:205
864
  #: inc/class-destination-email.php:141
865
  #: inc/class-page-settings.php:837
 
 
866
  msgid "none"
867
  msgstr "inget"
868
 
@@ -986,8 +986,8 @@ msgstr "Tidsgräns för FTP-anslutning"
986
  #: inc/class-destination-ftp.php:87
987
  #: inc/class-page-logs.php:257
988
  #: inc/class-page-settings.php:466
989
- #: inc/class-page-logs.php:288
990
  #: inc/class-destination-ftp.php:137
 
991
  msgid "seconds"
992
  msgstr "sekunder"
993
 
@@ -1142,15 +1142,15 @@ msgstr "Backup-fil överförd till FTP-server: %s"
1142
  #: inc/pro/class-destination-glacier.php:468
1143
  #: inc/pro/class-destination-rsc.php:226
1144
  #: inc/pro/class-destination-rsc.php:259
 
 
1145
  #: inc/class-destination-rsc.php:292
 
 
1146
  #: inc/Pro/class-destination-gdrive.php:905
1147
  #: inc/Pro/class-destination-glacier.php:470
1148
  #: inc/Pro/class-destination-rsc.php:228
1149
  #: inc/Pro/class-destination-rsc.php:261
1150
- #: inc/class-destination-msazure.php:275
1151
- #: inc/class-destination-s3.php:843
1152
- #: inc/class-destination-s3.php:958
1153
- #: inc/class-destination-ftp.php:673
1154
  msgid "Can not open source file for transfer."
1155
  msgstr ""
1156
 
@@ -1200,8 +1200,8 @@ msgstr "Mapp i behållare"
1200
  #: inc/class-destination-rsc.php:105
1201
  #: inc/class-destination-s3.php:114
1202
  #: inc/pro/class-destination-glacier.php:96
1203
- #: inc/Pro/class-destination-glacier.php:96
1204
  #: inc/class-destination-s3.php:215
 
1205
  msgid "File deletion"
1206
  msgstr "Filborttagning"
1207
 
@@ -1224,15 +1224,15 @@ msgstr "%d. Försök skicka backupen till en Microsoft Azure (Blob)&#160;&hellip
1224
 
1225
  #: inc/class-destination-msazure.php:233
1226
  #: inc/pro/class-destination-msazure.php:144
1227
- #: inc/Pro/class-destination-msazure.php:144
1228
  #: inc/class-destination-msazure.php:237
 
1229
  msgid "MS Azure container \"%s\" does not exist!"
1230
  msgstr "MS Azure-behållare \"%s\" existerar ej!"
1231
 
1232
  #: inc/class-destination-msazure.php:237
1233
  #: inc/pro/class-destination-msazure.php:148
1234
- #: inc/Pro/class-destination-msazure.php:148
1235
  #: inc/class-destination-msazure.php:241
 
1236
  msgid "Connected to MS Azure container \"%s\"."
1237
  msgstr "Ansluten till MS Azure-behållare \"%s\"."
1238
 
@@ -1244,9 +1244,9 @@ msgstr "Påbörjar uppladdning till MS Azure&#160;&hellip;"
1244
  #: inc/class-destination-msazure.php:292
1245
  #: inc/class-destination-msazure.php:348
1246
  #: inc/pro/class-destination-msazure.php:233
1247
- #: inc/Pro/class-destination-msazure.php:233
1248
  #: inc/class-destination-msazure.php:296
1249
  #: inc/class-destination-msazure.php:352
 
1250
  msgid "Microsoft Azure API: %s"
1251
  msgstr "API för Microsoft Azure: %s"
1252
 
@@ -1265,9 +1265,9 @@ msgstr "Kontonamn saknas!"
1265
  #: inc/class-destination-msazure.php:444
1266
  #: inc/class-destination-s3.php:222
1267
  #: inc/pro/class-destination-glacier.php:166
1268
- #: inc/Pro/class-destination-glacier.php:166
1269
  #: inc/class-destination-msazure.php:448
1270
  #: inc/class-destination-s3.php:359
 
1271
  msgid "Missing access key!"
1272
  msgstr "Saknad åtkomstnyckel!"
1273
 
@@ -1413,122 +1413,122 @@ msgstr "Välj en S3-tjänst"
1413
 
1414
  #: inc/class-destination-s3.php:33
1415
  #: inc/pro/class-destination-s3.php:18
1416
- #: inc/Pro/class-destination-s3.php:32
1417
  #: inc/class-destination-s3.php:54
 
1418
  msgid "Amazon S3 Region"
1419
  msgstr "Amazon S3-region"
1420
 
1421
  #: inc/class-destination-s3.php:34
1422
  #: inc/pro/class-destination-s3.php:19
1423
- #: inc/Pro/class-destination-s3.php:40
1424
  #: inc/class-destination-s3.php:1118
 
1425
  msgid "Amazon S3: US Standard"
1426
  msgstr "Amazon S3: US Standard"
1427
 
1428
  #: inc/class-destination-s3.php:35
1429
  #: inc/pro/class-destination-s3.php:20
1430
- #: inc/Pro/class-destination-s3.php:45
1431
  #: inc/class-destination-s3.php:1122
 
1432
  msgid "Amazon S3: US West (Northern California)"
1433
  msgstr "Amazon S3: US Väst (Norra Kalifornien)"
1434
 
1435
  #: inc/class-destination-s3.php:36
1436
  #: inc/pro/class-destination-s3.php:21
1437
- #: inc/Pro/class-destination-s3.php:53
1438
  #: inc/class-destination-s3.php:1126
 
1439
  msgid "Amazon S3: US West (Oregon)"
1440
  msgstr "Amazon S3: US Väst (Oregon)"
1441
 
1442
  #: inc/class-destination-s3.php:37
1443
  #: inc/pro/class-destination-s3.php:22
1444
- #: inc/Pro/class-destination-s3.php:58
1445
  #: inc/class-destination-s3.php:1130
 
1446
  msgid "Amazon S3: EU (Ireland)"
1447
  msgstr "Amazon S3: EU (Irland)"
1448
 
1449
  #: inc/class-destination-s3.php:38
1450
  #: inc/pro/class-destination-s3.php:23
1451
- #: inc/Pro/class-destination-s3.php:68
1452
  #: inc/class-destination-s3.php:1138
 
1453
  msgid "Amazon S3: EU (Germany)"
1454
  msgstr "Amazon S3: EU (Tyskland)"
1455
 
1456
  #: inc/class-destination-s3.php:39
1457
  #: inc/pro/class-destination-s3.php:24
1458
- #: inc/Pro/class-destination-s3.php:73
1459
  #: inc/class-destination-s3.php:1142
 
1460
  #, fuzzy
1461
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1462
  msgstr "Amazon S3: Asien Stilla Havet (Tokyo)"
1463
 
1464
  #: inc/class-destination-s3.php:40
1465
  #: inc/pro/class-destination-s3.php:25
1466
- #: inc/Pro/class-destination-s3.php:78
1467
  #: inc/class-destination-s3.php:1146
 
1468
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1469
  msgstr "Amazon S3: Asien Stilla Havet (Tokyo)"
1470
 
1471
  #: inc/class-destination-s3.php:41
1472
  #: inc/pro/class-destination-s3.php:26
1473
- #: inc/Pro/class-destination-s3.php:83
1474
  #: inc/class-destination-s3.php:1150
 
1475
  #, fuzzy
1476
  msgid "Amazon S3: Asia Pacific (Seoul)"
1477
  msgstr "Amazon S3: Asien Stilla Havet (Sydney)"
1478
 
1479
  #: inc/class-destination-s3.php:42
1480
  #: inc/pro/class-destination-s3.php:27
1481
- #: inc/Pro/class-destination-s3.php:88
1482
  #: inc/class-destination-s3.php:1154
 
1483
  msgid "Amazon S3: Asia Pacific (Singapore)"
1484
  msgstr "Amazon S3: Asien Stilla Havet (Singapore)"
1485
 
1486
  #: inc/class-destination-s3.php:43
1487
  #: inc/pro/class-destination-s3.php:28
1488
- #: inc/Pro/class-destination-s3.php:93
1489
  #: inc/class-destination-s3.php:1158
 
1490
  msgid "Amazon S3: Asia Pacific (Sydney)"
1491
  msgstr "Amazon S3: Asien Stilla Havet (Sydney)"
1492
 
1493
  #: inc/class-destination-s3.php:44
1494
  #: inc/pro/class-destination-s3.php:29
1495
- #: inc/Pro/class-destination-s3.php:98
1496
  #: inc/class-destination-s3.php:1162
 
1497
  msgid "Amazon S3: South America (Sao Paulo)"
1498
  msgstr "Amazon S3: Sydamerika (Sao Paulo)"
1499
 
1500
  #: inc/class-destination-s3.php:45
1501
  #: inc/pro/class-destination-s3.php:30
1502
- #: inc/Pro/class-destination-s3.php:103
1503
  #: inc/class-destination-s3.php:1166
 
1504
  msgid "Amazon S3: China (Beijing)"
1505
  msgstr "Amazon S3: Kina (Beijing)"
1506
 
1507
  #: inc/class-destination-s3.php:46
1508
  #: inc/pro/class-destination-s3.php:31
1509
- #: inc/Pro/class-destination-s3.php:108
1510
  #: inc/class-destination-s3.php:1170
 
1511
  msgid "Google Storage: EU"
1512
  msgstr ""
1513
 
1514
  #: inc/class-destination-s3.php:47
1515
  #: inc/pro/class-destination-s3.php:32
1516
- #: inc/Pro/class-destination-s3.php:113
1517
  #: inc/class-destination-s3.php:1174
 
1518
  msgid "Google Storage: USA"
1519
  msgstr ""
1520
 
1521
  #: inc/class-destination-s3.php:48
1522
  #: inc/pro/class-destination-s3.php:33
1523
- #: inc/Pro/class-destination-s3.php:118
1524
  #: inc/class-destination-s3.php:1178
 
1525
  msgid "Google Storage: Asia"
1526
  msgstr ""
1527
 
1528
  #: inc/class-destination-s3.php:49
1529
  #: inc/pro/class-destination-s3.php:34
1530
- #: inc/Pro/class-destination-s3.php:123
1531
  #: inc/class-destination-s3.php:1182
 
1532
  msgid "Dream Host Cloud Storage"
1533
  msgstr "Dream Host Molnlagring"
1534
 
@@ -1544,15 +1544,15 @@ msgstr "S3 Åtkomstnycklar"
1544
 
1545
  #: inc/class-destination-s3.php:65
1546
  #: inc/pro/class-destination-glacier.php:54
1547
- #: inc/Pro/class-destination-glacier.php:54
1548
  #: inc/class-destination-s3.php:121
 
1549
  msgid "Access Key"
1550
  msgstr "Åtkomstnyckel"
1551
 
1552
  #: inc/class-destination-s3.php:72
1553
  #: inc/pro/class-destination-glacier.php:61
1554
- #: inc/Pro/class-destination-glacier.php:61
1555
  #: inc/class-destination-s3.php:135
 
1556
  msgid "Secret Key"
1557
  msgstr "Hemlig Nyckel"
1558
 
@@ -1621,8 +1621,8 @@ msgstr "Spara filer krypterade (AES256) på servern."
1621
 
1622
  #: inc/class-destination-s3.php:224
1623
  #: inc/pro/class-destination-glacier.php:168
1624
- #: inc/Pro/class-destination-glacier.php:168
1625
  #: inc/class-destination-s3.php:361
 
1626
  msgid "Missing secret access key!"
1627
  msgstr "Saknad hemlig åtkomstnyckel!"
1628
 
@@ -1638,8 +1638,8 @@ msgstr "Hink %1$s skapad."
1638
 
1639
  #: inc/class-destination-s3.php:348
1640
  #: inc/pro/class-destination-s3.php:147
1641
- #: inc/Pro/class-destination-s3.php:285
1642
  #: inc/class-destination-s3.php:520
 
1643
  msgid " %s is not a valid bucket name."
1644
  msgstr "%s är ej ett giltigt hinknamn."
1645
 
@@ -1649,12 +1649,12 @@ msgstr "%s är ej ett giltigt hinknamn."
1649
  #: inc/class-destination-s3.php:610
1650
  #: inc/class-destination-s3.php:670
1651
  #: inc/pro/class-destination-s3.php:337
1652
- #: inc/Pro/class-destination-s3.php:623
1653
  #: inc/class-destination-s3.php:570
1654
  #: inc/class-destination-s3.php:868
1655
  #: inc/class-destination-s3.php:936
1656
  #: inc/class-destination-s3.php:995
1657
  #: inc/class-destination-s3.php:1006
 
1658
  msgid "S3 Service API: %s"
1659
  msgstr "API för S3-tjänst: %s"
1660
 
@@ -1665,15 +1665,15 @@ msgstr "%d. Försöker skicka backup-fil till S3-tjänst&#160;&hellip;"
1665
 
1666
  #: inc/class-destination-s3.php:470
1667
  #: inc/pro/class-destination-s3.php:188
1668
- #: inc/Pro/class-destination-s3.php:383
1669
  #: inc/class-destination-s3.php:803
 
1670
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1671
  msgstr "Ansluten till S3-hink \"%1$s\" i %2$s"
1672
 
1673
  #: inc/class-destination-s3.php:473
1674
  #: inc/pro/class-destination-s3.php:191
1675
- #: inc/Pro/class-destination-s3.php:391
1676
  #: inc/class-destination-s3.php:808
 
1677
  msgid "S3 Bucket \"%s\" does not exist!"
1678
  msgstr "Amazon S3-hink \"%s\" existerar ej!"
1679
 
@@ -1694,8 +1694,8 @@ msgstr "Påbörjar uppladdning till S3-tjänst&#160;&hellip;"
1694
 
1695
  #: inc/class-destination-s3.php:601
1696
  #: inc/pro/class-destination-glacier.php:444
1697
- #: inc/Pro/class-destination-glacier.php:446
1698
  #: inc/class-destination-s3.php:972
 
1699
  msgid "Backup transferred to %s."
1700
  msgstr "Backup-fil överförd till %s."
1701
 
@@ -1735,9 +1735,9 @@ msgstr "E-postadress:"
1735
  #: inc/pro/class-destination-ftp.php:29
1736
  #: inc/pro/class-destination-sugarsync.php:20
1737
  #: inc/pro/class-jobtype-dbdump.php:126
1738
- #: inc/Pro/class-jobtype-dbdump.php:126
1739
  #: inc/Pro/class-destination-ftp.php:47
1740
  #: inc/Pro/class-destination-sugarsync.php:20
 
1741
  msgid "Password:"
1742
  msgstr "Lösenord:"
1743
 
@@ -1915,75 +1915,75 @@ msgid "BackWPup jobs helper"
1915
  msgstr "BackWPup jobbassistent"
1916
 
1917
  #: inc/class-job.php:263
1918
- #: inc/class-job.php:269
1919
  msgid "Starting job"
1920
  msgstr "Påbörjar jobb"
1921
 
1922
  #: inc/class-job.php:278
1923
- #: inc/class-job.php:284
1924
  msgid "Job Start"
1925
  msgstr "Jobbstart"
1926
 
1927
  #: inc/class-job.php:298
1928
- #: inc/class-job.php:304
1929
  msgid "Creates manifest file"
1930
  msgstr "Skapar manifest-fil"
1931
 
1932
  #: inc/class-job.php:320
1933
- #: inc/class-job.php:326
1934
  msgid "Creates archive"
1935
  msgstr "Skapar arkiv"
1936
 
1937
  #: inc/class-job.php:360
1938
- #: inc/class-job.php:373
1939
  msgid "End of Job"
1940
  msgstr "Jobb Slut"
1941
 
1942
  #: inc/class-job.php:377
1943
- #: inc/class-job.php:395
1944
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1945
  msgstr "BackWPup-lobb för %1$s från %2$s vid %3$s"
1946
 
1947
  #: inc/class-job.php:394
1948
- #: inc/class-job.php:412
1949
  msgctxt "Plugin name; Plugin Version; plugin url"
1950
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1951
  msgstr ""
1952
 
1953
  #: inc/class-job.php:395
1954
- #: inc/class-job.php:413
1955
  msgctxt "WordPress Version; Blog url"
1956
  msgid "[INFO] WordPress %1$s on %2$s"
1957
  msgstr ""
1958
 
1959
  #: inc/class-job.php:396
1960
- #: inc/class-job.php:414
1961
  msgid "Normal"
1962
  msgstr ""
1963
 
1964
  #: inc/class-job.php:399
1965
- #: inc/class-job.php:417
1966
  msgid "Debug"
1967
  msgstr ""
1968
 
1969
  #: inc/class-job.php:402
1970
- #: inc/class-job.php:420
1971
  msgid "(translated)"
1972
  msgstr ""
1973
 
1974
  #: inc/class-job.php:404
1975
- #: inc/class-job.php:422
1976
  #, fuzzy
1977
  msgid "[INFO] Log Level: %1$s %2$s"
1978
  msgstr "[INFO] curl-ver.: %1$s; %2$s"
1979
 
1980
  #: inc/class-job.php:409
1981
- #: inc/class-job.php:427
1982
  msgid "[INFO] BackWPup job: %1$s"
1983
  msgstr ""
1984
 
1985
  #: inc/class-job.php:412
1986
- #: inc/class-job.php:430
1987
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1988
  msgstr ""
1989
 
@@ -1991,151 +1991,151 @@ msgstr ""
1991
  #: inc/class-page-backwpup.php:323
1992
  #: inc/class-page-jobs.php:282
1993
  #: inc/class-page-jobs.php:291
1994
- #: inc/class-job.php:444
1995
  msgid "Not scheduled!"
1996
  msgstr "Ej schemalagt!"
1997
 
1998
  #: inc/class-job.php:430
1999
  #: inc/class-job.php:440
2000
- #: inc/class-job.php:448
2001
- #: inc/class-job.php:458
2002
  msgid "[INFO] Cron: %s; Next: %s "
2003
  msgstr ""
2004
 
2005
  #: inc/class-job.php:433
2006
- #: inc/class-job.php:451
2007
  msgid "[INFO] BackWPup job start with link is active"
2008
  msgstr "[INFO] BackWPup jobbstart via länk är aktivt"
2009
 
2010
  #: inc/class-job.php:435
2011
- #: inc/class-job.php:453
2012
  msgid "[INFO] BackWPup job start with EasyCron.com"
2013
  msgstr ""
2014
 
2015
  #: inc/class-job.php:443
2016
- #: inc/class-job.php:461
2017
  msgid "[INFO] BackWPup no automatic job start configured"
2018
  msgstr "[INFO] BackWPup ingen automatisk jobbstart är konfigurerad"
2019
 
2020
  #: inc/class-job.php:447
2021
- #: inc/class-job.php:465
2022
  msgid "[INFO] BackWPup job started from wp-cron"
2023
  msgstr "[INFO] BackWPup jobb startat från wp-cron"
2024
 
2025
  #: inc/class-job.php:449
2026
- #: inc/class-job.php:467
2027
  msgid "[INFO] BackWPup job started manually"
2028
  msgstr "[INFO] BackWPup jobb startat manuellt"
2029
 
2030
  #: inc/class-job.php:451
2031
- #: inc/class-job.php:469
2032
  msgid "[INFO] BackWPup job started from external url"
2033
  msgstr "[INFO] BackWPup jobb startat från extern url"
2034
 
2035
  #: inc/class-job.php:453
2036
- #: inc/class-job.php:471
2037
  msgid "[INFO] BackWPup job started form commandline interface"
2038
  msgstr "[INFO] BackWPup jobb startat från kommandorad"
2039
 
2040
  #: inc/class-job.php:462
2041
- #: inc/class-job.php:480
2042
  msgid "[INFO] PHP ver.:"
2043
  msgstr "[INFO] PHP-ver.:"
2044
 
2045
  #: inc/class-job.php:463
2046
- #: inc/class-job.php:481
2047
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2048
  msgstr "[INFO] Maximal körtid för PHP-skript är %1$d sekunder"
2049
 
2050
  #: inc/class-job.php:467
2051
- #: inc/class-job.php:485
2052
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2053
  msgstr "[INFO] Tid för omstart av skript är konfigurerad till %1$d sekunder"
2054
 
2055
  #: inc/class-job.php:470
2056
- #: inc/class-job.php:488
2057
  msgid "[INFO] MySQL ver.: %s"
2058
  msgstr "[INFO] MySQL-ver.: %s"
2059
 
2060
  #: inc/class-job.php:472
2061
- #: inc/class-job.php:490
2062
  msgid "[INFO] Web Server: %s"
2063
  msgstr "[INFO] Webbserver: %s"
2064
 
2065
  #: inc/class-job.php:476
2066
- #: inc/class-job.php:494
2067
  msgid "[INFO] curl ver.: %1$s; %2$s"
2068
  msgstr "[INFO] curl-ver.: %1$s; %2$s"
2069
 
2070
  #: inc/class-job.php:478
2071
- #: inc/class-job.php:496
2072
  msgid "[INFO] Temp folder is: %s"
2073
  msgstr "[INFO] Temp-mapp är: %s"
2074
 
2075
  #: inc/class-job.php:485
2076
- #: inc/class-job.php:503
2077
  msgid "[INFO] Logfile is: %s"
2078
  msgstr "[INFO] Loggfil är: %s"
2079
 
2080
  #: inc/class-job.php:492
2081
- #: inc/class-job.php:510
2082
  msgid "[INFO] Backup file is: %s"
2083
  msgstr "[INFO] Backup-fil är: %s"
2084
 
2085
  #: inc/class-job.php:494
2086
- #: inc/class-job.php:512
2087
  msgid "[INFO] Backup type is: %s"
2088
  msgstr "[INFO] Backup-typ är: %s"
2089
 
2090
  #: inc/class-job.php:502
2091
- #: inc/class-job.php:520
2092
  msgid "Could not write log file"
2093
  msgstr ""
2094
 
2095
  #: inc/class-job.php:514
2096
- #: inc/class-job.php:532
2097
  msgid "No destination correctly defined for backup! Please correct job settings."
2098
  msgstr "Inget mål har definierats korrekt för backupen! Vänligen åtgärda jobbinställningarna."
2099
 
2100
  #: inc/class-job.php:644
2101
- #: inc/class-job.php:628
2102
  msgid "Cannot write progress to working file. Job will be aborted."
2103
  msgstr "Kan ej skriva förlopp till arbetsfil. Jobbet kommer att avbrytas."
2104
 
2105
  #: inc/class-job.php:716
2106
  #: inc/class-page-jobs.php:786
2107
- #: inc/class-job.php:700
2108
  msgid "WARNING:"
2109
  msgstr "VARNING:"
2110
 
2111
  #: inc/class-job.php:725
2112
  #: inc/class-page-jobs.php:784
2113
- #: inc/class-job.php:709
2114
  msgid "ERROR:"
2115
  msgstr "FEL:"
2116
 
2117
  #: inc/class-job.php:729
2118
- #: inc/class-job.php:713
2119
  msgid "DEPRECATED:"
2120
  msgstr "TAGET UR BRUK:"
2121
 
2122
  #: inc/class-job.php:732
2123
- #: inc/class-job.php:716
2124
  msgid "STRICT NOTICE:"
2125
  msgstr "STRIKT NOTIS:"
2126
 
2127
  #: inc/class-job.php:737
2128
- #: inc/class-job.php:721
2129
  msgid "RECOVERABLE ERROR:"
2130
  msgstr "ÅTERHÄMTNINGSBART FEL:"
2131
 
2132
  #: inc/class-job.php:985
2133
- #: inc/class-job.php:972
2134
  msgid "Aborted by user!"
2135
  msgstr "Avbröts av användare!"
2136
 
2137
  #: inc/class-job.php:1019
2138
- #: inc/class-job.php:1005
2139
  msgid "One old log deleted"
2140
  msgid_plural "%d old logs deleted"
2141
  msgstr[0] "En gammal loggfil borttagen"
@@ -2143,292 +2143,292 @@ msgstr[1] "%d gamla loggfiler borttagna"
2143
 
2144
  #: inc/class-job.php:1026
2145
  #: inc/class-page-jobs.php:784
2146
- #: inc/class-job.php:1012
2147
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2148
  msgstr "Jobb har avslutats med fel på %s sekunder. Du måste åtgärda felen för korrekt exekvering."
2149
 
2150
  #: inc/class-job.php:1028
2151
- #: inc/class-job.php:1014
2152
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2153
  msgstr "Jobb har slutförts med varningar på %s sekunder. Vänligen åtgärda varningarna för korrekt exekvering."
2154
 
2155
  #: inc/class-job.php:1030
2156
  #: inc/class-page-jobs.php:788
2157
- #: inc/class-job.php:1016
2158
  msgid "Job done in %s seconds."
2159
  msgstr "Jobb slutfört på %s sekunder."
2160
 
2161
  #: inc/class-job.php:1074
2162
- #: inc/class-job.php:1060
2163
  msgid "SUCCESSFUL"
2164
  msgstr "LYCKADES"
2165
 
2166
  #: inc/class-job.php:1076
2167
- #: inc/class-job.php:1062
2168
  msgid "WARNING"
2169
  msgstr "VARNING"
2170
 
2171
  #: inc/class-job.php:1079
2172
- #: inc/class-job.php:1065
2173
  msgid "ERROR"
2174
  msgstr "FEL"
2175
 
2176
  #: inc/class-job.php:1082
2177
- #: inc/class-job.php:1068
2178
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2179
  msgstr "[%3$s] BackWPup logg %1$s: %2$s"
2180
 
2181
  #: inc/class-job.php:1188
2182
- #: inc/class-job.php:1180
2183
  msgid "Restart after %1$d seconds."
2184
  msgstr "Starta om efter %1$d sekunder."
2185
 
2186
  #: inc/class-job.php:1190
2187
- #: inc/class-job.php:1182
2188
  #, fuzzy
2189
  msgid "Restart after getting signal."
2190
  msgstr "Starta om efter %1$d sekunder."
2191
 
2192
  #: inc/class-job.php:1363
2193
- #: inc/class-job.php:1357
2194
  msgid "Job restarts due to inactivity for more than 5 minutes."
2195
  msgstr "Jobb startas om p.g.a. längre än 5 minuters inaktivitet."
2196
 
2197
  #: inc/class-job.php:1461
2198
- #: inc/class-job.php:1455
2199
  msgid "Step aborted: too many attempts!"
2200
  msgstr "Steg skippas: för många försök!"
2201
 
2202
  #: inc/class-job.php:1532
2203
- #: inc/class-job.php:1528
2204
  msgid "%d. Trying to create backup archive &hellip;"
2205
  msgstr "%d. Försöker skapa backup-arkiv &hellip;"
2206
 
2207
  #: inc/class-job.php:1540
2208
- #: inc/class-job.php:1536
2209
  msgctxt "Archive compression method"
2210
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2211
  msgstr "Komprimerar filer som %s. Ha tålamod, detta kan ta en stund.."
2212
 
2213
  #: inc/class-job.php:1547
2214
- #: inc/class-job.php:1544
2215
  msgid "Adding Extra files to Archive"
2216
  msgstr ""
2217
 
2218
  #: inc/class-job.php:1559
2219
  #: inc/class-job.php:1619
2220
- #: inc/class-job.php:1555
2221
- #: inc/class-job.php:1626
2222
  msgid "Cannot create backup archive correctly. Aborting creation."
2223
  msgstr "Kan ej skapa backup-arkiv korrekt. Avbryter skapande."
2224
 
2225
  #: inc/class-job.php:1575
2226
- #: inc/class-job.php:1571
2227
  msgid "Archiving Folder: %s"
2228
  msgstr ""
2229
 
2230
  #: inc/class-job.php:1629
2231
- #: inc/class-job.php:1636
2232
  msgid "Backup archive created."
2233
  msgstr "Backup-arkiv skapat."
2234
 
2235
  #: inc/class-job.php:1643
2236
- #: inc/class-job.php:1650
2237
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2238
  msgstr ""
2239
 
2240
  #: inc/class-job.php:1646
2241
- #: inc/class-job.php:1653
2242
  msgid "Archive size is %s."
2243
  msgstr "Arkivstorlek är %s."
2244
 
2245
  #: inc/class-job.php:1649
2246
- #: inc/class-job.php:1656
2247
  msgid "%1$d Files with %2$s in Archive."
2248
  msgstr "%1$d Filer med %2$s i Arkiv."
2249
 
2250
  #: inc/class-job.php:1698
2251
- #: inc/class-job.php:1831
2252
  #, fuzzy
2253
  msgctxt "Folder name"
2254
  msgid "Folder %s does not exist"
2255
  msgstr "Mapp %s existerar ej"
2256
 
2257
  #: inc/class-job.php:1703
2258
- #: inc/class-job.php:1837
2259
  #, fuzzy
2260
  msgctxt "Folder name"
2261
  msgid "Folder %s is not readable"
2262
  msgstr "Mappen \"%s\" är ej läsbar!"
2263
 
2264
  #: inc/class-job.php:1725
2265
- #: inc/class-job.php:1860
2266
  msgid "Link \"%s\" not following."
2267
  msgstr "Länk \"%s\" är bruten."
2268
 
2269
  #: inc/class-job.php:1727
2270
- #: inc/class-job.php:1862
2271
  msgid "File \"%s\" is not readable!"
2272
  msgstr "Fil \"%s\" är ej läsbar!"
2273
 
2274
  #: inc/class-job.php:1731
2275
- #: inc/class-job.php:1866
2276
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2277
  msgstr "Filstorlek på “%s” kan ej hämtas. Filen kan vara för stor och läggs därför ej till kön."
2278
 
2279
  #: inc/class-job.php:1814
2280
- #: inc/class-job.php:1949
2281
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2282
  msgstr "%d. Försöker skapa en manifest-fil&#160;&hellip;"
2283
 
2284
  #: inc/class-job.php:1870
2285
- #: inc/class-job.php:2005
2286
  msgid "You may have noticed the manifest.json file in this archive."
2287
  msgstr "Du har kanske noterat filen manifest.json i detta arkiv."
2288
 
2289
  #: inc/class-job.php:1871
2290
- #: inc/class-job.php:2006
2291
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2292
  msgstr "manifest.json kan behövas senare för återställning av backup från detta arkiv."
2293
 
2294
  #: inc/class-job.php:1872
2295
- #: inc/class-job.php:2007
2296
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2297
  msgstr "Vänligen lämna manifest.json på sin plats och orörd. I annat fall kan den säkert ignoreras."
2298
 
2299
  #: inc/class-job.php:1882
2300
- #: inc/class-job.php:2017
2301
  msgid "Added manifest.json file with %1$s to backup file list."
2302
  msgstr "Lade med %1$s filen manifest.json till backup-fillistan."
2303
 
2304
  #: inc/class-job.php:1921
2305
- #: inc/class-job.php:2056
2306
  msgid "Wrong BackWPup JobID"
2307
  msgstr "Fel BackWPup Jobb-ID"
2308
 
2309
  #: inc/class-job.php:1934
2310
- #: inc/class-job.php:2069
2311
  msgid "A BackWPup job is already running"
2312
  msgstr "Ett BackWPup-jobb körs redan"
2313
 
2314
  #: inc/class-job.php:2302
2315
- #: inc/class-job.php:2482
2316
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2317
  msgid "Hangup detected on controlling terminal or death of controlling process"
2318
  msgstr ""
2319
 
2320
  #: inc/class-job.php:2306
2321
- #: inc/class-job.php:2486
2322
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2323
  msgid "Interrupt from keyboard"
2324
  msgstr ""
2325
 
2326
  #: inc/class-job.php:2310
2327
- #: inc/class-job.php:2490
2328
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2329
  msgid "Quit from keyboard"
2330
  msgstr ""
2331
 
2332
  #: inc/class-job.php:2314
2333
- #: inc/class-job.php:2494
2334
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2335
  msgid "Illegal Instruction"
2336
  msgstr ""
2337
 
2338
  #: inc/class-job.php:2318
2339
- #: inc/class-job.php:2498
2340
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2341
  msgid "Abort signal from abort(3)"
2342
  msgstr ""
2343
 
2344
  #: inc/class-job.php:2322
2345
- #: inc/class-job.php:2502
2346
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2347
  msgid "Bus error (bad memory access)"
2348
  msgstr ""
2349
 
2350
  #: inc/class-job.php:2326
2351
- #: inc/class-job.php:2506
2352
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2353
  msgid "Floating point exception"
2354
  msgstr ""
2355
 
2356
  #: inc/class-job.php:2330
2357
- #: inc/class-job.php:2510
2358
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2359
  msgid "Invalid memory reference"
2360
  msgstr ""
2361
 
2362
  #: inc/class-job.php:2334
2363
- #: inc/class-job.php:2514
2364
  #, fuzzy
2365
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Termination signal"
2367
  msgstr "Målmappar"
2368
 
2369
  #: inc/class-job.php:2338
2370
- #: inc/class-job.php:2518
2371
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2372
  msgid "Stack fault on coprocessor"
2373
  msgstr ""
2374
 
2375
  #: inc/class-job.php:2342
2376
- #: inc/class-job.php:2522
2377
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2378
  msgid "User-defined signal 1"
2379
  msgstr ""
2380
 
2381
  #: inc/class-job.php:2346
2382
- #: inc/class-job.php:2526
2383
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2384
  msgid "User-defined signal 2"
2385
  msgstr ""
2386
 
2387
  #: inc/class-job.php:2350
2388
- #: inc/class-job.php:2530
2389
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2390
  msgid "Urgent condition on socket"
2391
  msgstr ""
2392
 
2393
  #: inc/class-job.php:2354
2394
- #: inc/class-job.php:2534
2395
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2396
  msgid "CPU time limit exceeded"
2397
  msgstr ""
2398
 
2399
  #: inc/class-job.php:2358
2400
- #: inc/class-job.php:2538
2401
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2402
  msgid "File size limit exceeded"
2403
  msgstr ""
2404
 
2405
  #: inc/class-job.php:2362
2406
- #: inc/class-job.php:2542
2407
  #, fuzzy
2408
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "Power failure"
2410
  msgstr "FTP: Inloggning misslyckades!"
2411
 
2412
  #: inc/class-job.php:2366
2413
- #: inc/class-job.php:2546
2414
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2415
  msgid "Bad argument to routine"
2416
  msgstr ""
2417
 
2418
  #: inc/class-job.php:2373
2419
- #: inc/class-job.php:2553
2420
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2421
  msgstr ""
2422
 
2423
  #: inc/class-job.php:2407
2424
  #: inc/class-job.php:2420
2425
- #: inc/class-job.php:2587
2426
- #: inc/class-job.php:2600
2427
  msgid "System: %s"
2428
  msgstr ""
2429
 
2430
  #: inc/class-job.php:2435
2431
- #: inc/class-job.php:2615
2432
  msgid "Exception caught in %1$s: %2$s"
2433
  msgstr "Undantag uppfångat i %1$s: %2$s"
2434
 
@@ -2728,7 +2728,7 @@ msgstr "XML-export"
2728
 
2729
  #: inc/class-jobtype-wpexp.php:14
2730
  #: inc/class-page-about.php:472
2731
- #: inc/class-page-about.php:474
2732
  msgid "WordPress XML export"
2733
  msgstr "WordPress XML-export"
2734
 
@@ -2965,281 +2965,274 @@ msgid "New Job"
2965
  msgstr "Nytt Jobb"
2966
 
2967
  #: inc/class-page-about.php:369
2968
- #: inc/class-page-about.php:371
2969
  msgid "Welcome to BackWPup Pro"
2970
  msgstr "Välkommen till BackWPup Pro"
2971
 
2972
  #: inc/class-page-about.php:370
2973
  #: inc/class-page-backwpup.php:75
2974
- #: inc/class-page-about.php:372
2975
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2976
  msgstr "BackWPup:s jobbguider gör planering och schemaläggning av dina backup-jobb till en lätt match."
2977
 
2978
- #: inc/class-page-about.php:371
2979
- #: inc/class-page-about.php:384
2980
- #: inc/class-page-about.php:373
2981
- #: inc/class-page-about.php:386
2982
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2983
- msgstr "Använd dina backup-arkiv för att spara hela din WordPress-installation inklusive <code>/wp-content/</code>. Spara dem till en extern lagringstjänst om du inte vill lagra backup-filerna på samma server. Du kan återskapa en installation från ett enskilt backup-arkiv. Använd ett verktyg som phpMyAdmin eller ett tillägg som <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> för att återställa dina databas-backup-filer."
2984
-
2985
  #: inc/class-page-about.php:372
2986
- #: inc/class-page-about.php:374
2987
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2988
  msgstr "Redo att <a href=\"%1$s\">konfigurera ett backup-jobb</a>? Du kan <a href=\"%2$s\">använda guiderna</a> eller planera din backup i expertläget."
2989
 
2990
  #: inc/class-page-about.php:382
2991
- #: inc/class-page-about.php:384
2992
  msgid "Welcome to BackWPup"
2993
  msgstr "Välkommen till BackWPup"
2994
 
2995
  #: inc/class-page-about.php:385
2996
- #: inc/class-page-about.php:387
2997
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2998
  msgstr "Redo att konfigurera ett backup-jobb? Använd en av guiderna för att planera vad du vill spara."
2999
 
3000
  #: inc/class-page-about.php:398
3001
- #: inc/class-page-about.php:400
3002
  msgid "Save your database"
3003
  msgstr "Spara din databas"
3004
 
3005
  #: inc/class-page-about.php:401
3006
- #: inc/class-page-about.php:403
3007
  msgid "Save your database regularly"
3008
  msgstr "Spara din databas regelbundet"
3009
 
3010
  #: inc/class-page-about.php:402
3011
- #: inc/class-page-about.php:404
3012
  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."
3013
  msgstr "Med BackWPup kan du schemalägga databas-backupen för automatisk körning. Du kan återställa din databas från en enskild backup-fil. Du bör <a href=\"%s\">konfigurera ett backup-jobb</a>, så att du inte glömmer det. Det finns också möjlighet att reparera och optimera databasen efter varje backup."
3014
 
3015
  #: inc/class-page-about.php:407
3016
  #: inc/class-page-about.php:411
3017
- #: inc/class-page-about.php:409
3018
- #: inc/class-page-about.php:413
3019
  msgid "WordPress XML Export"
3020
  msgstr "WordPress XML-export"
3021
 
3022
  #: inc/class-page-about.php:408
3023
- #: inc/class-page-about.php:410
3024
  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."
3025
  msgstr "Du kan välja det inbyggda WordPress-exportformatet, utöver eller uteslutande, för att spara din data. Detta fungerar naturligtvis även för automatiska backuper. Fördelen är att du kan importera dessa filer till en blogg med WordPress vanliga importverktyg. "
3026
 
3027
  #: inc/class-page-about.php:416
3028
- #: inc/class-page-about.php:418
3029
  msgid "Save all data from the webserver"
3030
  msgstr "Spara all data från webbservern"
3031
 
3032
  #: inc/class-page-about.php:419
3033
- #: inc/class-page-about.php:421
3034
  msgid "Save all files"
3035
  msgstr "Spara alla filer"
3036
 
3037
  #: inc/class-page-about.php:420
3038
- #: inc/class-page-about.php:422
3039
  msgid "You can backup 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."
3040
  msgstr "Du kan ta backup på alla dina bilagor, samt alla systemfiler, tillägg och teman i en enda fil. Du kan <a href=\"%s\">skapa ett jobb</a> som uppdaterar en backup av ditt filsystem endast när filer ändras."
3041
 
3042
  #: inc/class-page-about.php:425
3043
  #: inc/class-page-about.php:429
3044
- #: inc/class-page-about.php:427
3045
- #: inc/class-page-about.php:431
3046
  msgid "Security!"
3047
  msgstr "Säkerhet!"
3048
 
3049
  #: inc/class-page-about.php:426
3050
- #: inc/class-page-about.php:428
3051
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3052
  msgstr "Allting krypteras som standard: anslutningar till externa tjänster, lokala filer samt tillgång till kataloger."
3053
 
3054
  #: inc/class-page-about.php:434
3055
  #: inc/class-page-about.php:437
3056
- #: inc/class-page-about.php:436
3057
- #: inc/class-page-about.php:439
3058
  msgid "Cloud Support"
3059
  msgstr "Moln-stöd"
3060
 
3061
  #: inc/class-page-about.php:438
3062
- #: inc/class-page-about.php:440
3063
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3064
  msgstr "BackWPup stöder flera molntjänster parallellt. Detta säkerställer redundanta backuper."
3065
 
3066
  #: inc/class-page-about.php:444
3067
- #: inc/class-page-about.php:446
3068
  msgid "Features / differences between Free and Pro"
3069
  msgstr "Funktioner / Skillnader mellan Gratis och Pro"
3070
 
3071
  #: inc/class-page-about.php:447
3072
- #: inc/class-page-about.php:449
3073
  msgid "Features"
3074
  msgstr "Funktioner"
3075
 
3076
  #: inc/class-page-about.php:448
3077
- #: inc/class-page-about.php:450
3078
  msgid "FREE"
3079
  msgstr "GRATIS"
3080
 
3081
  #: inc/class-page-about.php:449
3082
- #: inc/class-page-about.php:451
3083
  msgid "PRO"
3084
  msgstr "PRO"
3085
 
3086
  #: inc/class-page-about.php:452
3087
- #: inc/class-page-about.php:454
3088
  msgid "Complete database backup"
3089
  msgstr "Fullständig databas-backup"
3090
 
3091
  #: inc/class-page-about.php:457
3092
- #: inc/class-page-about.php:459
3093
  msgid "Complete file backup"
3094
  msgstr "Fullständig fil-backup"
3095
 
3096
  #: inc/class-page-about.php:462
3097
- #: inc/class-page-about.php:464
3098
  msgid "Database check"
3099
  msgstr "Databaskontroll"
3100
 
3101
  #: inc/class-page-about.php:467
3102
- #: inc/class-page-about.php:469
3103
  msgid "Data compression"
3104
  msgstr "Datakomprimering"
3105
 
3106
  #: inc/class-page-about.php:477
3107
- #: inc/class-page-about.php:479
3108
  msgid "List of installed plugins"
3109
  msgstr "Lista över installerade tillägg"
3110
 
3111
  #: inc/class-page-about.php:482
3112
- #: inc/class-page-about.php:484
3113
  msgid "Backup archives management"
3114
  msgstr "Hantering av backup-arkiv"
3115
 
3116
  #: inc/class-page-about.php:487
3117
- #: inc/class-page-about.php:489
3118
  msgid "Log file management"
3119
  msgstr "Hantering av loggfil"
3120
 
3121
  #: inc/class-page-about.php:492
3122
- #: inc/class-page-about.php:494
3123
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3124
  msgstr "Starta jobb via WP-Cron, URL, System, Backend eller WP-CLI"
3125
 
3126
  #: inc/class-page-about.php:497
3127
- #: inc/class-page-about.php:499
3128
  msgid "Log report via email"
3129
  msgstr "Loggrapport via e-post"
3130
 
3131
  #: inc/class-page-about.php:502
3132
- #: inc/class-page-about.php:504
3133
  msgid "Backup to Microsoft Azure"
3134
  msgstr "Backup till Microsoft Azure"
3135
 
3136
  #: inc/class-page-about.php:507
3137
- #: inc/class-page-about.php:509
3138
  msgid "Backup as email"
3139
  msgstr "Backup som e-post"
3140
 
3141
  #: inc/class-page-about.php:512
3142
- #: inc/class-page-about.php:514
3143
  #, fuzzy
3144
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3145
  msgstr "Backup till S3-tjänster <small>(Amazon, Google Storage, Hosteurope och fler)</small>"
3146
 
3147
  #: inc/class-page-about.php:527
3148
- #: inc/class-page-about.php:529
3149
  msgid "Backup to FTP server"
3150
  msgstr "Backup till FTP-server"
3151
 
3152
  #: inc/class-page-about.php:532
3153
- #: inc/class-page-about.php:534
3154
  msgid "Backup to your web space"
3155
  msgstr "Backup till ditt webbutrymme"
3156
 
3157
  #: inc/class-page-about.php:542
3158
  #: inc/pro/class-pro.php:112
 
3159
  #: inc/Pro/class-pro.php:152
3160
- #: inc/class-page-about.php:544
3161
  msgid "Backup to Google Drive"
3162
  msgstr "Backup till Google Drive"
3163
 
3164
  #: inc/class-page-about.php:547
3165
  #: inc/pro/class-pro.php:93
 
3166
  #: inc/Pro/class-pro.php:131
3167
- #: inc/class-page-about.php:549
3168
  msgid "Backup to Amazon Glacier"
3169
  msgstr "Backup till Amazon Glacier"
3170
 
3171
  #: inc/class-page-about.php:552
3172
- #: inc/class-page-about.php:554
3173
  msgid "Custom API keys for DropBox and SugarSync"
3174
  msgstr "Anpassade API-nycklar för DropBox och SugarSync"
3175
 
3176
  #: inc/class-page-about.php:557
3177
- #: inc/class-page-about.php:559
3178
  msgid "XML database backup as PHPMyAdmin schema"
3179
  msgstr "XML databas-backup som PHPMyAdmin schema"
3180
 
3181
  #: inc/class-page-about.php:562
3182
- #: inc/class-page-about.php:564
3183
  msgid "Database backup as mysqldump per command line"
3184
  msgstr "Databas-backup som mysqldump per kommandorad"
3185
 
3186
  #: inc/class-page-about.php:567
3187
- #: inc/class-page-about.php:569
3188
  msgid "Database backup for additional MySQL databases"
3189
  msgstr "Databas-backup för ytterligare MySQL-databaser"
3190
 
3191
  #: inc/class-page-about.php:572
3192
- #: inc/class-page-about.php:574
3193
  msgid "Import and export job settings as XML"
3194
  msgstr "Importera och exportera jobbinställningar som XML"
3195
 
3196
  #: inc/class-page-about.php:577
3197
- #: inc/class-page-about.php:579
3198
  msgid "Wizard for system tests"
3199
  msgstr "Guide för systemtest"
3200
 
3201
  #: inc/class-page-about.php:582
3202
- #: inc/class-page-about.php:584
3203
  msgid "Wizard for scheduled backup jobs"
3204
  msgstr "Guide för schemalagda backup-jobb"
3205
 
3206
  #: inc/class-page-about.php:587
3207
- #: inc/class-page-about.php:589
3208
  msgid "Wizard to import settings and backup jobs"
3209
  msgstr "Guide för import av inställningar och backup-jobb"
3210
 
3211
  #: inc/class-page-about.php:592
3212
- #: inc/class-page-about.php:594
3213
  msgid "Differential backup of changed directories to Dropbox"
3214
  msgstr "Differentiell backup av ändrade kataloger till Dropbox"
3215
 
3216
  #: inc/class-page-about.php:597
3217
- #: inc/class-page-about.php:599
3218
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3219
  msgstr "Differentiell backup av ändrade kataloger till Rackspace Cloud Files"
3220
 
3221
  #: inc/class-page-about.php:602
3222
- #: inc/class-page-about.php:604
3223
  msgid "Differential backup of changed directories to S3"
3224
  msgstr "Differentiell backup av ändrade kataloger till S3"
3225
 
3226
  #: inc/class-page-about.php:607
3227
- #: inc/class-page-about.php:609
3228
  msgid "Differential backup of changed directories to MS Azure"
3229
  msgstr "Differentiell backup av ändrade kataloger till MS Azure"
3230
 
3231
  #: inc/class-page-about.php:612
3232
- #: inc/class-page-about.php:639
3233
  msgid "<strong>Premium support</strong>"
3234
  msgstr "<strong>Premium support</strong>"
3235
 
3236
  #: inc/class-page-about.php:617
3237
- #: inc/class-page-about.php:644
3238
  msgid "<strong>Automatic updates</strong>"
3239
  msgstr "<strong>Automatisk uppdatering</strong>"
3240
 
3241
  #: inc/class-page-about.php:624
3242
- #: inc/class-page-about.php:651
3243
  msgid "GET PRO"
3244
  msgstr "SKAFFA PRO"
3245
 
@@ -3301,9 +3294,9 @@ msgstr ""
3301
  #: inc/class-page-logs.php:206
3302
  #: inc/class-page-backups.php:281
3303
  #: inc/class-page-backups.php:285
 
3304
  #: inc/class-page-settings.php:768
3305
  #: inc/class-page-settings.php:779
3306
- #: inc/class-page-logs.php:234
3307
  msgid "Download"
3308
  msgstr "Ladda Ned"
3309
 
@@ -3363,11 +3356,6 @@ msgctxt "Dashboard heading"
3363
  msgid "Restoring backups"
3364
  msgstr "Återställning av backuper"
3365
 
3366
- #: inc/class-page-backwpup.php:77
3367
- #: inc/class-page-backwpup.php:86
3368
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3369
- msgstr "Du kan återställa en installation från ett enskilt backup-arkiv. Använd et verktyg som phpMyAdmin eller ett tillägg som <a href=\"http://wordpress.org/plugins/adminer/\" target=\"_blank\">Adminer</a> för att återställa dina databas-backupfiler."
3370
-
3371
  #: inc/class-page-backwpup.php:78
3372
  #: inc/class-page-backwpup.php:87
3373
  msgctxt "Dashboard heading"
@@ -3598,8 +3586,8 @@ msgstr "%1$s vid %2$s"
3598
 
3599
  #: inc/class-page-editjob.php:328
3600
  #: inc/class-page-settings.php:117
3601
- #: inc/class-page-settings.php:214
3602
  #: inc/class-page-editjob.php:337
 
3603
  msgid "General"
3604
  msgstr "Generellt"
3605
 
@@ -3633,15 +3621,15 @@ msgstr "Jobbets Arbetsuppgifter"
3633
 
3634
  #: inc/class-page-editjob.php:391
3635
  #: inc/pro/class-wizard-job.php:254
3636
- #: inc/Pro/class-wizard-job.php:254
3637
  #: inc/class-page-editjob.php:400
 
3638
  msgid "This job is a&#160;&hellip;"
3639
  msgstr "Detta jobb är en&#160;&hellip;"
3640
 
3641
  #: inc/class-page-editjob.php:394
3642
  #: inc/pro/class-wizard-job.php:257
3643
- #: inc/Pro/class-wizard-job.php:257
3644
  #: inc/class-page-editjob.php:403
 
3645
  msgid "Job tasks"
3646
  msgstr "Jobbets arbetsuppgifter"
3647
 
@@ -3654,10 +3642,10 @@ msgstr "Skapande Av Backup-fil"
3654
  #: inc/class-page-editjob.php:420
3655
  #: inc/pro/class-wizard-job.php:402
3656
  #: inc/pro/class-wizard-job.php:405
3657
- #: inc/Pro/class-wizard-job.php:402
3658
- #: inc/Pro/class-wizard-job.php:405
3659
  #: inc/class-page-editjob.php:426
3660
  #: inc/class-page-editjob.php:429
 
 
3661
  msgid "Backup type"
3662
  msgstr "Backup-typ"
3663
 
@@ -3668,8 +3656,8 @@ msgstr "Synkronisera fil för fil med mål"
3668
 
3669
  #: inc/class-page-editjob.php:428
3670
  #: inc/pro/class-wizard-job.php:413
3671
- #: inc/Pro/class-wizard-job.php:413
3672
  #: inc/class-page-editjob.php:437
 
3673
  msgid "Create a backup archive"
3674
  msgstr "Skapa backup-arkiv"
3675
 
@@ -3769,17 +3757,17 @@ msgstr "Arkivformat"
3769
  #: inc/class-page-editjob.php:476
3770
  #: inc/pro/class-wizard-job.php:426
3771
  #: inc/pro/class-wizard-job.php:429
3772
- #: inc/Pro/class-wizard-job.php:426
3773
- #: inc/Pro/class-wizard-job.php:429
3774
  #: inc/class-page-editjob.php:481
3775
  #: inc/class-page-editjob.php:483
 
 
3776
  msgid "Zip"
3777
  msgstr "Zip"
3778
 
3779
  #: inc/class-page-editjob.php:479
3780
  #: inc/pro/class-wizard-job.php:433
3781
- #: inc/Pro/class-wizard-job.php:433
3782
  #: inc/class-page-editjob.php:486
 
3783
  msgid "Tar"
3784
  msgstr "Tar"
3785
 
@@ -3787,10 +3775,10 @@ msgstr "Tar"
3787
  #: inc/class-page-editjob.php:483
3788
  #: inc/pro/class-wizard-job.php:437
3789
  #: inc/pro/class-wizard-job.php:440
3790
- #: inc/Pro/class-wizard-job.php:437
3791
- #: inc/Pro/class-wizard-job.php:440
3792
  #: inc/class-page-editjob.php:488
3793
  #: inc/class-page-editjob.php:490
 
 
3794
  msgid "Tar GZip"
3795
  msgstr "Tar GZip"
3796
 
@@ -3806,10 +3794,10 @@ msgstr "Deaktiverat p.g.a. saknad PHP-funktion."
3806
  #: inc/class-page-editjob.php:489
3807
  #: inc/pro/class-wizard-job.php:444
3808
  #: inc/pro/class-wizard-job.php:447
3809
- #: inc/Pro/class-wizard-job.php:444
3810
- #: inc/Pro/class-wizard-job.php:447
3811
  #: inc/class-page-editjob.php:494
3812
  #: inc/class-page-editjob.php:497
 
 
3813
  msgid "Tar BZip2"
3814
  msgstr "Tar BZip2"
3815
 
@@ -3937,9 +3925,9 @@ msgstr "avancerad"
3937
  #: inc/class-page-editjob.php:650
3938
  #: inc/class-page-editjob.php:718
3939
  #: inc/pro/class-wizard-job.php:320
3940
- #: inc/Pro/class-wizard-job.php:320
3941
  #: inc/class-page-editjob.php:686
3942
  #: inc/class-page-editjob.php:754
 
3943
  msgid "Scheduler"
3944
  msgstr "Schemaläggare"
3945
 
@@ -3947,121 +3935,121 @@ msgstr "Schemaläggare"
3947
  #: inc/class-page-jobs.php:126
3948
  #: inc/class-page-logs.php:139
3949
  #: inc/pro/class-wizard-job.php:324
3950
- #: inc/Pro/class-wizard-job.php:324
3951
- #: inc/class-page-logs.php:166
3952
  #: inc/class-page-editjob.php:691
 
 
3953
  msgid "Type"
3954
  msgstr "Typ"
3955
 
3956
  #: inc/class-page-editjob.php:660
3957
  #: inc/pro/class-wizard-job.php:330
3958
- #: inc/Pro/class-wizard-job.php:330
3959
  #: inc/class-page-editjob.php:696
 
3960
  msgid "Hour"
3961
  msgstr "Timme"
3962
 
3963
  #: inc/class-page-editjob.php:663
3964
  #: inc/pro/class-wizard-job.php:333
3965
- #: inc/Pro/class-wizard-job.php:333
3966
  #: inc/class-page-editjob.php:699
 
3967
  msgid "Minute"
3968
  msgstr "Minut"
3969
 
3970
  #: inc/class-page-editjob.php:667
3971
  #: inc/pro/class-wizard-job.php:337
3972
- #: inc/Pro/class-wizard-job.php:337
3973
  #: inc/class-page-editjob.php:703
 
3974
  msgid "monthly"
3975
  msgstr "månatlig"
3976
 
3977
  #: inc/class-page-editjob.php:669
3978
  #: inc/pro/class-wizard-job.php:339
3979
- #: inc/Pro/class-wizard-job.php:339
3980
  #: inc/class-page-editjob.php:705
 
3981
  msgid "on"
3982
  msgstr "på"
3983
 
3984
  #: inc/class-page-editjob.php:679
3985
  #: inc/pro/class-wizard-job.php:349
3986
- #: inc/Pro/class-wizard-job.php:349
3987
  #: inc/class-page-editjob.php:715
 
3988
  msgid "weekly"
3989
  msgstr "veckolig"
3990
 
3991
  #: inc/class-page-editjob.php:681
3992
  #: inc/class-page-editjob.php:788
3993
  #: inc/pro/class-wizard-job.php:351
3994
- #: inc/Pro/class-wizard-job.php:351
3995
  #: inc/class-page-editjob.php:717
3996
  #: inc/class-page-editjob.php:824
 
3997
  msgid "Sunday"
3998
  msgstr "Söndag"
3999
 
4000
  #: inc/class-page-editjob.php:682
4001
  #: inc/class-page-editjob.php:789
4002
  #: inc/pro/class-wizard-job.php:352
4003
- #: inc/Pro/class-wizard-job.php:352
4004
  #: inc/class-page-editjob.php:718
4005
  #: inc/class-page-editjob.php:825
 
4006
  msgid "Monday"
4007
  msgstr "Måndag"
4008
 
4009
  #: inc/class-page-editjob.php:683
4010
  #: inc/class-page-editjob.php:790
4011
  #: inc/pro/class-wizard-job.php:353
4012
- #: inc/Pro/class-wizard-job.php:353
4013
  #: inc/class-page-editjob.php:719
4014
  #: inc/class-page-editjob.php:826
 
4015
  msgid "Tuesday"
4016
  msgstr "Tisdag"
4017
 
4018
  #: inc/class-page-editjob.php:684
4019
  #: inc/class-page-editjob.php:791
4020
  #: inc/pro/class-wizard-job.php:354
4021
- #: inc/Pro/class-wizard-job.php:354
4022
  #: inc/class-page-editjob.php:720
4023
  #: inc/class-page-editjob.php:827
 
4024
  msgid "Wednesday"
4025
  msgstr "Onsdag"
4026
 
4027
  #: inc/class-page-editjob.php:685
4028
  #: inc/class-page-editjob.php:792
4029
  #: inc/pro/class-wizard-job.php:355
4030
- #: inc/Pro/class-wizard-job.php:355
4031
  #: inc/class-page-editjob.php:721
4032
  #: inc/class-page-editjob.php:828
 
4033
  msgid "Thursday"
4034
  msgstr "Torsdag"
4035
 
4036
  #: inc/class-page-editjob.php:686
4037
  #: inc/class-page-editjob.php:793
4038
  #: inc/pro/class-wizard-job.php:356
4039
- #: inc/Pro/class-wizard-job.php:356
4040
  #: inc/class-page-editjob.php:722
4041
  #: inc/class-page-editjob.php:829
 
4042
  msgid "Friday"
4043
  msgstr "Fredag"
4044
 
4045
  #: inc/class-page-editjob.php:687
4046
  #: inc/class-page-editjob.php:794
4047
  #: inc/pro/class-wizard-job.php:357
4048
- #: inc/Pro/class-wizard-job.php:357
4049
  #: inc/class-page-editjob.php:723
4050
  #: inc/class-page-editjob.php:830
 
4051
  msgid "Saturday"
4052
  msgstr "Lördag"
4053
 
4054
  #: inc/class-page-editjob.php:697
4055
  #: inc/pro/class-wizard-job.php:367
4056
- #: inc/Pro/class-wizard-job.php:367
4057
  #: inc/class-page-editjob.php:733
 
4058
  msgid "daily"
4059
  msgstr "dagligen"
4060
 
4061
  #: inc/class-page-editjob.php:707
4062
  #: inc/pro/class-wizard-job.php:377
4063
- #: inc/Pro/class-wizard-job.php:377
4064
  #: inc/class-page-editjob.php:743
 
4065
  msgid "hourly"
4066
  msgstr "timvis"
4067
 
@@ -4209,8 +4197,8 @@ msgstr "Senaste Körning"
4209
 
4210
  #: inc/class-page-jobs.php:172
4211
  #: inc/class-page-logs.php:200
4212
- #: inc/Pro/class-page-support.php:221
4213
  #: inc/class-page-logs.php:228
 
4214
  msgid "Job ID: %d"
4215
  msgstr "Jobb-ID: %d"
4216
 
@@ -5040,14 +5028,17 @@ msgstr "Det finns fel. Vänligen åtgärda dem, annars kommer BackWPup ej att fu
5040
  #: inc/pro/class-wizard-job.php:17
5041
  #: inc/pro/class-wizard-jobimport.php:16
5042
  #: inc/pro/class-wizard-systemtest.php:16
5043
- #: inc/Pro/class-wizard-jobimport.php:16
5044
- #: inc/Pro/class-wizard-job.php:17
5045
- #: inc/Pro/class-wizard-systemtest.php:27
5046
  #: inc/class-admin.php:510
5047
  #: inc/class-admin.php:531
 
 
 
 
 
5048
  #: inc/class-page-settings.php:1123
5049
- #: inc/class-page-about.php:651
5050
- #: inc/class-job.php:412
 
5051
  msgid "http://backwpup.com"
5052
  msgstr "http://backwpup.com"
5053
 
@@ -5060,61 +5051,59 @@ msgstr "http://backwpup.com"
5060
  #: inc/pro/class-wizard-job.php:19
5061
  #: inc/pro/class-wizard-jobimport.php:18
5062
  #: inc/pro/class-wizard-systemtest.php:18
5063
- #: inc/Pro/class-wizard-jobimport.php:18
5064
  #: inc/Pro/class-wizard-job.php:19
 
5065
  #: inc/Pro/class-wizard-systemtest.php:29
5066
  msgid "http://inpsyde.com"
5067
  msgstr ""
5068
 
5069
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5070
- #: inc/class-destination-ftp-downloader.php:72
5071
- #: inc/class-destination-dropbox-downloader.php:72
5072
- #: inc/class-destination-s3-downloader.php:83
5073
- msgid "Could not write data to file."
5074
  msgstr ""
5075
 
5076
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5077
- #: inc/class-destination-ftp-downloader.php:126
5078
- #: inc/class-destination-folder-downloader.php:137
5079
- #: inc/class-destination-dropbox-downloader.php:104
5080
- #: inc/class-destination-s3-downloader.php:112
5081
- msgid "File could not be opened for writing."
5082
  msgstr ""
5083
 
5084
- #: inc/Pro/class-destination-s3.php:63
5085
- #: inc/class-destination-s3.php:1134
5086
- msgid "Amazon S3: EU (London)"
5087
  msgstr ""
5088
 
5089
- #: inc/Pro/class-pro.php:285
5090
- #: inc/Pro/class-pro.php:286
5091
- #: inc/class-page-backups.php:293
5092
- #: views/pro/restore/steps/step4_top.php:2
5093
- msgid "Restore"
5094
  msgstr ""
5095
 
5096
- #: inc/class-system-tests-runner.php:77
5097
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5098
  msgstr ""
5099
 
5100
- #: inc/class-system-tests-runner.php:88
5101
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5102
  msgstr ""
5103
 
5104
- #: inc/class-system-tests-runner.php:100
5105
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5106
  msgstr ""
5107
 
5108
- #: inc/class-system-tests-runner.php:193
5109
- msgid "Yeah!"
5110
  msgstr ""
5111
 
5112
- #: inc/class-system-tests-runner.php:261
5113
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5114
  msgstr ""
5115
 
5116
- #: inc/class-destination-ftp-downloader.php:108
5117
- msgid "Cannot open FTP file for download."
 
 
 
 
5118
  msgstr ""
5119
 
5120
  #: inc/class-destination-folder-downloader.php:64
@@ -5134,10 +5123,133 @@ msgstr ""
5134
  msgid "%s is a directory not a file."
5135
  msgstr ""
5136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5137
  #: inc/class-destination-s3.php:102
5138
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5139
  msgstr ""
5140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5141
  #: inc/class-page-backups.php:408
5142
  msgid "&laquo; Go back"
5143
  msgstr ""
@@ -5180,21 +5292,35 @@ msgstr ""
5180
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5181
  msgstr ""
5182
 
5183
- #: inc/class-create-archive.php:114
5184
- msgid "Functions for bz2 compression not available."
 
5185
  msgstr ""
5186
 
5187
- #: inc/class-create-archive.php:311
5188
- msgid "File name cannot be empty."
5189
  msgstr ""
5190
 
5191
- #: inc/class-create-archive.php:741
5192
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5193
  msgstr ""
5194
 
5195
- #. translators: $1 is the filename to add into the archive.
5196
- #: inc/class-create-archive.php:996
5197
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5198
  msgstr ""
5199
 
5200
  #: inc/class-page-settings.php:39
@@ -5407,127 +5533,24 @@ msgstr ""
5407
  msgid "BackWPup maximum script execution time"
5408
  msgstr ""
5409
 
5410
- #: inc/class-download-file.php:135
5411
- msgid "Invalid file name, seems file include invalid characters."
5412
- msgstr ""
5413
-
5414
- #: inc/class-page-about.php:614
5415
- msgid "Restore from Folder"
5416
- msgstr ""
5417
-
5418
- #: inc/class-page-about.php:619
5419
- msgid "Restore from Google Drive"
5420
- msgstr ""
5421
-
5422
- #: inc/class-page-about.php:624
5423
- msgid "Restore from Amazon S3"
5424
- msgstr ""
5425
-
5426
- #: inc/class-page-about.php:629
5427
- msgid "Restore from Dropbox"
5428
- msgstr ""
5429
-
5430
- #: inc/class-page-about.php:634
5431
- msgid "Restore from FTP"
5432
- msgstr ""
5433
-
5434
- #: inc/class-destination-s3-downloader.php:76
5435
- msgid "Could not write data to file. Empty source file."
5436
- msgstr ""
5437
-
5438
- #: inc/class-job.php:332
5439
- msgid "Encrypts the archive"
5440
- msgstr ""
5441
-
5442
- #: inc/class-job.php:1689
5443
- msgid "No encryption key was provided. Aborting encryption."
5444
- msgstr ""
5445
-
5446
- #: inc/class-job.php:1696
5447
- msgid "%d. Trying to encrypt archive &hellip;"
5448
- msgstr ""
5449
-
5450
- #: inc/class-job.php:1706
5451
- msgid "Cannot open the archive for reading. Aborting encryption."
5452
- msgstr ""
5453
-
5454
- #: inc/class-job.php:1712
5455
- msgid "Cannot write the encrypted archive. Aborting encryption."
5456
- msgstr ""
5457
-
5458
- #: inc/class-job.php:1769
5459
- msgid "Encrypted %s of data."
5460
- msgstr ""
5461
-
5462
- #: inc/class-job.php:1773
5463
- msgid "Unable to delete unencrypted archive."
5464
- msgstr ""
5465
-
5466
- #: inc/class-job.php:1777
5467
- msgid "Unable to rename encrypted archive."
5468
- msgstr ""
5469
-
5470
- #: inc/class-job.php:1782
5471
- msgid "Archive has been successfully encrypted."
5472
- msgstr ""
5473
-
5474
- #: inc/class-job.php:2451
5475
- msgid "exec command is not active."
5476
- msgstr ""
5477
-
5478
- #: inc/class-job.php:2456
5479
- msgid "mysqldump binary not found."
5480
- msgstr ""
5481
-
5482
- #: inc/class-page-editjob.php:448
5483
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5484
- msgstr ""
5485
-
5486
- #: inc/class-page-editjob.php:452
5487
- msgid "Preview: "
5488
- msgstr ""
5489
-
5490
- #: inc/class-page-editjob.php:484
5491
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5492
- msgstr ""
5493
-
5494
- #: inc/class-page-editjob.php:495
5495
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5496
- msgstr ""
5497
-
5498
- #: inc/class-page-editjob.php:506
5499
- #: inc/class-page-editjob.php:511
5500
- #: inc/class-page-editjob.php:520
5501
- msgid "Encrypt Archive"
5502
- msgstr ""
5503
-
5504
- #: inc/class-page-editjob.php:524
5505
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5506
- msgstr ""
5507
-
5508
- #: inc/class-decrypter.php:56
5509
- msgid "Cannot open the archive for reading."
5510
- msgstr ""
5511
-
5512
- #: inc/class-decrypter.php:82
5513
- msgid "Cannot write the encrypted archive."
5514
  msgstr ""
5515
 
5516
- #: inc/class-decrypter.php:162
5517
- msgid "Private key invalid."
5518
  msgstr ""
5519
 
5520
- #: inc/class-destination-ftp.php:321
5521
- msgid "Could not log in to FTP server."
5522
  msgstr ""
5523
 
5524
- #: inc/class-destination-ftp.php:735
5525
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5526
  msgstr ""
5527
 
5528
- #: backwpup.php:573
5529
- #: vendor_dist/backwpup.php:573
5530
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5531
  msgstr ""
5532
 
5533
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
15
 
16
  #: backwpup.php:333
17
  #: inc/class-page-backups.php:271
 
18
  #: backwpup.php:286
19
+ #: inc/class-page-backups.php:243
20
  #: vendor_dist/backwpup.php:286
21
  msgid "Folder"
22
  msgstr "Mapp"
53
 
54
  #: backwpup.php:381
55
  #: inc/class-destination-dropbox.php:293
 
56
  #: backwpup.php:334
57
+ #: inc/class-destination-dropbox.php:445
58
  #: vendor_dist/backwpup.php:334
59
  msgid "Dropbox"
60
  msgstr "Dropbox"
61
 
62
  #: backwpup.php:382
63
  #: inc/class-page-about.php:517
 
64
  #: backwpup.php:335
65
+ #: inc/class-page-about.php:508
66
  #: vendor_dist/backwpup.php:335
67
  msgid "Backup to Dropbox"
68
  msgstr "Backup till Dropbox"
69
 
70
  #: backwpup.php:397
71
  #: inc/class-destination-s3.php:27
 
72
  #: backwpup.php:350
73
+ #: inc/class-destination-s3.php:42
74
  #: vendor_dist/backwpup.php:350
75
  msgid "S3 Service"
76
  msgstr "S3-tjänst"
101
 
102
  #: backwpup.php:433
103
  #: inc/class-page-about.php:522
 
104
  #: backwpup.php:388
105
+ #: inc/class-page-about.php:513
106
  #: vendor_dist/backwpup.php:388
107
  msgid "Backup to Rackspace Cloud Files"
108
  msgstr "Backup till Rackspace Cloud Files"
115
 
116
  #: backwpup.php:451
117
  #: inc/class-page-about.php:537
 
118
  #: backwpup.php:408
119
+ #: inc/class-page-about.php:528
120
  #: vendor_dist/backwpup.php:408
121
  msgid "Backup to SugarSync"
122
  msgstr "Backup till SugarSync"
178
  #: inc/class-page-logs.php:328
179
  #: inc/class-page-settings.php:117
180
  #: inc/class-admin.php:355
 
181
  #: inc/class-page-logs.php:377
182
+ #: inc/class-page-settings.php:219
183
  msgid "Logs"
184
  msgstr "Loggar"
185
 
280
 
281
  #: inc/class-become-inpsyder-widget.php:148
282
  #: inc/class-betatester-admin-notice.php:96
 
283
  #: inc/class-admin-notice.php:121
284
+ #: inc/class-become-inpsyder-widget.php:152
285
  msgid "Don't show again"
286
  msgstr ""
287
 
457
  #: inc/class-destination-dropbox.php:41
458
  #: inc/class-destination-dropbox.php:344
459
  #: inc/pro/class-destination-dropbox.php:253
 
460
  #: inc/class-destination-dropbox.php:55
461
  #: inc/class-destination-dropbox.php:458
462
+ #: inc/Pro/class-destination-dropbox.php:405
463
  msgid "Dropbox API: %s"
464
  msgstr "API för Dropbox: %s"
465
 
466
  #: inc/class-destination-dropbox.php:55
467
  #: inc/pro/class-destination-gdrive.php:51
 
468
  #: inc/class-destination-dropbox.php:72
469
+ #: inc/Pro/class-destination-gdrive.php:93
470
  msgid "Login"
471
  msgstr "Logga in"
472
 
480
  #: inc/class-destination-dropbox.php:61
481
  #: inc/pro/class-destination-gdrive.php:57
482
  #: inc/pro/class-destination-gdrive.php:295
483
+ #: inc/class-destination-dropbox.php:78
484
  #: inc/Pro/class-destination-gdrive.php:99
485
  #: inc/Pro/class-destination-gdrive.php:415
 
486
  msgid "Not authenticated!"
487
  msgstr "Ej autentiserad!"
488
 
489
  #: inc/class-destination-dropbox.php:63
490
  #: inc/pro/class-destination-dropbox.php:28
 
491
  #: inc/class-destination-dropbox.php:81
492
+ #: inc/Pro/class-destination-dropbox.php:51
493
  msgid "Create Account"
494
  msgstr "Skapa Konto"
495
 
499
  #: inc/pro/class-destination-gdrive.php:59
500
  #: inc/pro/class-destination-gdrive.php:300
501
  #: inc/pro/class-destination-sugarsync.php:31
502
+ #: inc/class-destination-dropbox.php:83
503
+ #: inc/Pro/class-destination-dropbox.php:57
504
  #: inc/Pro/class-destination-gdrive.php:101
505
  #: inc/Pro/class-destination-gdrive.php:425
 
506
  #: inc/Pro/class-destination-sugarsync.php:31
 
507
  msgid "Authenticated!"
508
  msgstr "Autentiserad!"
509
 
555
  #: inc/class-destination-rsc.php:95
556
  #: inc/class-destination-sugarsync.php:81
557
  #: inc/pro/class-destination-gdrive.php:68
 
558
  #: inc/class-destination-dropbox.php:141
559
  #: inc/class-destination-folder.php:27
560
  #: inc/class-destination-ftp.php:82
561
+ #: inc/Pro/class-destination-gdrive.php:112
562
  msgid "Backup settings"
563
  msgstr "Backup-inställningar"
564
 
577
  #: inc/class-destination-ftp.php:59
578
  #: inc/class-destination-sugarsync.php:91
579
  #: inc/pro/class-destination-gdrive.php:81
 
580
  #: inc/class-destination-dropbox.php:162
581
  #: inc/class-destination-folder.php:40
582
  #: inc/class-destination-ftp.php:95
583
+ #: inc/Pro/class-destination-gdrive.php:125
584
  msgid "File Deletion"
585
  msgstr "Filborttagning"
586
 
598
  #: inc/pro/class-destination-msazure.php:45
599
  #: inc/pro/class-destination-rsc.php:65
600
  #: inc/pro/class-destination-s3.php:73
601
+ #: inc/class-destination-dropbox.php:171
602
+ #: inc/class-destination-folder.php:49
603
+ #: inc/class-destination-ftp.php:104
604
+ #: inc/class-destination-s3.php:229
605
+ #: inc/Pro/class-destination-dropbox.php:76
606
+ #: inc/Pro/class-destination-folder.php:45
607
  #: inc/Pro/class-destination-gdrive.php:134
608
  #: inc/Pro/class-destination-gdrive.php:456
 
609
  #: inc/Pro/class-destination-msazure.php:45
610
+ #: inc/Pro/class-destination-rsc.php:65
611
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
612
  msgid "Number of files to keep in folder."
613
  msgstr "Antal filer att lagra i mapp."
614
 
621
  #: inc/class-destination-sugarsync.php:100
622
  #: inc/pro/class-destination-gdrive.php:92
623
  #: inc/pro/class-destination-glacier.php:109
 
 
 
624
  #: inc/class-destination-dropbox.php:173
625
  #: inc/class-destination-folder.php:51
626
  #: inc/class-destination-ftp.php:106
627
+ #: inc/class-destination-s3.php:232
628
+ #: inc/Pro/class-destination-gdrive.php:136
629
+ #: inc/Pro/class-destination-glacier.php:109
630
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
631
  msgstr ""
632
 
646
  #: inc/pro/class-destination-rsc.php:70
647
  #: inc/pro/class-destination-s3.php:78
648
  #: inc/pro/class-destination-sugarsync.php:65
649
+ #: inc/class-destination-dropbox.php:183
650
+ #: inc/class-destination-folder.php:57
651
+ #: inc/class-destination-ftp.php:118
652
+ #: inc/class-destination-s3.php:245
653
+ #: inc/Pro/class-destination-dropbox.php:82
654
+ #: inc/Pro/class-destination-folder.php:51
655
+ #: inc/Pro/class-destination-ftp.php:75
656
  #: inc/Pro/class-destination-gdrive.php:148
657
  #: inc/Pro/class-destination-gdrive.php:462
 
658
  #: inc/Pro/class-destination-msazure.php:56
659
+ #: inc/Pro/class-destination-rsc.php:70
660
  #: inc/Pro/class-destination-s3.php:187
 
 
 
661
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
662
  msgid "Do not delete files while syncing to destination!"
663
  msgstr "Ta ej bort filer medans synkning mot målmapp sker!"
664
 
669
 
670
  #: inc/class-destination-dropbox.php:256
671
  #: inc/pro/class-destination-dropbox.php:127
 
672
  #: inc/class-destination-dropbox.php:390
673
+ #: inc/Pro/class-destination-dropbox.php:209
674
  msgid "Authenticated with Dropbox of user: %s"
675
  msgstr ""
676
 
677
  #: inc/class-destination-dropbox.php:262
678
  #: inc/pro/class-destination-dropbox.php:133
 
679
  #: inc/class-destination-dropbox.php:398
680
+ #: inc/Pro/class-destination-dropbox.php:217
681
  msgid "%s available on your Dropbox"
682
  msgstr "%s tillgängligt i din Dropbox"
683
 
684
  #: inc/class-destination-dropbox.php:266
685
  #: inc/pro/class-destination-dropbox.php:137
 
686
  #: inc/class-destination-dropbox.php:404
687
+ #: inc/Pro/class-destination-dropbox.php:223
688
  msgid "Not Authenticated with Dropbox!"
689
  msgstr "Ej Autentiserad hos Dropbox!"
690
 
697
  #: inc/class-destination-msazure.php:286
698
  #: inc/class-destination-sugarsync.php:260
699
  #: inc/pro/class-destination-gdrive.php:663
 
 
700
  #: inc/class-destination-dropbox.php:432
701
+ #: inc/class-destination-msazure.php:290
702
  #: inc/class-destination-sugarsync.php:263
703
+ #: inc/Pro/class-destination-gdrive.php:924
704
  msgid "Backup transferred to %s"
705
  msgstr "Backup överförd till %s"
706
 
707
  #: inc/class-destination-dropbox.php:287
708
  #: inc/pro/class-destination-gdrive.php:666
 
709
  #: inc/class-destination-dropbox.php:438
710
+ #: inc/Pro/class-destination-gdrive.php:930
711
  msgid "Uploaded file size and local file size don't match."
712
  msgstr "Uppladdad filstorlek och lokal filstorlek matchar ej."
713
 
714
  #: inc/class-destination-dropbox.php:292
715
  #: inc/pro/class-destination-gdrive.php:668
716
  #: inc/pro/class-destination-glacier.php:448
717
+ #: inc/class-destination-dropbox.php:444
718
  #: inc/Pro/class-destination-gdrive.php:936
719
  #: inc/Pro/class-destination-glacier.php:450
 
720
  msgid "Error transfering backup to %s."
721
  msgstr "Fel vid överföring av backup-fil %s."
722
 
745
  #: inc/class-destination-email.php:38
746
  #: inc/pro/class-destination-email.php:16
747
  #: inc/pro/class-destination-email.php:18
748
+ #: inc/class-destination-email.php:39
749
  #: inc/Pro/class-destination-email.php:16
750
  #: inc/Pro/class-destination-email.php:18
 
751
  msgid "Email address"
752
  msgstr "E-postadress"
753
 
760
  #: inc/class-destination-email.php:49
761
  #: inc/pro/class-destination-email.php:29
762
  #: inc/pro/class-destination-email.php:30
 
 
763
  #: inc/class-destination-email.php:52
764
  #: inc/class-destination-email.php:56
765
+ #: inc/Pro/class-destination-email.php:29
766
+ #: inc/Pro/class-destination-email.php:30
767
  msgid "Send test email"
768
  msgstr "Skicka e-posttest"
769
 
838
  #: inc/class-destination-email.php:98
839
  #: inc/class-destination-ftp.php:31
840
  #: inc/pro/class-destination-ftp.php:21
 
841
  #: inc/class-destination-email.php:124
842
  #: inc/class-destination-ftp.php:56
843
+ #: inc/Pro/class-destination-ftp.php:35
844
  msgid "Port:"
845
  msgstr "Port:"
846
 
859
  #: inc/class-page-settings.php:328
860
  #: inc/pro/class-jobtype-dbdump.php:157
861
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
862
  #: inc/class-destination-email.php:141
863
  #: inc/class-page-settings.php:837
864
+ #: inc/Pro/class-jobtype-dbdump.php:157
865
+ #: inc/Pro/class-jobtype-dbdump.php:205
866
  msgid "none"
867
  msgstr "inget"
868
 
986
  #: inc/class-destination-ftp.php:87
987
  #: inc/class-page-logs.php:257
988
  #: inc/class-page-settings.php:466
 
989
  #: inc/class-destination-ftp.php:137
990
+ #: inc/class-page-logs.php:288
991
  msgid "seconds"
992
  msgstr "sekunder"
993
 
1142
  #: inc/pro/class-destination-glacier.php:468
1143
  #: inc/pro/class-destination-rsc.php:226
1144
  #: inc/pro/class-destination-rsc.php:259
1145
+ #: inc/class-destination-ftp.php:673
1146
+ #: inc/class-destination-msazure.php:275
1147
  #: inc/class-destination-rsc.php:292
1148
+ #: inc/class-destination-s3.php:843
1149
+ #: inc/class-destination-s3.php:958
1150
  #: inc/Pro/class-destination-gdrive.php:905
1151
  #: inc/Pro/class-destination-glacier.php:470
1152
  #: inc/Pro/class-destination-rsc.php:228
1153
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1154
  msgid "Can not open source file for transfer."
1155
  msgstr ""
1156
 
1200
  #: inc/class-destination-rsc.php:105
1201
  #: inc/class-destination-s3.php:114
1202
  #: inc/pro/class-destination-glacier.php:96
 
1203
  #: inc/class-destination-s3.php:215
1204
+ #: inc/Pro/class-destination-glacier.php:96
1205
  msgid "File deletion"
1206
  msgstr "Filborttagning"
1207
 
1224
 
1225
  #: inc/class-destination-msazure.php:233
1226
  #: inc/pro/class-destination-msazure.php:144
 
1227
  #: inc/class-destination-msazure.php:237
1228
+ #: inc/Pro/class-destination-msazure.php:144
1229
  msgid "MS Azure container \"%s\" does not exist!"
1230
  msgstr "MS Azure-behållare \"%s\" existerar ej!"
1231
 
1232
  #: inc/class-destination-msazure.php:237
1233
  #: inc/pro/class-destination-msazure.php:148
 
1234
  #: inc/class-destination-msazure.php:241
1235
+ #: inc/Pro/class-destination-msazure.php:148
1236
  msgid "Connected to MS Azure container \"%s\"."
1237
  msgstr "Ansluten till MS Azure-behållare \"%s\"."
1238
 
1244
  #: inc/class-destination-msazure.php:292
1245
  #: inc/class-destination-msazure.php:348
1246
  #: inc/pro/class-destination-msazure.php:233
 
1247
  #: inc/class-destination-msazure.php:296
1248
  #: inc/class-destination-msazure.php:352
1249
+ #: inc/Pro/class-destination-msazure.php:233
1250
  msgid "Microsoft Azure API: %s"
1251
  msgstr "API för Microsoft Azure: %s"
1252
 
1265
  #: inc/class-destination-msazure.php:444
1266
  #: inc/class-destination-s3.php:222
1267
  #: inc/pro/class-destination-glacier.php:166
 
1268
  #: inc/class-destination-msazure.php:448
1269
  #: inc/class-destination-s3.php:359
1270
+ #: inc/Pro/class-destination-glacier.php:166
1271
  msgid "Missing access key!"
1272
  msgstr "Saknad åtkomstnyckel!"
1273
 
1413
 
1414
  #: inc/class-destination-s3.php:33
1415
  #: inc/pro/class-destination-s3.php:18
 
1416
  #: inc/class-destination-s3.php:54
1417
+ #: inc/Pro/class-destination-s3.php:32
1418
  msgid "Amazon S3 Region"
1419
  msgstr "Amazon S3-region"
1420
 
1421
  #: inc/class-destination-s3.php:34
1422
  #: inc/pro/class-destination-s3.php:19
 
1423
  #: inc/class-destination-s3.php:1118
1424
+ #: inc/Pro/class-destination-s3.php:40
1425
  msgid "Amazon S3: US Standard"
1426
  msgstr "Amazon S3: US Standard"
1427
 
1428
  #: inc/class-destination-s3.php:35
1429
  #: inc/pro/class-destination-s3.php:20
 
1430
  #: inc/class-destination-s3.php:1122
1431
+ #: inc/Pro/class-destination-s3.php:45
1432
  msgid "Amazon S3: US West (Northern California)"
1433
  msgstr "Amazon S3: US Väst (Norra Kalifornien)"
1434
 
1435
  #: inc/class-destination-s3.php:36
1436
  #: inc/pro/class-destination-s3.php:21
 
1437
  #: inc/class-destination-s3.php:1126
1438
+ #: inc/Pro/class-destination-s3.php:53
1439
  msgid "Amazon S3: US West (Oregon)"
1440
  msgstr "Amazon S3: US Väst (Oregon)"
1441
 
1442
  #: inc/class-destination-s3.php:37
1443
  #: inc/pro/class-destination-s3.php:22
 
1444
  #: inc/class-destination-s3.php:1130
1445
+ #: inc/Pro/class-destination-s3.php:58
1446
  msgid "Amazon S3: EU (Ireland)"
1447
  msgstr "Amazon S3: EU (Irland)"
1448
 
1449
  #: inc/class-destination-s3.php:38
1450
  #: inc/pro/class-destination-s3.php:23
 
1451
  #: inc/class-destination-s3.php:1138
1452
+ #: inc/Pro/class-destination-s3.php:68
1453
  msgid "Amazon S3: EU (Germany)"
1454
  msgstr "Amazon S3: EU (Tyskland)"
1455
 
1456
  #: inc/class-destination-s3.php:39
1457
  #: inc/pro/class-destination-s3.php:24
 
1458
  #: inc/class-destination-s3.php:1142
1459
+ #: inc/Pro/class-destination-s3.php:73
1460
  #, fuzzy
1461
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1462
  msgstr "Amazon S3: Asien Stilla Havet (Tokyo)"
1463
 
1464
  #: inc/class-destination-s3.php:40
1465
  #: inc/pro/class-destination-s3.php:25
 
1466
  #: inc/class-destination-s3.php:1146
1467
+ #: inc/Pro/class-destination-s3.php:78
1468
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1469
  msgstr "Amazon S3: Asien Stilla Havet (Tokyo)"
1470
 
1471
  #: inc/class-destination-s3.php:41
1472
  #: inc/pro/class-destination-s3.php:26
 
1473
  #: inc/class-destination-s3.php:1150
1474
+ #: inc/Pro/class-destination-s3.php:83
1475
  #, fuzzy
1476
  msgid "Amazon S3: Asia Pacific (Seoul)"
1477
  msgstr "Amazon S3: Asien Stilla Havet (Sydney)"
1478
 
1479
  #: inc/class-destination-s3.php:42
1480
  #: inc/pro/class-destination-s3.php:27
 
1481
  #: inc/class-destination-s3.php:1154
1482
+ #: inc/Pro/class-destination-s3.php:88
1483
  msgid "Amazon S3: Asia Pacific (Singapore)"
1484
  msgstr "Amazon S3: Asien Stilla Havet (Singapore)"
1485
 
1486
  #: inc/class-destination-s3.php:43
1487
  #: inc/pro/class-destination-s3.php:28
 
1488
  #: inc/class-destination-s3.php:1158
1489
+ #: inc/Pro/class-destination-s3.php:93
1490
  msgid "Amazon S3: Asia Pacific (Sydney)"
1491
  msgstr "Amazon S3: Asien Stilla Havet (Sydney)"
1492
 
1493
  #: inc/class-destination-s3.php:44
1494
  #: inc/pro/class-destination-s3.php:29
 
1495
  #: inc/class-destination-s3.php:1162
1496
+ #: inc/Pro/class-destination-s3.php:98
1497
  msgid "Amazon S3: South America (Sao Paulo)"
1498
  msgstr "Amazon S3: Sydamerika (Sao Paulo)"
1499
 
1500
  #: inc/class-destination-s3.php:45
1501
  #: inc/pro/class-destination-s3.php:30
 
1502
  #: inc/class-destination-s3.php:1166
1503
+ #: inc/Pro/class-destination-s3.php:103
1504
  msgid "Amazon S3: China (Beijing)"
1505
  msgstr "Amazon S3: Kina (Beijing)"
1506
 
1507
  #: inc/class-destination-s3.php:46
1508
  #: inc/pro/class-destination-s3.php:31
 
1509
  #: inc/class-destination-s3.php:1170
1510
+ #: inc/Pro/class-destination-s3.php:108
1511
  msgid "Google Storage: EU"
1512
  msgstr ""
1513
 
1514
  #: inc/class-destination-s3.php:47
1515
  #: inc/pro/class-destination-s3.php:32
 
1516
  #: inc/class-destination-s3.php:1174
1517
+ #: inc/Pro/class-destination-s3.php:113
1518
  msgid "Google Storage: USA"
1519
  msgstr ""
1520
 
1521
  #: inc/class-destination-s3.php:48
1522
  #: inc/pro/class-destination-s3.php:33
 
1523
  #: inc/class-destination-s3.php:1178
1524
+ #: inc/Pro/class-destination-s3.php:118
1525
  msgid "Google Storage: Asia"
1526
  msgstr ""
1527
 
1528
  #: inc/class-destination-s3.php:49
1529
  #: inc/pro/class-destination-s3.php:34
 
1530
  #: inc/class-destination-s3.php:1182
1531
+ #: inc/Pro/class-destination-s3.php:123
1532
  msgid "Dream Host Cloud Storage"
1533
  msgstr "Dream Host Molnlagring"
1534
 
1544
 
1545
  #: inc/class-destination-s3.php:65
1546
  #: inc/pro/class-destination-glacier.php:54
 
1547
  #: inc/class-destination-s3.php:121
1548
+ #: inc/Pro/class-destination-glacier.php:54
1549
  msgid "Access Key"
1550
  msgstr "Åtkomstnyckel"
1551
 
1552
  #: inc/class-destination-s3.php:72
1553
  #: inc/pro/class-destination-glacier.php:61
 
1554
  #: inc/class-destination-s3.php:135
1555
+ #: inc/Pro/class-destination-glacier.php:61
1556
  msgid "Secret Key"
1557
  msgstr "Hemlig Nyckel"
1558
 
1621
 
1622
  #: inc/class-destination-s3.php:224
1623
  #: inc/pro/class-destination-glacier.php:168
 
1624
  #: inc/class-destination-s3.php:361
1625
+ #: inc/Pro/class-destination-glacier.php:168
1626
  msgid "Missing secret access key!"
1627
  msgstr "Saknad hemlig åtkomstnyckel!"
1628
 
1638
 
1639
  #: inc/class-destination-s3.php:348
1640
  #: inc/pro/class-destination-s3.php:147
 
1641
  #: inc/class-destination-s3.php:520
1642
+ #: inc/Pro/class-destination-s3.php:285
1643
  msgid " %s is not a valid bucket name."
1644
  msgstr "%s är ej ett giltigt hinknamn."
1645
 
1649
  #: inc/class-destination-s3.php:610
1650
  #: inc/class-destination-s3.php:670
1651
  #: inc/pro/class-destination-s3.php:337
 
1652
  #: inc/class-destination-s3.php:570
1653
  #: inc/class-destination-s3.php:868
1654
  #: inc/class-destination-s3.php:936
1655
  #: inc/class-destination-s3.php:995
1656
  #: inc/class-destination-s3.php:1006
1657
+ #: inc/Pro/class-destination-s3.php:623
1658
  msgid "S3 Service API: %s"
1659
  msgstr "API för S3-tjänst: %s"
1660
 
1665
 
1666
  #: inc/class-destination-s3.php:470
1667
  #: inc/pro/class-destination-s3.php:188
 
1668
  #: inc/class-destination-s3.php:803
1669
+ #: inc/Pro/class-destination-s3.php:383
1670
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1671
  msgstr "Ansluten till S3-hink \"%1$s\" i %2$s"
1672
 
1673
  #: inc/class-destination-s3.php:473
1674
  #: inc/pro/class-destination-s3.php:191
 
1675
  #: inc/class-destination-s3.php:808
1676
+ #: inc/Pro/class-destination-s3.php:391
1677
  msgid "S3 Bucket \"%s\" does not exist!"
1678
  msgstr "Amazon S3-hink \"%s\" existerar ej!"
1679
 
1694
 
1695
  #: inc/class-destination-s3.php:601
1696
  #: inc/pro/class-destination-glacier.php:444
 
1697
  #: inc/class-destination-s3.php:972
1698
+ #: inc/Pro/class-destination-glacier.php:446
1699
  msgid "Backup transferred to %s."
1700
  msgstr "Backup-fil överförd till %s."
1701
 
1735
  #: inc/pro/class-destination-ftp.php:29
1736
  #: inc/pro/class-destination-sugarsync.php:20
1737
  #: inc/pro/class-jobtype-dbdump.php:126
 
1738
  #: inc/Pro/class-destination-ftp.php:47
1739
  #: inc/Pro/class-destination-sugarsync.php:20
1740
+ #: inc/Pro/class-jobtype-dbdump.php:126
1741
  msgid "Password:"
1742
  msgstr "Lösenord:"
1743
 
1915
  msgstr "BackWPup jobbassistent"
1916
 
1917
  #: inc/class-job.php:263
1918
+ #: inc/class-job.php:297
1919
  msgid "Starting job"
1920
  msgstr "Påbörjar jobb"
1921
 
1922
  #: inc/class-job.php:278
1923
+ #: inc/class-job.php:314
1924
  msgid "Job Start"
1925
  msgstr "Jobbstart"
1926
 
1927
  #: inc/class-job.php:298
1928
+ #: inc/class-job.php:334
1929
  msgid "Creates manifest file"
1930
  msgstr "Skapar manifest-fil"
1931
 
1932
  #: inc/class-job.php:320
1933
+ #: inc/class-job.php:356
1934
  msgid "Creates archive"
1935
  msgstr "Skapar arkiv"
1936
 
1937
  #: inc/class-job.php:360
1938
+ #: inc/class-job.php:403
1939
  msgid "End of Job"
1940
  msgstr "Jobb Slut"
1941
 
1942
  #: inc/class-job.php:377
1943
+ #: inc/class-job.php:428
1944
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1945
  msgstr "BackWPup-lobb för %1$s från %2$s vid %3$s"
1946
 
1947
  #: inc/class-job.php:394
1948
+ #: inc/class-job.php:456
1949
  msgctxt "Plugin name; Plugin Version; plugin url"
1950
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1951
  msgstr ""
1952
 
1953
  #: inc/class-job.php:395
1954
+ #: inc/class-job.php:462
1955
  msgctxt "WordPress Version; Blog url"
1956
  msgid "[INFO] WordPress %1$s on %2$s"
1957
  msgstr ""
1958
 
1959
  #: inc/class-job.php:396
1960
+ #: inc/class-job.php:465
1961
  msgid "Normal"
1962
  msgstr ""
1963
 
1964
  #: inc/class-job.php:399
1965
+ #: inc/class-job.php:468
1966
  msgid "Debug"
1967
  msgstr ""
1968
 
1969
  #: inc/class-job.php:402
1970
+ #: inc/class-job.php:471
1971
  msgid "(translated)"
1972
  msgstr ""
1973
 
1974
  #: inc/class-job.php:404
1975
+ #: inc/class-job.php:474
1976
  #, fuzzy
1977
  msgid "[INFO] Log Level: %1$s %2$s"
1978
  msgstr "[INFO] curl-ver.: %1$s; %2$s"
1979
 
1980
  #: inc/class-job.php:409
1981
+ #: inc/class-job.php:480
1982
  msgid "[INFO] BackWPup job: %1$s"
1983
  msgstr ""
1984
 
1985
  #: inc/class-job.php:412
1986
+ #: inc/class-job.php:484
1987
  msgid "[INFO] Runs with user: %1$s (%2$d) "
1988
  msgstr ""
1989
 
1991
  #: inc/class-page-backwpup.php:323
1992
  #: inc/class-page-jobs.php:282
1993
  #: inc/class-page-jobs.php:291
1994
+ #: inc/class-job.php:500
1995
  msgid "Not scheduled!"
1996
  msgstr "Ej schemalagt!"
1997
 
1998
  #: inc/class-job.php:430
1999
  #: inc/class-job.php:440
2000
+ #: inc/class-job.php:507
2001
+ #: inc/class-job.php:519
2002
  msgid "[INFO] Cron: %s; Next: %s "
2003
  msgstr ""
2004
 
2005
  #: inc/class-job.php:433
2006
+ #: inc/class-job.php:511
2007
  msgid "[INFO] BackWPup job start with link is active"
2008
  msgstr "[INFO] BackWPup jobbstart via länk är aktivt"
2009
 
2010
  #: inc/class-job.php:435
2011
+ #: inc/class-job.php:513
2012
  msgid "[INFO] BackWPup job start with EasyCron.com"
2013
  msgstr ""
2014
 
2015
  #: inc/class-job.php:443
2016
+ #: inc/class-job.php:523
2017
  msgid "[INFO] BackWPup no automatic job start configured"
2018
  msgstr "[INFO] BackWPup ingen automatisk jobbstart är konfigurerad"
2019
 
2020
  #: inc/class-job.php:447
2021
+ #: inc/class-job.php:527
2022
  msgid "[INFO] BackWPup job started from wp-cron"
2023
  msgstr "[INFO] BackWPup jobb startat från wp-cron"
2024
 
2025
  #: inc/class-job.php:449
2026
+ #: inc/class-job.php:529
2027
  msgid "[INFO] BackWPup job started manually"
2028
  msgstr "[INFO] BackWPup jobb startat manuellt"
2029
 
2030
  #: inc/class-job.php:451
2031
+ #: inc/class-job.php:531
2032
  msgid "[INFO] BackWPup job started from external url"
2033
  msgstr "[INFO] BackWPup jobb startat från extern url"
2034
 
2035
  #: inc/class-job.php:453
2036
+ #: inc/class-job.php:533
2037
  msgid "[INFO] BackWPup job started form commandline interface"
2038
  msgstr "[INFO] BackWPup jobb startat från kommandorad"
2039
 
2040
  #: inc/class-job.php:462
2041
+ #: inc/class-job.php:544
2042
  msgid "[INFO] PHP ver.:"
2043
  msgstr "[INFO] PHP-ver.:"
2044
 
2045
  #: inc/class-job.php:463
2046
+ #: inc/class-job.php:548
2047
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2048
  msgstr "[INFO] Maximal körtid för PHP-skript är %1$d sekunder"
2049
 
2050
  #: inc/class-job.php:467
2051
+ #: inc/class-job.php:555
2052
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2053
  msgstr "[INFO] Tid för omstart av skript är konfigurerad till %1$d sekunder"
2054
 
2055
  #: inc/class-job.php:470
2056
+ #: inc/class-job.php:561
2057
  msgid "[INFO] MySQL ver.: %s"
2058
  msgstr "[INFO] MySQL-ver.: %s"
2059
 
2060
  #: inc/class-job.php:472
2061
+ #: inc/class-job.php:565
2062
  msgid "[INFO] Web Server: %s"
2063
  msgstr "[INFO] Webbserver: %s"
2064
 
2065
  #: inc/class-job.php:476
2066
+ #: inc/class-job.php:571
2067
  msgid "[INFO] curl ver.: %1$s; %2$s"
2068
  msgstr "[INFO] curl-ver.: %1$s; %2$s"
2069
 
2070
  #: inc/class-job.php:478
2071
+ #: inc/class-job.php:576
2072
  msgid "[INFO] Temp folder is: %s"
2073
  msgstr "[INFO] Temp-mapp är: %s"
2074
 
2075
  #: inc/class-job.php:485
2076
+ #: inc/class-job.php:584
2077
  msgid "[INFO] Logfile is: %s"
2078
  msgstr "[INFO] Loggfil är: %s"
2079
 
2080
  #: inc/class-job.php:492
2081
+ #: inc/class-job.php:591
2082
  msgid "[INFO] Backup file is: %s"
2083
  msgstr "[INFO] Backup-fil är: %s"
2084
 
2085
  #: inc/class-job.php:494
2086
+ #: inc/class-job.php:594
2087
  msgid "[INFO] Backup type is: %s"
2088
  msgstr "[INFO] Backup-typ är: %s"
2089
 
2090
  #: inc/class-job.php:502
2091
+ #: inc/class-job.php:603
2092
  msgid "Could not write log file"
2093
  msgstr ""
2094
 
2095
  #: inc/class-job.php:514
2096
+ #: inc/class-job.php:616
2097
  msgid "No destination correctly defined for backup! Please correct job settings."
2098
  msgstr "Inget mål har definierats korrekt för backupen! Vänligen åtgärda jobbinställningarna."
2099
 
2100
  #: inc/class-job.php:644
2101
+ #: inc/class-job.php:718
2102
  msgid "Cannot write progress to working file. Job will be aborted."
2103
  msgstr "Kan ej skriva förlopp till arbetsfil. Jobbet kommer att avbrytas."
2104
 
2105
  #: inc/class-job.php:716
2106
  #: inc/class-page-jobs.php:786
2107
+ #: inc/class-job.php:793
2108
  msgid "WARNING:"
2109
  msgstr "VARNING:"
2110
 
2111
  #: inc/class-job.php:725
2112
  #: inc/class-page-jobs.php:784
2113
+ #: inc/class-job.php:802
2114
  msgid "ERROR:"
2115
  msgstr "FEL:"
2116
 
2117
  #: inc/class-job.php:729
2118
+ #: inc/class-job.php:806
2119
  msgid "DEPRECATED:"
2120
  msgstr "TAGET UR BRUK:"
2121
 
2122
  #: inc/class-job.php:732
2123
+ #: inc/class-job.php:809
2124
  msgid "STRICT NOTICE:"
2125
  msgstr "STRIKT NOTIS:"
2126
 
2127
  #: inc/class-job.php:737
2128
+ #: inc/class-job.php:814
2129
  msgid "RECOVERABLE ERROR:"
2130
  msgstr "ÅTERHÄMTNINGSBART FEL:"
2131
 
2132
  #: inc/class-job.php:985
2133
+ #: inc/class-job.php:1091
2134
  msgid "Aborted by user!"
2135
  msgstr "Avbröts av användare!"
2136
 
2137
  #: inc/class-job.php:1019
2138
+ #: inc/class-job.php:1129
2139
  msgid "One old log deleted"
2140
  msgid_plural "%d old logs deleted"
2141
  msgstr[0] "En gammal loggfil borttagen"
2143
 
2144
  #: inc/class-job.php:1026
2145
  #: inc/class-page-jobs.php:784
2146
+ #: inc/class-job.php:1141
2147
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2148
  msgstr "Jobb har avslutats med fel på %s sekunder. Du måste åtgärda felen för korrekt exekvering."
2149
 
2150
  #: inc/class-job.php:1028
2151
+ #: inc/class-job.php:1150
2152
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2153
  msgstr "Jobb har slutförts med varningar på %s sekunder. Vänligen åtgärda varningarna för korrekt exekvering."
2154
 
2155
  #: inc/class-job.php:1030
2156
  #: inc/class-page-jobs.php:788
2157
+ #: inc/class-job.php:1158
2158
  msgid "Job done in %s seconds."
2159
  msgstr "Jobb slutfört på %s sekunder."
2160
 
2161
  #: inc/class-job.php:1074
2162
+ #: inc/class-job.php:1212
2163
  msgid "SUCCESSFUL"
2164
  msgstr "LYCKADES"
2165
 
2166
  #: inc/class-job.php:1076
2167
+ #: inc/class-job.php:1214
2168
  msgid "WARNING"
2169
  msgstr "VARNING"
2170
 
2171
  #: inc/class-job.php:1079
2172
+ #: inc/class-job.php:1217
2173
  msgid "ERROR"
2174
  msgstr "FEL"
2175
 
2176
  #: inc/class-job.php:1082
2177
+ #: inc/class-job.php:1221
2178
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2179
  msgstr "[%3$s] BackWPup logg %1$s: %2$s"
2180
 
2181
  #: inc/class-job.php:1188
2182
+ #: inc/class-job.php:1341
2183
  msgid "Restart after %1$d seconds."
2184
  msgstr "Starta om efter %1$d sekunder."
2185
 
2186
  #: inc/class-job.php:1190
2187
+ #: inc/class-job.php:1343
2188
  #, fuzzy
2189
  msgid "Restart after getting signal."
2190
  msgstr "Starta om efter %1$d sekunder."
2191
 
2192
  #: inc/class-job.php:1363
2193
+ #: inc/class-job.php:1534
2194
  msgid "Job restarts due to inactivity for more than 5 minutes."
2195
  msgstr "Jobb startas om p.g.a. längre än 5 minuters inaktivitet."
2196
 
2197
  #: inc/class-job.php:1461
2198
+ #: inc/class-job.php:1636
2199
  msgid "Step aborted: too many attempts!"
2200
  msgstr "Steg skippas: för många försök!"
2201
 
2202
  #: inc/class-job.php:1532
2203
+ #: inc/class-job.php:1716
2204
  msgid "%d. Trying to create backup archive &hellip;"
2205
  msgstr "%d. Försöker skapa backup-arkiv &hellip;"
2206
 
2207
  #: inc/class-job.php:1540
2208
+ #: inc/class-job.php:1729
2209
  msgctxt "Archive compression method"
2210
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2211
  msgstr "Komprimerar filer som %s. Ha tålamod, detta kan ta en stund.."
2212
 
2213
  #: inc/class-job.php:1547
2214
+ #: inc/class-job.php:1742
2215
  msgid "Adding Extra files to Archive"
2216
  msgstr ""
2217
 
2218
  #: inc/class-job.php:1559
2219
  #: inc/class-job.php:1619
2220
+ #: inc/class-job.php:1754
2221
+ #: inc/class-job.php:1823
2222
  msgid "Cannot create backup archive correctly. Aborting creation."
2223
  msgstr "Kan ej skapa backup-arkiv korrekt. Avbryter skapande."
2224
 
2225
  #: inc/class-job.php:1575
2226
+ #: inc/class-job.php:1772
2227
  msgid "Archiving Folder: %s"
2228
  msgstr ""
2229
 
2230
  #: inc/class-job.php:1629
2231
+ #: inc/class-job.php:1834
2232
  msgid "Backup archive created."
2233
  msgstr "Backup-arkiv skapat."
2234
 
2235
  #: inc/class-job.php:1643
2236
+ #: inc/class-job.php:1849
2237
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2238
  msgstr ""
2239
 
2240
  #: inc/class-job.php:1646
2241
+ #: inc/class-job.php:1857
2242
  msgid "Archive size is %s."
2243
  msgstr "Arkivstorlek är %s."
2244
 
2245
  #: inc/class-job.php:1649
2246
+ #: inc/class-job.php:1864
2247
  msgid "%1$d Files with %2$s in Archive."
2248
  msgstr "%1$d Filer med %2$s i Arkiv."
2249
 
2250
  #: inc/class-job.php:1698
2251
+ #: inc/class-job.php:2059
2252
  #, fuzzy
2253
  msgctxt "Folder name"
2254
  msgid "Folder %s does not exist"
2255
  msgstr "Mapp %s existerar ej"
2256
 
2257
  #: inc/class-job.php:1703
2258
+ #: inc/class-job.php:2067
2259
  #, fuzzy
2260
  msgctxt "Folder name"
2261
  msgid "Folder %s is not readable"
2262
  msgstr "Mappen \"%s\" är ej läsbar!"
2263
 
2264
  #: inc/class-job.php:1725
2265
+ #: inc/class-job.php:2096
2266
  msgid "Link \"%s\" not following."
2267
  msgstr "Länk \"%s\" är bruten."
2268
 
2269
  #: inc/class-job.php:1727
2270
+ #: inc/class-job.php:2100
2271
  msgid "File \"%s\" is not readable!"
2272
  msgstr "Fil \"%s\" är ej läsbar!"
2273
 
2274
  #: inc/class-job.php:1731
2275
+ #: inc/class-job.php:2107
2276
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2277
  msgstr "Filstorlek på “%s” kan ej hämtas. Filen kan vara för stor och läggs därför ej till kön."
2278
 
2279
  #: inc/class-job.php:1814
2280
+ #: inc/class-job.php:2197
2281
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2282
  msgstr "%d. Försöker skapa en manifest-fil&#160;&hellip;"
2283
 
2284
  #: inc/class-job.php:1870
2285
+ #: inc/class-job.php:2264
2286
  msgid "You may have noticed the manifest.json file in this archive."
2287
  msgstr "Du har kanske noterat filen manifest.json i detta arkiv."
2288
 
2289
  #: inc/class-job.php:1871
2290
+ #: inc/class-job.php:2265
2291
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2292
  msgstr "manifest.json kan behövas senare för återställning av backup från detta arkiv."
2293
 
2294
  #: inc/class-job.php:1872
2295
+ #: inc/class-job.php:2268
2296
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2297
  msgstr "Vänligen lämna manifest.json på sin plats och orörd. I annat fall kan den säkert ignoreras."
2298
 
2299
  #: inc/class-job.php:1882
2300
+ #: inc/class-job.php:2282
2301
  msgid "Added manifest.json file with %1$s to backup file list."
2302
  msgstr "Lade med %1$s filen manifest.json till backup-fillistan."
2303
 
2304
  #: inc/class-job.php:1921
2305
+ #: inc/class-job.php:2324
2306
  msgid "Wrong BackWPup JobID"
2307
  msgstr "Fel BackWPup Jobb-ID"
2308
 
2309
  #: inc/class-job.php:1934
2310
+ #: inc/class-job.php:2337
2311
  msgid "A BackWPup job is already running"
2312
  msgstr "Ett BackWPup-jobb körs redan"
2313
 
2314
  #: inc/class-job.php:2302
2315
+ #: inc/class-job.php:2752
2316
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2317
  msgid "Hangup detected on controlling terminal or death of controlling process"
2318
  msgstr ""
2319
 
2320
  #: inc/class-job.php:2306
2321
+ #: inc/class-job.php:2759
2322
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2323
  msgid "Interrupt from keyboard"
2324
  msgstr ""
2325
 
2326
  #: inc/class-job.php:2310
2327
+ #: inc/class-job.php:2766
2328
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2329
  msgid "Quit from keyboard"
2330
  msgstr ""
2331
 
2332
  #: inc/class-job.php:2314
2333
+ #: inc/class-job.php:2773
2334
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2335
  msgid "Illegal Instruction"
2336
  msgstr ""
2337
 
2338
  #: inc/class-job.php:2318
2339
+ #: inc/class-job.php:2780
2340
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2341
  msgid "Abort signal from abort(3)"
2342
  msgstr ""
2343
 
2344
  #: inc/class-job.php:2322
2345
+ #: inc/class-job.php:2787
2346
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2347
  msgid "Bus error (bad memory access)"
2348
  msgstr ""
2349
 
2350
  #: inc/class-job.php:2326
2351
+ #: inc/class-job.php:2794
2352
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2353
  msgid "Floating point exception"
2354
  msgstr ""
2355
 
2356
  #: inc/class-job.php:2330
2357
+ #: inc/class-job.php:2801
2358
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2359
  msgid "Invalid memory reference"
2360
  msgstr ""
2361
 
2362
  #: inc/class-job.php:2334
2363
+ #: inc/class-job.php:2808
2364
  #, fuzzy
2365
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2366
  msgid "Termination signal"
2367
  msgstr "Målmappar"
2368
 
2369
  #: inc/class-job.php:2338
2370
+ #: inc/class-job.php:2815
2371
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2372
  msgid "Stack fault on coprocessor"
2373
  msgstr ""
2374
 
2375
  #: inc/class-job.php:2342
2376
+ #: inc/class-job.php:2822
2377
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2378
  msgid "User-defined signal 1"
2379
  msgstr ""
2380
 
2381
  #: inc/class-job.php:2346
2382
+ #: inc/class-job.php:2829
2383
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2384
  msgid "User-defined signal 2"
2385
  msgstr ""
2386
 
2387
  #: inc/class-job.php:2350
2388
+ #: inc/class-job.php:2836
2389
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2390
  msgid "Urgent condition on socket"
2391
  msgstr ""
2392
 
2393
  #: inc/class-job.php:2354
2394
+ #: inc/class-job.php:2843
2395
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2396
  msgid "CPU time limit exceeded"
2397
  msgstr ""
2398
 
2399
  #: inc/class-job.php:2358
2400
+ #: inc/class-job.php:2850
2401
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2402
  msgid "File size limit exceeded"
2403
  msgstr ""
2404
 
2405
  #: inc/class-job.php:2362
2406
+ #: inc/class-job.php:2857
2407
  #, fuzzy
2408
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "Power failure"
2410
  msgstr "FTP: Inloggning misslyckades!"
2411
 
2412
  #: inc/class-job.php:2366
2413
+ #: inc/class-job.php:2864
2414
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2415
  msgid "Bad argument to routine"
2416
  msgstr ""
2417
 
2418
  #: inc/class-job.php:2373
2419
+ #: inc/class-job.php:2876
2420
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2421
  msgstr ""
2422
 
2423
  #: inc/class-job.php:2407
2424
  #: inc/class-job.php:2420
2425
+ #: inc/class-job.php:2912
2426
+ #: inc/class-job.php:2925
2427
  msgid "System: %s"
2428
  msgstr ""
2429
 
2430
  #: inc/class-job.php:2435
2431
+ #: inc/class-job.php:2942
2432
  msgid "Exception caught in %1$s: %2$s"
2433
  msgstr "Undantag uppfångat i %1$s: %2$s"
2434
 
2728
 
2729
  #: inc/class-jobtype-wpexp.php:14
2730
  #: inc/class-page-about.php:472
2731
+ #: inc/class-page-about.php:463
2732
  msgid "WordPress XML export"
2733
  msgstr "WordPress XML-export"
2734
 
2965
  msgstr "Nytt Jobb"
2966
 
2967
  #: inc/class-page-about.php:369
2968
+ #: inc/class-page-about.php:366
2969
  msgid "Welcome to BackWPup Pro"
2970
  msgstr "Välkommen till BackWPup Pro"
2971
 
2972
  #: inc/class-page-about.php:370
2973
  #: inc/class-page-backwpup.php:75
2974
+ #: inc/class-page-about.php:367
2975
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2976
  msgstr "BackWPup:s jobbguider gör planering och schemaläggning av dina backup-jobb till en lätt match."
2977
 
 
 
 
 
 
 
 
2978
  #: inc/class-page-about.php:372
2979
+ #: inc/class-page-about.php:369
2980
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2981
  msgstr "Redo att <a href=\"%1$s\">konfigurera ett backup-jobb</a>? Du kan <a href=\"%2$s\">använda guiderna</a> eller planera din backup i expertläget."
2982
 
2983
  #: inc/class-page-about.php:382
2984
+ #: inc/class-page-about.php:376
2985
  msgid "Welcome to BackWPup"
2986
  msgstr "Välkommen till BackWPup"
2987
 
2988
  #: inc/class-page-about.php:385
2989
+ #: inc/class-page-about.php:379
2990
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2991
  msgstr "Redo att konfigurera ett backup-jobb? Använd en av guiderna för att planera vad du vill spara."
2992
 
2993
  #: inc/class-page-about.php:398
2994
+ #: inc/class-page-about.php:389
2995
  msgid "Save your database"
2996
  msgstr "Spara din databas"
2997
 
2998
  #: inc/class-page-about.php:401
2999
+ #: inc/class-page-about.php:392
3000
  msgid "Save your database regularly"
3001
  msgstr "Spara din databas regelbundet"
3002
 
3003
  #: inc/class-page-about.php:402
3004
+ #: inc/class-page-about.php:393
3005
  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."
3006
  msgstr "Med BackWPup kan du schemalägga databas-backupen för automatisk körning. Du kan återställa din databas från en enskild backup-fil. Du bör <a href=\"%s\">konfigurera ett backup-jobb</a>, så att du inte glömmer det. Det finns också möjlighet att reparera och optimera databasen efter varje backup."
3007
 
3008
  #: inc/class-page-about.php:407
3009
  #: inc/class-page-about.php:411
3010
+ #: inc/class-page-about.php:398
3011
+ #: inc/class-page-about.php:402
3012
  msgid "WordPress XML Export"
3013
  msgstr "WordPress XML-export"
3014
 
3015
  #: inc/class-page-about.php:408
3016
+ #: inc/class-page-about.php:399
3017
  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."
3018
  msgstr "Du kan välja det inbyggda WordPress-exportformatet, utöver eller uteslutande, för att spara din data. Detta fungerar naturligtvis även för automatiska backuper. Fördelen är att du kan importera dessa filer till en blogg med WordPress vanliga importverktyg. "
3019
 
3020
  #: inc/class-page-about.php:416
3021
+ #: inc/class-page-about.php:407
3022
  msgid "Save all data from the webserver"
3023
  msgstr "Spara all data från webbservern"
3024
 
3025
  #: inc/class-page-about.php:419
3026
+ #: inc/class-page-about.php:410
3027
  msgid "Save all files"
3028
  msgstr "Spara alla filer"
3029
 
3030
  #: inc/class-page-about.php:420
3031
+ #: inc/class-page-about.php:411
3032
  msgid "You can backup 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."
3033
  msgstr "Du kan ta backup på alla dina bilagor, samt alla systemfiler, tillägg och teman i en enda fil. Du kan <a href=\"%s\">skapa ett jobb</a> som uppdaterar en backup av ditt filsystem endast när filer ändras."
3034
 
3035
  #: inc/class-page-about.php:425
3036
  #: inc/class-page-about.php:429
3037
+ #: inc/class-page-about.php:416
3038
+ #: inc/class-page-about.php:420
3039
  msgid "Security!"
3040
  msgstr "Säkerhet!"
3041
 
3042
  #: inc/class-page-about.php:426
3043
+ #: inc/class-page-about.php:417
3044
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3045
  msgstr "Allting krypteras som standard: anslutningar till externa tjänster, lokala filer samt tillgång till kataloger."
3046
 
3047
  #: inc/class-page-about.php:434
3048
  #: inc/class-page-about.php:437
3049
+ #: inc/class-page-about.php:425
3050
+ #: inc/class-page-about.php:428
3051
  msgid "Cloud Support"
3052
  msgstr "Moln-stöd"
3053
 
3054
  #: inc/class-page-about.php:438
3055
+ #: inc/class-page-about.php:429
3056
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3057
  msgstr "BackWPup stöder flera molntjänster parallellt. Detta säkerställer redundanta backuper."
3058
 
3059
  #: inc/class-page-about.php:444
3060
+ #: inc/class-page-about.php:435
3061
  msgid "Features / differences between Free and Pro"
3062
  msgstr "Funktioner / Skillnader mellan Gratis och Pro"
3063
 
3064
  #: inc/class-page-about.php:447
3065
+ #: inc/class-page-about.php:438
3066
  msgid "Features"
3067
  msgstr "Funktioner"
3068
 
3069
  #: inc/class-page-about.php:448
3070
+ #: inc/class-page-about.php:439
3071
  msgid "FREE"
3072
  msgstr "GRATIS"
3073
 
3074
  #: inc/class-page-about.php:449
3075
+ #: inc/class-page-about.php:440
3076
  msgid "PRO"
3077
  msgstr "PRO"
3078
 
3079
  #: inc/class-page-about.php:452
3080
+ #: inc/class-page-about.php:443
3081
  msgid "Complete database backup"
3082
  msgstr "Fullständig databas-backup"
3083
 
3084
  #: inc/class-page-about.php:457
3085
+ #: inc/class-page-about.php:448
3086
  msgid "Complete file backup"
3087
  msgstr "Fullständig fil-backup"
3088
 
3089
  #: inc/class-page-about.php:462
3090
+ #: inc/class-page-about.php:453
3091
  msgid "Database check"
3092
  msgstr "Databaskontroll"
3093
 
3094
  #: inc/class-page-about.php:467
3095
+ #: inc/class-page-about.php:458
3096
  msgid "Data compression"
3097
  msgstr "Datakomprimering"
3098
 
3099
  #: inc/class-page-about.php:477
3100
+ #: inc/class-page-about.php:468
3101
  msgid "List of installed plugins"
3102
  msgstr "Lista över installerade tillägg"
3103
 
3104
  #: inc/class-page-about.php:482
3105
+ #: inc/class-page-about.php:473
3106
  msgid "Backup archives management"
3107
  msgstr "Hantering av backup-arkiv"
3108
 
3109
  #: inc/class-page-about.php:487
3110
+ #: inc/class-page-about.php:478
3111
  msgid "Log file management"
3112
  msgstr "Hantering av loggfil"
3113
 
3114
  #: inc/class-page-about.php:492
3115
+ #: inc/class-page-about.php:483
3116
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3117
  msgstr "Starta jobb via WP-Cron, URL, System, Backend eller WP-CLI"
3118
 
3119
  #: inc/class-page-about.php:497
3120
+ #: inc/class-page-about.php:488
3121
  msgid "Log report via email"
3122
  msgstr "Loggrapport via e-post"
3123
 
3124
  #: inc/class-page-about.php:502
3125
+ #: inc/class-page-about.php:493
3126
  msgid "Backup to Microsoft Azure"
3127
  msgstr "Backup till Microsoft Azure"
3128
 
3129
  #: inc/class-page-about.php:507
3130
+ #: inc/class-page-about.php:498
3131
  msgid "Backup as email"
3132
  msgstr "Backup som e-post"
3133
 
3134
  #: inc/class-page-about.php:512
3135
+ #: inc/class-page-about.php:503
3136
  #, fuzzy
3137
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3138
  msgstr "Backup till S3-tjänster <small>(Amazon, Google Storage, Hosteurope och fler)</small>"
3139
 
3140
  #: inc/class-page-about.php:527
3141
+ #: inc/class-page-about.php:518
3142
  msgid "Backup to FTP server"
3143
  msgstr "Backup till FTP-server"
3144
 
3145
  #: inc/class-page-about.php:532
3146
+ #: inc/class-page-about.php:523
3147
  msgid "Backup to your web space"
3148
  msgstr "Backup till ditt webbutrymme"
3149
 
3150
  #: inc/class-page-about.php:542
3151
  #: inc/pro/class-pro.php:112
3152
+ #: inc/class-page-about.php:553
3153
  #: inc/Pro/class-pro.php:152
 
3154
  msgid "Backup to Google Drive"
3155
  msgstr "Backup till Google Drive"
3156
 
3157
  #: inc/class-page-about.php:547
3158
  #: inc/pro/class-pro.php:93
3159
+ #: inc/class-page-about.php:558
3160
  #: inc/Pro/class-pro.php:131
 
3161
  msgid "Backup to Amazon Glacier"
3162
  msgstr "Backup till Amazon Glacier"
3163
 
3164
  #: inc/class-page-about.php:552
3165
+ #: inc/class-page-about.php:563
3166
  msgid "Custom API keys for DropBox and SugarSync"
3167
  msgstr "Anpassade API-nycklar för DropBox och SugarSync"
3168
 
3169
  #: inc/class-page-about.php:557
3170
+ #: inc/class-page-about.php:568
3171
  msgid "XML database backup as PHPMyAdmin schema"
3172
  msgstr "XML databas-backup som PHPMyAdmin schema"
3173
 
3174
  #: inc/class-page-about.php:562
3175
+ #: inc/class-page-about.php:573
3176
  msgid "Database backup as mysqldump per command line"
3177
  msgstr "Databas-backup som mysqldump per kommandorad"
3178
 
3179
  #: inc/class-page-about.php:567
3180
+ #: inc/class-page-about.php:578
3181
  msgid "Database backup for additional MySQL databases"
3182
  msgstr "Databas-backup för ytterligare MySQL-databaser"
3183
 
3184
  #: inc/class-page-about.php:572
3185
+ #: inc/class-page-about.php:583
3186
  msgid "Import and export job settings as XML"
3187
  msgstr "Importera och exportera jobbinställningar som XML"
3188
 
3189
  #: inc/class-page-about.php:577
3190
+ #: inc/class-page-about.php:588
3191
  msgid "Wizard for system tests"
3192
  msgstr "Guide för systemtest"
3193
 
3194
  #: inc/class-page-about.php:582
3195
+ #: inc/class-page-about.php:593
3196
  msgid "Wizard for scheduled backup jobs"
3197
  msgstr "Guide för schemalagda backup-jobb"
3198
 
3199
  #: inc/class-page-about.php:587
3200
+ #: inc/class-page-about.php:598
3201
  msgid "Wizard to import settings and backup jobs"
3202
  msgstr "Guide för import av inställningar och backup-jobb"
3203
 
3204
  #: inc/class-page-about.php:592
3205
+ #: inc/class-page-about.php:603
3206
  msgid "Differential backup of changed directories to Dropbox"
3207
  msgstr "Differentiell backup av ändrade kataloger till Dropbox"
3208
 
3209
  #: inc/class-page-about.php:597
3210
+ #: inc/class-page-about.php:608
3211
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3212
  msgstr "Differentiell backup av ändrade kataloger till Rackspace Cloud Files"
3213
 
3214
  #: inc/class-page-about.php:602
3215
+ #: inc/class-page-about.php:613
3216
  msgid "Differential backup of changed directories to S3"
3217
  msgstr "Differentiell backup av ändrade kataloger till S3"
3218
 
3219
  #: inc/class-page-about.php:607
3220
+ #: inc/class-page-about.php:618
3221
  msgid "Differential backup of changed directories to MS Azure"
3222
  msgstr "Differentiell backup av ändrade kataloger till MS Azure"
3223
 
3224
  #: inc/class-page-about.php:612
3225
+ #: inc/class-page-about.php:648
3226
  msgid "<strong>Premium support</strong>"
3227
  msgstr "<strong>Premium support</strong>"
3228
 
3229
  #: inc/class-page-about.php:617
3230
+ #: inc/class-page-about.php:653
3231
  msgid "<strong>Automatic updates</strong>"
3232
  msgstr "<strong>Automatisk uppdatering</strong>"
3233
 
3234
  #: inc/class-page-about.php:624
3235
+ #: inc/class-page-about.php:660
3236
  msgid "GET PRO"
3237
  msgstr "SKAFFA PRO"
3238
 
3294
  #: inc/class-page-logs.php:206
3295
  #: inc/class-page-backups.php:281
3296
  #: inc/class-page-backups.php:285
3297
+ #: inc/class-page-logs.php:234
3298
  #: inc/class-page-settings.php:768
3299
  #: inc/class-page-settings.php:779
 
3300
  msgid "Download"
3301
  msgstr "Ladda Ned"
3302
 
3356
  msgid "Restoring backups"
3357
  msgstr "Återställning av backuper"
3358
 
 
 
 
 
 
3359
  #: inc/class-page-backwpup.php:78
3360
  #: inc/class-page-backwpup.php:87
3361
  msgctxt "Dashboard heading"
3586
 
3587
  #: inc/class-page-editjob.php:328
3588
  #: inc/class-page-settings.php:117
 
3589
  #: inc/class-page-editjob.php:337
3590
+ #: inc/class-page-settings.php:214
3591
  msgid "General"
3592
  msgstr "Generellt"
3593
 
3621
 
3622
  #: inc/class-page-editjob.php:391
3623
  #: inc/pro/class-wizard-job.php:254
 
3624
  #: inc/class-page-editjob.php:400
3625
+ #: inc/Pro/class-wizard-job.php:254
3626
  msgid "This job is a&#160;&hellip;"
3627
  msgstr "Detta jobb är en&#160;&hellip;"
3628
 
3629
  #: inc/class-page-editjob.php:394
3630
  #: inc/pro/class-wizard-job.php:257
 
3631
  #: inc/class-page-editjob.php:403
3632
+ #: inc/Pro/class-wizard-job.php:257
3633
  msgid "Job tasks"
3634
  msgstr "Jobbets arbetsuppgifter"
3635
 
3642
  #: inc/class-page-editjob.php:420
3643
  #: inc/pro/class-wizard-job.php:402
3644
  #: inc/pro/class-wizard-job.php:405
 
 
3645
  #: inc/class-page-editjob.php:426
3646
  #: inc/class-page-editjob.php:429
3647
+ #: inc/Pro/class-wizard-job.php:402
3648
+ #: inc/Pro/class-wizard-job.php:405
3649
  msgid "Backup type"
3650
  msgstr "Backup-typ"
3651
 
3656
 
3657
  #: inc/class-page-editjob.php:428
3658
  #: inc/pro/class-wizard-job.php:413
 
3659
  #: inc/class-page-editjob.php:437
3660
+ #: inc/Pro/class-wizard-job.php:413
3661
  msgid "Create a backup archive"
3662
  msgstr "Skapa backup-arkiv"
3663
 
3757
  #: inc/class-page-editjob.php:476
3758
  #: inc/pro/class-wizard-job.php:426
3759
  #: inc/pro/class-wizard-job.php:429
 
 
3760
  #: inc/class-page-editjob.php:481
3761
  #: inc/class-page-editjob.php:483
3762
+ #: inc/Pro/class-wizard-job.php:426
3763
+ #: inc/Pro/class-wizard-job.php:429
3764
  msgid "Zip"
3765
  msgstr "Zip"
3766
 
3767
  #: inc/class-page-editjob.php:479
3768
  #: inc/pro/class-wizard-job.php:433
 
3769
  #: inc/class-page-editjob.php:486
3770
+ #: inc/Pro/class-wizard-job.php:433
3771
  msgid "Tar"
3772
  msgstr "Tar"
3773
 
3775
  #: inc/class-page-editjob.php:483
3776
  #: inc/pro/class-wizard-job.php:437
3777
  #: inc/pro/class-wizard-job.php:440
 
 
3778
  #: inc/class-page-editjob.php:488
3779
  #: inc/class-page-editjob.php:490
3780
+ #: inc/Pro/class-wizard-job.php:437
3781
+ #: inc/Pro/class-wizard-job.php:440
3782
  msgid "Tar GZip"
3783
  msgstr "Tar GZip"
3784
 
3794
  #: inc/class-page-editjob.php:489
3795
  #: inc/pro/class-wizard-job.php:444
3796
  #: inc/pro/class-wizard-job.php:447
 
 
3797
  #: inc/class-page-editjob.php:494
3798
  #: inc/class-page-editjob.php:497
3799
+ #: inc/Pro/class-wizard-job.php:444
3800
+ #: inc/Pro/class-wizard-job.php:447
3801
  msgid "Tar BZip2"
3802
  msgstr "Tar BZip2"
3803
 
3925
  #: inc/class-page-editjob.php:650
3926
  #: inc/class-page-editjob.php:718
3927
  #: inc/pro/class-wizard-job.php:320
 
3928
  #: inc/class-page-editjob.php:686
3929
  #: inc/class-page-editjob.php:754
3930
+ #: inc/Pro/class-wizard-job.php:320
3931
  msgid "Scheduler"
3932
  msgstr "Schemaläggare"
3933
 
3935
  #: inc/class-page-jobs.php:126
3936
  #: inc/class-page-logs.php:139
3937
  #: inc/pro/class-wizard-job.php:324
 
 
3938
  #: inc/class-page-editjob.php:691
3939
+ #: inc/class-page-logs.php:166
3940
+ #: inc/Pro/class-wizard-job.php:324
3941
  msgid "Type"
3942
  msgstr "Typ"
3943
 
3944
  #: inc/class-page-editjob.php:660
3945
  #: inc/pro/class-wizard-job.php:330
 
3946
  #: inc/class-page-editjob.php:696
3947
+ #: inc/Pro/class-wizard-job.php:330
3948
  msgid "Hour"
3949
  msgstr "Timme"
3950
 
3951
  #: inc/class-page-editjob.php:663
3952
  #: inc/pro/class-wizard-job.php:333
 
3953
  #: inc/class-page-editjob.php:699
3954
+ #: inc/Pro/class-wizard-job.php:333
3955
  msgid "Minute"
3956
  msgstr "Minut"
3957
 
3958
  #: inc/class-page-editjob.php:667
3959
  #: inc/pro/class-wizard-job.php:337
 
3960
  #: inc/class-page-editjob.php:703
3961
+ #: inc/Pro/class-wizard-job.php:337
3962
  msgid "monthly"
3963
  msgstr "månatlig"
3964
 
3965
  #: inc/class-page-editjob.php:669
3966
  #: inc/pro/class-wizard-job.php:339
 
3967
  #: inc/class-page-editjob.php:705
3968
+ #: inc/Pro/class-wizard-job.php:339
3969
  msgid "on"
3970
  msgstr "på"
3971
 
3972
  #: inc/class-page-editjob.php:679
3973
  #: inc/pro/class-wizard-job.php:349
 
3974
  #: inc/class-page-editjob.php:715
3975
+ #: inc/Pro/class-wizard-job.php:349
3976
  msgid "weekly"
3977
  msgstr "veckolig"
3978
 
3979
  #: inc/class-page-editjob.php:681
3980
  #: inc/class-page-editjob.php:788
3981
  #: inc/pro/class-wizard-job.php:351
 
3982
  #: inc/class-page-editjob.php:717
3983
  #: inc/class-page-editjob.php:824
3984
+ #: inc/Pro/class-wizard-job.php:351
3985
  msgid "Sunday"
3986
  msgstr "Söndag"
3987
 
3988
  #: inc/class-page-editjob.php:682
3989
  #: inc/class-page-editjob.php:789
3990
  #: inc/pro/class-wizard-job.php:352
 
3991
  #: inc/class-page-editjob.php:718
3992
  #: inc/class-page-editjob.php:825
3993
+ #: inc/Pro/class-wizard-job.php:352
3994
  msgid "Monday"
3995
  msgstr "Måndag"
3996
 
3997
  #: inc/class-page-editjob.php:683
3998
  #: inc/class-page-editjob.php:790
3999
  #: inc/pro/class-wizard-job.php:353
 
4000
  #: inc/class-page-editjob.php:719
4001
  #: inc/class-page-editjob.php:826
4002
+ #: inc/Pro/class-wizard-job.php:353
4003
  msgid "Tuesday"
4004
  msgstr "Tisdag"
4005
 
4006
  #: inc/class-page-editjob.php:684
4007
  #: inc/class-page-editjob.php:791
4008
  #: inc/pro/class-wizard-job.php:354
 
4009
  #: inc/class-page-editjob.php:720
4010
  #: inc/class-page-editjob.php:827
4011
+ #: inc/Pro/class-wizard-job.php:354
4012
  msgid "Wednesday"
4013
  msgstr "Onsdag"
4014
 
4015
  #: inc/class-page-editjob.php:685
4016
  #: inc/class-page-editjob.php:792
4017
  #: inc/pro/class-wizard-job.php:355
 
4018
  #: inc/class-page-editjob.php:721
4019
  #: inc/class-page-editjob.php:828
4020
+ #: inc/Pro/class-wizard-job.php:355
4021
  msgid "Thursday"
4022
  msgstr "Torsdag"
4023
 
4024
  #: inc/class-page-editjob.php:686
4025
  #: inc/class-page-editjob.php:793
4026
  #: inc/pro/class-wizard-job.php:356
 
4027
  #: inc/class-page-editjob.php:722
4028
  #: inc/class-page-editjob.php:829
4029
+ #: inc/Pro/class-wizard-job.php:356
4030
  msgid "Friday"
4031
  msgstr "Fredag"
4032
 
4033
  #: inc/class-page-editjob.php:687
4034
  #: inc/class-page-editjob.php:794
4035
  #: inc/pro/class-wizard-job.php:357
 
4036
  #: inc/class-page-editjob.php:723
4037
  #: inc/class-page-editjob.php:830
4038
+ #: inc/Pro/class-wizard-job.php:357
4039
  msgid "Saturday"
4040
  msgstr "Lördag"
4041
 
4042
  #: inc/class-page-editjob.php:697
4043
  #: inc/pro/class-wizard-job.php:367
 
4044
  #: inc/class-page-editjob.php:733
4045
+ #: inc/Pro/class-wizard-job.php:367
4046
  msgid "daily"
4047
  msgstr "dagligen"
4048
 
4049
  #: inc/class-page-editjob.php:707
4050
  #: inc/pro/class-wizard-job.php:377
 
4051
  #: inc/class-page-editjob.php:743
4052
+ #: inc/Pro/class-wizard-job.php:377
4053
  msgid "hourly"
4054
  msgstr "timvis"
4055
 
4197
 
4198
  #: inc/class-page-jobs.php:172
4199
  #: inc/class-page-logs.php:200
 
4200
  #: inc/class-page-logs.php:228
4201
+ #: inc/Pro/class-page-support.php:221
4202
  msgid "Job ID: %d"
4203
  msgstr "Jobb-ID: %d"
4204
 
5028
  #: inc/pro/class-wizard-job.php:17
5029
  #: inc/pro/class-wizard-jobimport.php:16
5030
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
5031
  #: inc/class-admin.php:510
5032
  #: inc/class-admin.php:531
5033
+ #: inc/class-job.php:459
5034
+ #: inc/class-page-about.php:365
5035
+ #: inc/class-page-about.php:375
5036
+ #: inc/class-page-about.php:660
5037
+ #: inc/class-page-backwpup.php:254
5038
  #: inc/class-page-settings.php:1123
5039
+ #: inc/Pro/class-wizard-job.php:17
5040
+ #: inc/Pro/class-wizard-jobimport.php:16
5041
+ #: inc/Pro/class-wizard-systemtest.php:27
5042
  msgid "http://backwpup.com"
5043
  msgstr "http://backwpup.com"
5044
 
5051
  #: inc/pro/class-wizard-job.php:19
5052
  #: inc/pro/class-wizard-jobimport.php:18
5053
  #: inc/pro/class-wizard-systemtest.php:18
 
5054
  #: inc/Pro/class-wizard-job.php:19
5055
+ #: inc/Pro/class-wizard-jobimport.php:18
5056
  #: inc/Pro/class-wizard-systemtest.php:29
5057
  msgid "http://inpsyde.com"
5058
  msgstr ""
5059
 
5060
+ #: backwpup.php:573
5061
+ #: vendor_dist/backwpup.php:573
5062
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5063
  msgstr ""
5064
 
5065
+ #: inc/class-create-archive.php:114
5066
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5067
  msgstr ""
5068
 
5069
+ #: inc/class-create-archive.php:311
5070
+ msgid "File name cannot be empty."
 
5071
  msgstr ""
5072
 
5073
+ #: inc/class-create-archive.php:741
5074
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5075
  msgstr ""
5076
 
5077
+ #. translators: $1 is the filename to add into the archive.
5078
+ #: inc/class-create-archive.php:996
5079
+ msgid "Cannot open source file %s."
5080
  msgstr ""
5081
 
5082
+ #: inc/class-decrypter.php:56
5083
+ msgid "Cannot open the archive for reading."
5084
  msgstr ""
5085
 
5086
+ #: inc/class-decrypter.php:82
5087
+ msgid "Cannot write the encrypted archive."
5088
  msgstr ""
5089
 
5090
+ #: inc/class-decrypter.php:162
5091
+ msgid "Private key invalid."
5092
  msgstr ""
5093
 
5094
+ #: inc/class-destination-dropbox-downloader.php:72
5095
+ #: inc/class-destination-ftp-downloader.php:72
5096
+ #: inc/class-destination-s3-downloader.php:83
5097
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5098
+ msgid "Could not write data to file."
5099
  msgstr ""
5100
 
5101
+ #: inc/class-destination-dropbox-downloader.php:104
5102
+ #: inc/class-destination-folder-downloader.php:137
5103
+ #: inc/class-destination-ftp-downloader.php:126
5104
+ #: inc/class-destination-s3-downloader.php:112
5105
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5106
+ msgid "File could not be opened for writing."
5107
  msgstr ""
5108
 
5109
  #: inc/class-destination-folder-downloader.php:64
5123
  msgid "%s is a directory not a file."
5124
  msgstr ""
5125
 
5126
+ #: inc/class-destination-ftp-downloader.php:108
5127
+ msgid "Cannot open FTP file for download."
5128
+ msgstr ""
5129
+
5130
+ #: inc/class-destination-ftp.php:321
5131
+ msgid "Could not log in to FTP server."
5132
+ msgstr ""
5133
+
5134
+ #: inc/class-destination-ftp.php:735
5135
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5136
+ msgstr ""
5137
+
5138
+ #: inc/class-destination-s3-downloader.php:76
5139
+ msgid "Could not write data to file. Empty source file."
5140
+ msgstr ""
5141
+
5142
  #: inc/class-destination-s3.php:102
5143
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5144
  msgstr ""
5145
 
5146
+ #: inc/class-destination-s3.php:1134
5147
+ #: inc/Pro/class-destination-s3.php:63
5148
+ msgid "Amazon S3: EU (London)"
5149
+ msgstr ""
5150
+
5151
+ #: inc/class-download-file.php:135
5152
+ msgid "Invalid file name, seems file include invalid characters."
5153
+ msgstr ""
5154
+
5155
+ #: inc/class-job.php:362
5156
+ msgid "Encrypts the archive"
5157
+ msgstr ""
5158
+
5159
+ #: inc/class-job.php:1902
5160
+ msgid "No encryption key was provided. Aborting encryption."
5161
+ msgstr ""
5162
+
5163
+ #: inc/class-job.php:1912
5164
+ msgid "%d. Trying to encrypt archive &hellip;"
5165
+ msgstr ""
5166
+
5167
+ #: inc/class-job.php:1925
5168
+ msgid "Cannot open the archive for reading. Aborting encryption."
5169
+ msgstr ""
5170
+
5171
+ #: inc/class-job.php:1932
5172
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5173
+ msgstr ""
5174
+
5175
+ #: inc/class-job.php:1991
5176
+ msgid "Encrypted %s of data."
5177
+ msgstr ""
5178
+
5179
+ #: inc/class-job.php:1996
5180
+ msgid "Unable to delete unencrypted archive."
5181
+ msgstr ""
5182
+
5183
+ #: inc/class-job.php:2003
5184
+ msgid "Unable to rename encrypted archive."
5185
+ msgstr ""
5186
+
5187
+ #: inc/class-job.php:2009
5188
+ msgid "Archive has been successfully encrypted."
5189
+ msgstr ""
5190
+
5191
+ #: inc/class-job.php:2719
5192
+ msgid "exec command is not active."
5193
+ msgstr ""
5194
+
5195
+ #: inc/class-job.php:2725
5196
+ msgid "mysqldump binary not found."
5197
+ msgstr ""
5198
+
5199
+ #: inc/class-page-about.php:365
5200
+ #: inc/class-page-about.php:375
5201
+ #: inc/class-page-backwpup.php:254
5202
+ msgid "BackWPup banner"
5203
+ msgstr ""
5204
+
5205
+ #: inc/class-page-about.php:368
5206
+ #: inc/class-page-about.php:378
5207
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5208
+ msgstr ""
5209
+
5210
+ #: inc/class-page-about.php:533
5211
+ msgid "Restore manually uploaded Backup Archives"
5212
+ msgstr ""
5213
+
5214
+ #: inc/class-page-about.php:538
5215
+ msgid "Standalone Restore App"
5216
+ msgstr ""
5217
+
5218
+ #: inc/class-page-about.php:543
5219
+ msgid "Encrypt Backup Archives"
5220
+ msgstr ""
5221
+
5222
+ #: inc/class-page-about.php:548
5223
+ msgid "Restore Encrypted Backups"
5224
+ msgstr ""
5225
+
5226
+ #: inc/class-page-about.php:623
5227
+ msgid "Restore from Folder"
5228
+ msgstr ""
5229
+
5230
+ #: inc/class-page-about.php:628
5231
+ msgid "Restore from Google Drive"
5232
+ msgstr ""
5233
+
5234
+ #: inc/class-page-about.php:633
5235
+ msgid "Restore from Amazon S3"
5236
+ msgstr ""
5237
+
5238
+ #: inc/class-page-about.php:638
5239
+ msgid "Restore from Dropbox"
5240
+ msgstr ""
5241
+
5242
+ #: inc/class-page-about.php:643
5243
+ msgid "Restore from FTP"
5244
+ msgstr ""
5245
+
5246
+ #: inc/class-page-backups.php:293
5247
+ #: inc/Pro/class-pro.php:285
5248
+ #: inc/Pro/class-pro.php:286
5249
+ #: views/pro/restore/steps/step4_top.php:2
5250
+ msgid "Restore"
5251
+ msgstr ""
5252
+
5253
  #: inc/class-page-backups.php:408
5254
  msgid "&laquo; Go back"
5255
  msgstr ""
5292
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5293
  msgstr ""
5294
 
5295
+ #: inc/class-page-backwpup.php:77
5296
+ #: inc/class-page-backwpup.php:86
5297
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5298
  msgstr ""
5299
 
5300
+ #: inc/class-page-editjob.php:448
5301
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5302
  msgstr ""
5303
 
5304
+ #: inc/class-page-editjob.php:452
5305
+ msgid "Preview: "
5306
  msgstr ""
5307
 
5308
+ #: inc/class-page-editjob.php:484
5309
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5310
+ msgstr ""
5311
+
5312
+ #: inc/class-page-editjob.php:495
5313
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5314
+ msgstr ""
5315
+
5316
+ #: inc/class-page-editjob.php:506
5317
+ #: inc/class-page-editjob.php:511
5318
+ #: inc/class-page-editjob.php:520
5319
+ msgid "Encrypt Archive"
5320
+ msgstr ""
5321
+
5322
+ #: inc/class-page-editjob.php:524
5323
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5324
  msgstr ""
5325
 
5326
  #: inc/class-page-settings.php:39
5533
  msgid "BackWPup maximum script execution time"
5534
  msgstr ""
5535
 
5536
+ #: inc/class-system-tests-runner.php:77
5537
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5538
  msgstr ""
5539
 
5540
+ #: inc/class-system-tests-runner.php:88
5541
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5542
  msgstr ""
5543
 
5544
+ #: inc/class-system-tests-runner.php:100
5545
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5546
  msgstr ""
5547
 
5548
+ #: inc/class-system-tests-runner.php:193
5549
+ msgid "Yeah!"
5550
  msgstr ""
5551
 
5552
+ #: inc/class-system-tests-runner.php:261
5553
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5554
  msgstr ""
5555
 
5556
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup-zh_CN.po CHANGED
@@ -22,8 +22,8 @@ msgstr ""
22
 
23
  #: backwpup.php:339
24
  #: inc/class-page-backups.php:271
25
- #: inc/class-page-backups.php:243
26
  #: backwpup.php:286
 
27
  #: vendor_dist/backwpup.php:286
28
  msgid "Folder"
29
  msgstr "文件夹"
@@ -60,24 +60,24 @@ msgstr "备份到 FTP"
60
 
61
  #: backwpup.php:387
62
  #: inc/class-destination-dropbox.php:286
63
- #: inc/class-destination-dropbox.php:445
64
  #: backwpup.php:334
 
65
  #: vendor_dist/backwpup.php:334
66
  msgid "Dropbox"
67
  msgstr "Dropbox"
68
 
69
  #: backwpup.php:388
70
  #: inc/class-page-about.php:517
71
- #: inc/class-page-about.php:519
72
  #: backwpup.php:335
 
73
  #: vendor_dist/backwpup.php:335
74
  msgid "Backup to Dropbox"
75
  msgstr "备份到 Dropbox"
76
 
77
  #: backwpup.php:403
78
  #: inc/class-destination-s3.php:27
79
- #: inc/class-destination-s3.php:42
80
  #: backwpup.php:350
 
81
  #: vendor_dist/backwpup.php:350
82
  msgid "S3 Service"
83
  msgstr "S3 服务"
@@ -108,8 +108,8 @@ msgstr "RSC"
108
 
109
  #: backwpup.php:439
110
  #: inc/class-page-about.php:522
111
- #: inc/class-page-about.php:524
112
  #: backwpup.php:388
 
113
  #: vendor_dist/backwpup.php:388
114
  msgid "Backup to Rackspace Cloud Files"
115
  msgstr "备份到Rackspace云文件"
@@ -122,8 +122,8 @@ msgstr "SugarSync"
122
 
123
  #: backwpup.php:457
124
  #: inc/class-page-about.php:537
125
- #: inc/class-page-about.php:539
126
  #: backwpup.php:408
 
127
  #: vendor_dist/backwpup.php:408
128
  msgid "Backup to SugarSync"
129
  msgstr "备份到 SugarSync"
@@ -191,8 +191,8 @@ msgstr "添加新作业"
191
  #: inc/class-page-logs.php:328
192
  #: inc/class-page-settings.php:119
193
  #: inc/class-admin.php:355
194
- #: inc/class-page-settings.php:219
195
  #: inc/class-page-logs.php:377
 
196
  msgid "Logs"
197
  msgstr "日志"
198
 
@@ -242,14 +242,17 @@ msgstr "<a class=\"backwpup-get-pro\" href=\"%s\">现在得到BackWPup Pro。</a
242
  #: inc/pro/class-wizard-job.php:17
243
  #: inc/pro/class-wizard-jobimport.php:16
244
  #: inc/pro/class-wizard-systemtest.php:16
245
- #: inc/Pro/class-wizard-jobimport.php:16
246
- #: inc/Pro/class-wizard-job.php:17
247
- #: inc/Pro/class-wizard-systemtest.php:27
248
  #: inc/class-admin.php:510
249
  #: inc/class-admin.php:531
 
 
 
 
 
250
  #: inc/class-page-settings.php:1123
251
- #: inc/class-page-about.php:651
252
- #: inc/class-job.php:412
 
253
  msgid "http://backwpup.com"
254
  msgstr ""
255
 
@@ -484,16 +487,16 @@ msgstr "不能打开路径:%s"
484
  #: inc/class-destination-dropbox.php:36
485
  #: inc/class-destination-dropbox.php:337
486
  #: inc/pro/class-destination-dropbox.php:252
487
- #: inc/Pro/class-destination-dropbox.php:405
488
  #: inc/class-destination-dropbox.php:55
489
  #: inc/class-destination-dropbox.php:458
 
490
  msgid "Dropbox API: %s"
491
  msgstr "Dropbox-API: %s"
492
 
493
  #: inc/class-destination-dropbox.php:50
494
  #: inc/pro/class-destination-gdrive.php:51
495
- #: inc/Pro/class-destination-gdrive.php:93
496
  #: inc/class-destination-dropbox.php:72
 
497
  msgid "Login"
498
  msgstr "登录"
499
 
@@ -507,16 +510,16 @@ msgstr "认证"
507
  #: inc/class-destination-dropbox.php:56
508
  #: inc/pro/class-destination-gdrive.php:57
509
  #: inc/pro/class-destination-gdrive.php:295
 
510
  #: inc/Pro/class-destination-gdrive.php:99
511
  #: inc/Pro/class-destination-gdrive.php:415
512
- #: inc/class-destination-dropbox.php:78
513
  msgid "Not authenticated!"
514
  msgstr "未通过身份验证"
515
 
516
  #: inc/class-destination-dropbox.php:58
517
  #: inc/pro/class-destination-dropbox.php:28
518
- #: inc/Pro/class-destination-dropbox.php:51
519
  #: inc/class-destination-dropbox.php:81
 
520
  msgid "Create Account"
521
  msgstr "创建账户"
522
 
@@ -526,11 +529,11 @@ msgstr "创建账户"
526
  #: inc/pro/class-destination-gdrive.php:59
527
  #: inc/pro/class-destination-gdrive.php:300
528
  #: inc/pro/class-destination-sugarsync.php:31
 
 
529
  #: inc/Pro/class-destination-gdrive.php:101
530
  #: inc/Pro/class-destination-gdrive.php:425
531
- #: inc/Pro/class-destination-dropbox.php:57
532
  #: inc/Pro/class-destination-sugarsync.php:31
533
- #: inc/class-destination-dropbox.php:83
534
  msgid "Authenticated!"
535
  msgstr "已认证"
536
 
@@ -582,10 +585,10 @@ msgstr "BackWPup将会对你的整个Dropbox进行全面的读写访问。你可
582
  #: inc/class-destination-rsc.php:95
583
  #: inc/class-destination-sugarsync.php:81
584
  #: inc/pro/class-destination-gdrive.php:68
585
- #: inc/Pro/class-destination-gdrive.php:112
586
  #: inc/class-destination-dropbox.php:141
587
  #: inc/class-destination-folder.php:27
588
  #: inc/class-destination-ftp.php:82
 
589
  msgid "Backup settings"
590
  msgstr "Backup 设置"
591
 
@@ -604,10 +607,10 @@ msgstr "指定存储备份档案的子文件夹。如果你使用上面的应用
604
  #: inc/class-destination-ftp.php:59
605
  #: inc/class-destination-sugarsync.php:91
606
  #: inc/pro/class-destination-gdrive.php:81
607
- #: inc/Pro/class-destination-gdrive.php:125
608
  #: inc/class-destination-dropbox.php:162
609
  #: inc/class-destination-folder.php:40
610
  #: inc/class-destination-ftp.php:95
 
611
  msgid "File Deletion"
612
  msgstr "文件删除"
613
 
@@ -625,17 +628,17 @@ msgstr "文件删除"
625
  #: inc/pro/class-destination-msazure.php:45
626
  #: inc/pro/class-destination-rsc.php:65
627
  #: inc/pro/class-destination-s3.php:73
 
 
 
 
 
 
628
  #: inc/Pro/class-destination-gdrive.php:134
629
  #: inc/Pro/class-destination-gdrive.php:456
630
- #: inc/Pro/class-destination-rsc.php:65
631
  #: inc/Pro/class-destination-msazure.php:45
 
632
  #: inc/Pro/class-destination-s3.php:182
633
- #: inc/Pro/class-destination-dropbox.php:76
634
- #: inc/Pro/class-destination-folder.php:45
635
- #: inc/class-destination-s3.php:229
636
- #: inc/class-destination-dropbox.php:171
637
- #: inc/class-destination-folder.php:49
638
- #: inc/class-destination-ftp.php:104
639
  msgid "Number of files to keep in folder."
640
  msgstr "存储到文件夹中的文件数"
641
 
@@ -648,12 +651,12 @@ msgstr "存储到文件夹中的文件数"
648
  #: inc/class-destination-sugarsync.php:100
649
  #: inc/pro/class-destination-gdrive.php:92
650
  #: inc/pro/class-destination-glacier.php:109
651
- #: inc/Pro/class-destination-gdrive.php:136
652
- #: inc/Pro/class-destination-glacier.php:109
653
- #: inc/class-destination-s3.php:232
654
  #: inc/class-destination-dropbox.php:173
655
  #: inc/class-destination-folder.php:51
656
  #: inc/class-destination-ftp.php:106
 
 
 
657
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
658
  msgstr "<strong>警告</strong>:该作业的文件现在被跟踪。未跟踪的旧备份档案不会自动删除."
659
 
@@ -673,19 +676,19 @@ msgstr "<strong>警告</strong>:该作业的文件现在被跟踪。未跟踪的
673
  #: inc/pro/class-destination-rsc.php:70
674
  #: inc/pro/class-destination-s3.php:78
675
  #: inc/pro/class-destination-sugarsync.php:65
 
 
 
 
 
 
 
676
  #: inc/Pro/class-destination-gdrive.php:148
677
  #: inc/Pro/class-destination-gdrive.php:462
678
- #: inc/Pro/class-destination-rsc.php:70
679
  #: inc/Pro/class-destination-msazure.php:56
 
680
  #: inc/Pro/class-destination-s3.php:187
681
- #: inc/Pro/class-destination-dropbox.php:82
682
- #: inc/Pro/class-destination-folder.php:51
683
- #: inc/Pro/class-destination-ftp.php:75
684
  #: inc/Pro/class-destination-sugarsync.php:65
685
- #: inc/class-destination-s3.php:245
686
- #: inc/class-destination-dropbox.php:183
687
- #: inc/class-destination-folder.php:57
688
- #: inc/class-destination-ftp.php:118
689
  msgid "Do not delete files while syncing to destination!"
690
  msgstr "在同步到目的地时,不要删除文件!"
691
 
@@ -696,22 +699,22 @@ msgstr "%d. 正在发送备份文件到 Dropbox …"
696
 
697
  #: inc/class-destination-dropbox.php:251
698
  #: inc/pro/class-destination-dropbox.php:125
699
- #: inc/Pro/class-destination-dropbox.php:209
700
  #: inc/class-destination-dropbox.php:390
 
701
  msgid "Authenticated with Dropbox of user: %s"
702
  msgstr "认证的用户: %s"
703
 
704
  #: inc/class-destination-dropbox.php:257
705
  #: inc/pro/class-destination-dropbox.php:131
706
- #: inc/Pro/class-destination-dropbox.php:217
707
  #: inc/class-destination-dropbox.php:398
 
708
  msgid "%s available on your Dropbox"
709
  msgstr "Dropbox 可用空间剩余 %s "
710
 
711
  #: inc/class-destination-dropbox.php:261
712
  #: inc/pro/class-destination-dropbox.php:135
713
- #: inc/Pro/class-destination-dropbox.php:223
714
  #: inc/class-destination-dropbox.php:404
 
715
  msgid "Not Authenticated with Dropbox!"
716
  msgstr "不验证Dropbox !"
717
 
@@ -724,26 +727,26 @@ msgstr "上传到Dropbox&#160;&hellip;"
724
  #: inc/class-destination-msazure.php:286
725
  #: inc/class-destination-sugarsync.php:260
726
  #: inc/pro/class-destination-gdrive.php:663
727
- #: inc/Pro/class-destination-gdrive.php:924
728
- #: inc/class-destination-msazure.php:290
729
  #: inc/class-destination-dropbox.php:432
 
730
  #: inc/class-destination-sugarsync.php:263
 
731
  msgid "Backup transferred to %s"
732
  msgstr "备份传输进度 %s"
733
 
734
  #: inc/class-destination-dropbox.php:280
735
  #: inc/pro/class-destination-gdrive.php:666
736
- #: inc/Pro/class-destination-gdrive.php:930
737
  #: inc/class-destination-dropbox.php:438
 
738
  msgid "Uploaded file size and local file size don't match."
739
  msgstr "上传的文件大小和本地文件大小不匹配。"
740
 
741
  #: inc/class-destination-dropbox.php:285
742
  #: inc/pro/class-destination-gdrive.php:668
743
  #: inc/pro/class-destination-glacier.php:448
 
744
  #: inc/Pro/class-destination-gdrive.php:936
745
  #: inc/Pro/class-destination-glacier.php:450
746
- #: inc/class-destination-dropbox.php:444
747
  msgid "Error transfering backup to %s."
748
  msgstr "错误的备份到磁带 %s。"
749
 
@@ -771,9 +774,9 @@ msgstr "完成上载会话,并上传了%s"
771
  #: inc/class-destination-email.php:38
772
  #: inc/pro/class-destination-email.php:16
773
  #: inc/pro/class-destination-email.php:18
 
774
  #: inc/Pro/class-destination-email.php:16
775
  #: inc/Pro/class-destination-email.php:18
776
- #: inc/class-destination-email.php:39
777
  msgid "Email address"
778
  msgstr "电子邮件地址"
779
 
@@ -786,10 +789,10 @@ msgstr "电子邮件地址(多个地址用逗号分隔)"
786
  #: inc/class-destination-email.php:49
787
  #: inc/pro/class-destination-email.php:29
788
  #: inc/pro/class-destination-email.php:30
789
- #: inc/Pro/class-destination-email.php:29
790
- #: inc/Pro/class-destination-email.php:30
791
  #: inc/class-destination-email.php:52
792
  #: inc/class-destination-email.php:56
 
 
793
  msgid "Send test email"
794
  msgstr "发送测试邮件"
795
 
@@ -861,9 +864,9 @@ msgstr "SMTP 主机名"
861
  #: inc/class-destination-email.php:98
862
  #: inc/class-destination-ftp.php:31
863
  #: inc/pro/class-destination-ftp.php:21
864
- #: inc/Pro/class-destination-ftp.php:35
865
  #: inc/class-destination-email.php:124
866
  #: inc/class-destination-ftp.php:56
 
867
  msgid "Port:"
868
  msgstr "端口:"
869
 
@@ -882,10 +885,10 @@ msgstr "SMTP 加密连接"
882
  #: inc/class-page-settings.php:330
883
  #: inc/pro/class-jobtype-dbdump.php:157
884
  #: inc/pro/class-jobtype-dbdump.php:205
885
- #: inc/Pro/class-jobtype-dbdump.php:157
886
- #: inc/Pro/class-jobtype-dbdump.php:205
887
  #: inc/class-destination-email.php:141
888
  #: inc/class-page-settings.php:837
 
 
889
  msgid "none"
890
  msgstr "无"
891
 
@@ -1007,8 +1010,8 @@ msgstr "FTP连接超时"
1007
 
1008
  #: inc/class-destination-ftp.php:87
1009
  #: inc/class-page-logs.php:257
1010
- #: inc/class-page-logs.php:288
1011
  #: inc/class-destination-ftp.php:137
 
1012
  msgid "seconds"
1013
  msgstr "秒"
1014
 
@@ -1163,15 +1166,15 @@ msgstr "备份传送到FTP服务器: %s"
1163
  #: inc/pro/class-destination-glacier.php:468
1164
  #: inc/pro/class-destination-rsc.php:226
1165
  #: inc/pro/class-destination-rsc.php:259
 
 
1166
  #: inc/class-destination-rsc.php:292
 
 
1167
  #: inc/Pro/class-destination-gdrive.php:905
1168
  #: inc/Pro/class-destination-glacier.php:470
1169
  #: inc/Pro/class-destination-rsc.php:228
1170
  #: inc/Pro/class-destination-rsc.php:261
1171
- #: inc/class-destination-msazure.php:275
1172
- #: inc/class-destination-s3.php:843
1173
- #: inc/class-destination-s3.php:958
1174
- #: inc/class-destination-ftp.php:673
1175
  msgid "Can not open source file for transfer."
1176
  msgstr "不能打开源文件进行传输。"
1177
 
@@ -1220,8 +1223,8 @@ msgstr "容器内部文件夹"
1220
  #: inc/class-destination-rsc.php:105
1221
  #: inc/class-destination-s3.php:114
1222
  #: inc/pro/class-destination-glacier.php:96
1223
- #: inc/Pro/class-destination-glacier.php:96
1224
  #: inc/class-destination-s3.php:215
 
1225
  msgid "File deletion"
1226
  msgstr "文件删除"
1227
 
@@ -1244,15 +1247,15 @@ msgstr "%d. 开始发送备份文件到 Microsoft Azure (Blob)…&#160;&hellip;"
1244
 
1245
  #: inc/class-destination-msazure.php:233
1246
  #: inc/pro/class-destination-msazure.php:144
1247
- #: inc/Pro/class-destination-msazure.php:144
1248
  #: inc/class-destination-msazure.php:237
 
1249
  msgid "MS Azure container \"%s\" does not exist!"
1250
  msgstr "MS Azure 容器 \"%s\" 不存在!"
1251
 
1252
  #: inc/class-destination-msazure.php:237
1253
  #: inc/pro/class-destination-msazure.php:148
1254
- #: inc/Pro/class-destination-msazure.php:148
1255
  #: inc/class-destination-msazure.php:241
 
1256
  msgid "Connected to MS Azure container \"%s\"."
1257
  msgstr "已连接到 MS Azure 容器 \"%s\"."
1258
 
@@ -1264,9 +1267,9 @@ msgstr "开始上传文件到 Microsoft Azure …&#160;&hellip;"
1264
  #: inc/class-destination-msazure.php:292
1265
  #: inc/class-destination-msazure.php:348
1266
  #: inc/pro/class-destination-msazure.php:233
1267
- #: inc/Pro/class-destination-msazure.php:233
1268
  #: inc/class-destination-msazure.php:296
1269
  #: inc/class-destination-msazure.php:352
 
1270
  msgid "Microsoft Azure API: %s"
1271
  msgstr "Microsoft Azure API: %s"
1272
 
@@ -1284,9 +1287,9 @@ msgstr "缺少帐户名!"
1284
  #: inc/class-destination-msazure.php:444
1285
  #: inc/class-destination-s3.php:222
1286
  #: inc/pro/class-destination-glacier.php:166
1287
- #: inc/Pro/class-destination-glacier.php:166
1288
  #: inc/class-destination-msazure.php:448
1289
  #: inc/class-destination-s3.php:359
 
1290
  msgid "Missing access key!"
1291
  msgstr "缺少 access key!"
1292
 
@@ -1431,120 +1434,120 @@ msgstr "选择一个 S3 服务器"
1431
 
1432
  #: inc/class-destination-s3.php:33
1433
  #: inc/pro/class-destination-s3.php:18
1434
- #: inc/Pro/class-destination-s3.php:32
1435
  #: inc/class-destination-s3.php:54
 
1436
  msgid "Amazon S3 Region"
1437
  msgstr "Amazon S3 地区"
1438
 
1439
  #: inc/class-destination-s3.php:34
1440
  #: inc/pro/class-destination-s3.php:19
1441
- #: inc/Pro/class-destination-s3.php:40
1442
  #: inc/class-destination-s3.php:1118
 
1443
  msgid "Amazon S3: US Standard"
1444
  msgstr "Amazon S3: US Standard"
1445
 
1446
  #: inc/class-destination-s3.php:35
1447
  #: inc/pro/class-destination-s3.php:20
1448
- #: inc/Pro/class-destination-s3.php:45
1449
  #: inc/class-destination-s3.php:1122
 
1450
  msgid "Amazon S3: US West (Northern California)"
1451
  msgstr "Amazon S3: US West (Northern California)"
1452
 
1453
  #: inc/class-destination-s3.php:36
1454
  #: inc/pro/class-destination-s3.php:21
1455
- #: inc/Pro/class-destination-s3.php:53
1456
  #: inc/class-destination-s3.php:1126
 
1457
  msgid "Amazon S3: US West (Oregon)"
1458
  msgstr "Amazon S3: US West (Oregon)"
1459
 
1460
  #: inc/class-destination-s3.php:37
1461
  #: inc/pro/class-destination-s3.php:22
1462
- #: inc/Pro/class-destination-s3.php:58
1463
  #: inc/class-destination-s3.php:1130
 
1464
  msgid "Amazon S3: EU (Ireland)"
1465
  msgstr "Amazon S3: EU (Ireland)"
1466
 
1467
  #: inc/class-destination-s3.php:38
1468
  #: inc/pro/class-destination-s3.php:23
1469
- #: inc/Pro/class-destination-s3.php:68
1470
  #: inc/class-destination-s3.php:1138
 
1471
  msgid "Amazon S3: EU (Germany)"
1472
  msgstr "Amazon S3:欧盟(德国)"
1473
 
1474
  #: inc/class-destination-s3.php:39
1475
  #: inc/pro/class-destination-s3.php:24
1476
- #: inc/Pro/class-destination-s3.php:73
1477
  #: inc/class-destination-s3.php:1142
 
1478
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1479
  msgstr "Amazon S3: 亚太(孟买)"
1480
 
1481
  #: inc/class-destination-s3.php:40
1482
  #: inc/pro/class-destination-s3.php:25
1483
- #: inc/Pro/class-destination-s3.php:78
1484
  #: inc/class-destination-s3.php:1146
 
1485
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1486
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1487
 
1488
  #: inc/class-destination-s3.php:41
1489
  #: inc/pro/class-destination-s3.php:26
1490
- #: inc/Pro/class-destination-s3.php:83
1491
  #: inc/class-destination-s3.php:1150
 
1492
  msgid "Amazon S3: Asia Pacific (Seoul)"
1493
  msgstr "Amazon S3:亚太(首尔)"
1494
 
1495
  #: inc/class-destination-s3.php:42
1496
  #: inc/pro/class-destination-s3.php:27
1497
- #: inc/Pro/class-destination-s3.php:88
1498
  #: inc/class-destination-s3.php:1154
 
1499
  msgid "Amazon S3: Asia Pacific (Singapore)"
1500
  msgstr "Amazon S3: Asia Pacific (Singapore)"
1501
 
1502
  #: inc/class-destination-s3.php:43
1503
  #: inc/pro/class-destination-s3.php:28
1504
- #: inc/Pro/class-destination-s3.php:93
1505
  #: inc/class-destination-s3.php:1158
 
1506
  msgid "Amazon S3: Asia Pacific (Sydney)"
1507
  msgstr "Amazon S3: Asia Pacific (Sydney)"
1508
 
1509
  #: inc/class-destination-s3.php:44
1510
  #: inc/pro/class-destination-s3.php:29
1511
- #: inc/Pro/class-destination-s3.php:98
1512
  #: inc/class-destination-s3.php:1162
 
1513
  msgid "Amazon S3: South America (Sao Paulo)"
1514
  msgstr "Amazon S3: South America (Sao Paulo)"
1515
 
1516
  #: inc/class-destination-s3.php:45
1517
  #: inc/pro/class-destination-s3.php:30
1518
- #: inc/Pro/class-destination-s3.php:103
1519
  #: inc/class-destination-s3.php:1166
 
1520
  msgid "Amazon S3: China (Beijing)"
1521
  msgstr "Amazon S3: 中国(北京)"
1522
 
1523
  #: inc/class-destination-s3.php:46
1524
  #: inc/pro/class-destination-s3.php:31
1525
- #: inc/Pro/class-destination-s3.php:108
1526
  #: inc/class-destination-s3.php:1170
 
1527
  msgid "Google Storage: EU"
1528
  msgstr "Google存储:欧盟"
1529
 
1530
  #: inc/class-destination-s3.php:47
1531
  #: inc/pro/class-destination-s3.php:32
1532
- #: inc/Pro/class-destination-s3.php:113
1533
  #: inc/class-destination-s3.php:1174
 
1534
  msgid "Google Storage: USA"
1535
  msgstr "Google存储:美国"
1536
 
1537
  #: inc/class-destination-s3.php:48
1538
  #: inc/pro/class-destination-s3.php:33
1539
- #: inc/Pro/class-destination-s3.php:118
1540
  #: inc/class-destination-s3.php:1178
 
1541
  msgid "Google Storage: Asia"
1542
  msgstr "Google存储:亚洲"
1543
 
1544
  #: inc/class-destination-s3.php:49
1545
  #: inc/pro/class-destination-s3.php:34
1546
- #: inc/Pro/class-destination-s3.php:123
1547
  #: inc/class-destination-s3.php:1182
 
1548
  msgid "Dream Host Cloud Storage"
1549
  msgstr "Dream Host 云存储"
1550
 
@@ -1560,15 +1563,15 @@ msgstr "S3 Access Keys"
1560
 
1561
  #: inc/class-destination-s3.php:65
1562
  #: inc/pro/class-destination-glacier.php:54
1563
- #: inc/Pro/class-destination-glacier.php:54
1564
  #: inc/class-destination-s3.php:121
 
1565
  msgid "Access Key"
1566
  msgstr "Access Key"
1567
 
1568
  #: inc/class-destination-s3.php:72
1569
  #: inc/pro/class-destination-glacier.php:61
1570
- #: inc/Pro/class-destination-glacier.php:61
1571
  #: inc/class-destination-s3.php:135
 
1572
  msgid "Secret Key"
1573
  msgstr "Secret Key"
1574
 
@@ -1636,8 +1639,8 @@ msgstr "在服务器上加密保存文件(AES256)"
1636
 
1637
  #: inc/class-destination-s3.php:224
1638
  #: inc/pro/class-destination-glacier.php:168
1639
- #: inc/Pro/class-destination-glacier.php:168
1640
  #: inc/class-destination-s3.php:361
 
1641
  msgid "Missing secret access key!"
1642
  msgstr "缺少 secret access key!"
1643
 
@@ -1653,8 +1656,8 @@ msgstr "存储库(Bucket)%1$s已创建"
1653
 
1654
  #: inc/class-destination-s3.php:348
1655
  #: inc/pro/class-destination-s3.php:147
1656
- #: inc/Pro/class-destination-s3.php:285
1657
  #: inc/class-destination-s3.php:520
 
1658
  msgid " %s is not a valid bucket name."
1659
  msgstr "%s 不是一个有效的 Bucket 名称"
1660
 
@@ -1664,12 +1667,12 @@ msgstr "%s 不是一个有效的 Bucket 名称"
1664
  #: inc/class-destination-s3.php:610
1665
  #: inc/class-destination-s3.php:670
1666
  #: inc/pro/class-destination-s3.php:337
1667
- #: inc/Pro/class-destination-s3.php:623
1668
  #: inc/class-destination-s3.php:570
1669
  #: inc/class-destination-s3.php:868
1670
  #: inc/class-destination-s3.php:936
1671
  #: inc/class-destination-s3.php:995
1672
  #: inc/class-destination-s3.php:1006
 
1673
  msgid "S3 Service API: %s"
1674
  msgstr "S3服务 API:%s"
1675
 
@@ -1680,15 +1683,15 @@ msgstr "%d. 开始发送备份文件到 S3 服务器…"
1680
 
1681
  #: inc/class-destination-s3.php:470
1682
  #: inc/pro/class-destination-s3.php:188
1683
- #: inc/Pro/class-destination-s3.php:383
1684
  #: inc/class-destination-s3.php:803
 
1685
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1686
  msgstr "已连接到 S3 Bucket \"%1$s\" in %2$s"
1687
 
1688
  #: inc/class-destination-s3.php:473
1689
  #: inc/pro/class-destination-s3.php:191
1690
- #: inc/Pro/class-destination-s3.php:391
1691
  #: inc/class-destination-s3.php:808
 
1692
  msgid "S3 Bucket \"%s\" does not exist!"
1693
  msgstr "S3 Bucket \"%s\" 不存在!"
1694
 
@@ -1709,8 +1712,8 @@ msgstr "开始上传文件到 S3 服务器 …"
1709
 
1710
  #: inc/class-destination-s3.php:601
1711
  #: inc/pro/class-destination-glacier.php:444
1712
- #: inc/Pro/class-destination-glacier.php:446
1713
  #: inc/class-destination-s3.php:972
 
1714
  msgid "Backup transferred to %s."
1715
  msgstr "备份已转移到 %s"
1716
 
@@ -1749,9 +1752,9 @@ msgstr "电子邮件地址:"
1749
  #: inc/pro/class-destination-ftp.php:29
1750
  #: inc/pro/class-destination-sugarsync.php:20
1751
  #: inc/pro/class-jobtype-dbdump.php:126
1752
- #: inc/Pro/class-jobtype-dbdump.php:126
1753
  #: inc/Pro/class-destination-ftp.php:47
1754
  #: inc/Pro/class-destination-sugarsync.php:20
 
1755
  msgid "Password:"
1756
  msgstr "密码:"
1757
 
@@ -1928,74 +1931,74 @@ msgid "BackWPup jobs helper"
1928
  msgstr "BackWPup 计划帮助"
1929
 
1930
  #: inc/class-job.php:263
1931
- #: inc/class-job.php:269
1932
  msgid "Starting job"
1933
  msgstr "启动计划"
1934
 
1935
  #: inc/class-job.php:278
1936
- #: inc/class-job.php:284
1937
  msgid "Job Start"
1938
  msgstr "计划启动"
1939
 
1940
  #: inc/class-job.php:298
1941
- #: inc/class-job.php:304
1942
  msgid "Creates manifest file"
1943
  msgstr "创建清单文件"
1944
 
1945
  #: inc/class-job.php:320
1946
- #: inc/class-job.php:326
1947
  msgid "Creates archive"
1948
  msgstr "创建存档"
1949
 
1950
  #: inc/class-job.php:360
1951
- #: inc/class-job.php:373
1952
  msgid "End of Job"
1953
  msgstr "结束工作"
1954
 
1955
  #: inc/class-job.php:377
1956
- #: inc/class-job.php:395
1957
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1958
  msgstr "BackWPup 日志文件 %1$s 来自 %2$s %3$s"
1959
 
1960
  #: inc/class-job.php:394
1961
- #: inc/class-job.php:412
1962
  msgctxt "Plugin name; Plugin Version; plugin url"
1963
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1964
  msgstr "[INFO]%1$s %2$ s;Inpsyde GmbH是一家高水平的企业"
1965
 
1966
  #: inc/class-job.php:395
1967
- #: inc/class-job.php:413
1968
  msgctxt "WordPress Version; Blog url"
1969
  msgid "[INFO] WordPress %1$s on %2$s"
1970
  msgstr "[INFO] WordPress %1$s on %2$s"
1971
 
1972
  #: inc/class-job.php:396
1973
- #: inc/class-job.php:414
1974
  msgid "Normal"
1975
  msgstr "普通"
1976
 
1977
  #: inc/class-job.php:399
1978
- #: inc/class-job.php:417
1979
  msgid "Debug"
1980
  msgstr "调试"
1981
 
1982
  #: inc/class-job.php:402
1983
- #: inc/class-job.php:420
1984
  msgid "(translated)"
1985
  msgstr "(翻译)"
1986
 
1987
  #: inc/class-job.php:404
1988
- #: inc/class-job.php:422
1989
  msgid "[INFO] Log Level: %1$s %2$s"
1990
  msgstr "[信息]日志级别: %1$s %2$s"
1991
 
1992
  #: inc/class-job.php:409
1993
- #: inc/class-job.php:427
1994
  msgid "[INFO] BackWPup job: %1$s"
1995
  msgstr "[INFO] BackWPup 计划: %1$s"
1996
 
1997
  #: inc/class-job.php:412
1998
- #: inc/class-job.php:430
1999
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2000
  msgstr "[INFO]与用户一起运行:%1$s(%2$d)"
2001
 
@@ -2003,438 +2006,438 @@ msgstr "[INFO]与用户一起运行:%1$s(%2$d)"
2003
  #: inc/class-page-backwpup.php:323
2004
  #: inc/class-page-jobs.php:282
2005
  #: inc/class-page-jobs.php:291
2006
- #: inc/class-job.php:444
2007
  msgid "Not scheduled!"
2008
  msgstr "预定!"
2009
 
2010
  #: inc/class-job.php:430
2011
  #: inc/class-job.php:440
2012
- #: inc/class-job.php:448
2013
- #: inc/class-job.php:458
2014
  msgid "[INFO] Cron: %s; Next: %s "
2015
  msgstr "[INFO] Cron: %s; 下一个: %s "
2016
 
2017
  #: inc/class-job.php:433
2018
- #: inc/class-job.php:451
2019
  msgid "[INFO] BackWPup job start with link is active"
2020
  msgstr "[INFO]BackWPup job start with link是活动的"
2021
 
2022
  #: inc/class-job.php:435
2023
- #: inc/class-job.php:453
2024
  msgid "[INFO] BackWPup job start with EasyCron.com"
2025
  msgstr "[INFO]BackWPup job从EasyCron.com开始"
2026
 
2027
  #: inc/class-job.php:443
2028
- #: inc/class-job.php:461
2029
  msgid "[INFO] BackWPup no automatic job start configured"
2030
  msgstr "[INFO]BackWPup没有自动开始配置"
2031
 
2032
  #: inc/class-job.php:447
2033
- #: inc/class-job.php:465
2034
  msgid "[INFO] BackWPup job started from wp-cron"
2035
  msgstr "[INFO] BackWPup 计划已根据 wp-cron 启动"
2036
 
2037
  #: inc/class-job.php:449
2038
- #: inc/class-job.php:467
2039
  msgid "[INFO] BackWPup job started manually"
2040
  msgstr "[INFO] BackWPup 计划已手动启动"
2041
 
2042
  #: inc/class-job.php:451
2043
- #: inc/class-job.php:469
2044
  msgid "[INFO] BackWPup job started from external url"
2045
  msgstr "[INFO] BackWPup 计划已从外部 URL 启动"
2046
 
2047
  #: inc/class-job.php:453
2048
- #: inc/class-job.php:471
2049
  msgid "[INFO] BackWPup job started form commandline interface"
2050
  msgstr "[INFO] BackWPup 计划已从命令行界面启动"
2051
 
2052
  #: inc/class-job.php:462
2053
- #: inc/class-job.php:480
2054
  msgid "[INFO] PHP ver.:"
2055
  msgstr "[INFO] PHP 版本:"
2056
 
2057
  #: inc/class-job.php:463
2058
- #: inc/class-job.php:481
2059
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2060
  msgstr "[INFO]最大的PHP脚本执行时间是%1$d秒"
2061
 
2062
  #: inc/class-job.php:467
2063
- #: inc/class-job.php:485
2064
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2065
  msgstr "[INFO]脚本重启时间配置为%1$d秒"
2066
 
2067
  #: inc/class-job.php:470
2068
- #: inc/class-job.php:488
2069
  msgid "[INFO] MySQL ver.: %s"
2070
  msgstr "[INFO] MySQL 版本:%s"
2071
 
2072
  #: inc/class-job.php:472
2073
- #: inc/class-job.php:490
2074
  msgid "[INFO] Web Server: %s"
2075
  msgstr "[INFO] 网站服务器: %s"
2076
 
2077
  #: inc/class-job.php:476
2078
- #: inc/class-job.php:494
2079
  msgid "[INFO] curl ver.: %1$s; %2$s"
2080
  msgstr "[INFO] curl 版本:%1$s; %2$s"
2081
 
2082
  #: inc/class-job.php:478
2083
- #: inc/class-job.php:496
2084
  msgid "[INFO] Temp folder is: %s"
2085
  msgstr "[INFO] 临时文件夹是:%s"
2086
 
2087
  #: inc/class-job.php:485
2088
- #: inc/class-job.php:503
2089
  msgid "[INFO] Logfile is: %s"
2090
  msgstr "[INFO]日志文件是:%s"
2091
 
2092
  #: inc/class-job.php:492
2093
- #: inc/class-job.php:510
2094
  msgid "[INFO] Backup file is: %s"
2095
  msgstr "[INFO] 备份文件是:%s"
2096
 
2097
  #: inc/class-job.php:494
2098
- #: inc/class-job.php:512
2099
  msgid "[INFO] Backup type is: %s"
2100
  msgstr "[INFO] 备份类型是:%s"
2101
 
2102
  #: inc/class-job.php:502
2103
- #: inc/class-job.php:520
2104
  msgid "Could not write log file"
2105
  msgstr "不能写日志文件"
2106
 
2107
  #: inc/class-job.php:514
2108
- #: inc/class-job.php:532
2109
  msgid "No destination correctly defined for backup! Please correct job settings."
2110
  msgstr "没有正确定义备份的目的地!"
2111
 
2112
  #: inc/class-job.php:644
2113
- #: inc/class-job.php:628
2114
  msgid "Cannot write progress to working file. Job will be aborted."
2115
  msgstr "不能将进度写入工作文件。工作将会中止。"
2116
 
2117
  #: inc/class-job.php:716
2118
  #: inc/class-page-jobs.php:786
2119
- #: inc/class-job.php:700
2120
  msgid "WARNING:"
2121
  msgstr "警告:"
2122
 
2123
  #: inc/class-job.php:725
2124
  #: inc/class-page-jobs.php:784
2125
- #: inc/class-job.php:709
2126
  msgid "ERROR:"
2127
  msgstr "错误:"
2128
 
2129
  #: inc/class-job.php:729
2130
- #: inc/class-job.php:713
2131
  msgid "DEPRECATED:"
2132
  msgstr "弃用:"
2133
 
2134
  #: inc/class-job.php:732
2135
- #: inc/class-job.php:716
2136
  msgid "STRICT NOTICE:"
2137
  msgstr "严格注意:"
2138
 
2139
  #: inc/class-job.php:737
2140
- #: inc/class-job.php:721
2141
  msgid "RECOVERABLE ERROR:"
2142
  msgstr "可恢复的错误:"
2143
 
2144
  #: inc/class-job.php:985
2145
- #: inc/class-job.php:972
2146
  msgid "Aborted by user!"
2147
  msgstr "由用户中止!"
2148
 
2149
  #: inc/class-job.php:1019
2150
- #: inc/class-job.php:1005
2151
  msgid "One old log deleted"
2152
  msgid_plural "%d old logs deleted"
2153
  msgstr[0] "%d一个旧的日志删除"
2154
 
2155
  #: inc/class-job.php:1026
2156
  #: inc/class-page-jobs.php:784
2157
- #: inc/class-job.php:1012
2158
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2159
  msgstr "计划已结束,用时 %s 秒,有错误。为正确执行,请解决这些错误。"
2160
 
2161
  #: inc/class-job.php:1028
2162
- #: inc/class-job.php:1014
2163
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2164
  msgstr "在%s秒内完成警告工作。请将其解析为正确执行。"
2165
 
2166
  #: inc/class-job.php:1030
2167
  #: inc/class-page-jobs.php:788
2168
- #: inc/class-job.php:1016
2169
  msgid "Job done in %s seconds."
2170
  msgstr "计划已完成,用时 %s 秒"
2171
 
2172
  #: inc/class-job.php:1074
2173
- #: inc/class-job.php:1060
2174
  msgid "SUCCESSFUL"
2175
  msgstr "成功"
2176
 
2177
  #: inc/class-job.php:1076
2178
- #: inc/class-job.php:1062
2179
  msgid "WARNING"
2180
  msgstr "警告"
2181
 
2182
  #: inc/class-job.php:1079
2183
- #: inc/class-job.php:1065
2184
  msgid "ERROR"
2185
  msgstr "错误"
2186
 
2187
  #: inc/class-job.php:1082
2188
- #: inc/class-job.php:1068
2189
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2190
  msgstr "[%3$s] BackWPup 日志 %1$s: %2$s"
2191
 
2192
  #: inc/class-job.php:1188
2193
- #: inc/class-job.php:1180
2194
  msgid "Restart after %1$d seconds."
2195
  msgstr "在%1$d秒后重启。"
2196
 
2197
  #: inc/class-job.php:1190
2198
- #: inc/class-job.php:1182
2199
  msgid "Restart after getting signal."
2200
  msgstr "重启后得到的信号。"
2201
 
2202
  #: inc/class-job.php:1363
2203
- #: inc/class-job.php:1357
2204
  msgid "Job restarts due to inactivity for more than 5 minutes."
2205
  msgstr "工作重新开始,因为活动时间超过5分钟。"
2206
 
2207
  #: inc/class-job.php:1461
2208
- #: inc/class-job.php:1455
2209
  msgid "Step aborted: too many attempts!"
2210
  msgstr "步骤中止:尝试次数过多!"
2211
 
2212
  #: inc/class-job.php:1532
2213
- #: inc/class-job.php:1528
2214
  msgid "%d. Trying to create backup archive &hellip;"
2215
  msgstr "%d. 正在尝试创建备份存档 …"
2216
 
2217
  #: inc/class-job.php:1540
2218
- #: inc/class-job.php:1536
2219
  msgctxt "Archive compression method"
2220
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2221
  msgstr "压缩文件%s。请耐心点,这可能需要一点时间。"
2222
 
2223
  #: inc/class-job.php:1547
2224
- #: inc/class-job.php:1544
2225
  msgid "Adding Extra files to Archive"
2226
  msgstr "向归档添加额外的文件"
2227
 
2228
  #: inc/class-job.php:1559
2229
  #: inc/class-job.php:1619
2230
- #: inc/class-job.php:1555
2231
- #: inc/class-job.php:1626
2232
  msgid "Cannot create backup archive correctly. Aborting creation."
2233
  msgstr "不能正确创建备份存档。流产的创造。"
2234
 
2235
  #: inc/class-job.php:1575
2236
- #: inc/class-job.php:1571
2237
  msgid "Archiving Folder: %s"
2238
  msgstr "归档文件夹:%s"
2239
 
2240
  #: inc/class-job.php:1629
2241
- #: inc/class-job.php:1636
2242
  msgid "Backup archive created."
2243
  msgstr "备份存档已创建"
2244
 
2245
  #: inc/class-job.php:1643
2246
- #: inc/class-job.php:1650
2247
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2248
  msgstr "使用这个PHP版本的备份存档文件将会太大。您可能希望考虑将备份作业拆分为多个作业,每个作业的文件较少。"
2249
 
2250
  #: inc/class-job.php:1646
2251
- #: inc/class-job.php:1653
2252
  msgid "Archive size is %s."
2253
  msgstr "存档大小为 %s"
2254
 
2255
  #: inc/class-job.php:1649
2256
- #: inc/class-job.php:1656
2257
  msgid "%1$d Files with %2$s in Archive."
2258
  msgstr "%1$d 文件和 %2$s 在存档中"
2259
 
2260
  #: inc/class-job.php:1698
2261
- #: inc/class-job.php:1831
2262
  msgctxt "Folder name"
2263
  msgid "Folder %s does not exist"
2264
  msgstr "文件夹%s不存在"
2265
 
2266
  #: inc/class-job.php:1703
2267
- #: inc/class-job.php:1837
2268
  msgctxt "Folder name"
2269
  msgid "Folder %s is not readable"
2270
  msgstr "文件夹 \"%s\" 不可读!"
2271
 
2272
  #: inc/class-job.php:1725
2273
- #: inc/class-job.php:1860
2274
  msgid "Link \"%s\" not following."
2275
  msgstr "链接不遵循“%s”。"
2276
 
2277
  #: inc/class-job.php:1727
2278
- #: inc/class-job.php:1862
2279
  msgid "File \"%s\" is not readable!"
2280
  msgstr "文件 \"%s\" 不可读"
2281
 
2282
  #: inc/class-job.php:1731
2283
- #: inc/class-job.php:1866
2284
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2285
  msgstr "无法检索“%s”的文件大小。文件可能太大,不能添加到队列中。"
2286
 
2287
  #: inc/class-job.php:1814
2288
- #: inc/class-job.php:1949
2289
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2290
  msgstr "%d。试图生成一个清单文件&#160;&hellip;"
2291
 
2292
  #: inc/class-job.php:1870
2293
- #: inc/class-job.php:2005
2294
  msgid "You may have noticed the manifest.json file in this archive."
2295
  msgstr "你可能已经注意到了这个清单。这个存档中的json文件。"
2296
 
2297
  #: inc/class-job.php:1871
2298
- #: inc/class-job.php:2006
2299
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2300
  msgstr "清单。稍后可能需要json来从这个存档中恢复备份。"
2301
 
2302
  #: inc/class-job.php:1872
2303
- #: inc/class-job.php:2007
2304
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2305
  msgstr "请把清单。json未受影响。否则,被忽视是安全的。"
2306
 
2307
  #: inc/class-job.php:1882
2308
- #: inc/class-job.php:2017
2309
  msgid "Added manifest.json file with %1$s to backup file list."
2310
  msgstr "添加清单。带有%1$s到备份文件列表的json文件。"
2311
 
2312
  #: inc/class-job.php:1921
2313
- #: inc/class-job.php:2056
2314
  msgid "Wrong BackWPup JobID"
2315
  msgstr "错误的 BackWPup 计划 ID"
2316
 
2317
  #: inc/class-job.php:1934
2318
- #: inc/class-job.php:2069
2319
  msgid "A BackWPup job is already running"
2320
  msgstr "一个 BackWPup 备份计划已在执行"
2321
 
2322
  #: inc/class-job.php:2302
2323
- #: inc/class-job.php:2482
2324
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2325
  msgid "Hangup detected on controlling terminal or death of controlling process"
2326
  msgstr "在控制终端或控制过程的死亡中被发现"
2327
 
2328
  #: inc/class-job.php:2306
2329
- #: inc/class-job.php:2486
2330
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2331
  msgid "Interrupt from keyboard"
2332
  msgstr "从键盘中断"
2333
 
2334
  #: inc/class-job.php:2310
2335
- #: inc/class-job.php:2490
2336
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2337
  msgid "Quit from keyboard"
2338
  msgstr "戒烟从键盘"
2339
 
2340
  #: inc/class-job.php:2314
2341
- #: inc/class-job.php:2494
2342
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2343
  msgid "Illegal Instruction"
2344
  msgstr "非法指令"
2345
 
2346
  #: inc/class-job.php:2318
2347
- #: inc/class-job.php:2498
2348
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2349
  msgid "Abort signal from abort(3)"
2350
  msgstr "中止信号从中止(3)"
2351
 
2352
  #: inc/class-job.php:2322
2353
- #: inc/class-job.php:2502
2354
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2355
  msgid "Bus error (bad memory access)"
2356
  msgstr "总线错误(错误的内存访问)"
2357
 
2358
  #: inc/class-job.php:2326
2359
- #: inc/class-job.php:2506
2360
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2361
  msgid "Floating point exception"
2362
  msgstr "浮点数异常错误"
2363
 
2364
  #: inc/class-job.php:2330
2365
- #: inc/class-job.php:2510
2366
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2367
  msgid "Invalid memory reference"
2368
  msgstr "无效的内存引用"
2369
 
2370
  #: inc/class-job.php:2334
2371
- #: inc/class-job.php:2514
2372
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2373
  msgid "Termination signal"
2374
  msgstr "终止信号"
2375
 
2376
  #: inc/class-job.php:2338
2377
- #: inc/class-job.php:2518
2378
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2379
  msgid "Stack fault on coprocessor"
2380
  msgstr "堆栈断层对协处理器"
2381
 
2382
  #: inc/class-job.php:2342
2383
- #: inc/class-job.php:2522
2384
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2385
  msgid "User-defined signal 1"
2386
  msgstr "用户定义的信号1"
2387
 
2388
  #: inc/class-job.php:2346
2389
- #: inc/class-job.php:2526
2390
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2391
  msgid "User-defined signal 2"
2392
  msgstr "用户定义的信号2"
2393
 
2394
  #: inc/class-job.php:2350
2395
- #: inc/class-job.php:2530
2396
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2397
  msgid "Urgent condition on socket"
2398
  msgstr "紧急条件套接字"
2399
 
2400
  #: inc/class-job.php:2354
2401
- #: inc/class-job.php:2534
2402
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2403
  msgid "CPU time limit exceeded"
2404
  msgstr "CPU时间限制超过"
2405
 
2406
  #: inc/class-job.php:2358
2407
- #: inc/class-job.php:2538
2408
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2409
  msgid "File size limit exceeded"
2410
  msgstr "文件大小超过限制"
2411
 
2412
  #: inc/class-job.php:2362
2413
- #: inc/class-job.php:2542
2414
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2415
  msgid "Power failure"
2416
  msgstr "电源故障"
2417
 
2418
  #: inc/class-job.php:2366
2419
- #: inc/class-job.php:2546
2420
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2421
  msgid "Bad argument to routine"
2422
  msgstr "坏参数常规"
2423
 
2424
  #: inc/class-job.php:2373
2425
- #: inc/class-job.php:2553
2426
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2427
  msgstr "信号\"%1$s\" (%2$s)被发送到脚本!"
2428
 
2429
  #: inc/class-job.php:2407
2430
  #: inc/class-job.php:2420
2431
- #: inc/class-job.php:2587
2432
- #: inc/class-job.php:2600
2433
  msgid "System: %s"
2434
  msgstr "系统:%s"
2435
 
2436
  #: inc/class-job.php:2435
2437
- #: inc/class-job.php:2615
2438
  msgid "Exception caught in %1$s: %2$s"
2439
  msgstr "异常发生于 %1$s: %2$s"
2440
 
@@ -2455,8 +2458,8 @@ msgstr "检查数据表"
2455
  #: inc/pro/class-wizard-job.php:19
2456
  #: inc/pro/class-wizard-jobimport.php:18
2457
  #: inc/pro/class-wizard-systemtest.php:18
2458
- #: inc/Pro/class-wizard-jobimport.php:18
2459
  #: inc/Pro/class-wizard-job.php:19
 
2460
  #: inc/Pro/class-wizard-systemtest.php:29
2461
  msgid "http://inpsyde.com"
2462
  msgstr ""
@@ -2738,7 +2741,7 @@ msgstr "XML 输出"
2738
 
2739
  #: inc/class-jobtype-wpexp.php:14
2740
  #: inc/class-page-about.php:472
2741
- #: inc/class-page-about.php:474
2742
  msgid "WordPress XML export"
2743
  msgstr "WordPress XML 输出"
2744
 
@@ -2971,280 +2974,273 @@ msgid "New Job"
2971
  msgstr "新计划"
2972
 
2973
  #: inc/class-page-about.php:369
2974
- #: inc/class-page-about.php:371
2975
  msgid "Welcome to BackWPup Pro"
2976
  msgstr "欢迎升级到 BackWPup 专业版"
2977
 
2978
  #: inc/class-page-about.php:370
2979
  #: inc/class-page-backwpup.php:75
2980
- #: inc/class-page-about.php:372
2981
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2982
  msgstr "BackWPup的工作向导制定计划并安排您的备份工作。"
2983
 
2984
- #: inc/class-page-about.php:371
2985
- #: inc/class-page-about.php:384
2986
- #: inc/class-page-about.php:373
2987
- #: inc/class-page-about.php:386
2988
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2989
- msgstr "使用备份存档保存整个WordPress的安装,包括<code>/wp-content/</code>。如果您不想在同一服务器上保存备份,则将它们推到外部存储服务。使用单个备份存档,您可以恢复安装。使用phpMyAdmin这样的工具来恢复数据库备份文件。"
2990
-
2991
  #: inc/class-page-about.php:372
2992
- #: inc/class-page-about.php:374
2993
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2994
  msgstr "准备好<a href =“%1$s”>设置备份作业</a> ?您可以<a href =“%2$s”>使用向导</a>或在专家模式下计划备份。"
2995
 
2996
  #: inc/class-page-about.php:382
2997
- #: inc/class-page-about.php:384
2998
  msgid "Welcome to BackWPup"
2999
  msgstr "欢迎使用 BackWPup"
3000
 
3001
  #: inc/class-page-about.php:385
3002
- #: inc/class-page-about.php:387
3003
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
3004
  msgstr "准备好设置备份作业了吗?使用一个向导来计划你想要保存的东西。"
3005
 
3006
  #: inc/class-page-about.php:398
3007
- #: inc/class-page-about.php:400
3008
  msgid "Save your database"
3009
  msgstr "保存你的数据库"
3010
 
3011
  #: inc/class-page-about.php:401
3012
- #: inc/class-page-about.php:403
3013
  msgid "Save your database regularly"
3014
  msgstr "定期保存数据库"
3015
 
3016
  #: inc/class-page-about.php:402
3017
- #: inc/class-page-about.php:404
3018
  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."
3019
  msgstr "通过 BackWPup,你可以定期自动备份数据库,还可以通过一个简单的备份文件来恢复数据库。你应该 <a href=\"%s\">添加一个备份计划</a>,这样你永远不会忘记它。当然,你还可以在每次备份数据库时修复和优化它。"
3020
 
3021
  #: inc/class-page-about.php:407
3022
  #: inc/class-page-about.php:411
3023
- #: inc/class-page-about.php:409
3024
- #: inc/class-page-about.php:413
3025
  msgid "WordPress XML Export"
3026
  msgstr "WordPress XML 输出"
3027
 
3028
  #: inc/class-page-about.php:408
3029
- #: inc/class-page-about.php:410
3030
  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."
3031
  msgstr "你可以选择内置的 WordPress 导出格式来保存数据。这样做的好处:你可以通过正规的 WordPress 导入接口将这些文件导入网站。 "
3032
 
3033
  #: inc/class-page-about.php:416
3034
- #: inc/class-page-about.php:418
3035
  msgid "Save all data from the webserver"
3036
  msgstr "从网络服务器中保存所有的数据"
3037
 
3038
  #: inc/class-page-about.php:419
3039
- #: inc/class-page-about.php:421
3040
  msgid "Save all files"
3041
  msgstr "保存所有文件"
3042
 
3043
  #: inc/class-page-about.php:420
3044
- #: inc/class-page-about.php:422
3045
  msgid "You can backup 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."
3046
  msgstr "您可以备份所有的附件,也可以在一个文件中备份所有的系统文件、插件和主题。您可以<a href =\" % s \" >创建一个job </a>,只在文件更改时才更新文件系统的备份副本。"
3047
 
3048
  #: inc/class-page-about.php:425
3049
  #: inc/class-page-about.php:429
3050
- #: inc/class-page-about.php:427
3051
- #: inc/class-page-about.php:431
3052
  msgid "Security!"
3053
  msgstr "安全!"
3054
 
3055
  #: inc/class-page-about.php:426
3056
- #: inc/class-page-about.php:428
3057
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3058
  msgstr "默认情况下,一切都是加密进行的:连接到外部服务,访问本地文件和目录。"
3059
 
3060
  #: inc/class-page-about.php:434
3061
  #: inc/class-page-about.php:437
3062
- #: inc/class-page-about.php:436
3063
- #: inc/class-page-about.php:439
3064
  msgid "Cloud Support"
3065
  msgstr "云支持"
3066
 
3067
  #: inc/class-page-about.php:438
3068
- #: inc/class-page-about.php:440
3069
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3070
  msgstr "BackWPup 支持多个云服务并行。这可确保备份是多余的。"
3071
 
3072
  #: inc/class-page-about.php:444
3073
- #: inc/class-page-about.php:446
3074
  msgid "Features / differences between Free and Pro"
3075
  msgstr "免费版和专业版的差异"
3076
 
3077
  #: inc/class-page-about.php:447
3078
- #: inc/class-page-about.php:449
3079
  msgid "Features"
3080
  msgstr "特点"
3081
 
3082
  #: inc/class-page-about.php:448
3083
- #: inc/class-page-about.php:450
3084
  msgid "FREE"
3085
  msgstr "免费版"
3086
 
3087
  #: inc/class-page-about.php:449
3088
- #: inc/class-page-about.php:451
3089
  msgid "PRO"
3090
  msgstr "专业版"
3091
 
3092
  #: inc/class-page-about.php:452
3093
- #: inc/class-page-about.php:454
3094
  msgid "Complete database backup"
3095
  msgstr "数据库备份"
3096
 
3097
  #: inc/class-page-about.php:457
3098
- #: inc/class-page-about.php:459
3099
  msgid "Complete file backup"
3100
  msgstr "文件备份"
3101
 
3102
  #: inc/class-page-about.php:462
3103
- #: inc/class-page-about.php:464
3104
  msgid "Database check"
3105
  msgstr "数据库检查"
3106
 
3107
  #: inc/class-page-about.php:467
3108
- #: inc/class-page-about.php:469
3109
  msgid "Data compression"
3110
  msgstr "数据压缩"
3111
 
3112
  #: inc/class-page-about.php:477
3113
- #: inc/class-page-about.php:479
3114
  msgid "List of installed plugins"
3115
  msgstr "已安装的插件列表"
3116
 
3117
  #: inc/class-page-about.php:482
3118
- #: inc/class-page-about.php:484
3119
  msgid "Backup archives management"
3120
  msgstr "备份存档管理"
3121
 
3122
  #: inc/class-page-about.php:487
3123
- #: inc/class-page-about.php:489
3124
  msgid "Log file management"
3125
  msgstr "日志文件管理"
3126
 
3127
  #: inc/class-page-about.php:492
3128
- #: inc/class-page-about.php:494
3129
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3130
  msgstr "根据 WP-Cron, URL, 系统, 后端 或 WP-CLI 启动计划"
3131
 
3132
  #: inc/class-page-about.php:497
3133
- #: inc/class-page-about.php:499
3134
  msgid "Log report via email"
3135
  msgstr "通过邮件发送日志通告"
3136
 
3137
  #: inc/class-page-about.php:502
3138
- #: inc/class-page-about.php:504
3139
  msgid "Backup to Microsoft Azure"
3140
  msgstr "备份到 Microsoft Azure"
3141
 
3142
  #: inc/class-page-about.php:507
3143
- #: inc/class-page-about.php:509
3144
  msgid "Backup as email"
3145
  msgstr "备份到 电子邮件"
3146
 
3147
  #: inc/class-page-about.php:512
3148
- #: inc/class-page-about.php:514
3149
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3150
  msgstr "备份到S3服务(Amazon、谷歌存储、Hosteurope等)"
3151
 
3152
  #: inc/class-page-about.php:527
3153
- #: inc/class-page-about.php:529
3154
  msgid "Backup to FTP server"
3155
  msgstr "备份到 FTP 服务器"
3156
 
3157
  #: inc/class-page-about.php:532
3158
- #: inc/class-page-about.php:534
3159
  msgid "Backup to your web space"
3160
  msgstr "备份到你的网站空间"
3161
 
3162
  #: inc/class-page-about.php:542
3163
  #: inc/pro/class-pro.php:115
 
3164
  #: inc/Pro/class-pro.php:152
3165
- #: inc/class-page-about.php:544
3166
  msgid "Backup to Google Drive"
3167
  msgstr "备份到Google Drive"
3168
 
3169
  #: inc/class-page-about.php:547
3170
  #: inc/pro/class-pro.php:96
 
3171
  #: inc/Pro/class-pro.php:131
3172
- #: inc/class-page-about.php:549
3173
  msgid "Backup to Amazon Glacier"
3174
  msgstr "备份到Amazon Glacier"
3175
 
3176
  #: inc/class-page-about.php:552
3177
- #: inc/class-page-about.php:554
3178
  msgid "Custom API keys for DropBox and SugarSync"
3179
  msgstr "自定义 DropBox 和 SugarSync 的 API keys"
3180
 
3181
  #: inc/class-page-about.php:557
3182
- #: inc/class-page-about.php:559
3183
  msgid "XML database backup as PHPMyAdmin schema"
3184
  msgstr "XML 数据库备份为 PHPMyAdmin 架构"
3185
 
3186
  #: inc/class-page-about.php:562
3187
- #: inc/class-page-about.php:564
3188
  msgid "Database backup as mysqldump per command line"
3189
  msgstr "使用命令行进行 MySQL 数据库转储备份"
3190
 
3191
  #: inc/class-page-about.php:567
3192
- #: inc/class-page-about.php:569
3193
  msgid "Database backup for additional MySQL databases"
3194
  msgstr "备份其他 MySQL 数据库"
3195
 
3196
  #: inc/class-page-about.php:572
3197
- #: inc/class-page-about.php:574
3198
  msgid "Import and export job settings as XML"
3199
  msgstr "导入和导出计划设置为 XML 文件"
3200
 
3201
  #: inc/class-page-about.php:577
3202
- #: inc/class-page-about.php:579
3203
  msgid "Wizard for system tests"
3204
  msgstr "系统测试向导"
3205
 
3206
  #: inc/class-page-about.php:582
3207
- #: inc/class-page-about.php:584
3208
  msgid "Wizard for scheduled backup jobs"
3209
  msgstr "定时备份计划向导"
3210
 
3211
  #: inc/class-page-about.php:587
3212
- #: inc/class-page-about.php:589
3213
  msgid "Wizard to import settings and backup jobs"
3214
  msgstr "导入设置和备份计划向导"
3215
 
3216
  #: inc/class-page-about.php:592
3217
- #: inc/class-page-about.php:594
3218
  msgid "Differential backup of changed directories to Dropbox"
3219
  msgstr "差异备份更改目录到 Dropbox"
3220
 
3221
  #: inc/class-page-about.php:597
3222
- #: inc/class-page-about.php:599
3223
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3224
  msgstr "差异备份更改目录到 Rackspace Cloud Files"
3225
 
3226
  #: inc/class-page-about.php:602
3227
- #: inc/class-page-about.php:604
3228
  msgid "Differential backup of changed directories to S3"
3229
  msgstr "差异备份更改目录到 S3"
3230
 
3231
  #: inc/class-page-about.php:607
3232
- #: inc/class-page-about.php:609
3233
  msgid "Differential backup of changed directories to MS Azure"
3234
  msgstr "差异备份更改目录到 MS Azure"
3235
 
3236
  #: inc/class-page-about.php:612
3237
- #: inc/class-page-about.php:639
3238
  msgid "<strong>Premium support</strong>"
3239
  msgstr "<strong>付费支持</strong>"
3240
 
3241
  #: inc/class-page-about.php:617
3242
- #: inc/class-page-about.php:644
3243
  msgid "<strong>Automatic updates</strong>"
3244
  msgstr "<strong>自动更新</strong>"
3245
 
3246
  #: inc/class-page-about.php:624
3247
- #: inc/class-page-about.php:651
3248
  msgid "GET PRO"
3249
  msgstr "获取专业版"
3250
 
@@ -3306,9 +3302,9 @@ msgstr ""
3306
  #: inc/class-page-logs.php:206
3307
  #: inc/class-page-backups.php:281
3308
  #: inc/class-page-backups.php:285
 
3309
  #: inc/class-page-settings.php:768
3310
  #: inc/class-page-settings.php:779
3311
- #: inc/class-page-logs.php:234
3312
  msgid "Download"
3313
  msgstr "下载"
3314
 
@@ -3367,11 +3363,6 @@ msgctxt "Dashboard heading"
3367
  msgid "Restoring backups"
3368
  msgstr "恢复备份"
3369
 
3370
- #: inc/class-page-backwpup.php:77
3371
- #: inc/class-page-backwpup.php:86
3372
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
3373
- msgstr ""
3374
-
3375
  #: inc/class-page-backwpup.php:78
3376
  #: inc/class-page-backwpup.php:87
3377
  msgctxt "Dashboard heading"
@@ -3596,8 +3587,8 @@ msgstr "%1$s &rsaquo;作业: %2$s"
3596
 
3597
  #: inc/class-page-editjob.php:328
3598
  #: inc/class-page-settings.php:119
3599
- #: inc/class-page-settings.php:214
3600
  #: inc/class-page-editjob.php:337
 
3601
  msgid "General"
3602
  msgstr "一般"
3603
 
@@ -3631,15 +3622,15 @@ msgstr "计划任务"
3631
 
3632
  #: inc/class-page-editjob.php:391
3633
  #: inc/pro/class-wizard-job.php:254
3634
- #: inc/Pro/class-wizard-job.php:254
3635
  #: inc/class-page-editjob.php:400
 
3636
  msgid "This job is a&#160;&hellip;"
3637
  msgstr "计划任务是"
3638
 
3639
  #: inc/class-page-editjob.php:394
3640
  #: inc/pro/class-wizard-job.php:257
3641
- #: inc/Pro/class-wizard-job.php:257
3642
  #: inc/class-page-editjob.php:403
 
3643
  msgid "Job tasks"
3644
  msgstr "计划任务"
3645
 
@@ -3652,10 +3643,10 @@ msgstr "创建备份文件"
3652
  #: inc/class-page-editjob.php:420
3653
  #: inc/pro/class-wizard-job.php:402
3654
  #: inc/pro/class-wizard-job.php:405
3655
- #: inc/Pro/class-wizard-job.php:402
3656
- #: inc/Pro/class-wizard-job.php:405
3657
  #: inc/class-page-editjob.php:426
3658
  #: inc/class-page-editjob.php:429
 
 
3659
  msgid "Backup type"
3660
  msgstr "备份类型"
3661
 
@@ -3666,8 +3657,8 @@ msgstr "同步文件到目的地"
3666
 
3667
  #: inc/class-page-editjob.php:428
3668
  #: inc/pro/class-wizard-job.php:413
3669
- #: inc/Pro/class-wizard-job.php:413
3670
  #: inc/class-page-editjob.php:437
 
3671
  msgid "Create a backup archive"
3672
  msgstr "创建备份存档"
3673
 
@@ -3767,17 +3758,17 @@ msgstr "存档格式"
3767
  #: inc/class-page-editjob.php:476
3768
  #: inc/pro/class-wizard-job.php:426
3769
  #: inc/pro/class-wizard-job.php:429
3770
- #: inc/Pro/class-wizard-job.php:426
3771
- #: inc/Pro/class-wizard-job.php:429
3772
  #: inc/class-page-editjob.php:481
3773
  #: inc/class-page-editjob.php:483
 
 
3774
  msgid "Zip"
3775
  msgstr "Zip"
3776
 
3777
  #: inc/class-page-editjob.php:479
3778
  #: inc/pro/class-wizard-job.php:433
3779
- #: inc/Pro/class-wizard-job.php:433
3780
  #: inc/class-page-editjob.php:486
 
3781
  msgid "Tar"
3782
  msgstr "Tar"
3783
 
@@ -3785,10 +3776,10 @@ msgstr "Tar"
3785
  #: inc/class-page-editjob.php:483
3786
  #: inc/pro/class-wizard-job.php:437
3787
  #: inc/pro/class-wizard-job.php:440
3788
- #: inc/Pro/class-wizard-job.php:437
3789
- #: inc/Pro/class-wizard-job.php:440
3790
  #: inc/class-page-editjob.php:488
3791
  #: inc/class-page-editjob.php:490
 
 
3792
  msgid "Tar GZip"
3793
  msgstr "Tar GZip"
3794
 
@@ -3803,10 +3794,10 @@ msgstr "由于缺少了%s PHP函数而禁用。"
3803
  #: inc/class-page-editjob.php:489
3804
  #: inc/pro/class-wizard-job.php:444
3805
  #: inc/pro/class-wizard-job.php:447
3806
- #: inc/Pro/class-wizard-job.php:444
3807
- #: inc/Pro/class-wizard-job.php:447
3808
  #: inc/class-page-editjob.php:494
3809
  #: inc/class-page-editjob.php:497
 
 
3810
  msgid "Tar BZip2"
3811
  msgstr "Tar BZip2"
3812
 
@@ -3934,9 +3925,9 @@ msgstr "高级"
3934
  #: inc/class-page-editjob.php:650
3935
  #: inc/class-page-editjob.php:718
3936
  #: inc/pro/class-wizard-job.php:320
3937
- #: inc/Pro/class-wizard-job.php:320
3938
  #: inc/class-page-editjob.php:686
3939
  #: inc/class-page-editjob.php:754
 
3940
  msgid "Scheduler"
3941
  msgstr "设定时间"
3942
 
@@ -3944,121 +3935,121 @@ msgstr "设定时间"
3944
  #: inc/class-page-jobs.php:126
3945
  #: inc/class-page-logs.php:139
3946
  #: inc/pro/class-wizard-job.php:324
3947
- #: inc/Pro/class-wizard-job.php:324
3948
- #: inc/class-page-logs.php:166
3949
  #: inc/class-page-editjob.php:691
 
 
3950
  msgid "Type"
3951
  msgstr "类型"
3952
 
3953
  #: inc/class-page-editjob.php:660
3954
  #: inc/pro/class-wizard-job.php:330
3955
- #: inc/Pro/class-wizard-job.php:330
3956
  #: inc/class-page-editjob.php:696
 
3957
  msgid "Hour"
3958
  msgstr "小时"
3959
 
3960
  #: inc/class-page-editjob.php:663
3961
  #: inc/pro/class-wizard-job.php:333
3962
- #: inc/Pro/class-wizard-job.php:333
3963
  #: inc/class-page-editjob.php:699
 
3964
  msgid "Minute"
3965
  msgstr "分钟"
3966
 
3967
  #: inc/class-page-editjob.php:667
3968
  #: inc/pro/class-wizard-job.php:337
3969
- #: inc/Pro/class-wizard-job.php:337
3970
  #: inc/class-page-editjob.php:703
 
3971
  msgid "monthly"
3972
  msgstr "每个月一次"
3973
 
3974
  #: inc/class-page-editjob.php:669
3975
  #: inc/pro/class-wizard-job.php:339
3976
- #: inc/Pro/class-wizard-job.php:339
3977
  #: inc/class-page-editjob.php:705
 
3978
  msgid "on"
3979
  msgstr "在"
3980
 
3981
  #: inc/class-page-editjob.php:679
3982
  #: inc/pro/class-wizard-job.php:349
3983
- #: inc/Pro/class-wizard-job.php:349
3984
  #: inc/class-page-editjob.php:715
 
3985
  msgid "weekly"
3986
  msgstr "每周一次"
3987
 
3988
  #: inc/class-page-editjob.php:681
3989
  #: inc/class-page-editjob.php:788
3990
  #: inc/pro/class-wizard-job.php:351
3991
- #: inc/Pro/class-wizard-job.php:351
3992
  #: inc/class-page-editjob.php:717
3993
  #: inc/class-page-editjob.php:824
 
3994
  msgid "Sunday"
3995
  msgstr "星期天"
3996
 
3997
  #: inc/class-page-editjob.php:682
3998
  #: inc/class-page-editjob.php:789
3999
  #: inc/pro/class-wizard-job.php:352
4000
- #: inc/Pro/class-wizard-job.php:352
4001
  #: inc/class-page-editjob.php:718
4002
  #: inc/class-page-editjob.php:825
 
4003
  msgid "Monday"
4004
  msgstr "星期一"
4005
 
4006
  #: inc/class-page-editjob.php:683
4007
  #: inc/class-page-editjob.php:790
4008
  #: inc/pro/class-wizard-job.php:353
4009
- #: inc/Pro/class-wizard-job.php:353
4010
  #: inc/class-page-editjob.php:719
4011
  #: inc/class-page-editjob.php:826
 
4012
  msgid "Tuesday"
4013
  msgstr "星期二"
4014
 
4015
  #: inc/class-page-editjob.php:684
4016
  #: inc/class-page-editjob.php:791
4017
  #: inc/pro/class-wizard-job.php:354
4018
- #: inc/Pro/class-wizard-job.php:354
4019
  #: inc/class-page-editjob.php:720
4020
  #: inc/class-page-editjob.php:827
 
4021
  msgid "Wednesday"
4022
  msgstr "星期三"
4023
 
4024
  #: inc/class-page-editjob.php:685
4025
  #: inc/class-page-editjob.php:792
4026
  #: inc/pro/class-wizard-job.php:355
4027
- #: inc/Pro/class-wizard-job.php:355
4028
  #: inc/class-page-editjob.php:721
4029
  #: inc/class-page-editjob.php:828
 
4030
  msgid "Thursday"
4031
  msgstr "星期四"
4032
 
4033
  #: inc/class-page-editjob.php:686
4034
  #: inc/class-page-editjob.php:793
4035
  #: inc/pro/class-wizard-job.php:356
4036
- #: inc/Pro/class-wizard-job.php:356
4037
  #: inc/class-page-editjob.php:722
4038
  #: inc/class-page-editjob.php:829
 
4039
  msgid "Friday"
4040
  msgstr "星期五"
4041
 
4042
  #: inc/class-page-editjob.php:687
4043
  #: inc/class-page-editjob.php:794
4044
  #: inc/pro/class-wizard-job.php:357
4045
- #: inc/Pro/class-wizard-job.php:357
4046
  #: inc/class-page-editjob.php:723
4047
  #: inc/class-page-editjob.php:830
 
4048
  msgid "Saturday"
4049
  msgstr "星期六"
4050
 
4051
  #: inc/class-page-editjob.php:697
4052
  #: inc/pro/class-wizard-job.php:367
4053
- #: inc/Pro/class-wizard-job.php:367
4054
  #: inc/class-page-editjob.php:733
 
4055
  msgid "daily"
4056
  msgstr "每天一次"
4057
 
4058
  #: inc/class-page-editjob.php:707
4059
  #: inc/pro/class-wizard-job.php:377
4060
- #: inc/Pro/class-wizard-job.php:377
4061
  #: inc/class-page-editjob.php:743
 
4062
  msgid "hourly"
4063
  msgstr "每小时一次"
4064
 
@@ -4207,8 +4198,8 @@ msgstr "最近执行"
4207
  #: inc/class-page-jobs.php:172
4208
  #: inc/class-page-logs.php:200
4209
  #: inc/pro/class-page-support.php:221
4210
- #: inc/Pro/class-page-support.php:221
4211
  #: inc/class-page-logs.php:228
 
4212
  msgid "Job ID: %d"
4213
  msgstr "作业ID:%d"
4214
 
@@ -5102,55 +5093,53 @@ msgstr ""
5102
  msgid "There are errors. Please correct them, or BackWPup cannot work."
5103
  msgstr ""
5104
 
5105
- #: inc/Pro/class-destination-gdrive-downloader.php:74
5106
- #: inc/class-destination-ftp-downloader.php:72
5107
- #: inc/class-destination-dropbox-downloader.php:72
5108
- #: inc/class-destination-s3-downloader.php:83
5109
- msgid "Could not write data to file."
5110
  msgstr ""
5111
 
5112
- #: inc/Pro/class-destination-gdrive-downloader.php:102
5113
- #: inc/class-destination-ftp-downloader.php:126
5114
- #: inc/class-destination-folder-downloader.php:137
5115
- #: inc/class-destination-dropbox-downloader.php:104
5116
- #: inc/class-destination-s3-downloader.php:112
5117
- msgid "File could not be opened for writing."
5118
  msgstr ""
5119
 
5120
- #: inc/Pro/class-destination-s3.php:63
5121
- #: inc/class-destination-s3.php:1134
5122
- msgid "Amazon S3: EU (London)"
5123
  msgstr ""
5124
 
5125
- #: inc/Pro/class-pro.php:285
5126
- #: inc/Pro/class-pro.php:286
5127
- #: inc/class-page-backups.php:293
5128
- #: views/pro/restore/steps/step4_top.php:2
5129
- msgid "Restore"
5130
  msgstr ""
5131
 
5132
- #: inc/class-system-tests-runner.php:77
5133
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
5134
  msgstr ""
5135
 
5136
- #: inc/class-system-tests-runner.php:88
5137
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5138
  msgstr ""
5139
 
5140
- #: inc/class-system-tests-runner.php:100
5141
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5142
  msgstr ""
5143
 
5144
- #: inc/class-system-tests-runner.php:193
5145
- msgid "Yeah!"
5146
  msgstr ""
5147
 
5148
- #: inc/class-system-tests-runner.php:261
5149
- msgid "There are some warnings. BackWPup will work, but with limitations."
 
 
 
5150
  msgstr ""
5151
 
5152
- #: inc/class-destination-ftp-downloader.php:108
5153
- msgid "Cannot open FTP file for download."
 
 
 
 
5154
  msgstr ""
5155
 
5156
  #: inc/class-destination-folder-downloader.php:64
@@ -5170,10 +5159,133 @@ msgstr ""
5170
  msgid "%s is a directory not a file."
5171
  msgstr ""
5172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5173
  #: inc/class-destination-s3.php:102
5174
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5175
  msgstr ""
5176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5177
  #: inc/class-page-backups.php:408
5178
  msgid "&laquo; Go back"
5179
  msgstr ""
@@ -5216,21 +5328,35 @@ msgstr ""
5216
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5217
  msgstr ""
5218
 
5219
- #: inc/class-create-archive.php:114
5220
- msgid "Functions for bz2 compression not available."
 
5221
  msgstr ""
5222
 
5223
- #: inc/class-create-archive.php:311
5224
- msgid "File name cannot be empty."
5225
  msgstr ""
5226
 
5227
- #: inc/class-create-archive.php:741
5228
- msgid "Cannot open source file %s for archiving. Writing an empty file."
5229
  msgstr ""
5230
 
5231
- #. translators: $1 is the filename to add into the archive.
5232
- #: inc/class-create-archive.php:996
5233
- msgid "Cannot open source file %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
5234
  msgstr ""
5235
 
5236
  #: inc/class-page-settings.php:39
@@ -5366,127 +5492,24 @@ msgstr ""
5366
  msgid "BackWPup maximum script execution time"
5367
  msgstr ""
5368
 
5369
- #: inc/class-download-file.php:135
5370
- msgid "Invalid file name, seems file include invalid characters."
5371
- msgstr ""
5372
-
5373
- #: inc/class-page-about.php:614
5374
- msgid "Restore from Folder"
5375
- msgstr ""
5376
-
5377
- #: inc/class-page-about.php:619
5378
- msgid "Restore from Google Drive"
5379
- msgstr ""
5380
-
5381
- #: inc/class-page-about.php:624
5382
- msgid "Restore from Amazon S3"
5383
- msgstr ""
5384
-
5385
- #: inc/class-page-about.php:629
5386
- msgid "Restore from Dropbox"
5387
- msgstr ""
5388
-
5389
- #: inc/class-page-about.php:634
5390
- msgid "Restore from FTP"
5391
- msgstr ""
5392
-
5393
- #: inc/class-destination-s3-downloader.php:76
5394
- msgid "Could not write data to file. Empty source file."
5395
- msgstr ""
5396
-
5397
- #: inc/class-job.php:332
5398
- msgid "Encrypts the archive"
5399
- msgstr ""
5400
-
5401
- #: inc/class-job.php:1689
5402
- msgid "No encryption key was provided. Aborting encryption."
5403
- msgstr ""
5404
-
5405
- #: inc/class-job.php:1696
5406
- msgid "%d. Trying to encrypt archive &hellip;"
5407
- msgstr ""
5408
-
5409
- #: inc/class-job.php:1706
5410
- msgid "Cannot open the archive for reading. Aborting encryption."
5411
- msgstr ""
5412
-
5413
- #: inc/class-job.php:1712
5414
- msgid "Cannot write the encrypted archive. Aborting encryption."
5415
- msgstr ""
5416
-
5417
- #: inc/class-job.php:1769
5418
- msgid "Encrypted %s of data."
5419
- msgstr ""
5420
-
5421
- #: inc/class-job.php:1773
5422
- msgid "Unable to delete unencrypted archive."
5423
- msgstr ""
5424
-
5425
- #: inc/class-job.php:1777
5426
- msgid "Unable to rename encrypted archive."
5427
- msgstr ""
5428
-
5429
- #: inc/class-job.php:1782
5430
- msgid "Archive has been successfully encrypted."
5431
- msgstr ""
5432
-
5433
- #: inc/class-job.php:2451
5434
- msgid "exec command is not active."
5435
- msgstr ""
5436
-
5437
- #: inc/class-job.php:2456
5438
- msgid "mysqldump binary not found."
5439
- msgstr ""
5440
-
5441
- #: inc/class-page-editjob.php:448
5442
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5443
- msgstr ""
5444
-
5445
- #: inc/class-page-editjob.php:452
5446
- msgid "Preview: "
5447
- msgstr ""
5448
-
5449
- #: inc/class-page-editjob.php:484
5450
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5451
- msgstr ""
5452
-
5453
- #: inc/class-page-editjob.php:495
5454
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5455
- msgstr ""
5456
-
5457
- #: inc/class-page-editjob.php:506
5458
- #: inc/class-page-editjob.php:511
5459
- #: inc/class-page-editjob.php:520
5460
- msgid "Encrypt Archive"
5461
- msgstr ""
5462
-
5463
- #: inc/class-page-editjob.php:524
5464
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5465
- msgstr ""
5466
-
5467
- #: inc/class-decrypter.php:56
5468
- msgid "Cannot open the archive for reading."
5469
- msgstr ""
5470
-
5471
- #: inc/class-decrypter.php:82
5472
- msgid "Cannot write the encrypted archive."
5473
  msgstr ""
5474
 
5475
- #: inc/class-decrypter.php:162
5476
- msgid "Private key invalid."
5477
  msgstr ""
5478
 
5479
- #: inc/class-destination-ftp.php:321
5480
- msgid "Could not log in to FTP server."
5481
  msgstr ""
5482
 
5483
- #: inc/class-destination-ftp.php:735
5484
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5485
  msgstr ""
5486
 
5487
- #: backwpup.php:573
5488
- #: vendor_dist/backwpup.php:573
5489
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
5490
  msgstr ""
5491
 
5492
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
22
 
23
  #: backwpup.php:339
24
  #: inc/class-page-backups.php:271
 
25
  #: backwpup.php:286
26
+ #: inc/class-page-backups.php:243
27
  #: vendor_dist/backwpup.php:286
28
  msgid "Folder"
29
  msgstr "文件夹"
60
 
61
  #: backwpup.php:387
62
  #: inc/class-destination-dropbox.php:286
 
63
  #: backwpup.php:334
64
+ #: inc/class-destination-dropbox.php:445
65
  #: vendor_dist/backwpup.php:334
66
  msgid "Dropbox"
67
  msgstr "Dropbox"
68
 
69
  #: backwpup.php:388
70
  #: inc/class-page-about.php:517
 
71
  #: backwpup.php:335
72
+ #: inc/class-page-about.php:508
73
  #: vendor_dist/backwpup.php:335
74
  msgid "Backup to Dropbox"
75
  msgstr "备份到 Dropbox"
76
 
77
  #: backwpup.php:403
78
  #: inc/class-destination-s3.php:27
 
79
  #: backwpup.php:350
80
+ #: inc/class-destination-s3.php:42
81
  #: vendor_dist/backwpup.php:350
82
  msgid "S3 Service"
83
  msgstr "S3 服务"
108
 
109
  #: backwpup.php:439
110
  #: inc/class-page-about.php:522
 
111
  #: backwpup.php:388
112
+ #: inc/class-page-about.php:513
113
  #: vendor_dist/backwpup.php:388
114
  msgid "Backup to Rackspace Cloud Files"
115
  msgstr "备份到Rackspace云文件"
122
 
123
  #: backwpup.php:457
124
  #: inc/class-page-about.php:537
 
125
  #: backwpup.php:408
126
+ #: inc/class-page-about.php:528
127
  #: vendor_dist/backwpup.php:408
128
  msgid "Backup to SugarSync"
129
  msgstr "备份到 SugarSync"
191
  #: inc/class-page-logs.php:328
192
  #: inc/class-page-settings.php:119
193
  #: inc/class-admin.php:355
 
194
  #: inc/class-page-logs.php:377
195
+ #: inc/class-page-settings.php:219
196
  msgid "Logs"
197
  msgstr "日志"
198
 
242
  #: inc/pro/class-wizard-job.php:17
243
  #: inc/pro/class-wizard-jobimport.php:16
244
  #: inc/pro/class-wizard-systemtest.php:16
 
 
 
245
  #: inc/class-admin.php:510
246
  #: inc/class-admin.php:531
247
+ #: inc/class-job.php:459
248
+ #: inc/class-page-about.php:365
249
+ #: inc/class-page-about.php:375
250
+ #: inc/class-page-about.php:660
251
+ #: inc/class-page-backwpup.php:254
252
  #: inc/class-page-settings.php:1123
253
+ #: inc/Pro/class-wizard-job.php:17
254
+ #: inc/Pro/class-wizard-jobimport.php:16
255
+ #: inc/Pro/class-wizard-systemtest.php:27
256
  msgid "http://backwpup.com"
257
  msgstr ""
258
 
487
  #: inc/class-destination-dropbox.php:36
488
  #: inc/class-destination-dropbox.php:337
489
  #: inc/pro/class-destination-dropbox.php:252
 
490
  #: inc/class-destination-dropbox.php:55
491
  #: inc/class-destination-dropbox.php:458
492
+ #: inc/Pro/class-destination-dropbox.php:405
493
  msgid "Dropbox API: %s"
494
  msgstr "Dropbox-API: %s"
495
 
496
  #: inc/class-destination-dropbox.php:50
497
  #: inc/pro/class-destination-gdrive.php:51
 
498
  #: inc/class-destination-dropbox.php:72
499
+ #: inc/Pro/class-destination-gdrive.php:93
500
  msgid "Login"
501
  msgstr "登录"
502
 
510
  #: inc/class-destination-dropbox.php:56
511
  #: inc/pro/class-destination-gdrive.php:57
512
  #: inc/pro/class-destination-gdrive.php:295
513
+ #: inc/class-destination-dropbox.php:78
514
  #: inc/Pro/class-destination-gdrive.php:99
515
  #: inc/Pro/class-destination-gdrive.php:415
 
516
  msgid "Not authenticated!"
517
  msgstr "未通过身份验证"
518
 
519
  #: inc/class-destination-dropbox.php:58
520
  #: inc/pro/class-destination-dropbox.php:28
 
521
  #: inc/class-destination-dropbox.php:81
522
+ #: inc/Pro/class-destination-dropbox.php:51
523
  msgid "Create Account"
524
  msgstr "创建账户"
525
 
529
  #: inc/pro/class-destination-gdrive.php:59
530
  #: inc/pro/class-destination-gdrive.php:300
531
  #: inc/pro/class-destination-sugarsync.php:31
532
+ #: inc/class-destination-dropbox.php:83
533
+ #: inc/Pro/class-destination-dropbox.php:57
534
  #: inc/Pro/class-destination-gdrive.php:101
535
  #: inc/Pro/class-destination-gdrive.php:425
 
536
  #: inc/Pro/class-destination-sugarsync.php:31
 
537
  msgid "Authenticated!"
538
  msgstr "已认证"
539
 
585
  #: inc/class-destination-rsc.php:95
586
  #: inc/class-destination-sugarsync.php:81
587
  #: inc/pro/class-destination-gdrive.php:68
 
588
  #: inc/class-destination-dropbox.php:141
589
  #: inc/class-destination-folder.php:27
590
  #: inc/class-destination-ftp.php:82
591
+ #: inc/Pro/class-destination-gdrive.php:112
592
  msgid "Backup settings"
593
  msgstr "Backup 设置"
594
 
607
  #: inc/class-destination-ftp.php:59
608
  #: inc/class-destination-sugarsync.php:91
609
  #: inc/pro/class-destination-gdrive.php:81
 
610
  #: inc/class-destination-dropbox.php:162
611
  #: inc/class-destination-folder.php:40
612
  #: inc/class-destination-ftp.php:95
613
+ #: inc/Pro/class-destination-gdrive.php:125
614
  msgid "File Deletion"
615
  msgstr "文件删除"
616
 
628
  #: inc/pro/class-destination-msazure.php:45
629
  #: inc/pro/class-destination-rsc.php:65
630
  #: inc/pro/class-destination-s3.php:73
631
+ #: inc/class-destination-dropbox.php:171
632
+ #: inc/class-destination-folder.php:49
633
+ #: inc/class-destination-ftp.php:104
634
+ #: inc/class-destination-s3.php:229
635
+ #: inc/Pro/class-destination-dropbox.php:76
636
+ #: inc/Pro/class-destination-folder.php:45
637
  #: inc/Pro/class-destination-gdrive.php:134
638
  #: inc/Pro/class-destination-gdrive.php:456
 
639
  #: inc/Pro/class-destination-msazure.php:45
640
+ #: inc/Pro/class-destination-rsc.php:65
641
  #: inc/Pro/class-destination-s3.php:182
 
 
 
 
 
 
642
  msgid "Number of files to keep in folder."
643
  msgstr "存储到文件夹中的文件数"
644
 
651
  #: inc/class-destination-sugarsync.php:100
652
  #: inc/pro/class-destination-gdrive.php:92
653
  #: inc/pro/class-destination-glacier.php:109
 
 
 
654
  #: inc/class-destination-dropbox.php:173
655
  #: inc/class-destination-folder.php:51
656
  #: inc/class-destination-ftp.php:106
657
+ #: inc/class-destination-s3.php:232
658
+ #: inc/Pro/class-destination-gdrive.php:136
659
+ #: inc/Pro/class-destination-glacier.php:109
660
  msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
661
  msgstr "<strong>警告</strong>:该作业的文件现在被跟踪。未跟踪的旧备份档案不会自动删除."
662
 
676
  #: inc/pro/class-destination-rsc.php:70
677
  #: inc/pro/class-destination-s3.php:78
678
  #: inc/pro/class-destination-sugarsync.php:65
679
+ #: inc/class-destination-dropbox.php:183
680
+ #: inc/class-destination-folder.php:57
681
+ #: inc/class-destination-ftp.php:118
682
+ #: inc/class-destination-s3.php:245
683
+ #: inc/Pro/class-destination-dropbox.php:82
684
+ #: inc/Pro/class-destination-folder.php:51
685
+ #: inc/Pro/class-destination-ftp.php:75
686
  #: inc/Pro/class-destination-gdrive.php:148
687
  #: inc/Pro/class-destination-gdrive.php:462
 
688
  #: inc/Pro/class-destination-msazure.php:56
689
+ #: inc/Pro/class-destination-rsc.php:70
690
  #: inc/Pro/class-destination-s3.php:187
 
 
 
691
  #: inc/Pro/class-destination-sugarsync.php:65
 
 
 
 
692
  msgid "Do not delete files while syncing to destination!"
693
  msgstr "在同步到目的地时,不要删除文件!"
694
 
699
 
700
  #: inc/class-destination-dropbox.php:251
701
  #: inc/pro/class-destination-dropbox.php:125
 
702
  #: inc/class-destination-dropbox.php:390
703
+ #: inc/Pro/class-destination-dropbox.php:209
704
  msgid "Authenticated with Dropbox of user: %s"
705
  msgstr "认证的用户: %s"
706
 
707
  #: inc/class-destination-dropbox.php:257
708
  #: inc/pro/class-destination-dropbox.php:131
 
709
  #: inc/class-destination-dropbox.php:398
710
+ #: inc/Pro/class-destination-dropbox.php:217
711
  msgid "%s available on your Dropbox"
712
  msgstr "Dropbox 可用空间剩余 %s "
713
 
714
  #: inc/class-destination-dropbox.php:261
715
  #: inc/pro/class-destination-dropbox.php:135
 
716
  #: inc/class-destination-dropbox.php:404
717
+ #: inc/Pro/class-destination-dropbox.php:223
718
  msgid "Not Authenticated with Dropbox!"
719
  msgstr "不验证Dropbox !"
720
 
727
  #: inc/class-destination-msazure.php:286
728
  #: inc/class-destination-sugarsync.php:260
729
  #: inc/pro/class-destination-gdrive.php:663
 
 
730
  #: inc/class-destination-dropbox.php:432
731
+ #: inc/class-destination-msazure.php:290
732
  #: inc/class-destination-sugarsync.php:263
733
+ #: inc/Pro/class-destination-gdrive.php:924
734
  msgid "Backup transferred to %s"
735
  msgstr "备份传输进度 %s"
736
 
737
  #: inc/class-destination-dropbox.php:280
738
  #: inc/pro/class-destination-gdrive.php:666
 
739
  #: inc/class-destination-dropbox.php:438
740
+ #: inc/Pro/class-destination-gdrive.php:930
741
  msgid "Uploaded file size and local file size don't match."
742
  msgstr "上传的文件大小和本地文件大小不匹配。"
743
 
744
  #: inc/class-destination-dropbox.php:285
745
  #: inc/pro/class-destination-gdrive.php:668
746
  #: inc/pro/class-destination-glacier.php:448
747
+ #: inc/class-destination-dropbox.php:444
748
  #: inc/Pro/class-destination-gdrive.php:936
749
  #: inc/Pro/class-destination-glacier.php:450
 
750
  msgid "Error transfering backup to %s."
751
  msgstr "错误的备份到磁带 %s。"
752
 
774
  #: inc/class-destination-email.php:38
775
  #: inc/pro/class-destination-email.php:16
776
  #: inc/pro/class-destination-email.php:18
777
+ #: inc/class-destination-email.php:39
778
  #: inc/Pro/class-destination-email.php:16
779
  #: inc/Pro/class-destination-email.php:18
 
780
  msgid "Email address"
781
  msgstr "电子邮件地址"
782
 
789
  #: inc/class-destination-email.php:49
790
  #: inc/pro/class-destination-email.php:29
791
  #: inc/pro/class-destination-email.php:30
 
 
792
  #: inc/class-destination-email.php:52
793
  #: inc/class-destination-email.php:56
794
+ #: inc/Pro/class-destination-email.php:29
795
+ #: inc/Pro/class-destination-email.php:30
796
  msgid "Send test email"
797
  msgstr "发送测试邮件"
798
 
864
  #: inc/class-destination-email.php:98
865
  #: inc/class-destination-ftp.php:31
866
  #: inc/pro/class-destination-ftp.php:21
 
867
  #: inc/class-destination-email.php:124
868
  #: inc/class-destination-ftp.php:56
869
+ #: inc/Pro/class-destination-ftp.php:35
870
  msgid "Port:"
871
  msgstr "端口:"
872
 
885
  #: inc/class-page-settings.php:330
886
  #: inc/pro/class-jobtype-dbdump.php:157
887
  #: inc/pro/class-jobtype-dbdump.php:205
 
 
888
  #: inc/class-destination-email.php:141
889
  #: inc/class-page-settings.php:837
890
+ #: inc/Pro/class-jobtype-dbdump.php:157
891
+ #: inc/Pro/class-jobtype-dbdump.php:205
892
  msgid "none"
893
  msgstr "无"
894
 
1010
 
1011
  #: inc/class-destination-ftp.php:87
1012
  #: inc/class-page-logs.php:257
 
1013
  #: inc/class-destination-ftp.php:137
1014
+ #: inc/class-page-logs.php:288
1015
  msgid "seconds"
1016
  msgstr "秒"
1017
 
1166
  #: inc/pro/class-destination-glacier.php:468
1167
  #: inc/pro/class-destination-rsc.php:226
1168
  #: inc/pro/class-destination-rsc.php:259
1169
+ #: inc/class-destination-ftp.php:673
1170
+ #: inc/class-destination-msazure.php:275
1171
  #: inc/class-destination-rsc.php:292
1172
+ #: inc/class-destination-s3.php:843
1173
+ #: inc/class-destination-s3.php:958
1174
  #: inc/Pro/class-destination-gdrive.php:905
1175
  #: inc/Pro/class-destination-glacier.php:470
1176
  #: inc/Pro/class-destination-rsc.php:228
1177
  #: inc/Pro/class-destination-rsc.php:261
 
 
 
 
1178
  msgid "Can not open source file for transfer."
1179
  msgstr "不能打开源文件进行传输。"
1180
 
1223
  #: inc/class-destination-rsc.php:105
1224
  #: inc/class-destination-s3.php:114
1225
  #: inc/pro/class-destination-glacier.php:96
 
1226
  #: inc/class-destination-s3.php:215
1227
+ #: inc/Pro/class-destination-glacier.php:96
1228
  msgid "File deletion"
1229
  msgstr "文件删除"
1230
 
1247
 
1248
  #: inc/class-destination-msazure.php:233
1249
  #: inc/pro/class-destination-msazure.php:144
 
1250
  #: inc/class-destination-msazure.php:237
1251
+ #: inc/Pro/class-destination-msazure.php:144
1252
  msgid "MS Azure container \"%s\" does not exist!"
1253
  msgstr "MS Azure 容器 \"%s\" 不存在!"
1254
 
1255
  #: inc/class-destination-msazure.php:237
1256
  #: inc/pro/class-destination-msazure.php:148
 
1257
  #: inc/class-destination-msazure.php:241
1258
+ #: inc/Pro/class-destination-msazure.php:148
1259
  msgid "Connected to MS Azure container \"%s\"."
1260
  msgstr "已连接到 MS Azure 容器 \"%s\"."
1261
 
1267
  #: inc/class-destination-msazure.php:292
1268
  #: inc/class-destination-msazure.php:348
1269
  #: inc/pro/class-destination-msazure.php:233
 
1270
  #: inc/class-destination-msazure.php:296
1271
  #: inc/class-destination-msazure.php:352
1272
+ #: inc/Pro/class-destination-msazure.php:233
1273
  msgid "Microsoft Azure API: %s"
1274
  msgstr "Microsoft Azure API: %s"
1275
 
1287
  #: inc/class-destination-msazure.php:444
1288
  #: inc/class-destination-s3.php:222
1289
  #: inc/pro/class-destination-glacier.php:166
 
1290
  #: inc/class-destination-msazure.php:448
1291
  #: inc/class-destination-s3.php:359
1292
+ #: inc/Pro/class-destination-glacier.php:166
1293
  msgid "Missing access key!"
1294
  msgstr "缺少 access key!"
1295
 
1434
 
1435
  #: inc/class-destination-s3.php:33
1436
  #: inc/pro/class-destination-s3.php:18
 
1437
  #: inc/class-destination-s3.php:54
1438
+ #: inc/Pro/class-destination-s3.php:32
1439
  msgid "Amazon S3 Region"
1440
  msgstr "Amazon S3 地区"
1441
 
1442
  #: inc/class-destination-s3.php:34
1443
  #: inc/pro/class-destination-s3.php:19
 
1444
  #: inc/class-destination-s3.php:1118
1445
+ #: inc/Pro/class-destination-s3.php:40
1446
  msgid "Amazon S3: US Standard"
1447
  msgstr "Amazon S3: US Standard"
1448
 
1449
  #: inc/class-destination-s3.php:35
1450
  #: inc/pro/class-destination-s3.php:20
 
1451
  #: inc/class-destination-s3.php:1122
1452
+ #: inc/Pro/class-destination-s3.php:45
1453
  msgid "Amazon S3: US West (Northern California)"
1454
  msgstr "Amazon S3: US West (Northern California)"
1455
 
1456
  #: inc/class-destination-s3.php:36
1457
  #: inc/pro/class-destination-s3.php:21
 
1458
  #: inc/class-destination-s3.php:1126
1459
+ #: inc/Pro/class-destination-s3.php:53
1460
  msgid "Amazon S3: US West (Oregon)"
1461
  msgstr "Amazon S3: US West (Oregon)"
1462
 
1463
  #: inc/class-destination-s3.php:37
1464
  #: inc/pro/class-destination-s3.php:22
 
1465
  #: inc/class-destination-s3.php:1130
1466
+ #: inc/Pro/class-destination-s3.php:58
1467
  msgid "Amazon S3: EU (Ireland)"
1468
  msgstr "Amazon S3: EU (Ireland)"
1469
 
1470
  #: inc/class-destination-s3.php:38
1471
  #: inc/pro/class-destination-s3.php:23
 
1472
  #: inc/class-destination-s3.php:1138
1473
+ #: inc/Pro/class-destination-s3.php:68
1474
  msgid "Amazon S3: EU (Germany)"
1475
  msgstr "Amazon S3:欧盟(德国)"
1476
 
1477
  #: inc/class-destination-s3.php:39
1478
  #: inc/pro/class-destination-s3.php:24
 
1479
  #: inc/class-destination-s3.php:1142
1480
+ #: inc/Pro/class-destination-s3.php:73
1481
  msgid "Amazon S3: Asia Pacific (Mumbai)"
1482
  msgstr "Amazon S3: 亚太(孟买)"
1483
 
1484
  #: inc/class-destination-s3.php:40
1485
  #: inc/pro/class-destination-s3.php:25
 
1486
  #: inc/class-destination-s3.php:1146
1487
+ #: inc/Pro/class-destination-s3.php:78
1488
  msgid "Amazon S3: Asia Pacific (Tokyo)"
1489
  msgstr "Amazon S3: Asia Pacific (Tokyo)"
1490
 
1491
  #: inc/class-destination-s3.php:41
1492
  #: inc/pro/class-destination-s3.php:26
 
1493
  #: inc/class-destination-s3.php:1150
1494
+ #: inc/Pro/class-destination-s3.php:83
1495
  msgid "Amazon S3: Asia Pacific (Seoul)"
1496
  msgstr "Amazon S3:亚太(首尔)"
1497
 
1498
  #: inc/class-destination-s3.php:42
1499
  #: inc/pro/class-destination-s3.php:27
 
1500
  #: inc/class-destination-s3.php:1154
1501
+ #: inc/Pro/class-destination-s3.php:88
1502
  msgid "Amazon S3: Asia Pacific (Singapore)"
1503
  msgstr "Amazon S3: Asia Pacific (Singapore)"
1504
 
1505
  #: inc/class-destination-s3.php:43
1506
  #: inc/pro/class-destination-s3.php:28
 
1507
  #: inc/class-destination-s3.php:1158
1508
+ #: inc/Pro/class-destination-s3.php:93
1509
  msgid "Amazon S3: Asia Pacific (Sydney)"
1510
  msgstr "Amazon S3: Asia Pacific (Sydney)"
1511
 
1512
  #: inc/class-destination-s3.php:44
1513
  #: inc/pro/class-destination-s3.php:29
 
1514
  #: inc/class-destination-s3.php:1162
1515
+ #: inc/Pro/class-destination-s3.php:98
1516
  msgid "Amazon S3: South America (Sao Paulo)"
1517
  msgstr "Amazon S3: South America (Sao Paulo)"
1518
 
1519
  #: inc/class-destination-s3.php:45
1520
  #: inc/pro/class-destination-s3.php:30
 
1521
  #: inc/class-destination-s3.php:1166
1522
+ #: inc/Pro/class-destination-s3.php:103
1523
  msgid "Amazon S3: China (Beijing)"
1524
  msgstr "Amazon S3: 中国(北京)"
1525
 
1526
  #: inc/class-destination-s3.php:46
1527
  #: inc/pro/class-destination-s3.php:31
 
1528
  #: inc/class-destination-s3.php:1170
1529
+ #: inc/Pro/class-destination-s3.php:108
1530
  msgid "Google Storage: EU"
1531
  msgstr "Google存储:欧盟"
1532
 
1533
  #: inc/class-destination-s3.php:47
1534
  #: inc/pro/class-destination-s3.php:32
 
1535
  #: inc/class-destination-s3.php:1174
1536
+ #: inc/Pro/class-destination-s3.php:113
1537
  msgid "Google Storage: USA"
1538
  msgstr "Google存储:美国"
1539
 
1540
  #: inc/class-destination-s3.php:48
1541
  #: inc/pro/class-destination-s3.php:33
 
1542
  #: inc/class-destination-s3.php:1178
1543
+ #: inc/Pro/class-destination-s3.php:118
1544
  msgid "Google Storage: Asia"
1545
  msgstr "Google存储:亚洲"
1546
 
1547
  #: inc/class-destination-s3.php:49
1548
  #: inc/pro/class-destination-s3.php:34
 
1549
  #: inc/class-destination-s3.php:1182
1550
+ #: inc/Pro/class-destination-s3.php:123
1551
  msgid "Dream Host Cloud Storage"
1552
  msgstr "Dream Host 云存储"
1553
 
1563
 
1564
  #: inc/class-destination-s3.php:65
1565
  #: inc/pro/class-destination-glacier.php:54
 
1566
  #: inc/class-destination-s3.php:121
1567
+ #: inc/Pro/class-destination-glacier.php:54
1568
  msgid "Access Key"
1569
  msgstr "Access Key"
1570
 
1571
  #: inc/class-destination-s3.php:72
1572
  #: inc/pro/class-destination-glacier.php:61
 
1573
  #: inc/class-destination-s3.php:135
1574
+ #: inc/Pro/class-destination-glacier.php:61
1575
  msgid "Secret Key"
1576
  msgstr "Secret Key"
1577
 
1639
 
1640
  #: inc/class-destination-s3.php:224
1641
  #: inc/pro/class-destination-glacier.php:168
 
1642
  #: inc/class-destination-s3.php:361
1643
+ #: inc/Pro/class-destination-glacier.php:168
1644
  msgid "Missing secret access key!"
1645
  msgstr "缺少 secret access key!"
1646
 
1656
 
1657
  #: inc/class-destination-s3.php:348
1658
  #: inc/pro/class-destination-s3.php:147
 
1659
  #: inc/class-destination-s3.php:520
1660
+ #: inc/Pro/class-destination-s3.php:285
1661
  msgid " %s is not a valid bucket name."
1662
  msgstr "%s 不是一个有效的 Bucket 名称"
1663
 
1667
  #: inc/class-destination-s3.php:610
1668
  #: inc/class-destination-s3.php:670
1669
  #: inc/pro/class-destination-s3.php:337
 
1670
  #: inc/class-destination-s3.php:570
1671
  #: inc/class-destination-s3.php:868
1672
  #: inc/class-destination-s3.php:936
1673
  #: inc/class-destination-s3.php:995
1674
  #: inc/class-destination-s3.php:1006
1675
+ #: inc/Pro/class-destination-s3.php:623
1676
  msgid "S3 Service API: %s"
1677
  msgstr "S3服务 API:%s"
1678
 
1683
 
1684
  #: inc/class-destination-s3.php:470
1685
  #: inc/pro/class-destination-s3.php:188
 
1686
  #: inc/class-destination-s3.php:803
1687
+ #: inc/Pro/class-destination-s3.php:383
1688
  msgid "Connected to S3 Bucket \"%1$s\" in %2$s"
1689
  msgstr "已连接到 S3 Bucket \"%1$s\" in %2$s"
1690
 
1691
  #: inc/class-destination-s3.php:473
1692
  #: inc/pro/class-destination-s3.php:191
 
1693
  #: inc/class-destination-s3.php:808
1694
+ #: inc/Pro/class-destination-s3.php:391
1695
  msgid "S3 Bucket \"%s\" does not exist!"
1696
  msgstr "S3 Bucket \"%s\" 不存在!"
1697
 
1712
 
1713
  #: inc/class-destination-s3.php:601
1714
  #: inc/pro/class-destination-glacier.php:444
 
1715
  #: inc/class-destination-s3.php:972
1716
+ #: inc/Pro/class-destination-glacier.php:446
1717
  msgid "Backup transferred to %s."
1718
  msgstr "备份已转移到 %s"
1719
 
1752
  #: inc/pro/class-destination-ftp.php:29
1753
  #: inc/pro/class-destination-sugarsync.php:20
1754
  #: inc/pro/class-jobtype-dbdump.php:126
 
1755
  #: inc/Pro/class-destination-ftp.php:47
1756
  #: inc/Pro/class-destination-sugarsync.php:20
1757
+ #: inc/Pro/class-jobtype-dbdump.php:126
1758
  msgid "Password:"
1759
  msgstr "密码:"
1760
 
1931
  msgstr "BackWPup 计划帮助"
1932
 
1933
  #: inc/class-job.php:263
1934
+ #: inc/class-job.php:297
1935
  msgid "Starting job"
1936
  msgstr "启动计划"
1937
 
1938
  #: inc/class-job.php:278
1939
+ #: inc/class-job.php:314
1940
  msgid "Job Start"
1941
  msgstr "计划启动"
1942
 
1943
  #: inc/class-job.php:298
1944
+ #: inc/class-job.php:334
1945
  msgid "Creates manifest file"
1946
  msgstr "创建清单文件"
1947
 
1948
  #: inc/class-job.php:320
1949
+ #: inc/class-job.php:356
1950
  msgid "Creates archive"
1951
  msgstr "创建存档"
1952
 
1953
  #: inc/class-job.php:360
1954
+ #: inc/class-job.php:403
1955
  msgid "End of Job"
1956
  msgstr "结束工作"
1957
 
1958
  #: inc/class-job.php:377
1959
+ #: inc/class-job.php:428
1960
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1961
  msgstr "BackWPup 日志文件 %1$s 来自 %2$s %3$s"
1962
 
1963
  #: inc/class-job.php:394
1964
+ #: inc/class-job.php:456
1965
  msgctxt "Plugin name; Plugin Version; plugin url"
1966
  msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1967
  msgstr "[INFO]%1$s %2$ s;Inpsyde GmbH是一家高水平的企业"
1968
 
1969
  #: inc/class-job.php:395
1970
+ #: inc/class-job.php:462
1971
  msgctxt "WordPress Version; Blog url"
1972
  msgid "[INFO] WordPress %1$s on %2$s"
1973
  msgstr "[INFO] WordPress %1$s on %2$s"
1974
 
1975
  #: inc/class-job.php:396
1976
+ #: inc/class-job.php:465
1977
  msgid "Normal"
1978
  msgstr "普通"
1979
 
1980
  #: inc/class-job.php:399
1981
+ #: inc/class-job.php:468
1982
  msgid "Debug"
1983
  msgstr "调试"
1984
 
1985
  #: inc/class-job.php:402
1986
+ #: inc/class-job.php:471
1987
  msgid "(translated)"
1988
  msgstr "(翻译)"
1989
 
1990
  #: inc/class-job.php:404
1991
+ #: inc/class-job.php:474
1992
  msgid "[INFO] Log Level: %1$s %2$s"
1993
  msgstr "[信息]日志级别: %1$s %2$s"
1994
 
1995
  #: inc/class-job.php:409
1996
+ #: inc/class-job.php:480
1997
  msgid "[INFO] BackWPup job: %1$s"
1998
  msgstr "[INFO] BackWPup 计划: %1$s"
1999
 
2000
  #: inc/class-job.php:412
2001
+ #: inc/class-job.php:484
2002
  msgid "[INFO] Runs with user: %1$s (%2$d) "
2003
  msgstr "[INFO]与用户一起运行:%1$s(%2$d)"
2004
 
2006
  #: inc/class-page-backwpup.php:323
2007
  #: inc/class-page-jobs.php:282
2008
  #: inc/class-page-jobs.php:291
2009
+ #: inc/class-job.php:500
2010
  msgid "Not scheduled!"
2011
  msgstr "预定!"
2012
 
2013
  #: inc/class-job.php:430
2014
  #: inc/class-job.php:440
2015
+ #: inc/class-job.php:507
2016
+ #: inc/class-job.php:519
2017
  msgid "[INFO] Cron: %s; Next: %s "
2018
  msgstr "[INFO] Cron: %s; 下一个: %s "
2019
 
2020
  #: inc/class-job.php:433
2021
+ #: inc/class-job.php:511
2022
  msgid "[INFO] BackWPup job start with link is active"
2023
  msgstr "[INFO]BackWPup job start with link是活动的"
2024
 
2025
  #: inc/class-job.php:435
2026
+ #: inc/class-job.php:513
2027
  msgid "[INFO] BackWPup job start with EasyCron.com"
2028
  msgstr "[INFO]BackWPup job从EasyCron.com开始"
2029
 
2030
  #: inc/class-job.php:443
2031
+ #: inc/class-job.php:523
2032
  msgid "[INFO] BackWPup no automatic job start configured"
2033
  msgstr "[INFO]BackWPup没有自动开始配置"
2034
 
2035
  #: inc/class-job.php:447
2036
+ #: inc/class-job.php:527
2037
  msgid "[INFO] BackWPup job started from wp-cron"
2038
  msgstr "[INFO] BackWPup 计划已根据 wp-cron 启动"
2039
 
2040
  #: inc/class-job.php:449
2041
+ #: inc/class-job.php:529
2042
  msgid "[INFO] BackWPup job started manually"
2043
  msgstr "[INFO] BackWPup 计划已手动启动"
2044
 
2045
  #: inc/class-job.php:451
2046
+ #: inc/class-job.php:531
2047
  msgid "[INFO] BackWPup job started from external url"
2048
  msgstr "[INFO] BackWPup 计划已从外部 URL 启动"
2049
 
2050
  #: inc/class-job.php:453
2051
+ #: inc/class-job.php:533
2052
  msgid "[INFO] BackWPup job started form commandline interface"
2053
  msgstr "[INFO] BackWPup 计划已从命令行界面启动"
2054
 
2055
  #: inc/class-job.php:462
2056
+ #: inc/class-job.php:544
2057
  msgid "[INFO] PHP ver.:"
2058
  msgstr "[INFO] PHP 版本:"
2059
 
2060
  #: inc/class-job.php:463
2061
+ #: inc/class-job.php:548
2062
  msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
2063
  msgstr "[INFO]最大的PHP脚本执行时间是%1$d秒"
2064
 
2065
  #: inc/class-job.php:467
2066
+ #: inc/class-job.php:555
2067
  msgid "[INFO] Script restart time is configured to %1$d seconds"
2068
  msgstr "[INFO]脚本重启时间配置为%1$d秒"
2069
 
2070
  #: inc/class-job.php:470
2071
+ #: inc/class-job.php:561
2072
  msgid "[INFO] MySQL ver.: %s"
2073
  msgstr "[INFO] MySQL 版本:%s"
2074
 
2075
  #: inc/class-job.php:472
2076
+ #: inc/class-job.php:565
2077
  msgid "[INFO] Web Server: %s"
2078
  msgstr "[INFO] 网站服务器: %s"
2079
 
2080
  #: inc/class-job.php:476
2081
+ #: inc/class-job.php:571
2082
  msgid "[INFO] curl ver.: %1$s; %2$s"
2083
  msgstr "[INFO] curl 版本:%1$s; %2$s"
2084
 
2085
  #: inc/class-job.php:478
2086
+ #: inc/class-job.php:576
2087
  msgid "[INFO] Temp folder is: %s"
2088
  msgstr "[INFO] 临时文件夹是:%s"
2089
 
2090
  #: inc/class-job.php:485
2091
+ #: inc/class-job.php:584
2092
  msgid "[INFO] Logfile is: %s"
2093
  msgstr "[INFO]日志文件是:%s"
2094
 
2095
  #: inc/class-job.php:492
2096
+ #: inc/class-job.php:591
2097
  msgid "[INFO] Backup file is: %s"
2098
  msgstr "[INFO] 备份文件是:%s"
2099
 
2100
  #: inc/class-job.php:494
2101
+ #: inc/class-job.php:594
2102
  msgid "[INFO] Backup type is: %s"
2103
  msgstr "[INFO] 备份类型是:%s"
2104
 
2105
  #: inc/class-job.php:502
2106
+ #: inc/class-job.php:603
2107
  msgid "Could not write log file"
2108
  msgstr "不能写日志文件"
2109
 
2110
  #: inc/class-job.php:514
2111
+ #: inc/class-job.php:616
2112
  msgid "No destination correctly defined for backup! Please correct job settings."
2113
  msgstr "没有正确定义备份的目的地!"
2114
 
2115
  #: inc/class-job.php:644
2116
+ #: inc/class-job.php:718
2117
  msgid "Cannot write progress to working file. Job will be aborted."
2118
  msgstr "不能将进度写入工作文件。工作将会中止。"
2119
 
2120
  #: inc/class-job.php:716
2121
  #: inc/class-page-jobs.php:786
2122
+ #: inc/class-job.php:793
2123
  msgid "WARNING:"
2124
  msgstr "警告:"
2125
 
2126
  #: inc/class-job.php:725
2127
  #: inc/class-page-jobs.php:784
2128
+ #: inc/class-job.php:802
2129
  msgid "ERROR:"
2130
  msgstr "错误:"
2131
 
2132
  #: inc/class-job.php:729
2133
+ #: inc/class-job.php:806
2134
  msgid "DEPRECATED:"
2135
  msgstr "弃用:"
2136
 
2137
  #: inc/class-job.php:732
2138
+ #: inc/class-job.php:809
2139
  msgid "STRICT NOTICE:"
2140
  msgstr "严格注意:"
2141
 
2142
  #: inc/class-job.php:737
2143
+ #: inc/class-job.php:814
2144
  msgid "RECOVERABLE ERROR:"
2145
  msgstr "可恢复的错误:"
2146
 
2147
  #: inc/class-job.php:985
2148
+ #: inc/class-job.php:1091
2149
  msgid "Aborted by user!"
2150
  msgstr "由用户中止!"
2151
 
2152
  #: inc/class-job.php:1019
2153
+ #: inc/class-job.php:1129
2154
  msgid "One old log deleted"
2155
  msgid_plural "%d old logs deleted"
2156
  msgstr[0] "%d一个旧的日志删除"
2157
 
2158
  #: inc/class-job.php:1026
2159
  #: inc/class-page-jobs.php:784
2160
+ #: inc/class-job.php:1141
2161
  msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
2162
  msgstr "计划已结束,用时 %s 秒,有错误。为正确执行,请解决这些错误。"
2163
 
2164
  #: inc/class-job.php:1028
2165
+ #: inc/class-job.php:1150
2166
  msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
2167
  msgstr "在%s秒内完成警告工作。请将其解析为正确执行。"
2168
 
2169
  #: inc/class-job.php:1030
2170
  #: inc/class-page-jobs.php:788
2171
+ #: inc/class-job.php:1158
2172
  msgid "Job done in %s seconds."
2173
  msgstr "计划已完成,用时 %s 秒"
2174
 
2175
  #: inc/class-job.php:1074
2176
+ #: inc/class-job.php:1212
2177
  msgid "SUCCESSFUL"
2178
  msgstr "成功"
2179
 
2180
  #: inc/class-job.php:1076
2181
+ #: inc/class-job.php:1214
2182
  msgid "WARNING"
2183
  msgstr "警告"
2184
 
2185
  #: inc/class-job.php:1079
2186
+ #: inc/class-job.php:1217
2187
  msgid "ERROR"
2188
  msgstr "错误"
2189
 
2190
  #: inc/class-job.php:1082
2191
+ #: inc/class-job.php:1221
2192
  msgid "[%3$s] BackWPup log %1$s: %2$s"
2193
  msgstr "[%3$s] BackWPup 日志 %1$s: %2$s"
2194
 
2195
  #: inc/class-job.php:1188
2196
+ #: inc/class-job.php:1341
2197
  msgid "Restart after %1$d seconds."
2198
  msgstr "在%1$d秒后重启。"
2199
 
2200
  #: inc/class-job.php:1190
2201
+ #: inc/class-job.php:1343
2202
  msgid "Restart after getting signal."
2203
  msgstr "重启后得到的信号。"
2204
 
2205
  #: inc/class-job.php:1363
2206
+ #: inc/class-job.php:1534
2207
  msgid "Job restarts due to inactivity for more than 5 minutes."
2208
  msgstr "工作重新开始,因为活动时间超过5分钟。"
2209
 
2210
  #: inc/class-job.php:1461
2211
+ #: inc/class-job.php:1636
2212
  msgid "Step aborted: too many attempts!"
2213
  msgstr "步骤中止:尝试次数过多!"
2214
 
2215
  #: inc/class-job.php:1532
2216
+ #: inc/class-job.php:1716
2217
  msgid "%d. Trying to create backup archive &hellip;"
2218
  msgstr "%d. 正在尝试创建备份存档 …"
2219
 
2220
  #: inc/class-job.php:1540
2221
+ #: inc/class-job.php:1729
2222
  msgctxt "Archive compression method"
2223
  msgid "Compressing files as %s. Please be patient, this may take a moment."
2224
  msgstr "压缩文件%s。请耐心点,这可能需要一点时间。"
2225
 
2226
  #: inc/class-job.php:1547
2227
+ #: inc/class-job.php:1742
2228
  msgid "Adding Extra files to Archive"
2229
  msgstr "向归档添加额外的文件"
2230
 
2231
  #: inc/class-job.php:1559
2232
  #: inc/class-job.php:1619
2233
+ #: inc/class-job.php:1754
2234
+ #: inc/class-job.php:1823
2235
  msgid "Cannot create backup archive correctly. Aborting creation."
2236
  msgstr "不能正确创建备份存档。流产的创造。"
2237
 
2238
  #: inc/class-job.php:1575
2239
+ #: inc/class-job.php:1772
2240
  msgid "Archiving Folder: %s"
2241
  msgstr "归档文件夹:%s"
2242
 
2243
  #: inc/class-job.php:1629
2244
+ #: inc/class-job.php:1834
2245
  msgid "Backup archive created."
2246
  msgstr "备份存档已创建"
2247
 
2248
  #: inc/class-job.php:1643
2249
+ #: inc/class-job.php:1849
2250
  msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
2251
  msgstr "使用这个PHP版本的备份存档文件将会太大。您可能希望考虑将备份作业拆分为多个作业,每个作业的文件较少。"
2252
 
2253
  #: inc/class-job.php:1646
2254
+ #: inc/class-job.php:1857
2255
  msgid "Archive size is %s."
2256
  msgstr "存档大小为 %s"
2257
 
2258
  #: inc/class-job.php:1649
2259
+ #: inc/class-job.php:1864
2260
  msgid "%1$d Files with %2$s in Archive."
2261
  msgstr "%1$d 文件和 %2$s 在存档中"
2262
 
2263
  #: inc/class-job.php:1698
2264
+ #: inc/class-job.php:2059
2265
  msgctxt "Folder name"
2266
  msgid "Folder %s does not exist"
2267
  msgstr "文件夹%s不存在"
2268
 
2269
  #: inc/class-job.php:1703
2270
+ #: inc/class-job.php:2067
2271
  msgctxt "Folder name"
2272
  msgid "Folder %s is not readable"
2273
  msgstr "文件夹 \"%s\" 不可读!"
2274
 
2275
  #: inc/class-job.php:1725
2276
+ #: inc/class-job.php:2096
2277
  msgid "Link \"%s\" not following."
2278
  msgstr "链接不遵循“%s”。"
2279
 
2280
  #: inc/class-job.php:1727
2281
+ #: inc/class-job.php:2100
2282
  msgid "File \"%s\" is not readable!"
2283
  msgstr "文件 \"%s\" 不可读"
2284
 
2285
  #: inc/class-job.php:1731
2286
+ #: inc/class-job.php:2107
2287
  msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
2288
  msgstr "无法检索“%s”的文件大小。文件可能太大,不能添加到队列中。"
2289
 
2290
  #: inc/class-job.php:1814
2291
+ #: inc/class-job.php:2197
2292
  msgid "%d. Trying to generate a manifest file&#160;&hellip;"
2293
  msgstr "%d。试图生成一个清单文件&#160;&hellip;"
2294
 
2295
  #: inc/class-job.php:1870
2296
+ #: inc/class-job.php:2264
2297
  msgid "You may have noticed the manifest.json file in this archive."
2298
  msgstr "你可能已经注意到了这个清单。这个存档中的json文件。"
2299
 
2300
  #: inc/class-job.php:1871
2301
+ #: inc/class-job.php:2265
2302
  msgid "manifest.json might be needed for later restoring a backup from this archive."
2303
  msgstr "清单。稍后可能需要json来从这个存档中恢复备份。"
2304
 
2305
  #: inc/class-job.php:1872
2306
+ #: inc/class-job.php:2268
2307
  msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
2308
  msgstr "请把清单。json未受影响。否则,被忽视是安全的。"
2309
 
2310
  #: inc/class-job.php:1882
2311
+ #: inc/class-job.php:2282
2312
  msgid "Added manifest.json file with %1$s to backup file list."
2313
  msgstr "添加清单。带有%1$s到备份文件列表的json文件。"
2314
 
2315
  #: inc/class-job.php:1921
2316
+ #: inc/class-job.php:2324
2317
  msgid "Wrong BackWPup JobID"
2318
  msgstr "错误的 BackWPup 计划 ID"
2319
 
2320
  #: inc/class-job.php:1934
2321
+ #: inc/class-job.php:2337
2322
  msgid "A BackWPup job is already running"
2323
  msgstr "一个 BackWPup 备份计划已在执行"
2324
 
2325
  #: inc/class-job.php:2302
2326
+ #: inc/class-job.php:2752
2327
  msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2328
  msgid "Hangup detected on controlling terminal or death of controlling process"
2329
  msgstr "在控制终端或控制过程的死亡中被发现"
2330
 
2331
  #: inc/class-job.php:2306
2332
+ #: inc/class-job.php:2759
2333
  msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2334
  msgid "Interrupt from keyboard"
2335
  msgstr "从键盘中断"
2336
 
2337
  #: inc/class-job.php:2310
2338
+ #: inc/class-job.php:2766
2339
  msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2340
  msgid "Quit from keyboard"
2341
  msgstr "戒烟从键盘"
2342
 
2343
  #: inc/class-job.php:2314
2344
+ #: inc/class-job.php:2773
2345
  msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2346
  msgid "Illegal Instruction"
2347
  msgstr "非法指令"
2348
 
2349
  #: inc/class-job.php:2318
2350
+ #: inc/class-job.php:2780
2351
  msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2352
  msgid "Abort signal from abort(3)"
2353
  msgstr "中止信号从中止(3)"
2354
 
2355
  #: inc/class-job.php:2322
2356
+ #: inc/class-job.php:2787
2357
  msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2358
  msgid "Bus error (bad memory access)"
2359
  msgstr "总线错误(错误的内存访问)"
2360
 
2361
  #: inc/class-job.php:2326
2362
+ #: inc/class-job.php:2794
2363
  msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2364
  msgid "Floating point exception"
2365
  msgstr "浮点数异常错误"
2366
 
2367
  #: inc/class-job.php:2330
2368
+ #: inc/class-job.php:2801
2369
  msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2370
  msgid "Invalid memory reference"
2371
  msgstr "无效的内存引用"
2372
 
2373
  #: inc/class-job.php:2334
2374
+ #: inc/class-job.php:2808
2375
  msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2376
  msgid "Termination signal"
2377
  msgstr "终止信号"
2378
 
2379
  #: inc/class-job.php:2338
2380
+ #: inc/class-job.php:2815
2381
  msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2382
  msgid "Stack fault on coprocessor"
2383
  msgstr "堆栈断层对协处理器"
2384
 
2385
  #: inc/class-job.php:2342
2386
+ #: inc/class-job.php:2822
2387
  msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2388
  msgid "User-defined signal 1"
2389
  msgstr "用户定义的信号1"
2390
 
2391
  #: inc/class-job.php:2346
2392
+ #: inc/class-job.php:2829
2393
  msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2394
  msgid "User-defined signal 2"
2395
  msgstr "用户定义的信号2"
2396
 
2397
  #: inc/class-job.php:2350
2398
+ #: inc/class-job.php:2836
2399
  msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2400
  msgid "Urgent condition on socket"
2401
  msgstr "紧急条件套接字"
2402
 
2403
  #: inc/class-job.php:2354
2404
+ #: inc/class-job.php:2843
2405
  msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2406
  msgid "CPU time limit exceeded"
2407
  msgstr "CPU时间限制超过"
2408
 
2409
  #: inc/class-job.php:2358
2410
+ #: inc/class-job.php:2850
2411
  msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2412
  msgid "File size limit exceeded"
2413
  msgstr "文件大小超过限制"
2414
 
2415
  #: inc/class-job.php:2362
2416
+ #: inc/class-job.php:2857
2417
  msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2418
  msgid "Power failure"
2419
  msgstr "电源故障"
2420
 
2421
  #: inc/class-job.php:2366
2422
+ #: inc/class-job.php:2864
2423
  msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
2424
  msgid "Bad argument to routine"
2425
  msgstr "坏参数常规"
2426
 
2427
  #: inc/class-job.php:2373
2428
+ #: inc/class-job.php:2876
2429
  msgid "Signal \"%1$s\" (%2$s) is sent to script!"
2430
  msgstr "信号\"%1$s\" (%2$s)被发送到脚本!"
2431
 
2432
  #: inc/class-job.php:2407
2433
  #: inc/class-job.php:2420
2434
+ #: inc/class-job.php:2912
2435
+ #: inc/class-job.php:2925
2436
  msgid "System: %s"
2437
  msgstr "系统:%s"
2438
 
2439
  #: inc/class-job.php:2435
2440
+ #: inc/class-job.php:2942
2441
  msgid "Exception caught in %1$s: %2$s"
2442
  msgstr "异常发生于 %1$s: %2$s"
2443
 
2458
  #: inc/pro/class-wizard-job.php:19
2459
  #: inc/pro/class-wizard-jobimport.php:18
2460
  #: inc/pro/class-wizard-systemtest.php:18
 
2461
  #: inc/Pro/class-wizard-job.php:19
2462
+ #: inc/Pro/class-wizard-jobimport.php:18
2463
  #: inc/Pro/class-wizard-systemtest.php:29
2464
  msgid "http://inpsyde.com"
2465
  msgstr ""
2741
 
2742
  #: inc/class-jobtype-wpexp.php:14
2743
  #: inc/class-page-about.php:472
2744
+ #: inc/class-page-about.php:463
2745
  msgid "WordPress XML export"
2746
  msgstr "WordPress XML 输出"
2747
 
2974
  msgstr "新计划"
2975
 
2976
  #: inc/class-page-about.php:369
2977
+ #: inc/class-page-about.php:366
2978
  msgid "Welcome to BackWPup Pro"
2979
  msgstr "欢迎升级到 BackWPup 专业版"
2980
 
2981
  #: inc/class-page-about.php:370
2982
  #: inc/class-page-backwpup.php:75
2983
+ #: inc/class-page-about.php:367
2984
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2985
  msgstr "BackWPup的工作向导制定计划并安排您的备份工作。"
2986
 
 
 
 
 
 
 
 
2987
  #: inc/class-page-about.php:372
2988
+ #: inc/class-page-about.php:369
2989
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2990
  msgstr "准备好<a href =“%1$s”>设置备份作业</a> ?您可以<a href =“%2$s”>使用向导</a>或在专家模式下计划备份。"
2991
 
2992
  #: inc/class-page-about.php:382
2993
+ #: inc/class-page-about.php:376
2994
  msgid "Welcome to BackWPup"
2995
  msgstr "欢迎使用 BackWPup"
2996
 
2997
  #: inc/class-page-about.php:385
2998
+ #: inc/class-page-about.php:379
2999
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
3000
  msgstr "准备好设置备份作业了吗?使用一个向导来计划你想要保存的东西。"
3001
 
3002
  #: inc/class-page-about.php:398
3003
+ #: inc/class-page-about.php:389
3004
  msgid "Save your database"
3005
  msgstr "保存你的数据库"
3006
 
3007
  #: inc/class-page-about.php:401
3008
+ #: inc/class-page-about.php:392
3009
  msgid "Save your database regularly"
3010
  msgstr "定期保存数据库"
3011
 
3012
  #: inc/class-page-about.php:402
3013
+ #: inc/class-page-about.php:393
3014
  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."
3015
  msgstr "通过 BackWPup,你可以定期自动备份数据库,还可以通过一个简单的备份文件来恢复数据库。你应该 <a href=\"%s\">添加一个备份计划</a>,这样你永远不会忘记它。当然,你还可以在每次备份数据库时修复和优化它。"
3016
 
3017
  #: inc/class-page-about.php:407
3018
  #: inc/class-page-about.php:411
3019
+ #: inc/class-page-about.php:398
3020
+ #: inc/class-page-about.php:402
3021
  msgid "WordPress XML Export"
3022
  msgstr "WordPress XML 输出"
3023
 
3024
  #: inc/class-page-about.php:408
3025
+ #: inc/class-page-about.php:399
3026
  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."
3027
  msgstr "你可以选择内置的 WordPress 导出格式来保存数据。这样做的好处:你可以通过正规的 WordPress 导入接口将这些文件导入网站。 "
3028
 
3029
  #: inc/class-page-about.php:416
3030
+ #: inc/class-page-about.php:407
3031
  msgid "Save all data from the webserver"
3032
  msgstr "从网络服务器中保存所有的数据"
3033
 
3034
  #: inc/class-page-about.php:419
3035
+ #: inc/class-page-about.php:410
3036
  msgid "Save all files"
3037
  msgstr "保存所有文件"
3038
 
3039
  #: inc/class-page-about.php:420
3040
+ #: inc/class-page-about.php:411
3041
  msgid "You can backup 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."
3042
  msgstr "您可以备份所有的附件,也可以在一个文件中备份所有的系统文件、插件和主题。您可以<a href =\" % s \" >创建一个job </a>,只在文件更改时才更新文件系统的备份副本。"
3043
 
3044
  #: inc/class-page-about.php:425
3045
  #: inc/class-page-about.php:429
3046
+ #: inc/class-page-about.php:416
3047
+ #: inc/class-page-about.php:420
3048
  msgid "Security!"
3049
  msgstr "安全!"
3050
 
3051
  #: inc/class-page-about.php:426
3052
+ #: inc/class-page-about.php:417
3053
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
3054
  msgstr "默认情况下,一切都是加密进行的:连接到外部服务,访问本地文件和目录。"
3055
 
3056
  #: inc/class-page-about.php:434
3057
  #: inc/class-page-about.php:437
3058
+ #: inc/class-page-about.php:425
3059
+ #: inc/class-page-about.php:428
3060
  msgid "Cloud Support"
3061
  msgstr "云支持"
3062
 
3063
  #: inc/class-page-about.php:438
3064
+ #: inc/class-page-about.php:429
3065
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
3066
  msgstr "BackWPup 支持多个云服务并行。这可确保备份是多余的。"
3067
 
3068
  #: inc/class-page-about.php:444
3069
+ #: inc/class-page-about.php:435
3070
  msgid "Features / differences between Free and Pro"
3071
  msgstr "免费版和专业版的差异"
3072
 
3073
  #: inc/class-page-about.php:447
3074
+ #: inc/class-page-about.php:438
3075
  msgid "Features"
3076
  msgstr "特点"
3077
 
3078
  #: inc/class-page-about.php:448
3079
+ #: inc/class-page-about.php:439
3080
  msgid "FREE"
3081
  msgstr "免费版"
3082
 
3083
  #: inc/class-page-about.php:449
3084
+ #: inc/class-page-about.php:440
3085
  msgid "PRO"
3086
  msgstr "专业版"
3087
 
3088
  #: inc/class-page-about.php:452
3089
+ #: inc/class-page-about.php:443
3090
  msgid "Complete database backup"
3091
  msgstr "数据库备份"
3092
 
3093
  #: inc/class-page-about.php:457
3094
+ #: inc/class-page-about.php:448
3095
  msgid "Complete file backup"
3096
  msgstr "文件备份"
3097
 
3098
  #: inc/class-page-about.php:462
3099
+ #: inc/class-page-about.php:453
3100
  msgid "Database check"
3101
  msgstr "数据库检查"
3102
 
3103
  #: inc/class-page-about.php:467
3104
+ #: inc/class-page-about.php:458
3105
  msgid "Data compression"
3106
  msgstr "数据压缩"
3107
 
3108
  #: inc/class-page-about.php:477
3109
+ #: inc/class-page-about.php:468
3110
  msgid "List of installed plugins"
3111
  msgstr "已安装的插件列表"
3112
 
3113
  #: inc/class-page-about.php:482
3114
+ #: inc/class-page-about.php:473
3115
  msgid "Backup archives management"
3116
  msgstr "备份存档管理"
3117
 
3118
  #: inc/class-page-about.php:487
3119
+ #: inc/class-page-about.php:478
3120
  msgid "Log file management"
3121
  msgstr "日志文件管理"
3122
 
3123
  #: inc/class-page-about.php:492
3124
+ #: inc/class-page-about.php:483
3125
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
3126
  msgstr "根据 WP-Cron, URL, 系统, 后端 或 WP-CLI 启动计划"
3127
 
3128
  #: inc/class-page-about.php:497
3129
+ #: inc/class-page-about.php:488
3130
  msgid "Log report via email"
3131
  msgstr "通过邮件发送日志通告"
3132
 
3133
  #: inc/class-page-about.php:502
3134
+ #: inc/class-page-about.php:493
3135
  msgid "Backup to Microsoft Azure"
3136
  msgstr "备份到 Microsoft Azure"
3137
 
3138
  #: inc/class-page-about.php:507
3139
+ #: inc/class-page-about.php:498
3140
  msgid "Backup as email"
3141
  msgstr "备份到 电子邮件"
3142
 
3143
  #: inc/class-page-about.php:512
3144
+ #: inc/class-page-about.php:503
3145
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
3146
  msgstr "备份到S3服务(Amazon、谷歌存储、Hosteurope等)"
3147
 
3148
  #: inc/class-page-about.php:527
3149
+ #: inc/class-page-about.php:518
3150
  msgid "Backup to FTP server"
3151
  msgstr "备份到 FTP 服务器"
3152
 
3153
  #: inc/class-page-about.php:532
3154
+ #: inc/class-page-about.php:523
3155
  msgid "Backup to your web space"
3156
  msgstr "备份到你的网站空间"
3157
 
3158
  #: inc/class-page-about.php:542
3159
  #: inc/pro/class-pro.php:115
3160
+ #: inc/class-page-about.php:553
3161
  #: inc/Pro/class-pro.php:152
 
3162
  msgid "Backup to Google Drive"
3163
  msgstr "备份到Google Drive"
3164
 
3165
  #: inc/class-page-about.php:547
3166
  #: inc/pro/class-pro.php:96
3167
+ #: inc/class-page-about.php:558
3168
  #: inc/Pro/class-pro.php:131
 
3169
  msgid "Backup to Amazon Glacier"
3170
  msgstr "备份到Amazon Glacier"
3171
 
3172
  #: inc/class-page-about.php:552
3173
+ #: inc/class-page-about.php:563
3174
  msgid "Custom API keys for DropBox and SugarSync"
3175
  msgstr "自定义 DropBox 和 SugarSync 的 API keys"
3176
 
3177
  #: inc/class-page-about.php:557
3178
+ #: inc/class-page-about.php:568
3179
  msgid "XML database backup as PHPMyAdmin schema"
3180
  msgstr "XML 数据库备份为 PHPMyAdmin 架构"
3181
 
3182
  #: inc/class-page-about.php:562
3183
+ #: inc/class-page-about.php:573
3184
  msgid "Database backup as mysqldump per command line"
3185
  msgstr "使用命令行进行 MySQL 数据库转储备份"
3186
 
3187
  #: inc/class-page-about.php:567
3188
+ #: inc/class-page-about.php:578
3189
  msgid "Database backup for additional MySQL databases"
3190
  msgstr "备份其他 MySQL 数据库"
3191
 
3192
  #: inc/class-page-about.php:572
3193
+ #: inc/class-page-about.php:583
3194
  msgid "Import and export job settings as XML"
3195
  msgstr "导入和导出计划设置为 XML 文件"
3196
 
3197
  #: inc/class-page-about.php:577
3198
+ #: inc/class-page-about.php:588
3199
  msgid "Wizard for system tests"
3200
  msgstr "系统测试向导"
3201
 
3202
  #: inc/class-page-about.php:582
3203
+ #: inc/class-page-about.php:593
3204
  msgid "Wizard for scheduled backup jobs"
3205
  msgstr "定时备份计划向导"
3206
 
3207
  #: inc/class-page-about.php:587
3208
+ #: inc/class-page-about.php:598
3209
  msgid "Wizard to import settings and backup jobs"
3210
  msgstr "导入设置和备份计划向导"
3211
 
3212
  #: inc/class-page-about.php:592
3213
+ #: inc/class-page-about.php:603
3214
  msgid "Differential backup of changed directories to Dropbox"
3215
  msgstr "差异备份更改目录到 Dropbox"
3216
 
3217
  #: inc/class-page-about.php:597
3218
+ #: inc/class-page-about.php:608
3219
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
3220
  msgstr "差异备份更改目录到 Rackspace Cloud Files"
3221
 
3222
  #: inc/class-page-about.php:602
3223
+ #: inc/class-page-about.php:613
3224
  msgid "Differential backup of changed directories to S3"
3225
  msgstr "差异备份更改目录到 S3"
3226
 
3227
  #: inc/class-page-about.php:607
3228
+ #: inc/class-page-about.php:618
3229
  msgid "Differential backup of changed directories to MS Azure"
3230
  msgstr "差异备份更改目录到 MS Azure"
3231
 
3232
  #: inc/class-page-about.php:612
3233
+ #: inc/class-page-about.php:648
3234
  msgid "<strong>Premium support</strong>"
3235
  msgstr "<strong>付费支持</strong>"
3236
 
3237
  #: inc/class-page-about.php:617
3238
+ #: inc/class-page-about.php:653
3239
  msgid "<strong>Automatic updates</strong>"
3240
  msgstr "<strong>自动更新</strong>"
3241
 
3242
  #: inc/class-page-about.php:624
3243
+ #: inc/class-page-about.php:660
3244
  msgid "GET PRO"
3245
  msgstr "获取专业版"
3246
 
3302
  #: inc/class-page-logs.php:206
3303
  #: inc/class-page-backups.php:281
3304
  #: inc/class-page-backups.php:285
3305
+ #: inc/class-page-logs.php:234
3306
  #: inc/class-page-settings.php:768
3307
  #: inc/class-page-settings.php:779
 
3308
  msgid "Download"
3309
  msgstr "下载"
3310
 
3363
  msgid "Restoring backups"
3364
  msgstr "恢复备份"
3365
 
 
 
 
 
 
3366
  #: inc/class-page-backwpup.php:78
3367
  #: inc/class-page-backwpup.php:87
3368
  msgctxt "Dashboard heading"
3587
 
3588
  #: inc/class-page-editjob.php:328
3589
  #: inc/class-page-settings.php:119
 
3590
  #: inc/class-page-editjob.php:337
3591
+ #: inc/class-page-settings.php:214
3592
  msgid "General"
3593
  msgstr "一般"
3594
 
3622
 
3623
  #: inc/class-page-editjob.php:391
3624
  #: inc/pro/class-wizard-job.php:254
 
3625
  #: inc/class-page-editjob.php:400
3626
+ #: inc/Pro/class-wizard-job.php:254
3627
  msgid "This job is a&#160;&hellip;"
3628
  msgstr "计划任务是"
3629
 
3630
  #: inc/class-page-editjob.php:394
3631
  #: inc/pro/class-wizard-job.php:257
 
3632
  #: inc/class-page-editjob.php:403
3633
+ #: inc/Pro/class-wizard-job.php:257
3634
  msgid "Job tasks"
3635
  msgstr "计划任务"
3636
 
3643
  #: inc/class-page-editjob.php:420
3644
  #: inc/pro/class-wizard-job.php:402
3645
  #: inc/pro/class-wizard-job.php:405
 
 
3646
  #: inc/class-page-editjob.php:426
3647
  #: inc/class-page-editjob.php:429
3648
+ #: inc/Pro/class-wizard-job.php:402
3649
+ #: inc/Pro/class-wizard-job.php:405
3650
  msgid "Backup type"
3651
  msgstr "备份类型"
3652
 
3657
 
3658
  #: inc/class-page-editjob.php:428
3659
  #: inc/pro/class-wizard-job.php:413
 
3660
  #: inc/class-page-editjob.php:437
3661
+ #: inc/Pro/class-wizard-job.php:413
3662
  msgid "Create a backup archive"
3663
  msgstr "创建备份存档"
3664
 
3758
  #: inc/class-page-editjob.php:476
3759
  #: inc/pro/class-wizard-job.php:426
3760
  #: inc/pro/class-wizard-job.php:429
 
 
3761
  #: inc/class-page-editjob.php:481
3762
  #: inc/class-page-editjob.php:483
3763
+ #: inc/Pro/class-wizard-job.php:426
3764
+ #: inc/Pro/class-wizard-job.php:429
3765
  msgid "Zip"
3766
  msgstr "Zip"
3767
 
3768
  #: inc/class-page-editjob.php:479
3769
  #: inc/pro/class-wizard-job.php:433
 
3770
  #: inc/class-page-editjob.php:486
3771
+ #: inc/Pro/class-wizard-job.php:433
3772
  msgid "Tar"
3773
  msgstr "Tar"
3774
 
3776
  #: inc/class-page-editjob.php:483
3777
  #: inc/pro/class-wizard-job.php:437
3778
  #: inc/pro/class-wizard-job.php:440
 
 
3779
  #: inc/class-page-editjob.php:488
3780
  #: inc/class-page-editjob.php:490
3781
+ #: inc/Pro/class-wizard-job.php:437
3782
+ #: inc/Pro/class-wizard-job.php:440
3783
  msgid "Tar GZip"
3784
  msgstr "Tar GZip"
3785
 
3794
  #: inc/class-page-editjob.php:489
3795
  #: inc/pro/class-wizard-job.php:444
3796
  #: inc/pro/class-wizard-job.php:447
 
 
3797
  #: inc/class-page-editjob.php:494
3798
  #: inc/class-page-editjob.php:497
3799
+ #: inc/Pro/class-wizard-job.php:444
3800
+ #: inc/Pro/class-wizard-job.php:447
3801
  msgid "Tar BZip2"
3802
  msgstr "Tar BZip2"
3803
 
3925
  #: inc/class-page-editjob.php:650
3926
  #: inc/class-page-editjob.php:718
3927
  #: inc/pro/class-wizard-job.php:320
 
3928
  #: inc/class-page-editjob.php:686
3929
  #: inc/class-page-editjob.php:754
3930
+ #: inc/Pro/class-wizard-job.php:320
3931
  msgid "Scheduler"
3932
  msgstr "设定时间"
3933
 
3935
  #: inc/class-page-jobs.php:126
3936
  #: inc/class-page-logs.php:139
3937
  #: inc/pro/class-wizard-job.php:324
 
 
3938
  #: inc/class-page-editjob.php:691
3939
+ #: inc/class-page-logs.php:166
3940
+ #: inc/Pro/class-wizard-job.php:324
3941
  msgid "Type"
3942
  msgstr "类型"
3943
 
3944
  #: inc/class-page-editjob.php:660
3945
  #: inc/pro/class-wizard-job.php:330
 
3946
  #: inc/class-page-editjob.php:696
3947
+ #: inc/Pro/class-wizard-job.php:330
3948
  msgid "Hour"
3949
  msgstr "小时"
3950
 
3951
  #: inc/class-page-editjob.php:663
3952
  #: inc/pro/class-wizard-job.php:333
 
3953
  #: inc/class-page-editjob.php:699
3954
+ #: inc/Pro/class-wizard-job.php:333
3955
  msgid "Minute"
3956
  msgstr "分钟"
3957
 
3958
  #: inc/class-page-editjob.php:667
3959
  #: inc/pro/class-wizard-job.php:337
 
3960
  #: inc/class-page-editjob.php:703
3961
+ #: inc/Pro/class-wizard-job.php:337
3962
  msgid "monthly"
3963
  msgstr "每个月一次"
3964
 
3965
  #: inc/class-page-editjob.php:669
3966
  #: inc/pro/class-wizard-job.php:339
 
3967
  #: inc/class-page-editjob.php:705
3968
+ #: inc/Pro/class-wizard-job.php:339
3969
  msgid "on"
3970
  msgstr "在"
3971
 
3972
  #: inc/class-page-editjob.php:679
3973
  #: inc/pro/class-wizard-job.php:349
 
3974
  #: inc/class-page-editjob.php:715
3975
+ #: inc/Pro/class-wizard-job.php:349
3976
  msgid "weekly"
3977
  msgstr "每周一次"
3978
 
3979
  #: inc/class-page-editjob.php:681
3980
  #: inc/class-page-editjob.php:788
3981
  #: inc/pro/class-wizard-job.php:351
 
3982
  #: inc/class-page-editjob.php:717
3983
  #: inc/class-page-editjob.php:824
3984
+ #: inc/Pro/class-wizard-job.php:351
3985
  msgid "Sunday"
3986
  msgstr "星期天"
3987
 
3988
  #: inc/class-page-editjob.php:682
3989
  #: inc/class-page-editjob.php:789
3990
  #: inc/pro/class-wizard-job.php:352
 
3991
  #: inc/class-page-editjob.php:718
3992
  #: inc/class-page-editjob.php:825
3993
+ #: inc/Pro/class-wizard-job.php:352
3994
  msgid "Monday"
3995
  msgstr "星期一"
3996
 
3997
  #: inc/class-page-editjob.php:683
3998
  #: inc/class-page-editjob.php:790
3999
  #: inc/pro/class-wizard-job.php:353
 
4000
  #: inc/class-page-editjob.php:719
4001
  #: inc/class-page-editjob.php:826
4002
+ #: inc/Pro/class-wizard-job.php:353
4003
  msgid "Tuesday"
4004
  msgstr "星期二"
4005
 
4006
  #: inc/class-page-editjob.php:684
4007
  #: inc/class-page-editjob.php:791
4008
  #: inc/pro/class-wizard-job.php:354
 
4009
  #: inc/class-page-editjob.php:720
4010
  #: inc/class-page-editjob.php:827
4011
+ #: inc/Pro/class-wizard-job.php:354
4012
  msgid "Wednesday"
4013
  msgstr "星期三"
4014
 
4015
  #: inc/class-page-editjob.php:685
4016
  #: inc/class-page-editjob.php:792
4017
  #: inc/pro/class-wizard-job.php:355
 
4018
  #: inc/class-page-editjob.php:721
4019
  #: inc/class-page-editjob.php:828
4020
+ #: inc/Pro/class-wizard-job.php:355
4021
  msgid "Thursday"
4022
  msgstr "星期四"
4023
 
4024
  #: inc/class-page-editjob.php:686
4025
  #: inc/class-page-editjob.php:793
4026
  #: inc/pro/class-wizard-job.php:356
 
4027
  #: inc/class-page-editjob.php:722
4028
  #: inc/class-page-editjob.php:829
4029
+ #: inc/Pro/class-wizard-job.php:356
4030
  msgid "Friday"
4031
  msgstr "星期五"
4032
 
4033
  #: inc/class-page-editjob.php:687
4034
  #: inc/class-page-editjob.php:794
4035
  #: inc/pro/class-wizard-job.php:357
 
4036
  #: inc/class-page-editjob.php:723
4037
  #: inc/class-page-editjob.php:830
4038
+ #: inc/Pro/class-wizard-job.php:357
4039
  msgid "Saturday"
4040
  msgstr "星期六"
4041
 
4042
  #: inc/class-page-editjob.php:697
4043
  #: inc/pro/class-wizard-job.php:367
 
4044
  #: inc/class-page-editjob.php:733
4045
+ #: inc/Pro/class-wizard-job.php:367
4046
  msgid "daily"
4047
  msgstr "每天一次"
4048
 
4049
  #: inc/class-page-editjob.php:707
4050
  #: inc/pro/class-wizard-job.php:377
 
4051
  #: inc/class-page-editjob.php:743
4052
+ #: inc/Pro/class-wizard-job.php:377
4053
  msgid "hourly"
4054
  msgstr "每小时一次"
4055
 
4198
  #: inc/class-page-jobs.php:172
4199
  #: inc/class-page-logs.php:200
4200
  #: inc/pro/class-page-support.php:221
 
4201
  #: inc/class-page-logs.php:228
4202
+ #: inc/Pro/class-page-support.php:221
4203
  msgid "Job ID: %d"
4204
  msgstr "作业ID:%d"
4205
 
5093
  msgid "There are errors. Please correct them, or BackWPup cannot work."
5094
  msgstr ""
5095
 
5096
+ #: backwpup.php:573
5097
+ #: vendor_dist/backwpup.php:573
5098
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
 
 
5099
  msgstr ""
5100
 
5101
+ #: inc/class-create-archive.php:114
5102
+ msgid "Functions for bz2 compression not available."
 
 
 
 
5103
  msgstr ""
5104
 
5105
+ #: inc/class-create-archive.php:311
5106
+ msgid "File name cannot be empty."
 
5107
  msgstr ""
5108
 
5109
+ #: inc/class-create-archive.php:741
5110
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
 
 
 
5111
  msgstr ""
5112
 
5113
+ #. translators: $1 is the filename to add into the archive.
5114
+ #: inc/class-create-archive.php:996
5115
+ msgid "Cannot open source file %s."
5116
  msgstr ""
5117
 
5118
+ #: inc/class-decrypter.php:56
5119
+ msgid "Cannot open the archive for reading."
5120
  msgstr ""
5121
 
5122
+ #: inc/class-decrypter.php:82
5123
+ msgid "Cannot write the encrypted archive."
5124
  msgstr ""
5125
 
5126
+ #: inc/class-decrypter.php:162
5127
+ msgid "Private key invalid."
5128
  msgstr ""
5129
 
5130
+ #: inc/class-destination-dropbox-downloader.php:72
5131
+ #: inc/class-destination-ftp-downloader.php:72
5132
+ #: inc/class-destination-s3-downloader.php:83
5133
+ #: inc/Pro/class-destination-gdrive-downloader.php:74
5134
+ msgid "Could not write data to file."
5135
  msgstr ""
5136
 
5137
+ #: inc/class-destination-dropbox-downloader.php:104
5138
+ #: inc/class-destination-folder-downloader.php:137
5139
+ #: inc/class-destination-ftp-downloader.php:126
5140
+ #: inc/class-destination-s3-downloader.php:112
5141
+ #: inc/Pro/class-destination-gdrive-downloader.php:102
5142
+ msgid "File could not be opened for writing."
5143
  msgstr ""
5144
 
5145
  #: inc/class-destination-folder-downloader.php:64
5159
  msgid "%s is a directory not a file."
5160
  msgstr ""
5161
 
5162
+ #: inc/class-destination-ftp-downloader.php:108
5163
+ msgid "Cannot open FTP file for download."
5164
+ msgstr ""
5165
+
5166
+ #: inc/class-destination-ftp.php:321
5167
+ msgid "Could not log in to FTP server."
5168
+ msgstr ""
5169
+
5170
+ #: inc/class-destination-ftp.php:735
5171
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
5172
+ msgstr ""
5173
+
5174
+ #: inc/class-destination-s3-downloader.php:76
5175
+ msgid "Could not write data to file. Empty source file."
5176
+ msgstr ""
5177
+
5178
  #: inc/class-destination-s3.php:102
5179
  msgid "Multipart splits file into multiple chunks while uploading.<br />This is necessary for displaying the upload process and to transfer bigger files.<br />Don't work with Google or Dreamhost."
5180
  msgstr ""
5181
 
5182
+ #: inc/class-destination-s3.php:1134
5183
+ #: inc/Pro/class-destination-s3.php:63
5184
+ msgid "Amazon S3: EU (London)"
5185
+ msgstr ""
5186
+
5187
+ #: inc/class-download-file.php:135
5188
+ msgid "Invalid file name, seems file include invalid characters."
5189
+ msgstr ""
5190
+
5191
+ #: inc/class-job.php:362
5192
+ msgid "Encrypts the archive"
5193
+ msgstr ""
5194
+
5195
+ #: inc/class-job.php:1902
5196
+ msgid "No encryption key was provided. Aborting encryption."
5197
+ msgstr ""
5198
+
5199
+ #: inc/class-job.php:1912
5200
+ msgid "%d. Trying to encrypt archive &hellip;"
5201
+ msgstr ""
5202
+
5203
+ #: inc/class-job.php:1925
5204
+ msgid "Cannot open the archive for reading. Aborting encryption."
5205
+ msgstr ""
5206
+
5207
+ #: inc/class-job.php:1932
5208
+ msgid "Cannot write the encrypted archive. Aborting encryption."
5209
+ msgstr ""
5210
+
5211
+ #: inc/class-job.php:1991
5212
+ msgid "Encrypted %s of data."
5213
+ msgstr ""
5214
+
5215
+ #: inc/class-job.php:1996
5216
+ msgid "Unable to delete unencrypted archive."
5217
+ msgstr ""
5218
+
5219
+ #: inc/class-job.php:2003
5220
+ msgid "Unable to rename encrypted archive."
5221
+ msgstr ""
5222
+
5223
+ #: inc/class-job.php:2009
5224
+ msgid "Archive has been successfully encrypted."
5225
+ msgstr ""
5226
+
5227
+ #: inc/class-job.php:2719
5228
+ msgid "exec command is not active."
5229
+ msgstr ""
5230
+
5231
+ #: inc/class-job.php:2725
5232
+ msgid "mysqldump binary not found."
5233
+ msgstr ""
5234
+
5235
+ #: inc/class-page-about.php:365
5236
+ #: inc/class-page-about.php:375
5237
+ #: inc/class-page-backwpup.php:254
5238
+ msgid "BackWPup banner"
5239
+ msgstr ""
5240
+
5241
+ #: inc/class-page-about.php:368
5242
+ #: inc/class-page-about.php:378
5243
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
5244
+ msgstr ""
5245
+
5246
+ #: inc/class-page-about.php:533
5247
+ msgid "Restore manually uploaded Backup Archives"
5248
+ msgstr ""
5249
+
5250
+ #: inc/class-page-about.php:538
5251
+ msgid "Standalone Restore App"
5252
+ msgstr ""
5253
+
5254
+ #: inc/class-page-about.php:543
5255
+ msgid "Encrypt Backup Archives"
5256
+ msgstr ""
5257
+
5258
+ #: inc/class-page-about.php:548
5259
+ msgid "Restore Encrypted Backups"
5260
+ msgstr ""
5261
+
5262
+ #: inc/class-page-about.php:623
5263
+ msgid "Restore from Folder"
5264
+ msgstr ""
5265
+
5266
+ #: inc/class-page-about.php:628
5267
+ msgid "Restore from Google Drive"
5268
+ msgstr ""
5269
+
5270
+ #: inc/class-page-about.php:633
5271
+ msgid "Restore from Amazon S3"
5272
+ msgstr ""
5273
+
5274
+ #: inc/class-page-about.php:638
5275
+ msgid "Restore from Dropbox"
5276
+ msgstr ""
5277
+
5278
+ #: inc/class-page-about.php:643
5279
+ msgid "Restore from FTP"
5280
+ msgstr ""
5281
+
5282
+ #: inc/class-page-backups.php:293
5283
+ #: inc/Pro/class-pro.php:285
5284
+ #: inc/Pro/class-pro.php:286
5285
+ #: views/pro/restore/steps/step4_top.php:2
5286
+ msgid "Restore"
5287
+ msgstr ""
5288
+
5289
  #: inc/class-page-backups.php:408
5290
  msgid "&laquo; Go back"
5291
  msgstr ""
5328
  msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
5329
  msgstr ""
5330
 
5331
+ #: inc/class-page-backwpup.php:77
5332
+ #: inc/class-page-backwpup.php:86
5333
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
5334
  msgstr ""
5335
 
5336
+ #: inc/class-page-editjob.php:448
5337
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
5338
  msgstr ""
5339
 
5340
+ #: inc/class-page-editjob.php:452
5341
+ msgid "Preview: "
5342
  msgstr ""
5343
 
5344
+ #: inc/class-page-editjob.php:484
5345
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
5346
+ msgstr ""
5347
+
5348
+ #: inc/class-page-editjob.php:495
5349
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
5350
+ msgstr ""
5351
+
5352
+ #: inc/class-page-editjob.php:506
5353
+ #: inc/class-page-editjob.php:511
5354
+ #: inc/class-page-editjob.php:520
5355
+ msgid "Encrypt Archive"
5356
+ msgstr ""
5357
+
5358
+ #: inc/class-page-editjob.php:524
5359
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
5360
  msgstr ""
5361
 
5362
  #: inc/class-page-settings.php:39
5492
  msgid "BackWPup maximum script execution time"
5493
  msgstr ""
5494
 
5495
+ #: inc/class-system-tests-runner.php:77
5496
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5497
  msgstr ""
5498
 
5499
+ #: inc/class-system-tests-runner.php:88
5500
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
5501
  msgstr ""
5502
 
5503
+ #: inc/class-system-tests-runner.php:100
5504
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
5505
  msgstr ""
5506
 
5507
+ #: inc/class-system-tests-runner.php:193
5508
+ msgid "Yeah!"
5509
  msgstr ""
5510
 
5511
+ #: inc/class-system-tests-runner.php:261
5512
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
5513
  msgstr ""
5514
 
5515
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
languages/backwpup.pot CHANGED
@@ -10,721 +10,924 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "POT-Creation-Date: 2018-10-16T13:15:01+00:00\n"
14
- "PO-Revision-Date: 2018-10-16T13:15:01+00:00\n"
15
  "X-Domain: backwpup\n"
16
 
17
- #: inc/class-adminbar.php:51
18
- msgid "running"
 
 
19
  msgstr ""
20
 
21
- #: inc/class-adminbar.php:67
22
- msgid "Now Running"
 
23
  msgstr ""
24
 
25
- #: inc/class-adminbar.php:73
26
- msgid "Abort!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgstr ""
28
 
29
- #: inc/class-adminbar.php:82
30
  #: inc/class-admin.php:305
 
31
  #: inc/class-page-settings.php:215
32
  msgid "Jobs"
33
  msgstr ""
34
 
35
- #: inc/class-adminbar.php:90
36
- #: inc/class-page-jobs.php:584
37
- msgid "Add new"
38
  msgstr ""
39
 
40
- #: inc/class-adminbar.php:98
41
  #: inc/class-admin.php:355
42
- #: inc/class-page-settings.php:219
43
  #: inc/class-page-logs.php:377
 
44
  msgid "Logs"
45
  msgstr ""
46
 
47
- #: inc/class-adminbar.php:106
48
  #: inc/class-admin.php:380
 
49
  msgid "Backups"
50
  msgstr ""
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  #: inc/class-adminbar.php:128
53
  msgid "Run Now"
54
  msgstr ""
55
 
56
- #: inc/class-wp-cli.php:23
57
- msgid "A job is already running."
 
58
  msgstr ""
59
 
60
- #: inc/class-wp-cli.php:35
61
- msgid "No job ID specified!"
62
  msgstr ""
63
 
64
- #: inc/class-wp-cli.php:41
65
- msgid "Job ID does not exist!"
66
  msgstr ""
67
 
68
- #: inc/class-wp-cli.php:54
69
- msgid "Nothing to abort!"
70
  msgstr ""
71
 
72
- #: inc/class-wp-cli.php:59
73
- #: inc/class-page-jobs.php:471
74
- msgid "Job will be terminated."
75
  msgstr ""
76
 
77
- #: inc/class-wp-cli.php:105
78
- msgid "No job running"
79
  msgstr ""
80
 
81
- #: inc/class-install.php:90
82
- msgid "BackWPup Admin"
83
  msgstr ""
84
 
85
- #: inc/class-install.php:105
86
- msgid "BackWPup jobs checker"
87
  msgstr ""
88
 
89
- #: inc/class-install.php:120
90
- msgid "BackWPup jobs helper"
 
 
91
  msgstr ""
92
 
93
- #: inc/class-page-jobs.php:100
94
- msgid "No Jobs."
 
 
 
95
  msgstr ""
96
 
97
- #: inc/class-page-jobs.php:113
98
- #: inc/class-page-jobs.php:177
99
- #: inc/class-page-backups.php:168
100
- #: inc/class-page-backups.php:274
101
- #: inc/class-page-logs.php:151
102
- #: inc/class-page-logs.php:232
103
- msgid "Delete"
104
  msgstr ""
105
 
106
- #: inc/class-page-jobs.php:125
107
- #: inc/class-page-editjob.php:387
108
- #: inc/class-page-editjob.php:392
109
- msgid "Job Name"
110
  msgstr ""
111
 
112
- #: inc/class-page-jobs.php:126
113
- #: inc/class-page-logs.php:166
114
- #: inc/class-page-editjob.php:691
115
- msgid "Type"
116
  msgstr ""
117
 
118
- #: inc/class-page-jobs.php:127
119
- msgid "Destinations"
 
 
120
  msgstr ""
121
 
122
- #: inc/class-page-jobs.php:128
123
- msgid "Next Run"
124
  msgstr ""
125
 
126
- #: inc/class-page-jobs.php:129
127
- msgid "Last Run"
 
 
128
  msgstr ""
129
 
130
- #: inc/class-page-jobs.php:172
131
- #: inc/class-page-logs.php:228
132
- msgid "Job ID: %d"
133
  msgstr ""
134
 
135
- #: inc/class-page-jobs.php:175
136
- msgid "Edit"
 
 
137
  msgstr ""
138
 
139
- #: inc/class-page-jobs.php:176
140
- msgid "Copy"
 
 
 
141
  msgstr ""
142
 
143
- #: inc/class-page-jobs.php:181
144
- #: inc/class-page-editjob.php:223
145
- msgid "Run now"
146
  msgstr ""
147
 
148
- #: inc/class-page-jobs.php:189
149
- msgid "Last log"
 
 
 
 
150
  msgstr ""
151
 
152
- #: inc/class-page-jobs.php:251
153
- msgid "Not needed or set"
154
  msgstr ""
155
 
156
- #: inc/class-page-jobs.php:273
157
- msgid "Running for: %s seconds"
 
 
158
  msgstr ""
159
 
160
- #: inc/class-page-jobs.php:280
161
- #: inc/class-page-jobs.php:289
162
- msgid "Cron: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgstr ""
164
 
165
- #: inc/class-page-jobs.php:280
166
- msgid "%1$s at %2$s by WP-Cron"
 
167
  msgstr ""
168
 
169
- #: inc/class-page-jobs.php:282
170
- #: inc/class-page-jobs.php:291
171
- #: inc/class-page-backwpup.php:323
172
- #: inc/class-job.php:444
173
- msgid "Not scheduled!"
174
  msgstr ""
175
 
176
- #: inc/class-page-jobs.php:289
177
- msgid "%1$s at %2$s by EasyCron"
 
178
  msgstr ""
179
 
180
- #: inc/class-page-jobs.php:295
181
- msgid "External link"
 
182
  msgstr ""
183
 
184
- #: inc/class-page-jobs.php:298
185
- msgid "Inactive"
186
  msgstr ""
187
 
188
- #: inc/class-page-jobs.php:318
189
- #: inc/class-page-backups.php:317
190
- #: inc/class-page-backwpup.php:321
191
- #: inc/class-page-backwpup.php:384
192
- #: inc/class-page-logs.php:190
193
- msgid "%1$s at %2$s"
194
  msgstr ""
195
 
196
- #: inc/class-page-jobs.php:320
197
- msgid "Runtime: %d seconds"
198
  msgstr ""
199
 
200
- #: inc/class-page-jobs.php:324
201
- msgid "not yet"
202
  msgstr ""
203
 
204
- #: inc/class-page-jobs.php:330
205
- msgid "Download last backup"
206
  msgstr ""
207
 
208
- #: inc/class-page-jobs.php:330
209
- #: inc/class-page-backups.php:281
210
- #: inc/class-page-backups.php:285
211
- #: inc/class-page-settings.php:768
212
- #: inc/class-page-settings.php:779
213
- #: inc/class-page-logs.php:234
214
- msgid "Download"
215
  msgstr ""
216
 
217
- #: inc/class-page-jobs.php:339
218
- msgid "Log"
219
  msgstr ""
220
 
221
- #: inc/class-page-jobs.php:384
222
- msgid "Copy of"
223
  msgstr ""
224
 
225
- #: inc/class-page-jobs.php:398
226
- #: inc/class-page-backups.php:331
227
- #: inc/class-page-backups.php:369
228
- #: inc/class-page-editjob.php:35
229
- msgid "Sorry, you don't have permissions to do that."
230
  msgstr ""
231
 
232
- #: inc/class-page-jobs.php:431
233
- msgid "The job \"%s\" destination \"%s\" is not configured properly"
 
 
 
234
  msgstr ""
235
 
236
- #: inc/class-page-jobs.php:436
237
- msgid "The job \"%s\" needs properly configured destinations to run!"
 
 
238
  msgstr ""
239
 
240
- #: inc/class-page-jobs.php:454
241
- msgid "Job \"%s\" has started, but not responded for 10 seconds. Please check <a href=\"%s\">information</a>."
242
  msgstr ""
243
 
244
- #: inc/class-page-jobs.php:459
245
- msgid "Job \"%s\" started."
 
 
246
  msgstr ""
247
 
248
- #: inc/class-page-jobs.php:584
249
- msgid "%s &rsaquo; Jobs"
250
  msgstr ""
251
 
252
- #: inc/class-page-jobs.php:604
253
- msgid "Job currently running: %s"
254
  msgstr ""
255
 
256
- #: inc/class-page-jobs.php:605
257
- msgid "Warnings:"
 
258
  msgstr ""
259
 
260
- #: inc/class-page-jobs.php:606
261
- msgid "Errors:"
 
262
  msgstr ""
263
 
264
- #: inc/class-page-jobs.php:607
265
- msgid "Log of running job"
266
  msgstr ""
267
 
268
- #: inc/class-page-jobs.php:607
269
- msgid "Display working log"
270
  msgstr ""
271
 
272
- #: inc/class-page-jobs.php:608
273
- #: inc/class-page-backwpup.php:309
274
- msgid "Abort"
275
  msgstr ""
276
 
277
- #: inc/class-page-jobs.php:609
278
- msgid "Close working screen"
279
  msgstr ""
280
 
281
- #: inc/class-page-jobs.php:609
282
- msgid "Close"
283
  msgstr ""
284
 
285
- #: inc/class-page-jobs.php:782
286
- msgid "Job completed"
287
  msgstr ""
288
 
289
- #: inc/class-page-jobs.php:784
290
- #: inc/class-job.php:709
291
- msgid "ERROR:"
292
  msgstr ""
293
 
294
- #: inc/class-page-jobs.php:784
295
- #: inc/class-job.php:1012
296
- msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
 
 
 
 
297
  msgstr ""
298
 
299
- #: inc/class-page-jobs.php:786
300
- #: inc/class-job.php:700
301
- msgid "WARNING:"
302
  msgstr ""
303
 
304
- #: inc/class-page-jobs.php:786
305
- msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution."
306
  msgstr ""
307
 
308
- #: inc/class-page-jobs.php:788
309
- #: inc/class-job.php:1016
310
- msgid "Job done in %s seconds."
 
 
311
  msgstr ""
312
 
313
- #: inc/class-destination-rsc.php:42
314
- msgid "Rack Space Cloud Keys"
 
 
 
 
 
 
315
  msgstr ""
316
 
317
- #: inc/class-destination-rsc.php:46
318
- #: inc/class-destination-ftp.php:63
319
- msgid "Username"
 
 
 
 
 
320
  msgstr ""
321
 
322
- #: inc/class-destination-rsc.php:52
323
- msgid "API Key"
 
 
 
 
 
 
324
  msgstr ""
325
 
326
- #: inc/class-destination-rsc.php:59
327
- msgid "Select region"
328
- msgstr ""
 
329
 
330
- #: inc/class-destination-rsc.php:63
331
- #: inc/class-destination-rsc.php:65
332
- msgid "Rackspace Cloud Files Region"
333
  msgstr ""
334
 
335
- #: inc/class-destination-rsc.php:66
336
- msgid "Dallas (DFW)"
337
  msgstr ""
338
 
339
- #: inc/class-destination-rsc.php:67
340
- msgid "Chicago (ORD)"
341
  msgstr ""
342
 
343
- #: inc/class-destination-rsc.php:68
344
- msgid "Sydney (SYD)"
345
  msgstr ""
346
 
347
- #: inc/class-destination-rsc.php:69
348
- msgid "London (LON)"
349
  msgstr ""
350
 
351
- #: inc/class-destination-rsc.php:70
352
- msgid "Northern Virginia (IAD)"
 
 
353
  msgstr ""
354
 
355
- #: inc/class-destination-rsc.php:71
356
- msgid "Hong Kong (HKG)"
357
  msgstr ""
358
 
359
- #: inc/class-destination-rsc.php:76
360
- #: inc/class-destination-msazure.php:48
361
- msgid "Container selection"
362
  msgstr ""
363
 
364
- #: inc/class-destination-rsc.php:88
365
- #: inc/class-destination-msazure.php:59
366
- msgid "Create a new container"
367
  msgstr ""
368
 
369
- #: inc/class-destination-rsc.php:95
370
- #: inc/class-destination-msazure.php:66
371
- #: inc/class-destination-dropbox.php:141
372
- #: inc/class-destination-folder.php:27
373
- #: inc/class-destination-ftp.php:82
374
- #: inc/class-destination-sugarsync.php:81
375
- msgid "Backup settings"
376
  msgstr ""
377
 
378
- #: inc/class-destination-rsc.php:99
379
- #: inc/class-destination-s3.php:202
380
- msgid "Folder in bucket"
381
  msgstr ""
382
 
383
- #: inc/class-destination-rsc.php:105
384
- #: inc/class-destination-msazure.php:76
385
- #: inc/class-destination-s3.php:215
386
- msgid "File deletion"
387
  msgstr ""
388
 
389
- #: inc/class-destination-rsc.php:112
390
- #: inc/class-destination-msazure.php:83
391
- #: inc/class-destination-s3.php:229
392
- #: inc/class-destination-dropbox.php:171
393
- #: inc/class-destination-folder.php:49
394
- #: inc/class-destination-ftp.php:104
395
- #: inc/class-destination-sugarsync.php:98
396
- msgid "Number of files to keep in folder."
397
  msgstr ""
398
 
399
- #: inc/class-destination-rsc.php:114
400
- #: inc/class-destination-msazure.php:85
401
- #: inc/class-destination-s3.php:232
402
- #: inc/class-destination-dropbox.php:173
403
- #: inc/class-destination-folder.php:51
404
- #: inc/class-destination-ftp.php:106
405
- #: inc/class-destination-sugarsync.php:100
406
- msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
407
  msgstr ""
408
 
409
- #: inc/class-destination-rsc.php:118
410
- #: inc/class-destination-msazure.php:89
411
- #: inc/class-destination-s3.php:245
412
- #: inc/class-destination-dropbox.php:183
413
- #: inc/class-destination-folder.php:57
414
- #: inc/class-destination-ftp.php:118
415
- #: inc/class-destination-sugarsync.php:104
416
- msgid "Do not delete files while syncing to destination!"
417
  msgstr ""
418
 
419
- #: inc/class-destination-rsc.php:158
420
- msgid "Rackspace Cloud container \"%s\" created."
421
  msgstr ""
422
 
423
- #: inc/class-destination-rsc.php:162
424
- #: inc/class-destination-rsc.php:277
425
- #: inc/class-destination-rsc.php:317
426
- #: inc/class-destination-rsc.php:362
427
- msgid "Rackspace Cloud API: %s"
428
  msgstr ""
429
 
430
- #: inc/class-destination-rsc.php:260
431
- msgid "%d. Trying to send backup file to Rackspace cloud &hellip;"
432
  msgstr ""
433
 
434
- #: inc/class-destination-rsc.php:274
435
- msgid "Connected to Rackspace cloud files container %s"
436
  msgstr ""
437
 
438
- #: inc/class-destination-rsc.php:286
439
- msgid "Upload to Rackspace cloud started &hellip;"
440
  msgstr ""
441
 
442
- #: inc/class-destination-rsc.php:292
443
- #: inc/class-destination-msazure.php:275
444
- #: inc/class-destination-s3.php:843
445
- #: inc/class-destination-s3.php:958
446
- #: inc/class-destination-ftp.php:673
447
- msgid "Can not open source file for transfer."
448
  msgstr ""
449
 
450
- #: inc/class-destination-rsc.php:305
451
- msgid "Backup File transferred to RSC://"
452
  msgstr ""
453
 
454
- #: inc/class-destination-rsc.php:311
455
- msgid "Cannot transfer backup to Rackspace cloud."
456
  msgstr ""
457
 
458
- #: inc/class-destination-rsc.php:356
459
- msgid "One file deleted on Rackspace cloud container."
460
- msgid_plural "%d files deleted on Rackspace cloud container."
461
- msgstr[0] ""
462
 
463
- #: inc/class-destination-rsc.php:469
464
- msgid "Missing username!"
 
465
  msgstr ""
466
 
467
- #: inc/class-destination-rsc.php:471
468
- msgid "Missing API Key!"
469
  msgstr ""
470
 
471
- #: inc/class-destination-rsc.php:475
472
- msgid "A container could not be found!"
 
 
 
 
 
 
 
473
  msgstr ""
474
 
475
- #: inc/class-admin.php:267
476
- #: inc/class-help.php:24
477
- msgid "http://docs.backwpup.com"
478
  msgstr ""
479
 
480
- #: inc/class-admin.php:267
481
- msgid "Documentation"
482
  msgstr ""
483
 
484
- #: inc/class-admin.php:282
485
- msgid "BackWPup Dashboard"
486
  msgstr ""
487
 
488
- #: inc/class-admin.php:282
489
- msgid "Dashboard"
490
  msgstr ""
491
 
492
- #: inc/class-admin.php:330
493
- msgid "Add new job"
494
  msgstr ""
495
 
496
- #: inc/class-admin.php:405
497
- msgid "Settings"
498
  msgstr ""
499
 
500
- #: inc/class-admin.php:425
501
- msgid "About"
502
  msgstr ""
503
 
504
- #: inc/class-admin.php:453
505
- #: inc/class-admin.php:460
506
- msgid "Cheating, huh?"
507
  msgstr ""
508
 
509
- #: inc/class-admin.php:510
510
- msgid "<a class=\"backwpup-get-pro\" href=\"%s\">Get BackWPup Pro now.</a>"
511
  msgstr ""
512
 
513
- #: inc/class-admin.php:510
514
- #: inc/class-admin.php:531
515
- #: inc/class-jobtype-wpexp.php:15
516
- #: inc/class-help.php:17
517
- #: inc/class-help.php:22
518
- #: inc/class-jobtype-wpplugin.php:15
519
- #: inc/class-page-settings.php:1123
520
- #: inc/class-page-about.php:651
521
- #: inc/class-jobtype-dbdump.php:15
522
- #: inc/class-page-backwpup.php:260
523
- #: inc/class-page-backwpup.php:262
524
- #: inc/class-jobtype-dbcheck.php:15
525
- #: inc/class-jobtype-file.php:15
526
- #: inc/class-job.php:412
527
- msgid "http://backwpup.com"
528
  msgstr ""
529
 
530
- #: inc/class-admin.php:531
531
- msgid "version %s"
 
532
  msgstr ""
533
 
534
- #: inc/class-admin.php:576
535
- msgid "Add BackWPup Role"
536
  msgstr ""
537
 
538
- #: inc/class-admin.php:581
539
- msgid "&mdash; No additional role for BackWPup &mdash;"
540
  msgstr ""
541
 
542
- #: inc/class-become-inpsyder-widget.php:31
543
- #: inc/class-become-inpsyder-widget.php:45
544
- msgid "Make BackWPup better!"
545
  msgstr ""
546
 
547
- #: inc/class-become-inpsyder-widget.php:108
548
- msgid "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
549
  msgstr ""
550
 
551
- #: inc/class-become-inpsyder-widget.php:118
552
- msgid "We want to make BackWPup even stronger and its support much faster."
553
  msgstr ""
554
 
555
- #: inc/class-become-inpsyder-widget.php:126
556
- msgid "This is why we are looking for a talented developer who can work remotely and support us in BackWPup"
 
557
  msgstr ""
558
 
559
- #: inc/class-become-inpsyder-widget.php:133
560
- msgid "and other exciting WordPress projects at our VIP partner agency."
561
  msgstr ""
562
 
563
- #: inc/class-become-inpsyder-widget.php:145
564
- msgid "Apply now!"
 
 
 
 
 
565
  msgstr ""
566
 
567
- #: inc/class-become-inpsyder-widget.php:152
568
- #: inc/class-admin-notice.php:121
569
- msgid "Don't show again"
570
  msgstr ""
571
 
572
- #: inc/class-become-inpsyder-widget.php:156
573
- msgid "Work for Inpsyde"
574
  msgstr ""
575
 
576
- #: inc/class-system-tests-runner.php:67
577
- msgctxt "%1 = extension name, %2 = file suffix"
578
- msgid "We recommend to install the %1$s extension to generate %2$s archives."
579
  msgstr ""
580
 
581
- #: inc/class-system-tests-runner.php:77
582
- msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
583
  msgstr ""
584
 
585
- #: inc/class-system-tests-runner.php:88
586
- msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
587
  msgstr ""
588
 
589
- #: inc/class-system-tests-runner.php:100
590
- msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
591
  msgstr ""
592
 
593
- #: inc/class-system-tests-runner.php:112
594
- msgid "PHP cURL extension must be installed to use the full plugin functionality."
595
  msgstr ""
596
 
597
- #: inc/class-system-tests-runner.php:136
598
- msgctxt "Link to PHP manual"
599
- msgid "Please disable the deprecated <a href=\"%s\">PHP safe mode</a>."
600
  msgstr ""
601
 
602
- #: inc/class-system-tests-runner.php:146
603
- msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
604
  msgstr ""
605
 
606
- #: inc/class-system-tests-runner.php:164
607
- msgid "The HTTP response test result is an error: \"%s\"."
 
 
 
 
608
  msgstr ""
609
 
610
- #: inc/class-system-tests-runner.php:175
611
- msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200."
612
  msgstr ""
613
 
614
- #: inc/class-system-tests-runner.php:193
615
- msgid "Yeah!"
616
  msgstr ""
617
 
618
- #: inc/class-system-tests-runner.php:194
619
- msgid "All tests passed without errors."
620
  msgstr ""
621
 
622
- #: inc/class-system-tests-runner.php:220
623
- msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs."
 
 
 
 
 
624
  msgstr ""
625
 
626
- #: inc/class-system-tests-runner.php:239
627
- msgid "There are errors. Please correct them, or BackWPup cannot work."
628
  msgstr ""
629
 
630
- #: inc/class-system-tests-runner.php:261
631
- msgid "There are some warnings. BackWPup will work, but with limitations."
632
  msgstr ""
633
 
634
- #: inc/class-mysqldump.php:60
635
- msgid "No MySQLi extension found. Please install it."
636
  msgstr ""
637
 
638
- #: inc/class-mysqldump.php:100
639
- msgid "Cannot init MySQLi database connection"
640
  msgstr ""
641
 
642
- #: inc/class-mysqldump.php:105
643
- msgid "Setting of MySQLi connection timeout failed"
644
  msgstr ""
645
 
646
- #: inc/class-mysqldump.php:110
647
- msgid "Cannot connect to MySQL database %1$d: %2$s"
 
 
 
648
  msgstr ""
649
 
650
- #: inc/class-mysqldump.php:117
651
- msgctxt "Database Charset"
652
- msgid "Cannot set DB charset to %s error: %s"
653
  msgstr ""
654
 
655
- #: inc/class-mysqldump.php:133
656
- #: inc/class-create-archive.php:101
657
- #: inc/class-create-archive.php:141
658
- #: inc/class-create-archive.php:182
659
- msgid "Functions for gz compression not available"
 
 
 
 
 
660
  msgstr ""
661
 
662
- #: inc/class-mysqldump.php:146
663
- msgid "Cannot open SQL backup file"
664
  msgstr ""
665
 
666
- #: inc/class-mysqldump.php:153
667
- #: inc/class-mysqldump.php:165
668
- #: inc/class-mysqldump.php:259
669
- #: inc/class-mysqldump.php:268
670
- #: inc/class-mysqldump.php:288
671
- #: inc/class-mysqldump.php:297
672
- #: inc/class-mysqldump.php:317
673
- #: inc/class-mysqldump.php:323
674
- #: inc/class-mysqldump.php:368
675
- #: inc/class-mysqldump.php:400
676
- #: inc/class-mysqldump.php:437
677
- #: inc/class-mysqldump.php:500
678
- msgid "Database error %1$s for query %2$s"
679
  msgstr ""
680
 
681
- #: inc/class-mysqldump.php:479
682
- msgid "Start for table backup is not correctly set: %1$s"
683
  msgstr ""
684
 
685
- #: inc/class-mysqldump.php:483
686
- msgid "Length for table backup is not correctly set: %1$s"
687
  msgstr ""
688
 
689
- #: inc/class-mysqldump.php:561
690
- msgid "Error while writing file!"
691
  msgstr ""
692
 
693
- #: inc/class-file.php:142
694
- msgid "Folder %1$s not allowed, please use another folder."
695
  msgstr ""
696
 
697
- #: inc/class-file.php:147
698
- msgid "Folder %1$s is not in open basedir, please use another folder."
699
  msgstr ""
700
 
701
- #: inc/class-file.php:153
702
- msgid "Cannot create folder: %1$s"
703
  msgstr ""
704
 
705
- #: inc/class-file.php:159
706
- msgid "Folder \"%1$s\" is not writable"
707
  msgstr ""
708
 
709
- #: inc/class-file.php:195
710
- msgid "BackWPup will not backup folders and its sub folders when this file is inside."
 
 
 
 
711
  msgstr ""
712
 
713
- #: inc/class-destination-ftp-downloader.php:72
714
- #: inc/class-destination-dropbox-downloader.php:72
715
- #: inc/class-destination-s3-downloader.php:83
716
- msgid "Could not write data to file."
717
  msgstr ""
718
 
719
- #: inc/class-destination-ftp-downloader.php:108
720
- msgid "Cannot open FTP file for download."
721
  msgstr ""
722
 
723
- #: inc/class-destination-ftp-downloader.php:126
724
- #: inc/class-destination-folder-downloader.php:137
725
- #: inc/class-destination-dropbox-downloader.php:104
726
- #: inc/class-destination-s3-downloader.php:112
727
- msgid "File could not be opened for writing."
728
  msgstr ""
729
 
730
  #: inc/class-destination-msazure.php:25
@@ -743,10 +946,26 @@ msgstr ""
743
  msgid "Blob container"
744
  msgstr ""
745
 
 
 
 
 
 
 
 
 
 
 
746
  #: inc/class-destination-msazure.php:70
747
  msgid "Folder in container"
748
  msgstr ""
749
 
 
 
 
 
 
 
750
  #: inc/class-destination-msazure.php:128
751
  msgid "MS Azure container \"%s\" created."
752
  msgstr ""
@@ -771,12 +990,6 @@ msgstr ""
771
  msgid "Starting upload to MS Azure&#160;&hellip;"
772
  msgstr ""
773
 
774
- #: inc/class-destination-msazure.php:290
775
- #: inc/class-destination-dropbox.php:432
776
- #: inc/class-destination-sugarsync.php:263
777
- msgid "Backup transferred to %s"
778
- msgstr ""
779
-
780
  #: inc/class-destination-msazure.php:296
781
  #: inc/class-destination-msazure.php:352
782
  msgid "Microsoft Azure API: %s"
@@ -800,160 +1013,102 @@ msgstr ""
800
  msgid "No container found!"
801
  msgstr ""
802
 
803
- #: inc/class-destination-folder-downloader.php:64
804
- msgid "Could not read data from source file."
805
- msgstr ""
806
-
807
- #: inc/class-destination-folder-downloader.php:69
808
- msgid "Could not write data into target file."
809
- msgstr ""
810
-
811
- #: inc/class-destination-folder-downloader.php:96
812
- msgid "File could not be opened for reading."
813
- msgstr ""
814
-
815
- #. translators: $1 is the path of the local file where the backup will be stored
816
- #: inc/class-destination-folder-downloader.php:141
817
- msgid "%s is a directory not a file."
818
- msgstr ""
819
-
820
- #: inc/class-jobtype-wpexp.php:13
821
- msgid "XML export"
822
- msgstr ""
823
-
824
- #: inc/class-jobtype-wpexp.php:14
825
- #: inc/class-page-about.php:474
826
- msgid "WordPress XML export"
827
- msgstr ""
828
-
829
- #: inc/class-jobtype-wpexp.php:17
830
- #: inc/class-jobtype-wpplugin.php:17
831
- #: inc/class-jobtype-dbdump.php:17
832
- #: inc/class-jobtype-dbcheck.php:17
833
- #: inc/class-jobtype-file.php:17
834
- msgid "http://inpsyde.com"
835
- msgstr ""
836
-
837
- #: inc/class-jobtype-wpexp.php:46
838
- msgid "Items to export"
839
- msgstr ""
840
-
841
- #: inc/class-jobtype-wpexp.php:49
842
- msgid "All content"
843
- msgstr ""
844
-
845
- #: inc/class-jobtype-wpexp.php:50
846
- msgid "Posts"
847
  msgstr ""
848
 
849
- #: inc/class-jobtype-wpexp.php:51
850
- msgid "Pages"
851
  msgstr ""
852
 
853
- #: inc/class-jobtype-wpexp.php:61
854
- msgid "XML Export file name"
855
  msgstr ""
856
 
857
- #: inc/class-jobtype-wpexp.php:69
858
- #: inc/class-jobtype-wpplugin.php:53
859
- msgid "File compression"
860
  msgstr ""
861
 
862
- #: inc/class-jobtype-wpexp.php:73
863
- #: inc/class-destination-email.php:141
864
- #: inc/class-jobtype-wpplugin.php:57
865
- #: inc/class-page-settings.php:837
866
- #: inc/class-jobtype-dbdump.php:67
867
- #: inc/class-jobtype-dbdump.php:103
868
- #: inc/class-page-backwpup.php:329
869
- #: inc/class-page-backwpup.php:404
870
- msgid "none"
871
  msgstr ""
872
 
873
- #: inc/class-jobtype-wpexp.php:75
874
- #: inc/class-jobtype-wpexp.php:77
875
- #: inc/class-jobtype-wpplugin.php:59
876
- #: inc/class-jobtype-wpplugin.php:61
877
- #: inc/class-jobtype-dbdump.php:105
878
- #: inc/class-jobtype-dbdump.php:107
879
- msgid "GZip"
880
  msgstr ""
881
 
882
- #: inc/class-jobtype-wpexp.php:79
883
- #: inc/class-jobtype-wpexp.php:81
884
- #: inc/class-jobtype-wpplugin.php:64
885
- #: inc/class-jobtype-wpplugin.php:66
886
- msgid "BZip2"
887
  msgstr ""
888
 
889
- #: inc/class-jobtype-wpexp.php:112
890
- msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
891
  msgstr ""
892
 
893
- #: inc/class-jobtype-wpexp.php:127
894
- msgid "WP Export: Post type “%s” does not allow export."
895
  msgstr ""
896
 
897
- #: inc/class-jobtype-wpexp.php:172
898
- #: inc/class-jobtype-wpexp.php:186
899
- #: inc/class-jobtype-wpexp.php:215
900
- #: inc/class-jobtype-wpexp.php:236
901
- #: inc/class-jobtype-wpexp.php:269
902
- #: inc/class-jobtype-wpexp.php:289
903
- #: inc/class-jobtype-wpexp.php:378
904
- #: inc/class-jobtype-wpexp.php:387
905
- msgid "WP Export file could not written."
906
  msgstr ""
907
 
908
- #: inc/class-jobtype-wpexp.php:402
909
- msgid "Check WP Export file&#160;&hellip;"
 
910
  msgstr ""
911
 
912
- #: inc/class-jobtype-wpexp.php:422
913
- msgid "XML WARNING (%s): %s"
914
  msgstr ""
915
 
916
- #: inc/class-jobtype-wpexp.php:425
917
- msgid "XML RECOVERABLE (%s): %s"
 
 
 
918
  msgstr ""
919
 
920
- #: inc/class-jobtype-wpexp.php:428
921
- msgid "XML ERROR (%s): %s"
922
  msgstr ""
923
 
924
- #: inc/class-jobtype-wpexp.php:438
925
- msgid "There was an error when reading this WXR file"
926
  msgstr ""
927
 
928
- #: inc/class-jobtype-wpexp.php:444
929
- #: inc/class-jobtype-wpexp.php:451
930
- msgid "This does not appear to be a WXR file, missing/invalid WXR version number"
931
  msgstr ""
932
 
933
- #: inc/class-jobtype-wpexp.php:460
934
- msgid "WP Export file is a valid WXR file."
935
  msgstr ""
936
 
937
- #: inc/class-jobtype-wpexp.php:462
938
- msgid "WP Export file can not be checked, because no XML extension is loaded, to ensure the file verification."
939
  msgstr ""
940
 
941
- #: inc/class-jobtype-wpexp.php:474
942
- msgid "Compressing file&#160;&hellip;"
 
 
 
 
 
943
  msgstr ""
944
 
945
- #: inc/class-jobtype-wpexp.php:481
946
- msgid "Compressing done."
947
  msgstr ""
948
 
949
- #: inc/class-jobtype-wpexp.php:500
950
- msgid "Added XML export \"%1$s\" with %2$s to backup file list."
951
  msgstr ""
952
 
953
- #: inc/class-destination-s3.php:42
954
- #: backwpup.php:350
955
- #: vendor_dist/backwpup.php:350
956
- msgid "S3 Service"
957
  msgstr ""
958
 
959
  #: inc/class-destination-s3.php:48
@@ -1103,342 +1258,152 @@ msgid "Cannot transfer backup to S3! (%1$d) %2$s"
1103
  msgstr ""
1104
 
1105
  #: inc/class-destination-s3.php:1118
1106
- msgid "Amazon S3: US Standard"
1107
- msgstr ""
1108
-
1109
- #: inc/class-destination-s3.php:1122
1110
- msgid "Amazon S3: US West (Northern California)"
1111
- msgstr ""
1112
-
1113
- #: inc/class-destination-s3.php:1126
1114
- msgid "Amazon S3: US West (Oregon)"
1115
- msgstr ""
1116
-
1117
- #: inc/class-destination-s3.php:1130
1118
- msgid "Amazon S3: EU (Ireland)"
1119
- msgstr ""
1120
-
1121
- #: inc/class-destination-s3.php:1134
1122
- msgid "Amazon S3: EU (London)"
1123
- msgstr ""
1124
-
1125
- #: inc/class-destination-s3.php:1138
1126
- msgid "Amazon S3: EU (Germany)"
1127
- msgstr ""
1128
-
1129
- #: inc/class-destination-s3.php:1142
1130
- msgid "Amazon S3: Asia Pacific (Mumbai)"
1131
- msgstr ""
1132
-
1133
- #: inc/class-destination-s3.php:1146
1134
- msgid "Amazon S3: Asia Pacific (Tokyo)"
1135
- msgstr ""
1136
-
1137
- #: inc/class-destination-s3.php:1150
1138
- msgid "Amazon S3: Asia Pacific (Seoul)"
1139
- msgstr ""
1140
-
1141
- #: inc/class-destination-s3.php:1154
1142
- msgid "Amazon S3: Asia Pacific (Singapore)"
1143
- msgstr ""
1144
-
1145
- #: inc/class-destination-s3.php:1158
1146
- msgid "Amazon S3: Asia Pacific (Sydney)"
1147
- msgstr ""
1148
-
1149
- #: inc/class-destination-s3.php:1162
1150
- msgid "Amazon S3: South America (Sao Paulo)"
1151
- msgstr ""
1152
-
1153
- #: inc/class-destination-s3.php:1166
1154
- msgid "Amazon S3: China (Beijing)"
1155
- msgstr ""
1156
-
1157
- #: inc/class-destination-s3.php:1170
1158
- msgid "Google Storage: EU"
1159
- msgstr ""
1160
-
1161
- #: inc/class-destination-s3.php:1174
1162
- msgid "Google Storage: USA"
1163
- msgstr ""
1164
-
1165
- #: inc/class-destination-s3.php:1178
1166
- msgid "Google Storage: Asia"
1167
- msgstr ""
1168
-
1169
- #: inc/class-destination-s3.php:1182
1170
- msgid "Dream Host Cloud Storage"
1171
- msgstr ""
1172
-
1173
- #: inc/class-destination-email.php:39
1174
- msgid "Email address"
1175
- msgstr ""
1176
-
1177
- #: inc/class-destination-email.php:43
1178
- msgid "To email address (separate with commas for multiple addresses)"
1179
- msgstr ""
1180
-
1181
- #: inc/class-destination-email.php:52
1182
- #: inc/class-destination-email.php:56
1183
- msgid "Send test email"
1184
- msgstr ""
1185
-
1186
- #: inc/class-destination-email.php:61
1187
- msgid "Send email settings"
1188
- msgstr ""
1189
-
1190
- #: inc/class-destination-email.php:65
1191
- msgid "Maximum file size"
1192
- msgstr ""
1193
-
1194
- #: inc/class-destination-email.php:69
1195
- msgid "MB"
1196
- msgstr ""
1197
-
1198
- #: inc/class-destination-email.php:70
1199
- msgid "Maximum file size to be included in an email. 0 = unlimited"
1200
- msgstr ""
1201
-
1202
- #: inc/class-destination-email.php:75
1203
- msgid "From email address"
1204
- msgstr ""
1205
-
1206
- #: inc/class-destination-email.php:83
1207
- msgid "From name"
1208
- msgstr ""
1209
-
1210
- #: inc/class-destination-email.php:92
1211
- msgid "Sending method"
1212
- msgstr ""
1213
-
1214
- #: inc/class-destination-email.php:97
1215
- msgid "Use WordPress settings"
1216
- msgstr ""
1217
-
1218
- #: inc/class-destination-email.php:98
1219
- msgid "PHP: mail()"
1220
- msgstr ""
1221
-
1222
- #: inc/class-destination-email.php:99
1223
- msgid "Sendmail"
1224
- msgstr ""
1225
-
1226
- #: inc/class-destination-email.php:100
1227
- msgid "SMTP"
1228
- msgstr ""
1229
-
1230
- #: inc/class-destination-email.php:108
1231
- msgid "Sendmail path"
1232
- msgstr ""
1233
-
1234
- #: inc/class-destination-email.php:119
1235
- msgid "SMTP host name"
1236
- msgstr ""
1237
-
1238
- #: inc/class-destination-email.php:124
1239
- #: inc/class-destination-ftp.php:56
1240
- msgid "Port:"
1241
- msgstr ""
1242
-
1243
- #: inc/class-destination-email.php:136
1244
- msgid "SMTP secure connection"
1245
- msgstr ""
1246
-
1247
- #: inc/class-destination-email.php:143
1248
- msgid "SSL"
1249
- msgstr ""
1250
-
1251
- #: inc/class-destination-email.php:145
1252
- msgid "TLS"
1253
- msgstr ""
1254
-
1255
- #: inc/class-destination-email.php:152
1256
- msgid "SMTP username"
1257
- msgstr ""
1258
-
1259
- #: inc/class-destination-email.php:162
1260
- msgid "SMTP password"
1261
- msgstr ""
1262
-
1263
- #: inc/class-destination-email.php:243
1264
- msgid "%d. Try to send backup with email&#160;&hellip;"
1265
- msgstr ""
1266
-
1267
- #: inc/class-destination-email.php:248
1268
- msgid "Backup archive too big to be sent by email!"
1269
- msgstr ""
1270
-
1271
- #: inc/class-destination-email.php:255
1272
- msgid "Sending email to %s&hellip;"
1273
- msgstr ""
1274
-
1275
- #: inc/class-destination-email.php:333
1276
- msgid "BackWPup archive from %1$s: %2$s"
1277
- msgstr ""
1278
-
1279
- #: inc/class-destination-email.php:336
1280
- msgid "Backup archive: %s"
1281
- msgstr ""
1282
-
1283
- #: inc/class-destination-email.php:349
1284
- #: inc/class-destination-email.php:474
1285
- msgid "Error while sending email!"
1286
- msgstr ""
1287
-
1288
- #: inc/class-destination-email.php:354
1289
- #: inc/class-destination-email.php:476
1290
- msgid "Email sent."
1291
  msgstr ""
1292
 
1293
- #: inc/class-destination-email.php:459
1294
- msgid "BackWPup archive sending TEST Message"
1295
  msgstr ""
1296
 
1297
- #: inc/class-destination-email.php:462
1298
- msgid "If this message reaches your inbox, sending backup archives via email should work for you."
1299
  msgstr ""
1300
 
1301
- #: inc/class-option.php:176
1302
- #: inc/class-page-editjob.php:97
1303
- #: inc/class-page-editjob.php:392
1304
- msgid "New Job"
1305
  msgstr ""
1306
 
1307
- #: inc/class-page-backups.php:158
1308
- msgid "No files could be found. (List will be generated during next backup.)"
1309
  msgstr ""
1310
 
1311
- #: inc/class-page-backups.php:203
1312
- msgid "Change destination"
1313
  msgstr ""
1314
 
1315
- #: inc/class-page-backups.php:241
1316
- #: inc/class-page-backwpup.php:283
1317
- #: inc/class-page-backwpup.php:347
1318
- #: inc/class-page-logs.php:163
1319
- msgid "Time"
1320
  msgstr ""
1321
 
1322
- #: inc/class-page-backups.php:242
1323
- msgid "File"
1324
  msgstr ""
1325
 
1326
- #: inc/class-page-backups.php:243
1327
- #: backwpup.php:286
1328
- #: vendor_dist/backwpup.php:286
1329
- msgid "Folder"
1330
  msgstr ""
1331
 
1332
- #: inc/class-page-backups.php:244
1333
- #: inc/class-page-logs.php:167
1334
- msgid "Size"
1335
  msgstr ""
1336
 
1337
- #: inc/class-page-backups.php:273
1338
- msgid ""
1339
- "You are about to delete this backup archive. \n"
1340
- " 'Cancel' to stop, 'OK' to delete."
1341
  msgstr ""
1342
 
1343
- #: inc/class-page-backups.php:293
1344
- msgid "Restore"
1345
  msgstr ""
1346
 
1347
- #: inc/class-page-backups.php:311
1348
- msgid "?"
1349
  msgstr ""
1350
 
1351
- #: inc/class-page-backups.php:408
1352
- msgid "&laquo; Go back"
1353
  msgstr ""
1354
 
1355
- #: inc/class-page-backups.php:433
1356
- msgid "Backup Files"
1357
  msgstr ""
1358
 
1359
- #: inc/class-page-backups.php:489
1360
- msgid "%s &rsaquo; Manage Backup Archives"
1361
  msgstr ""
1362
 
1363
- #: inc/class-page-backups.php:501
1364
- msgid "Please wait &hellip;"
1365
  msgstr ""
1366
 
1367
- #: inc/class-page-backups.php:504
1368
- msgid "Your download is being generated &hellip;"
1369
  msgstr ""
1370
 
1371
- #: inc/class-page-backups.php:510
1372
- msgid "Please enter your private key to decrypt your backup."
1373
  msgstr ""
1374
 
1375
- #: inc/class-page-backups.php:512
1376
- msgid "The private key you entered was invalid. Please try again."
1377
  msgstr ""
1378
 
1379
- #: inc/class-page-backups.php:515
1380
- #: inc/class-page-settings.php:742
1381
- #: inc/class-page-settings.php:773
1382
- msgid "Private Key"
1383
  msgstr ""
1384
 
1385
- #: inc/class-page-backups.php:522
1386
- msgid "Submit"
 
1387
  msgstr ""
1388
 
1389
- #: inc/class-page-backups.php:527
1390
- msgid "Your download has been generated. It should begin downloading momentarily."
 
1391
  msgstr ""
1392
 
1393
- #: inc/class-page-backups.php:575
1394
- msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
1395
  msgstr ""
1396
 
1397
- #: inc/class-destination-dropbox-api.php:177
1398
- msgid "Beginning new file upload session"
1399
  msgstr ""
1400
 
1401
- #: inc/class-destination-dropbox-api.php:199
1402
- msgid "Uploading %s of data"
1403
  msgstr ""
1404
 
1405
- #: inc/class-destination-dropbox-api.php:244
1406
- msgid "Finishing upload session with a total of %s uploaded"
1407
  msgstr ""
1408
 
1409
- #: inc/class-help.php:15
1410
- msgid "Plugin Info"
1411
  msgstr ""
1412
 
1413
- #: inc/class-help.php:17
1414
- msgctxt "Plugin name and link; Plugin Version"
1415
- msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>."
1416
  msgstr ""
1417
 
1418
- #: inc/class-help.php:18
1419
- msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you are welcome to redistribute it under certain conditions."
 
1420
  msgstr ""
1421
 
1422
- #: inc/class-help.php:21
1423
- msgid "For more information:"
1424
  msgstr ""
1425
 
1426
- #: inc/class-help.php:23
1427
- msgid "Plugin on wordpress.org"
1428
  msgstr ""
1429
 
1430
- #: inc/class-help.php:24
1431
- msgid "Manual"
1432
  msgstr ""
1433
 
1434
- #: inc/class-cron.php:73
1435
- msgid "Aborted, because no progress for one hour!"
 
 
 
 
 
1436
  msgstr ""
1437
 
1438
- #: inc/class-cron.php:107
1439
- #: inc/class-destination-folder.php:195
1440
- #: inc/class-jobtype-file.php:446
1441
- msgid "Could not open path: %s"
1442
  msgstr ""
1443
 
1444
  #: inc/class-easycron.php:179
@@ -1465,1263 +1430,1348 @@ msgstr ""
1465
  msgid "If you check this box, a cron job will be created on EasyCron that all 5 Minutes calls the WordPress cron."
1466
  msgstr ""
1467
 
1468
- #: inc/class-jobtype-wpplugin.php:13
1469
- msgid "Plugins"
1470
  msgstr ""
1471
 
1472
- #: inc/class-jobtype-wpplugin.php:14
1473
- msgid "Installed plugins list"
1474
  msgstr ""
1475
 
1476
- #: inc/class-jobtype-wpplugin.php:45
1477
- msgid "Plugin list file name"
1478
  msgstr ""
1479
 
1480
- #: inc/class-jobtype-wpplugin.php:96
1481
- msgid "%d. Trying to generate a file with installed plugin names&#160;&hellip;"
1482
  msgstr ""
1483
 
1484
- #: inc/class-jobtype-wpplugin.php:124
1485
- msgid "All plugin information:"
1486
  msgstr ""
1487
 
1488
- #: inc/class-jobtype-wpplugin.php:126
1489
- msgid "from %s"
1490
  msgstr ""
1491
 
1492
- #: inc/class-jobtype-wpplugin.php:128
1493
- msgid "Active plugins:"
 
1494
  msgstr ""
1495
 
1496
- #: inc/class-jobtype-wpplugin.php:134
1497
- msgid "Inactive plugins:"
1498
  msgstr ""
1499
 
1500
- #: inc/class-jobtype-wpplugin.php:141
1501
- msgid "Can not open target file for writing."
1502
  msgstr ""
1503
 
1504
- #: inc/class-jobtype-wpplugin.php:148
1505
- msgid "Added plugin list file \"%1$s\" with %2$s to backup file list."
1506
  msgstr ""
1507
 
1508
- #: inc/class-create-archive.php:80
1509
- msgid "The file name of an archive cannot be empty."
1510
  msgstr ""
1511
 
1512
- #. translators: $1 is the file path
1513
- #: inc/class-create-archive.php:89
1514
- msgctxt "%s = Folder name"
1515
- msgid "Folder %s for archive not found"
1516
  msgstr ""
1517
 
1518
- #: inc/class-create-archive.php:114
1519
- msgid "Functions for bz2 compression not available."
1520
  msgstr ""
1521
 
1522
- #. translators: $1 is a directory name
1523
- #: inc/class-create-archive.php:155
1524
- msgctxt "ZipArchive open() result"
1525
- msgid "Cannot create zip archive: %d"
1526
  msgstr ""
1527
 
1528
- #: inc/class-create-archive.php:195
1529
- msgid "Functions for bz2 compression not available"
1530
  msgstr ""
1531
 
1532
- #. translators: the $1 is the type of the archive file
1533
- #: inc/class-create-archive.php:208
1534
- msgctxt "%s = file name"
1535
- msgid "Method to archive file %s not detected"
1536
  msgstr ""
1537
 
1538
- #: inc/class-create-archive.php:215
1539
- msgid "Cannot open archive file"
1540
  msgstr ""
1541
 
1542
- #. translators: The $1 is the tecnical error string from pclzip.
1543
- #: inc/class-create-archive.php:233
1544
- #: inc/class-create-archive.php:514
1545
- msgid "PclZip archive add error: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1546
  msgstr ""
1547
 
1548
- #: inc/class-create-archive.php:311
1549
- msgid "File name cannot be empty."
1550
  msgstr ""
1551
 
1552
- #. translators: The $1 is the name of the file to add to the archive.
1553
- #: inc/class-create-archive.php:326
1554
- msgctxt "File to add to archive"
1555
- msgid "File %s does not exist or is not readable"
1556
  msgstr ""
1557
 
1558
- #: inc/class-create-archive.php:347
1559
- #: inc/class-create-archive.php:374
1560
- #: inc/class-create-archive.php:578
1561
- #: inc/class-create-archive.php:587
1562
- msgid "This archive method can only add one file"
1563
  msgstr ""
1564
 
1565
- #: inc/class-create-archive.php:442
1566
- msgid "ZIP archive cannot be closed correctly"
1567
  msgstr ""
1568
 
1569
- #. translators: the $1 is the name of the archive.
1570
- #. translators: $1 is the name of the archive.
1571
- #: inc/class-create-archive.php:473
1572
- #: inc/class-create-archive.php:490
1573
- #: inc/class-create-archive.php:607
1574
- msgid "Cannot add \"%s\" to zip archive!"
1575
  msgstr ""
1576
 
1577
- #: inc/class-create-archive.php:544
1578
- msgid "Folder name cannot be empty"
 
 
 
1579
  msgstr ""
1580
 
1581
- #. translators: $1 is the folder name
1582
- #: inc/class-create-archive.php:555
1583
- msgctxt "Folder path to add to archive"
1584
- msgid "Folder %s does not exist or is not readable"
1585
  msgstr ""
1586
 
1587
- #. translators. $1 is the status returned by a call to a ZipArchive method.
1588
- #: inc/class-create-archive.php:639
1589
- msgctxt "Text of ZipArchive status Message"
1590
- msgid "ZipArchive returns status: %s"
1591
  msgstr ""
1592
 
1593
- #. translators: $1 is the file name.
1594
- #: inc/class-create-archive.php:687
1595
- msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1596
  msgstr ""
1597
 
1598
- #. translators: $1 is the file name to use in the archive.
1599
- #: inc/class-create-archive.php:699
1600
- msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1601
  msgstr ""
1602
 
1603
- #: inc/class-create-archive.php:741
1604
- msgid "Cannot open source file %s for archiving. Writing an empty file."
1605
  msgstr ""
1606
 
1607
- #. translators: $1 is the name of the folder. $2 is the archive name.
1608
- #: inc/class-create-archive.php:803
1609
- msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!"
1610
  msgstr ""
1611
 
1612
- #. translators: $1 is the name of the folder. $2 is the archive name.
1613
- #: inc/class-create-archive.php:818
1614
- msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!"
1615
  msgstr ""
1616
 
1617
- #: inc/class-create-archive.php:886
1618
- msgid "If %s will be added to your backup archive, the archive will be too large for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
1619
  msgstr ""
1620
 
1621
- #: inc/class-create-archive.php:964
1622
- #: inc/class-create-archive.php:965
1623
- msgid "Unknown"
1624
  msgstr ""
1625
 
1626
- #. translators: $1 is the filename to add into the archive.
1627
- #: inc/class-create-archive.php:996
1628
- msgid "Cannot open source file %s."
1629
  msgstr ""
1630
 
1631
- #. translators: the $1 is the error message
1632
- #: inc/class-destination-dropbox.php:55
1633
- #: inc/class-destination-dropbox.php:458
1634
- msgid "Dropbox API: %s"
1635
  msgstr ""
1636
 
1637
- #: inc/class-destination-dropbox.php:72
1638
- msgid "Login"
1639
  msgstr ""
1640
 
1641
- #: inc/class-destination-dropbox.php:76
1642
- #: inc/class-destination-sugarsync.php:28
1643
- #: inc/class-destination-sugarsync.php:43
1644
- msgid "Authentication"
1645
  msgstr ""
1646
 
1647
- #: inc/class-destination-dropbox.php:78
1648
- msgid "Not authenticated!"
1649
  msgstr ""
1650
 
1651
- #: inc/class-destination-dropbox.php:81
1652
- msgid "Create Account"
1653
  msgstr ""
1654
 
1655
- #: inc/class-destination-dropbox.php:83
1656
- #: inc/class-destination-sugarsync.php:45
1657
- msgid "Authenticated!"
1658
  msgstr ""
1659
 
1660
- #: inc/class-destination-dropbox.php:92
1661
- #: inc/class-destination-dropbox.php:95
1662
- msgid "Delete Dropbox Authentication"
1663
  msgstr ""
1664
 
1665
- #: inc/class-destination-dropbox.php:102
1666
- msgid "App Access to Dropbox"
1667
  msgstr ""
1668
 
1669
- #: inc/class-destination-dropbox.php:110
1670
- msgid "Get Dropbox App auth code"
1671
  msgstr ""
1672
 
1673
- #: inc/class-destination-dropbox.php:111
1674
- msgid "A dedicated folder named BackWPup will be created inside of the Apps folder in your Dropbox. BackWPup will get read and write access to that folder only. You can specify a subfolder as your backup destination for this job in the destination field below."
1675
  msgstr ""
1676
 
1677
- #: inc/class-destination-dropbox.php:119
1678
- msgid " OR "
1679
  msgstr ""
1680
 
1681
- #: inc/class-destination-dropbox.php:122
1682
- msgid "Full Access to Dropbox"
 
1683
  msgstr ""
1684
 
1685
- #: inc/class-destination-dropbox.php:130
1686
- msgid "Get full Dropbox auth code "
 
1687
  msgstr ""
1688
 
1689
- #: inc/class-destination-dropbox.php:131
1690
- msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup."
1691
  msgstr ""
1692
 
1693
- #: inc/class-destination-dropbox.php:145
1694
- msgid "Destination Folder"
1695
  msgstr ""
1696
 
1697
- #: inc/class-destination-dropbox.php:154
1698
- msgid "Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden."
1699
  msgstr ""
1700
 
1701
- #: inc/class-destination-dropbox.php:162
1702
- #: inc/class-destination-folder.php:40
1703
- #: inc/class-destination-ftp.php:95
1704
- #: inc/class-destination-sugarsync.php:91
1705
- msgid "File Deletion"
1706
  msgstr ""
1707
 
1708
- #: inc/class-destination-dropbox.php:345
1709
- msgid "One file deleted from Dropbox"
1710
- msgid_plural "%d files deleted on Dropbox"
1711
  msgstr[0] ""
1712
 
1713
- #: inc/class-destination-dropbox.php:372
1714
- msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
1715
- msgstr ""
1716
-
1717
- #: inc/class-destination-dropbox.php:390
1718
- msgid "Authenticated with Dropbox of user: %s"
1719
  msgstr ""
1720
 
1721
- #: inc/class-destination-dropbox.php:398
1722
- msgid "%s available on your Dropbox"
1723
  msgstr ""
1724
 
1725
- #: inc/class-destination-dropbox.php:404
1726
- msgid "Not Authenticated with Dropbox!"
 
1727
  msgstr ""
1728
 
1729
- #: inc/class-destination-dropbox.php:408
1730
- msgid "Uploading to Dropbox&#160;&hellip;"
1731
  msgstr ""
1732
 
1733
- #: inc/class-destination-dropbox.php:438
1734
- msgid "Uploaded file size and local file size don't match."
1735
  msgstr ""
1736
 
1737
- #: inc/class-destination-dropbox.php:444
1738
- msgid "Error transfering backup to %s."
1739
  msgstr ""
1740
 
1741
- #: inc/class-destination-dropbox.php:445
1742
- #: backwpup.php:334
1743
- #: vendor_dist/backwpup.php:334
1744
- msgid "Dropbox"
1745
  msgstr ""
1746
 
1747
- #: inc/class-page-settings.php:39
1748
- msgid "Please enter a public key first, or generate a key pair."
1749
  msgstr ""
1750
 
1751
- #: inc/class-page-settings.php:40
1752
- msgid "Please enter your private key."
1753
  msgstr ""
1754
 
1755
- #: inc/class-page-settings.php:41
1756
- msgid "Public key is valid."
1757
  msgstr ""
1758
 
1759
- #: inc/class-page-settings.php:42
1760
- msgid "Public key is invalid."
1761
  msgstr ""
1762
 
1763
- #: inc/class-page-settings.php:43
1764
- msgid "Please download the private key before continuing. If you do not save it locally, you cannot decrypt your backups later."
1765
  msgstr ""
1766
 
1767
- #: inc/class-page-settings.php:88
1768
- msgid "Settings reset to default"
 
1769
  msgstr ""
1770
 
1771
- #: inc/class-page-settings.php:194
1772
- msgid "Settings saved"
1773
  msgstr ""
1774
 
1775
- #: inc/class-page-settings.php:209
1776
- msgid "%s &rsaquo; Settings"
 
1777
  msgstr ""
1778
 
1779
- #: inc/class-page-settings.php:214
1780
- #: inc/class-page-editjob.php:337
1781
- msgid "General"
1782
  msgstr ""
1783
 
1784
- #: inc/class-page-settings.php:217
1785
- msgid "Encryption"
1786
  msgstr ""
1787
 
1788
- #: inc/class-page-settings.php:220
1789
- msgid "Network"
1790
  msgstr ""
1791
 
1792
- #: inc/class-page-settings.php:221
1793
- msgid "API Keys"
1794
  msgstr ""
1795
 
1796
- #: inc/class-page-settings.php:222
1797
- msgid "Information"
1798
  msgstr ""
1799
 
1800
- #: inc/class-page-settings.php:241
1801
- msgid "Display Settings"
1802
  msgstr ""
1803
 
1804
- #: inc/class-page-settings.php:242
1805
- msgid "Do you want to see BackWPup in the WordPress admin bar?"
1806
  msgstr ""
1807
 
1808
- #: inc/class-page-settings.php:245
1809
- msgid "Admin bar"
1810
  msgstr ""
1811
 
1812
- #: inc/class-page-settings.php:250
1813
- msgid "Admin Bar"
1814
  msgstr ""
1815
 
1816
- #: inc/class-page-settings.php:258
1817
- msgid "Show BackWPup links in admin bar."
1818
  msgstr ""
1819
 
1820
- #: inc/class-page-settings.php:264
1821
- #: inc/class-page-settings.php:269
1822
- msgid "Folder sizes"
1823
  msgstr ""
1824
 
1825
- #: inc/class-page-settings.php:277
1826
- msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)"
1827
  msgstr ""
1828
 
1829
- #: inc/class-page-settings.php:286
1830
- msgid "Security"
1831
  msgstr ""
1832
 
1833
- #: inc/class-page-settings.php:287
1834
- msgid "Security option for BackWPup"
 
1835
  msgstr ""
1836
 
1837
- #: inc/class-page-settings.php:290
1838
- #: inc/class-page-settings.php:295
1839
- msgid "Protect folders"
1840
  msgstr ""
1841
 
1842
- #: inc/class-page-settings.php:304
1843
- msgid "Protect BackWPup folders ( Temp, Log and Backups ) with <code>.htaccess</code> and <code>index.php</code>"
1844
  msgstr ""
1845
 
1846
- #: inc/class-page-settings.php:321
1847
- msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them."
1848
  msgstr ""
1849
 
1850
- #: inc/class-page-settings.php:330
1851
- msgid "Log file folder"
1852
  msgstr ""
1853
 
1854
- #: inc/class-page-settings.php:340
1855
- msgid "You can use absolute or relative path! Relative path is relative to %s."
1856
  msgstr ""
1857
 
1858
- #: inc/class-page-settings.php:356
1859
- msgid "Maximum log files"
1860
  msgstr ""
1861
 
1862
- #: inc/class-page-settings.php:363
1863
- msgid "Maximum log files in folder."
1864
  msgstr ""
1865
 
1866
- #: inc/class-page-settings.php:367
1867
- #: inc/class-page-settings.php:370
1868
- msgid "Compression"
1869
  msgstr ""
1870
 
1871
- #: inc/class-page-settings.php:381
1872
- msgid "Compress log files with GZip."
1873
  msgstr ""
1874
 
1875
- #: inc/class-page-settings.php:387
1876
- #: inc/class-page-settings.php:392
1877
- msgid "Logging Level"
1878
  msgstr ""
1879
 
1880
- #: inc/class-page-settings.php:400
1881
- msgid "Normal (translated)"
1882
  msgstr ""
1883
 
1884
- #: inc/class-page-settings.php:404
1885
- msgid "Normal (not translated)"
1886
  msgstr ""
1887
 
1888
- #: inc/class-page-settings.php:408
1889
- msgid "Debug (translated)"
1890
  msgstr ""
1891
 
1892
- #: inc/class-page-settings.php:412
1893
- msgid "Debug (not translated)"
 
1894
  msgstr ""
1895
 
1896
- #: inc/class-page-settings.php:416
1897
- msgid "Debug log has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too."
 
1898
  msgstr ""
1899
 
1900
- #: inc/class-page-settings.php:429
1901
- msgid "There are a couple of general options for backup jobs. Set them here."
 
1902
  msgstr ""
1903
 
1904
- #: inc/class-page-settings.php:437
1905
- msgid "Maximum number of retries for job steps"
 
1906
  msgstr ""
1907
 
1908
- #: inc/class-page-settings.php:450
1909
- msgid "Maximum script execution time"
 
1910
  msgstr ""
1911
 
1912
- #: inc/class-page-settings.php:455
1913
- msgid "Maximum PHP Script execution time"
 
1914
  msgstr ""
1915
 
1916
- #: inc/class-page-settings.php:462
1917
- msgid "seconds."
 
1918
  msgstr ""
1919
 
1920
- #: inc/class-page-settings.php:464
1921
- msgid "Job will restart before hitting maximum execution time. Restarts will be disabled on CLI usage. If <code>ALTERNATE_WP_CRON</code> has been defined, WordPress Cron will be used for restarts, so it can take a while. 0 means no maximum."
 
1922
  msgstr ""
1923
 
1924
- #: inc/class-page-settings.php:476
1925
- msgid "Key to start jobs externally with an URL"
 
1926
  msgstr ""
1927
 
1928
- #: inc/class-page-settings.php:484
1929
- msgid "Will be used to protect job starts from unauthorized person."
 
1930
  msgstr ""
1931
 
1932
- #: inc/class-page-settings.php:492
1933
- #: inc/class-page-settings.php:497
1934
- msgid "Reduce server load"
1935
  msgstr ""
1936
 
1937
- #: inc/class-page-settings.php:505
1938
- msgid "disabled"
 
1939
  msgstr ""
1940
 
1941
- #: inc/class-page-settings.php:509
1942
- msgid "minimum"
 
1943
  msgstr ""
1944
 
1945
- #: inc/class-page-settings.php:513
1946
- msgid "medium"
 
1947
  msgstr ""
1948
 
1949
- #: inc/class-page-settings.php:517
1950
- msgid "maximum"
 
1951
  msgstr ""
1952
 
1953
- #: inc/class-page-settings.php:521
1954
- msgid "This adds short pauses to the process. Can be used to reduce the CPU load."
 
1955
  msgstr ""
1956
 
1957
- #: inc/class-page-settings.php:530
1958
- msgid "Empty output on working"
 
1959
  msgstr ""
1960
 
1961
- #: inc/class-page-settings.php:535
1962
- #: inc/class-page-settings.php:546
1963
- msgid "Enable an empty Output on backup working."
1964
  msgstr ""
1965
 
1966
- #: inc/class-page-settings.php:549
1967
- msgid "This do an empty output on job working. This can help in some situations or can brake the working. You must test it."
 
1968
  msgstr ""
1969
 
1970
- #: inc/class-page-settings.php:558
1971
- msgid "Windows IIS compatibility"
1972
  msgstr ""
1973
 
1974
- #: inc/class-page-settings.php:563
1975
- #: inc/class-page-settings.php:574
1976
- msgid "Enable compatibility with IIS on Windows."
1977
  msgstr ""
1978
 
1979
- #: inc/class-page-settings.php:577
1980
- msgid "There is a PHP bug (<a href=\"https://bugs.php.net/43817\">bug #43817</a>), which is triggered on some versions of Windows and IIS. Checking this box will enable a workaround for that bug. Only enable if you are getting errors about &ldquo;Permission denied&rdquo; in your logs."
1981
  msgstr ""
1982
 
1983
- #: inc/class-page-settings.php:593
1984
- msgid "Here you can set your keys for encrypting your backups."
 
 
 
 
1985
  msgstr ""
1986
 
1987
- #: inc/class-page-settings.php:601
1988
- msgid "If you select symmetric encryption (default), you can generate a 256-bit key by clicking <code>Generate Key</code>."
1989
  msgstr ""
1990
 
1991
- #: inc/class-page-settings.php:611
1992
- msgid "If you select asymmetric encryption (more secure), you must have an RSA public/private key pair. You would enter the public key in the <code>Public Key</code> field. If you do not have a key pair, click <code>Generate Key Pair</code> and they will be generated for you."
1993
  msgstr ""
1994
 
1995
- #: inc/class-page-settings.php:621
1996
- msgid "<strong>Note</strong>: You will be asked to download the keys for safe storage. We do not keep a copy of the private key, so if you lose this, your data cannot be decrypted!"
1997
  msgstr ""
1998
 
1999
- #: inc/class-page-settings.php:631
2000
- msgid "You can also click <code>Validate</code> to validate that you have the proper private key for the given public key."
2001
  msgstr ""
2002
 
2003
- #: inc/class-page-settings.php:642
2004
- msgid "Encryption Type"
2005
  msgstr ""
2006
 
2007
- #: inc/class-page-settings.php:649
2008
- msgid "Symmetric (public key only)"
2009
  msgstr ""
2010
 
2011
- #: inc/class-page-settings.php:655
2012
- msgid "Asymmetric (public and private key)"
2013
  msgstr ""
2014
 
2015
- #: inc/class-page-settings.php:661
2016
- #: inc/class-page-settings.php:667
2017
- msgid "Encryption Key"
2018
  msgstr ""
2019
 
2020
- #: inc/class-page-settings.php:672
2021
- msgid "Key"
 
 
2022
  msgstr ""
2023
 
2024
- #: inc/class-page-settings.php:684
2025
- msgid "Click below to generate a random key."
 
 
2026
  msgstr ""
2027
 
2028
- #: inc/class-page-settings.php:687
2029
- msgid "Generate Key"
2030
  msgstr ""
2031
 
2032
- #: inc/class-page-settings.php:696
2033
- #: inc/class-page-settings.php:701
2034
- #: inc/class-page-settings.php:762
2035
- msgid "Public Key"
2036
  msgstr ""
2037
 
2038
- #: inc/class-page-settings.php:704
2039
- msgid "RSA Public Key"
2040
  msgstr ""
2041
 
2042
- #: inc/class-page-settings.php:716
2043
- #: inc/class-page-settings.php:717
2044
- msgid "Generate Key Pair"
2045
  msgstr ""
2046
 
2047
- #: inc/class-page-settings.php:722
2048
- msgid "Validate Key"
2049
  msgstr ""
2050
 
2051
- #: inc/class-page-settings.php:723
2052
- #: inc/class-page-settings.php:748
2053
- msgid "Validate"
2054
  msgstr ""
2055
 
2056
- #: inc/class-page-settings.php:735
2057
- msgid "Enter your private key below to validate it will work with the provided public key."
2058
  msgstr ""
2059
 
2060
- #: inc/class-page-settings.php:738
2061
- msgid "The private key will not be stored, so you must still securely store it yourself."
2062
  msgstr ""
2063
 
2064
- #: inc/class-page-settings.php:754
2065
- msgid "Your keys are being generated. Please hold a moment &hellip;"
2066
  msgstr ""
2067
 
2068
- #: inc/class-page-settings.php:758
2069
- msgid "Here are your keys. Please store them in a safe location."
 
 
 
 
 
2070
  msgstr ""
2071
 
2072
- #: inc/class-page-settings.php:783
2073
- msgid "Please download at least your private key above, as we will not store this key, and if you lose it, your backups cannot be decrypted."
2074
  msgstr ""
2075
 
2076
- #: inc/class-page-settings.php:786
2077
- msgid "Click the button below to use these keys and paste the public key into the RSA public key field above."
2078
  msgstr ""
2079
 
2080
- #: inc/class-page-settings.php:790
2081
- msgid "Use These Keys"
2082
  msgstr ""
2083
 
2084
- #: inc/class-page-settings.php:801
2085
- msgid "Authentication for <code>%s</code>"
2086
  msgstr ""
2087
 
2088
- #: inc/class-page-settings.php:808
2089
- msgid "If you protected your blog with HTTP basic authentication (.htaccess), or you use a Plugin to secure wp-cron.php, then use the authentication methods below."
2090
  msgstr ""
2091
 
2092
- #: inc/class-page-settings.php:824
2093
- #: inc/class-page-settings.php:829
2094
- msgid "Authentication method"
2095
  msgstr ""
2096
 
2097
- #: inc/class-page-settings.php:841
2098
- msgid "Basic auth"
2099
  msgstr ""
2100
 
2101
- #: inc/class-page-settings.php:845
2102
- msgid "WordPress User"
2103
  msgstr ""
2104
 
2105
- #: inc/class-page-settings.php:849
2106
- msgid "Query argument"
2107
  msgstr ""
2108
 
2109
- #: inc/class-page-settings.php:860
2110
- msgid "Basic Auth Username:"
2111
  msgstr ""
2112
 
2113
- #: inc/class-page-settings.php:877
2114
- msgid "Basic Auth Password:"
2115
  msgstr ""
2116
 
2117
- #: inc/class-page-settings.php:891
2118
- #: inc/class-page-settings.php:894
2119
- msgid "Select WordPress User"
2120
  msgstr ""
2121
 
2122
- #: inc/class-page-settings.php:927
2123
- msgid "Query arg key=value:"
2124
  msgstr ""
2125
 
2126
- #: inc/class-page-settings.php:955
2127
- msgid "Experiencing an issue and need to contact BackWPup support? Click the link below to get debug information you can send to us."
2128
  msgstr ""
2129
 
2130
- #: inc/class-page-settings.php:962
2131
- msgid "Debug Info"
2132
  msgstr ""
2133
 
2134
- #: inc/class-page-settings.php:966
2135
- msgid "Get Debug Info"
2136
  msgstr ""
2137
 
2138
- #: inc/class-page-settings.php:973
2139
- msgid "You will find debug information below. Click the button to copy the debug info to send to support."
2140
  msgstr ""
2141
 
2142
- #: inc/class-page-settings.php:981
2143
- msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
2144
  msgstr ""
2145
 
2146
- #: inc/class-page-settings.php:988
2147
- msgid "https://backwpup.com"
2148
  msgstr ""
2149
 
2150
- #: inc/class-page-settings.php:989
2151
- msgid "Get Pro"
2152
  msgstr ""
2153
 
2154
- #: inc/class-page-settings.php:1000
2155
- msgid "Copy Debug Info"
2156
  msgstr ""
2157
 
2158
- #: inc/class-page-settings.php:1005
2159
- msgid "Debug info copied to clipboard."
2160
  msgstr ""
2161
 
2162
- #: inc/class-page-settings.php:1013
2163
- msgid "Could not copy debug info. You can simply press ctrl+C to copy it."
2164
  msgstr ""
2165
 
2166
- #: inc/class-page-settings.php:1066
2167
- #: inc/class-page-settings.php:1070
2168
- msgid "Setting"
2169
  msgstr ""
2170
 
2171
- #: inc/class-page-settings.php:1066
2172
- #: inc/class-page-settings.php:1070
2173
- msgid "Value"
2174
  msgstr ""
2175
 
2176
- #: inc/class-page-settings.php:1089
2177
- msgid "Save Changes"
2178
  msgstr ""
2179
 
2180
- #: inc/class-page-settings.php:1094
2181
- msgid "Reset all settings to default"
2182
  msgstr ""
2183
 
2184
- #: inc/class-page-settings.php:1115
2185
- msgid "WordPress version"
2186
  msgstr ""
2187
 
2188
- #: inc/class-page-settings.php:1120
2189
- msgid "BackWPup version"
 
 
2190
  msgstr ""
2191
 
2192
- #: inc/class-page-settings.php:1124
2193
- msgid "Get pro."
2194
  msgstr ""
2195
 
2196
- #: inc/class-page-settings.php:1126
2197
- msgid "BackWPup Pro version"
2198
  msgstr ""
2199
 
2200
- #: inc/class-page-settings.php:1131
2201
- msgid "PHP version"
2202
  msgstr ""
2203
 
2204
- #: inc/class-page-settings.php:1141
2205
- msgid "MySQL version"
2206
  msgstr ""
2207
 
2208
- #: inc/class-page-settings.php:1145
2209
- msgid "cURL version"
2210
  msgstr ""
2211
 
2212
- #: inc/class-page-settings.php:1149
2213
- msgid "cURL SSL version"
2214
  msgstr ""
2215
 
2216
- #: inc/class-page-settings.php:1152
2217
- msgid "unavailable"
2218
  msgstr ""
2219
 
2220
- #: inc/class-page-settings.php:1156
2221
- msgid "WP-Cron url"
 
2222
  msgstr ""
2223
 
2224
- #: inc/class-page-settings.php:1160
2225
- msgid "Server self connect"
2226
  msgstr ""
2227
 
2228
- #: inc/class-page-settings.php:1166
2229
- msgid "Not expected HTTP response:"
2230
  msgstr ""
2231
 
2232
- #: inc/class-page-settings.php:1167
2233
- msgid "<strong>Not expected HTTP response:</strong><br>"
2234
  msgstr ""
2235
 
2236
- #: inc/class-page-settings.php:1170
2237
- msgid "WP Http Error: %s"
2238
  msgstr ""
2239
 
2240
- #: inc/class-page-settings.php:1174
2241
- msgid "WP Http Error: <code>%s</code>"
2242
  msgstr ""
2243
 
2244
- #: inc/class-page-settings.php:1178
2245
- msgid "Status-Code: %d"
 
2246
  msgstr ""
2247
 
2248
- #: inc/class-page-settings.php:1180
2249
- msgid "Status-Code: <code>%d</code>"
 
 
 
2250
  msgstr ""
2251
 
2252
- #: inc/class-page-settings.php:1193
2253
- msgid "Content: %s"
2254
  msgstr ""
2255
 
2256
- #: inc/class-page-settings.php:1195
2257
- msgid "Content: <code>%s</code>"
2258
  msgstr ""
2259
 
2260
- #: inc/class-page-settings.php:1200
2261
- msgid "Response Test O.K."
 
 
 
 
 
 
 
2262
  msgstr ""
2263
 
2264
- #: inc/class-page-settings.php:1209
2265
- msgid "Temp folder"
2266
  msgstr ""
2267
 
2268
- #: inc/class-page-settings.php:1212
2269
- msgid "Temp folder %s doesn't exist."
2270
  msgstr ""
2271
 
2272
- #: inc/class-page-settings.php:1217
2273
- msgid "Temporary folder %s is not writable."
2274
  msgstr ""
2275
 
2276
- #: inc/class-page-settings.php:1225
2277
- msgid "Log folder"
2278
  msgstr ""
2279
 
2280
- #: inc/class-page-settings.php:1231
2281
- msgid "Log folder %s does not exist."
2282
  msgstr ""
2283
 
2284
- #: inc/class-page-settings.php:1236
2285
- msgid "Log folder %s is not writable."
 
2286
  msgstr ""
2287
 
2288
- #: inc/class-page-settings.php:1244
2289
- msgid "Server"
2290
  msgstr ""
2291
 
2292
- #: inc/class-page-settings.php:1248
2293
- msgid "Operating System"
2294
  msgstr ""
2295
 
2296
- #: inc/class-page-settings.php:1252
2297
- msgid "PHP SAPI"
2298
  msgstr ""
2299
 
2300
- #: inc/class-page-settings.php:1256
2301
- msgid "Current PHP user"
2302
  msgstr ""
2303
 
2304
- #: inc/class-page-settings.php:1260
2305
- msgid "Function Disabled"
2306
  msgstr ""
2307
 
2308
- #: inc/class-page-settings.php:1264
2309
- msgid "Maximum execution time"
2310
  msgstr ""
2311
 
2312
- #: inc/class-page-settings.php:1266
2313
- #: inc/class-page-settings.php:1273
2314
- msgid "%d seconds"
2315
  msgstr ""
2316
 
2317
- #: inc/class-page-settings.php:1271
2318
- msgid "BackWPup maximum script execution time"
2319
  msgstr ""
2320
 
2321
- #: inc/class-page-settings.php:1278
2322
- msgid "Alternative WP Cron"
2323
  msgstr ""
2324
 
2325
- #: inc/class-page-settings.php:1280
2326
- #: inc/class-page-settings.php:1288
2327
- msgid "On"
2328
  msgstr ""
2329
 
2330
- #: inc/class-page-settings.php:1282
2331
- #: inc/class-page-settings.php:1290
2332
- msgid "Off"
2333
  msgstr ""
2334
 
2335
- #: inc/class-page-settings.php:1286
2336
- msgid "Disabled WP Cron"
2337
  msgstr ""
2338
 
2339
- #: inc/class-page-settings.php:1294
2340
- msgid "CHMOD Dir"
2341
  msgstr ""
2342
 
2343
- #: inc/class-page-settings.php:1302
2344
- msgid "Server Time"
2345
  msgstr ""
2346
 
2347
- #: inc/class-page-settings.php:1307
2348
- msgid "Blog Time"
2349
  msgstr ""
2350
 
2351
- #: inc/class-page-settings.php:1311
2352
- msgid "Blog Timezone"
2353
  msgstr ""
2354
 
2355
- #: inc/class-page-settings.php:1315
2356
- msgid "Blog Time offset"
2357
  msgstr ""
2358
 
2359
- #: inc/class-page-settings.php:1317
2360
- msgid "%s hours"
2361
  msgstr ""
2362
 
2363
- #: inc/class-page-settings.php:1322
2364
- msgid "Blog language"
2365
  msgstr ""
2366
 
2367
- #: inc/class-page-settings.php:1326
2368
- msgid "MySQL Client encoding"
2369
  msgstr ""
2370
 
2371
- #: inc/class-page-settings.php:1330
2372
- msgid "PHP Memory limit"
 
2373
  msgstr ""
2374
 
2375
- #: inc/class-page-settings.php:1334
2376
- msgid "WP memory limit"
2377
  msgstr ""
2378
 
2379
- #: inc/class-page-settings.php:1338
2380
- msgid "WP maximum memory limit"
 
 
 
 
 
 
 
 
 
 
 
2381
  msgstr ""
2382
 
2383
- #: inc/class-page-settings.php:1342
2384
- msgid "Memory in use"
2385
  msgstr ""
2386
 
2387
- #: inc/class-page-settings.php:1348
2388
- msgid "Disabled PHP Functions:"
2389
  msgstr ""
2390
 
2391
- #: inc/class-page-settings.php:1353
2392
- msgid "Loaded PHP Extensions:"
2393
  msgstr ""
2394
 
2395
- #: inc/class-download-file.php:135
2396
- msgid "Invalid file name, seems file include invalid characters."
 
 
2397
  msgstr ""
2398
 
2399
- #: inc/class-message-box.php:89
2400
- msgid "Dismiss"
 
 
2401
  msgstr ""
2402
 
2403
- #: inc/class-page-about.php:371
2404
  msgid "Welcome to BackWPup Pro"
2405
  msgstr ""
2406
 
2407
- #: inc/class-page-about.php:372
2408
  #: inc/class-page-backwpup.php:75
2409
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2410
  msgstr ""
2411
 
2412
- #: inc/class-page-about.php:373
2413
- #: inc/class-page-about.php:386
2414
- msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2415
  msgstr ""
2416
 
2417
- #: inc/class-page-about.php:374
2418
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2419
  msgstr ""
2420
 
2421
- #: inc/class-page-about.php:384
2422
  msgid "Welcome to BackWPup"
2423
  msgstr ""
2424
 
2425
- #: inc/class-page-about.php:387
2426
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2427
  msgstr ""
2428
 
2429
- #: inc/class-page-about.php:400
2430
  msgid "Save your database"
2431
  msgstr ""
2432
 
2433
- #: inc/class-page-about.php:403
2434
  msgid "Save your database regularly"
2435
  msgstr ""
2436
 
2437
- #: inc/class-page-about.php:404
2438
  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."
2439
  msgstr ""
2440
 
2441
- #: inc/class-page-about.php:409
2442
- #: inc/class-page-about.php:413
2443
  msgid "WordPress XML Export"
2444
  msgstr ""
2445
 
2446
- #: inc/class-page-about.php:410
2447
  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."
2448
  msgstr ""
2449
 
2450
- #: inc/class-page-about.php:418
2451
  msgid "Save all data from the webserver"
2452
  msgstr ""
2453
 
2454
- #: inc/class-page-about.php:421
2455
  msgid "Save all files"
2456
  msgstr ""
2457
 
2458
- #: inc/class-page-about.php:422
2459
  msgid "You can backup 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."
2460
  msgstr ""
2461
 
2462
- #: inc/class-page-about.php:427
2463
- #: inc/class-page-about.php:431
2464
  msgid "Security!"
2465
  msgstr ""
2466
 
2467
- #: inc/class-page-about.php:428
2468
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2469
  msgstr ""
2470
 
2471
- #: inc/class-page-about.php:436
2472
- #: inc/class-page-about.php:439
2473
  msgid "Cloud Support"
2474
  msgstr ""
2475
 
2476
- #: inc/class-page-about.php:440
2477
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2478
  msgstr ""
2479
 
2480
- #: inc/class-page-about.php:446
2481
  msgid "Features / differences between Free and Pro"
2482
  msgstr ""
2483
 
2484
- #: inc/class-page-about.php:449
2485
  msgid "Features"
2486
  msgstr ""
2487
 
2488
- #: inc/class-page-about.php:450
2489
  msgid "FREE"
2490
  msgstr ""
2491
 
2492
- #: inc/class-page-about.php:451
2493
  msgid "PRO"
2494
  msgstr ""
2495
 
2496
- #: inc/class-page-about.php:454
2497
  msgid "Complete database backup"
2498
  msgstr ""
2499
 
2500
- #: inc/class-page-about.php:459
2501
  msgid "Complete file backup"
2502
  msgstr ""
2503
 
2504
- #: inc/class-page-about.php:464
2505
  msgid "Database check"
2506
  msgstr ""
2507
 
2508
- #: inc/class-page-about.php:469
2509
  msgid "Data compression"
2510
  msgstr ""
2511
 
2512
- #: inc/class-page-about.php:479
2513
  msgid "List of installed plugins"
2514
  msgstr ""
2515
 
2516
- #: inc/class-page-about.php:484
2517
  msgid "Backup archives management"
2518
  msgstr ""
2519
 
2520
- #: inc/class-page-about.php:489
2521
  msgid "Log file management"
2522
  msgstr ""
2523
 
2524
- #: inc/class-page-about.php:494
2525
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
2526
  msgstr ""
2527
 
2528
- #: inc/class-page-about.php:499
2529
  msgid "Log report via email"
2530
  msgstr ""
2531
 
2532
- #: inc/class-page-about.php:504
2533
  msgid "Backup to Microsoft Azure"
2534
  msgstr ""
2535
 
2536
- #: inc/class-page-about.php:509
2537
  msgid "Backup as email"
2538
  msgstr ""
2539
 
2540
- #: inc/class-page-about.php:514
2541
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
2542
  msgstr ""
2543
 
2544
- #: inc/class-page-about.php:519
2545
- #: backwpup.php:335
2546
- #: vendor_dist/backwpup.php:335
2547
- msgid "Backup to Dropbox"
2548
  msgstr ""
2549
 
2550
- #: inc/class-page-about.php:524
2551
- #: backwpup.php:388
2552
- #: vendor_dist/backwpup.php:388
2553
- msgid "Backup to Rackspace Cloud Files"
2554
  msgstr ""
2555
 
2556
- #: inc/class-page-about.php:529
2557
- msgid "Backup to FTP server"
2558
  msgstr ""
2559
 
2560
- #: inc/class-page-about.php:534
2561
- msgid "Backup to your web space"
2562
  msgstr ""
2563
 
2564
- #: inc/class-page-about.php:539
2565
- #: backwpup.php:408
2566
- #: vendor_dist/backwpup.php:408
2567
- msgid "Backup to SugarSync"
 
 
2568
  msgstr ""
2569
 
2570
- #: inc/class-page-about.php:544
2571
  msgid "Backup to Google Drive"
2572
  msgstr ""
2573
 
2574
- #: inc/class-page-about.php:549
2575
  msgid "Backup to Amazon Glacier"
2576
  msgstr ""
2577
 
2578
- #: inc/class-page-about.php:554
2579
  msgid "Custom API keys for DropBox and SugarSync"
2580
  msgstr ""
2581
 
2582
- #: inc/class-page-about.php:559
2583
  msgid "XML database backup as PHPMyAdmin schema"
2584
  msgstr ""
2585
 
2586
- #: inc/class-page-about.php:564
2587
  msgid "Database backup as mysqldump per command line"
2588
  msgstr ""
2589
 
2590
- #: inc/class-page-about.php:569
2591
  msgid "Database backup for additional MySQL databases"
2592
  msgstr ""
2593
 
2594
- #: inc/class-page-about.php:574
2595
  msgid "Import and export job settings as XML"
2596
  msgstr ""
2597
 
2598
- #: inc/class-page-about.php:579
2599
  msgid "Wizard for system tests"
2600
  msgstr ""
2601
 
2602
- #: inc/class-page-about.php:584
2603
  msgid "Wizard for scheduled backup jobs"
2604
  msgstr ""
2605
 
2606
- #: inc/class-page-about.php:589
2607
  msgid "Wizard to import settings and backup jobs"
2608
  msgstr ""
2609
 
2610
- #: inc/class-page-about.php:594
2611
  msgid "Differential backup of changed directories to Dropbox"
2612
  msgstr ""
2613
 
2614
- #: inc/class-page-about.php:599
2615
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
2616
  msgstr ""
2617
 
2618
- #: inc/class-page-about.php:604
2619
  msgid "Differential backup of changed directories to S3"
2620
  msgstr ""
2621
 
2622
- #: inc/class-page-about.php:609
2623
  msgid "Differential backup of changed directories to MS Azure"
2624
  msgstr ""
2625
 
2626
- #: inc/class-page-about.php:614
2627
  msgid "Restore from Folder"
2628
  msgstr ""
2629
 
2630
- #: inc/class-page-about.php:619
2631
  msgid "Restore from Google Drive"
2632
  msgstr ""
2633
 
2634
- #: inc/class-page-about.php:624
2635
  msgid "Restore from Amazon S3"
2636
  msgstr ""
2637
 
2638
- #: inc/class-page-about.php:629
2639
  msgid "Restore from Dropbox"
2640
  msgstr ""
2641
 
2642
- #: inc/class-page-about.php:634
2643
  msgid "Restore from FTP"
2644
  msgstr ""
2645
 
2646
- #: inc/class-page-about.php:639
2647
  msgid "<strong>Premium support</strong>"
2648
  msgstr ""
2649
 
2650
- #: inc/class-page-about.php:644
2651
  msgid "<strong>Automatic updates</strong>"
2652
  msgstr ""
2653
 
2654
- #: inc/class-page-about.php:651
2655
  msgid "GET PRO"
2656
  msgstr ""
2657
 
2658
- #: inc/class-jobtype-dbdump.php:13
2659
- msgid "DB Backup"
2660
  msgstr ""
2661
 
2662
- #: inc/class-jobtype-dbdump.php:14
2663
- msgid "Database backup"
 
 
 
 
 
2664
  msgstr ""
2665
 
2666
- #: inc/class-jobtype-dbdump.php:60
2667
- msgid "Settings for database backup"
2668
  msgstr ""
2669
 
2670
- #: inc/class-jobtype-dbdump.php:64
2671
- msgid "Tables to backup"
 
 
 
2672
  msgstr ""
2673
 
2674
- #: inc/class-jobtype-dbdump.php:66
2675
- msgid "all"
2676
  msgstr ""
2677
 
2678
- #: inc/class-jobtype-dbdump.php:91
2679
- msgid "Backup file name"
 
2680
  msgstr ""
2681
 
2682
- #: inc/class-jobtype-dbdump.php:99
2683
- msgid "Backup file compression"
 
 
2684
  msgstr ""
2685
 
2686
- #: inc/class-jobtype-dbdump.php:159
2687
- msgid "%d. Try to backup database&#160;&hellip;"
 
 
 
 
 
2688
  msgstr ""
2689
 
2690
- #: inc/class-jobtype-dbdump.php:173
2691
- msgid "Connected to database %1$s on %2$s"
2692
  msgstr ""
2693
 
2694
- #: inc/class-jobtype-dbdump.php:187
2695
- msgid "No tables to backup."
2696
  msgstr ""
2697
 
2698
- #: inc/class-jobtype-dbdump.php:210
2699
- msgid "Backup database table \"%s\" with \"%s\" records"
 
 
 
 
2700
  msgstr ""
2701
 
2702
- #: inc/class-jobtype-dbdump.php:250
2703
- msgid "MySQL backup file not created"
 
 
 
2704
  msgstr ""
2705
 
2706
- #: inc/class-jobtype-dbdump.php:254
2707
- msgid "Added database dump \"%1$s\" with %2$s to backup file list"
2708
  msgstr ""
2709
 
2710
- #: inc/class-jobtype-dbdump.php:260
2711
- msgid "Database backup done!"
2712
  msgstr ""
2713
 
2714
- #: inc/class-destination-folder.php:32
2715
- msgid "Folder to store backups in"
2716
  msgstr ""
2717
 
2718
- #: inc/class-destination-folder.php:219
2719
- msgid "One backup file deleted"
2720
- msgid_plural "%d backup files deleted"
2721
- msgstr[0] ""
2722
 
2723
- #: inc/class-destination-s3-downloader.php:76
2724
- msgid "Could not write data to file. Empty source file."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2725
  msgstr ""
2726
 
2727
  #: inc/class-page-backwpup.php:67
@@ -2747,7 +2797,7 @@ msgstr ""
2747
 
2748
  #: inc/class-page-backwpup.php:77
2749
  #: inc/class-page-backwpup.php:86
2750
- msgid "With a single backup archive you are able to restore an installation. Use a tool like phpMyAdmin to restore your database backup files."
2751
  msgstr ""
2752
 
2753
  #: inc/class-page-backwpup.php:78
@@ -2909,6 +2959,11 @@ msgstr ""
2909
  msgid "working since %d seconds"
2910
  msgstr ""
2911
 
 
 
 
 
 
2912
  #: inc/class-page-backwpup.php:325
2913
  msgid "Edit Job"
2914
  msgstr ""
@@ -2939,608 +2994,608 @@ msgstr[0] ""
2939
  msgid "OK"
2940
  msgstr ""
2941
 
2942
- #: inc/class-jobtype-dbcheck.php:13
2943
- msgid "DB Check"
2944
  msgstr ""
2945
 
2946
- #: inc/class-jobtype-dbcheck.php:14
2947
- msgid "Check database tables"
2948
  msgstr ""
2949
 
2950
- #: inc/class-jobtype-dbcheck.php:35
2951
- msgid "Settings for database check"
2952
  msgstr ""
2953
 
2954
- #: inc/class-jobtype-dbcheck.php:39
2955
- msgid "WordPress tables only"
 
2956
  msgstr ""
2957
 
2958
- #: inc/class-jobtype-dbcheck.php:44
2959
- msgid "Check WordPress database tables only"
2960
  msgstr ""
2961
 
2962
- #: inc/class-jobtype-dbcheck.php:49
2963
- msgid "Repair"
 
2964
  msgstr ""
2965
 
2966
- #: inc/class-jobtype-dbcheck.php:54
2967
- msgid "Try to repair defect table"
2968
  msgstr ""
2969
 
2970
- #: inc/class-jobtype-dbcheck.php:79
2971
- msgid "%d. Trying to check database&#160;&hellip;"
2972
  msgstr ""
2973
 
2974
- #: inc/class-jobtype-dbcheck.php:111
2975
- msgid "Table %1$s is a view. Not checked."
 
 
 
 
 
 
2976
  msgstr ""
2977
 
2978
- #: inc/class-jobtype-dbcheck.php:116
2979
- msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked."
2980
  msgstr ""
2981
 
2982
- #: inc/class-jobtype-dbcheck.php:124
2983
- #: inc/class-jobtype-dbcheck.php:127
2984
- #: inc/class-jobtype-dbcheck.php:129
2985
- msgid "Result of table check for %1$s is: %2$s"
2986
  msgstr ""
2987
 
2988
- #: inc/class-jobtype-dbcheck.php:135
2989
- #: inc/class-jobtype-dbcheck.php:137
2990
- #: inc/class-jobtype-dbcheck.php:139
2991
- msgid "Result of table repair for %1$s is: %2$s"
2992
  msgstr ""
2993
 
2994
- #: inc/class-jobtype-dbcheck.php:145
2995
- msgid "Database check done!"
2996
  msgstr ""
2997
 
2998
- #: inc/class-jobtype-dbcheck.php:148
2999
- msgid "No tables to check."
 
3000
  msgstr ""
3001
 
3002
- #: inc/class-jobtype-file.php:13
3003
- msgid "Files"
3004
  msgstr ""
3005
 
3006
- #: inc/class-jobtype-file.php:14
3007
- msgid "File backup"
3008
  msgstr ""
3009
 
3010
- #: inc/class-jobtype-file.php:71
3011
- msgid "Folders to backup"
3012
  msgstr ""
3013
 
3014
- #: inc/class-jobtype-file.php:75
3015
- msgid "Backup WordPress install folder"
3016
  msgstr ""
3017
 
3018
- #: inc/class-jobtype-file.php:83
3019
- msgid "Backup content folder"
3020
  msgstr ""
3021
 
3022
- #: inc/class-jobtype-file.php:91
3023
- msgid "Backup plugins"
3024
  msgstr ""
3025
 
3026
- #: inc/class-jobtype-file.php:99
3027
- msgid "Backup themes"
3028
  msgstr ""
3029
 
3030
- #: inc/class-jobtype-file.php:107
3031
- msgid "Backup uploads folder"
3032
  msgstr ""
3033
 
3034
- #: inc/class-jobtype-file.php:115
3035
- msgid "Extra folders to backup"
3036
  msgstr ""
3037
 
3038
- #: inc/class-jobtype-file.php:118
3039
- msgid "Separate folder names with a line-break or a comma. Folders must be set with their absolute path!"
3040
  msgstr ""
3041
 
3042
- #: inc/class-jobtype-file.php:123
3043
- msgid "Exclude from backup"
3044
  msgstr ""
3045
 
3046
- #: inc/class-jobtype-file.php:127
3047
- msgid "Thumbnails in uploads"
3048
  msgstr ""
3049
 
3050
- #: inc/class-jobtype-file.php:129
3051
- msgid "Don't backup thumbnails from the site's uploads folder."
3052
  msgstr ""
3053
 
3054
- #: inc/class-jobtype-file.php:133
3055
- msgid "Exclude files/folders from backup"
3056
  msgstr ""
3057
 
3058
- #: inc/class-jobtype-file.php:136
3059
- msgid "Separate file / folder name parts with a line-break or a comma. For example /logs/,.log,.tmp"
3060
  msgstr ""
3061
 
3062
- #: inc/class-jobtype-file.php:141
3063
- msgid "Special options"
3064
  msgstr ""
3065
 
3066
- #: inc/class-jobtype-file.php:145
3067
- msgid "Include special files"
3068
  msgstr ""
3069
 
3070
- #: inc/class-jobtype-file.php:147
3071
- msgid "Backup wp-config.php, robots.txt, nginx.conf, .htaccess, .htpasswd, favicon.ico, and Web.config from root if it is not included in backup."
3072
  msgstr ""
3073
 
3074
- #: inc/class-jobtype-file.php:151
3075
- msgid "Use one folder above as WP install folder"
3076
  msgstr ""
3077
 
3078
- #: inc/class-jobtype-file.php:154
3079
- msgid "Use one folder above as WordPress install folder! That can be helpful, if you would backup files and folder that are not in the WordPress installation folder. Or if you made a \"<a href=\"https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory\">Giving WordPress Its Own Directory</a>\" installation. Excludes must be configured again."
3080
  msgstr ""
3081
 
3082
- #: inc/class-jobtype-file.php:238
3083
- msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
3084
  msgstr ""
3085
 
3086
- #: inc/class-jobtype-file.php:358
3087
- #: inc/class-jobtype-file.php:362
3088
- #: inc/class-jobtype-file.php:379
3089
- msgid "Added \"%s\" to backup file list"
3090
  msgstr ""
3091
 
3092
- #: inc/class-jobtype-file.php:385
3093
- msgid "No files/folder for the backup."
 
3094
  msgstr ""
3095
 
3096
- #: inc/class-jobtype-file.php:387
3097
- msgid "%1$d folders to backup."
3098
  msgstr ""
3099
 
3100
- #: inc/class-jobtype-file.php:435
3101
- msgid "Folder \"%s\" is not readable!"
3102
  msgstr ""
3103
 
3104
- #: inc/class-jobtype-file.php:495
3105
- msgid "Path as set by user (symlink?): %s"
 
3106
  msgstr ""
3107
 
3108
- #: inc/class-jobtype-file.php:498
3109
- msgid "Exclude:"
 
3110
  msgstr ""
3111
 
3112
- #: inc/class-jobtype-file.php:510
3113
- msgid "Excluded by .donotbackup file!"
 
3114
  msgstr ""
3115
 
3116
- #: inc/class-job.php:269
3117
- msgid "Starting job"
3118
  msgstr ""
3119
 
3120
- #: inc/class-job.php:284
3121
- msgid "Job Start"
 
 
3122
  msgstr ""
3123
 
3124
- #: inc/class-job.php:304
3125
- msgid "Creates manifest file"
3126
  msgstr ""
3127
 
3128
- #: inc/class-job.php:326
3129
- msgid "Creates archive"
3130
  msgstr ""
3131
 
3132
- #: inc/class-job.php:332
3133
- msgid "Encrypts the archive"
 
3134
  msgstr ""
3135
 
3136
- #: inc/class-job.php:373
3137
- msgid "End of Job"
3138
  msgstr ""
3139
 
3140
- #: inc/class-job.php:395
3141
- msgid "BackWPup log for %1$s from %2$s at %3$s"
3142
  msgstr ""
3143
 
3144
- #: inc/class-job.php:412
3145
- msgctxt "Plugin name; Plugin Version; plugin url"
3146
- msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
3147
  msgstr ""
3148
 
3149
- #: inc/class-job.php:413
3150
- msgctxt "WordPress Version; Blog url"
3151
- msgid "[INFO] WordPress %1$s on %2$s"
3152
  msgstr ""
3153
 
3154
- #: inc/class-job.php:414
3155
- msgid "Normal"
3156
  msgstr ""
3157
 
3158
- #: inc/class-job.php:417
3159
- msgid "Debug"
3160
  msgstr ""
3161
 
3162
- #: inc/class-job.php:420
3163
- msgid "(translated)"
3164
  msgstr ""
3165
 
3166
- #: inc/class-job.php:422
3167
- msgid "[INFO] Log Level: %1$s %2$s"
3168
  msgstr ""
3169
 
3170
- #: inc/class-job.php:427
3171
- msgid "[INFO] BackWPup job: %1$s"
 
3172
  msgstr ""
3173
 
3174
- #: inc/class-job.php:430
3175
- msgid "[INFO] Runs with user: %1$s (%2$d) "
3176
  msgstr ""
3177
 
3178
- #: inc/class-job.php:448
3179
- #: inc/class-job.php:458
3180
- msgid "[INFO] Cron: %s; Next: %s "
3181
  msgstr ""
3182
 
3183
- #: inc/class-job.php:451
3184
- msgid "[INFO] BackWPup job start with link is active"
3185
  msgstr ""
3186
 
3187
- #: inc/class-job.php:453
3188
- msgid "[INFO] BackWPup job start with EasyCron.com"
3189
  msgstr ""
3190
 
3191
- #: inc/class-job.php:461
3192
- msgid "[INFO] BackWPup no automatic job start configured"
3193
  msgstr ""
3194
 
3195
- #: inc/class-job.php:465
3196
- msgid "[INFO] BackWPup job started from wp-cron"
3197
  msgstr ""
3198
 
3199
- #: inc/class-job.php:467
3200
- msgid "[INFO] BackWPup job started manually"
3201
  msgstr ""
3202
 
3203
- #: inc/class-job.php:469
3204
- msgid "[INFO] BackWPup job started from external url"
3205
  msgstr ""
3206
 
3207
- #: inc/class-job.php:471
3208
- msgid "[INFO] BackWPup job started form commandline interface"
3209
  msgstr ""
3210
 
3211
- #: inc/class-job.php:480
3212
- msgid "[INFO] PHP ver.:"
 
3213
  msgstr ""
3214
 
3215
- #: inc/class-job.php:481
3216
- msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
3217
  msgstr ""
3218
 
3219
- #: inc/class-job.php:485
3220
- msgid "[INFO] Script restart time is configured to %1$d seconds"
3221
  msgstr ""
3222
 
3223
- #: inc/class-job.php:488
3224
- msgid "[INFO] MySQL ver.: %s"
 
3225
  msgstr ""
3226
 
3227
- #: inc/class-job.php:490
3228
- msgid "[INFO] Web Server: %s"
 
 
3229
  msgstr ""
3230
 
3231
- #: inc/class-job.php:494
3232
- msgid "[INFO] curl ver.: %1$s; %2$s"
3233
  msgstr ""
3234
 
3235
- #: inc/class-job.php:496
3236
- msgid "[INFO] Temp folder is: %s"
3237
  msgstr ""
3238
 
3239
- #: inc/class-job.php:503
3240
- msgid "[INFO] Logfile is: %s"
3241
  msgstr ""
3242
 
3243
- #: inc/class-job.php:510
3244
- msgid "[INFO] Backup file is: %s"
3245
  msgstr ""
3246
 
3247
- #: inc/class-job.php:512
3248
- msgid "[INFO] Backup type is: %s"
3249
  msgstr ""
3250
 
3251
- #: inc/class-job.php:520
3252
- msgid "Could not write log file"
 
3253
  msgstr ""
3254
 
3255
- #: inc/class-job.php:532
3256
- msgid "No destination correctly defined for backup! Please correct job settings."
 
3257
  msgstr ""
3258
 
3259
- #: inc/class-job.php:628
3260
- msgid "Cannot write progress to working file. Job will be aborted."
 
3261
  msgstr ""
3262
 
3263
- #: inc/class-job.php:713
3264
- msgid "DEPRECATED:"
 
3265
  msgstr ""
3266
 
3267
- #: inc/class-job.php:716
3268
- msgid "STRICT NOTICE:"
 
3269
  msgstr ""
3270
 
3271
- #: inc/class-job.php:721
3272
- msgid "RECOVERABLE ERROR:"
 
3273
  msgstr ""
3274
 
3275
- #: inc/class-job.php:972
3276
- msgid "Aborted by user!"
 
3277
  msgstr ""
3278
 
3279
- #: inc/class-job.php:1005
3280
- msgid "One old log deleted"
3281
- msgid_plural "%d old logs deleted"
3282
- msgstr[0] ""
3283
-
3284
- #: inc/class-job.php:1014
3285
- msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
3286
  msgstr ""
3287
 
3288
- #: inc/class-job.php:1060
3289
- msgid "SUCCESSFUL"
3290
  msgstr ""
3291
 
3292
- #: inc/class-job.php:1062
3293
- msgid "WARNING"
3294
  msgstr ""
3295
 
3296
- #: inc/class-job.php:1065
3297
- msgid "ERROR"
 
 
 
 
3298
  msgstr ""
3299
 
3300
- #: inc/class-job.php:1068
3301
- msgid "[%3$s] BackWPup log %1$s: %2$s"
3302
  msgstr ""
3303
 
3304
- #: inc/class-job.php:1180
3305
- msgid "Restart after %1$d seconds."
3306
  msgstr ""
3307
 
3308
- #: inc/class-job.php:1182
3309
- msgid "Restart after getting signal."
3310
  msgstr ""
3311
 
3312
- #: inc/class-job.php:1357
3313
- msgid "Job restarts due to inactivity for more than 5 minutes."
3314
  msgstr ""
3315
 
3316
- #: inc/class-job.php:1455
3317
- msgid "Step aborted: too many attempts!"
3318
  msgstr ""
3319
 
3320
- #: inc/class-job.php:1528
3321
- msgid "%d. Trying to create backup archive &hellip;"
3322
  msgstr ""
3323
 
3324
- #: inc/class-job.php:1536
3325
- msgctxt "Archive compression method"
3326
- msgid "Compressing files as %s. Please be patient, this may take a moment."
3327
  msgstr ""
3328
 
3329
- #: inc/class-job.php:1544
3330
- msgid "Adding Extra files to Archive"
3331
  msgstr ""
3332
 
3333
- #: inc/class-job.php:1555
3334
- #: inc/class-job.php:1626
3335
- msgid "Cannot create backup archive correctly. Aborting creation."
3336
  msgstr ""
3337
 
3338
- #: inc/class-job.php:1571
3339
- msgid "Archiving Folder: %s"
3340
  msgstr ""
3341
 
3342
- #: inc/class-job.php:1636
3343
- msgid "Backup archive created."
3344
  msgstr ""
3345
 
3346
- #: inc/class-job.php:1650
3347
- msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
3348
  msgstr ""
3349
 
3350
- #: inc/class-job.php:1653
3351
- msgid "Archive size is %s."
3352
  msgstr ""
3353
 
3354
- #: inc/class-job.php:1656
3355
- msgid "%1$d Files with %2$s in Archive."
3356
  msgstr ""
3357
 
3358
- #: inc/class-job.php:1689
3359
- msgid "No encryption key was provided. Aborting encryption."
3360
  msgstr ""
3361
 
3362
- #: inc/class-job.php:1696
3363
- msgid "%d. Trying to encrypt archive &hellip;"
3364
  msgstr ""
3365
 
3366
- #: inc/class-job.php:1706
3367
- msgid "Cannot open the archive for reading. Aborting encryption."
3368
  msgstr ""
3369
 
3370
- #: inc/class-job.php:1712
3371
- msgid "Cannot write the encrypted archive. Aborting encryption."
3372
  msgstr ""
3373
 
3374
- #: inc/class-job.php:1769
3375
- msgid "Encrypted %s of data."
3376
  msgstr ""
3377
 
3378
- #: inc/class-job.php:1773
3379
- msgid "Unable to delete unencrypted archive."
3380
  msgstr ""
3381
 
3382
- #: inc/class-job.php:1777
3383
- msgid "Unable to rename encrypted archive."
3384
  msgstr ""
3385
 
3386
- #: inc/class-job.php:1782
3387
- msgid "Archive has been successfully encrypted."
3388
  msgstr ""
3389
 
3390
- #: inc/class-job.php:1831
3391
- msgctxt "Folder name"
3392
- msgid "Folder %s does not exist"
3393
  msgstr ""
3394
 
3395
- #: inc/class-job.php:1837
3396
- msgctxt "Folder name"
3397
- msgid "Folder %s is not readable"
3398
  msgstr ""
3399
 
3400
- #: inc/class-job.php:1860
3401
- msgid "Link \"%s\" not following."
3402
  msgstr ""
3403
 
3404
- #: inc/class-job.php:1862
3405
- msgid "File \"%s\" is not readable!"
 
3406
  msgstr ""
3407
 
3408
- #: inc/class-job.php:1866
3409
- msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
3410
  msgstr ""
3411
 
3412
- #: inc/class-job.php:1949
3413
- msgid "%d. Trying to generate a manifest file&#160;&hellip;"
3414
  msgstr ""
3415
 
3416
- #: inc/class-job.php:2005
3417
- msgid "You may have noticed the manifest.json file in this archive."
3418
  msgstr ""
3419
 
3420
- #: inc/class-job.php:2006
3421
- msgid "manifest.json might be needed for later restoring a backup from this archive."
3422
  msgstr ""
3423
 
3424
- #: inc/class-job.php:2007
3425
- msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
3426
  msgstr ""
3427
 
3428
- #: inc/class-job.php:2017
3429
- msgid "Added manifest.json file with %1$s to backup file list."
 
3430
  msgstr ""
3431
 
3432
- #: inc/class-job.php:2056
3433
- msgid "Wrong BackWPup JobID"
3434
  msgstr ""
3435
 
3436
- #: inc/class-job.php:2069
3437
- msgid "A BackWPup job is already running"
3438
  msgstr ""
3439
 
3440
- #: inc/class-job.php:2451
3441
- msgid "exec command is not active."
3442
  msgstr ""
3443
 
3444
- #: inc/class-job.php:2456
3445
- msgid "mysqldump binary not found."
3446
  msgstr ""
3447
 
3448
- #: inc/class-job.php:2482
3449
- msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3450
- msgid "Hangup detected on controlling terminal or death of controlling process"
3451
  msgstr ""
3452
 
3453
- #: inc/class-job.php:2486
3454
- msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3455
- msgid "Interrupt from keyboard"
3456
  msgstr ""
3457
 
3458
- #: inc/class-job.php:2490
3459
- msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3460
- msgid "Quit from keyboard"
3461
  msgstr ""
3462
 
3463
- #: inc/class-job.php:2494
3464
- msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3465
- msgid "Illegal Instruction"
3466
  msgstr ""
3467
 
3468
- #: inc/class-job.php:2498
3469
- msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3470
- msgid "Abort signal from abort(3)"
3471
  msgstr ""
3472
 
3473
- #: inc/class-job.php:2502
3474
- msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3475
- msgid "Bus error (bad memory access)"
3476
  msgstr ""
3477
 
3478
- #: inc/class-job.php:2506
3479
- msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3480
- msgid "Floating point exception"
3481
  msgstr ""
3482
 
3483
- #: inc/class-job.php:2510
3484
- msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3485
- msgid "Invalid memory reference"
3486
  msgstr ""
3487
 
3488
- #: inc/class-job.php:2514
3489
- msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3490
- msgid "Termination signal"
3491
  msgstr ""
3492
 
3493
- #: inc/class-job.php:2518
3494
- msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3495
- msgid "Stack fault on coprocessor"
3496
  msgstr ""
3497
 
3498
- #: inc/class-job.php:2522
3499
- msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3500
- msgid "User-defined signal 1"
3501
  msgstr ""
3502
 
3503
- #: inc/class-job.php:2526
3504
- msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3505
- msgid "User-defined signal 2"
3506
  msgstr ""
3507
 
3508
- #: inc/class-job.php:2530
3509
- msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3510
- msgid "Urgent condition on socket"
3511
  msgstr ""
3512
 
3513
- #: inc/class-job.php:2534
3514
- msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3515
- msgid "CPU time limit exceeded"
3516
  msgstr ""
3517
 
3518
- #: inc/class-job.php:2538
3519
- msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3520
- msgid "File size limit exceeded"
3521
  msgstr ""
3522
 
3523
- #: inc/class-job.php:2542
3524
- msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3525
- msgid "Power failure"
3526
  msgstr ""
3527
 
3528
- #: inc/class-job.php:2546
3529
- msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
3530
- msgid "Bad argument to routine"
3531
  msgstr ""
3532
 
3533
- #: inc/class-job.php:2553
3534
- msgid "Signal \"%1$s\" (%2$s) is sent to script!"
3535
  msgstr ""
3536
 
3537
- #: inc/class-job.php:2587
3538
- #: inc/class-job.php:2600
3539
- msgid "System: %s"
3540
  msgstr ""
3541
 
3542
- #: inc/class-job.php:2615
3543
- msgid "Exception caught in %1$s: %2$s"
3544
  msgstr ""
3545
 
3546
  #: inc/class-page-logs.php:138
@@ -3577,11 +3632,6 @@ msgstr ""
3577
  msgid "Log only"
3578
  msgstr ""
3579
 
3580
- #: inc/class-page-logs.php:288
3581
- #: inc/class-destination-ftp.php:137
3582
- msgid "seconds"
3583
- msgstr ""
3584
-
3585
  #: inc/class-page-logs.php:440
3586
  msgid "%s &rsaquo; Logs"
3587
  msgstr ""
@@ -3590,750 +3640,725 @@ msgstr ""
3590
  msgid "Logfile not found!"
3591
  msgstr ""
3592
 
3593
- #: inc/class-page-editjob.php:98
3594
- msgid "Job with ID %d"
 
 
 
 
 
 
 
 
3595
  msgstr ""
3596
 
3597
- #: inc/class-page-editjob.php:223
3598
- msgid "Changes for job <i>%s</i> saved."
3599
  msgstr ""
3600
 
3601
- #: inc/class-page-editjob.php:223
3602
- msgid "Jobs overview"
3603
  msgstr ""
3604
 
3605
- #: inc/class-page-editjob.php:334
3606
- msgid "%1$s &rsaquo; Job: %2$s"
3607
  msgstr ""
3608
 
3609
- #: inc/class-page-editjob.php:337
3610
- msgid "Schedule"
3611
  msgstr ""
3612
 
3613
- #: inc/class-page-editjob.php:352
3614
- msgid "To: %s"
3615
  msgstr ""
3616
 
3617
- #: inc/class-page-editjob.php:390
3618
- msgid "Please name this job."
3619
  msgstr ""
3620
 
3621
- #: inc/class-page-editjob.php:397
3622
- msgid "Job Tasks"
3623
  msgstr ""
3624
 
3625
- #: inc/class-page-editjob.php:400
3626
- msgid "This job is a&#160;&hellip;"
3627
  msgstr ""
3628
 
3629
- #: inc/class-page-editjob.php:403
3630
- msgid "Job tasks"
3631
  msgstr ""
3632
 
3633
- #: inc/class-page-editjob.php:421
3634
- msgid "Backup File Creation"
3635
  msgstr ""
3636
 
3637
- #: inc/class-page-editjob.php:426
3638
- #: inc/class-page-editjob.php:429
3639
- msgid "Backup type"
3640
  msgstr ""
3641
 
3642
- #: inc/class-page-editjob.php:432
3643
- msgid "Synchronize file by file to destination"
3644
  msgstr ""
3645
 
3646
- #: inc/class-page-editjob.php:437
3647
- msgid "Create a backup archive"
3648
  msgstr ""
3649
 
3650
- #: inc/class-page-editjob.php:445
3651
- msgid "Archive name"
3652
  msgstr ""
3653
 
3654
- #: inc/class-page-editjob.php:448
3655
- msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
 
3656
  msgstr ""
3657
 
3658
- #: inc/class-page-editjob.php:452
3659
- msgid "Preview: "
3660
  msgstr ""
3661
 
3662
- #: inc/class-page-editjob.php:454
3663
- msgid "Replacement patterns:"
3664
  msgstr ""
3665
 
3666
- #: inc/class-page-editjob.php:455
3667
- msgid "%d = Two digit day of the month, with leading zeros"
3668
  msgstr ""
3669
 
3670
- #: inc/class-page-editjob.php:456
3671
- msgid "%j = Day of the month, without leading zeros"
 
3672
  msgstr ""
3673
 
3674
- #: inc/class-page-editjob.php:457
3675
- msgid "%m = Day of the month, with leading zeros"
3676
  msgstr ""
3677
 
3678
- #: inc/class-page-editjob.php:458
3679
- msgid "%n = Representation of the month (without leading zeros)"
3680
  msgstr ""
3681
 
3682
- #: inc/class-page-editjob.php:459
3683
- msgid "%Y = Four digit representation for the year"
3684
  msgstr ""
3685
 
3686
- #: inc/class-page-editjob.php:460
3687
- msgid "%y = Two digit representation of the year"
3688
  msgstr ""
3689
 
3690
- #: inc/class-page-editjob.php:461
3691
- msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)"
3692
  msgstr ""
3693
 
3694
- #: inc/class-page-editjob.php:462
3695
- msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)"
3696
  msgstr ""
3697
 
3698
- #: inc/class-page-editjob.php:463
3699
- msgid "%B = Swatch Internet Time"
 
3700
  msgstr ""
3701
 
3702
- #: inc/class-page-editjob.php:464
3703
- msgid "%g = Hour in 12-hour format, without leading zeros"
3704
  msgstr ""
3705
 
3706
- #: inc/class-page-editjob.php:465
3707
- msgid "%G = Hour in 24-hour format, without leading zeros"
 
3708
  msgstr ""
3709
 
3710
- #: inc/class-page-editjob.php:466
3711
- msgid "%h = Hour in 12-hour format, with leading zeros"
3712
  msgstr ""
3713
 
3714
- #: inc/class-page-editjob.php:467
3715
- msgid "%H = Hour in 24-hour format, with leading zeros"
3716
  msgstr ""
3717
 
3718
- #: inc/class-page-editjob.php:468
3719
- msgid "%i = Two digit representation of the minute"
3720
  msgstr ""
3721
 
3722
- #: inc/class-page-editjob.php:469
3723
- msgid "%s = Two digit representation of the second"
3724
  msgstr ""
3725
 
3726
- #: inc/class-page-editjob.php:475
3727
- #: inc/class-page-editjob.php:478
3728
- msgid "Archive Format"
3729
  msgstr ""
3730
 
3731
- #: inc/class-page-editjob.php:481
3732
- #: inc/class-page-editjob.php:483
3733
- msgid "Zip"
3734
  msgstr ""
3735
 
3736
- #: inc/class-page-editjob.php:484
3737
- msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
3738
  msgstr ""
3739
 
3740
- #: inc/class-page-editjob.php:486
3741
- msgid "Tar"
3742
  msgstr ""
3743
 
3744
- #: inc/class-page-editjob.php:488
3745
- #: inc/class-page-editjob.php:490
3746
- msgid "Tar GZip"
3747
  msgstr ""
3748
 
3749
- #: inc/class-page-editjob.php:491
3750
- #: inc/class-page-editjob.php:498
3751
- msgid "Disabled due to missing %s PHP function."
3752
  msgstr ""
3753
 
3754
- #: inc/class-page-editjob.php:494
3755
- #: inc/class-page-editjob.php:497
3756
- msgid "Tar BZip2"
3757
  msgstr ""
3758
 
3759
- #: inc/class-page-editjob.php:495
3760
- msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
3761
  msgstr ""
3762
 
3763
- #: inc/class-page-editjob.php:506
3764
- #: inc/class-page-editjob.php:511
3765
- #: inc/class-page-editjob.php:520
3766
- msgid "Encrypt Archive"
3767
  msgstr ""
3768
 
3769
- #: inc/class-page-editjob.php:524
3770
- msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
 
3771
  msgstr ""
3772
 
3773
- #: inc/class-page-editjob.php:533
3774
- msgid "Job Destination"
3775
  msgstr ""
3776
 
3777
- #: inc/class-page-editjob.php:537
3778
- #: inc/class-page-editjob.php:540
3779
- msgid "Where should your backup file be stored?"
3780
  msgstr ""
3781
 
3782
- #: inc/class-page-editjob.php:558
3783
- msgid "Log Files"
3784
  msgstr ""
3785
 
3786
- #: inc/class-page-editjob.php:562
3787
- msgid "Send log to email address"
3788
  msgstr ""
3789
 
3790
- #: inc/class-page-editjob.php:565
3791
- msgid "Leave empty to not have log sent. Or separate with , for more than one receiver."
3792
  msgstr ""
3793
 
3794
- #: inc/class-page-editjob.php:569
3795
- msgid "Email FROM field"
3796
  msgstr ""
3797
 
3798
- #: inc/class-page-editjob.php:571
3799
- msgid "Your Name &lt;mail@domain.tld&gt;"
 
3800
  msgstr ""
3801
 
3802
- #: inc/class-page-editjob.php:575
3803
- msgid "Errors only"
3804
  msgstr ""
3805
 
3806
- #: inc/class-page-editjob.php:580
3807
- msgid "Send email with log only when errors occur during job execution."
3808
  msgstr ""
3809
 
3810
- #: inc/class-page-editjob.php:591
3811
- msgid "Job Schedule"
 
3812
  msgstr ""
3813
 
3814
- #: inc/class-page-editjob.php:595
3815
- #: inc/class-page-editjob.php:598
3816
- msgid "Start job"
3817
  msgstr ""
3818
 
3819
- #: inc/class-page-editjob.php:602
3820
- msgid "manually only"
3821
  msgstr ""
3822
 
3823
- #: inc/class-page-editjob.php:606
3824
- msgid "with WordPress cron"
3825
  msgstr ""
3826
 
3827
- #: inc/class-page-editjob.php:615
3828
- msgid "with <a href=\"https://www.easycron.com?ref=36673\" title=\"Affiliate Link!\">EasyCron.com</a>"
3829
  msgstr ""
3830
 
3831
- #: inc/class-page-editjob.php:617
3832
- msgid "First setup <a href=\"%s\">API Key</a>."
3833
  msgstr ""
3834
 
3835
- #: inc/class-page-editjob.php:626
3836
- msgid "with a link"
3837
  msgstr ""
3838
 
3839
- #: inc/class-page-editjob.php:627
3840
- msgid "Copy the link for an external start. This option has to be activated to make the link work."
3841
  msgstr ""
3842
 
3843
- #: inc/class-page-editjob.php:634
3844
- msgid "Start job with CLI"
3845
  msgstr ""
3846
 
3847
- #: inc/class-page-editjob.php:637
3848
- msgid "Use <a href=\"http://wp-cli.org/\">WP-CLI</a> to run jobs from commandline."
3849
  msgstr ""
3850
 
3851
- #: inc/class-page-editjob.php:642
3852
- msgid "Schedule execution time"
 
3853
  msgstr ""
3854
 
3855
- #: inc/class-page-editjob.php:646
3856
- #: inc/class-page-editjob.php:649
3857
- msgid "Scheduler type"
3858
  msgstr ""
3859
 
3860
- #: inc/class-page-editjob.php:653
3861
- msgid "basic"
3862
  msgstr ""
3863
 
3864
- #: inc/class-page-editjob.php:657
3865
- msgid "advanced"
3866
  msgstr ""
3867
 
3868
- #: inc/class-page-editjob.php:686
3869
- #: inc/class-page-editjob.php:754
3870
- msgid "Scheduler"
 
3871
  msgstr ""
3872
 
3873
- #: inc/class-page-editjob.php:696
3874
- msgid "Hour"
3875
  msgstr ""
3876
 
3877
- #: inc/class-page-editjob.php:699
3878
- msgid "Minute"
 
3879
  msgstr ""
3880
 
3881
- #: inc/class-page-editjob.php:703
3882
- msgid "monthly"
3883
  msgstr ""
3884
 
3885
- #: inc/class-page-editjob.php:705
3886
- msgid "on"
 
3887
  msgstr ""
3888
 
3889
- #: inc/class-page-editjob.php:715
3890
- msgid "weekly"
3891
  msgstr ""
3892
 
3893
- #: inc/class-page-editjob.php:717
3894
- #: inc/class-page-editjob.php:824
3895
- msgid "Sunday"
3896
  msgstr ""
3897
 
3898
- #: inc/class-page-editjob.php:718
3899
- #: inc/class-page-editjob.php:825
3900
- msgid "Monday"
3901
  msgstr ""
3902
 
3903
- #: inc/class-page-editjob.php:719
3904
- #: inc/class-page-editjob.php:826
3905
- msgid "Tuesday"
3906
  msgstr ""
3907
 
3908
- #: inc/class-page-editjob.php:720
3909
- #: inc/class-page-editjob.php:827
3910
- msgid "Wednesday"
3911
  msgstr ""
3912
 
3913
- #: inc/class-page-editjob.php:721
3914
- #: inc/class-page-editjob.php:828
3915
- msgid "Thursday"
3916
  msgstr ""
3917
 
3918
- #: inc/class-page-editjob.php:722
3919
- #: inc/class-page-editjob.php:829
3920
- msgid "Friday"
3921
  msgstr ""
3922
 
3923
- #: inc/class-page-editjob.php:723
3924
- #: inc/class-page-editjob.php:830
3925
- msgid "Saturday"
3926
  msgstr ""
3927
 
3928
- #: inc/class-page-editjob.php:733
3929
- msgid "daily"
3930
  msgstr ""
3931
 
3932
- #: inc/class-page-editjob.php:743
3933
- msgid "hourly"
 
3934
  msgstr ""
3935
 
3936
- #: inc/class-page-editjob.php:757
3937
- msgid "Minutes:"
3938
  msgstr ""
3939
 
3940
- #: inc/class-page-editjob.php:759
3941
- #: inc/class-page-editjob.php:772
3942
- #: inc/class-page-editjob.php:784
3943
- #: inc/class-page-editjob.php:798
3944
- #: inc/class-page-editjob.php:820
3945
- msgid "Any (*)"
3946
  msgstr ""
3947
 
3948
- #: inc/class-page-editjob.php:769
3949
- msgid "Hours:"
3950
  msgstr ""
3951
 
3952
- #: inc/class-page-editjob.php:782
3953
- msgid "Day of Month:"
3954
  msgstr ""
3955
 
3956
- #: inc/class-page-editjob.php:796
3957
- msgid "Month:"
3958
  msgstr ""
3959
 
3960
- #: inc/class-page-editjob.php:802
3961
- msgid "January"
 
3962
  msgstr ""
3963
 
3964
- #: inc/class-page-editjob.php:803
3965
- msgid "February"
3966
  msgstr ""
3967
 
3968
- #: inc/class-page-editjob.php:804
3969
- msgid "March"
3970
  msgstr ""
3971
 
3972
- #: inc/class-page-editjob.php:805
3973
- msgid "April"
3974
  msgstr ""
3975
 
3976
- #: inc/class-page-editjob.php:806
3977
- msgid "May"
3978
  msgstr ""
3979
 
3980
- #: inc/class-page-editjob.php:807
3981
- msgid "June"
3982
  msgstr ""
3983
 
3984
- #: inc/class-page-editjob.php:808
3985
- msgid "July"
3986
  msgstr ""
3987
 
3988
- #: inc/class-page-editjob.php:809
3989
- msgid "August"
3990
  msgstr ""
3991
 
3992
- #: inc/class-page-editjob.php:810
3993
- msgid "September"
3994
  msgstr ""
3995
 
3996
- #: inc/class-page-editjob.php:811
3997
- msgid "October"
3998
  msgstr ""
3999
 
4000
- #: inc/class-page-editjob.php:812
4001
- msgid "November"
4002
  msgstr ""
4003
 
4004
- #: inc/class-page-editjob.php:813
4005
- msgid "December"
4006
  msgstr ""
4007
 
4008
- #: inc/class-page-editjob.php:818
4009
- msgid "Day of Week:"
 
4010
  msgstr ""
4011
 
4012
- #: inc/class-page-editjob.php:854
4013
- msgid "Save changes"
 
4014
  msgstr ""
4015
 
4016
- #: inc/class-page-editjob.php:941
4017
- msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
4018
  msgstr ""
4019
 
4020
- #: inc/class-page-editjob.php:950
4021
- msgid "ATTENTION: Job runs every %d minutes!"
4022
  msgstr ""
4023
 
4024
- #: inc/class-page-editjob.php:954
4025
- msgid "ATTENTION: Can't calculate cron!"
4026
  msgstr ""
4027
 
4028
- #: inc/class-page-editjob.php:957
4029
- msgid "Next runtime:"
4030
  msgstr ""
4031
 
4032
- #: inc/class-decrypter.php:56
4033
- msgid "Cannot open the archive for reading."
4034
  msgstr ""
4035
 
4036
- #: inc/class-decrypter.php:82
4037
- msgid "Cannot write the encrypted archive."
4038
  msgstr ""
4039
 
4040
- #: inc/class-decrypter.php:162
4041
- msgid "Private key invalid."
4042
  msgstr ""
4043
 
4044
- #: inc/class-destination-ftp.php:46
4045
- msgid "FTP server and login"
4046
  msgstr ""
4047
 
4048
- #: inc/class-destination-ftp.php:50
4049
- msgid "FTP server"
4050
  msgstr ""
4051
 
4052
- #: inc/class-destination-ftp.php:71
4053
- msgid "Password"
4054
  msgstr ""
4055
 
4056
- #: inc/class-destination-ftp.php:87
4057
- msgid "Folder to store files in"
4058
  msgstr ""
4059
 
4060
- #: inc/class-destination-ftp.php:128
4061
- msgid "FTP specific settings"
4062
  msgstr ""
4063
 
4064
- #: inc/class-destination-ftp.php:133
4065
- msgid "Timeout for FTP connection"
4066
  msgstr ""
4067
 
4068
- #: inc/class-destination-ftp.php:141
4069
- msgid "SSL-FTP connection"
4070
  msgstr ""
4071
 
4072
- #: inc/class-destination-ftp.php:148
4073
- msgid "Use explicit SSL-FTP connection."
4074
  msgstr ""
4075
 
4076
- #: inc/class-destination-ftp.php:153
4077
- msgid "FTP Passive Mode"
4078
  msgstr ""
4079
 
4080
- #: inc/class-destination-ftp.php:158
4081
- msgid "Use FTP Passive Mode."
4082
  msgstr ""
4083
 
4084
- #: inc/class-destination-ftp.php:321
4085
- msgid "Could not log in to FTP server."
4086
  msgstr ""
4087
 
4088
- #: inc/class-destination-ftp.php:394
4089
- msgid "Cannot delete \"%s\" on FTP server!"
4090
  msgstr ""
4091
 
4092
- #: inc/class-destination-ftp.php:404
4093
- msgid "One file deleted on FTP server"
4094
- msgid_plural "%d files deleted on FTP server"
4095
- msgstr[0] ""
4096
 
4097
- #: inc/class-destination-ftp.php:433
4098
- msgid "%d. Try to send backup file to an FTP server&#160;&hellip;"
4099
  msgstr ""
4100
 
4101
- #: inc/class-destination-ftp.php:450
4102
- msgid "Connected via explicit SSL-FTP to server: %s"
4103
  msgstr ""
4104
 
4105
- #: inc/class-destination-ftp.php:458
4106
- msgid "Cannot connect via explicit SSL-FTP to server: %s"
4107
  msgstr ""
4108
 
4109
- #: inc/class-destination-ftp.php:468
4110
- msgid "PHP function to connect with explicit SSL-FTP to server does not exist!"
4111
  msgstr ""
4112
 
4113
- #: inc/class-destination-ftp.php:483
4114
- msgid "Connected to FTP server: %s"
4115
  msgstr ""
4116
 
4117
- #: inc/class-destination-ftp.php:491
4118
- msgid "Cannot connect to FTP server: %s"
4119
  msgstr ""
4120
 
4121
- #: inc/class-destination-ftp.php:503
4122
- #: inc/class-destination-ftp.php:523
4123
- #: inc/class-destination-ftp.php:546
4124
- #: inc/class-destination-ftp.php:603
4125
- msgid "FTP client command: %s"
4126
  msgstr ""
4127
 
4128
- #: inc/class-destination-ftp.php:513
4129
- msgid "FTP server response: %s"
4130
  msgstr ""
4131
 
4132
- #: inc/class-destination-ftp.php:520
4133
- #: inc/class-destination-ftp.php:531
4134
- #: inc/class-destination-ftp.php:534
4135
- #: inc/class-destination-ftp.php:549
4136
- #: inc/class-destination-ftp.php:552
4137
- #: inc/class-destination-ftp.php:607
4138
- #: inc/class-destination-ftp.php:612
4139
- #: inc/class-destination-ftp.php:619
4140
- #: inc/class-destination-ftp.php:624
4141
- msgid "FTP server reply: %s"
4142
  msgstr ""
4143
 
4144
- #: inc/class-destination-ftp.php:552
4145
- msgid "Error getting SYSTYPE"
4146
  msgstr ""
4147
 
4148
- #: inc/class-destination-ftp.php:590
4149
- msgid "FTP current folder is: %s"
4150
  msgstr ""
4151
 
4152
- #: inc/class-destination-ftp.php:607
4153
- msgid "Entering passive mode"
4154
  msgstr ""
4155
 
4156
- #: inc/class-destination-ftp.php:612
4157
- msgid "Cannot enter passive mode"
4158
  msgstr ""
4159
 
4160
- #: inc/class-destination-ftp.php:619
4161
- msgid "Entering normal mode"
4162
  msgstr ""
4163
 
4164
- #: inc/class-destination-ftp.php:624
4165
- msgid "Cannot enter normal mode"
 
4166
  msgstr ""
4167
 
4168
- #: inc/class-destination-ftp.php:631
4169
- msgid "Starting upload to FTP &#160;&hellip;"
4170
  msgstr ""
4171
 
4172
- #: inc/class-destination-ftp.php:649
4173
- msgid "Cannot transfer backup to FTP server!"
4174
  msgstr ""
4175
 
4176
- #: inc/class-destination-ftp.php:656
4177
- msgid "Backup transferred to FTP server: %s"
 
4178
  msgstr ""
4179
 
4180
- #: inc/class-destination-ftp.php:735
4181
- msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
 
4182
  msgstr ""
4183
 
4184
- #: inc/class-destination-ftp.php:753
4185
- msgid "FTP Folder \"%s\" cannot be created!"
4186
  msgstr ""
4187
 
4188
- #: inc/class-destination-ftp.php:765
4189
- msgid "FTP Folder \"%s\" created!"
4190
  msgstr ""
4191
 
4192
- #: inc/class-destination-sugarsync.php:22
4193
- msgid "Sugarsync Login"
4194
  msgstr ""
4195
 
4196
- #: inc/class-destination-sugarsync.php:30
4197
- msgid "Email address:"
4198
  msgstr ""
4199
 
4200
- #: inc/class-destination-sugarsync.php:33
4201
- msgid "Password:"
4202
  msgstr ""
4203
 
4204
- #: inc/class-destination-sugarsync.php:37
4205
- #: inc/class-destination-sugarsync.php:120
4206
- msgid "Authenticate with Sugarsync!"
4207
  msgstr ""
4208
 
4209
- #: inc/class-destination-sugarsync.php:38
4210
- #: inc/class-destination-sugarsync.php:136
4211
- msgid "Create Sugarsync account"
4212
  msgstr ""
4213
 
4214
- #: inc/class-destination-sugarsync.php:46
4215
- #: inc/class-destination-sugarsync.php:132
4216
- msgid "Delete Sugarsync authentication!"
4217
  msgstr ""
4218
 
4219
- #: inc/class-destination-sugarsync.php:52
4220
- msgid "SugarSync Root"
4221
  msgstr ""
4222
 
4223
- #: inc/class-destination-sugarsync.php:56
4224
- msgid "Sync folder selection"
4225
  msgstr ""
4226
 
4227
- #: inc/class-destination-sugarsync.php:64
4228
- msgid "No Syncfolders found!"
4229
  msgstr ""
4230
 
4231
- #: inc/class-destination-sugarsync.php:85
4232
- msgid "Folder in root"
4233
  msgstr ""
4234
 
4235
- #: inc/class-destination-sugarsync.php:233
4236
- msgid "%d. Try to send backup to SugarSync&#160;&hellip;"
4237
  msgstr ""
4238
 
4239
- #: inc/class-destination-sugarsync.php:240
4240
- msgid "Authenticated to SugarSync with nickname %s"
4241
  msgstr ""
4242
 
4243
- #: inc/class-destination-sugarsync.php:243
4244
- msgctxt "Available space on SugarSync"
4245
- msgid "Not enough disk space available on SugarSync. Available: %s."
4246
  msgstr ""
4247
 
4248
- #: inc/class-destination-sugarsync.php:249
4249
- msgid "%s available at SugarSync"
 
4250
  msgstr ""
4251
 
4252
- #: inc/class-destination-sugarsync.php:256
4253
- msgid "Starting upload to SugarSync&#160;&hellip;"
4254
  msgstr ""
4255
 
4256
- #: inc/class-destination-sugarsync.php:266
4257
- msgid "Cannot transfer backup to SugarSync!"
4258
  msgstr ""
4259
 
4260
- #: inc/class-destination-sugarsync.php:305
4261
- msgid "One file deleted on SugarSync folder"
4262
- msgid_plural "%d files deleted on SugarSync folder"
4263
- msgstr[0] ""
4264
 
4265
- #: inc/class-destination-sugarsync.php:311
4266
- msgid "SugarSync API: %s"
4267
  msgstr ""
4268
 
4269
- #: backwpup.php:287
4270
- #: vendor_dist/backwpup.php:287
4271
- msgid "Backup to Folder"
4272
  msgstr ""
4273
 
4274
- #: backwpup.php:302
4275
- #: vendor_dist/backwpup.php:302
4276
- msgid "Email"
4277
  msgstr ""
4278
 
4279
- #: backwpup.php:303
4280
- #: vendor_dist/backwpup.php:303
4281
- msgid "Backup sent via email"
4282
  msgstr ""
4283
 
4284
- #: backwpup.php:318
4285
- #: vendor_dist/backwpup.php:318
4286
- msgid "FTP"
4287
  msgstr ""
4288
 
4289
- #: backwpup.php:319
4290
- #: vendor_dist/backwpup.php:319
4291
- msgid "Backup to FTP"
4292
  msgstr ""
4293
 
4294
- #: backwpup.php:351
4295
- #: vendor_dist/backwpup.php:351
4296
- msgid "Backup to an S3 Service"
4297
  msgstr ""
4298
 
4299
- #: backwpup.php:371
4300
- #: vendor_dist/backwpup.php:371
4301
- msgid "MS Azure"
4302
  msgstr ""
4303
 
4304
- #: backwpup.php:372
4305
- #: vendor_dist/backwpup.php:372
4306
- msgid "Backup to Microsoft Azure (Blob)"
4307
  msgstr ""
4308
 
4309
- #: backwpup.php:387
4310
- #: vendor_dist/backwpup.php:387
4311
- msgid "RSC"
4312
  msgstr ""
4313
 
4314
- #: backwpup.php:407
4315
- #: vendor_dist/backwpup.php:407
4316
- msgid "SugarSync"
4317
  msgstr ""
4318
 
4319
- #: backwpup.php:433
4320
- #: vendor_dist/backwpup.php:433
4321
- msgid "PHP Version %1$s is to low, you need Version %2$s or above."
4322
  msgstr ""
4323
 
4324
- #: backwpup.php:443
4325
- #: vendor_dist/backwpup.php:443
4326
- msgid "Missing function \"%s\"."
4327
  msgstr ""
4328
 
4329
- #: backwpup.php:454
4330
- #: vendor_dist/backwpup.php:454
4331
- msgid "Missing class \"%s\"."
4332
  msgstr ""
4333
 
4334
- #: backwpup.php:573
4335
- #: vendor_dist/backwpup.php:573
4336
- msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
4337
  msgstr ""
4338
 
4339
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "POT-Creation-Date: 2018-11-05T11:38:22+00:00\n"
14
+ "PO-Revision-Date: 2018-11-05T11:38:22+00:00\n"
15
  "X-Domain: backwpup\n"
16
 
17
+ #: backwpup.php:286
18
+ #: inc/class-page-backups.php:243
19
+ #: vendor_dist/backwpup.php:286
20
+ msgid "Folder"
21
  msgstr ""
22
 
23
+ #: backwpup.php:287
24
+ #: vendor_dist/backwpup.php:287
25
+ msgid "Backup to Folder"
26
  msgstr ""
27
 
28
+ #: backwpup.php:302
29
+ #: vendor_dist/backwpup.php:302
30
+ msgid "Email"
31
+ msgstr ""
32
+
33
+ #: backwpup.php:303
34
+ #: vendor_dist/backwpup.php:303
35
+ msgid "Backup sent via email"
36
+ msgstr ""
37
+
38
+ #: backwpup.php:318
39
+ #: vendor_dist/backwpup.php:318
40
+ msgid "FTP"
41
+ msgstr ""
42
+
43
+ #: backwpup.php:319
44
+ #: vendor_dist/backwpup.php:319
45
+ msgid "Backup to FTP"
46
+ msgstr ""
47
+
48
+ #: backwpup.php:334
49
+ #: inc/class-destination-dropbox.php:445
50
+ #: vendor_dist/backwpup.php:334
51
+ msgid "Dropbox"
52
+ msgstr ""
53
+
54
+ #: backwpup.php:335
55
+ #: inc/class-page-about.php:508
56
+ #: vendor_dist/backwpup.php:335
57
+ msgid "Backup to Dropbox"
58
+ msgstr ""
59
+
60
+ #: backwpup.php:350
61
+ #: inc/class-destination-s3.php:42
62
+ #: vendor_dist/backwpup.php:350
63
+ msgid "S3 Service"
64
+ msgstr ""
65
+
66
+ #: backwpup.php:351
67
+ #: vendor_dist/backwpup.php:351
68
+ msgid "Backup to an S3 Service"
69
+ msgstr ""
70
+
71
+ #: backwpup.php:371
72
+ #: vendor_dist/backwpup.php:371
73
+ msgid "MS Azure"
74
+ msgstr ""
75
+
76
+ #: backwpup.php:372
77
+ #: vendor_dist/backwpup.php:372
78
+ msgid "Backup to Microsoft Azure (Blob)"
79
+ msgstr ""
80
+
81
+ #: backwpup.php:387
82
+ #: vendor_dist/backwpup.php:387
83
+ msgid "RSC"
84
+ msgstr ""
85
+
86
+ #: backwpup.php:388
87
+ #: inc/class-page-about.php:513
88
+ #: vendor_dist/backwpup.php:388
89
+ msgid "Backup to Rackspace Cloud Files"
90
+ msgstr ""
91
+
92
+ #: backwpup.php:407
93
+ #: vendor_dist/backwpup.php:407
94
+ msgid "SugarSync"
95
+ msgstr ""
96
+
97
+ #: backwpup.php:408
98
+ #: inc/class-page-about.php:528
99
+ #: vendor_dist/backwpup.php:408
100
+ msgid "Backup to SugarSync"
101
+ msgstr ""
102
+
103
+ #: backwpup.php:433
104
+ #: vendor_dist/backwpup.php:433
105
+ msgid "PHP Version %1$s is to low, you need Version %2$s or above."
106
+ msgstr ""
107
+
108
+ #: backwpup.php:443
109
+ #: vendor_dist/backwpup.php:443
110
+ msgid "Missing function \"%s\"."
111
+ msgstr ""
112
+
113
+ #: backwpup.php:454
114
+ #: vendor_dist/backwpup.php:454
115
+ msgid "Missing class \"%s\"."
116
+ msgstr ""
117
+
118
+ #: backwpup.php:573
119
+ #: vendor_dist/backwpup.php:573
120
+ msgid "BackWPup requires PHP version %$1s with spl extension or greater and WordPress %$2s or greater."
121
+ msgstr ""
122
+
123
+ #: inc/class-admin-notice.php:121
124
+ #: inc/class-become-inpsyder-widget.php:152
125
+ msgid "Don't show again"
126
+ msgstr ""
127
+
128
+ #: inc/class-admin.php:267
129
+ #: inc/class-help.php:24
130
+ msgid "http://docs.backwpup.com"
131
+ msgstr ""
132
+
133
+ #: inc/class-admin.php:267
134
+ msgid "Documentation"
135
+ msgstr ""
136
+
137
+ #: inc/class-admin.php:282
138
+ msgid "BackWPup Dashboard"
139
+ msgstr ""
140
+
141
+ #: inc/class-admin.php:282
142
+ msgid "Dashboard"
143
  msgstr ""
144
 
 
145
  #: inc/class-admin.php:305
146
+ #: inc/class-adminbar.php:82
147
  #: inc/class-page-settings.php:215
148
  msgid "Jobs"
149
  msgstr ""
150
 
151
+ #: inc/class-admin.php:330
152
+ msgid "Add new job"
 
153
  msgstr ""
154
 
 
155
  #: inc/class-admin.php:355
156
+ #: inc/class-adminbar.php:98
157
  #: inc/class-page-logs.php:377
158
+ #: inc/class-page-settings.php:219
159
  msgid "Logs"
160
  msgstr ""
161
 
 
162
  #: inc/class-admin.php:380
163
+ #: inc/class-adminbar.php:106
164
  msgid "Backups"
165
  msgstr ""
166
 
167
+ #: inc/class-admin.php:405
168
+ msgid "Settings"
169
+ msgstr ""
170
+
171
+ #: inc/class-admin.php:425
172
+ msgid "About"
173
+ msgstr ""
174
+
175
+ #: inc/class-admin.php:453
176
+ #: inc/class-admin.php:460
177
+ msgid "Cheating, huh?"
178
+ msgstr ""
179
+
180
+ #: inc/class-admin.php:510
181
+ msgid "<a class=\"backwpup-get-pro\" href=\"%s\">Get BackWPup Pro now.</a>"
182
+ msgstr ""
183
+
184
+ #: inc/class-admin.php:510
185
+ #: inc/class-admin.php:531
186
+ #: inc/class-help.php:17
187
+ #: inc/class-help.php:22
188
+ #: inc/class-job.php:459
189
+ #: inc/class-jobtype-dbcheck.php:15
190
+ #: inc/class-jobtype-dbdump.php:15
191
+ #: inc/class-jobtype-file.php:15
192
+ #: inc/class-jobtype-wpexp.php:15
193
+ #: inc/class-jobtype-wpplugin.php:15
194
+ #: inc/class-page-about.php:365
195
+ #: inc/class-page-about.php:375
196
+ #: inc/class-page-about.php:660
197
+ #: inc/class-page-backwpup.php:254
198
+ #: inc/class-page-backwpup.php:260
199
+ #: inc/class-page-backwpup.php:262
200
+ #: inc/class-page-settings.php:1123
201
+ msgid "http://backwpup.com"
202
+ msgstr ""
203
+
204
+ #: inc/class-admin.php:531
205
+ msgid "version %s"
206
+ msgstr ""
207
+
208
+ #: inc/class-admin.php:576
209
+ msgid "Add BackWPup Role"
210
+ msgstr ""
211
+
212
+ #: inc/class-admin.php:581
213
+ msgid "&mdash; No additional role for BackWPup &mdash;"
214
+ msgstr ""
215
+
216
+ #: inc/class-adminbar.php:51
217
+ msgid "running"
218
+ msgstr ""
219
+
220
+ #: inc/class-adminbar.php:67
221
+ msgid "Now Running"
222
+ msgstr ""
223
+
224
+ #: inc/class-adminbar.php:73
225
+ msgid "Abort!"
226
+ msgstr ""
227
+
228
+ #: inc/class-adminbar.php:90
229
+ #: inc/class-page-jobs.php:584
230
+ msgid "Add new"
231
+ msgstr ""
232
+
233
  #: inc/class-adminbar.php:128
234
  msgid "Run Now"
235
  msgstr ""
236
 
237
+ #: inc/class-become-inpsyder-widget.php:31
238
+ #: inc/class-become-inpsyder-widget.php:45
239
+ msgid "Make BackWPup better!"
240
  msgstr ""
241
 
242
+ #: inc/class-become-inpsyder-widget.php:108
243
+ msgid "https://inpsyde.com/en/jobs/?utm_source=BackWPup&utm_medium=Link&utm_campaign=BecomeAnInpsyder"
244
  msgstr ""
245
 
246
+ #: inc/class-become-inpsyder-widget.php:118
247
+ msgid "We want to make BackWPup even stronger and its support much faster."
248
  msgstr ""
249
 
250
+ #: inc/class-become-inpsyder-widget.php:126
251
+ msgid "This is why we are looking for a talented developer who can work remotely and support us in BackWPup"
252
  msgstr ""
253
 
254
+ #: inc/class-become-inpsyder-widget.php:133
255
+ msgid "and other exciting WordPress projects at our VIP partner agency."
 
256
  msgstr ""
257
 
258
+ #: inc/class-become-inpsyder-widget.php:145
259
+ msgid "Apply now!"
260
  msgstr ""
261
 
262
+ #: inc/class-become-inpsyder-widget.php:156
263
+ msgid "Work for Inpsyde"
264
  msgstr ""
265
 
266
+ #: inc/class-create-archive.php:80
267
+ msgid "The file name of an archive cannot be empty."
268
  msgstr ""
269
 
270
+ #. translators: $1 is the file path
271
+ #: inc/class-create-archive.php:89
272
+ msgctxt "%s = Folder name"
273
+ msgid "Folder %s for archive not found"
274
  msgstr ""
275
 
276
+ #: inc/class-create-archive.php:101
277
+ #: inc/class-create-archive.php:141
278
+ #: inc/class-create-archive.php:182
279
+ #: inc/class-mysqldump.php:133
280
+ msgid "Functions for gz compression not available"
281
  msgstr ""
282
 
283
+ #: inc/class-create-archive.php:114
284
+ msgid "Functions for bz2 compression not available."
 
 
 
 
 
285
  msgstr ""
286
 
287
+ #. translators: $1 is a directory name
288
+ #: inc/class-create-archive.php:155
289
+ msgctxt "ZipArchive open() result"
290
+ msgid "Cannot create zip archive: %d"
291
  msgstr ""
292
 
293
+ #: inc/class-create-archive.php:195
294
+ msgid "Functions for bz2 compression not available"
 
 
295
  msgstr ""
296
 
297
+ #. translators: the $1 is the type of the archive file
298
+ #: inc/class-create-archive.php:208
299
+ msgctxt "%s = file name"
300
+ msgid "Method to archive file %s not detected"
301
  msgstr ""
302
 
303
+ #: inc/class-create-archive.php:215
304
+ msgid "Cannot open archive file"
305
  msgstr ""
306
 
307
+ #. translators: The $1 is the tecnical error string from pclzip.
308
+ #: inc/class-create-archive.php:233
309
+ #: inc/class-create-archive.php:514
310
+ msgid "PclZip archive add error: %s"
311
  msgstr ""
312
 
313
+ #: inc/class-create-archive.php:311
314
+ msgid "File name cannot be empty."
 
315
  msgstr ""
316
 
317
+ #. translators: The $1 is the name of the file to add to the archive.
318
+ #: inc/class-create-archive.php:326
319
+ msgctxt "File to add to archive"
320
+ msgid "File %s does not exist or is not readable"
321
  msgstr ""
322
 
323
+ #: inc/class-create-archive.php:347
324
+ #: inc/class-create-archive.php:374
325
+ #: inc/class-create-archive.php:578
326
+ #: inc/class-create-archive.php:587
327
+ msgid "This archive method can only add one file"
328
  msgstr ""
329
 
330
+ #: inc/class-create-archive.php:442
331
+ msgid "ZIP archive cannot be closed correctly"
 
332
  msgstr ""
333
 
334
+ #. translators: the $1 is the name of the archive.
335
+ #. translators: $1 is the name of the archive.
336
+ #: inc/class-create-archive.php:473
337
+ #: inc/class-create-archive.php:490
338
+ #: inc/class-create-archive.php:607
339
+ msgid "Cannot add \"%s\" to zip archive!"
340
  msgstr ""
341
 
342
+ #: inc/class-create-archive.php:544
343
+ msgid "Folder name cannot be empty"
344
  msgstr ""
345
 
346
+ #. translators: $1 is the folder name
347
+ #: inc/class-create-archive.php:555
348
+ msgctxt "Folder path to add to archive"
349
+ msgid "Folder %s does not exist or is not readable"
350
  msgstr ""
351
 
352
+ #. translators. $1 is the status returned by a call to a ZipArchive method.
353
+ #: inc/class-create-archive.php:639
354
+ msgctxt "Text of ZipArchive status Message"
355
+ msgid "ZipArchive returns status: %s"
356
+ msgstr ""
357
+
358
+ #. translators: $1 is the file name.
359
+ #: inc/class-create-archive.php:687
360
+ msgid "File name \"%1$s\" is too long to be saved correctly in %2$s archive!"
361
+ msgstr ""
362
+
363
+ #. translators: $1 is the file name to use in the archive.
364
+ #: inc/class-create-archive.php:699
365
+ msgid "File path \"%1$s\" is too long to be saved correctly in %2$s archive!"
366
+ msgstr ""
367
+
368
+ #: inc/class-create-archive.php:741
369
+ msgid "Cannot open source file %s for archiving. Writing an empty file."
370
+ msgstr ""
371
+
372
+ #. translators: $1 is the name of the folder. $2 is the archive name.
373
+ #: inc/class-create-archive.php:803
374
+ msgid "Folder name \"%1$s\" is too long to be saved correctly in %2$s archive!"
375
  msgstr ""
376
 
377
+ #. translators: $1 is the name of the folder. $2 is the archive name.
378
+ #: inc/class-create-archive.php:818
379
+ msgid "Folder path \"%1$s\" is too long to be saved correctly in %2$s archive!"
380
  msgstr ""
381
 
382
+ #: inc/class-create-archive.php:886
383
+ msgid "If %s will be added to your backup archive, the archive will be too large for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
 
 
 
384
  msgstr ""
385
 
386
+ #: inc/class-create-archive.php:964
387
+ #: inc/class-create-archive.php:965
388
+ msgid "Unknown"
389
  msgstr ""
390
 
391
+ #. translators: $1 is the filename to add into the archive.
392
+ #: inc/class-create-archive.php:996
393
+ msgid "Cannot open source file %s."
394
  msgstr ""
395
 
396
+ #: inc/class-cron.php:73
397
+ msgid "Aborted, because no progress for one hour!"
398
  msgstr ""
399
 
400
+ #: inc/class-cron.php:107
401
+ #: inc/class-destination-folder.php:195
402
+ #: inc/class-jobtype-file.php:446
403
+ msgid "Could not open path: %s"
 
 
404
  msgstr ""
405
 
406
+ #: inc/class-decrypter.php:56
407
+ msgid "Cannot open the archive for reading."
408
  msgstr ""
409
 
410
+ #: inc/class-decrypter.php:82
411
+ msgid "Cannot write the encrypted archive."
412
  msgstr ""
413
 
414
+ #: inc/class-decrypter.php:162
415
+ msgid "Private key invalid."
416
  msgstr ""
417
 
418
+ #: inc/class-destination-dropbox-api.php:177
419
+ msgid "Beginning new file upload session"
 
 
 
 
 
420
  msgstr ""
421
 
422
+ #: inc/class-destination-dropbox-api.php:199
423
+ msgid "Uploading %s of data"
424
  msgstr ""
425
 
426
+ #: inc/class-destination-dropbox-api.php:244
427
+ msgid "Finishing upload session with a total of %s uploaded"
428
  msgstr ""
429
 
430
+ #: inc/class-destination-dropbox-downloader.php:72
431
+ #: inc/class-destination-ftp-downloader.php:72
432
+ #: inc/class-destination-s3-downloader.php:83
433
+ msgid "Could not write data to file."
 
434
  msgstr ""
435
 
436
+ #: inc/class-destination-dropbox-downloader.php:104
437
+ #: inc/class-destination-folder-downloader.php:137
438
+ #: inc/class-destination-ftp-downloader.php:126
439
+ #: inc/class-destination-s3-downloader.php:112
440
+ msgid "File could not be opened for writing."
441
  msgstr ""
442
 
443
+ #. translators: the $1 is the error message
444
+ #: inc/class-destination-dropbox.php:55
445
+ #: inc/class-destination-dropbox.php:458
446
+ msgid "Dropbox API: %s"
447
  msgstr ""
448
 
449
+ #: inc/class-destination-dropbox.php:72
450
+ msgid "Login"
451
  msgstr ""
452
 
453
+ #: inc/class-destination-dropbox.php:76
454
+ #: inc/class-destination-sugarsync.php:28
455
+ #: inc/class-destination-sugarsync.php:43
456
+ msgid "Authentication"
457
  msgstr ""
458
 
459
+ #: inc/class-destination-dropbox.php:78
460
+ msgid "Not authenticated!"
461
  msgstr ""
462
 
463
+ #: inc/class-destination-dropbox.php:81
464
+ msgid "Create Account"
465
  msgstr ""
466
 
467
+ #: inc/class-destination-dropbox.php:83
468
+ #: inc/class-destination-sugarsync.php:45
469
+ msgid "Authenticated!"
470
  msgstr ""
471
 
472
+ #: inc/class-destination-dropbox.php:92
473
+ #: inc/class-destination-dropbox.php:95
474
+ msgid "Delete Dropbox Authentication"
475
  msgstr ""
476
 
477
+ #: inc/class-destination-dropbox.php:102
478
+ msgid "App Access to Dropbox"
479
  msgstr ""
480
 
481
+ #: inc/class-destination-dropbox.php:110
482
+ msgid "Get Dropbox App auth code"
483
  msgstr ""
484
 
485
+ #: inc/class-destination-dropbox.php:111
486
+ msgid "A dedicated folder named BackWPup will be created inside of the Apps folder in your Dropbox. BackWPup will get read and write access to that folder only. You can specify a subfolder as your backup destination for this job in the destination field below."
 
487
  msgstr ""
488
 
489
+ #: inc/class-destination-dropbox.php:119
490
+ msgid " OR "
491
  msgstr ""
492
 
493
+ #: inc/class-destination-dropbox.php:122
494
+ msgid "Full Access to Dropbox"
495
  msgstr ""
496
 
497
+ #: inc/class-destination-dropbox.php:130
498
+ msgid "Get full Dropbox auth code "
499
  msgstr ""
500
 
501
+ #: inc/class-destination-dropbox.php:131
502
+ msgid "BackWPup will have full read and write access to your entire Dropbox. You can specify your backup destination wherever you want, just be aware that ANY files or folders inside of your Dropbox can be overridden or deleted by BackWPup."
 
503
  msgstr ""
504
 
505
+ #: inc/class-destination-dropbox.php:141
506
+ #: inc/class-destination-folder.php:27
507
+ #: inc/class-destination-ftp.php:82
508
+ #: inc/class-destination-msazure.php:66
509
+ #: inc/class-destination-rsc.php:95
510
+ #: inc/class-destination-sugarsync.php:81
511
+ msgid "Backup settings"
512
  msgstr ""
513
 
514
+ #: inc/class-destination-dropbox.php:145
515
+ msgid "Destination Folder"
 
516
  msgstr ""
517
 
518
+ #: inc/class-destination-dropbox.php:154
519
+ msgid "Specify a subfolder where your backup archives will be stored. If you use the App option from above, this folder will be created inside of Apps/BackWPup. Otherwise it will be created at the root of your Dropbox. Already exisiting folders with the same name will not be overriden."
520
  msgstr ""
521
 
522
+ #: inc/class-destination-dropbox.php:162
523
+ #: inc/class-destination-folder.php:40
524
+ #: inc/class-destination-ftp.php:95
525
+ #: inc/class-destination-sugarsync.php:91
526
+ msgid "File Deletion"
527
  msgstr ""
528
 
529
+ #: inc/class-destination-dropbox.php:171
530
+ #: inc/class-destination-folder.php:49
531
+ #: inc/class-destination-ftp.php:104
532
+ #: inc/class-destination-msazure.php:83
533
+ #: inc/class-destination-rsc.php:112
534
+ #: inc/class-destination-s3.php:229
535
+ #: inc/class-destination-sugarsync.php:98
536
+ msgid "Number of files to keep in folder."
537
  msgstr ""
538
 
539
+ #: inc/class-destination-dropbox.php:173
540
+ #: inc/class-destination-folder.php:51
541
+ #: inc/class-destination-ftp.php:106
542
+ #: inc/class-destination-msazure.php:85
543
+ #: inc/class-destination-rsc.php:114
544
+ #: inc/class-destination-s3.php:232
545
+ #: inc/class-destination-sugarsync.php:100
546
+ msgid "<strong>Warning</strong>: Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted."
547
  msgstr ""
548
 
549
+ #: inc/class-destination-dropbox.php:183
550
+ #: inc/class-destination-folder.php:57
551
+ #: inc/class-destination-ftp.php:118
552
+ #: inc/class-destination-msazure.php:89
553
+ #: inc/class-destination-rsc.php:118
554
+ #: inc/class-destination-s3.php:245
555
+ #: inc/class-destination-sugarsync.php:104
556
+ msgid "Do not delete files while syncing to destination!"
557
  msgstr ""
558
 
559
+ #: inc/class-destination-dropbox.php:345
560
+ msgid "One file deleted from Dropbox"
561
+ msgid_plural "%d files deleted on Dropbox"
562
+ msgstr[0] ""
563
 
564
+ #: inc/class-destination-dropbox.php:372
565
+ msgid "%d. Try to send backup file to Dropbox&#160;&hellip;"
 
566
  msgstr ""
567
 
568
+ #: inc/class-destination-dropbox.php:390
569
+ msgid "Authenticated with Dropbox of user: %s"
570
  msgstr ""
571
 
572
+ #: inc/class-destination-dropbox.php:398
573
+ msgid "%s available on your Dropbox"
574
  msgstr ""
575
 
576
+ #: inc/class-destination-dropbox.php:404
577
+ msgid "Not Authenticated with Dropbox!"
578
  msgstr ""
579
 
580
+ #: inc/class-destination-dropbox.php:408
581
+ msgid "Uploading to Dropbox&#160;&hellip;"
582
  msgstr ""
583
 
584
+ #: inc/class-destination-dropbox.php:432
585
+ #: inc/class-destination-msazure.php:290
586
+ #: inc/class-destination-sugarsync.php:263
587
+ msgid "Backup transferred to %s"
588
  msgstr ""
589
 
590
+ #: inc/class-destination-dropbox.php:438
591
+ msgid "Uploaded file size and local file size don't match."
592
  msgstr ""
593
 
594
+ #: inc/class-destination-dropbox.php:444
595
+ msgid "Error transfering backup to %s."
 
596
  msgstr ""
597
 
598
+ #: inc/class-destination-email.php:39
599
+ msgid "Email address"
 
600
  msgstr ""
601
 
602
+ #: inc/class-destination-email.php:43
603
+ msgid "To email address (separate with commas for multiple addresses)"
 
 
 
 
 
604
  msgstr ""
605
 
606
+ #: inc/class-destination-email.php:52
607
+ #: inc/class-destination-email.php:56
608
+ msgid "Send test email"
609
  msgstr ""
610
 
611
+ #: inc/class-destination-email.php:61
612
+ msgid "Send email settings"
 
 
613
  msgstr ""
614
 
615
+ #: inc/class-destination-email.php:65
616
+ msgid "Maximum file size"
 
 
 
 
 
 
617
  msgstr ""
618
 
619
+ #: inc/class-destination-email.php:69
620
+ msgid "MB"
 
 
 
 
 
 
621
  msgstr ""
622
 
623
+ #: inc/class-destination-email.php:70
624
+ msgid "Maximum file size to be included in an email. 0 = unlimited"
 
 
 
 
 
 
625
  msgstr ""
626
 
627
+ #: inc/class-destination-email.php:75
628
+ msgid "From email address"
629
  msgstr ""
630
 
631
+ #: inc/class-destination-email.php:83
632
+ msgid "From name"
 
 
 
633
  msgstr ""
634
 
635
+ #: inc/class-destination-email.php:92
636
+ msgid "Sending method"
637
  msgstr ""
638
 
639
+ #: inc/class-destination-email.php:97
640
+ msgid "Use WordPress settings"
641
  msgstr ""
642
 
643
+ #: inc/class-destination-email.php:98
644
+ msgid "PHP: mail()"
645
  msgstr ""
646
 
647
+ #: inc/class-destination-email.php:99
648
+ msgid "Sendmail"
 
 
 
 
649
  msgstr ""
650
 
651
+ #: inc/class-destination-email.php:100
652
+ msgid "SMTP"
653
  msgstr ""
654
 
655
+ #: inc/class-destination-email.php:108
656
+ msgid "Sendmail path"
657
  msgstr ""
658
 
659
+ #: inc/class-destination-email.php:119
660
+ msgid "SMTP host name"
661
+ msgstr ""
 
662
 
663
+ #: inc/class-destination-email.php:124
664
+ #: inc/class-destination-ftp.php:56
665
+ msgid "Port:"
666
  msgstr ""
667
 
668
+ #: inc/class-destination-email.php:136
669
+ msgid "SMTP secure connection"
670
  msgstr ""
671
 
672
+ #: inc/class-destination-email.php:141
673
+ #: inc/class-jobtype-dbdump.php:67
674
+ #: inc/class-jobtype-dbdump.php:103
675
+ #: inc/class-jobtype-wpexp.php:73
676
+ #: inc/class-jobtype-wpplugin.php:57
677
+ #: inc/class-page-backwpup.php:329
678
+ #: inc/class-page-backwpup.php:404
679
+ #: inc/class-page-settings.php:837
680
+ msgid "none"
681
  msgstr ""
682
 
683
+ #: inc/class-destination-email.php:143
684
+ msgid "SSL"
 
685
  msgstr ""
686
 
687
+ #: inc/class-destination-email.php:145
688
+ msgid "TLS"
689
  msgstr ""
690
 
691
+ #: inc/class-destination-email.php:152
692
+ msgid "SMTP username"
693
  msgstr ""
694
 
695
+ #: inc/class-destination-email.php:162
696
+ msgid "SMTP password"
697
  msgstr ""
698
 
699
+ #: inc/class-destination-email.php:243
700
+ msgid "%d. Try to send backup with email&#160;&hellip;"
701
  msgstr ""
702
 
703
+ #: inc/class-destination-email.php:248
704
+ msgid "Backup archive too big to be sent by email!"
705
  msgstr ""
706
 
707
+ #: inc/class-destination-email.php:255
708
+ msgid "Sending email to %s&hellip;"
709
  msgstr ""
710
 
711
+ #: inc/class-destination-email.php:333
712
+ msgid "BackWPup archive from %1$s: %2$s"
 
713
  msgstr ""
714
 
715
+ #: inc/class-destination-email.php:336
716
+ msgid "Backup archive: %s"
717
  msgstr ""
718
 
719
+ #: inc/class-destination-email.php:349
720
+ #: inc/class-destination-email.php:474
721
+ msgid "Error while sending email!"
 
 
 
 
 
 
 
 
 
 
 
 
722
  msgstr ""
723
 
724
+ #: inc/class-destination-email.php:354
725
+ #: inc/class-destination-email.php:476
726
+ msgid "Email sent."
727
  msgstr ""
728
 
729
+ #: inc/class-destination-email.php:459
730
+ msgid "BackWPup archive sending TEST Message"
731
  msgstr ""
732
 
733
+ #: inc/class-destination-email.php:462
734
+ msgid "If this message reaches your inbox, sending backup archives via email should work for you."
735
  msgstr ""
736
 
737
+ #: inc/class-destination-folder-downloader.php:64
738
+ msgid "Could not read data from source file."
 
739
  msgstr ""
740
 
741
+ #: inc/class-destination-folder-downloader.php:69
742
+ msgid "Could not write data into target file."
743
  msgstr ""
744
 
745
+ #: inc/class-destination-folder-downloader.php:96
746
+ msgid "File could not be opened for reading."
747
  msgstr ""
748
 
749
+ #. translators: $1 is the path of the local file where the backup will be stored
750
+ #: inc/class-destination-folder-downloader.php:141
751
+ msgid "%s is a directory not a file."
752
  msgstr ""
753
 
754
+ #: inc/class-destination-folder.php:32
755
+ msgid "Folder to store backups in"
756
  msgstr ""
757
 
758
+ #: inc/class-destination-folder.php:219
759
+ msgid "One backup file deleted"
760
+ msgid_plural "%d backup files deleted"
761
+ msgstr[0] ""
762
+
763
+ #: inc/class-destination-ftp-downloader.php:108
764
+ msgid "Cannot open FTP file for download."
765
  msgstr ""
766
 
767
+ #: inc/class-destination-ftp.php:46
768
+ msgid "FTP server and login"
 
769
  msgstr ""
770
 
771
+ #: inc/class-destination-ftp.php:50
772
+ msgid "FTP server"
773
  msgstr ""
774
 
775
+ #: inc/class-destination-ftp.php:63
776
+ #: inc/class-destination-rsc.php:46
777
+ msgid "Username"
778
  msgstr ""
779
 
780
+ #: inc/class-destination-ftp.php:71
781
+ msgid "Password"
782
  msgstr ""
783
 
784
+ #: inc/class-destination-ftp.php:87
785
+ msgid "Folder to store files in"
786
  msgstr ""
787
 
788
+ #: inc/class-destination-ftp.php:128
789
+ msgid "FTP specific settings"
790
  msgstr ""
791
 
792
+ #: inc/class-destination-ftp.php:133
793
+ msgid "Timeout for FTP connection"
794
  msgstr ""
795
 
796
+ #: inc/class-destination-ftp.php:137
797
+ #: inc/class-page-logs.php:288
798
+ msgid "seconds"
799
  msgstr ""
800
 
801
+ #: inc/class-destination-ftp.php:141
802
+ msgid "SSL-FTP connection"
803
  msgstr ""
804
 
805
+ #: inc/class-destination-ftp.php:148
806
+ msgid "Use explicit SSL-FTP connection."
807
+ msgstr ""
808
+
809
+ #: inc/class-destination-ftp.php:153
810
+ msgid "FTP Passive Mode"
811
  msgstr ""
812
 
813
+ #: inc/class-destination-ftp.php:158
814
+ msgid "Use FTP Passive Mode."
815
  msgstr ""
816
 
817
+ #: inc/class-destination-ftp.php:321
818
+ msgid "Could not log in to FTP server."
819
  msgstr ""
820
 
821
+ #: inc/class-destination-ftp.php:394
822
+ msgid "Cannot delete \"%s\" on FTP server!"
823
  msgstr ""
824
 
825
+ #: inc/class-destination-ftp.php:404
826
+ msgid "One file deleted on FTP server"
827
+ msgid_plural "%d files deleted on FTP server"
828
+ msgstr[0] ""
829
+
830
+ #: inc/class-destination-ftp.php:433
831
+ msgid "%d. Try to send backup file to an FTP server&#160;&hellip;"
832
  msgstr ""
833
 
834
+ #: inc/class-destination-ftp.php:450
835
+ msgid "Connected via explicit SSL-FTP to server: %s"
836
  msgstr ""
837
 
838
+ #: inc/class-destination-ftp.php:458
839
+ msgid "Cannot connect via explicit SSL-FTP to server: %s"
840
  msgstr ""
841
 
842
+ #: inc/class-destination-ftp.php:468
843
+ msgid "PHP function to connect with explicit SSL-FTP to server does not exist!"
844
  msgstr ""
845
 
846
+ #: inc/class-destination-ftp.php:483
847
+ msgid "Connected to FTP server: %s"
848
  msgstr ""
849
 
850
+ #: inc/class-destination-ftp.php:491
851
+ msgid "Cannot connect to FTP server: %s"
852
  msgstr ""
853
 
854
+ #: inc/class-destination-ftp.php:503
855
+ #: inc/class-destination-ftp.php:523
856
+ #: inc/class-destination-ftp.php:546
857
+ #: inc/class-destination-ftp.php:603
858
+ msgid "FTP client command: %s"
859
  msgstr ""
860
 
861
+ #: inc/class-destination-ftp.php:513
862
+ msgid "FTP server response: %s"
 
863
  msgstr ""
864
 
865
+ #: inc/class-destination-ftp.php:520
866
+ #: inc/class-destination-ftp.php:531
867
+ #: inc/class-destination-ftp.php:534
868
+ #: inc/class-destination-ftp.php:549
869
+ #: inc/class-destination-ftp.php:552
870
+ #: inc/class-destination-ftp.php:607
871
+ #: inc/class-destination-ftp.php:612
872
+ #: inc/class-destination-ftp.php:619
873
+ #: inc/class-destination-ftp.php:624
874
+ msgid "FTP server reply: %s"
875
  msgstr ""
876
 
877
+ #: inc/class-destination-ftp.php:552
878
+ msgid "Error getting SYSTYPE"
879
  msgstr ""
880
 
881
+ #: inc/class-destination-ftp.php:590
882
+ msgid "FTP current folder is: %s"
 
 
 
 
 
 
 
 
 
 
 
883
  msgstr ""
884
 
885
+ #: inc/class-destination-ftp.php:607
886
+ msgid "Entering passive mode"
887
  msgstr ""
888
 
889
+ #: inc/class-destination-ftp.php:612
890
+ msgid "Cannot enter passive mode"
891
  msgstr ""
892
 
893
+ #: inc/class-destination-ftp.php:619
894
+ msgid "Entering normal mode"
895
  msgstr ""
896
 
897
+ #: inc/class-destination-ftp.php:624
898
+ msgid "Cannot enter normal mode"
899
  msgstr ""
900
 
901
+ #: inc/class-destination-ftp.php:631
902
+ msgid "Starting upload to FTP &#160;&hellip;"
903
  msgstr ""
904
 
905
+ #: inc/class-destination-ftp.php:649
906
+ msgid "Cannot transfer backup to FTP server!"
907
  msgstr ""
908
 
909
+ #: inc/class-destination-ftp.php:656
910
+ msgid "Backup transferred to FTP server: %s"
911
  msgstr ""
912
 
913
+ #: inc/class-destination-ftp.php:673
914
+ #: inc/class-destination-msazure.php:275
915
+ #: inc/class-destination-rsc.php:292
916
+ #: inc/class-destination-s3.php:843
917
+ #: inc/class-destination-s3.php:958
918
+ msgid "Can not open source file for transfer."
919
  msgstr ""
920
 
921
+ #: inc/class-destination-ftp.php:735
922
+ msgid "FTP Folder \"%s\" cannot be created! Parent directory may be not writable."
 
 
923
  msgstr ""
924
 
925
+ #: inc/class-destination-ftp.php:753
926
+ msgid "FTP Folder \"%s\" cannot be created!"
927
  msgstr ""
928
 
929
+ #: inc/class-destination-ftp.php:765
930
+ msgid "FTP Folder \"%s\" created!"
 
 
 
931
  msgstr ""
932
 
933
  #: inc/class-destination-msazure.php:25
946
  msgid "Blob container"
947
  msgstr ""
948
 
949
+ #: inc/class-destination-msazure.php:48
950
+ #: inc/class-destination-rsc.php:76
951
+ msgid "Container selection"
952
+ msgstr ""
953
+
954
+ #: inc/class-destination-msazure.php:59
955
+ #: inc/class-destination-rsc.php:88
956
+ msgid "Create a new container"
957
+ msgstr ""
958
+
959
  #: inc/class-destination-msazure.php:70
960
  msgid "Folder in container"
961
  msgstr ""
962
 
963
+ #: inc/class-destination-msazure.php:76
964
+ #: inc/class-destination-rsc.php:105
965
+ #: inc/class-destination-s3.php:215
966
+ msgid "File deletion"
967
+ msgstr ""
968
+
969
  #: inc/class-destination-msazure.php:128
970
  msgid "MS Azure container \"%s\" created."
971
  msgstr ""
990
  msgid "Starting upload to MS Azure&#160;&hellip;"
991
  msgstr ""
992
 
 
 
 
 
 
 
993
  #: inc/class-destination-msazure.php:296
994
  #: inc/class-destination-msazure.php:352
995
  msgid "Microsoft Azure API: %s"
1013
  msgid "No container found!"
1014
  msgstr ""
1015
 
1016
+ #: inc/class-destination-rsc.php:42
1017
+ msgid "Rack Space Cloud Keys"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
  msgstr ""
1019
 
1020
+ #: inc/class-destination-rsc.php:52
1021
+ msgid "API Key"
1022
  msgstr ""
1023
 
1024
+ #: inc/class-destination-rsc.php:59
1025
+ msgid "Select region"
1026
  msgstr ""
1027
 
1028
+ #: inc/class-destination-rsc.php:63
1029
+ #: inc/class-destination-rsc.php:65
1030
+ msgid "Rackspace Cloud Files Region"
1031
  msgstr ""
1032
 
1033
+ #: inc/class-destination-rsc.php:66
1034
+ msgid "Dallas (DFW)"
 
 
 
 
 
 
 
1035
  msgstr ""
1036
 
1037
+ #: inc/class-destination-rsc.php:67
1038
+ msgid "Chicago (ORD)"
 
 
 
 
 
1039
  msgstr ""
1040
 
1041
+ #: inc/class-destination-rsc.php:68
1042
+ msgid "Sydney (SYD)"
 
 
 
1043
  msgstr ""
1044
 
1045
+ #: inc/class-destination-rsc.php:69
1046
+ msgid "London (LON)"
1047
  msgstr ""
1048
 
1049
+ #: inc/class-destination-rsc.php:70
1050
+ msgid "Northern Virginia (IAD)"
1051
  msgstr ""
1052
 
1053
+ #: inc/class-destination-rsc.php:71
1054
+ msgid "Hong Kong (HKG)"
 
 
 
 
 
 
 
1055
  msgstr ""
1056
 
1057
+ #: inc/class-destination-rsc.php:99
1058
+ #: inc/class-destination-s3.php:202
1059
+ msgid "Folder in bucket"
1060
  msgstr ""
1061
 
1062
+ #: inc/class-destination-rsc.php:158
1063
+ msgid "Rackspace Cloud container \"%s\" created."
1064
  msgstr ""
1065
 
1066
+ #: inc/class-destination-rsc.php:162
1067
+ #: inc/class-destination-rsc.php:277
1068
+ #: inc/class-destination-rsc.php:317
1069
+ #: inc/class-destination-rsc.php:362
1070
+ msgid "Rackspace Cloud API: %s"
1071
  msgstr ""
1072
 
1073
+ #: inc/class-destination-rsc.php:260
1074
+ msgid "%d. Trying to send backup file to Rackspace cloud &hellip;"
1075
  msgstr ""
1076
 
1077
+ #: inc/class-destination-rsc.php:274
1078
+ msgid "Connected to Rackspace cloud files container %s"
1079
  msgstr ""
1080
 
1081
+ #: inc/class-destination-rsc.php:286
1082
+ msgid "Upload to Rackspace cloud started &hellip;"
 
1083
  msgstr ""
1084
 
1085
+ #: inc/class-destination-rsc.php:305
1086
+ msgid "Backup File transferred to RSC://"
1087
  msgstr ""
1088
 
1089
+ #: inc/class-destination-rsc.php:311
1090
+ msgid "Cannot transfer backup to Rackspace cloud."
1091
  msgstr ""
1092
 
1093
+ #: inc/class-destination-rsc.php:356
1094
+ msgid "One file deleted on Rackspace cloud container."
1095
+ msgid_plural "%d files deleted on Rackspace cloud container."
1096
+ msgstr[0] ""
1097
+
1098
+ #: inc/class-destination-rsc.php:469
1099
+ msgid "Missing username!"
1100
  msgstr ""
1101
 
1102
+ #: inc/class-destination-rsc.php:471
1103
+ msgid "Missing API Key!"
1104
  msgstr ""
1105
 
1106
+ #: inc/class-destination-rsc.php:475
1107
+ msgid "A container could not be found!"
1108
  msgstr ""
1109
 
1110
+ #: inc/class-destination-s3-downloader.php:76
1111
+ msgid "Could not write data to file. Empty source file."
 
 
1112
  msgstr ""
1113
 
1114
  #: inc/class-destination-s3.php:48
1258
  msgstr ""
1259
 
1260
  #: inc/class-destination-s3.php:1118
1261
+ msgid "Amazon S3: US Standard"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1262
  msgstr ""
1263
 
1264
+ #: inc/class-destination-s3.php:1122
1265
+ msgid "Amazon S3: US West (Northern California)"
1266
  msgstr ""
1267
 
1268
+ #: inc/class-destination-s3.php:1126
1269
+ msgid "Amazon S3: US West (Oregon)"
1270
  msgstr ""
1271
 
1272
+ #: inc/class-destination-s3.php:1130
1273
+ msgid "Amazon S3: EU (Ireland)"
 
 
1274
  msgstr ""
1275
 
1276
+ #: inc/class-destination-s3.php:1134
1277
+ msgid "Amazon S3: EU (London)"
1278
  msgstr ""
1279
 
1280
+ #: inc/class-destination-s3.php:1138
1281
+ msgid "Amazon S3: EU (Germany)"
1282
  msgstr ""
1283
 
1284
+ #: inc/class-destination-s3.php:1142
1285
+ msgid "Amazon S3: Asia Pacific (Mumbai)"
 
 
 
1286
  msgstr ""
1287
 
1288
+ #: inc/class-destination-s3.php:1146
1289
+ msgid "Amazon S3: Asia Pacific (Tokyo)"
1290
  msgstr ""
1291
 
1292
+ #: inc/class-destination-s3.php:1150
1293
+ msgid "Amazon S3: Asia Pacific (Seoul)"
 
 
1294
  msgstr ""
1295
 
1296
+ #: inc/class-destination-s3.php:1154
1297
+ msgid "Amazon S3: Asia Pacific (Singapore)"
 
1298
  msgstr ""
1299
 
1300
+ #: inc/class-destination-s3.php:1158
1301
+ msgid "Amazon S3: Asia Pacific (Sydney)"
 
 
1302
  msgstr ""
1303
 
1304
+ #: inc/class-destination-s3.php:1162
1305
+ msgid "Amazon S3: South America (Sao Paulo)"
1306
  msgstr ""
1307
 
1308
+ #: inc/class-destination-s3.php:1166
1309
+ msgid "Amazon S3: China (Beijing)"
1310
  msgstr ""
1311
 
1312
+ #: inc/class-destination-s3.php:1170
1313
+ msgid "Google Storage: EU"
1314
  msgstr ""
1315
 
1316
+ #: inc/class-destination-s3.php:1174
1317
+ msgid "Google Storage: USA"
1318
  msgstr ""
1319
 
1320
+ #: inc/class-destination-s3.php:1178
1321
+ msgid "Google Storage: Asia"
1322
  msgstr ""
1323
 
1324
+ #: inc/class-destination-s3.php:1182
1325
+ msgid "Dream Host Cloud Storage"
1326
  msgstr ""
1327
 
1328
+ #: inc/class-destination-sugarsync.php:22
1329
+ msgid "Sugarsync Login"
1330
  msgstr ""
1331
 
1332
+ #: inc/class-destination-sugarsync.php:30
1333
+ msgid "Email address:"
1334
  msgstr ""
1335
 
1336
+ #: inc/class-destination-sugarsync.php:33
1337
+ msgid "Password:"
1338
  msgstr ""
1339
 
1340
+ #: inc/class-destination-sugarsync.php:37
1341
+ #: inc/class-destination-sugarsync.php:120
1342
+ msgid "Authenticate with Sugarsync!"
 
1343
  msgstr ""
1344
 
1345
+ #: inc/class-destination-sugarsync.php:38
1346
+ #: inc/class-destination-sugarsync.php:136
1347
+ msgid "Create Sugarsync account"
1348
  msgstr ""
1349
 
1350
+ #: inc/class-destination-sugarsync.php:46
1351
+ #: inc/class-destination-sugarsync.php:132
1352
+ msgid "Delete Sugarsync authentication!"
1353
  msgstr ""
1354
 
1355
+ #: inc/class-destination-sugarsync.php:52
1356
+ msgid "SugarSync Root"
1357
  msgstr ""
1358
 
1359
+ #: inc/class-destination-sugarsync.php:56
1360
+ msgid "Sync folder selection"
1361
  msgstr ""
1362
 
1363
+ #: inc/class-destination-sugarsync.php:64
1364
+ msgid "No Syncfolders found!"
1365
  msgstr ""
1366
 
1367
+ #: inc/class-destination-sugarsync.php:85
1368
+ msgid "Folder in root"
1369
  msgstr ""
1370
 
1371
+ #: inc/class-destination-sugarsync.php:233
1372
+ msgid "%d. Try to send backup to SugarSync&#160;&hellip;"
1373
  msgstr ""
1374
 
1375
+ #: inc/class-destination-sugarsync.php:240
1376
+ msgid "Authenticated to SugarSync with nickname %s"
 
1377
  msgstr ""
1378
 
1379
+ #: inc/class-destination-sugarsync.php:243
1380
+ msgctxt "Available space on SugarSync"
1381
+ msgid "Not enough disk space available on SugarSync. Available: %s."
1382
  msgstr ""
1383
 
1384
+ #: inc/class-destination-sugarsync.php:249
1385
+ msgid "%s available at SugarSync"
1386
  msgstr ""
1387
 
1388
+ #: inc/class-destination-sugarsync.php:256
1389
+ msgid "Starting upload to SugarSync&#160;&hellip;"
1390
  msgstr ""
1391
 
1392
+ #: inc/class-destination-sugarsync.php:266
1393
+ msgid "Cannot transfer backup to SugarSync!"
1394
  msgstr ""
1395
 
1396
+ #: inc/class-destination-sugarsync.php:305
1397
+ msgid "One file deleted on SugarSync folder"
1398
+ msgid_plural "%d files deleted on SugarSync folder"
1399
+ msgstr[0] ""
1400
+
1401
+ #: inc/class-destination-sugarsync.php:311
1402
+ msgid "SugarSync API: %s"
1403
  msgstr ""
1404
 
1405
+ #: inc/class-download-file.php:135
1406
+ msgid "Invalid file name, seems file include invalid characters."
 
 
1407
  msgstr ""
1408
 
1409
  #: inc/class-easycron.php:179
1430
  msgid "If you check this box, a cron job will be created on EasyCron that all 5 Minutes calls the WordPress cron."
1431
  msgstr ""
1432
 
1433
+ #: inc/class-file.php:142
1434
+ msgid "Folder %1$s not allowed, please use another folder."
1435
  msgstr ""
1436
 
1437
+ #: inc/class-file.php:147
1438
+ msgid "Folder %1$s is not in open basedir, please use another folder."
1439
  msgstr ""
1440
 
1441
+ #: inc/class-file.php:153
1442
+ msgid "Cannot create folder: %1$s"
1443
  msgstr ""
1444
 
1445
+ #: inc/class-file.php:159
1446
+ msgid "Folder \"%1$s\" is not writable"
1447
  msgstr ""
1448
 
1449
+ #: inc/class-file.php:195
1450
+ msgid "BackWPup will not backup folders and its sub folders when this file is inside."
1451
  msgstr ""
1452
 
1453
+ #: inc/class-help.php:15
1454
+ msgid "Plugin Info"
1455
  msgstr ""
1456
 
1457
+ #: inc/class-help.php:17
1458
+ msgctxt "Plugin name and link; Plugin Version"
1459
+ msgid "%1$s version %2$s. A project by <a href=\"http://inpsyde.com\">Inpsyde GmbH</a>."
1460
  msgstr ""
1461
 
1462
+ #: inc/class-help.php:18
1463
+ msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is a free software, and you are welcome to redistribute it under certain conditions."
1464
  msgstr ""
1465
 
1466
+ #: inc/class-help.php:21
1467
+ msgid "For more information:"
1468
  msgstr ""
1469
 
1470
+ #: inc/class-help.php:23
1471
+ msgid "Plugin on wordpress.org"
1472
  msgstr ""
1473
 
1474
+ #: inc/class-help.php:24
1475
+ msgid "Manual"
1476
  msgstr ""
1477
 
1478
+ #: inc/class-install.php:90
1479
+ msgid "BackWPup Admin"
 
 
1480
  msgstr ""
1481
 
1482
+ #: inc/class-install.php:105
1483
+ msgid "BackWPup jobs checker"
1484
  msgstr ""
1485
 
1486
+ #: inc/class-install.php:120
1487
+ msgid "BackWPup jobs helper"
 
 
1488
  msgstr ""
1489
 
1490
+ #: inc/class-job.php:297
1491
+ msgid "Starting job"
1492
  msgstr ""
1493
 
1494
+ #: inc/class-job.php:314
1495
+ msgid "Job Start"
 
 
1496
  msgstr ""
1497
 
1498
+ #: inc/class-job.php:334
1499
+ msgid "Creates manifest file"
1500
  msgstr ""
1501
 
1502
+ #: inc/class-job.php:356
1503
+ msgid "Creates archive"
1504
+ msgstr ""
1505
+
1506
+ #: inc/class-job.php:362
1507
+ msgid "Encrypts the archive"
1508
+ msgstr ""
1509
+
1510
+ #: inc/class-job.php:403
1511
+ msgid "End of Job"
1512
+ msgstr ""
1513
+
1514
+ #: inc/class-job.php:428
1515
+ msgid "BackWPup log for %1$s from %2$s at %3$s"
1516
+ msgstr ""
1517
+
1518
+ #: inc/class-job.php:456
1519
+ msgctxt "Plugin name; Plugin Version; plugin url"
1520
+ msgid "[INFO] %1$s %2$s; A project of Inpsyde GmbH"
1521
+ msgstr ""
1522
+
1523
+ #: inc/class-job.php:462
1524
+ msgctxt "WordPress Version; Blog url"
1525
+ msgid "[INFO] WordPress %1$s on %2$s"
1526
+ msgstr ""
1527
+
1528
+ #: inc/class-job.php:465
1529
+ msgid "Normal"
1530
  msgstr ""
1531
 
1532
+ #: inc/class-job.php:468
1533
+ msgid "Debug"
1534
  msgstr ""
1535
 
1536
+ #: inc/class-job.php:471
1537
+ msgid "(translated)"
 
 
1538
  msgstr ""
1539
 
1540
+ #: inc/class-job.php:474
1541
+ msgid "[INFO] Log Level: %1$s %2$s"
 
 
 
1542
  msgstr ""
1543
 
1544
+ #: inc/class-job.php:480
1545
+ msgid "[INFO] BackWPup job: %1$s"
1546
  msgstr ""
1547
 
1548
+ #: inc/class-job.php:484
1549
+ msgid "[INFO] Runs with user: %1$s (%2$d) "
 
 
 
 
1550
  msgstr ""
1551
 
1552
+ #: inc/class-job.php:500
1553
+ #: inc/class-page-backwpup.php:323
1554
+ #: inc/class-page-jobs.php:282
1555
+ #: inc/class-page-jobs.php:291
1556
+ msgid "Not scheduled!"
1557
  msgstr ""
1558
 
1559
+ #: inc/class-job.php:507
1560
+ #: inc/class-job.php:519
1561
+ msgid "[INFO] Cron: %s; Next: %s "
 
1562
  msgstr ""
1563
 
1564
+ #: inc/class-job.php:511
1565
+ msgid "[INFO] BackWPup job start with link is active"
 
 
1566
  msgstr ""
1567
 
1568
+ #: inc/class-job.php:513
1569
+ msgid "[INFO] BackWPup job start with EasyCron.com"
 
1570
  msgstr ""
1571
 
1572
+ #: inc/class-job.php:523
1573
+ msgid "[INFO] BackWPup no automatic job start configured"
 
1574
  msgstr ""
1575
 
1576
+ #: inc/class-job.php:527
1577
+ msgid "[INFO] BackWPup job started from wp-cron"
1578
  msgstr ""
1579
 
1580
+ #: inc/class-job.php:529
1581
+ msgid "[INFO] BackWPup job started manually"
 
1582
  msgstr ""
1583
 
1584
+ #: inc/class-job.php:531
1585
+ msgid "[INFO] BackWPup job started from external url"
 
1586
  msgstr ""
1587
 
1588
+ #: inc/class-job.php:533
1589
+ msgid "[INFO] BackWPup job started form commandline interface"
1590
  msgstr ""
1591
 
1592
+ #: inc/class-job.php:544
1593
+ msgid "[INFO] PHP ver.:"
 
1594
  msgstr ""
1595
 
1596
+ #: inc/class-job.php:548
1597
+ msgid "[INFO] Maximum PHP script execution time is %1$d seconds"
 
1598
  msgstr ""
1599
 
1600
+ #: inc/class-job.php:555
1601
+ msgid "[INFO] Script restart time is configured to %1$d seconds"
 
 
1602
  msgstr ""
1603
 
1604
+ #: inc/class-job.php:561
1605
+ msgid "[INFO] MySQL ver.: %s"
1606
  msgstr ""
1607
 
1608
+ #: inc/class-job.php:565
1609
+ msgid "[INFO] Web Server: %s"
 
 
1610
  msgstr ""
1611
 
1612
+ #: inc/class-job.php:571
1613
+ msgid "[INFO] curl ver.: %1$s; %2$s"
1614
  msgstr ""
1615
 
1616
+ #: inc/class-job.php:576
1617
+ msgid "[INFO] Temp folder is: %s"
1618
  msgstr ""
1619
 
1620
+ #: inc/class-job.php:584
1621
+ msgid "[INFO] Logfile is: %s"
 
1622
  msgstr ""
1623
 
1624
+ #: inc/class-job.php:591
1625
+ msgid "[INFO] Backup file is: %s"
 
1626
  msgstr ""
1627
 
1628
+ #: inc/class-job.php:594
1629
+ msgid "[INFO] Backup type is: %s"
1630
  msgstr ""
1631
 
1632
+ #: inc/class-job.php:603
1633
+ msgid "Could not write log file"
1634
  msgstr ""
1635
 
1636
+ #: inc/class-job.php:616
1637
+ msgid "No destination correctly defined for backup! Please correct job settings."
1638
  msgstr ""
1639
 
1640
+ #: inc/class-job.php:718
1641
+ msgid "Cannot write progress to working file. Job will be aborted."
1642
  msgstr ""
1643
 
1644
+ #: inc/class-job.php:793
1645
+ #: inc/class-page-jobs.php:786
1646
+ msgid "WARNING:"
1647
  msgstr ""
1648
 
1649
+ #: inc/class-job.php:802
1650
+ #: inc/class-page-jobs.php:784
1651
+ msgid "ERROR:"
1652
  msgstr ""
1653
 
1654
+ #: inc/class-job.php:806
1655
+ msgid "DEPRECATED:"
1656
  msgstr ""
1657
 
1658
+ #: inc/class-job.php:809
1659
+ msgid "STRICT NOTICE:"
1660
  msgstr ""
1661
 
1662
+ #: inc/class-job.php:814
1663
+ msgid "RECOVERABLE ERROR:"
1664
  msgstr ""
1665
 
1666
+ #: inc/class-job.php:1091
1667
+ msgid "Aborted by user!"
 
 
 
1668
  msgstr ""
1669
 
1670
+ #: inc/class-job.php:1129
1671
+ msgid "One old log deleted"
1672
+ msgid_plural "%d old logs deleted"
1673
  msgstr[0] ""
1674
 
1675
+ #: inc/class-job.php:1141
1676
+ #: inc/class-page-jobs.php:784
1677
+ msgid "Job has ended with errors in %s seconds. You must resolve the errors for correct execution."
 
 
 
1678
  msgstr ""
1679
 
1680
+ #: inc/class-job.php:1150
1681
+ msgid "Job finished with warnings in %s seconds. Please resolve them for correct execution."
1682
  msgstr ""
1683
 
1684
+ #: inc/class-job.php:1158
1685
+ #: inc/class-page-jobs.php:788
1686
+ msgid "Job done in %s seconds."
1687
  msgstr ""
1688
 
1689
+ #: inc/class-job.php:1212
1690
+ msgid "SUCCESSFUL"
1691
  msgstr ""
1692
 
1693
+ #: inc/class-job.php:1214
1694
+ msgid "WARNING"
1695
  msgstr ""
1696
 
1697
+ #: inc/class-job.php:1217
1698
+ msgid "ERROR"
1699
  msgstr ""
1700
 
1701
+ #: inc/class-job.php:1221
1702
+ msgid "[%3$s] BackWPup log %1$s: %2$s"
 
 
1703
  msgstr ""
1704
 
1705
+ #: inc/class-job.php:1341
1706
+ msgid "Restart after %1$d seconds."
1707
  msgstr ""
1708
 
1709
+ #: inc/class-job.php:1343
1710
+ msgid "Restart after getting signal."
1711
  msgstr ""
1712
 
1713
+ #: inc/class-job.php:1534
1714
+ msgid "Job restarts due to inactivity for more than 5 minutes."
1715
  msgstr ""
1716
 
1717
+ #: inc/class-job.php:1636
1718
+ msgid "Step aborted: too many attempts!"
1719
  msgstr ""
1720
 
1721
+ #: inc/class-job.php:1716
1722
+ msgid "%d. Trying to create backup archive &hellip;"
1723
  msgstr ""
1724
 
1725
+ #: inc/class-job.php:1729
1726
+ msgctxt "Archive compression method"
1727
+ msgid "Compressing files as %s. Please be patient, this may take a moment."
1728
  msgstr ""
1729
 
1730
+ #: inc/class-job.php:1742
1731
+ msgid "Adding Extra files to Archive"
1732
  msgstr ""
1733
 
1734
+ #: inc/class-job.php:1754
1735
+ #: inc/class-job.php:1823
1736
+ msgid "Cannot create backup archive correctly. Aborting creation."
1737
  msgstr ""
1738
 
1739
+ #: inc/class-job.php:1772
1740
+ msgid "Archiving Folder: %s"
 
1741
  msgstr ""
1742
 
1743
+ #: inc/class-job.php:1834
1744
+ msgid "Backup archive created."
1745
  msgstr ""
1746
 
1747
+ #: inc/class-job.php:1849
1748
+ msgid "The Backup archive will be too large for file operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each."
1749
  msgstr ""
1750
 
1751
+ #: inc/class-job.php:1857
1752
+ msgid "Archive size is %s."
1753
  msgstr ""
1754
 
1755
+ #: inc/class-job.php:1864
1756
+ msgid "%1$d Files with %2$s in Archive."
1757
  msgstr ""
1758
 
1759
+ #: inc/class-job.php:1902
1760
+ msgid "No encryption key was provided. Aborting encryption."
1761
  msgstr ""
1762
 
1763
+ #: inc/class-job.php:1912
1764
+ msgid "%d. Trying to encrypt archive &hellip;"
1765
  msgstr ""
1766
 
1767
+ #: inc/class-job.php:1925
1768
+ msgid "Cannot open the archive for reading. Aborting encryption."
1769
  msgstr ""
1770
 
1771
+ #: inc/class-job.php:1932
1772
+ msgid "Cannot write the encrypted archive. Aborting encryption."
1773
  msgstr ""
1774
 
1775
+ #: inc/class-job.php:1991
1776
+ msgid "Encrypted %s of data."
1777
  msgstr ""
1778
 
1779
+ #: inc/class-job.php:1996
1780
+ msgid "Unable to delete unencrypted archive."
 
1781
  msgstr ""
1782
 
1783
+ #: inc/class-job.php:2003
1784
+ msgid "Unable to rename encrypted archive."
1785
  msgstr ""
1786
 
1787
+ #: inc/class-job.php:2009
1788
+ msgid "Archive has been successfully encrypted."
1789
  msgstr ""
1790
 
1791
+ #: inc/class-job.php:2059
1792
+ msgctxt "Folder name"
1793
+ msgid "Folder %s does not exist"
1794
  msgstr ""
1795
 
1796
+ #: inc/class-job.php:2067
1797
+ msgctxt "Folder name"
1798
+ msgid "Folder %s is not readable"
1799
  msgstr ""
1800
 
1801
+ #: inc/class-job.php:2096
1802
+ msgid "Link \"%s\" not following."
1803
  msgstr ""
1804
 
1805
+ #: inc/class-job.php:2100
1806
+ msgid "File \"%s\" is not readable!"
1807
  msgstr ""
1808
 
1809
+ #: inc/class-job.php:2107
1810
+ msgid "File size of “%s” cannot be retrieved. File might be too large and will not be added to queue."
1811
  msgstr ""
1812
 
1813
+ #: inc/class-job.php:2197
1814
+ msgid "%d. Trying to generate a manifest file&#160;&hellip;"
1815
  msgstr ""
1816
 
1817
+ #: inc/class-job.php:2264
1818
+ msgid "You may have noticed the manifest.json file in this archive."
1819
  msgstr ""
1820
 
1821
+ #: inc/class-job.php:2265
1822
+ msgid "manifest.json might be needed for later restoring a backup from this archive."
1823
  msgstr ""
1824
 
1825
+ #: inc/class-job.php:2268
1826
+ msgid "Please leave manifest.json untouched and in place. Otherwise it is safe to be ignored."
 
1827
  msgstr ""
1828
 
1829
+ #: inc/class-job.php:2282
1830
+ msgid "Added manifest.json file with %1$s to backup file list."
1831
  msgstr ""
1832
 
1833
+ #: inc/class-job.php:2324
1834
+ msgid "Wrong BackWPup JobID"
 
1835
  msgstr ""
1836
 
1837
+ #: inc/class-job.php:2337
1838
+ msgid "A BackWPup job is already running"
1839
  msgstr ""
1840
 
1841
+ #: inc/class-job.php:2719
1842
+ msgid "exec command is not active."
1843
  msgstr ""
1844
 
1845
+ #: inc/class-job.php:2725
1846
+ msgid "mysqldump binary not found."
1847
  msgstr ""
1848
 
1849
+ #: inc/class-job.php:2752
1850
+ msgctxt "SIGHUP: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1851
+ msgid "Hangup detected on controlling terminal or death of controlling process"
1852
  msgstr ""
1853
 
1854
+ #: inc/class-job.php:2759
1855
+ msgctxt "SIGINT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1856
+ msgid "Interrupt from keyboard"
1857
  msgstr ""
1858
 
1859
+ #: inc/class-job.php:2766
1860
+ msgctxt "SIGQUIT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1861
+ msgid "Quit from keyboard"
1862
  msgstr ""
1863
 
1864
+ #: inc/class-job.php:2773
1865
+ msgctxt "SIGILL: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1866
+ msgid "Illegal Instruction"
1867
  msgstr ""
1868
 
1869
+ #: inc/class-job.php:2780
1870
+ msgctxt "SIGABRT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1871
+ msgid "Abort signal from abort(3)"
1872
  msgstr ""
1873
 
1874
+ #: inc/class-job.php:2787
1875
+ msgctxt "SIGBUS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1876
+ msgid "Bus error (bad memory access)"
1877
  msgstr ""
1878
 
1879
+ #: inc/class-job.php:2794
1880
+ msgctxt "SIGFPE: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1881
+ msgid "Floating point exception"
1882
  msgstr ""
1883
 
1884
+ #: inc/class-job.php:2801
1885
+ msgctxt "SIGSEGV: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1886
+ msgid "Invalid memory reference"
1887
  msgstr ""
1888
 
1889
+ #: inc/class-job.php:2808
1890
+ msgctxt "SIGTERM: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1891
+ msgid "Termination signal"
1892
  msgstr ""
1893
 
1894
+ #: inc/class-job.php:2815
1895
+ msgctxt "SIGSTKFLT: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1896
+ msgid "Stack fault on coprocessor"
1897
  msgstr ""
1898
 
1899
+ #: inc/class-job.php:2822
1900
+ msgctxt "SIGUSR1: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1901
+ msgid "User-defined signal 1"
1902
  msgstr ""
1903
 
1904
+ #: inc/class-job.php:2829
1905
+ msgctxt "SIGUSR2: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1906
+ msgid "User-defined signal 2"
1907
  msgstr ""
1908
 
1909
+ #: inc/class-job.php:2836
1910
+ msgctxt "SIGURG: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1911
+ msgid "Urgent condition on socket"
1912
  msgstr ""
1913
 
1914
+ #: inc/class-job.php:2843
1915
+ msgctxt "SIGXCPU: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1916
+ msgid "CPU time limit exceeded"
1917
  msgstr ""
1918
 
1919
+ #: inc/class-job.php:2850
1920
+ msgctxt "SIGXFSZ: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1921
+ msgid "File size limit exceeded"
1922
  msgstr ""
1923
 
1924
+ #: inc/class-job.php:2857
1925
+ msgctxt "SIGPWR: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1926
+ msgid "Power failure"
1927
  msgstr ""
1928
 
1929
+ #: inc/class-job.php:2864
1930
+ msgctxt "SIGSYS: Please see http://man7.org/linux/man-pages/man7/signal.7.html for details"
1931
+ msgid "Bad argument to routine"
1932
  msgstr ""
1933
 
1934
+ #: inc/class-job.php:2876
1935
+ msgid "Signal \"%1$s\" (%2$s) is sent to script!"
 
1936
  msgstr ""
1937
 
1938
+ #: inc/class-job.php:2912
1939
+ #: inc/class-job.php:2925
1940
+ msgid "System: %s"
1941
  msgstr ""
1942
 
1943
+ #: inc/class-job.php:2942
1944
+ msgid "Exception caught in %1$s: %2$s"
1945
  msgstr ""
1946
 
1947
+ #: inc/class-jobtype-dbcheck.php:13
1948
+ msgid "DB Check"
 
1949
  msgstr ""
1950
 
1951
+ #: inc/class-jobtype-dbcheck.php:14
1952
+ msgid "Check database tables"
1953
  msgstr ""
1954
 
1955
+ #: inc/class-jobtype-dbcheck.php:17
1956
+ #: inc/class-jobtype-dbdump.php:17
1957
+ #: inc/class-jobtype-file.php:17
1958
+ #: inc/class-jobtype-wpexp.php:17
1959
+ #: inc/class-jobtype-wpplugin.php:17
1960
+ msgid "http://inpsyde.com"
1961
  msgstr ""
1962
 
1963
+ #: inc/class-jobtype-dbcheck.php:35
1964
+ msgid "Settings for database check"
1965
  msgstr ""
1966
 
1967
+ #: inc/class-jobtype-dbcheck.php:39
1968
+ msgid "WordPress tables only"
1969
  msgstr ""
1970
 
1971
+ #: inc/class-jobtype-dbcheck.php:44
1972
+ msgid "Check WordPress database tables only"
1973
  msgstr ""
1974
 
1975
+ #: inc/class-jobtype-dbcheck.php:49
1976
+ msgid "Repair"
1977
  msgstr ""
1978
 
1979
+ #: inc/class-jobtype-dbcheck.php:54
1980
+ msgid "Try to repair defect table"
1981
  msgstr ""
1982
 
1983
+ #: inc/class-jobtype-dbcheck.php:79
1984
+ msgid "%d. Trying to check database&#160;&hellip;"
1985
  msgstr ""
1986
 
1987
+ #: inc/class-jobtype-dbcheck.php:111
1988
+ msgid "Table %1$s is a view. Not checked."
1989
  msgstr ""
1990
 
1991
+ #: inc/class-jobtype-dbcheck.php:116
1992
+ msgid "Table %1$s is not a MyISAM/InnoDB table. Not checked."
 
1993
  msgstr ""
1994
 
1995
+ #: inc/class-jobtype-dbcheck.php:124
1996
+ #: inc/class-jobtype-dbcheck.php:127
1997
+ #: inc/class-jobtype-dbcheck.php:129
1998
+ msgid "Result of table check for %1$s is: %2$s"
1999
  msgstr ""
2000
 
2001
+ #: inc/class-jobtype-dbcheck.php:135
2002
+ #: inc/class-jobtype-dbcheck.php:137
2003
+ #: inc/class-jobtype-dbcheck.php:139
2004
+ msgid "Result of table repair for %1$s is: %2$s"
2005
  msgstr ""
2006
 
2007
+ #: inc/class-jobtype-dbcheck.php:145
2008
+ msgid "Database check done!"
2009
  msgstr ""
2010
 
2011
+ #: inc/class-jobtype-dbcheck.php:148
2012
+ msgid "No tables to check."
 
 
2013
  msgstr ""
2014
 
2015
+ #: inc/class-jobtype-dbdump.php:13
2016
+ msgid "DB Backup"
2017
  msgstr ""
2018
 
2019
+ #: inc/class-jobtype-dbdump.php:14
2020
+ msgid "Database backup"
 
2021
  msgstr ""
2022
 
2023
+ #: inc/class-jobtype-dbdump.php:60
2024
+ msgid "Settings for database backup"
2025
  msgstr ""
2026
 
2027
+ #: inc/class-jobtype-dbdump.php:64
2028
+ msgid "Tables to backup"
 
2029
  msgstr ""
2030
 
2031
+ #: inc/class-jobtype-dbdump.php:66
2032
+ msgid "all"
2033
  msgstr ""
2034
 
2035
+ #: inc/class-jobtype-dbdump.php:91
2036
+ msgid "Backup file name"
2037
  msgstr ""
2038
 
2039
+ #: inc/class-jobtype-dbdump.php:99
2040
+ msgid "Backup file compression"
2041
  msgstr ""
2042
 
2043
+ #: inc/class-jobtype-dbdump.php:105
2044
+ #: inc/class-jobtype-dbdump.php:107
2045
+ #: inc/class-jobtype-wpexp.php:75
2046
+ #: inc/class-jobtype-wpexp.php:77
2047
+ #: inc/class-jobtype-wpplugin.php:59
2048
+ #: inc/class-jobtype-wpplugin.php:61
2049
+ msgid "GZip"
2050
  msgstr ""
2051
 
2052
+ #: inc/class-jobtype-dbdump.php:159
2053
+ msgid "%d. Try to backup database&#160;&hellip;"
2054
  msgstr ""
2055
 
2056
+ #: inc/class-jobtype-dbdump.php:173
2057
+ msgid "Connected to database %1$s on %2$s"
2058
  msgstr ""
2059
 
2060
+ #: inc/class-jobtype-dbdump.php:187
2061
+ msgid "No tables to backup."
2062
  msgstr ""
2063
 
2064
+ #: inc/class-jobtype-dbdump.php:210
2065
+ msgid "Backup database table \"%s\" with \"%s\" records"
2066
  msgstr ""
2067
 
2068
+ #: inc/class-jobtype-dbdump.php:250
2069
+ msgid "MySQL backup file not created"
2070
  msgstr ""
2071
 
2072
+ #: inc/class-jobtype-dbdump.php:254
2073
+ msgid "Added database dump \"%1$s\" with %2$s to backup file list"
 
2074
  msgstr ""
2075
 
2076
+ #: inc/class-jobtype-dbdump.php:260
2077
+ msgid "Database backup done!"
2078
  msgstr ""
2079
 
2080
+ #: inc/class-jobtype-file.php:13
2081
+ msgid "Files"
2082
  msgstr ""
2083
 
2084
+ #: inc/class-jobtype-file.php:14
2085
+ msgid "File backup"
2086
  msgstr ""
2087
 
2088
+ #: inc/class-jobtype-file.php:71
2089
+ msgid "Folders to backup"
2090
  msgstr ""
2091
 
2092
+ #: inc/class-jobtype-file.php:75
2093
+ msgid "Backup WordPress install folder"
2094
  msgstr ""
2095
 
2096
+ #: inc/class-jobtype-file.php:83
2097
+ msgid "Backup content folder"
 
2098
  msgstr ""
2099
 
2100
+ #: inc/class-jobtype-file.php:91
2101
+ msgid "Backup plugins"
2102
  msgstr ""
2103
 
2104
+ #: inc/class-jobtype-file.php:99
2105
+ msgid "Backup themes"
2106
  msgstr ""
2107
 
2108
+ #: inc/class-jobtype-file.php:107
2109
+ msgid "Backup uploads folder"
2110
  msgstr ""
2111
 
2112
+ #: inc/class-jobtype-file.php:115
2113
+ msgid "Extra folders to backup"
2114
  msgstr ""
2115
 
2116
+ #: inc/class-jobtype-file.php:118
2117
+ msgid "Separate folder names with a line-break or a comma. Folders must be set with their absolute path!"
2118
  msgstr ""
2119
 
2120
+ #: inc/class-jobtype-file.php:123
2121
+ msgid "Exclude from backup"
2122
  msgstr ""
2123
 
2124
+ #: inc/class-jobtype-file.php:127
2125
+ msgid "Thumbnails in uploads"
2126
  msgstr ""
2127
 
2128
+ #: inc/class-jobtype-file.php:129
2129
+ msgid "Don't backup thumbnails from the site's uploads folder."
2130
  msgstr ""
2131
 
2132
+ #: inc/class-jobtype-file.php:133
2133
+ msgid "Exclude files/folders from backup"
2134
  msgstr ""
2135
 
2136
+ #: inc/class-jobtype-file.php:136
2137
+ msgid "Separate file / folder name parts with a line-break or a comma. For example /logs/,.log,.tmp"
2138
  msgstr ""
2139
 
2140
+ #: inc/class-jobtype-file.php:141
2141
+ msgid "Special options"
2142
  msgstr ""
2143
 
2144
+ #: inc/class-jobtype-file.php:145
2145
+ msgid "Include special files"
 
2146
  msgstr ""
2147
 
2148
+ #: inc/class-jobtype-file.php:147
2149
+ msgid "Backup wp-config.php, robots.txt, nginx.conf, .htaccess, .htpasswd, favicon.ico, and Web.config from root if it is not included in backup."
 
2150
  msgstr ""
2151
 
2152
+ #: inc/class-jobtype-file.php:151
2153
+ msgid "Use one folder above as WP install folder"
2154
  msgstr ""
2155
 
2156
+ #: inc/class-jobtype-file.php:154
2157
+ msgid "Use one folder above as WordPress install folder! That can be helpful, if you would backup files and folder that are not in the WordPress installation folder. Or if you made a \"<a href=\"https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory\">Giving WordPress Its Own Directory</a>\" installation. Excludes must be configured again."
2158
  msgstr ""
2159
 
2160
+ #: inc/class-jobtype-file.php:238
2161
+ msgid "%d. Trying to make a list of folders to back up&#160;&hellip;"
2162
  msgstr ""
2163
 
2164
+ #: inc/class-jobtype-file.php:358
2165
+ #: inc/class-jobtype-file.php:362
2166
+ #: inc/class-jobtype-file.php:379
2167
+ msgid "Added \"%s\" to backup file list"
2168
  msgstr ""
2169
 
2170
+ #: inc/class-jobtype-file.php:385
2171
+ msgid "No files/folder for the backup."
2172
  msgstr ""
2173
 
2174
+ #: inc/class-jobtype-file.php:387
2175
+ msgid "%1$d folders to backup."
2176
  msgstr ""
2177
 
2178
+ #: inc/class-jobtype-file.php:435
2179
+ msgid "Folder \"%s\" is not readable!"
2180
  msgstr ""
2181
 
2182
+ #: inc/class-jobtype-file.php:495
2183
+ msgid "Path as set by user (symlink?): %s"
2184
  msgstr ""
2185
 
2186
+ #: inc/class-jobtype-file.php:498
2187
+ msgid "Exclude:"
2188
  msgstr ""
2189
 
2190
+ #: inc/class-jobtype-file.php:510
2191
+ msgid "Excluded by .donotbackup file!"
2192
  msgstr ""
2193
 
2194
+ #: inc/class-jobtype-wpexp.php:13
2195
+ msgid "XML export"
2196
  msgstr ""
2197
 
2198
+ #: inc/class-jobtype-wpexp.php:14
2199
+ #: inc/class-page-about.php:463
2200
+ msgid "WordPress XML export"
2201
  msgstr ""
2202
 
2203
+ #: inc/class-jobtype-wpexp.php:46
2204
+ msgid "Items to export"
2205
  msgstr ""
2206
 
2207
+ #: inc/class-jobtype-wpexp.php:49
2208
+ msgid "All content"
2209
  msgstr ""
2210
 
2211
+ #: inc/class-jobtype-wpexp.php:50
2212
+ msgid "Posts"
2213
  msgstr ""
2214
 
2215
+ #: inc/class-jobtype-wpexp.php:51
2216
+ msgid "Pages"
2217
  msgstr ""
2218
 
2219
+ #: inc/class-jobtype-wpexp.php:61
2220
+ msgid "XML Export file name"
2221
  msgstr ""
2222
 
2223
+ #: inc/class-jobtype-wpexp.php:69
2224
+ #: inc/class-jobtype-wpplugin.php:53
2225
+ msgid "File compression"
2226
  msgstr ""
2227
 
2228
+ #: inc/class-jobtype-wpexp.php:79
2229
+ #: inc/class-jobtype-wpexp.php:81
2230
+ #: inc/class-jobtype-wpplugin.php:64
2231
+ #: inc/class-jobtype-wpplugin.php:66
2232
+ msgid "BZip2"
2233
  msgstr ""
2234
 
2235
+ #: inc/class-jobtype-wpexp.php:112
2236
+ msgid "%d. Trying to create a WordPress export to XML file&#160;&hellip;"
2237
  msgstr ""
2238
 
2239
+ #: inc/class-jobtype-wpexp.php:127
2240
+ msgid "WP Export: Post type “%s” does not allow export."
2241
  msgstr ""
2242
 
2243
+ #: inc/class-jobtype-wpexp.php:172
2244
+ #: inc/class-jobtype-wpexp.php:186
2245
+ #: inc/class-jobtype-wpexp.php:215
2246
+ #: inc/class-jobtype-wpexp.php:236
2247
+ #: inc/class-jobtype-wpexp.php:269
2248
+ #: inc/class-jobtype-wpexp.php:289
2249
+ #: inc/class-jobtype-wpexp.php:378
2250
+ #: inc/class-jobtype-wpexp.php:387
2251
+ msgid "WP Export file could not written."
2252
  msgstr ""
2253
 
2254
+ #: inc/class-jobtype-wpexp.php:402
2255
+ msgid "Check WP Export file&#160;&hellip;"
2256
  msgstr ""
2257
 
2258
+ #: inc/class-jobtype-wpexp.php:422
2259
+ msgid "XML WARNING (%s): %s"
2260
  msgstr ""
2261
 
2262
+ #: inc/class-jobtype-wpexp.php:425
2263
+ msgid "XML RECOVERABLE (%s): %s"
2264
  msgstr ""
2265
 
2266
+ #: inc/class-jobtype-wpexp.php:428
2267
+ msgid "XML ERROR (%s): %s"
2268
  msgstr ""
2269
 
2270
+ #: inc/class-jobtype-wpexp.php:438
2271
+ msgid "There was an error when reading this WXR file"
2272
  msgstr ""
2273
 
2274
+ #: inc/class-jobtype-wpexp.php:444
2275
+ #: inc/class-jobtype-wpexp.php:451
2276
+ msgid "This does not appear to be a WXR file, missing/invalid WXR version number"
2277
  msgstr ""
2278
 
2279
+ #: inc/class-jobtype-wpexp.php:460
2280
+ msgid "WP Export file is a valid WXR file."
2281
  msgstr ""
2282
 
2283
+ #: inc/class-jobtype-wpexp.php:462
2284
+ msgid "WP Export file can not be checked, because no XML extension is loaded, to ensure the file verification."
2285
  msgstr ""
2286
 
2287
+ #: inc/class-jobtype-wpexp.php:474
2288
+ msgid "Compressing file&#160;&hellip;"
2289
  msgstr ""
2290
 
2291
+ #: inc/class-jobtype-wpexp.php:481
2292
+ msgid "Compressing done."
2293
  msgstr ""
2294
 
2295
+ #: inc/class-jobtype-wpexp.php:500
2296
+ msgid "Added XML export \"%1$s\" with %2$s to backup file list."
2297
  msgstr ""
2298
 
2299
+ #: inc/class-jobtype-wpplugin.php:13
2300
+ msgid "Plugins"
2301
  msgstr ""
2302
 
2303
+ #: inc/class-jobtype-wpplugin.php:14
2304
+ msgid "Installed plugins list"
 
2305
  msgstr ""
2306
 
2307
+ #: inc/class-jobtype-wpplugin.php:45
2308
+ msgid "Plugin list file name"
2309
  msgstr ""
2310
 
2311
+ #: inc/class-jobtype-wpplugin.php:96
2312
+ msgid "%d. Trying to generate a file with installed plugin names&#160;&hellip;"
2313
  msgstr ""
2314
 
2315
+ #: inc/class-jobtype-wpplugin.php:124
2316
+ msgid "All plugin information:"
 
2317
  msgstr ""
2318
 
2319
+ #: inc/class-jobtype-wpplugin.php:126
2320
+ msgid "from %s"
 
2321
  msgstr ""
2322
 
2323
+ #: inc/class-jobtype-wpplugin.php:128
2324
+ msgid "Active plugins:"
2325
  msgstr ""
2326
 
2327
+ #: inc/class-jobtype-wpplugin.php:134
2328
+ msgid "Inactive plugins:"
2329
  msgstr ""
2330
 
2331
+ #: inc/class-jobtype-wpplugin.php:141
2332
+ msgid "Can not open target file for writing."
2333
  msgstr ""
2334
 
2335
+ #: inc/class-jobtype-wpplugin.php:148
2336
+ msgid "Added plugin list file \"%1$s\" with %2$s to backup file list."
2337
  msgstr ""
2338
 
2339
+ #: inc/class-message-box.php:89
2340
+ msgid "Dismiss"
2341
  msgstr ""
2342
 
2343
+ #: inc/class-mysqldump.php:60
2344
+ msgid "No MySQLi extension found. Please install it."
2345
  msgstr ""
2346
 
2347
+ #: inc/class-mysqldump.php:100
2348
+ msgid "Cannot init MySQLi database connection"
2349
  msgstr ""
2350
 
2351
+ #: inc/class-mysqldump.php:105
2352
+ msgid "Setting of MySQLi connection timeout failed"
2353
  msgstr ""
2354
 
2355
+ #: inc/class-mysqldump.php:110
2356
+ msgid "Cannot connect to MySQL database %1$d: %2$s"
2357
  msgstr ""
2358
 
2359
+ #: inc/class-mysqldump.php:117
2360
+ msgctxt "Database Charset"
2361
+ msgid "Cannot set DB charset to %s error: %s"
2362
  msgstr ""
2363
 
2364
+ #: inc/class-mysqldump.php:146
2365
+ msgid "Cannot open SQL backup file"
2366
  msgstr ""
2367
 
2368
+ #: inc/class-mysqldump.php:153
2369
+ #: inc/class-mysqldump.php:165
2370
+ #: inc/class-mysqldump.php:259
2371
+ #: inc/class-mysqldump.php:268
2372
+ #: inc/class-mysqldump.php:288
2373
+ #: inc/class-mysqldump.php:297
2374
+ #: inc/class-mysqldump.php:317
2375
+ #: inc/class-mysqldump.php:323
2376
+ #: inc/class-mysqldump.php:368
2377
+ #: inc/class-mysqldump.php:400
2378
+ #: inc/class-mysqldump.php:437
2379
+ #: inc/class-mysqldump.php:500
2380
+ msgid "Database error %1$s for query %2$s"
2381
  msgstr ""
2382
 
2383
+ #: inc/class-mysqldump.php:479
2384
+ msgid "Start for table backup is not correctly set: %1$s"
2385
  msgstr ""
2386
 
2387
+ #: inc/class-mysqldump.php:483
2388
+ msgid "Length for table backup is not correctly set: %1$s"
2389
  msgstr ""
2390
 
2391
+ #: inc/class-mysqldump.php:561
2392
+ msgid "Error while writing file!"
2393
  msgstr ""
2394
 
2395
+ #: inc/class-option.php:176
2396
+ #: inc/class-page-editjob.php:97
2397
+ #: inc/class-page-editjob.php:392
2398
+ msgid "New Job"
2399
  msgstr ""
2400
 
2401
+ #: inc/class-page-about.php:365
2402
+ #: inc/class-page-about.php:375
2403
+ #: inc/class-page-backwpup.php:254
2404
+ msgid "BackWPup banner"
2405
  msgstr ""
2406
 
2407
+ #: inc/class-page-about.php:366
2408
  msgid "Welcome to BackWPup Pro"
2409
  msgstr ""
2410
 
2411
+ #: inc/class-page-about.php:367
2412
  #: inc/class-page-backwpup.php:75
2413
  msgid "BackWPup’s job wizards make planning and scheduling your backup jobs a breeze."
2414
  msgstr ""
2415
 
2416
+ #: inc/class-page-about.php:368
2417
+ #: inc/class-page-about.php:378
2418
+ msgid "Use your backup archives to save your entire WordPress installation including <code>/wp-content/</code>. Push them to an external storage service if you don’t want to save the backups on the same server. With a single backup archive you are able to restore an installation. Use the integrated restore feature to restore your site directly from your WordPress backend or the Restore Standalone App in case your site is destroyed completely."
2419
  msgstr ""
2420
 
2421
+ #: inc/class-page-about.php:369
2422
  msgid "Ready to <a href=\"%1$s\">set up a backup job</a>? You can <a href=\"%2$s\">use the wizards</a> or plan your backup in expert mode."
2423
  msgstr ""
2424
 
2425
+ #: inc/class-page-about.php:376
2426
  msgid "Welcome to BackWPup"
2427
  msgstr ""
2428
 
2429
+ #: inc/class-page-about.php:379
2430
  msgid "Ready to set up a backup job? Use one of the wizards to plan what you want to save."
2431
  msgstr ""
2432
 
2433
+ #: inc/class-page-about.php:389
2434
  msgid "Save your database"
2435
  msgstr ""
2436
 
2437
+ #: inc/class-page-about.php:392
2438
  msgid "Save your database regularly"
2439
  msgstr ""
2440
 
2441
+ #: inc/class-page-about.php:393
2442
  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."
2443
  msgstr ""
2444
 
2445
+ #: inc/class-page-about.php:398
2446
+ #: inc/class-page-about.php:402
2447
  msgid "WordPress XML Export"
2448
  msgstr ""
2449
 
2450
+ #: inc/class-page-about.php:399
2451
  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."
2452
  msgstr ""
2453
 
2454
+ #: inc/class-page-about.php:407
2455
  msgid "Save all data from the webserver"
2456
  msgstr ""
2457
 
2458
+ #: inc/class-page-about.php:410
2459
  msgid "Save all files"
2460
  msgstr ""
2461
 
2462
+ #: inc/class-page-about.php:411
2463
  msgid "You can backup 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."
2464
  msgstr ""
2465
 
2466
+ #: inc/class-page-about.php:416
2467
+ #: inc/class-page-about.php:420
2468
  msgid "Security!"
2469
  msgstr ""
2470
 
2471
+ #: inc/class-page-about.php:417
2472
  msgid "By default everything is encrypted: connections to external services, local files and access to directories."
2473
  msgstr ""
2474
 
2475
+ #: inc/class-page-about.php:425
2476
+ #: inc/class-page-about.php:428
2477
  msgid "Cloud Support"
2478
  msgstr ""
2479
 
2480
+ #: inc/class-page-about.php:429
2481
  msgid "BackWPup supports multiple cloud services in parallel. This ensures backups are redundant."
2482
  msgstr ""
2483
 
2484
+ #: inc/class-page-about.php:435
2485
  msgid "Features / differences between Free and Pro"
2486
  msgstr ""
2487
 
2488
+ #: inc/class-page-about.php:438
2489
  msgid "Features"
2490
  msgstr ""
2491
 
2492
+ #: inc/class-page-about.php:439
2493
  msgid "FREE"
2494
  msgstr ""
2495
 
2496
+ #: inc/class-page-about.php:440
2497
  msgid "PRO"
2498
  msgstr ""
2499
 
2500
+ #: inc/class-page-about.php:443
2501
  msgid "Complete database backup"
2502
  msgstr ""
2503
 
2504
+ #: inc/class-page-about.php:448
2505
  msgid "Complete file backup"
2506
  msgstr ""
2507
 
2508
+ #: inc/class-page-about.php:453
2509
  msgid "Database check"
2510
  msgstr ""
2511
 
2512
+ #: inc/class-page-about.php:458
2513
  msgid "Data compression"
2514
  msgstr ""
2515
 
2516
+ #: inc/class-page-about.php:468
2517
  msgid "List of installed plugins"
2518
  msgstr ""
2519
 
2520
+ #: inc/class-page-about.php:473
2521
  msgid "Backup archives management"
2522
  msgstr ""
2523
 
2524
+ #: inc/class-page-about.php:478
2525
  msgid "Log file management"
2526
  msgstr ""
2527
 
2528
+ #: inc/class-page-about.php:483
2529
  msgid "Start jobs per WP-Cron, URL, system, backend or WP-CLI"
2530
  msgstr ""
2531
 
2532
+ #: inc/class-page-about.php:488
2533
  msgid "Log report via email"
2534
  msgstr ""
2535
 
2536
+ #: inc/class-page-about.php:493
2537
  msgid "Backup to Microsoft Azure"
2538
  msgstr ""
2539
 
2540
+ #: inc/class-page-about.php:498
2541
  msgid "Backup as email"
2542
  msgstr ""
2543
 
2544
+ #: inc/class-page-about.php:503
2545
  msgid "Backup to S3 services (Amazon, Google Storage, Hosteurope and more)"
2546
  msgstr ""
2547
 
2548
+ #: inc/class-page-about.php:518
2549
+ msgid "Backup to FTP server"
 
 
2550
  msgstr ""
2551
 
2552
+ #: inc/class-page-about.php:523
2553
+ msgid "Backup to your web space"
 
 
2554
  msgstr ""
2555
 
2556
+ #: inc/class-page-about.php:533
2557
+ msgid "Restore manually uploaded Backup Archives"
2558
  msgstr ""
2559
 
2560
+ #: inc/class-page-about.php:538
2561
+ msgid "Standalone Restore App"
2562
  msgstr ""
2563
 
2564
+ #: inc/class-page-about.php:543
2565
+ msgid "Encrypt Backup Archives"
2566
+ msgstr ""
2567
+
2568
+ #: inc/class-page-about.php:548
2569
+ msgid "Restore Encrypted Backups"
2570
  msgstr ""
2571
 
2572
+ #: inc/class-page-about.php:553
2573
  msgid "Backup to Google Drive"
2574
  msgstr ""
2575
 
2576
+ #: inc/class-page-about.php:558
2577
  msgid "Backup to Amazon Glacier"
2578
  msgstr ""
2579
 
2580
+ #: inc/class-page-about.php:563
2581
  msgid "Custom API keys for DropBox and SugarSync"
2582
  msgstr ""
2583
 
2584
+ #: inc/class-page-about.php:568
2585
  msgid "XML database backup as PHPMyAdmin schema"
2586
  msgstr ""
2587
 
2588
+ #: inc/class-page-about.php:573
2589
  msgid "Database backup as mysqldump per command line"
2590
  msgstr ""
2591
 
2592
+ #: inc/class-page-about.php:578
2593
  msgid "Database backup for additional MySQL databases"
2594
  msgstr ""
2595
 
2596
+ #: inc/class-page-about.php:583
2597
  msgid "Import and export job settings as XML"
2598
  msgstr ""
2599
 
2600
+ #: inc/class-page-about.php:588
2601
  msgid "Wizard for system tests"
2602
  msgstr ""
2603
 
2604
+ #: inc/class-page-about.php:593
2605
  msgid "Wizard for scheduled backup jobs"
2606
  msgstr ""
2607
 
2608
+ #: inc/class-page-about.php:598
2609
  msgid "Wizard to import settings and backup jobs"
2610
  msgstr ""
2611
 
2612
+ #: inc/class-page-about.php:603
2613
  msgid "Differential backup of changed directories to Dropbox"
2614
  msgstr ""
2615
 
2616
+ #: inc/class-page-about.php:608
2617
  msgid "Differential backup of changed directories to Rackspace Cloud Files"
2618
  msgstr ""
2619
 
2620
+ #: inc/class-page-about.php:613
2621
  msgid "Differential backup of changed directories to S3"
2622
  msgstr ""
2623
 
2624
+ #: inc/class-page-about.php:618
2625
  msgid "Differential backup of changed directories to MS Azure"
2626
  msgstr ""
2627
 
2628
+ #: inc/class-page-about.php:623
2629
  msgid "Restore from Folder"
2630
  msgstr ""
2631
 
2632
+ #: inc/class-page-about.php:628
2633
  msgid "Restore from Google Drive"
2634
  msgstr ""
2635
 
2636
+ #: inc/class-page-about.php:633
2637
  msgid "Restore from Amazon S3"
2638
  msgstr ""
2639
 
2640
+ #: inc/class-page-about.php:638
2641
  msgid "Restore from Dropbox"
2642
  msgstr ""
2643
 
2644
+ #: inc/class-page-about.php:643
2645
  msgid "Restore from FTP"
2646
  msgstr ""
2647
 
2648
+ #: inc/class-page-about.php:648
2649
  msgid "<strong>Premium support</strong>"
2650
  msgstr ""
2651
 
2652
+ #: inc/class-page-about.php:653
2653
  msgid "<strong>Automatic updates</strong>"
2654
  msgstr ""
2655
 
2656
+ #: inc/class-page-about.php:660
2657
  msgid "GET PRO"
2658
  msgstr ""
2659
 
2660
+ #: inc/class-page-backups.php:158
2661
+ msgid "No files could be found. (List will be generated during next backup.)"
2662
  msgstr ""
2663
 
2664
+ #: inc/class-page-backups.php:168
2665
+ #: inc/class-page-backups.php:274
2666
+ #: inc/class-page-jobs.php:113
2667
+ #: inc/class-page-jobs.php:177
2668
+ #: inc/class-page-logs.php:151
2669
+ #: inc/class-page-logs.php:232
2670
+ msgid "Delete"
2671
  msgstr ""
2672
 
2673
+ #: inc/class-page-backups.php:203
2674
+ msgid "Change destination"
2675
  msgstr ""
2676
 
2677
+ #: inc/class-page-backups.php:241
2678
+ #: inc/class-page-backwpup.php:283
2679
+ #: inc/class-page-backwpup.php:347
2680
+ #: inc/class-page-logs.php:163
2681
+ msgid "Time"
2682
  msgstr ""
2683
 
2684
+ #: inc/class-page-backups.php:242
2685
+ msgid "File"
2686
  msgstr ""
2687
 
2688
+ #: inc/class-page-backups.php:244
2689
+ #: inc/class-page-logs.php:167
2690
+ msgid "Size"
2691
  msgstr ""
2692
 
2693
+ #: inc/class-page-backups.php:273
2694
+ msgid ""
2695
+ "You are about to delete this backup archive. \n"
2696
+ " 'Cancel' to stop, 'OK' to delete."
2697
  msgstr ""
2698
 
2699
+ #: inc/class-page-backups.php:281
2700
+ #: inc/class-page-backups.php:285
2701
+ #: inc/class-page-jobs.php:330
2702
+ #: inc/class-page-logs.php:234
2703
+ #: inc/class-page-settings.php:768
2704
+ #: inc/class-page-settings.php:779
2705
+ msgid "Download"
2706
  msgstr ""
2707
 
2708
+ #: inc/class-page-backups.php:293
2709
+ msgid "Restore"
2710
  msgstr ""
2711
 
2712
+ #: inc/class-page-backups.php:311
2713
+ msgid "?"
2714
  msgstr ""
2715
 
2716
+ #: inc/class-page-backups.php:317
2717
+ #: inc/class-page-backwpup.php:321
2718
+ #: inc/class-page-backwpup.php:384
2719
+ #: inc/class-page-jobs.php:318
2720
+ #: inc/class-page-logs.php:190
2721
+ msgid "%1$s at %2$s"
2722
  msgstr ""
2723
 
2724
+ #: inc/class-page-backups.php:331
2725
+ #: inc/class-page-backups.php:369
2726
+ #: inc/class-page-editjob.php:35
2727
+ #: inc/class-page-jobs.php:398
2728
+ msgid "Sorry, you don't have permissions to do that."
2729
  msgstr ""
2730
 
2731
+ #: inc/class-page-backups.php:408
2732
+ msgid "&laquo; Go back"
2733
  msgstr ""
2734
 
2735
+ #: inc/class-page-backups.php:433
2736
+ msgid "Backup Files"
2737
  msgstr ""
2738
 
2739
+ #: inc/class-page-backups.php:489
2740
+ msgid "%s &rsaquo; Manage Backup Archives"
2741
  msgstr ""
2742
 
2743
+ #: inc/class-page-backups.php:501
2744
+ msgid "Please wait &hellip;"
2745
+ msgstr ""
 
2746
 
2747
+ #: inc/class-page-backups.php:504
2748
+ msgid "Your download is being generated &hellip;"
2749
+ msgstr ""
2750
+
2751
+ #: inc/class-page-backups.php:510
2752
+ msgid "Please enter your private key to decrypt your backup."
2753
+ msgstr ""
2754
+
2755
+ #: inc/class-page-backups.php:512
2756
+ msgid "The private key you entered was invalid. Please try again."
2757
+ msgstr ""
2758
+
2759
+ #: inc/class-page-backups.php:515
2760
+ #: inc/class-page-settings.php:742
2761
+ #: inc/class-page-settings.php:773
2762
+ msgid "Private Key"
2763
+ msgstr ""
2764
+
2765
+ #: inc/class-page-backups.php:522
2766
+ msgid "Submit"
2767
+ msgstr ""
2768
+
2769
+ #: inc/class-page-backups.php:527
2770
+ msgid "Your download has been generated. It should begin downloading momentarily."
2771
+ msgstr ""
2772
+
2773
+ #: inc/class-page-backups.php:575
2774
+ msgid "Seems is not possible to store your private key, be sure the directory %s is writable."
2775
  msgstr ""
2776
 
2777
  #: inc/class-page-backwpup.php:67
2797
 
2798
  #: inc/class-page-backwpup.php:77
2799
  #: inc/class-page-backwpup.php:86
2800
+ msgid "With a single backup archive you are able to restore an installation. Use our restore feature, which is integrated in BackWPup Pro to restore your website directly from your WordPress backend. We also provide a restore standalone app with the Pro version to restore your site in case it is destroyed completely."
2801
  msgstr ""
2802
 
2803
  #: inc/class-page-backwpup.php:78
2959
  msgid "working since %d seconds"
2960
  msgstr ""
2961
 
2962
+ #: inc/class-page-backwpup.php:309
2963
+ #: inc/class-page-jobs.php:608
2964
+ msgid "Abort"
2965
+ msgstr ""
2966
+
2967
  #: inc/class-page-backwpup.php:325
2968
  msgid "Edit Job"
2969
  msgstr ""
2994
  msgid "OK"
2995
  msgstr ""
2996
 
2997
+ #: inc/class-page-editjob.php:98
2998
+ msgid "Job with ID %d"
2999
  msgstr ""
3000
 
3001
+ #: inc/class-page-editjob.php:223
3002
+ msgid "Changes for job <i>%s</i> saved."
3003
  msgstr ""
3004
 
3005
+ #: inc/class-page-editjob.php:223
3006
+ msgid "Jobs overview"
3007
  msgstr ""
3008
 
3009
+ #: inc/class-page-editjob.php:223
3010
+ #: inc/class-page-jobs.php:181
3011
+ msgid "Run now"
3012
  msgstr ""
3013
 
3014
+ #: inc/class-page-editjob.php:334
3015
+ msgid "%1$s &rsaquo; Job: %2$s"
3016
  msgstr ""
3017
 
3018
+ #: inc/class-page-editjob.php:337
3019
+ #: inc/class-page-settings.php:214
3020
+ msgid "General"
3021
  msgstr ""
3022
 
3023
+ #: inc/class-page-editjob.php:337
3024
+ msgid "Schedule"
3025
  msgstr ""
3026
 
3027
+ #: inc/class-page-editjob.php:352
3028
+ msgid "To: %s"
3029
  msgstr ""
3030
 
3031
+ #: inc/class-page-editjob.php:387
3032
+ #: inc/class-page-editjob.php:392
3033
+ #: inc/class-page-jobs.php:125
3034
+ msgid "Job Name"
3035
+ msgstr ""
3036
+
3037
+ #: inc/class-page-editjob.php:390
3038
+ msgid "Please name this job."
3039
  msgstr ""
3040
 
3041
+ #: inc/class-page-editjob.php:397
3042
+ msgid "Job Tasks"
3043
  msgstr ""
3044
 
3045
+ #: inc/class-page-editjob.php:400
3046
+ msgid "This job is a&#160;&hellip;"
 
 
3047
  msgstr ""
3048
 
3049
+ #: inc/class-page-editjob.php:403
3050
+ msgid "Job tasks"
 
 
3051
  msgstr ""
3052
 
3053
+ #: inc/class-page-editjob.php:421
3054
+ msgid "Backup File Creation"
3055
  msgstr ""
3056
 
3057
+ #: inc/class-page-editjob.php:426
3058
+ #: inc/class-page-editjob.php:429
3059
+ msgid "Backup type"
3060
  msgstr ""
3061
 
3062
+ #: inc/class-page-editjob.php:432
3063
+ msgid "Synchronize file by file to destination"
3064
  msgstr ""
3065
 
3066
+ #: inc/class-page-editjob.php:437
3067
+ msgid "Create a backup archive"
3068
  msgstr ""
3069
 
3070
+ #: inc/class-page-editjob.php:445
3071
+ msgid "Archive name"
3072
  msgstr ""
3073
 
3074
+ #: inc/class-page-editjob.php:448
3075
+ msgid "<em>Note</em>: In order for backup file tracking to work, %hash% must be included anywhere in the archive name."
3076
  msgstr ""
3077
 
3078
+ #: inc/class-page-editjob.php:452
3079
+ msgid "Preview: "
3080
  msgstr ""
3081
 
3082
+ #: inc/class-page-editjob.php:454
3083
+ msgid "Replacement patterns:"
3084
  msgstr ""
3085
 
3086
+ #: inc/class-page-editjob.php:455
3087
+ msgid "%d = Two digit day of the month, with leading zeros"
3088
  msgstr ""
3089
 
3090
+ #: inc/class-page-editjob.php:456
3091
+ msgid "%j = Day of the month, without leading zeros"
3092
  msgstr ""
3093
 
3094
+ #: inc/class-page-editjob.php:457
3095
+ msgid "%m = Day of the month, with leading zeros"
3096
  msgstr ""
3097
 
3098
+ #: inc/class-page-editjob.php:458
3099
+ msgid "%n = Representation of the month (without leading zeros)"
3100
  msgstr ""
3101
 
3102
+ #: inc/class-page-editjob.php:459
3103
+ msgid "%Y = Four digit representation for the year"
3104
  msgstr ""
3105
 
3106
+ #: inc/class-page-editjob.php:460
3107
+ msgid "%y = Two digit representation of the year"
3108
  msgstr ""
3109
 
3110
+ #: inc/class-page-editjob.php:461
3111
+ msgid "%a = Lowercase ante meridiem (am) and post meridiem (pm)"
3112
  msgstr ""
3113
 
3114
+ #: inc/class-page-editjob.php:462
3115
+ msgid "%A = Uppercase ante meridiem (AM) and post meridiem (PM)"
3116
  msgstr ""
3117
 
3118
+ #: inc/class-page-editjob.php:463
3119
+ msgid "%B = Swatch Internet Time"
3120
  msgstr ""
3121
 
3122
+ #: inc/class-page-editjob.php:464
3123
+ msgid "%g = Hour in 12-hour format, without leading zeros"
3124
  msgstr ""
3125
 
3126
+ #: inc/class-page-editjob.php:465
3127
+ msgid "%G = Hour in 24-hour format, without leading zeros"
3128
  msgstr ""
3129
 
3130
+ #: inc/class-page-editjob.php:466
3131
+ msgid "%h = Hour in 12-hour format, with leading zeros"
3132
  msgstr ""
3133
 
3134
+ #: inc/class-page-editjob.php:467
3135
+ msgid "%H = Hour in 24-hour format, with leading zeros"
3136
  msgstr ""
3137
 
3138
+ #: inc/class-page-editjob.php:468
3139
+ msgid "%i = Two digit representation of the minute"
3140
  msgstr ""
3141
 
3142
+ #: inc/class-page-editjob.php:469
3143
+ msgid "%s = Two digit representation of the second"
3144
  msgstr ""
3145
 
3146
+ #: inc/class-page-editjob.php:475
3147
+ #: inc/class-page-editjob.php:478
3148
+ msgid "Archive Format"
 
3149
  msgstr ""
3150
 
3151
+ #: inc/class-page-editjob.php:481
3152
+ #: inc/class-page-editjob.php:483
3153
+ msgid "Zip"
3154
  msgstr ""
3155
 
3156
+ #: inc/class-page-editjob.php:484
3157
+ msgid "ZipArchive PHP class is missing, so BackWPUp will use PclZip instead."
3158
  msgstr ""
3159
 
3160
+ #: inc/class-page-editjob.php:486
3161
+ msgid "Tar"
3162
  msgstr ""
3163
 
3164
+ #: inc/class-page-editjob.php:488
3165
+ #: inc/class-page-editjob.php:490
3166
+ msgid "Tar GZip"
3167
  msgstr ""
3168
 
3169
+ #: inc/class-page-editjob.php:491
3170
+ #: inc/class-page-editjob.php:498
3171
+ msgid "Disabled due to missing %s PHP function."
3172
  msgstr ""
3173
 
3174
+ #: inc/class-page-editjob.php:494
3175
+ #: inc/class-page-editjob.php:497
3176
+ msgid "Tar BZip2"
3177
  msgstr ""
3178
 
3179
+ #: inc/class-page-editjob.php:495
3180
+ msgid "Not supported <b>yet</b> by the <b>automatic</b> restore functionality"
3181
  msgstr ""
3182
 
3183
+ #: inc/class-page-editjob.php:506
3184
+ #: inc/class-page-editjob.php:511
3185
+ #: inc/class-page-editjob.php:520
3186
+ msgid "Encrypt Archive"
3187
  msgstr ""
3188
 
3189
+ #: inc/class-page-editjob.php:524
3190
+ msgid "You must generate your encryption key in BackWPup Settings before you can enable this option."
3191
  msgstr ""
3192
 
3193
+ #: inc/class-page-editjob.php:533
3194
+ msgid "Job Destination"
3195
  msgstr ""
3196
 
3197
+ #: inc/class-page-editjob.php:537
3198
+ #: inc/class-page-editjob.php:540
3199
+ msgid "Where should your backup file be stored?"
3200
  msgstr ""
3201
 
3202
+ #: inc/class-page-editjob.php:558
3203
+ msgid "Log Files"
3204
  msgstr ""
3205
 
3206
+ #: inc/class-page-editjob.php:562
3207
+ msgid "Send log to email address"
3208
  msgstr ""
3209
 
3210
+ #: inc/class-page-editjob.php:565
3211
+ msgid "Leave empty to not have log sent. Or separate with , for more than one receiver."
 
3212
  msgstr ""
3213
 
3214
+ #: inc/class-page-editjob.php:569
3215
+ msgid "Email FROM field"
 
3216
  msgstr ""
3217
 
3218
+ #: inc/class-page-editjob.php:571
3219
+ msgid "Your Name &lt;mail@domain.tld&gt;"
3220
  msgstr ""
3221
 
3222
+ #: inc/class-page-editjob.php:575
3223
+ msgid "Errors only"
3224
  msgstr ""
3225
 
3226
+ #: inc/class-page-editjob.php:580
3227
+ msgid "Send email with log only when errors occur during job execution."
3228
  msgstr ""
3229
 
3230
+ #: inc/class-page-editjob.php:591
3231
+ msgid "Job Schedule"
3232
  msgstr ""
3233
 
3234
+ #: inc/class-page-editjob.php:595
3235
+ #: inc/class-page-editjob.php:598
3236
+ msgid "Start job"
3237
  msgstr ""
3238
 
3239
+ #: inc/class-page-editjob.php:602
3240
+ msgid "manually only"
3241
  msgstr ""
3242
 
3243
+ #: inc/class-page-editjob.php:606
3244
+ msgid "with WordPress cron"
 
3245
  msgstr ""
3246
 
3247
+ #: inc/class-page-editjob.php:615
3248
+ msgid "with <a href=\"https://www.easycron.com?ref=36673\" title=\"Affiliate Link!\">EasyCron.com</a>"
3249
  msgstr ""
3250
 
3251
+ #: inc/class-page-editjob.php:617
3252
+ msgid "First setup <a href=\"%s\">API Key</a>."
3253
  msgstr ""
3254
 
3255
+ #: inc/class-page-editjob.php:626
3256
+ msgid "with a link"
3257
  msgstr ""
3258
 
3259
+ #: inc/class-page-editjob.php:627
3260
+ msgid "Copy the link for an external start. This option has to be activated to make the link work."
3261
  msgstr ""
3262
 
3263
+ #: inc/class-page-editjob.php:634
3264
+ msgid "Start job with CLI"
3265
  msgstr ""
3266
 
3267
+ #: inc/class-page-editjob.php:637
3268
+ msgid "Use <a href=\"http://wp-cli.org/\">WP-CLI</a> to run jobs from commandline."
3269
  msgstr ""
3270
 
3271
+ #: inc/class-page-editjob.php:642
3272
+ msgid "Schedule execution time"
3273
  msgstr ""
3274
 
3275
+ #: inc/class-page-editjob.php:646
3276
+ #: inc/class-page-editjob.php:649
3277
+ msgid "Scheduler type"
3278
  msgstr ""
3279
 
3280
+ #: inc/class-page-editjob.php:653
3281
+ msgid "basic"
3282
  msgstr ""
3283
 
3284
+ #: inc/class-page-editjob.php:657
3285
+ msgid "advanced"
3286
  msgstr ""
3287
 
3288
+ #: inc/class-page-editjob.php:686
3289
+ #: inc/class-page-editjob.php:754
3290
+ msgid "Scheduler"
3291
  msgstr ""
3292
 
3293
+ #: inc/class-page-editjob.php:691
3294
+ #: inc/class-page-jobs.php:126
3295
+ #: inc/class-page-logs.php:166
3296
+ msgid "Type"
3297
  msgstr ""
3298
 
3299
+ #: inc/class-page-editjob.php:696
3300
+ msgid "Hour"
3301
  msgstr ""
3302
 
3303
+ #: inc/class-page-editjob.php:699
3304
+ msgid "Minute"
3305
  msgstr ""
3306
 
3307
+ #: inc/class-page-editjob.php:703
3308
+ msgid "monthly"
3309
  msgstr ""
3310
 
3311
+ #: inc/class-page-editjob.php:705
3312
+ msgid "on"
3313
  msgstr ""
3314
 
3315
+ #: inc/class-page-editjob.php:715
3316
+ msgid "weekly"
3317
  msgstr ""
3318
 
3319
+ #: inc/class-page-editjob.php:717
3320
+ #: inc/class-page-editjob.php:824
3321
+ msgid "Sunday"
3322
  msgstr ""
3323
 
3324
+ #: inc/class-page-editjob.php:718
3325
+ #: inc/class-page-editjob.php:825
3326
+ msgid "Monday"
3327
  msgstr ""
3328
 
3329
+ #: inc/class-page-editjob.php:719
3330
+ #: inc/class-page-editjob.php:826
3331
+ msgid "Tuesday"
3332
  msgstr ""
3333
 
3334
+ #: inc/class-page-editjob.php:720
3335
+ #: inc/class-page-editjob.php:827
3336
+ msgid "Wednesday"
3337
  msgstr ""
3338
 
3339
+ #: inc/class-page-editjob.php:721
3340
+ #: inc/class-page-editjob.php:828
3341
+ msgid "Thursday"
3342
  msgstr ""
3343
 
3344
+ #: inc/class-page-editjob.php:722
3345
+ #: inc/class-page-editjob.php:829
3346
+ msgid "Friday"
3347
  msgstr ""
3348
 
3349
+ #: inc/class-page-editjob.php:723
3350
+ #: inc/class-page-editjob.php:830
3351
+ msgid "Saturday"
3352
  msgstr ""
3353
 
3354
+ #: inc/class-page-editjob.php:733
3355
+ msgid "daily"
 
 
 
 
 
3356
  msgstr ""
3357
 
3358
+ #: inc/class-page-editjob.php:743
3359
+ msgid "hourly"
3360
  msgstr ""
3361
 
3362
+ #: inc/class-page-editjob.php:757
3363
+ msgid "Minutes:"
3364
  msgstr ""
3365
 
3366
+ #: inc/class-page-editjob.php:759
3367
+ #: inc/class-page-editjob.php:772
3368
+ #: inc/class-page-editjob.php:784
3369
+ #: inc/class-page-editjob.php:798
3370
+ #: inc/class-page-editjob.php:820
3371
+ msgid "Any (*)"
3372
  msgstr ""
3373
 
3374
+ #: inc/class-page-editjob.php:769
3375
+ msgid "Hours:"
3376
  msgstr ""
3377
 
3378
+ #: inc/class-page-editjob.php:782
3379
+ msgid "Day of Month:"
3380
  msgstr ""
3381
 
3382
+ #: inc/class-page-editjob.php:796
3383
+ msgid "Month:"
3384
  msgstr ""
3385
 
3386
+ #: inc/class-page-editjob.php:802
3387
+ msgid "January"
3388
  msgstr ""
3389
 
3390
+ #: inc/class-page-editjob.php:803
3391
+ msgid "February"
3392
  msgstr ""
3393
 
3394
+ #: inc/class-page-editjob.php:804
3395
+ msgid "March"
3396
  msgstr ""
3397
 
3398
+ #: inc/class-page-editjob.php:805
3399
+ msgid "April"
 
3400
  msgstr ""
3401
 
3402
+ #: inc/class-page-editjob.php:806
3403
+ msgid "May"
3404
  msgstr ""
3405
 
3406
+ #: inc/class-page-editjob.php:807
3407
+ msgid "June"
 
3408
  msgstr ""
3409
 
3410
+ #: inc/class-page-editjob.php:808
3411
+ msgid "July"
3412
  msgstr ""
3413
 
3414
+ #: inc/class-page-editjob.php:809
3415
+ msgid "August"
3416
  msgstr ""
3417
 
3418
+ #: inc/class-page-editjob.php:810
3419
+ msgid "September"
3420
  msgstr ""
3421
 
3422
+ #: inc/class-page-editjob.php:811
3423
+ msgid "October"
3424
  msgstr ""
3425
 
3426
+ #: inc/class-page-editjob.php:812
3427
+ msgid "November"
3428
  msgstr ""
3429
 
3430
+ #: inc/class-page-editjob.php:813
3431
+ msgid "December"
3432
  msgstr ""
3433
 
3434
+ #: inc/class-page-editjob.php:818
3435
+ msgid "Day of Week:"
3436
  msgstr ""
3437
 
3438
+ #: inc/class-page-editjob.php:854
3439
+ msgid "Save changes"
3440
  msgstr ""
3441
 
3442
+ #: inc/class-page-editjob.php:941
3443
+ msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\">Cron</a> schedule:"
3444
  msgstr ""
3445
 
3446
+ #: inc/class-page-editjob.php:950
3447
+ msgid "ATTENTION: Job runs every %d minutes!"
3448
  msgstr ""
3449
 
3450
+ #: inc/class-page-editjob.php:954
3451
+ msgid "ATTENTION: Can't calculate cron!"
3452
  msgstr ""
3453
 
3454
+ #: inc/class-page-editjob.php:957
3455
+ msgid "Next runtime:"
3456
  msgstr ""
3457
 
3458
+ #: inc/class-page-jobs.php:100
3459
+ msgid "No Jobs."
3460
  msgstr ""
3461
 
3462
+ #: inc/class-page-jobs.php:127
3463
+ msgid "Destinations"
 
3464
  msgstr ""
3465
 
3466
+ #: inc/class-page-jobs.php:128
3467
+ msgid "Next Run"
 
3468
  msgstr ""
3469
 
3470
+ #: inc/class-page-jobs.php:129
3471
+ msgid "Last Run"
3472
  msgstr ""
3473
 
3474
+ #: inc/class-page-jobs.php:172
3475
+ #: inc/class-page-logs.php:228
3476
+ msgid "Job ID: %d"
3477
  msgstr ""
3478
 
3479
+ #: inc/class-page-jobs.php:175
3480
+ msgid "Edit"
3481
  msgstr ""
3482
 
3483
+ #: inc/class-page-jobs.php:176
3484
+ msgid "Copy"
3485
  msgstr ""
3486
 
3487
+ #: inc/class-page-jobs.php:189
3488
+ msgid "Last log"
3489
  msgstr ""
3490
 
3491
+ #: inc/class-page-jobs.php:251
3492
+ msgid "Not needed or set"
3493
  msgstr ""
3494
 
3495
+ #: inc/class-page-jobs.php:273
3496
+ msgid "Running for: %s seconds"
3497
  msgstr ""
3498
 
3499
+ #: inc/class-page-jobs.php:280
3500
+ #: inc/class-page-jobs.php:289
3501
+ msgid "Cron: %s"
3502
  msgstr ""
3503
 
3504
+ #: inc/class-page-jobs.php:280
3505
+ msgid "%1$s at %2$s by WP-Cron"
3506
  msgstr ""
3507
 
3508
+ #: inc/class-page-jobs.php:289
3509
+ msgid "%1$s at %2$s by EasyCron"
3510
  msgstr ""
3511
 
3512
+ #: inc/class-page-jobs.php:295
3513
+ msgid "External link"
3514
  msgstr ""
3515
 
3516
+ #: inc/class-page-jobs.php:298
3517
+ msgid "Inactive"
3518
  msgstr ""
3519
 
3520
+ #: inc/class-page-jobs.php:320
3521
+ msgid "Runtime: %d seconds"
 
3522
  msgstr ""
3523
 
3524
+ #: inc/class-page-jobs.php:324
3525
+ msgid "not yet"
 
3526
  msgstr ""
3527
 
3528
+ #: inc/class-page-jobs.php:330
3529
+ msgid "Download last backup"
 
3530
  msgstr ""
3531
 
3532
+ #: inc/class-page-jobs.php:339
3533
+ msgid "Log"
 
3534
  msgstr ""
3535
 
3536
+ #: inc/class-page-jobs.php:384
3537
+ msgid "Copy of"
 
3538
  msgstr ""
3539
 
3540
+ #: inc/class-page-jobs.php:431
3541
+ msgid "The job \"%s\" destination \"%s\" is not configured properly"
 
3542
  msgstr ""
3543
 
3544
+ #: inc/class-page-jobs.php:436
3545
+ msgid "The job \"%s\" needs properly configured destinations to run!"
 
3546
  msgstr ""
3547
 
3548
+ #: inc/class-page-jobs.php:454
3549
+ msgid "Job \"%s\" has started, but not responded for 10 seconds. Please check <a href=\"%s\">information</a>."
 
3550
  msgstr ""
3551
 
3552
+ #: inc/class-page-jobs.php:459
3553
+ msgid "Job \"%s\" started."
 
3554
  msgstr ""
3555
 
3556
+ #: inc/class-page-jobs.php:471
3557
+ #: inc/class-wp-cli.php:59
3558
+ msgid "Job will be terminated."
3559
  msgstr ""
3560
 
3561
+ #: inc/class-page-jobs.php:584
3562
+ msgid "%s &rsaquo; Jobs"
 
3563
  msgstr ""
3564
 
3565
+ #: inc/class-page-jobs.php:604
3566
+ msgid "Job currently running: %s"
 
3567
  msgstr ""
3568
 
3569
+ #: inc/class-page-jobs.php:605
3570
+ msgid "Warnings:"
 
3571
  msgstr ""
3572
 
3573
+ #: inc/class-page-jobs.php:606
3574
+ msgid "Errors:"
 
3575
  msgstr ""
3576
 
3577
+ #: inc/class-page-jobs.php:607
3578
+ msgid "Log of running job"
 
3579
  msgstr ""
3580
 
3581
+ #: inc/class-page-jobs.php:607
3582
+ msgid "Display working log"
 
3583
  msgstr ""
3584
 
3585
+ #: inc/class-page-jobs.php:609
3586
+ msgid "Close working screen"
 
3587
  msgstr ""
3588
 
3589
+ #: inc/class-page-jobs.php:609
3590
+ msgid "Close"
3591
  msgstr ""
3592
 
3593
+ #: inc/class-page-jobs.php:782
3594
+ msgid "Job completed"
 
3595
  msgstr ""
3596
 
3597
+ #: inc/class-page-jobs.php:786
3598
+ msgid "Job has done with warnings in %s seconds. Please resolve them for correct execution."
3599
  msgstr ""
3600
 
3601
  #: inc/class-page-logs.php:138
3632
  msgid "Log only"
3633
  msgstr ""
3634
 
 
 
 
 
 
3635
  #: inc/class-page-logs.php:440
3636
  msgid "%s &rsaquo; Logs"
3637
  msgstr ""
3640
  msgid "Logfile not found!"
3641
  msgstr ""
3642
 
3643
+ #: inc/class-page-settings.php:39
3644
+ msgid "Please enter a public key first, or generate a key pair."
3645
+ msgstr ""
3646
+
3647
+ #: inc/class-page-settings.php:40
3648
+ msgid "Please enter your private key."
3649
+ msgstr ""
3650
+
3651
+ #: inc/class-page-settings.php:41
3652
+ msgid "Public key is valid."
3653
  msgstr ""
3654
 
3655
+ #: inc/class-page-settings.php:42
3656
+ msgid "Public key is invalid."
3657
  msgstr ""
3658
 
3659
+ #: inc/class-page-settings.php:43
3660
+ msgid "Please download the private key before continuing. If you do not save it locally, you cannot decrypt your backups later."
3661
  msgstr ""
3662
 
3663
+ #: inc/class-page-settings.php:88
3664
+ msgid "Settings reset to default"
3665
  msgstr ""
3666
 
3667
+ #: inc/class-page-settings.php:194
3668
+ msgid "Settings saved"
3669
  msgstr ""
3670
 
3671
+ #: inc/class-page-settings.php:209
3672
+ msgid "%s &rsaquo; Settings"
3673
  msgstr ""
3674
 
3675
+ #: inc/class-page-settings.php:217
3676
+ msgid "Encryption"
3677
  msgstr ""
3678
 
3679
+ #: inc/class-page-settings.php:220
3680
+ msgid "Network"
3681
  msgstr ""
3682
 
3683
+ #: inc/class-page-settings.php:221
3684
+ msgid "API Keys"
3685
  msgstr ""
3686
 
3687
+ #: inc/class-page-settings.php:222
3688
+ msgid "Information"
3689
  msgstr ""
3690
 
3691
+ #: inc/class-page-settings.php:241
3692
+ msgid "Display Settings"
3693
  msgstr ""
3694
 
3695
+ #: inc/class-page-settings.php:242
3696
+ msgid "Do you want to see BackWPup in the WordPress admin bar?"
 
3697
  msgstr ""
3698
 
3699
+ #: inc/class-page-settings.php:245
3700
+ msgid "Admin bar"
3701
  msgstr ""
3702
 
3703
+ #: inc/class-page-settings.php:250
3704
+ msgid "Admin Bar"
3705
  msgstr ""
3706
 
3707
+ #: inc/class-page-settings.php:258
3708
+ msgid "Show BackWPup links in admin bar."
3709
  msgstr ""
3710
 
3711
+ #: inc/class-page-settings.php:264
3712
+ #: inc/class-page-settings.php:269
3713
+ msgid "Folder sizes"
3714
  msgstr ""
3715
 
3716
+ #: inc/class-page-settings.php:277
3717
+ msgid "Display folder sizes in the files tab when editing a job. (Might increase loading time of files tab.)"
3718
  msgstr ""
3719
 
3720
+ #: inc/class-page-settings.php:286
3721
+ msgid "Security"
3722
  msgstr ""
3723
 
3724
+ #: inc/class-page-settings.php:287
3725
+ msgid "Security option for BackWPup"
3726
  msgstr ""
3727
 
3728
+ #: inc/class-page-settings.php:290
3729
+ #: inc/class-page-settings.php:295
3730
+ msgid "Protect folders"
3731
  msgstr ""
3732
 
3733
+ #: inc/class-page-settings.php:304
3734
+ msgid "Protect BackWPup folders ( Temp, Log and Backups ) with <code>.htaccess</code> and <code>index.php</code>"
3735
  msgstr ""
3736
 
3737
+ #: inc/class-page-settings.php:321
3738
+ msgid "Every time BackWPup runs a backup job, a log file is being generated. Choose where to store your log files and how many of them."
3739
  msgstr ""
3740
 
3741
+ #: inc/class-page-settings.php:330
3742
+ msgid "Log file folder"
3743
  msgstr ""
3744
 
3745
+ #: inc/class-page-settings.php:340
3746
+ msgid "You can use absolute or relative path! Relative path is relative to %s."
3747
  msgstr ""
3748
 
3749
+ #: inc/class-page-settings.php:356
3750
+ msgid "Maximum log files"
3751
  msgstr ""
3752
 
3753
+ #: inc/class-page-settings.php:363
3754
+ msgid "Maximum log files in folder."
3755
  msgstr ""
3756
 
3757
+ #: inc/class-page-settings.php:367
3758
+ #: inc/class-page-settings.php:370
3759
+ msgid "Compression"
3760
  msgstr ""
3761
 
3762
+ #: inc/class-page-settings.php:381
3763
+ msgid "Compress log files with GZip."
3764
  msgstr ""
3765
 
3766
+ #: inc/class-page-settings.php:387
3767
+ #: inc/class-page-settings.php:392
3768
+ msgid "Logging Level"
3769
  msgstr ""
3770
 
3771
+ #: inc/class-page-settings.php:400
3772
+ msgid "Normal (translated)"
3773
  msgstr ""
3774
 
3775
+ #: inc/class-page-settings.php:404
3776
+ msgid "Normal (not translated)"
3777
  msgstr ""
3778
 
3779
+ #: inc/class-page-settings.php:408
3780
+ msgid "Debug (translated)"
3781
  msgstr ""
3782
 
3783
+ #: inc/class-page-settings.php:412
3784
+ msgid "Debug (not translated)"
3785
  msgstr ""
3786
 
3787
+ #: inc/class-page-settings.php:416
3788
+ msgid "Debug log has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too."
 
3789
  msgstr ""
3790
 
3791
+ #: inc/class-page-settings.php:429
3792
+ msgid "There are a couple of general options for backup jobs. Set them here."
 
3793
  msgstr ""
3794
 
3795
+ #: inc/class-page-settings.php:437
3796
+ msgid "Maximum number of retries for job steps"
3797
  msgstr ""
3798
 
3799
+ #: inc/class-page-settings.php:450
3800
+ msgid "Maximum script execution time"
3801
  msgstr ""
3802
 
3803
+ #: inc/class-page-settings.php:455
3804
+ msgid "Maximum PHP Script execution time"
 
3805
  msgstr ""
3806
 
3807
+ #: inc/class-page-settings.php:462
3808
+ msgid "seconds."
 
3809
  msgstr ""
3810
 
3811
+ #: inc/class-page-settings.php:464
3812
+ msgid "Job will restart before hitting maximum execution time. Restarts will be disabled on CLI usage. If <code>ALTERNATE_WP_CRON</code> has been defined, WordPress Cron will be used for restarts, so it can take a while. 0 means no maximum."
 
3813
  msgstr ""
3814
 
3815
+ #: inc/class-page-settings.php:476
3816
+ msgid "Key to start jobs externally with an URL"
3817
  msgstr ""
3818
 
3819
+ #: inc/class-page-settings.php:484
3820
+ msgid "Will be used to protect job starts from unauthorized person."
 
 
3821
  msgstr ""
3822
 
3823
+ #: inc/class-page-settings.php:492
3824
+ #: inc/class-page-settings.php:497
3825
+ msgid "Reduce server load"
3826
  msgstr ""
3827
 
3828
+ #: inc/class-page-settings.php:505
3829
+ msgid "disabled"
3830
  msgstr ""
3831
 
3832
+ #: inc/class-page-settings.php:509
3833
+ msgid "minimum"
 
3834
  msgstr ""
3835
 
3836
+ #: inc/class-page-settings.php:513
3837
+ msgid "medium"
3838
  msgstr ""
3839
 
3840
+ #: inc/class-page-settings.php:517
3841
+ msgid "maximum"
3842
  msgstr ""
3843
 
3844
+ #: inc/class-page-settings.php:521
3845
+ msgid "This adds short pauses to the process. Can be used to reduce the CPU load."
3846
  msgstr ""
3847
 
3848
+ #: inc/class-page-settings.php:530
3849
+ msgid "Empty output on working"
3850
  msgstr ""
3851
 
3852
+ #: inc/class-page-settings.php:535
3853
+ #: inc/class-page-settings.php:546
3854
+ msgid "Enable an empty Output on backup working."
3855
  msgstr ""
3856
 
3857
+ #: inc/class-page-settings.php:549
3858
+ msgid "This do an empty output on job working. This can help in some situations or can brake the working. You must test it."
3859
  msgstr ""
3860
 
3861
+ #: inc/class-page-settings.php:558
3862
+ msgid "Windows IIS compatibility"
3863
  msgstr ""
3864
 
3865
+ #: inc/class-page-settings.php:563
3866
+ #: inc/class-page-settings.php:574
3867
+ msgid "Enable compatibility with IIS on Windows."
3868
  msgstr ""
3869
 
3870
+ #: inc/class-page-settings.php:577
3871
+ msgid "There is a PHP bug (<a href=\"https://bugs.php.net/43817\">bug #43817</a>), which is triggered on some versions of Windows and IIS. Checking this box will enable a workaround for that bug. Only enable if you are getting errors about &ldquo;Permission denied&rdquo; in your logs."
 
3872
  msgstr ""
3873
 
3874
+ #: inc/class-page-settings.php:593
3875
+ msgid "Here you can set your keys for encrypting your backups."
3876
  msgstr ""
3877
 
3878
+ #: inc/class-page-settings.php:601
3879
+ msgid "If you select symmetric encryption (default), you can generate a 256-bit key by clicking <code>Generate Key</code>."
3880
  msgstr ""
3881
 
3882
+ #: inc/class-page-settings.php:611
3883
+ msgid "If you select asymmetric encryption (more secure), you must have an RSA public/private key pair. You would enter the public key in the <code>Public Key</code> field. If you do not have a key pair, click <code>Generate Key Pair</code> and they will be generated for you."
3884
  msgstr ""
3885
 
3886
+ #: inc/class-page-settings.php:621
3887
+ msgid "<strong>Note</strong>: You will be asked to download the keys for safe storage. We do not keep a copy of the private key, so if you lose this, your data cannot be decrypted!"
3888
  msgstr ""
3889
 
3890
+ #: inc/class-page-settings.php:631
3891
+ msgid "You can also click <code>Validate</code> to validate that you have the proper private key for the given public key."
3892
  msgstr ""
3893
 
3894
+ #: inc/class-page-settings.php:642
3895
+ msgid "Encryption Type"
3896
  msgstr ""
3897
 
3898
+ #: inc/class-page-settings.php:649
3899
+ msgid "Symmetric (public key only)"
3900
  msgstr ""
3901
 
3902
+ #: inc/class-page-settings.php:655
3903
+ msgid "Asymmetric (public and private key)"
3904
  msgstr ""
3905
 
3906
+ #: inc/class-page-settings.php:661
3907
+ #: inc/class-page-settings.php:667
3908
+ msgid "Encryption Key"
3909
  msgstr ""
3910
 
3911
+ #: inc/class-page-settings.php:672
3912
+ msgid "Key"
 
3913
  msgstr ""
3914
 
3915
+ #: inc/class-page-settings.php:684
3916
+ msgid "Click below to generate a random key."
3917
  msgstr ""
3918
 
3919
+ #: inc/class-page-settings.php:687
3920
+ msgid "Generate Key"
3921
  msgstr ""
3922
 
3923
+ #: inc/class-page-settings.php:696
3924
+ #: inc/class-page-settings.php:701
3925
+ #: inc/class-page-settings.php:762
3926
+ msgid "Public Key"
3927
  msgstr ""
3928
 
3929
+ #: inc/class-page-settings.php:704
3930
+ msgid "RSA Public Key"
3931
  msgstr ""
3932
 
3933
+ #: inc/class-page-settings.php:716
3934
+ #: inc/class-page-settings.php:717
3935
+ msgid "Generate Key Pair"
3936
  msgstr ""
3937
 
3938
+ #: inc/class-page-settings.php:722
3939
+ msgid "Validate Key"
3940
  msgstr ""
3941
 
3942
+ #: inc/class-page-settings.php:723
3943
+ #: inc/class-page-settings.php:748
3944
+ msgid "Validate"
3945
  msgstr ""
3946
 
3947
+ #: inc/class-page-settings.php:735
3948
+ msgid "Enter your private key below to validate it will work with the provided public key."
3949
  msgstr ""
3950
 
3951
+ #: inc/class-page-settings.php:738
3952
+ msgid "The private key will not be stored, so you must still securely store it yourself."
 
3953
  msgstr ""
3954
 
3955
+ #: inc/class-page-settings.php:754
3956
+ msgid "Your keys are being generated. Please hold a moment &hellip;"
 
3957
  msgstr ""
3958
 
3959
+ #: inc/class-page-settings.php:758
3960
+ msgid "Here are your keys. Please store them in a safe location."
 
3961
  msgstr ""
3962
 
3963
+ #: inc/class-page-settings.php:783
3964
+ msgid "Please download at least your private key above, as we will not store this key, and if you lose it, your backups cannot be decrypted."
 
3965
  msgstr ""
3966
 
3967
+ #: inc/class-page-settings.php:786
3968
+ msgid "Click the button below to use these keys and paste the public key into the RSA public key field above."
 
3969
  msgstr ""
3970
 
3971
+ #: inc/class-page-settings.php:790
3972
+ msgid "Use These Keys"
 
3973
  msgstr ""
3974
 
3975
+ #: inc/class-page-settings.php:801
3976
+ msgid "Authentication for <code>%s</code>"
 
3977
  msgstr ""
3978
 
3979
+ #: inc/class-page-settings.php:808
3980
+ msgid "If you protected your blog with HTTP basic authentication (.htaccess), or you use a Plugin to secure wp-cron.php, then use the authentication methods below."
3981
  msgstr ""
3982
 
3983
+ #: inc/class-page-settings.php:824
3984
+ #: inc/class-page-settings.php:829
3985
+ msgid "Authentication method"
3986
  msgstr ""
3987
 
3988
+ #: inc/class-page-settings.php:841
3989
+ msgid "Basic auth"
3990
  msgstr ""
3991
 
3992
+ #: inc/class-page-settings.php:845
3993
+ msgid "WordPress User"
 
 
 
 
3994
  msgstr ""
3995
 
3996
+ #: inc/class-page-settings.php:849
3997
+ msgid "Query argument"
3998
  msgstr ""
3999
 
4000
+ #: inc/class-page-settings.php:860
4001
+ msgid "Basic Auth Username:"
4002
  msgstr ""
4003
 
4004
+ #: inc/class-page-settings.php:877
4005
+ msgid "Basic Auth Password:"
4006
  msgstr ""
4007
 
4008
+ #: inc/class-page-settings.php:891
4009
+ #: inc/class-page-settings.php:894
4010
+ msgid "Select WordPress User"
4011
  msgstr ""
4012
 
4013
+ #: inc/class-page-settings.php:927
4014
+ msgid "Query arg key=value:"
4015
  msgstr ""
4016
 
4017
+ #: inc/class-page-settings.php:955
4018
+ msgid "Experiencing an issue and need to contact BackWPup support? Click the link below to get debug information you can send to us."
4019
  msgstr ""
4020
 
4021
+ #: inc/class-page-settings.php:962
4022
+ msgid "Debug Info"
4023
  msgstr ""
4024
 
4025
+ #: inc/class-page-settings.php:966
4026
+ msgid "Get Debug Info"
4027
  msgstr ""
4028
 
4029
+ #: inc/class-page-settings.php:973
4030
+ msgid "You will find debug information below. Click the button to copy the debug info to send to support."
4031
  msgstr ""
4032
 
4033
+ #: inc/class-page-settings.php:981
4034
+ msgid "<strong>Note</strong>: Would you like faster, more streamlined support? Pro users can contact BackWPup from right within the plugin."
4035
  msgstr ""
4036
 
4037
+ #: inc/class-page-settings.php:988
4038
+ msgid "https://backwpup.com"
4039
  msgstr ""
4040
 
4041
+ #: inc/class-page-settings.php:989
4042
+ msgid "Get Pro"
4043
  msgstr ""
4044
 
4045
+ #: inc/class-page-settings.php:1000
4046
+ msgid "Copy Debug Info"
4047
  msgstr ""
4048
 
4049
+ #: inc/class-page-settings.php:1005
4050
+ msgid "Debug info copied to clipboard."
4051
  msgstr ""
4052
 
4053
+ #: inc/class-page-settings.php:1013
4054
+ msgid "Could not copy debug info. You can simply press ctrl+C to copy it."
4055
  msgstr ""
4056
 
4057
+ #: inc/class-page-settings.php:1066
4058
+ #: inc/class-page-settings.php:1070
4059
+ msgid "Setting"
4060
  msgstr ""
4061
 
4062
+ #: inc/class-page-settings.php:1066
4063
+ #: inc/class-page-settings.php:1070
4064
+ msgid "Value"
4065
  msgstr ""
4066
 
4067
+ #: inc/class-page-settings.php:1089
4068
+ msgid "Save Changes"
4069
  msgstr ""
4070
 
4071
+ #: inc/class-page-settings.php:1094
4072
+ msgid "Reset all settings to default"
4073
  msgstr ""
4074
 
4075
+ #: inc/class-page-settings.php:1115
4076
+ msgid "WordPress version"
4077
  msgstr ""
4078
 
4079
+ #: inc/class-page-settings.php:1120
4080
+ msgid "BackWPup version"
4081
  msgstr ""
4082
 
4083
+ #: inc/class-page-settings.php:1124
4084
+ msgid "Get pro."
4085
  msgstr ""
4086
 
4087
+ #: inc/class-page-settings.php:1126
4088
+ msgid "BackWPup Pro version"
4089
  msgstr ""
4090
 
4091
+ #: inc/class-page-settings.php:1131
4092
+ msgid "PHP version"
4093
  msgstr ""
4094
 
4095
+ #: inc/class-page-settings.php:1141
4096
+ msgid "MySQL version"
4097
  msgstr ""
4098
 
4099
+ #: inc/class-page-settings.php:1145
4100
+ msgid "cURL version"
4101
  msgstr ""
4102
 
4103
+ #: inc/class-page-settings.php:1149
4104
+ msgid "cURL SSL version"
4105
  msgstr ""
4106
 
4107
+ #: inc/class-page-settings.php:1152
4108
+ msgid "unavailable"
4109
  msgstr ""
4110
 
4111
+ #: inc/class-page-settings.php:1156
4112
+ msgid "WP-Cron url"
4113
  msgstr ""
4114
 
4115
+ #: inc/class-page-settings.php:1160
4116
+ msgid "Server self connect"
4117
  msgstr ""
4118
 
4119
+ #: inc/class-page-settings.php:1166
4120
+ msgid "Not expected HTTP response:"
4121
  msgstr ""
4122
 
4123
+ #: inc/class-page-settings.php:1167
4124
+ msgid "<strong>Not expected HTTP response:</strong><br>"
4125
  msgstr ""
4126
 
4127
+ #: inc/class-page-settings.php:1170
4128
+ msgid "WP Http Error: %s"
4129
  msgstr ""
4130
 
4131
+ #: inc/class-page-settings.php:1174
4132
+ msgid "WP Http Error: <code>%s</code>"
4133
  msgstr ""
4134
 
4135
+ #: inc/class-page-settings.php:1178
4136
+ msgid "Status-Code: %d"
4137
  msgstr ""
4138
 
4139
+ #: inc/class-page-settings.php:1180
4140
+ msgid "Status-Code: <code>%d</code>"
4141
  msgstr ""
4142
 
4143
+ #: inc/class-page-settings.php:1193
4144
+ msgid "Content: %s"
4145
+ msgstr ""
 
4146
 
4147
+ #: inc/class-page-settings.php:1195
4148
+ msgid "Content: <code>%s</code>"
4149
  msgstr ""
4150
 
4151
+ #: inc/class-page-settings.php:1200
4152
+ msgid "Response Test O.K."
4153
  msgstr ""
4154
 
4155
+ #: inc/class-page-settings.php:1209
4156
+ msgid "Temp folder"
4157
  msgstr ""
4158
 
4159
+ #: inc/class-page-settings.php:1212
4160
+ msgid "Temp folder %s doesn't exist."
4161
  msgstr ""
4162
 
4163
+ #: inc/class-page-settings.php:1217
4164
+ msgid "Temporary folder %s is not writable."
4165
  msgstr ""
4166
 
4167
+ #: inc/class-page-settings.php:1225
4168
+ msgid "Log folder"
4169
  msgstr ""
4170
 
4171
+ #: inc/class-page-settings.php:1231
4172
+ msgid "Log folder %s does not exist."
 
 
 
4173
  msgstr ""
4174
 
4175
+ #: inc/class-page-settings.php:1236
4176
+ msgid "Log folder %s is not writable."
4177
  msgstr ""
4178
 
4179
+ #: inc/class-page-settings.php:1244
4180
+ msgid "Server"
 
 
 
 
 
 
 
 
4181
  msgstr ""
4182
 
4183
+ #: inc/class-page-settings.php:1248
4184
+ msgid "Operating System"
4185
  msgstr ""
4186
 
4187
+ #: inc/class-page-settings.php:1252
4188
+ msgid "PHP SAPI"
4189
  msgstr ""
4190
 
4191
+ #: inc/class-page-settings.php:1256
4192
+ msgid "Current PHP user"
4193
  msgstr ""
4194
 
4195
+ #: inc/class-page-settings.php:1260
4196
+ msgid "Function Disabled"
4197
  msgstr ""
4198
 
4199
+ #: inc/class-page-settings.php:1264
4200
+ msgid "Maximum execution time"
4201
  msgstr ""
4202
 
4203
+ #: inc/class-page-settings.php:1266
4204
+ #: inc/class-page-settings.php:1273
4205
+ msgid "%d seconds"
4206
  msgstr ""
4207
 
4208
+ #: inc/class-page-settings.php:1271
4209
+ msgid "BackWPup maximum script execution time"
4210
  msgstr ""
4211
 
4212
+ #: inc/class-page-settings.php:1278
4213
+ msgid "Alternative WP Cron"
4214
  msgstr ""
4215
 
4216
+ #: inc/class-page-settings.php:1280
4217
+ #: inc/class-page-settings.php:1288
4218
+ msgid "On"
4219
  msgstr ""
4220
 
4221
+ #: inc/class-page-settings.php:1282
4222
+ #: inc/class-page-settings.php:1290
4223
+ msgid "Off"
4224
  msgstr ""
4225
 
4226
+ #: inc/class-page-settings.php:1286
4227
+ msgid "Disabled WP Cron"
4228
  msgstr ""
4229
 
4230
+ #: inc/class-page-settings.php:1294
4231
+ msgid "CHMOD Dir"
4232
  msgstr ""
4233
 
4234
+ #: inc/class-page-settings.php:1302
4235
+ msgid "Server Time"
4236
  msgstr ""
4237
 
4238
+ #: inc/class-page-settings.php:1307
4239
+ msgid "Blog Time"
4240
  msgstr ""
4241
 
4242
+ #: inc/class-page-settings.php:1311
4243
+ msgid "Blog Timezone"
4244
  msgstr ""
4245
 
4246
+ #: inc/class-page-settings.php:1315
4247
+ msgid "Blog Time offset"
 
4248
  msgstr ""
4249
 
4250
+ #: inc/class-page-settings.php:1317
4251
+ msgid "%s hours"
 
4252
  msgstr ""
4253
 
4254
+ #: inc/class-page-settings.php:1322
4255
+ msgid "Blog language"
 
4256
  msgstr ""
4257
 
4258
+ #: inc/class-page-settings.php:1326
4259
+ msgid "MySQL Client encoding"
4260
  msgstr ""
4261
 
4262
+ #: inc/class-page-settings.php:1330
4263
+ msgid "PHP Memory limit"
4264
  msgstr ""
4265
 
4266
+ #: inc/class-page-settings.php:1334
4267
+ msgid "WP memory limit"
4268
  msgstr ""
4269
 
4270
+ #: inc/class-page-settings.php:1338
4271
+ msgid "WP maximum memory limit"
4272
  msgstr ""
4273
 
4274
+ #: inc/class-page-settings.php:1342
4275
+ msgid "Memory in use"
4276
  msgstr ""
4277
 
4278
+ #: inc/class-page-settings.php:1348
4279
+ msgid "Disabled PHP Functions:"
4280
  msgstr ""
4281
 
4282
+ #: inc/class-page-settings.php:1353
4283
+ msgid "Loaded PHP Extensions:"
 
4284
  msgstr ""
4285
 
4286
+ #: inc/class-system-tests-runner.php:67
4287
+ msgctxt "%1 = extension name, %2 = file suffix"
4288
+ msgid "We recommend to install the %1$s extension to generate %2$s archives."
4289
  msgstr ""
4290
 
4291
+ #: inc/class-system-tests-runner.php:77
4292
+ msgid "You must run WordPress version %1$s or higher to use this plugin. You are using version %2$s now."
4293
  msgstr ""
4294
 
4295
+ #: inc/class-system-tests-runner.php:88
4296
+ msgid "We recommend to run a PHP version above %1$s to get the full plugin functionality. You are using version %2$s now."
4297
  msgstr ""
4298
 
4299
+ #: inc/class-system-tests-runner.php:100
4300
+ msgid "You must have the MySQLi extension installed and a MySQL server version of %1$s or higher to use this plugin. You are using version %2$s now."
4301
+ msgstr ""
 
4302
 
4303
+ #: inc/class-system-tests-runner.php:112
4304
+ msgid "PHP cURL extension must be installed to use the full plugin functionality."
4305
  msgstr ""
4306
 
4307
+ #: inc/class-system-tests-runner.php:136
4308
+ msgctxt "Link to PHP manual"
4309
+ msgid "Please disable the deprecated <a href=\"%s\">PHP safe mode</a>."
4310
  msgstr ""
4311
 
4312
+ #: inc/class-system-tests-runner.php:146
4313
+ msgid "We recommend to install the PHP FTP extension to use the FTP backup destination."
 
4314
  msgstr ""
4315
 
4316
+ #: inc/class-system-tests-runner.php:164
4317
+ msgid "The HTTP response test result is an error: \"%s\"."
 
4318
  msgstr ""
4319
 
4320
+ #: inc/class-system-tests-runner.php:175
4321
+ msgid "The HTTP response test result is a wrong HTTP status: %s. It should be status 200."
 
4322
  msgstr ""
4323
 
4324
+ #: inc/class-system-tests-runner.php:193
4325
+ msgid "Yeah!"
 
4326
  msgstr ""
4327
 
4328
+ #: inc/class-system-tests-runner.php:194
4329
+ msgid "All tests passed without errors."
 
4330
  msgstr ""
4331
 
4332
+ #: inc/class-system-tests-runner.php:220
4333
+ msgid "WP-Cron seems to be broken. But it is needed to run scheduled jobs."
 
4334
  msgstr ""
4335
 
4336
+ #: inc/class-system-tests-runner.php:239
4337
+ msgid "There are errors. Please correct them, or BackWPup cannot work."
 
4338
  msgstr ""
4339
 
4340
+ #: inc/class-system-tests-runner.php:261
4341
+ msgid "There are some warnings. BackWPup will work, but with limitations."
 
4342
  msgstr ""
4343
 
4344
+ #: inc/class-wp-cli.php:23
4345
+ msgid "A job is already running."
 
4346
  msgstr ""
4347
 
4348
+ #: inc/class-wp-cli.php:35
4349
+ msgid "No job ID specified!"
 
4350
  msgstr ""
4351
 
4352
+ #: inc/class-wp-cli.php:41
4353
+ msgid "Job ID does not exist!"
 
4354
  msgstr ""
4355
 
4356
+ #: inc/class-wp-cli.php:54
4357
+ msgid "Nothing to abort!"
 
4358
  msgstr ""
4359
 
4360
+ #: inc/class-wp-cli.php:105
4361
+ msgid "No job running"
 
4362
  msgstr ""
4363
 
4364
  #: vendor/inpsyde/backwpup-restore-shared/inc/localize-restore-api.php:7
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: backup, database backup, cloud backup, restore, wordpress backup
4
  Requires at least: 3.9
5
  Tested up to: 4.9.8
6
  Requires PHP: 5.3
7
- Stable tag: 3.6.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -12,7 +12,7 @@ Schedule complete automatic backups of your WordPress installation. Decide which
12
 
13
  == Description ==
14
 
15
- **You, our loyal users, downloaded BackWPup incredible 7 million times! We celebrate that with a 30% discount on all our BackWPup PRO licences - only valid until November 11th, 2018! [Save 30% and get PRO!](https://backwpup.com/#buy)**
16
 
17
  The **backup plugin** **[BackWPup](https://backwpup.com/)** can be used to save your complete installation including /wp-content/ and push them to an external Backup Service, like **Dropbox**, **S3**, **FTP** and many more, see list below. With a single backup .zip file you are able to easily restore an installation. Please understand: this free version will not be supported as good as the [BackWPup Pro version](https://backwpup.com). With our premium version you get first class support and more features.
18
 
@@ -163,12 +163,19 @@ Yes. You need to have writing access to the wp-config.php file (usually residing
163
  [You can find a detailed tutorial in the BackWPup documentation.](https://backwpup.com/docs/install-backwpup-pro-activate-licence/)
164
 
165
  == Changelog ==
 
 
 
 
 
 
 
166
  = Version 3.6.2 =
167
- Release Date: Oct 17, 2018
168
 
169
  * Fixed: Not recognized file extensions get an additional underscore in the file name in zip file
170
  * Fixed: Backup archive file have dot folder contains all web root files
171
- * Fixed: Ftp destination downloader repetitively open a new handler for the source file causing corrupted backup.
172
 
173
  = Version 3.6.1 =
174
  Release Date: Sep 25, 2018
4
  Requires at least: 3.9
5
  Tested up to: 4.9.8
6
  Requires PHP: 5.3
7
+ Stable tag: 3.6.3
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ **You, our loyal users, downloaded BackWPup incredible 7 million times! We celebrate that with a 30% discount on all our BackWPup PRO licences - only vaild until November 11th, 2018! [Save 30% and get PRO!](https://backwpup.com/#buy)**
16
 
17
  The **backup plugin** **[BackWPup](https://backwpup.com/)** can be used to save your complete installation including /wp-content/ and push them to an external Backup Service, like **Dropbox**, **S3**, **FTP** and many more, see list below. With a single backup .zip file you are able to easily restore an installation. Please understand: this free version will not be supported as good as the [BackWPup Pro version](https://backwpup.com). With our premium version you get first class support and more features.
18
 
163
  [You can find a detailed tutorial in the BackWPup documentation.](https://backwpup.com/docs/install-backwpup-pro-activate-licence/)
164
 
165
  == Changelog ==
166
+ = Version 3.6.3 =
167
+ Release Date: Nov, 5, 2018
168
+
169
+ * Fixed: "Failed to restore file": file restore progress stop working and jump directly to database restore step
170
+ * Fixed: Restore progress stuck on "restoring database" with archive backup contains files only
171
+ * Fixed: All config.php files are not in backup archive
172
+
173
  = Version 3.6.2 =
174
+ Release Date: Oct, 17, 2018
175
 
176
  * Fixed: Not recognized file extensions get an additional underscore in the file name in zip file
177
  * Fixed: Backup archive file have dot folder contains all web root files
178
+ * Fixed: Ftp destination downloader repetitively open a new handler for the source file causing corrupted backup
179
 
180
  = Version 3.6.1 =
181
  Release Date: Sep 25, 2018
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit01ef56d5fd24bc4adbb59e54f6df9a02::getLoader();
vendor/composer/ClassLoader.php CHANGED
@@ -377,7 +377,7 @@ class ClassLoader
377
  $subPath = $class;
378
  while (false !== $lastPos = strrpos($subPath, '\\')) {
379
  $subPath = substr($subPath, 0, $lastPos);
380
- $search = $subPath . '\\';
381
  if (isset($this->prefixDirsPsr4[$search])) {
382
  $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383
  foreach ($this->prefixDirsPsr4[$search] as $dir) {
377
  $subPath = $class;
378
  while (false !== $lastPos = strrpos($subPath, '\\')) {
379
  $subPath = substr($subPath, 0, $lastPos);
380
+ $search = $subPath.'\\';
381
  if (isset($this->prefixDirsPsr4[$search])) {
382
  $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383
  foreach ($this->prefixDirsPsr4[$search] as $dir) {
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d', 'loadClassLoader'));
25
 
26
  $includePaths = require __DIR__ . '/include_paths.php';
27
  $includePaths[] = get_include_path();
@@ -31,7 +31,7 @@ class ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d
31
  if ($useStaticLoader) {
32
  require_once __DIR__ . '/autoload_static.php';
33
 
34
- call_user_func(\Composer\Autoload\ComposerStaticInit65ea580ea04e6291c138dff30ebdf26d::getInitializer($loader));
35
  } else {
36
  $map = require __DIR__ . '/autoload_namespaces.php';
37
  foreach ($map as $namespace => $path) {
@@ -52,19 +52,19 @@ class ComposerAutoloaderInit65ea580ea04e6291c138dff30ebdf26d
52
  $loader->register(true);
53
 
54
  if ($useStaticLoader) {
55
- $includeFiles = Composer\Autoload\ComposerStaticInit65ea580ea04e6291c138dff30ebdf26d::$files;
56
  } else {
57
  $includeFiles = require __DIR__ . '/autoload_files.php';
58
  }
59
  foreach ($includeFiles as $fileIdentifier => $file) {
60
- composerRequire65ea580ea04e6291c138dff30ebdf26d($fileIdentifier, $file);
61
  }
62
 
63
  return $loader;
64
  }
65
  }
66
 
67
- function composerRequire65ea580ea04e6291c138dff30ebdf26d($fileIdentifier, $file)
68
  {
69
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
70
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit01ef56d5fd24bc4adbb59e54f6df9a02
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit01ef56d5fd24bc4adbb59e54f6df9a02', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit01ef56d5fd24bc4adbb59e54f6df9a02', 'loadClassLoader'));
25
 
26
  $includePaths = require __DIR__ . '/include_paths.php';
27
  $includePaths[] = get_include_path();
31
  if ($useStaticLoader) {
32
  require_once __DIR__ . '/autoload_static.php';
33
 
34
+ call_user_func(\Composer\Autoload\ComposerStaticInit01ef56d5fd24bc4adbb59e54f6df9a02::getInitializer($loader));
35
  } else {
36
  $map = require __DIR__ . '/autoload_namespaces.php';
37
  foreach ($map as $namespace => $path) {
52
  $loader->register(true);
53
 
54
  if ($useStaticLoader) {
55
+ $includeFiles = Composer\Autoload\ComposerStaticInit01ef56d5fd24bc4adbb59e54f6df9a02::$files;
56
  } else {
57
  $includeFiles = require __DIR__ . '/autoload_files.php';
58
  }
59
  foreach ($includeFiles as $fileIdentifier => $file) {
60
+ composerRequire01ef56d5fd24bc4adbb59e54f6df9a02($fileIdentifier, $file);
61
  }
62
 
63
  return $loader;
64
  }
65
  }
66
 
67
+ function composerRequire01ef56d5fd24bc4adbb59e54f6df9a02($fileIdentifier, $file)
68
  {
69
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
70
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit65ea580ea04e6291c138dff30ebdf26d
8
  {
9
  public static $files = array (
10
  '2c102faa651ef8ea5874edb585946bce' => __DIR__ .
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit01ef56d5fd24bc4adbb59e54f6df9a02
8
  {
9
  public static $files = array (
10
  '2c102faa651ef8ea5874edb585946bce' => __DIR__ .