BackUpWordPress - Version 2.2.2

Version Description

Download this release

Release Info

Developer willmot
Plugin Icon 128x128 BackUpWordPress
Version 2.2.2
Comparing to
See all releases

Code changes from version 2.2.1 to 2.2.2

Files changed (51) hide show
  1. admin/actions.php +98 -51
  2. admin/constants.php +3 -0
  3. admin/menu.php +4 -1
  4. assets/hmbkp.js +8 -8
  5. classes/email.php +16 -3
  6. classes/error.php +151 -0
  7. classes/schedule.php +10 -4
  8. classes/services.php +11 -0
  9. functions/core.php +18 -0
  10. functions/interface.php +9 -3
  11. hm-backup/hm-backup.php +24 -23
  12. languages/backupwordpress.mo +0 -0
  13. languages/backupwordpress.po +79 -64
  14. languages/hmbkp-cs_CS.mo +0 -0
  15. languages/hmbkp-cs_CS.po +82 -74
  16. languages/hmbkp-da_DA.mo +0 -0
  17. languages/hmbkp-da_DA.po +192 -180
  18. languages/hmbkp-de_DE.mo +0 -0
  19. languages/hmbkp-de_DE.po +74 -66
  20. languages/hmbkp-es_ES.mo +0 -0
  21. languages/hmbkp-es_ES.po +221 -209
  22. languages/hmbkp-eu_EU.mo +0 -0
  23. languages/hmbkp-eu_EU.po +74 -66
  24. languages/hmbkp-fr_FR.mo +0 -0
  25. languages/hmbkp-fr_FR.po +224 -212
  26. languages/hmbkp-he_HE.mo +0 -0
  27. languages/hmbkp-he_HE.po +74 -66
  28. languages/hmbkp-it_IT.mo +0 -0
  29. languages/hmbkp-it_IT.po +74 -66
  30. languages/hmbkp-lt_LT.mo +0 -0
  31. languages/hmbkp-lt_LT.po +74 -66
  32. languages/hmbkp-lv_LV.mo +0 -0
  33. languages/hmbkp-lv_LV.po +74 -66
  34. languages/hmbkp-nl_NL.mo +0 -0
  35. languages/hmbkp-nl_NL.po +74 -66
  36. languages/hmbkp-pl_PL.mo +0 -0
  37. languages/hmbkp-pl_PL.po +74 -66
  38. languages/hmbkp-pt-br.mo +0 -0
  39. languages/hmbkp-pt-br.po +81 -73
  40. languages/hmbkp-ro_RO.mo +0 -0
  41. languages/hmbkp-ro_RO.po +74 -66
  42. languages/hmbkp-ru_RU.mo +0 -0
  43. languages/hmbkp-ru_RU.po +74 -66
  44. languages/hmbkp-sk_SK.mo +0 -0
  45. languages/hmbkp-sk_SK.po +636 -0
  46. languages/hmbkp-sr_SR.mo +0 -0
  47. languages/hmbkp-sr_SR.po +74 -66
  48. languages/hmbkp-zh-cn.mo +0 -0
  49. languages/hmbkp-zh-cn.po +74 -66
  50. plugin.php +2 -1
  51. uninstall.php +4 -0
admin/actions.php CHANGED
@@ -15,9 +15,10 @@ function hmbkp_request_delete_backup() {
15
 
16
  wp_redirect( remove_query_arg( array( 'hmbkp_delete_backup', '_wpnonce' ) ), 303 );
17
 
18
- exit;
19
 
20
  }
 
21
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_delete_backup' );
22
 
23
  /**
@@ -34,20 +35,21 @@ function hmbkp_request_delete_schedule() {
34
 
35
  wp_redirect( remove_query_arg( array( 'hmbkp_schedule_id', 'action', '_wpnonce' ) ), 303 );
36
 
37
- exit;
38
 
39
  }
 
40
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_delete_schedule' );
41
 
42
  /**
43
  * Perform a manual backup via ajax
44
  */
45
  function hmbkp_ajax_request_do_backup() {
46
-
 
 
47
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
48
- exit;
49
-
50
- //header( 'HTTP/1.1 500 Internal Server Error' );
51
 
52
  // We want to display any fatal errors in this ajax request so we can catch them on the other side.
53
  error_reporting( E_ERROR | E_USER_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_RECOVERABLE_ERROR );
@@ -58,6 +60,9 @@ function hmbkp_ajax_request_do_backup() {
58
  //ini_set( 'memory_limit', '2M' );
59
  //function a() { a(); } a();
60
 
 
 
 
61
  ignore_user_abort( true );
62
 
63
  hmbkp_cleanup();
@@ -79,9 +84,10 @@ function hmbkp_ajax_request_do_backup() {
79
  if ( trim( $error_message ) )
80
  echo $error_message;
81
 
82
- exit;
83
 
84
  }
 
85
  add_action( 'wp_ajax_hmbkp_run_schedule', 'hmbkp_ajax_request_do_backup' );
86
 
87
  /**
@@ -111,9 +117,10 @@ function hmbkp_request_download_backup() {
111
 
112
  wp_redirect( $url, 303 );
113
 
114
- exit;
115
 
116
  }
 
117
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_download_backup' );
118
 
119
  /**
@@ -135,9 +142,10 @@ function hmbkp_request_cancel_backup() {
135
 
136
  wp_redirect( remove_query_arg( array( 'action' ) ), 303 );
137
 
138
- exit;
139
 
140
  }
 
141
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_cancel_backup' );
142
 
143
  /**
@@ -153,18 +161,21 @@ function hmbkp_dismiss_error() {
153
 
154
  wp_redirect( remove_query_arg( 'action' ), 303 );
155
 
156
- exit;
157
 
158
  }
 
159
  add_action( 'admin_init', 'hmbkp_dismiss_error' );
160
 
161
  /**
162
  * Display the running status via ajax
163
  */
164
  function hmbkp_ajax_is_backup_in_progress() {
165
-
 
 
166
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
167
- exit;
168
 
169
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
170
 
@@ -174,18 +185,21 @@ function hmbkp_ajax_is_backup_in_progress() {
174
  else
175
  hmbkp_schedule_actions( $schedule );
176
 
177
- exit;
178
 
179
  }
 
180
  add_action( 'wp_ajax_hmbkp_is_in_progress', 'hmbkp_ajax_is_backup_in_progress' );
181
 
182
  /**
183
  * Display the calculated size via ajax
184
  */
185
  function hmbkp_ajax_calculate_backup_size() {
186
-
 
 
187
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
188
- exit;
189
 
190
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
191
 
@@ -193,15 +207,26 @@ function hmbkp_ajax_calculate_backup_size() {
193
 
194
  include_once( HMBKP_PLUGIN_PATH . '/admin/schedule.php' );
195
 
196
- exit;
197
 
198
  }
 
199
  add_action( 'wp_ajax_hmbkp_calculate', 'hmbkp_ajax_calculate_backup_size' );
200
 
201
  /**
202
  * Test the cron response and if it's not 200 show a warning message
203
  */
204
  function hmbkp_ajax_cron_test() {
 
 
 
 
 
 
 
 
 
 
205
 
206
  $response = wp_remote_head( site_url( 'wp-cron.php' ), array( 'timeout' => 30 ) );
207
 
@@ -209,14 +234,13 @@ function hmbkp_ajax_cron_test() {
209
  echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%1$s is returning a %2$s response which could mean cron jobs aren\'t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details.', 'hmbkp' ), '<code>wp-cron.php</code>', '<code>' . $response->get_error_message() . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
210
 
211
  elseif ( wp_remote_retrieve_response_code( $response ) != 200 )
212
- echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%1$s is returning a %2$s response which could mean cron jobs aren\'t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details.', 'hmbkp' ), '<code>wp-cron.php</code>', '<code>' . esc_html( wp_remote_retrieve_response_code( $response ) ) . ' ' . esc_html( get_status_header_desc( wp_remote_retrieve_response_code( $response ) ) ) . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
213
 
214
  else
215
  echo 1;
216
 
217
- exit;
218
 
219
- }
220
  add_action( 'wp_ajax_hmbkp_cron_test', 'hmbkp_ajax_cron_test' );
221
 
222
  /**
@@ -225,15 +249,16 @@ add_action( 'wp_ajax_hmbkp_cron_test', 'hmbkp_ajax_cron_test' );
225
  function hmbkp_edit_schedule_load() {
226
 
227
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
228
- exit;
229
 
230
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
231
 
232
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
233
 
234
- exit;
235
 
236
  }
 
237
  add_action( 'wp_ajax_hmbkp_edit_schedule_load', 'hmbkp_edit_schedule_load' );
238
 
239
  /**
@@ -242,15 +267,16 @@ add_action( 'wp_ajax_hmbkp_edit_schedule_load', 'hmbkp_edit_schedule_load' );
242
  function hmbkp_edit_schedule_excludes_load() {
243
 
244
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
245
- exit;
246
 
247
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
248
 
249
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
250
 
251
- exit;
252
 
253
  }
 
254
  add_action( 'wp_ajax_hmbkp_edit_schedule_excludes_load', 'hmbkp_edit_schedule_excludes_load' );
255
 
256
  /**
@@ -258,14 +284,15 @@ add_action( 'wp_ajax_hmbkp_edit_schedule_excludes_load', 'hmbkp_edit_schedule_ex
258
  */
259
  function hmbkp_add_schedule_load() {
260
 
261
- $schedule = new HMBKP_Scheduled_Backup( date( 'U' ) );
262
  $is_new_schedule = true;
263
 
264
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
265
 
266
- exit;
267
 
268
  }
 
269
  add_action( 'wp_ajax_hmbkp_add_schedule_load', 'hmbkp_add_schedule_load' );
270
 
271
  /**
@@ -276,13 +303,12 @@ add_action( 'wp_ajax_hmbkp_add_schedule_load', 'hmbkp_add_schedule_load' );
276
  function hmnkp_edit_schedule_submit() {
277
 
278
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
279
- exit;
280
 
281
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
282
 
283
  $errors = array();
284
 
285
-
286
 
287
  if ( isset( $_GET['hmbkp_schedule_type'] ) ) {
288
 
@@ -337,16 +363,17 @@ function hmnkp_edit_schedule_submit() {
337
 
338
  // Save the service options
339
  foreach ( HMBKP_Services::get_services( $schedule ) as $service )
340
- $errors = array_merge( $errors, $service->save() );
341
 
342
  $schedule->save();
343
 
344
  if ( $errors )
345
  echo json_encode( $errors );
346
 
347
- exit;
348
 
349
  }
 
350
  add_action( 'wp_ajax_hmnkp_edit_schedule_submit', 'hmnkp_edit_schedule_submit' );
351
 
352
 
@@ -357,9 +384,11 @@ add_action( 'wp_ajax_hmnkp_edit_schedule_submit', 'hmnkp_edit_schedule_submit' )
357
  * @return void
358
  */
359
  function hmbkp_add_exclude_rule() {
360
-
 
 
361
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
362
- exit;
363
 
364
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
365
 
@@ -369,9 +398,10 @@ function hmbkp_add_exclude_rule() {
369
 
370
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
371
 
372
- exit;
373
 
374
  }
 
375
  add_action( 'wp_ajax_hmbkp_add_exclude_rule', 'hmbkp_add_exclude_rule' );
376
 
377
 
@@ -384,7 +414,7 @@ add_action( 'wp_ajax_hmbkp_add_exclude_rule', 'hmbkp_add_exclude_rule' );
384
  function hmbkp_delete_exclude_rule() {
385
 
386
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
387
- exit;
388
 
389
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
390
 
@@ -396,9 +426,10 @@ function hmbkp_delete_exclude_rule() {
396
 
397
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
398
 
399
- exit;
400
 
401
  }
 
402
  add_action( 'wp_ajax_hmbkp_delete_exclude_rule', 'hmbkp_delete_exclude_rule' );
403
 
404
 
@@ -409,9 +440,11 @@ add_action( 'wp_ajax_hmbkp_delete_exclude_rule', 'hmbkp_delete_exclude_rule' );
409
  * @return void
410
  */
411
  function hmbkp_preview_exclude_rule() {
412
-
 
 
413
  if ( empty( $_POST['hmbkp_schedule_id'] ) || empty( $_POST['hmbkp_schedule_excludes'] ) )
414
- exit;
415
 
416
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
417
 
@@ -421,39 +454,47 @@ function hmbkp_preview_exclude_rule() {
421
 
422
  $schedule->set_excludes( $excludes );
423
 
424
- if ( $schedule->get_excluded_file_count() ) { ?>
 
425
 
426
  <p><?php printf( _n( '%s matches 1 file.', '%1$s matches %2$d files.', $schedule->get_excluded_file_count(), 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>', $schedule->get_excluded_file_count() ); ?></p>
427
 
428
- <?php } else { ?>
 
429
 
430
  <p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>' ); ?></p>
431
 
432
  <?php } ?>
433
 
434
- <p><button type="button" class="button-primary hmbkp_save_exclude_rule"><?php _e( 'Exclude', 'hmbkp' ); ?></button> <button type="button" class="button-secondary hmbkp_cancel_save_exclude_rule"><?php _e( 'Cancel', 'hmbkp' ); ?></button></p>
 
 
 
435
 
436
- <?php exit;
437
 
438
  }
 
439
  add_action( 'wp_ajax_hmbkp_file_list', 'hmbkp_preview_exclude_rule', 10, 0 );
440
 
441
  function hmbkp_display_error_and_offer_to_email_it() {
442
-
 
 
443
  if ( empty( $_POST['hmbkp_error'] ) )
444
- exit;
445
 
446
- $error = wp_strip_all_tags( stripslashes( $_POST['hmbkp_error'] ) );
447
 
448
- $error = str_replace( 'HMBKP_SUCCESS', '', $error, $succeeded );
449
 
450
  if ( $succeeded ) { ?>
451
 
452
- <h3><?php _e( 'Your backup completed but with the following errors / warnings', 'hmbkp' ); ?></h3>
453
 
454
  <?php } else { ?>
455
 
456
- <h3><?php _e( 'Your backUp failed', 'hmbkp' ); ?></h3>
457
 
458
  <?php } ?>
459
 
@@ -461,25 +502,31 @@ function hmbkp_display_error_and_offer_to_email_it() {
461
 
462
  <pre><?php esc_html_e( $error ); ?></pre>
463
 
464
- <p class="description"><?php printf( __( 'You can email details of this error to %s so they can look into the issue.', 'hmbkp' ), '<a href="http://hmn.md">Human Made Limited</a>' ); ?><br /><br /></p>
 
465
 
466
  <button class="button hmbkp-fancybox-close"><?php _e( 'Close', 'hmbkp' ); ?></button>
467
  <button class="button-primary hmbkp_send_error_via_email right"><?php _e( 'Email to Support', 'hmbkp' ); ?></button>
468
 
469
- <?php exit;
 
470
  }
 
471
  add_action( 'wp_ajax_hmbkp_backup_error', 'hmbkp_display_error_and_offer_to_email_it' );
472
 
473
  function hmbkp_send_error_via_email() {
474
-
 
 
475
  if ( empty( $_POST['hmbkp_error'] ) )
476
- exit;
477
 
478
  $error = wp_strip_all_tags( $_POST['hmbkp_error'] );
479
 
480
  wp_mail( 'support@humanmade.co.uk', 'BackUpWordPress Fatal error on ' . parse_url( home_url(), PHP_URL_HOST ), $error, 'From: BackUpWordPress <' . get_bloginfo( 'admin_email' ) . '>' . "\r\n" );
481
 
482
- exit;
483
 
484
  }
 
485
  add_action( 'wp_ajax_hmbkp_email_error', 'hmbkp_send_error_via_email' );
15
 
16
  wp_redirect( remove_query_arg( array( 'hmbkp_delete_backup', '_wpnonce' ) ), 303 );
17
 
18
+ die;
19
 
20
  }
21
+
22
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_delete_backup' );
23
 
24
  /**
35
 
36
  wp_redirect( remove_query_arg( array( 'hmbkp_schedule_id', 'action', '_wpnonce' ) ), 303 );
37
 
38
+ die;
39
 
40
  }
41
+
42
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_delete_schedule' );
43
 
44
  /**
45
  * Perform a manual backup via ajax
46
  */
47
  function hmbkp_ajax_request_do_backup() {
48
+
49
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
50
+
51
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
52
+ die;
 
 
53
 
54
  // We want to display any fatal errors in this ajax request so we can catch them on the other side.
55
  error_reporting( E_ERROR | E_USER_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_RECOVERABLE_ERROR );
60
  //ini_set( 'memory_limit', '2M' );
61
  //function a() { a(); } a();
62
 
63
+ // Force a 500 error for testing purposes
64
+ //header( 'HTTP/1.1 500 Internal Server Error' );
65
+
66
  ignore_user_abort( true );
67
 
68
  hmbkp_cleanup();
84
  if ( trim( $error_message ) )
85
  echo $error_message;
86
 
87
+ die;
88
 
89
  }
90
+
91
  add_action( 'wp_ajax_hmbkp_run_schedule', 'hmbkp_ajax_request_do_backup' );
92
 
93
  /**
117
 
118
  wp_redirect( $url, 303 );
119
 
120
+ die;
121
 
122
  }
123
+
124
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_download_backup' );
125
 
126
  /**
142
 
143
  wp_redirect( remove_query_arg( array( 'action' ) ), 303 );
144
 
145
+ die;
146
 
147
  }
148
+
149
  add_action( 'load-tools_page_' . HMBKP_PLUGIN_SLUG, 'hmbkp_request_cancel_backup' );
150
 
151
  /**
161
 
162
  wp_redirect( remove_query_arg( 'action' ), 303 );
163
 
164
+ die;
165
 
166
  }
167
+
168
  add_action( 'admin_init', 'hmbkp_dismiss_error' );
169
 
170
  /**
171
  * Display the running status via ajax
172
  */
173
  function hmbkp_ajax_is_backup_in_progress() {
174
+
175
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
176
+
177
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
178
+ die;
179
 
180
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
181
 
185
  else
186
  hmbkp_schedule_actions( $schedule );
187
 
188
+ die;
189
 
190
  }
191
+
192
  add_action( 'wp_ajax_hmbkp_is_in_progress', 'hmbkp_ajax_is_backup_in_progress' );
193
 
194
  /**
195
  * Display the calculated size via ajax
196
  */
197
  function hmbkp_ajax_calculate_backup_size() {
198
+
199
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
200
+
201
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
202
+ die;
203
 
204
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
205
 
207
 
208
  include_once( HMBKP_PLUGIN_PATH . '/admin/schedule.php' );
209
 
210
+ die;
211
 
212
  }
213
+
214
  add_action( 'wp_ajax_hmbkp_calculate', 'hmbkp_ajax_calculate_backup_size' );
215
 
216
  /**
217
  * Test the cron response and if it's not 200 show a warning message
218
  */
219
  function hmbkp_ajax_cron_test() {
220
+
221
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
222
+
223
+ if ( defined( 'ALTERNATE_WP_CRON' ) ) {
224
+
225
+ echo 1;
226
+
227
+ die;
228
+
229
+ }
230
 
231
  $response = wp_remote_head( site_url( 'wp-cron.php' ), array( 'timeout' => 30 ) );
232
 
234
  echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%1$s is returning a %2$s response which could mean cron jobs aren\'t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details.', 'hmbkp' ), '<code>wp-cron.php</code>', '<code>' . $response->get_error_message() . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
235
 
236
  elseif ( wp_remote_retrieve_response_code( $response ) != 200 )
237
+ echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%1$s is returning a %2$s response which could mean cron jobs aren\'t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details.', 'hmbkp' ), '<code>wp-cron.php</code>', '<code>' . esc_html( wp_remote_retrieve_response_code( $response ) ) . ' ' . esc_html( get_status_header_desc( wp_remote_retrieve_response_code( $response ) ) ) . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
238
 
239
  else
240
  echo 1;
241
 
242
+ die;
243
 
 
244
  add_action( 'wp_ajax_hmbkp_cron_test', 'hmbkp_ajax_cron_test' );
245
 
246
  /**
249
  function hmbkp_edit_schedule_load() {
250
 
251
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
252
+ die;
253
 
254
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
255
 
256
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
257
 
258
+ die;
259
 
260
  }
261
+
262
  add_action( 'wp_ajax_hmbkp_edit_schedule_load', 'hmbkp_edit_schedule_load' );
263
 
264
  /**
267
  function hmbkp_edit_schedule_excludes_load() {
268
 
269
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
270
+ die;
271
 
272
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
273
 
274
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
275
 
276
+ die;
277
 
278
  }
279
+
280
  add_action( 'wp_ajax_hmbkp_edit_schedule_excludes_load', 'hmbkp_edit_schedule_excludes_load' );
281
 
282
  /**
284
  */
285
  function hmbkp_add_schedule_load() {
286
 
287
+ $schedule = new HMBKP_Scheduled_Backup( date( 'U' ) );
288
  $is_new_schedule = true;
289
 
290
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
291
 
292
+ die;
293
 
294
  }
295
+
296
  add_action( 'wp_ajax_hmbkp_add_schedule_load', 'hmbkp_add_schedule_load' );
297
 
298
  /**
303
  function hmnkp_edit_schedule_submit() {
304
 
305
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
306
+ die;
307
 
308
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
309
 
310
  $errors = array();
311
 
 
312
 
313
  if ( isset( $_GET['hmbkp_schedule_type'] ) ) {
314
 
363
 
364
  // Save the service options
365
  foreach ( HMBKP_Services::get_services( $schedule ) as $service )
366
+ $errors = array_merge( $errors, $service->save() );
367
 
368
  $schedule->save();
369
 
370
  if ( $errors )
371
  echo json_encode( $errors );
372
 
373
+ die;
374
 
375
  }
376
+
377
  add_action( 'wp_ajax_hmnkp_edit_schedule_submit', 'hmnkp_edit_schedule_submit' );
378
 
379
 
384
  * @return void
385
  */
386
  function hmbkp_add_exclude_rule() {
387
+
388
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
389
+
390
  if ( empty( $_POST['hmbkp_schedule_id'] ) )
391
+ die;
392
 
393
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
394
 
398
 
399
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
400
 
401
+ die;
402
 
403
  }
404
+
405
  add_action( 'wp_ajax_hmbkp_add_exclude_rule', 'hmbkp_add_exclude_rule' );
406
 
407
 
414
  function hmbkp_delete_exclude_rule() {
415
 
416
  if ( empty( $_GET['hmbkp_schedule_id'] ) )
417
+ die;
418
 
419
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
420
 
426
 
427
  require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
428
 
429
+ die;
430
 
431
  }
432
+
433
  add_action( 'wp_ajax_hmbkp_delete_exclude_rule', 'hmbkp_delete_exclude_rule' );
434
 
435
 
440
  * @return void
441
  */
442
  function hmbkp_preview_exclude_rule() {
443
+
444
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
445
+
446
  if ( empty( $_POST['hmbkp_schedule_id'] ) || empty( $_POST['hmbkp_schedule_excludes'] ) )
447
+ die;
448
 
449
  $schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
450
 
454
 
455
  $schedule->set_excludes( $excludes );
456
 
457
+ if ( $schedule->get_excluded_file_count() ) {
458
+ ?>
459
 
460
  <p><?php printf( _n( '%s matches 1 file.', '%1$s matches %2$d files.', $schedule->get_excluded_file_count(), 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>', $schedule->get_excluded_file_count() ); ?></p>
461
 
462
+ <?php }
463
+ else { ?>
464
 
465
  <p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>' ); ?></p>
466
 
467
  <?php } ?>
468
 
469
+ <p>
470
+ <button type="button" class="button-primary hmbkp_save_exclude_rule"><?php _e( 'Exclude', 'hmbkp' ); ?></button>
471
+ <button type="button" class="button-secondary hmbkp_cancel_save_exclude_rule"><?php _e( 'Cancel', 'hmbkp' ); ?></button>
472
+ </p>
473
 
474
+ <?php die;
475
 
476
  }
477
+
478
  add_action( 'wp_ajax_hmbkp_file_list', 'hmbkp_preview_exclude_rule', 10, 0 );
479
 
480
  function hmbkp_display_error_and_offer_to_email_it() {
481
+
482
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
483
+
484
  if ( empty( $_POST['hmbkp_error'] ) )
485
+ die;
486
 
487
+ $error = wp_strip_all_tags( stripslashes( $_POST['hmbkp_error'] ) );
488
 
489
+ $error = str_replace( 'HMBKP_SUCCESS', '', $error, $succeeded );
490
 
491
  if ( $succeeded ) { ?>
492
 
493
+ <h3><?php _e( 'Your backup completed but with the following errors / warnings, it\'s probably ok to ignore these.', 'hmbkp' ); ?></h3>
494
 
495
  <?php } else { ?>
496
 
497
+ <h3><?php _e( 'Your backup failed', 'hmbkp' ); ?></h3>
498
 
499
  <?php } ?>
500
 
502
 
503
  <pre><?php esc_html_e( $error ); ?></pre>
504
 
505
+ <p class="description"><?php printf( __( 'You can email details of this error to %s so they can look into the issue.', 'hmbkp' ), '<a href="http://hmn.md">Human Made Limited</a>' ); ?>
506
+ <br /><br /></p>
507
 
508
  <button class="button hmbkp-fancybox-close"><?php _e( 'Close', 'hmbkp' ); ?></button>
509
  <button class="button-primary hmbkp_send_error_via_email right"><?php _e( 'Email to Support', 'hmbkp' ); ?></button>
510
 
511
+ <?php die;
512
+
513
  }
514
+
515
  add_action( 'wp_ajax_hmbkp_backup_error', 'hmbkp_display_error_and_offer_to_email_it' );
516
 
517
  function hmbkp_send_error_via_email() {
518
+
519
+ check_ajax_referer( 'hmbkp_nonce', 'nonce' );
520
+
521
  if ( empty( $_POST['hmbkp_error'] ) )
522
+ die;
523
 
524
  $error = wp_strip_all_tags( $_POST['hmbkp_error'] );
525
 
526
  wp_mail( 'support@humanmade.co.uk', 'BackUpWordPress Fatal error on ' . parse_url( home_url(), PHP_URL_HOST ), $error, 'From: BackUpWordPress <' . get_bloginfo( 'admin_email' ) . '>' . "\r\n" );
527
 
528
+ die;
529
 
530
  }
531
+
532
  add_action( 'wp_ajax_hmbkp_email_error', 'hmbkp_send_error_via_email' );
admin/constants.php CHANGED
@@ -28,6 +28,9 @@
28
  <dt<?php if ( defined( 'HMBKP_SCHEDULE_TIME' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_SCHEDULE_TIME</code></dt>
29
  <dd><p><?php printf( __( 'The time that your schedules should run. Defaults to %s.', 'hmbkp' ), '<code>23:00</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_SCHEDULE_TIME', '07:30' );</code></p></dd>
30
 
 
 
 
31
  </dl>
32
 
33
  </div>
28
  <dt<?php if ( defined( 'HMBKP_SCHEDULE_TIME' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_SCHEDULE_TIME</code></dt>
29
  <dd><p><?php printf( __( 'The time that your schedules should run. Defaults to %s.', 'hmbkp' ), '<code>23:00</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_SCHEDULE_TIME', '07:30' );</code></p></dd>
30
 
31
+ <?php foreach ( HMBKP_Services::get_services() as $file => $service )
32
+ echo wp_kses_post( $service::constant() ); ?>
33
+
34
  </dl>
35
 
36
  </div>
admin/menu.php CHANGED
@@ -72,7 +72,10 @@ function hmbkp_contextual_help() {
72
  require_once( HMBKP_PLUGIN_PATH . '/admin/constants.php' );
73
  $constants = ob_get_clean();
74
 
75
- get_current_screen()->add_help_tab( array( 'title' => __( 'FAQ', 'hmbkp' ), 'id' => 'hmbkp_faq', 'content' => wp_kses_post( $warning . $plugin->sections['faq'] ) ) );
 
 
 
76
  get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => wp_kses_post( $constants ) ) );
77
 
78
  get_current_screen()->set_help_sidebar(
72
  require_once( HMBKP_PLUGIN_PATH . '/admin/constants.php' );
73
  $constants = ob_get_clean();
74
 
75
+
76
+ if ( $plugin && ! is_wp_error( $plugin ) )
77
+ get_current_screen()->add_help_tab( array( 'title' => __( 'FAQ', 'hmbkp' ), 'id' => 'hmbkp_faq', 'content' => wp_kses_post( $warning . $plugin->sections['faq'] ) ) );
78
+
79
  get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => wp_kses_post( $constants ) ) );
80
 
81
  get_current_screen()->set_help_sidebar(
assets/hmbkp.js CHANGED
@@ -73,7 +73,7 @@ jQuery( document ).ready( function( $ ) {
73
 
74
  $.post(
75
  ajaxurl,
76
- { 'action' : 'hmbkp_file_list', 'hmbkp_schedule_excludes' : $( '.hmbkp_add_exclude_rule input' ).val(), 'hmbkp_schedule_id' : $( '[name="hmbkp_schedule_id"]' ).val() },
77
  function( data ) {
78
 
79
  $( '.hmbkp_add_exclude_rule ul' ).remove();
@@ -164,7 +164,7 @@ jQuery( document ).ready( function( $ ) {
164
 
165
  $.post(
166
  ajaxurl,
167
- { 'action' : 'hmbkp_add_exclude_rule', 'hmbkp_exclude_rule' : $( '.hmbkp_add_exclude_rule input' ).val(), 'hmbkp_schedule_id' : $( '[name="hmbkp_schedule_id"]' ).val() },
168
  function( data ) {
169
  $( '.hmbkp-edit-schedule-excludes-form' ).replaceWith( data );
170
  $( '.hmbkp-edit-schedule-excludes-form' ).show();
@@ -260,7 +260,7 @@ jQuery( document ).ready( function( $ ) {
260
  } );
261
 
262
  // Test the cron response using ajax
263
- $.post( ajaxurl, { 'action' : 'hmbkp_cron_test' },
264
  function( data ) {
265
  if ( data != 1 ) {
266
  $( '.wrap > h2' ).after( data );
@@ -270,7 +270,7 @@ jQuery( document ).ready( function( $ ) {
270
 
271
  // Calculate the estimated backup size
272
  if ( $( '.hmbkp-schedule-sentence .calculating' ).size() ) {
273
- $.post( ajaxurl, { 'action' : 'hmbkp_calculate', 'hmbkp_schedule_id' : $( '[data-hmbkp-schedule-id]' ).attr( 'data-hmbkp-schedule-id' ) },
274
  function( data ) {
275
 
276
  if ( data.indexOf( 'title' ) != -1 )
@@ -302,7 +302,7 @@ jQuery( document ).ready( function( $ ) {
302
 
303
  ajaxRequest = $.post(
304
  ajaxurl,
305
- { 'action' : 'hmbkp_run_schedule', 'hmbkp_schedule_id' : scheduleId }
306
  ).done( function( data ) {
307
 
308
  catchResponseAndOfferToEmail( data );
@@ -337,7 +337,7 @@ function catchResponseAndOfferToEmail( data ) {
337
 
338
  jQuery.post(
339
  ajaxurl,
340
- { 'action' : 'hmbkp_backup_error', 'hmbkp_error' : data },
341
  function( data ) {
342
 
343
  if ( ! data || data == 0 )
@@ -362,7 +362,7 @@ function catchResponseAndOfferToEmail( data ) {
362
 
363
  jQuery.post(
364
  ajaxurl,
365
- { 'action' : 'hmbkp_email_error', 'hmbkp_error' : data },
366
  function( data ) {
367
  jQuery.fancybox.close();
368
  }
@@ -378,7 +378,7 @@ function hmbkpRedirectOnBackupComplete( schedule_id, redirect ) {
378
 
379
  jQuery.post(
380
  ajaxurl,
381
- { 'action' : 'hmbkp_is_in_progress', 'hmbkp_schedule_id' : jQuery( '[data-hmbkp-schedule-id]' ).attr( 'data-hmbkp-schedule-id' ) },
382
  function( data ) {
383
 
384
  if ( data == 0 && redirect === true && ! jQuery( '.hmbkp-error' ).size() ) {
73
 
74
  $.post(
75
  ajaxurl,
76
+ { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_file_list', 'hmbkp_schedule_excludes' : $( '.hmbkp_add_exclude_rule input' ).val(), 'hmbkp_schedule_id' : $( '[name="hmbkp_schedule_id"]' ).val() },
77
  function( data ) {
78
 
79
  $( '.hmbkp_add_exclude_rule ul' ).remove();
164
 
165
  $.post(
166
  ajaxurl,
167
+ { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_add_exclude_rule', 'hmbkp_exclude_rule' : $( '.hmbkp_add_exclude_rule input' ).val(), 'hmbkp_schedule_id' : $( '[name="hmbkp_schedule_id"]' ).val() },
168
  function( data ) {
169
  $( '.hmbkp-edit-schedule-excludes-form' ).replaceWith( data );
170
  $( '.hmbkp-edit-schedule-excludes-form' ).show();
260
  } );
261
 
262
  // Test the cron response using ajax
263
+ $.post( ajaxurl, { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_cron_test' },
264
  function( data ) {
265
  if ( data != 1 ) {
266
  $( '.wrap > h2' ).after( data );
270
 
271
  // Calculate the estimated backup size
272
  if ( $( '.hmbkp-schedule-sentence .calculating' ).size() ) {
273
+ $.post( ajaxurl, { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_calculate', 'hmbkp_schedule_id' : $( '[data-hmbkp-schedule-id]' ).attr( 'data-hmbkp-schedule-id' ) },
274
  function( data ) {
275
 
276
  if ( data.indexOf( 'title' ) != -1 )
302
 
303
  ajaxRequest = $.post(
304
  ajaxurl,
305
+ { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_run_schedule', 'hmbkp_schedule_id' : scheduleId }
306
  ).done( function( data ) {
307
 
308
  catchResponseAndOfferToEmail( data );
337
 
338
  jQuery.post(
339
  ajaxurl,
340
+ { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_backup_error', 'hmbkp_error' : data },
341
  function( data ) {
342
 
343
  if ( ! data || data == 0 )
362
 
363
  jQuery.post(
364
  ajaxurl,
365
+ { 'nonce' : hmbkp.nonce, 'action' : 'hmbkp_email_error', 'hmbkp_error' : data },
366
  function( data ) {
367
  jQuery.fancybox.close();
368
  }
378
 
379
  jQuery.post(
380
  ajaxurl,
381
+ { 'nonce':hmbkp.nonce, 'action' : 'hmbkp_is_in_progress', 'hmbkp_schedule_id' : jQuery( '[data-hmbkp-schedule-id]' ).attr( 'data-hmbkp-schedule-id' ) },
382
  function( data ) {
383
 
384
  if ( data == 0 && redirect === true && ! jQuery( '.hmbkp-error' ).size() ) {
classes/email.php CHANGED
@@ -7,6 +7,12 @@
7
  */
8
  class HMBKP_Email_Service extends HMBKP_Service {
9
 
 
 
 
 
 
 
10
  /**
11
  * Output the email form field
12
  *
@@ -20,7 +26,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
20
 
21
  <input type="email" name="<?php echo $this->get_field_name( 'email' ); ?>" value="<?php echo $this->get_field_value( 'email' ); ?>" />
22
 
23
- <p class="description"><?php _e( 'Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address\'s with a comma.', 'hmbkp' ); ?></p>
24
 
25
  </label>
26
 
@@ -36,6 +42,13 @@ class HMBKP_Email_Service extends HMBKP_Service {
36
  return '';
37
  }
38
 
 
 
 
 
 
 
 
39
  /**
40
  * The sentence fragment that is output as part of the schedule sentence
41
  *
@@ -136,8 +149,8 @@ class HMBKP_Email_Service extends HMBKP_Service {
136
 
137
  $subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
138
 
139
- // If it's larger than 10MB assume it's not going to be able to send the backup
140
- if ( filesize( $file ) < 1000 * 1000 * 10 ) {
141
 
142
  $message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'The backup file should be attached to this email.', 'hmbkp' ) . "\n\n" . __( 'You can download the backup file by clicking the link below:', 'hmbkp' ) . "\n\n" . '%2$s' . "\n\n" . __( "Kind Regards,\nThe Happy BackUpWordPress Backup Emailing Robot", 'hmbkp' ), home_url(), esc_html( $download ) );
143
 
7
  */
8
  class HMBKP_Email_Service extends HMBKP_Service {
9
 
10
+ /**
11
+ * Human readable name for this service
12
+ * @var string
13
+ */
14
+ public $name = 'Email';
15
+
16
  /**
17
  * Output the email form field
18
  *
26
 
27
  <input type="email" name="<?php echo $this->get_field_name( 'email' ); ?>" value="<?php echo $this->get_field_value( 'email' ); ?>" />
28
 
29
+ <p class="description"><?php printf( __( 'Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address\'s with a comma.', 'hmbkp' ), '<code>' . size_format( hmbkp_get_max_attachment_size() ) . '</code>' ); ?></p>
30
 
31
  </label>
32
 
42
  return '';
43
  }
44
 
45
+ public static function constant() { ?>
46
+
47
+ <dt<?php if ( defined( 'HMBKP_ATTACHMENT_MAX_FILESIZE' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_ATTACHMENT_MAX_FILESIZE</code></dt>
48
+ <dd><p><?php printf( __( 'The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s.', 'hmbkp' ), '<code>10MB</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_ATTACHMENT_MAX_FILESIZE', '25MB' );</code></p></dd>
49
+
50
+ <?php }
51
+
52
  /**
53
  * The sentence fragment that is output as part of the schedule sentence
54
  *
149
 
150
  $subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
151
 
152
+ // If it's larger than the max attachment size limit assume it's not going to be able to send the backup
153
+ if ( filesize( $file ) < hmbkp_get_max_attachment_size() ) {
154
 
155
  $message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'The backup file should be attached to this email.', 'hmbkp' ) . "\n\n" . __( 'You can download the backup file by clicking the link below:', 'hmbkp' ) . "\n\n" . '%2$s' . "\n\n" . __( "Kind Regards,\nThe Happy BackUpWordPress Backup Emailing Robot", 'hmbkp' ), home_url(), esc_html( $download ) );
156
 
classes/error.php ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * A singleton to handle the registering, unregistering
5
+ * and storage of errors
6
+ */
7
+ class HMBKP_Errors {
8
+
9
+ /**
10
+ * Store the current instance
11
+ *
12
+ * @access private
13
+ * @var object HMBKP_Errors
14
+ * @static
15
+ */
16
+ private static $instance;
17
+
18
+ /**
19
+ * The array of errors
20
+ *
21
+ * Should be of the format array( __FILE__ => __CLASS__ );
22
+ *
23
+ * @access private
24
+ * @var array
25
+ * @static
26
+ */
27
+ private $errors = array();
28
+
29
+ /**
30
+ * The current schedule object
31
+ *
32
+ * @access private
33
+ * @var object HMBKP_Scheduled_Backup
34
+ */
35
+ private $error;
36
+
37
+ /**
38
+ * Get the current instance
39
+ *
40
+ * @access public
41
+ * @static
42
+ */
43
+ public static function instance() {
44
+
45
+ if ( ! isset( self::$instance ) )
46
+ self::$instance = new HMBKP_Errors;
47
+
48
+ return self::$instance;
49
+
50
+ }
51
+
52
+ /**
53
+ * Get the array of registered errors
54
+ *
55
+ * @access public
56
+ */
57
+ public static function get_errors( HMBKP_Error $error = null ) {
58
+
59
+ if ( is_null( $error ) )
60
+ return self::instance()->errors;
61
+
62
+ self::instance()->error = $error;
63
+
64
+ return array_map( array( self::instance(), 'instantiate' ), self::instance()->errors );
65
+
66
+ }
67
+
68
+ /**
69
+ * Register a new errors
70
+ *
71
+ * @access public
72
+ */
73
+ public static function register( $handle, $classname ) {
74
+
75
+ self::instance()->errors[$handle] = $classname;
76
+
77
+ }
78
+
79
+ /**
80
+ * Unregister an existing errors
81
+ *
82
+ * @access public
83
+ */
84
+ public static function unregister( $handle ) {
85
+
86
+ if ( ! isset( self::instance()->errors[$handle] ) )
87
+ throw new Exception( 'Argument 1 for ' . __METHOD__ . ' must be a registered error' );
88
+
89
+ unset( self::instance()->errors[$handle] );
90
+
91
+ }
92
+
93
+ /**
94
+ * Instantiate the individual error classes
95
+ *
96
+ * @access private
97
+ * @param string $class
98
+ * @return array An array of instantiated classes
99
+ */
100
+ private static function instantiate( $class ) {
101
+
102
+ if ( ! class_exists( $class ) )
103
+ throw new Exception( 'Argument 1 for ' . __METHOD__ . ' must be a valid class' );
104
+
105
+ $$class = new $class;
106
+
107
+ return $$class;
108
+
109
+ }
110
+
111
+ }
112
+
113
+ abstract class HMBKP_Error {
114
+
115
+ public function __construct( $error ) {
116
+
117
+ $this->error = $error;
118
+
119
+ if ( $this->match() )
120
+ return $this->message();
121
+
122
+ return $this->get_error();
123
+
124
+ }
125
+
126
+ protected function get_error() {
127
+ return $this->error;
128
+ }
129
+
130
+ protected function match() {}
131
+
132
+ protected function message() {}
133
+
134
+ }
135
+
136
+ class HMBKP_Disk_Quote_Error() {
137
+
138
+ public function match() {
139
+
140
+ if ( stripos( $this->get_error(), 'disk quota' ) )
141
+ return true;
142
+
143
+ return false;
144
+
145
+ }
146
+
147
+ public function message() {
148
+ return __( 'Your backup could not be completed because you have run out of disk space.', 'hmbkp' );
149
+ }
150
+
151
+ }
classes/schedule.php CHANGED
@@ -250,8 +250,14 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
250
  */
251
  public function get_service_options( $service, $option = null ) {
252
 
253
- if ( ! is_null( $option ) && isset( $this->options[$service][$option] ) )
254
- return $this->options[$service][$option];
 
 
 
 
 
 
255
 
256
  if ( isset( $this->options[$service] ) )
257
  return $this->options[$service];
@@ -632,7 +638,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
632
  $file = $this->get_path() . '/.backup_errors';
633
 
634
  if ( file_exists( $file ) )
635
- unlink( $file );
636
 
637
  if ( ! $handle = @fopen( $file, 'w' ) )
638
  return;
@@ -652,7 +658,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
652
  $file = $this->get_path() . '/.backup_warnings';
653
 
654
  if ( file_exists( $file ) )
655
- unlink( $file );
656
 
657
  if ( ! $handle = @fopen( $file, 'w' ) )
658
  return;
250
  */
251
  public function get_service_options( $service, $option = null ) {
252
 
253
+ if ( ! is_null( $option ) ) {
254
+
255
+ if ( isset( $this->options[$service][$option] ) )
256
+ return $this->options[$service][$option];
257
+
258
+ return array();
259
+
260
+ }
261
 
262
  if ( isset( $this->options[$service] ) )
263
  return $this->options[$service];
638
  $file = $this->get_path() . '/.backup_errors';
639
 
640
  if ( file_exists( $file ) )
641
+ @unlink( $file );
642
 
643
  if ( ! $handle = @fopen( $file, 'w' ) )
644
  return;
658
  $file = $this->get_path() . '/.backup_warnings';
659
 
660
  if ( file_exists( $file ) )
661
+ @unlink( $file );
662
 
663
  if ( ! $handle = @fopen( $file, 'w' ) )
664
  return;
classes/services.php CHANGED
@@ -6,6 +6,12 @@
6
  */
7
  abstract class HMBKP_Service {
8
 
 
 
 
 
 
 
9
  /**
10
  * The instance HMBKP_Backup_Schedule that this service is
11
  * is currently working with
@@ -26,6 +32,11 @@ abstract class HMBKP_Service {
26
  */
27
  abstract protected function field();
28
 
 
 
 
 
 
29
  /**
30
  * Validate and sanitize data before it's saved.
31
  *
6
  */
7
  abstract class HMBKP_Service {
8
 
9
+ /**
10
+ * Human readable name for this service
11
+ * @var string
12
+ */
13
+ public $name;
14
+
15
  /**
16
  * The instance HMBKP_Backup_Schedule that this service is
17
  * is currently working with
32
  */
33
  abstract protected function field();
34
 
35
+ /**
36
+ * Help text that should be output in the Constants help tab
37
+ */
38
+ public static function constant() {}
39
+
40
  /**
41
  * Validate and sanitize data before it's saved.
42
  *
functions/core.php CHANGED
@@ -436,4 +436,22 @@ function hmbkp_constant_changes() {
436
  if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_writable( HMBKP_PATH ) && get_option( 'hmbkp_path' ) === HMBKP_PATH && is_dir( HMBKP_PATH ) )
437
  hmbkp_path_move( HMBKP_PATH, hmbkp_path_default() );
438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
  }
436
  if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_writable( HMBKP_PATH ) && get_option( 'hmbkp_path' ) === HMBKP_PATH && is_dir( HMBKP_PATH ) )
437
  hmbkp_path_move( HMBKP_PATH, hmbkp_path_default() );
438
 
439
+ }
440
+
441
+ /**
442
+ * Get the max email attachment filesize
443
+ *
444
+ * Can be overridden by defining HMBKP_ATTACHMENT_MAX_FILESIZE
445
+ *
446
+ * return int the filesize
447
+ */
448
+ function hmbkp_get_max_attachment_size() {
449
+
450
+ $max_size = '10mb';
451
+
452
+ if ( defined( 'HMBKP_ATTACHMENT_MAX_FILESIZE' ) && wp_convert_hr_to_bytes( HMBKP_ATTACHMENT_MAX_FILESIZE ) )
453
+ $max_size = HMBKP_ATTACHMENT_MAX_FILESIZE;
454
+
455
+ return wp_convert_hr_to_bytes( $max_size );
456
+
457
  }
functions/interface.php CHANGED
@@ -230,7 +230,6 @@ function hmbkp_human_get_type( $type, HMBKP_Scheduled_Backup $schedule = null )
230
 
231
  }
232
 
233
-
234
  /**
235
  * Display the row of actions for a schedule
236
  *
@@ -238,8 +237,11 @@ function hmbkp_human_get_type( $type, HMBKP_Scheduled_Backup $schedule = null )
238
  * @param HMBKP_Scheduled_Backup $schedule
239
  * @return void
240
  */
241
- function hmbkp_schedule_actions( HMBKP_Scheduled_Backup $schedule ) { ?>
242
-
 
 
 
243
  <span class="hmbkp-status"><?php echo $schedule->get_status() ? $schedule->get_status() : __( 'Starting Backup', 'hmbkp' ); ?> <a href="<?php echo add_query_arg( array( 'action' => 'hmbkp_cancel', 'hmbkp_schedule_id' => $schedule->get_id() ), HMBKP_ADMIN_URL ); ?>"><?php _e( 'cancel', 'hmbkp' ); ?></a></span>
244
 
245
  <div class="hmbkp-schedule-actions row-actions">
@@ -254,6 +256,10 @@ function hmbkp_schedule_actions( HMBKP_Scheduled_Backup $schedule ) { ?>
254
 
255
  <a class="delete-action" href="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'hmbkp_delete_schedule', 'hmbkp_schedule_id' => $schedule->get_id() ), HMBKP_ADMIN_URL ), 'hmbkp-delete_schedule' ); ?>"><?php _e( 'Delete', 'hmbkp' ); ?></a>
256
 
 
 
 
 
257
  </div>
258
 
259
  <?php }
230
 
231
  }
232
 
 
233
  /**
234
  * Display the row of actions for a schedule
235
  *
237
  * @param HMBKP_Scheduled_Backup $schedule
238
  * @return void
239
  */
240
+ function hmbkp_schedule_actions( HMBKP_Scheduled_Backup $schedule ) {
241
+
242
+ // Start output buffering
243
+ ob_start(); ?>
244
+
245
  <span class="hmbkp-status"><?php echo $schedule->get_status() ? $schedule->get_status() : __( 'Starting Backup', 'hmbkp' ); ?> <a href="<?php echo add_query_arg( array( 'action' => 'hmbkp_cancel', 'hmbkp_schedule_id' => $schedule->get_id() ), HMBKP_ADMIN_URL ); ?>"><?php _e( 'cancel', 'hmbkp' ); ?></a></span>
246
 
247
  <div class="hmbkp-schedule-actions row-actions">
256
 
257
  <a class="delete-action" href="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'hmbkp_delete_schedule', 'hmbkp_schedule_id' => $schedule->get_id() ), HMBKP_ADMIN_URL ), 'hmbkp-delete_schedule' ); ?>"><?php _e( 'Delete', 'hmbkp' ); ?></a>
258
 
259
+ <?php // capture output
260
+ $output = ob_get_clean();
261
+ echo apply_filters( 'hmbkp_schedule_actions_menu', $output, $schedule ); ?>
262
+
263
  </div>
264
 
265
  <?php }
hm-backup/hm-backup.php CHANGED
@@ -145,9 +145,9 @@ class HM_Backup {
145
  * @static
146
  * @return bool
147
  */
148
- public static function is_safe_mode_active() {
149
 
150
- if ( ( $safe_mode = @ini_get( 'safe_mode' ) ) && strtolower( $safe_mode ) != 'off' )
151
  return true;
152
 
153
  return false;
@@ -167,8 +167,8 @@ class HM_Backup {
167
  if ( self::is_safe_mode_active() )
168
  return false;
169
 
170
- // Is shell_exec disabled?
171
- if ( in_array( 'shell_exec', array_map( 'trim', explode( ',', @ini_get( 'disable_functions' ) ) ) ) )
172
  return false;
173
 
174
  // Can we issue a simple echo command?
@@ -512,7 +512,7 @@ class HM_Backup {
512
 
513
  // Find the one which works
514
  foreach ( $mysqldump_locations as $location )
515
- if ( is_executable( self::conform_dir( $location ) ) )
516
  $this->set_mysqldump_command_path( $location );
517
 
518
  return $this->mysqldump_command_path;
@@ -573,7 +573,7 @@ class HM_Backup {
573
 
574
  // Find the one which works
575
  foreach ( $zip_locations as $location )
576
- if ( is_executable( self::conform_dir( $location ) ) )
577
  $this->set_zip_command_path( $location );
578
 
579
  return $this->zip_command_path;
@@ -656,9 +656,13 @@ class HM_Backup {
656
  // Path to the mysqldump executable
657
  $cmd = escapeshellarg( $this->get_mysqldump_command_path() );
658
 
659
- // No Create DB command
660
  $cmd .= ' --no-create-db';
661
 
 
 
 
 
662
  // Make sure binary data is exported properly
663
  $cmd .= ' --hex-blob';
664
 
@@ -673,7 +677,7 @@ class HM_Backup {
673
  $cmd .= ' -h ' . escapeshellarg( $host );
674
 
675
  // Set the port if it was set
676
- if ( ! empty( $port ) )
677
  $cmd .= ' -P ' . $port;
678
 
679
  // The file we're saving too
@@ -710,6 +714,12 @@ class HM_Backup {
710
 
711
  $this->db = mysql_pconnect( DB_HOST, DB_USER, DB_PASSWORD );
712
 
 
 
 
 
 
 
713
  mysql_select_db( DB_NAME, $this->db );
714
  mysql_set_charset( DB_CHARSET, $this->db );
715
 
@@ -789,7 +799,7 @@ class HM_Backup {
789
  $stderr = shell_exec( 'cd ' . escapeshellarg( $this->get_root() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -rq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ./' . ' 2>&1' );
790
 
791
  // Add the database dump to the archive
792
- if ( $this->get_type() !== 'file' )
793
  $stderr = shell_exec( 'cd ' . escapeshellarg( $this->get_path() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -uq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ' . escapeshellarg( $this->get_database_dump_filename() ) . ' 2>&1' );
794
 
795
  if ( $stderr )
@@ -853,7 +863,7 @@ class HM_Backup {
853
  }
854
 
855
  // Add the database
856
- if ( $this->get_type() !== 'file' )
857
  $zip->addFile( $this->get_database_dump_filepath(), $this->get_database_dump_filename() );
858
 
859
  if ( $zip->status )
@@ -898,7 +908,7 @@ class HM_Backup {
898
  $this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
899
 
900
  // Add the database
901
- if ( $this->get_type() !== 'file' )
902
  if ( ! $archive->add( $this->get_database_dump_filepath(), PCLZIP_OPT_REMOVE_PATH, $this->get_path() ) )
903
  $this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
904
 
@@ -947,16 +957,6 @@ class HM_Backup {
947
  if ( ! empty( $this->archive_verified ) )
948
  return true;
949
 
950
- // Verify using the zip command if possible
951
- if ( $this->get_zip_command_path() && $this->get_archive_method() === 'zip' ) {
952
-
953
- $verify = shell_exec( escapeshellcmd( $this->get_zip_command_path() ) . ' -T ' . escapeshellarg( $this->get_archive_filepath() ) . ' 2> /dev/null' );
954
-
955
- if ( strpos( $verify, 'OK' ) === false )
956
- $this->error( $this->get_archive_method(), $verify );
957
-
958
- }
959
-
960
  // If there are errors delete the backup file.
961
  if ( $this->get_errors( $this->get_archive_method() ) && file_exists( $this->get_archive_filepath() ) )
962
  unlink( $this->get_archive_filepath() );
@@ -1613,7 +1613,7 @@ class HM_Backup {
1613
  * @param string $context
1614
  * @param mixed $error
1615
  */
1616
- private function error( $context, $error ) {
1617
 
1618
  if ( empty( $context ) || empty( $error ) )
1619
  return;
@@ -1682,7 +1682,7 @@ class HM_Backup {
1682
  }
1683
 
1684
  /**
1685
- * Custom error handler for catching errors
1686
  *
1687
  * @access private
1688
  * @param string $type
@@ -1692,6 +1692,7 @@ class HM_Backup {
1692
  */
1693
  public function error_handler( $type ) {
1694
 
 
1695
  if ( ( defined( 'E_DEPRECATED' ) && $type === E_DEPRECATED ) || ( defined( 'E_STRICT' ) && $type === E_STRICT ) || error_reporting() === 0 )
1696
  return false;
1697
 
145
  * @static
146
  * @return bool
147
  */
148
+ public static function is_safe_mode_active( $ini_get_callback = 'ini_get' ) {
149
 
150
+ if ( ( $safe_mode = @call_user_func( $ini_get_callback, 'safe_mode' ) ) && strtolower( $safe_mode ) != 'off' )
151
  return true;
152
 
153
  return false;
167
  if ( self::is_safe_mode_active() )
168
  return false;
169
 
170
+ // Is shell_exec or escapeshellcmd or escapeshellarg disabled?
171
+ if ( array_intersect( array( 'shell_exec', 'escapeshellarg', 'escapeshellcmd' ), array_map( 'trim', explode( ',', @ini_get( 'disable_functions' ) ) ) ) )
172
  return false;
173
 
174
  // Can we issue a simple echo command?
512
 
513
  // Find the one which works
514
  foreach ( $mysqldump_locations as $location )
515
+ if ( @is_executable( self::conform_dir( $location ) ) )
516
  $this->set_mysqldump_command_path( $location );
517
 
518
  return $this->mysqldump_command_path;
573
 
574
  // Find the one which works
575
  foreach ( $zip_locations as $location )
576
+ if ( @is_executable( self::conform_dir( $location ) ) )
577
  $this->set_zip_command_path( $location );
578
 
579
  return $this->zip_command_path;
656
  // Path to the mysqldump executable
657
  $cmd = escapeshellarg( $this->get_mysqldump_command_path() );
658
 
659
+ // We don't want to create a new DB
660
  $cmd .= ' --no-create-db';
661
 
662
+ // Allow lock-tables to be overridden
663
+ if ( defined( 'HMBKP_MYSQLDUMP_SINGLE_TRANSACTION' ) && HMBKP_MYSQLDUMP_SINGLE_TRANSACTION )
664
+ $cmd .= '--single-transaction';
665
+
666
  // Make sure binary data is exported properly
667
  $cmd .= ' --hex-blob';
668
 
677
  $cmd .= ' -h ' . escapeshellarg( $host );
678
 
679
  // Set the port if it was set
680
+ if ( ! empty( $port ) && is_numeric( $port ) )
681
  $cmd .= ' -P ' . $port;
682
 
683
  // The file we're saving too
714
 
715
  $this->db = mysql_pconnect( DB_HOST, DB_USER, DB_PASSWORD );
716
 
717
+ if ( ! $this->db )
718
+ $this->db = mysql_connect( DB_HOST, DB_USER, DB_PASSWORD );
719
+
720
+ if ( ! $this->db )
721
+ return;
722
+
723
  mysql_select_db( DB_NAME, $this->db );
724
  mysql_set_charset( DB_CHARSET, $this->db );
725
 
799
  $stderr = shell_exec( 'cd ' . escapeshellarg( $this->get_root() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -rq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ./' . ' 2>&1' );
800
 
801
  // Add the database dump to the archive
802
+ if ( $this->get_type() !== 'file' && file_exists( $this->get_database_dump_filepath() ) )
803
  $stderr = shell_exec( 'cd ' . escapeshellarg( $this->get_path() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -uq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ' . escapeshellarg( $this->get_database_dump_filename() ) . ' 2>&1' );
804
 
805
  if ( $stderr )
863
  }
864
 
865
  // Add the database
866
+ if ( $this->get_type() !== 'file' && file_exists( $this->get_database_dump_filepath() ) )
867
  $zip->addFile( $this->get_database_dump_filepath(), $this->get_database_dump_filename() );
868
 
869
  if ( $zip->status )
908
  $this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
909
 
910
  // Add the database
911
+ if ( $this->get_type() !== 'file' && file_exists( $this->get_database_dump_filepath() ) )
912
  if ( ! $archive->add( $this->get_database_dump_filepath(), PCLZIP_OPT_REMOVE_PATH, $this->get_path() ) )
913
  $this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
914
 
957
  if ( ! empty( $this->archive_verified ) )
958
  return true;
959
 
 
 
 
 
 
 
 
 
 
 
960
  // If there are errors delete the backup file.
961
  if ( $this->get_errors( $this->get_archive_method() ) && file_exists( $this->get_archive_filepath() ) )
962
  unlink( $this->get_archive_filepath() );
1613
  * @param string $context
1614
  * @param mixed $error
1615
  */
1616
+ public function error( $context, $error ) {
1617
 
1618
  if ( empty( $context ) || empty( $error ) )
1619
  return;
1682
  }
1683
 
1684
  /**
1685
+ * Custom error handler for catching php errors
1686
  *
1687
  * @access private
1688
  * @param string $type
1692
  */
1693
  public function error_handler( $type ) {
1694
 
1695
+ // Skip strict & deprecated warnings
1696
  if ( ( defined( 'E_DEPRECATED' ) && $type === E_DEPRECATED ) || ( defined( 'E_STRICT' ) && $type === E_STRICT ) || error_reporting() === 0 )
1697
  return false;
1698
 
languages/backupwordpress.mo CHANGED
Binary file
languages/backupwordpress.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: BackUpWordPress\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-12 19:17-0000\n"
6
- "PO-Revision-Date: 2013-02-12 19:17-0000\n"
7
- "Last-Translator: Tom Willmot <tom@hmn.md>\n"
8
  "Language-Team: Human Made Limited <support@humanmade.co.uk>\n"
9
  "Language: en_GB\n"
10
  "MIME-Version: 1.0\n"
@@ -24,46 +24,46 @@ msgstr ""
24
  msgid "BackUpWordPress requires WordPress version %s or greater."
25
  msgstr ""
26
 
27
- #: ../plugin.php:142 ../admin/schedule-form.php:54
28
  msgid "Update"
29
  msgstr ""
30
 
31
- #: ../plugin.php:143 ../admin/actions.php:419
32
  msgid "Cancel"
33
  msgstr ""
34
 
35
- #: ../plugin.php:144
36
  msgid ""
37
  "Are you sure you want to delete this schedule? All of it's backups will also "
38
  "be deleted."
39
  msgstr ""
40
 
41
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
42
  msgid "'Cancel' to go back, 'OK' to delete."
43
  msgstr ""
44
 
45
- #: ../plugin.php:145
46
  msgid "Are you sure you want to delete this backup?"
47
  msgstr ""
48
 
49
- #: ../plugin.php:146
50
  msgid "Are you sure you want to remove this exclude rule?"
51
  msgstr ""
52
 
53
- #: ../plugin.php:147
54
  msgid ""
55
  "Reducing the number of backups that are stored on this server will cause "
56
  "some of your existing backups to be deleted, are you sure that's what you "
57
  "want?"
58
  msgstr ""
59
 
60
- #: ../admin/actions.php:194 ../admin/actions.php:197
61
  #: ../functions/interface.php:72 ../functions/interface.php:82
62
  #: ../functions/interface.php:92
63
  msgid "BackUpWordPress has detected a problem."
64
  msgstr ""
65
 
66
- #: ../admin/actions.php:194 ../admin/actions.php:197
67
  #, php-format
68
  msgid ""
69
  "%1$s is returning a %2$s response which could mean cron jobs aren't getting "
@@ -71,62 +71,68 @@ msgid ""
71
  "See the %3$s for more details."
72
  msgstr ""
73
 
74
- #: ../admin/actions.php:277
75
  msgid "Backup type cannot be empty"
76
  msgstr ""
77
 
78
- #: ../admin/actions.php:280
79
  msgid "Invalid backup type"
80
  msgstr ""
81
 
82
- #: ../admin/actions.php:292
83
  msgid "Schedule cannot be empty"
84
  msgstr ""
85
 
86
- #: ../admin/actions.php:295
87
  msgid "Invalid schedule"
88
  msgstr ""
89
 
90
- #: ../admin/actions.php:307
91
  msgid "Max backups can't be empty"
92
  msgstr ""
93
 
94
- #: ../admin/actions.php:310
95
  msgid "Max backups must be a number"
96
  msgstr ""
97
 
98
- #: ../admin/actions.php:313
99
  msgid "Max backups must be greater than 0"
100
  msgstr ""
101
 
102
- #: ../admin/actions.php:415
103
  #, php-format
104
  msgid "%s didn't match any files."
105
  msgstr ""
106
 
107
- #: ../admin/actions.php:419
108
  msgid "Exclude"
109
  msgstr ""
110
 
111
- #: ../admin/actions.php:433
112
- msgid "Your BackUp Failed"
 
 
113
  msgstr ""
114
 
115
- #: ../admin/actions.php:435
 
 
 
 
116
  msgid "Here's the response from the server:"
117
  msgstr ""
118
 
119
- #: ../admin/actions.php:439
120
  #, php-format
121
  msgid ""
122
  "You can email details of this error to %s so they can look into the issue."
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
126
  msgid "Close"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:442
130
  msgid "Email to Support"
131
  msgstr ""
132
 
@@ -157,7 +163,7 @@ msgid ""
157
  "settings. %4$s. Defined %5$s will be highlighted."
158
  msgstr ""
159
 
160
- #: ../admin/constants.php:3 ../admin/menu.php:76
161
  msgid "Constants"
162
  msgstr ""
163
 
@@ -175,7 +181,7 @@ msgstr ""
175
  #: ../admin/constants.php:8 ../admin/constants.php:11
176
  #: ../admin/constants.php:14 ../admin/constants.php:17
177
  #: ../admin/constants.php:20 ../admin/constants.php:23
178
- #: ../admin/constants.php:26 ../admin/constants.php:29
179
  msgid "e.g."
180
  msgstr ""
181
 
@@ -248,19 +254,19 @@ msgid ""
248
  "specific to version %3$s."
249
  msgstr ""
250
 
251
- #: ../admin/menu.php:75
252
  msgid "FAQ"
253
  msgstr ""
254
 
255
- #: ../admin/menu.php:79
256
  msgid "For more information:"
257
  msgstr ""
258
 
259
- #: ../admin/menu.php:81
260
  msgid "Support Forums"
261
  msgstr ""
262
 
263
- #: ../admin/menu.php:82
264
  msgid "Help with translation"
265
  msgstr ""
266
 
@@ -450,107 +456,120 @@ msgstr ""
450
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
451
  msgstr ""
452
 
453
- #: ../classes/email.php:19
454
  msgid "Email notification"
455
  msgstr ""
456
 
457
- #: ../classes/email.php:23
 
458
  msgid ""
459
  "Receive a notification email when a backup completes, if the backup is small "
460
- "enough (&lt; 10mb) then it will be attached to the email. Separate multiple "
461
  "email address's with a comma."
462
  msgstr ""
463
 
464
- #: ../classes/email.php:50
 
 
 
 
 
 
 
465
  #, php-format
466
  msgid "Send an email notification to %s"
467
  msgstr ""
468
 
469
- #: ../classes/email.php:72
470
  #, php-format
471
  msgid "%s isn't a valid email"
472
  msgstr ""
473
 
474
- #: ../classes/email.php:127
475
  #, php-format
476
  msgid "Backup of %s Failed"
477
  msgstr ""
478
 
479
- #: ../classes/email.php:129
480
  #, php-format
481
  msgid "BackUpWordPress was unable to backup your site %1$s."
482
  msgstr ""
483
 
484
- #: ../classes/email.php:129
485
  msgid "Here are the errors that we're encountered:"
486
  msgstr ""
487
 
488
- #: ../classes/email.php:129
489
  #, php-format
490
  msgid ""
491
  "If the errors above look like Martian, forward this email to %3$s and we'll "
492
  "take a look"
493
  msgstr ""
494
 
495
- #: ../classes/email.php:129
496
  msgid ""
497
  "Kind Regards,\n"
498
  "The Apologetic BackUpWordPress Backup Emailing Robot"
499
  msgstr ""
500
 
501
- #: ../classes/email.php:137
502
  #, php-format
503
  msgid "Backup of %s"
504
  msgstr ""
505
 
506
- #: ../classes/email.php:142 ../classes/email.php:151
507
  #, php-format
508
  msgid "BackUpWordPress has completed a backup of your site %1$s."
509
  msgstr ""
510
 
511
- #: ../classes/email.php:142
512
  msgid "The backup file should be attached to this email."
513
  msgstr ""
514
 
515
- #: ../classes/email.php:142 ../classes/email.php:151
516
  msgid "You can download the backup file by clicking the link below:"
517
  msgstr ""
518
 
519
- #: ../classes/email.php:142 ../classes/email.php:151
520
  msgid ""
521
  "Kind Regards,\n"
522
  "The Happy BackUpWordPress Backup Emailing Robot"
523
  msgstr ""
524
 
525
- #: ../classes/email.php:151
526
  msgid "Unfortunately the backup file was too large to attach to this email."
527
  msgstr ""
528
 
529
- #: ../classes/schedule.php:523 ../functions/interface.php:243
 
 
 
 
 
530
  msgid "Starting Backup"
531
  msgstr ""
532
 
533
- #: ../classes/schedule.php:596
534
  #, php-format
535
  msgid "Dumping Database %s"
536
  msgstr ""
537
 
538
- #: ../classes/schedule.php:602
539
  #, php-format
540
  msgid "Verifying Database Dump %s"
541
  msgstr ""
542
 
543
- #: ../classes/schedule.php:608
544
  #, php-format
545
  msgid "Creating zip archive %s"
546
  msgstr ""
547
 
548
- #: ../classes/schedule.php:614
549
  #, php-format
550
  msgid "Verifying Zip Archive %s"
551
  msgstr ""
552
 
553
- #: ../classes/schedule.php:620
554
  msgid "Finishing Backup"
555
  msgstr ""
556
 
@@ -627,7 +646,7 @@ msgstr ""
627
  msgid "Download"
628
  msgstr ""
629
 
630
- #: ../functions/interface.php:28 ../functions/interface.php:255
631
  msgid "Delete"
632
  msgstr ""
633
 
@@ -698,22 +717,18 @@ msgstr ""
698
  msgid "Legacy"
699
  msgstr ""
700
 
701
- #: ../functions/interface.php:243
702
  msgid "cancel"
703
  msgstr ""
704
 
705
- #: ../functions/interface.php:247
706
  msgid "Settings"
707
  msgstr ""
708
 
709
- #: ../functions/interface.php:250
710
  msgid "Excludes"
711
  msgstr ""
712
 
713
- #: ../functions/interface.php:253
714
  msgid "Run now"
715
  msgstr ""
716
-
717
- #: ../hm-backup/hm-backup.php:958
718
- msgid "The following files are unreadable and couldn't be backed up: "
719
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: BackUpWordPress\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-03-26 14:38-0000\n"
6
+ "PO-Revision-Date: 2013-03-26 14:40-0000\n"
7
+ "Last-Translator: Tom Willmot <support@humanmade.co.uk>\n"
8
  "Language-Team: Human Made Limited <support@humanmade.co.uk>\n"
9
  "Language: en_GB\n"
10
  "MIME-Version: 1.0\n"
24
  msgid "BackUpWordPress requires WordPress version %s or greater."
25
  msgstr ""
26
 
27
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
28
  msgid "Update"
29
  msgstr ""
30
 
31
+ #: ../plugin.php:144 ../admin/actions.php:471
32
  msgid "Cancel"
33
  msgstr ""
34
 
35
+ #: ../plugin.php:145
36
  msgid ""
37
  "Are you sure you want to delete this schedule? All of it's backups will also "
38
  "be deleted."
39
  msgstr ""
40
 
41
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
42
  msgid "'Cancel' to go back, 'OK' to delete."
43
  msgstr ""
44
 
45
+ #: ../plugin.php:146
46
  msgid "Are you sure you want to delete this backup?"
47
  msgstr ""
48
 
49
+ #: ../plugin.php:147
50
  msgid "Are you sure you want to remove this exclude rule?"
51
  msgstr ""
52
 
53
+ #: ../plugin.php:148
54
  msgid ""
55
  "Reducing the number of backups that are stored on this server will cause "
56
  "some of your existing backups to be deleted, are you sure that's what you "
57
  "want?"
58
  msgstr ""
59
 
60
+ #: ../admin/actions.php:234 ../admin/actions.php:237
61
  #: ../functions/interface.php:72 ../functions/interface.php:82
62
  #: ../functions/interface.php:92
63
  msgid "BackUpWordPress has detected a problem."
64
  msgstr ""
65
 
66
+ #: ../admin/actions.php:234 ../admin/actions.php:237
67
  #, php-format
68
  msgid ""
69
  "%1$s is returning a %2$s response which could mean cron jobs aren't getting "
71
  "See the %3$s for more details."
72
  msgstr ""
73
 
74
+ #: ../admin/actions.php:318
75
  msgid "Backup type cannot be empty"
76
  msgstr ""
77
 
78
+ #: ../admin/actions.php:321
79
  msgid "Invalid backup type"
80
  msgstr ""
81
 
82
+ #: ../admin/actions.php:333
83
  msgid "Schedule cannot be empty"
84
  msgstr ""
85
 
86
+ #: ../admin/actions.php:336
87
  msgid "Invalid schedule"
88
  msgstr ""
89
 
90
+ #: ../admin/actions.php:348
91
  msgid "Max backups can't be empty"
92
  msgstr ""
93
 
94
+ #: ../admin/actions.php:351
95
  msgid "Max backups must be a number"
96
  msgstr ""
97
 
98
+ #: ../admin/actions.php:354
99
  msgid "Max backups must be greater than 0"
100
  msgstr ""
101
 
102
+ #: ../admin/actions.php:465
103
  #, php-format
104
  msgid "%s didn't match any files."
105
  msgstr ""
106
 
107
+ #: ../admin/actions.php:470
108
  msgid "Exclude"
109
  msgstr ""
110
 
111
+ #: ../admin/actions.php:493
112
+ msgid ""
113
+ "Your backup completed but with the following errors / warnings, it's "
114
+ "probably ok to ignore these."
115
  msgstr ""
116
 
117
+ #: ../admin/actions.php:497
118
+ msgid "Your backup failed"
119
+ msgstr ""
120
+
121
+ #: ../admin/actions.php:501
122
  msgid "Here's the response from the server:"
123
  msgstr ""
124
 
125
+ #: ../admin/actions.php:505
126
  #, php-format
127
  msgid ""
128
  "You can email details of this error to %s so they can look into the issue."
129
  msgstr ""
130
 
131
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
132
  msgid "Close"
133
  msgstr ""
134
 
135
+ #: ../admin/actions.php:509
136
  msgid "Email to Support"
137
  msgstr ""
138
 
163
  "settings. %4$s. Defined %5$s will be highlighted."
164
  msgstr ""
165
 
166
+ #: ../admin/constants.php:3 ../admin/menu.php:79
167
  msgid "Constants"
168
  msgstr ""
169
 
181
  #: ../admin/constants.php:8 ../admin/constants.php:11
182
  #: ../admin/constants.php:14 ../admin/constants.php:17
183
  #: ../admin/constants.php:20 ../admin/constants.php:23
184
+ #: ../admin/constants.php:26 ../admin/constants.php:29 ../classes/email.php:48
185
  msgid "e.g."
186
  msgstr ""
187
 
254
  "specific to version %3$s."
255
  msgstr ""
256
 
257
+ #: ../admin/menu.php:77
258
  msgid "FAQ"
259
  msgstr ""
260
 
261
+ #: ../admin/menu.php:82
262
  msgid "For more information:"
263
  msgstr ""
264
 
265
+ #: ../admin/menu.php:84
266
  msgid "Support Forums"
267
  msgstr ""
268
 
269
+ #: ../admin/menu.php:85
270
  msgid "Help with translation"
271
  msgstr ""
272
 
456
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
457
  msgstr ""
458
 
459
+ #: ../classes/email.php:25
460
  msgid "Email notification"
461
  msgstr ""
462
 
463
+ #: ../classes/email.php:29
464
+ #, php-format
465
  msgid ""
466
  "Receive a notification email when a backup completes, if the backup is small "
467
+ "enough (&lt; %s) then it will be attached to the email. Separate multiple "
468
  "email address's with a comma."
469
  msgstr ""
470
 
471
+ #: ../classes/email.php:48
472
+ #, php-format
473
+ msgid ""
474
+ "The maximum filesize of your backup that will be attached to your "
475
+ "notification emails . Defaults to %s."
476
+ msgstr ""
477
+
478
+ #: ../classes/email.php:63
479
  #, php-format
480
  msgid "Send an email notification to %s"
481
  msgstr ""
482
 
483
+ #: ../classes/email.php:85
484
  #, php-format
485
  msgid "%s isn't a valid email"
486
  msgstr ""
487
 
488
+ #: ../classes/email.php:140
489
  #, php-format
490
  msgid "Backup of %s Failed"
491
  msgstr ""
492
 
493
+ #: ../classes/email.php:142
494
  #, php-format
495
  msgid "BackUpWordPress was unable to backup your site %1$s."
496
  msgstr ""
497
 
498
+ #: ../classes/email.php:142
499
  msgid "Here are the errors that we're encountered:"
500
  msgstr ""
501
 
502
+ #: ../classes/email.php:142
503
  #, php-format
504
  msgid ""
505
  "If the errors above look like Martian, forward this email to %3$s and we'll "
506
  "take a look"
507
  msgstr ""
508
 
509
+ #: ../classes/email.php:142
510
  msgid ""
511
  "Kind Regards,\n"
512
  "The Apologetic BackUpWordPress Backup Emailing Robot"
513
  msgstr ""
514
 
515
+ #: ../classes/email.php:150
516
  #, php-format
517
  msgid "Backup of %s"
518
  msgstr ""
519
 
520
+ #: ../classes/email.php:155 ../classes/email.php:164
521
  #, php-format
522
  msgid "BackUpWordPress has completed a backup of your site %1$s."
523
  msgstr ""
524
 
525
+ #: ../classes/email.php:155
526
  msgid "The backup file should be attached to this email."
527
  msgstr ""
528
 
529
+ #: ../classes/email.php:155 ../classes/email.php:164
530
  msgid "You can download the backup file by clicking the link below:"
531
  msgstr ""
532
 
533
+ #: ../classes/email.php:155 ../classes/email.php:164
534
  msgid ""
535
  "Kind Regards,\n"
536
  "The Happy BackUpWordPress Backup Emailing Robot"
537
  msgstr ""
538
 
539
+ #: ../classes/email.php:164
540
  msgid "Unfortunately the backup file was too large to attach to this email."
541
  msgstr ""
542
 
543
+ #: ../classes/error.php:148
544
+ msgid ""
545
+ "Your backup could not be completed because you have run out of disk space."
546
+ msgstr ""
547
+
548
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
549
  msgid "Starting Backup"
550
  msgstr ""
551
 
552
+ #: ../classes/schedule.php:606
553
  #, php-format
554
  msgid "Dumping Database %s"
555
  msgstr ""
556
 
557
+ #: ../classes/schedule.php:612
558
  #, php-format
559
  msgid "Verifying Database Dump %s"
560
  msgstr ""
561
 
562
+ #: ../classes/schedule.php:618
563
  #, php-format
564
  msgid "Creating zip archive %s"
565
  msgstr ""
566
 
567
+ #: ../classes/schedule.php:624
568
  #, php-format
569
  msgid "Verifying Zip Archive %s"
570
  msgstr ""
571
 
572
+ #: ../classes/schedule.php:630
573
  msgid "Finishing Backup"
574
  msgstr ""
575
 
646
  msgid "Download"
647
  msgstr ""
648
 
649
+ #: ../functions/interface.php:28 ../functions/interface.php:257
650
  msgid "Delete"
651
  msgstr ""
652
 
717
  msgid "Legacy"
718
  msgstr ""
719
 
720
+ #: ../functions/interface.php:245
721
  msgid "cancel"
722
  msgstr ""
723
 
724
+ #: ../functions/interface.php:249
725
  msgid "Settings"
726
  msgstr ""
727
 
728
+ #: ../functions/interface.php:252
729
  msgid "Excludes"
730
  msgstr ""
731
 
732
+ #: ../functions/interface.php:255
733
  msgid "Run now"
734
  msgstr ""
 
 
 
 
languages/hmbkp-cs_CS.mo CHANGED
Binary file
languages/hmbkp-cs_CS.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,35 +10,55 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
14
- msgid "You can email details of this error to %s so they can look into the issue."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
 
 
 
 
17
  #: ../functions/core.php:204
18
  msgid "Once Hourly"
19
- msgstr ""
20
 
21
  #: ../functions/core.php:205
22
  msgid "Twice Daily"
23
- msgstr ""
24
 
25
  #: ../functions/core.php:206
26
  msgid "Once Daily"
27
- msgstr ""
28
 
29
  #: ../functions/core.php:207
30
  msgid "Once Weekly"
31
- msgstr ""
32
 
33
  #: ../functions/core.php:208
34
  msgid "Once Fortnightly"
35
- msgstr ""
36
 
37
  #: ../functions/core.php:209
38
  msgid "Once Monthly"
39
- msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Email na podporu"
44
 
@@ -50,11 +70,7 @@ msgstr "Pokud je pro vás BackUpWordPress užitečný, prosím %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Nové pravidlo pro vyjmutí"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Zálohování selhalo"
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Zde je odpověď serveru:"
60
 
@@ -66,27 +82,27 @@ msgstr "Pokud potřebujete nápovědu k nastavení, pročtěte si nejčastějš
66
  msgid "rate it on the plugin directory"
67
  msgstr "ohodnoťte jej v seznamu zásuvných modulů"
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Spouštím zálohu"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Provádím dump databáze %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Ověřuji dump databáze %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Vytvářím zip archiv %s"
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Ověřuji zip archive %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Dokončuji zálohování"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s je spuštěno v %2$s, kontaktujte poskytovatele stránek a požáde
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Čas, kdy budou zálohy spuštěny. Výchozí je %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Opravdu chcete smazat tento plán záloh? Všechny zálohy provedené tímto plánem budou také smazány."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "Klepněte na 'Zrušit' pro návrat nebo 'OK' pro smazání."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Opravdu chcete smazat tuto zálohu?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Opravdu chcete odebrat toto pravidlo výjimek?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Omezením počtu uložených záloh na serveru dojde ke smazání již existujících záloh. Opravdu chcete akci provést?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "Maximální počet nemůže být prázdný"
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "Maximální počet musí být větší než 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Vyjmout"
136
 
@@ -202,23 +218,19 @@ msgstr "na %2$s ponechat pouze poslední(ch) %1$s záloh(y)"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Zálohovat mých %1$s %2$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Odešle emailem upozornění na proběhlou zálohu. Pokud je záloha malá (&lt; 10MB) bude připojena jako příloha k emailu. Více emailových adres oddělte čárkou."
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "BackupWordPress nebyl schopen provést zálohu vašeho webu %1$s."
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Zde je seznam zjištěných problémů:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "Pokud jsou výše uvedené chyby pro vás nesrozumitelné, přepošlete tento email na %3$s a my se pokusíme zjistit kde je problém"
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,19 +238,19 @@ msgstr ""
226
  "S pozdravem,\n"
227
  "robot aplikace BackupWordPress "
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "BackupWordPress dokončil zálohu vašeho webu %1$s."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "Záloha bude připojena jako příloha k tomuto emailu."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "Zálohu si můžete stáhnout klepnutím na odkaz níže:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
@@ -246,7 +258,7 @@ msgstr ""
246
  "S pozdravem,\n"
247
  "robot aplikace BackupWordPress "
248
 
249
- #: ../classes/email.php:151
250
  msgid "Unfortunately the backup file was too large to attach to this email."
251
  msgstr "Bohužel je záloha tak velká, že nemůže být přiložena k emailu."
252
 
@@ -294,15 +306,15 @@ msgstr "Adresář pro zálohování nelze vytvořit, protože do vašeho adresá
294
  msgid "BackUpWordPress has setup your default schedules."
295
  msgstr "BackUpWordPress nastavil výchozí plán pro zálohování."
296
 
297
- #: ../classes/email.php:127
298
  msgid "Backup of %s Failed"
299
  msgstr "Záloha %s selhala"
300
 
301
- #: ../classes/email.php:50
302
  msgid "Send an email notification to %s"
303
  msgstr "Odeslat upozornění emailem na %s"
304
 
305
- #: ../classes/email.php:72
306
  msgid "%s isn't a valid email"
307
  msgstr "%s není platná emailová adresa"
308
 
@@ -310,7 +322,7 @@ msgstr "%s není platná emailová adresa"
310
  msgid "Backups will be compressed and should be smaller than this."
311
  msgstr "Záloha bude komprimována a velikost bude menší než tato."
312
 
313
- #: ../classes/email.php:19
314
  msgid "Email notification"
315
  msgstr "Upozornění emailem"
316
 
@@ -330,7 +342,7 @@ msgstr "Počet záloh uložených na tomto serveru"
330
  msgid "Schedule Settings"
331
  msgstr "Nastavení plánu záloh"
332
 
333
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
334
  msgid "Close"
335
  msgstr "Zavřít"
336
 
@@ -354,7 +366,7 @@ msgstr "Cesta k %1$s. Pokud je dostupný, bude použit pro komprimaci vašich %2
354
  msgid "BackUpWordPress requires WordPress version %s or greater."
355
  msgstr "BackuWordPress vyžaduje WordPress verze %s nebo vyšší."
356
 
357
- #: ../plugin.php:143 ../admin/actions.php:419
358
  msgid "Cancel"
359
  msgstr "Zrušit"
360
 
@@ -365,7 +377,7 @@ msgstr "Cesta k spustitelnému souboru %1$s. Pokud je dostupný, bude použit pr
365
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
366
  #: ../admin/constants.php:17 ../admin/constants.php:20
367
  #: ../admin/constants.php:23 ../admin/constants.php:26
368
- #: ../admin/constants.php:29
369
  msgid "e.g."
370
  msgstr "např."
371
 
@@ -373,13 +385,13 @@ msgstr "např."
373
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
374
  msgstr ""
375
 
376
- #: ../admin/actions.php:194 ../admin/actions.php:197
377
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
378
  msgstr "%1$s vrací odpověď %2$s což může znamena, že cron úloha nebyla správně spuštěna. BackUpWordPress používá wp-cron pro spuštění naplánovaných záloh. Více detailů najdete na %3$s."
379
 
380
  #: ../functions/interface.php:72
381
  msgid "http://php.net/manual/en/features.safe-mode.php"
382
- msgstr ""
383
 
384
  #: ../functions/interface.php:72
385
  msgid "Safe Mode"
@@ -393,15 +405,15 @@ msgstr "Vámi zvolený adresář pro zálohy %1$s neexistuje a nelze jej vytvoř
393
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
394
  msgstr "Do vámi zvoleného adresáře pro zálohy %1$s nelze zapisovat, zálohy se budou ukládat do %2$s."
395
 
396
- #: ../functions/interface.php:243
397
  msgid "cancel"
398
  msgstr "zrušit"
399
 
400
- #: ../functions/interface.php:247
401
  msgid "Settings"
402
  msgstr "Nastavení"
403
 
404
- #: ../functions/interface.php:250
405
  msgid "Excludes"
406
  msgstr "Vyjímky"
407
 
@@ -425,37 +437,33 @@ msgstr "Databáze a soubory"
425
  msgid "Database"
426
  msgstr "Databáze"
427
 
428
- #: ../hm-backup/hm-backup.php:958
429
- msgid "The following files are unreadable and couldn't be backed up: "
430
- msgstr "Následující soubory jsou nečitelné a nelze je zazálohovat:"
431
-
432
- #: ../admin/actions.php:194 ../admin/actions.php:197
433
  #: ../functions/interface.php:72 ../functions/interface.php:82
434
  #: ../functions/interface.php:92
435
  msgid "BackUpWordPress has detected a problem."
436
  msgstr "BackUpWordPress detekoval problém."
437
 
438
- #: ../admin/actions.php:277
439
  msgid "Backup type cannot be empty"
440
  msgstr "Typ zálohy nemůže být prázdný"
441
 
442
- #: ../admin/actions.php:280
443
  msgid "Invalid backup type"
444
  msgstr "Neplatný typ zálohy"
445
 
446
- #: ../admin/actions.php:292
447
  msgid "Schedule cannot be empty"
448
  msgstr "Čas zálohy nemůže být prázdný"
449
 
450
- #: ../admin/actions.php:295
451
  msgid "Invalid schedule"
452
  msgstr "Neplatný čas pro zálohu"
453
 
454
- #: ../admin/actions.php:310
455
  msgid "Max backups must be a number"
456
  msgstr "Počet záloh musí být číslo"
457
 
458
- #: ../admin/actions.php:415
459
  msgid "%s didn't match any files."
460
  msgstr "%s nenalezl žádné soubory."
461
 
@@ -515,23 +523,23 @@ msgstr "Zálohy"
515
  msgid "You are not using the latest stable version of BackUpWordPress"
516
  msgstr "Nepoužíváte poslední stabilní verzi zásuvného modulu BackUpWordPress"
517
 
518
- #: ../admin/menu.php:75
519
  msgid "FAQ"
520
  msgstr "FAQ"
521
 
522
- #: ../admin/constants.php:3 ../admin/menu.php:76
523
  msgid "Constants"
524
  msgstr "Konstanty"
525
 
526
- #: ../admin/menu.php:79
527
  msgid "For more information:"
528
  msgstr "Více informace najdete na:"
529
 
530
- #: ../admin/menu.php:81
531
  msgid "Support Forums"
532
  msgstr "Fórum pro podporu"
533
 
534
- #: ../admin/menu.php:82
535
  msgid "Help with translation"
536
  msgstr "Pomoc s překladem"
537
 
@@ -599,7 +607,7 @@ msgstr "Správa vyjímek"
599
  msgid "Schedule"
600
  msgstr "Plán záloh"
601
 
602
- #: ../plugin.php:142 ../admin/schedule-form.php:54
603
  msgid "Update"
604
  msgstr "Aktualizovat"
605
 
@@ -607,11 +615,11 @@ msgstr "Aktualizovat"
607
  msgid "hourly at %s minutes past the hour"
608
  msgstr "každou hodinu %s minut po celé"
609
 
610
- #: ../functions/interface.php:253
611
  msgid "Run now"
612
  msgstr "Spustit nyní"
613
 
614
- #: ../functions/interface.php:28 ../functions/interface.php:255
615
  msgid "Delete"
616
  msgstr "Smazat"
617
 
@@ -619,7 +627,7 @@ msgstr "Smazat"
619
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
620
  msgstr "BackUpWordPress vyžaduje verzi PHP 5.2.4 nebo vyšší."
621
 
622
- #: ../classes/email.php:137
623
  msgid "Backup of %s"
624
  msgstr "Záloha webu %s"
625
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
  msgstr ""
32
 
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr "Detaily této chyby můžete poslat emailem na adresu %s a pokusíme se zjistit příčiny."
36
+
37
  #: ../functions/core.php:204
38
  msgid "Once Hourly"
39
+ msgstr "Jednou za hodinu"
40
 
41
  #: ../functions/core.php:205
42
  msgid "Twice Daily"
43
+ msgstr "Dvakrát denně"
44
 
45
  #: ../functions/core.php:206
46
  msgid "Once Daily"
47
+ msgstr "Jednou denně"
48
 
49
  #: ../functions/core.php:207
50
  msgid "Once Weekly"
51
+ msgstr "Jednou za týden"
52
 
53
  #: ../functions/core.php:208
54
  msgid "Once Fortnightly"
55
+ msgstr "Jednou za čtrnáct dnů"
56
 
57
  #: ../functions/core.php:209
58
  msgid "Once Monthly"
59
+ msgstr "Jednou měsíčně"
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Email na podporu"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Nové pravidlo pro vyjmutí"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Zde je odpověď serveru:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "ohodnoťte jej v seznamu zásuvných modulů"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Spouštím zálohu"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Provádím dump databáze %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Ověřuji dump databáze %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Vytvářím zip archiv %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Ověřuji zip archive %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Dokončuji zálohování"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Čas, kdy budou zálohy spuštěny. Výchozí je %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Opravdu chcete smazat tento plán záloh? Všechny zálohy provedené tímto plánem budou také smazány."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "Klepněte na 'Zrušit' pro návrat nebo 'OK' pro smazání."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Opravdu chcete smazat tuto zálohu?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Opravdu chcete odebrat toto pravidlo výjimek?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Omezením počtu uložených záloh na serveru dojde ke smazání již existujících záloh. Opravdu chcete akci provést?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "Maximální počet nemůže být prázdný"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "Maximální počet musí být větší než 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Vyjmout"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Zálohovat mých %1$s %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "BackupWordPress nebyl schopen provést zálohu vašeho webu %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Zde je seznam zjištěných problémů:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "Pokud jsou výše uvedené chyby pro vás nesrozumitelné, přepošlete tento email na %3$s a my se pokusíme zjistit kde je problém"
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "S pozdravem,\n"
239
  "robot aplikace BackupWordPress "
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "BackupWordPress dokončil zálohu vašeho webu %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "Záloha bude připojena jako příloha k tomuto emailu."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "Zálohu si můžete stáhnout klepnutím na odkaz níže:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
258
  "S pozdravem,\n"
259
  "robot aplikace BackupWordPress "
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
  msgstr "Bohužel je záloha tak velká, že nemůže být přiložena k emailu."
264
 
306
  msgid "BackUpWordPress has setup your default schedules."
307
  msgstr "BackUpWordPress nastavil výchozí plán pro zálohování."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
  msgstr "Záloha %s selhala"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
  msgstr "Odeslat upozornění emailem na %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
  msgstr "%s není platná emailová adresa"
320
 
322
  msgid "Backups will be compressed and should be smaller than this."
323
  msgstr "Záloha bude komprimována a velikost bude menší než tato."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
  msgstr "Upozornění emailem"
328
 
342
  msgid "Schedule Settings"
343
  msgstr "Nastavení plánu záloh"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
  msgstr "Zavřít"
348
 
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
  msgstr "BackuWordPress vyžaduje WordPress verze %s nebo vyšší."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
  msgstr "Zrušit"
372
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
  msgstr "např."
383
 
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
  msgstr ""
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
  msgstr "%1$s vrací odpověď %2$s což může znamena, že cron úloha nebyla správně spuštěna. BackUpWordPress používá wp-cron pro spuštění naplánovaných záloh. Více detailů najdete na %3$s."
391
 
392
  #: ../functions/interface.php:72
393
  msgid "http://php.net/manual/en/features.safe-mode.php"
394
+ msgstr "http://php.net/manual/en/features.safe-mode.php"
395
 
396
  #: ../functions/interface.php:72
397
  msgid "Safe Mode"
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
  msgstr "Do vámi zvoleného adresáře pro zálohy %1$s nelze zapisovat, zálohy se budou ukládat do %2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
  msgstr "zrušit"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
  msgstr "Nastavení"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
  msgstr "Vyjímky"
419
 
437
  msgid "Database"
438
  msgstr "Databáze"
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
  msgstr "BackUpWordPress detekoval problém."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
  msgstr "Typ zálohy nemůže být prázdný"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
  msgstr "Neplatný typ zálohy"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
  msgstr "Čas zálohy nemůže být prázdný"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
  msgstr "Neplatný čas pro zálohu"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
  msgstr "Počet záloh musí být číslo"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
  msgstr "%s nenalezl žádné soubory."
469
 
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
  msgstr "Nepoužíváte poslední stabilní verzi zásuvného modulu BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
  msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
  msgstr "Konstanty"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
  msgstr "Více informace najdete na:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
  msgstr "Fórum pro podporu"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
  msgstr "Pomoc s překladem"
545
 
607
  msgid "Schedule"
608
  msgstr "Plán záloh"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
  msgstr "Aktualizovat"
613
 
615
  msgid "hourly at %s minutes past the hour"
616
  msgstr "každou hodinu %s minut po celé"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
  msgstr "Spustit nyní"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
  msgstr "Smazat"
625
 
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
  msgstr "BackUpWordPress vyžaduje verzi PHP 5.2.4 nebo vyšší."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
  msgstr "Záloha webu %s"
633
 
languages/hmbkp-da_DA.mo CHANGED
Binary file
languages/hmbkp-da_DA.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,35 +10,55 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
14
- msgid "You can email details of this error to %s so they can look into the issue."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
 
 
 
 
17
  #: ../functions/core.php:204
18
  msgid "Once Hourly"
19
- msgstr ""
20
 
21
  #: ../functions/core.php:205
22
  msgid "Twice Daily"
23
- msgstr ""
24
 
25
  #: ../functions/core.php:206
26
  msgid "Once Daily"
27
- msgstr ""
28
 
29
  #: ../functions/core.php:207
30
  msgid "Once Weekly"
31
- msgstr ""
32
 
33
  #: ../functions/core.php:208
34
  msgid "Once Fortnightly"
35
- msgstr ""
36
 
37
  #: ../functions/core.php:209
38
  msgid "Once Monthly"
39
- msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Send e-mail til support"
44
 
@@ -50,11 +70,7 @@ msgstr "Hvis du synes, BackUpWordPress er godt, så %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Nye eksluderingsregler"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Der opstod en fejl ved sikkerhedskopiering."
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Her er svaret fra serveren:"
60
 
@@ -66,27 +82,27 @@ msgstr "Hvis du har brug for hjælp til at få tingene til at virke, så kig i F
66
  msgid "rate it on the plugin directory"
67
  msgstr "giv den karakter i plugin-oversigten."
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Starter sikkerhedskopiering"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Gemmer database %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Kontroller database-kopi %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Opretter zip-arkiv %s"
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Kontrollerer zip-arkiv %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Afslutter sikkerhedskopiering"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s kører i %2$s. Kontakt venligst dit webhotel og bed dem slå det fr
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Det tidspunkt dine planlagt sikkerhedskopieringer skal foretages på. Standard er %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Er du sikker på, at du vil slette denne planlagte sikkerhedskopiering? Alle dens sikkerhedskopier vil også blive slettet."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "'Annuller' for at få tilbage, 'OK' for at slette."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Er du sikker på, at du vil slette denne sikkerhedskopi."
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Er du sikker på, at du vil fjerne denne ekskluderingsregel?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Hvis du begrænser antallet af sikkerhedskopier, der gemmes på denne server, vil nogle af de eksisterende sikkerhedskopier blive slettet. Er du sikker på, at det er det, du vil?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "Maksimalt antal sikkerhedskopier kan ikke være tomt."
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "Maksimalt antal sikkerhedskopier skal være større end 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Ekskludér"
136
 
@@ -172,453 +188,449 @@ msgstr "ugentligt på %1$s klokken %2$s"
172
 
173
  #: ../admin/schedule.php:49
174
  msgid "fortnightly on %1$s at %2$s"
175
- msgstr ""
176
 
177
  #: ../admin/schedule.php:56
178
  msgid "on the %1$s of each month at %2$s"
179
- msgstr ""
180
 
181
  #: ../admin/schedule.php:62
182
  msgid "manually"
183
- msgstr ""
184
 
185
  #: ../admin/schedule.php:68
186
  msgid "this server"
187
- msgstr ""
188
 
189
  #: ../admin/schedule.php:75
190
  msgid "store the only the last backup on %s"
191
- msgstr ""
192
 
193
  #: ../admin/schedule.php:81
194
  msgid "don't store any backups on %s"
195
- msgstr ""
196
 
197
  #: ../admin/schedule.php:87
198
  msgid "store only the last %1$s backups on %2$s"
199
- msgstr ""
200
 
201
  #: ../admin/schedule.php:96
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
- msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
- msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
- msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
- msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
 
 
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
- msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
- msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
- msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
 
 
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
- msgstr ""
248
 
249
  #: ../classes/wp-cli.php:19
250
  msgid "Backup: Dumping database..."
251
- msgstr ""
252
 
253
  #: ../classes/wp-cli.php:23
254
  msgid "Backup: Zipping everything up..."
255
- msgstr ""
256
 
257
  #: ../classes/wp-cli.php:38
258
  msgid "Invalid backup path"
259
- msgstr ""
260
 
261
  #: ../classes/wp-cli.php:43
262
  msgid "Invalid root path"
263
- msgstr ""
264
 
265
  #: ../classes/wp-cli.php:68
266
  msgid "Backup Complete: "
267
- msgstr ""
268
 
269
  #: ../classes/wp-cli.php:71
270
  msgid "Backup Failed"
271
- msgstr ""
272
 
273
  #: ../functions/core.php:189
274
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
275
- msgstr ""
276
 
277
  #: ../functions/interface.php:229
278
  msgid "Legacy"
279
- msgstr ""
280
 
281
  #: ../functions/interface.php:62
282
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
283
- msgstr ""
284
 
285
  #: ../functions/interface.php:50
286
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
287
- msgstr ""
288
 
289
  #: ../functions/core.php:189
290
  msgid "BackUpWordPress has setup your default schedules."
291
- msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
- msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
- msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
- msgstr ""
304
 
305
  #: ../admin/schedule.php:4
306
  msgid "Backups will be compressed and should be smaller than this."
307
- msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
- msgstr ""
312
 
313
  #: ../admin/schedule.php:19
314
  msgid "hourly on the hour"
315
- msgstr ""
316
 
317
  #: ../admin/schedule.php:25
318
  msgid "daily at %s"
319
- msgstr ""
320
 
321
  #: ../admin/schedule-form.php:41
322
  msgid "Number of backups to store on this server"
323
- msgstr ""
324
 
325
  #: ../admin/schedule-form.php:7
326
  msgid "Schedule Settings"
327
- msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
- msgstr ""
332
 
333
  #: ../admin/menu.php:69
334
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
335
- msgstr ""
336
 
337
  #: ../admin/constants.php:26
338
  msgid "The root directory that is backed up. Defaults to %s."
339
- msgstr ""
340
 
341
  #: ../admin/constants.php:23
342
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
343
- msgstr ""
344
 
345
  #: ../admin/constants.php:14
346
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
347
- msgstr ""
348
 
349
  #: ../plugin.php:77
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
- msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
- msgstr ""
356
 
357
  #: ../admin/constants.php:11
358
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
359
- msgstr ""
360
 
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
- msgstr ""
367
 
368
  #: ../admin/constants.php:3
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
- msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
- msgstr ""
375
 
376
  #: ../functions/interface.php:72
377
  msgid "http://php.net/manual/en/features.safe-mode.php"
378
- msgstr ""
379
 
380
  #: ../functions/interface.php:72
381
  msgid "Safe Mode"
382
- msgstr ""
383
 
384
  #: ../functions/interface.php:82
385
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
386
- msgstr ""
387
 
388
  #: ../functions/interface.php:92
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
- msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
- msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
- msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
- msgstr ""
403
 
404
  #: ../functions/interface.php:27
405
  msgid "Download"
406
- msgstr ""
407
 
408
  #: ../functions/interface.php:50 ../functions/interface.php:62
409
  msgid "BackUpWordPress is almost ready."
410
- msgstr ""
411
 
412
  #: ../functions/interface.php:102
413
  msgid "BackUpWordPress detected issues with your last backup."
414
- msgstr ""
415
 
416
  #: ../functions/interface.php:218
417
  msgid "Database and Files"
418
- msgstr ""
419
 
420
  #: ../functions/interface.php:224
421
  msgid "Database"
422
- msgstr ""
423
-
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
 
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
- msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
- msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
- msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
- msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
- msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
- msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
- msgstr ""
457
 
458
  #: ../admin/backups.php:13
459
  msgid "add schedule"
460
- msgstr ""
461
 
462
  #: ../admin/backups.php:37
463
  msgid "Size"
464
- msgstr ""
465
 
466
  #: ../admin/backups.php:38
467
  msgid "Type"
468
- msgstr ""
469
 
470
  #: ../admin/backups.php:39
471
  msgid "Actions"
472
- msgstr ""
473
 
474
  #: ../admin/backups.php:64
475
  msgid "This is where your backups will appear once you have one."
476
- msgstr ""
477
 
478
  #: ../admin/constants.php:3
479
  msgid "The Codex can help"
480
- msgstr ""
481
 
482
  #: ../admin/constants.php:8
483
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
484
- msgstr ""
485
 
486
  #: ../admin/constants.php:11 ../admin/constants.php:14
487
  msgid "database"
488
- msgstr ""
489
 
490
  #: ../admin/constants.php:14
491
  msgid "files"
492
- msgstr ""
493
 
494
  #: ../admin/constants.php:17
495
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
496
- msgstr ""
497
 
498
  #: ../admin/constants.php:20
499
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
500
- msgstr ""
501
 
502
  #: ../admin/menu.php:10 ../admin/page.php:5
503
  msgid "Manage Backups"
504
- msgstr ""
505
 
506
  #: ../admin/menu.php:10 ../admin/menu.php:34
507
  msgid "Backups"
508
- msgstr ""
509
 
510
  #: ../admin/menu.php:69
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
- msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
- msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
- msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
- msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
- msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
- msgstr ""
533
 
534
  #: ../admin/page.php:13
535
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
536
- msgstr ""
537
 
538
  #: ../admin/schedule-form-excludes.php:19
539
  msgid "Preview"
540
- msgstr ""
541
 
542
  #: ../admin/schedule-form-excludes.php:29
543
  msgid "Exclude Rules"
544
- msgstr ""
545
 
546
  #: ../admin/schedule-form-excludes.php:52
547
  msgid "Remove"
548
- msgstr ""
549
 
550
  #: ../admin/schedule-form-excludes.php:71
551
  msgid "Excluded"
552
- msgstr ""
553
 
554
  #: ../admin/schedule-form-excludes.php:75
555
  msgid "Included"
556
- msgstr ""
557
 
558
  #: ../admin/schedule-form-excludes.php:79
559
  msgid "Unreadable"
560
- msgstr ""
561
 
562
  #: ../admin/schedule-form-excludes.php:107
563
  msgid "Unreadable files can't be backed up"
564
- msgstr ""
565
 
566
  #: ../admin/schedule-form-excludes.php:113
567
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
568
- msgstr ""
569
 
570
  #: ../admin/schedule-form.php:11
571
  msgid "Backup"
572
- msgstr ""
573
 
574
  #: ../admin/schedule-form.php:14
575
  msgid "Both Database &amp; files"
576
- msgstr ""
577
 
578
  #: ../admin/schedule-form.php:15
579
  msgid "Files only"
580
- msgstr ""
581
 
582
  #: ../admin/schedule-form.php:16
583
  msgid "Database only"
584
- msgstr ""
585
 
586
  #: ../functions/interface.php:221
587
  msgid "Files"
588
- msgstr ""
589
 
590
  #: ../admin/schedule-form-excludes.php:7
591
  msgid "Manage Excludes"
592
- msgstr ""
593
 
594
  #: ../admin/schedule-form.php:23
595
  msgid "Schedule"
596
- msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
- msgstr ""
601
 
602
  #: ../admin/schedule.php:19
603
  msgid "hourly at %s minutes past the hour"
604
- msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
- msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
- msgstr ""
613
 
614
  #: ../plugin.php:66
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
- msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
- msgstr ""
621
 
622
  #: ../functions/core.php:288
623
  msgid "This %s file ensures that other people cannot download your backup files."
624
- msgstr ""
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
  msgstr ""
32
 
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr "Du kan sende detaljer om denne fejl til %s, så de kan undersøge sagen nærmere."
36
+
37
  #: ../functions/core.php:204
38
  msgid "Once Hourly"
39
+ msgstr "En gang i timen"
40
 
41
  #: ../functions/core.php:205
42
  msgid "Twice Daily"
43
+ msgstr "To gange dagligt"
44
 
45
  #: ../functions/core.php:206
46
  msgid "Once Daily"
47
+ msgstr "En gang dagligt"
48
 
49
  #: ../functions/core.php:207
50
  msgid "Once Weekly"
51
+ msgstr "En gang om ugen"
52
 
53
  #: ../functions/core.php:208
54
  msgid "Once Fortnightly"
55
+ msgstr "En gang hver anden uge"
56
 
57
  #: ../functions/core.php:209
58
  msgid "Once Monthly"
59
+ msgstr "En gang om måneden"
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Send e-mail til support"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Nye eksluderingsregler"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Her er svaret fra serveren:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "giv den karakter i plugin-oversigten."
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Starter sikkerhedskopiering"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Gemmer database %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Kontroller database-kopi %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Opretter zip-arkiv %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Kontrollerer zip-arkiv %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Afslutter sikkerhedskopiering"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Det tidspunkt dine planlagt sikkerhedskopieringer skal foretages på. Standard er %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Er du sikker på, at du vil slette denne planlagte sikkerhedskopiering? Alle dens sikkerhedskopier vil også blive slettet."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "'Annuller' for at få tilbage, 'OK' for at slette."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Er du sikker på, at du vil slette denne sikkerhedskopi."
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Er du sikker på, at du vil fjerne denne ekskluderingsregel?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Hvis du begrænser antallet af sikkerhedskopier, der gemmes på denne server, vil nogle af de eksisterende sikkerhedskopier blive slettet. Er du sikker på, at det er det, du vil?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "Maksimalt antal sikkerhedskopier kan ikke være tomt."
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "Maksimalt antal sikkerhedskopier skal være større end 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Ekskludér"
152
 
188
 
189
  #: ../admin/schedule.php:49
190
  msgid "fortnightly on %1$s at %2$s"
191
+ msgstr "Hver anden uge på %1$s klokken %2$s"
192
 
193
  #: ../admin/schedule.php:56
194
  msgid "on the %1$s of each month at %2$s"
195
+ msgstr "Den %1$s. hver måned klokken %2$s"
196
 
197
  #: ../admin/schedule.php:62
198
  msgid "manually"
199
+ msgstr "manuelt"
200
 
201
  #: ../admin/schedule.php:68
202
  msgid "this server"
203
+ msgstr "denne server"
204
 
205
  #: ../admin/schedule.php:75
206
  msgid "store the only the last backup on %s"
207
+ msgstr "gem kun den seneste sikkerhedskopi på %s"
208
 
209
  #: ../admin/schedule.php:81
210
  msgid "don't store any backups on %s"
211
+ msgstr "Gem ingen sikkerhedskopier på %s"
212
 
213
  #: ../admin/schedule.php:87
214
  msgid "store only the last %1$s backups on %2$s"
215
+ msgstr "gem kun de seneste %1$s sikkerhedskopier på %2$s"
216
 
217
  #: ../admin/schedule.php:96
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
+ msgstr "Sikkerhedskopiér min %1$s %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
+ msgstr "BackUpWordPress kunne ikke sikkerhedskopiere dit websted %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
+ msgstr "Her er de fejl, der opstod:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
+ msgstr "Hvis fejlene ovenfor ligner volapyk, så send denne e-mail til %3$s, så kigger vi på det."
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
+ "Med venlig hilsen\n"
239
+ "Den beklagende BackUpWordPress sikkerhedskopi-email-robot"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
+ msgstr "BackUpWordPress har fuldført sikkerhedskopiering af dit websted %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
+ msgstr "Sikkerhedskopien er vedhæftet denne e-mail."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
+ msgstr "Du kan hente sikkerhedskopien ved at klikke på linket herunder:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
257
  msgstr ""
258
+ "Med venlig hilsen\n"
259
+ "Den glade BackupWordPress sikkerhedskopi-email-robot"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
+ msgstr "Desværre var sikkerhedskopien for stor til at vedhæfte denne e-mail."
264
 
265
  #: ../classes/wp-cli.php:19
266
  msgid "Backup: Dumping database..."
267
+ msgstr "Sikkerhedskopiering: Eksporterer database..."
268
 
269
  #: ../classes/wp-cli.php:23
270
  msgid "Backup: Zipping everything up..."
271
+ msgstr "Sikkerhedskopieringen: Pakker det hele i en zip-fil..."
272
 
273
  #: ../classes/wp-cli.php:38
274
  msgid "Invalid backup path"
275
+ msgstr "Ugyldig sti til sikkerhedskopi"
276
 
277
  #: ../classes/wp-cli.php:43
278
  msgid "Invalid root path"
279
+ msgstr "Ugyldig rodmappe."
280
 
281
  #: ../classes/wp-cli.php:68
282
  msgid "Backup Complete: "
283
+ msgstr "Sikkerhedskopiering fuldført:"
284
 
285
  #: ../classes/wp-cli.php:71
286
  msgid "Backup Failed"
287
+ msgstr "Sikkerhedskopiering fejlede."
288
 
289
  #: ../functions/core.php:189
290
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
291
+ msgstr "Som udgangspunkt sikkerhedskopierer BackUpWordPress din database dagligt, og din database &amp; dine filer ugentligt. Du kan ændre disse indstillinger."
292
 
293
  #: ../functions/interface.php:229
294
  msgid "Legacy"
295
+ msgstr "Tidligere"
296
 
297
  #: ../functions/interface.php:62
298
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
299
+ msgstr "Der kan ikke oprettes filer i mappen til sikkerhedskopier. Kør %1$s eller %2$s eller tildel selv rettigheder."
300
 
301
  #: ../functions/interface.php:50
302
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
303
+ msgstr "Mappen til sikkerhedskopier kan ikke oprettes, fordi mappen %1$s ikke er skrivbar. Kør %2$s eller %3$s eller opret mappen selv."
304
 
305
  #: ../functions/core.php:189
306
  msgid "BackUpWordPress has setup your default schedules."
307
+ msgstr "BackUpWordPress har konfigureret din tidsplaner."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
+ msgstr "Sikkerhedskopiering af %s fejlede."
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
+ msgstr "Send en notifikation via e-mail til %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
+ msgstr "%s er ikke en gyldig e-mail-adresse."
320
 
321
  #: ../admin/schedule.php:4
322
  msgid "Backups will be compressed and should be smaller than this."
323
+ msgstr "Sikkerhedskopier komprimeres, så de bør blive mindre end dette."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
+ msgstr "Notifikation via e-mail"
328
 
329
  #: ../admin/schedule.php:19
330
  msgid "hourly on the hour"
331
+ msgstr "Hver hele time"
332
 
333
  #: ../admin/schedule.php:25
334
  msgid "daily at %s"
335
+ msgstr "dagligt klokken %s"
336
 
337
  #: ../admin/schedule-form.php:41
338
  msgid "Number of backups to store on this server"
339
+ msgstr "Antal sikkerhedskopier der skal gemmes på denne server"
340
 
341
  #: ../admin/schedule-form.php:7
342
  msgid "Schedule Settings"
343
+ msgstr "Indstilling af tidsplan"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
+ msgstr "Luk"
348
 
349
  #: ../admin/menu.php:69
350
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
351
+ msgstr "Informationen herunder gælder version %1$s. Kig i filen %2$s for at få hjælp der passer til version %3$s."
352
 
353
  #: ../admin/constants.php:26
354
  msgid "The root directory that is backed up. Defaults to %s."
355
+ msgstr "Rodmappen, der skal sikkerhedskopieres. Standard er %s."
356
 
357
  #: ../admin/constants.php:23
358
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
359
+ msgstr "Den egenskab der skal bruges, når %1$s kaldes. Standard er %2$s."
360
 
361
  #: ../admin/constants.php:14
362
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
363
+ msgstr "Stien til kommandofilen for %1$s. Den bliver brugt til at zippe dine %2$s og %3$s, hvis tilgængelig."
364
 
365
  #: ../plugin.php:77
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
+ msgstr "BackUpWordPress kræver WordPress version %s eller nyere."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
+ msgstr "Annuller"
372
 
373
  #: ../admin/constants.php:11
374
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
375
+ msgstr "Stien til din %1$s kommandofil. Den bliver brugt til %2s-delen af sikkerhedskopieringen, hvis tilgængelig."
376
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
+ msgstr "f. eks."
383
 
384
  #: ../admin/constants.php:3
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
+ msgstr "Du kan %1$s enhver af følgende %2$s i din %3$s for at angive avancerede insdstillinger. %4$s. Angivne %5$s bliver fremhævet."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
+ msgstr "%1$s returnerer svaret %2$s, hvilken kunne betyde, at crob jobs ikke bliver startet rigtigt. BackUpWordPress bruger wp-cron til at foretage planlagte sikkerhedskopieringen. Se %3$s for flere detaljer."
391
 
392
  #: ../functions/interface.php:72
393
  msgid "http://php.net/manual/en/features.safe-mode.php"
394
+ msgstr "http://php.net/manual/en/features.safe-mode.php"
395
 
396
  #: ../functions/interface.php:72
397
  msgid "Safe Mode"
398
+ msgstr "Fejlsikret tilstand."
399
 
400
  #: ../functions/interface.php:82
401
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
402
+ msgstr "Mappen til sikkerhedskopier, %1$s, eksisterer ikke og kan ikke oprettes. Dine sikkerhedskopier bliver gem i %2$s i stedet."
403
 
404
  #: ../functions/interface.php:92
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
+ msgstr "Mappen til sikkerhedskopier, %1$s, er ikke skrivbar. Nye sikkerhedskopier bliver gemt i %2$s i stedet."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
+ msgstr "annuller"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
+ msgstr "Indstillinger"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
+ msgstr "Eksluderinger"
419
 
420
  #: ../functions/interface.php:27
421
  msgid "Download"
422
+ msgstr "Hent"
423
 
424
  #: ../functions/interface.php:50 ../functions/interface.php:62
425
  msgid "BackUpWordPress is almost ready."
426
+ msgstr "BackUpWordPress er næsten klar."
427
 
428
  #: ../functions/interface.php:102
429
  msgid "BackUpWordPress detected issues with your last backup."
430
+ msgstr "BakcUpWordPress har opdaget fejl ved din seneste sikkerhedskopi."
431
 
432
  #: ../functions/interface.php:218
433
  msgid "Database and Files"
434
+ msgstr "Database og filer"
435
 
436
  #: ../functions/interface.php:224
437
  msgid "Database"
438
+ msgstr "Database"
 
 
 
 
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
+ msgstr "BackUpWordPress har opdaget et problem."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
+ msgstr "Typen af sikkerhedskopi skal angives."
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
+ msgstr "Ugyldig type af sikkerhedskopi"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
+ msgstr "Tidsplan skal angives."
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
+ msgstr "Ugyldig tidsplan."
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
+ msgstr "Maksimalt antal sikkerhedskopier skal angives med et tal"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
+ msgstr "%s passer ikke på nogen filer."
469
 
470
  #: ../admin/backups.php:13
471
  msgid "add schedule"
472
+ msgstr "tilføj tidsplan"
473
 
474
  #: ../admin/backups.php:37
475
  msgid "Size"
476
+ msgstr "Størrelse"
477
 
478
  #: ../admin/backups.php:38
479
  msgid "Type"
480
+ msgstr "Type"
481
 
482
  #: ../admin/backups.php:39
483
  msgid "Actions"
484
+ msgstr "Handlinger"
485
 
486
  #: ../admin/backups.php:64
487
  msgid "This is where your backups will appear once you have one."
488
+ msgstr "Her bliver dine sikkerhedskopier vist, når du har nogen."
489
 
490
  #: ../admin/constants.php:3
491
  msgid "The Codex can help"
492
+ msgstr "Codex'et kan hjælpe"
493
 
494
  #: ../admin/constants.php:8
495
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
496
+ msgstr "Stien til den mappe, hvor du vil gemme dine sikkerhedskopier. Standard er %s."
497
 
498
  #: ../admin/constants.php:11 ../admin/constants.php:14
499
  msgid "database"
500
+ msgstr "database"
501
 
502
  #: ../admin/constants.php:14
503
  msgid "files"
504
+ msgstr "filer"
505
 
506
  #: ../admin/constants.php:17
507
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
508
+ msgstr "Forsøg at sende sikkerhedskopierne via e-mail. Værdien skal være den e-mail-adresse sikkerhedskopierne skal sendes til. Standard er %s."
509
 
510
  #: ../admin/constants.php:20
511
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
512
+ msgstr "Komma-separeret liste af filer eller mapper, der skal ekskluderes. Mappen med sikkerhedskopier bliver automatisk ekskluderet."
513
 
514
  #: ../admin/menu.php:10 ../admin/page.php:5
515
  msgid "Manage Backups"
516
+ msgstr "Håndter sikkerhedskopier"
517
 
518
  #: ../admin/menu.php:10 ../admin/menu.php:34
519
  msgid "Backups"
520
+ msgstr "Sikkerhedskopier"
521
 
522
  #: ../admin/menu.php:69
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
+ msgstr "Du bruger ikke den nyeste, stabile version af BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
+ msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
+ msgstr "Konstanter"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
+ msgstr "For yderligere oplysninger"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
+ msgstr "Support-forums"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
+ msgstr "Hjælp med oversættelse"
545
 
546
  #: ../admin/page.php:13
547
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
548
+ msgstr "Du skal løse de problemer, der er beskrevet ovenfor, før BackUpWordPress kan starte."
549
 
550
  #: ../admin/schedule-form-excludes.php:19
551
  msgid "Preview"
552
+ msgstr "Preview"
553
 
554
  #: ../admin/schedule-form-excludes.php:29
555
  msgid "Exclude Rules"
556
+ msgstr "Ekskluderingsregler"
557
 
558
  #: ../admin/schedule-form-excludes.php:52
559
  msgid "Remove"
560
+ msgstr "Fjern"
561
 
562
  #: ../admin/schedule-form-excludes.php:71
563
  msgid "Excluded"
564
+ msgstr "Ekskluderet"
565
 
566
  #: ../admin/schedule-form-excludes.php:75
567
  msgid "Included"
568
+ msgstr "Inkluderet"
569
 
570
  #: ../admin/schedule-form-excludes.php:79
571
  msgid "Unreadable"
572
+ msgstr "Ikke-læsbar"
573
 
574
  #: ../admin/schedule-form-excludes.php:107
575
  msgid "Unreadable files can't be backed up"
576
+ msgstr "Filer, der ikke kan læses, kan ikke sikkerhedskopieres."
577
 
578
  #: ../admin/schedule-form-excludes.php:113
579
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
580
+ msgstr "Dit websted er %s. Sikkerhedskopier komprimeres, og vil derfor blive mindre end det."
581
 
582
  #: ../admin/schedule-form.php:11
583
  msgid "Backup"
584
+ msgstr "Sikkerhedskopier"
585
 
586
  #: ../admin/schedule-form.php:14
587
  msgid "Both Database &amp; files"
588
+ msgstr "Både database &amp; filer"
589
 
590
  #: ../admin/schedule-form.php:15
591
  msgid "Files only"
592
+ msgstr "Kun filer"
593
 
594
  #: ../admin/schedule-form.php:16
595
  msgid "Database only"
596
+ msgstr "Kun database"
597
 
598
  #: ../functions/interface.php:221
599
  msgid "Files"
600
+ msgstr "Filer"
601
 
602
  #: ../admin/schedule-form-excludes.php:7
603
  msgid "Manage Excludes"
604
+ msgstr "Håndter ekskluderinger"
605
 
606
  #: ../admin/schedule-form.php:23
607
  msgid "Schedule"
608
+ msgstr "Tidsplan"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
+ msgstr "Opdater"
613
 
614
  #: ../admin/schedule.php:19
615
  msgid "hourly at %s minutes past the hour"
616
+ msgstr "Hver time klokken %s minutter over hel."
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
+ msgstr "Kør nu"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
+ msgstr "Slet"
625
 
626
  #: ../plugin.php:66
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
+ msgstr "BackUpWordPress kræver PHP version 5.2.4 eller nyere."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
+ msgstr "Sikkerhedskopiering af %s."
633
 
634
  #: ../functions/core.php:288
635
  msgid "This %s file ensures that other people cannot download your backup files."
636
+ msgstr "Denne %s fil sikrer, at andre ikke kan hente dine sikkerhedskopier."
languages/hmbkp-de_DE.mo CHANGED
Binary file
languages/hmbkp-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Sende eine E-Mail an den Support"
44
 
@@ -50,11 +70,7 @@ msgstr "Wenn du BackUpWordPress nützlich findest, %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Neue Ausnahme/n"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Dein Backup ist fehlgeschlagen"
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Hier ist die Antwort des Servers:"
60
 
@@ -66,27 +82,27 @@ msgstr "Wenn du Hilfe brauchst, die Dinge zum Laufen zu bekommen, besuche die FA
66
  msgid "rate it on the plugin directory"
67
  msgstr "bewerte es bitte im \"Plugin Directory\""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Starte Backup"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Sichere Datenbank %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Prüfe die Sicherung der Datenbank %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Erstelle ZIP-Archiv %s"
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Prüfe ZIP-Archiv %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Backup fertigstellen"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s läuft im %2$s, bitte kontaktiere deinen Hoster und bitte ihn dies
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Die Dauer, über die deine geplanten Aufgaben laufen sollen. Standard: %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Bist du sicher, dass dieser Plan gelöscht werden soll? Alle zugehörigen Backups werden mit diesem Schritt auch gelöscht."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "'Abbrechen' zum Zurückkehren, 'OK' zum Löschen."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Bist du sicher, dass du dieses Backup löschen möchtest?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Bist du sicher, dass du diese Ausschlussregel entfernen möchtest?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Das Verringern der Anzahl der Backups, die auf diesem Server vorgehalten werden, bewirkt, dass einige existierende Backups gelöscht werden. Bist du sicher, dass du dies möchtest?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "Die maximale Anzahl Backups kann nicht leer sein."
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "Die maximale Anzahl Backups muss größer als 0 sein."
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Ausschließen"
136
 
@@ -202,23 +218,19 @@ msgstr "behalte nur die letzten %1$s Backups auf %2$s"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Erstelle ein Backup meiner %1$s %2$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Erhalte eine E-Mail, wenn ein Backup fertiggestellt wurde. Ist das Backup nicht zu groß (&lt; 10 MB), wird es an die E-Mail angehängt. Einzelne E-Mail-Adressen können durch Kommata getrennt angegeben werden."
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "BackUpWordPress konnte deine Seite %1$s nicht sichern."
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Hier sind die Fehler, auf die wir gestoßen sind:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "Wenn dir die Fehlermeldung oben wie ein Marsmensch vorkommt, dann leite diese E-Mail weiter an %3$s und wir schauen und das an."
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,19 +238,19 @@ msgstr ""
226
  "Mit freundlichen Grüßen\n"
227
  "Der Untröstliche BackUpWordpress Backup-E-Mail-Roboter "
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "BackUpWordPress hat ein Backup deiner Seite %1$s fertiggestellt."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "Die Backup-Datei sollte dieser E-Mail angehängt sein."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "Du kannst die Backup-Datei herunterladen, indem du auf den folgenden Link klickst:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
@@ -246,7 +258,7 @@ msgstr ""
246
  "Mit freundlichen Grüßen\n"
247
  "Der Glückliche BackUpWordPress Backup-E-Mail-Roboter"
248
 
249
- #: ../classes/email.php:151
250
  msgid "Unfortunately the backup file was too large to attach to this email."
251
  msgstr "Unglücklicherweise war die Backup-Datei zu groß, um sie dieser E-Mail anzuhängen."
252
 
@@ -294,15 +306,15 @@ msgstr "Das Backup-Verzeichnis kann nicht erstellt werden, weil dein %1$s-Verzei
294
  msgid "BackUpWordPress has setup your default schedules."
295
  msgstr "BackUpWordPress hat deine Standard-Pläne eingerichtet."
296
 
297
- #: ../classes/email.php:127
298
  msgid "Backup of %s Failed"
299
  msgstr "Backup von %s fehlgeschlagen"
300
 
301
- #: ../classes/email.php:50
302
  msgid "Send an email notification to %s"
303
  msgstr "Sende E-Mail-Benachrichtigungen an %s"
304
 
305
- #: ../classes/email.php:72
306
  msgid "%s isn't a valid email"
307
  msgstr "%s ist keine gültige E-Mail-Adresse"
308
 
@@ -310,7 +322,7 @@ msgstr "%s ist keine gültige E-Mail-Adresse"
310
  msgid "Backups will be compressed and should be smaller than this."
311
  msgstr "Die Backups werden komprimiert und sollten kleiner sein."
312
 
313
- #: ../classes/email.php:19
314
  msgid "Email notification"
315
  msgstr "E-Mail-Benachrichtigung"
316
 
@@ -330,7 +342,7 @@ msgstr "Anzahl der Backups, die auf dem Server gespeichert bleiben"
330
  msgid "Schedule Settings"
331
  msgstr "Plan-Einstellungen"
332
 
333
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
334
  msgid "Close"
335
  msgstr "Schließen"
336
 
@@ -354,7 +366,7 @@ msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird genutzt, um deine %2$s und %
354
  msgid "BackUpWordPress requires WordPress version %s or greater."
355
  msgstr "BackUpWordPress benötigt WordPress Version %s oder größer."
356
 
357
- #: ../plugin.php:143 ../admin/actions.php:419
358
  msgid "Cancel"
359
  msgstr "Abbrechen"
360
 
@@ -365,7 +377,7 @@ msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird für den %2$s-Teil des Backu
365
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
366
  #: ../admin/constants.php:17 ../admin/constants.php:20
367
  #: ../admin/constants.php:23 ../admin/constants.php:26
368
- #: ../admin/constants.php:29
369
  msgid "e.g."
370
  msgstr "z.B."
371
 
@@ -373,7 +385,7 @@ msgstr "z.B."
373
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
374
  msgstr "Du kannst jede der folgenden %2$s in deinem %3$s %1$sn, um erweiterte Einstellungen vorzunehmen. %4$s. Definierte %5$s werden hervorgehoben."
375
 
376
- #: ../admin/actions.php:194 ../admin/actions.php:197
377
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
378
  msgstr "%1$s gibt eine %2$s-Antwort zurück. Das könnte bedeuten, dass deine Cron-Jobs nicht richtig aufgerufen werden. BackUpWordPress benutzt wp-cron, um geplante Backups auszuführen. Sieh dir das %3$s an für mehr Details."
379
 
@@ -393,15 +405,15 @@ msgstr "Dein angepasstes Backup-Verzeichnis %1$s existiert nicht und kann nicht
393
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
394
  msgstr "Dein angepasstes Backup-Verzeichnis %1$s ist nicht schreibbar, neue Backups werden stattdessen nach %2$s gespeichert."
395
 
396
- #: ../functions/interface.php:243
397
  msgid "cancel"
398
  msgstr "abbrechen"
399
 
400
- #: ../functions/interface.php:247
401
  msgid "Settings"
402
  msgstr "Einstellungen"
403
 
404
- #: ../functions/interface.php:250
405
  msgid "Excludes"
406
  msgstr "Ausnahmen"
407
 
@@ -425,37 +437,33 @@ msgstr "Datenbank und Dateien"
425
  msgid "Database"
426
  msgstr "Datenbank"
427
 
428
- #: ../hm-backup/hm-backup.php:958
429
- msgid "The following files are unreadable and couldn't be backed up: "
430
- msgstr "Die folgenden Dateien sind nicht lesbar und konnten nicht gesichert werden:"
431
-
432
- #: ../admin/actions.php:194 ../admin/actions.php:197
433
  #: ../functions/interface.php:72 ../functions/interface.php:82
434
  #: ../functions/interface.php:92
435
  msgid "BackUpWordPress has detected a problem."
436
  msgstr "BackUpWordPress hat ein Problem entdeckt."
437
 
438
- #: ../admin/actions.php:277
439
  msgid "Backup type cannot be empty"
440
  msgstr "Backup-Typ kann nicht leer sein"
441
 
442
- #: ../admin/actions.php:280
443
  msgid "Invalid backup type"
444
  msgstr "Ungültiger Backup-Typ"
445
 
446
- #: ../admin/actions.php:292
447
  msgid "Schedule cannot be empty"
448
  msgstr "Aufgaben können nicht leer sein"
449
 
450
- #: ../admin/actions.php:295
451
  msgid "Invalid schedule"
452
  msgstr "Ungültige Aufgaben"
453
 
454
- #: ../admin/actions.php:310
455
  msgid "Max backups must be a number"
456
  msgstr "Maximale Anzahl der Backups muss eine Zahl sein"
457
 
458
- #: ../admin/actions.php:415
459
  msgid "%s didn't match any files."
460
  msgstr "%s passt auf keine Dateien."
461
 
@@ -515,23 +523,23 @@ msgstr "Backups"
515
  msgid "You are not using the latest stable version of BackUpWordPress"
516
  msgstr "Du benutzt nicht die neueste stabile BackUpWordPress-Version"
517
 
518
- #: ../admin/menu.php:75
519
  msgid "FAQ"
520
  msgstr "FAQ"
521
 
522
- #: ../admin/constants.php:3 ../admin/menu.php:76
523
  msgid "Constants"
524
  msgstr "Konstanten"
525
 
526
- #: ../admin/menu.php:79
527
  msgid "For more information:"
528
  msgstr "Für mehr Informationen:"
529
 
530
- #: ../admin/menu.php:81
531
  msgid "Support Forums"
532
  msgstr "Support-Foren"
533
 
534
- #: ../admin/menu.php:82
535
  msgid "Help with translation"
536
  msgstr "Beim Übersetzen helfen"
537
 
@@ -599,7 +607,7 @@ msgstr "Ausnahmen verwalten"
599
  msgid "Schedule"
600
  msgstr "Plan"
601
 
602
- #: ../plugin.php:142 ../admin/schedule-form.php:54
603
  msgid "Update"
604
  msgstr "Update"
605
 
@@ -607,11 +615,11 @@ msgstr "Update"
607
  msgid "hourly at %s minutes past the hour"
608
  msgstr "stündlich, %s Minuten nach der vollen Stunde"
609
 
610
- #: ../functions/interface.php:253
611
  msgid "Run now"
612
  msgstr "Jetzt ausführen"
613
 
614
- #: ../functions/interface.php:28 ../functions/interface.php:255
615
  msgid "Delete"
616
  msgstr "Löschen"
617
 
@@ -619,7 +627,7 @@ msgstr "Löschen"
619
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
620
  msgstr "BackUpWordPress benötigt PHP Version 5.2.4 oder höher."
621
 
622
- #: ../classes/email.php:137
623
  msgid "Backup of %s"
624
  msgstr "Backup von %s"
625
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Sende eine E-Mail an den Support"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Neue Ausnahme/n"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Hier ist die Antwort des Servers:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "bewerte es bitte im \"Plugin Directory\""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Starte Backup"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Sichere Datenbank %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Prüfe die Sicherung der Datenbank %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Erstelle ZIP-Archiv %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Prüfe ZIP-Archiv %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Backup fertigstellen"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Die Dauer, über die deine geplanten Aufgaben laufen sollen. Standard: %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Bist du sicher, dass dieser Plan gelöscht werden soll? Alle zugehörigen Backups werden mit diesem Schritt auch gelöscht."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "'Abbrechen' zum Zurückkehren, 'OK' zum Löschen."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Bist du sicher, dass du dieses Backup löschen möchtest?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Bist du sicher, dass du diese Ausschlussregel entfernen möchtest?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Das Verringern der Anzahl der Backups, die auf diesem Server vorgehalten werden, bewirkt, dass einige existierende Backups gelöscht werden. Bist du sicher, dass du dies möchtest?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "Die maximale Anzahl Backups kann nicht leer sein."
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "Die maximale Anzahl Backups muss größer als 0 sein."
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Ausschließen"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Erstelle ein Backup meiner %1$s %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "BackUpWordPress konnte deine Seite %1$s nicht sichern."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Hier sind die Fehler, auf die wir gestoßen sind:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "Wenn dir die Fehlermeldung oben wie ein Marsmensch vorkommt, dann leite diese E-Mail weiter an %3$s und wir schauen und das an."
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "Mit freundlichen Grüßen\n"
239
  "Der Untröstliche BackUpWordpress Backup-E-Mail-Roboter "
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "BackUpWordPress hat ein Backup deiner Seite %1$s fertiggestellt."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "Die Backup-Datei sollte dieser E-Mail angehängt sein."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "Du kannst die Backup-Datei herunterladen, indem du auf den folgenden Link klickst:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
258
  "Mit freundlichen Grüßen\n"
259
  "Der Glückliche BackUpWordPress Backup-E-Mail-Roboter"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
  msgstr "Unglücklicherweise war die Backup-Datei zu groß, um sie dieser E-Mail anzuhängen."
264
 
306
  msgid "BackUpWordPress has setup your default schedules."
307
  msgstr "BackUpWordPress hat deine Standard-Pläne eingerichtet."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
  msgstr "Backup von %s fehlgeschlagen"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
  msgstr "Sende E-Mail-Benachrichtigungen an %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
  msgstr "%s ist keine gültige E-Mail-Adresse"
320
 
322
  msgid "Backups will be compressed and should be smaller than this."
323
  msgstr "Die Backups werden komprimiert und sollten kleiner sein."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
  msgstr "E-Mail-Benachrichtigung"
328
 
342
  msgid "Schedule Settings"
343
  msgstr "Plan-Einstellungen"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
  msgstr "Schließen"
348
 
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
  msgstr "BackUpWordPress benötigt WordPress Version %s oder größer."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
  msgstr "Abbrechen"
372
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
  msgstr "z.B."
383
 
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
  msgstr "Du kannst jede der folgenden %2$s in deinem %3$s %1$sn, um erweiterte Einstellungen vorzunehmen. %4$s. Definierte %5$s werden hervorgehoben."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
  msgstr "%1$s gibt eine %2$s-Antwort zurück. Das könnte bedeuten, dass deine Cron-Jobs nicht richtig aufgerufen werden. BackUpWordPress benutzt wp-cron, um geplante Backups auszuführen. Sieh dir das %3$s an für mehr Details."
391
 
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
  msgstr "Dein angepasstes Backup-Verzeichnis %1$s ist nicht schreibbar, neue Backups werden stattdessen nach %2$s gespeichert."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
  msgstr "abbrechen"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
  msgstr "Einstellungen"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
  msgstr "Ausnahmen"
419
 
437
  msgid "Database"
438
  msgstr "Datenbank"
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
  msgstr "BackUpWordPress hat ein Problem entdeckt."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
  msgstr "Backup-Typ kann nicht leer sein"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
  msgstr "Ungültiger Backup-Typ"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
  msgstr "Aufgaben können nicht leer sein"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
  msgstr "Ungültige Aufgaben"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
  msgstr "Maximale Anzahl der Backups muss eine Zahl sein"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
  msgstr "%s passt auf keine Dateien."
469
 
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
  msgstr "Du benutzt nicht die neueste stabile BackUpWordPress-Version"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
  msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
  msgstr "Konstanten"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
  msgstr "Für mehr Informationen:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
  msgstr "Support-Foren"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
  msgstr "Beim Übersetzen helfen"
545
 
607
  msgid "Schedule"
608
  msgstr "Plan"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
  msgstr "Update"
613
 
615
  msgid "hourly at %s minutes past the hour"
616
  msgstr "stündlich, %s Minuten nach der vollen Stunde"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
  msgstr "Jetzt ausführen"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
  msgstr "Löschen"
625
 
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
  msgstr "BackUpWordPress benötigt PHP Version 5.2.4 oder höher."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
  msgstr "Backup von %s"
633
 
languages/hmbkp-es_ES.mo CHANGED
Binary file
languages/hmbkp-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,241 +10,257 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
14
- msgid "You can email details of this error to %s so they can look into the issue."
 
 
 
 
15
  msgstr ""
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: ../functions/core.php:204
18
  msgid "Once Hourly"
19
- msgstr ""
20
 
21
  #: ../functions/core.php:205
22
  msgid "Twice Daily"
23
- msgstr ""
24
 
25
  #: ../functions/core.php:206
26
  msgid "Once Daily"
27
- msgstr ""
28
 
29
  #: ../functions/core.php:207
30
  msgid "Once Weekly"
31
- msgstr ""
32
 
33
  #: ../functions/core.php:208
34
  msgid "Once Fortnightly"
35
- msgstr ""
36
 
37
  #: ../functions/core.php:209
38
  msgid "Once Monthly"
39
- msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
- msgstr ""
44
 
45
  #: ../admin/page.php:17
46
  msgid "If your finding BackUpWordPress useful, please %s."
47
- msgstr ""
48
 
49
  #: ../admin/schedule-form-excludes.php:13
50
  msgid "New Exclude Rule[s]"
51
- msgstr ""
52
-
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
 
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
- msgstr ""
60
 
61
  #: ../admin/page.php:19
62
  msgid "If you need help getting things working then check the FAQ by clicking on help in the top right hand corner of this page."
63
- msgstr ""
64
 
65
  #: ../admin/page.php:17
66
  msgid "rate it on the plugin directory"
67
- msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
- msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
- msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
- msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
- msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
- msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
- msgstr ""
92
 
93
  #: ../classes/wp-cli.php:16
94
  msgid "BackUpWordPress may not work when php is running with %s on"
95
- msgstr ""
96
 
97
  #: ../functions/interface.php:72
98
  msgid "%1$s is running in %2$s, please contact your host and ask them to disable it. BackUpWordPress may not work correctly whilst %3$s is on."
99
- msgstr ""
100
 
101
  #: ../admin/constants.php:29
102
  msgid "The time that your schedules should run. Defaults to %s."
103
- msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
- msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
- msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
- msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
- msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
- msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
- msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
- msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
- msgstr ""
136
 
137
  #: ../admin/schedule-form-excludes.php:44
138
  msgid "default"
139
- msgstr ""
140
 
141
  #: ../admin/schedule-form-excludes.php:48
142
  msgid "defined"
143
- msgstr ""
144
 
145
  #: ../admin/schedule-form.php:27
146
  msgid "Manual Only"
147
- msgstr ""
148
 
149
  #: ../admin/schedule-form.php:45
150
  msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
151
- msgstr ""
152
 
153
  #: ../admin/schedule.php:4
154
  msgid "this shouldn't take long&hellip;"
155
- msgstr ""
156
 
157
  #: ../admin/schedule.php:4
158
  msgid "calculating the size of your site&hellip;"
159
- msgstr ""
160
 
161
  #: ../admin/schedule.php:12
162
  msgid "The next backup will be on %1$s at %2$s"
163
- msgstr ""
164
 
165
  #: ../admin/schedule.php:37
166
  msgid "every 12 hours at %1$s &amp; %2$s"
167
- msgstr ""
168
 
169
  #: ../admin/schedule.php:43
170
  msgid "weekly on %1$s at %2$s"
171
- msgstr ""
172
 
173
  #: ../admin/schedule.php:49
174
  msgid "fortnightly on %1$s at %2$s"
175
- msgstr ""
176
 
177
  #: ../admin/schedule.php:56
178
  msgid "on the %1$s of each month at %2$s"
179
- msgstr ""
180
 
181
  #: ../admin/schedule.php:62
182
  msgid "manually"
183
- msgstr ""
184
 
185
  #: ../admin/schedule.php:68
186
  msgid "this server"
187
- msgstr ""
188
 
189
  #: ../admin/schedule.php:75
190
  msgid "store the only the last backup on %s"
191
- msgstr ""
192
 
193
  #: ../admin/schedule.php:81
194
  msgid "don't store any backups on %s"
195
- msgstr ""
196
 
197
  #: ../admin/schedule.php:87
198
  msgid "store only the last %1$s backups on %2$s"
199
- msgstr ""
200
 
201
  #: ../admin/schedule.php:96
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
- msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
- msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
- msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
 
 
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
- msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
- msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
- msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
 
 
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
- msgstr ""
248
 
249
  #: ../classes/wp-cli.php:19
250
  msgid "Backup: Dumping database..."
@@ -252,63 +268,63 @@ msgstr ""
252
 
253
  #: ../classes/wp-cli.php:23
254
  msgid "Backup: Zipping everything up..."
255
- msgstr ""
256
 
257
  #: ../classes/wp-cli.php:38
258
  msgid "Invalid backup path"
259
- msgstr ""
260
 
261
  #: ../classes/wp-cli.php:43
262
  msgid "Invalid root path"
263
- msgstr ""
264
 
265
  #: ../classes/wp-cli.php:68
266
  msgid "Backup Complete: "
267
- msgstr ""
268
 
269
  #: ../classes/wp-cli.php:71
270
  msgid "Backup Failed"
271
- msgstr ""
272
 
273
  #: ../functions/core.php:189
274
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
275
- msgstr ""
276
 
277
  #: ../functions/interface.php:229
278
  msgid "Legacy"
279
- msgstr ""
280
 
281
  #: ../functions/interface.php:62
282
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
283
- msgstr ""
284
 
285
  #: ../functions/interface.php:50
286
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
287
- msgstr ""
288
 
289
  #: ../functions/core.php:189
290
  msgid "BackUpWordPress has setup your default schedules."
291
- msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
- msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
- msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
- msgstr ""
304
 
305
  #: ../admin/schedule.php:4
306
  msgid "Backups will be compressed and should be smaller than this."
307
- msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
- msgstr ""
312
 
313
  #: ../admin/schedule.php:19
314
  msgid "hourly on the hour"
@@ -316,309 +332,305 @@ msgstr ""
316
 
317
  #: ../admin/schedule.php:25
318
  msgid "daily at %s"
319
- msgstr ""
320
 
321
  #: ../admin/schedule-form.php:41
322
  msgid "Number of backups to store on this server"
323
- msgstr ""
324
 
325
  #: ../admin/schedule-form.php:7
326
  msgid "Schedule Settings"
327
- msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
- msgstr ""
332
 
333
  #: ../admin/menu.php:69
334
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
335
- msgstr ""
336
 
337
  #: ../admin/constants.php:26
338
  msgid "The root directory that is backed up. Defaults to %s."
339
- msgstr ""
340
 
341
  #: ../admin/constants.php:23
342
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
343
- msgstr ""
344
 
345
  #: ../admin/constants.php:14
346
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
347
- msgstr ""
348
 
349
  #: ../plugin.php:77
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
- msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
- msgstr ""
356
 
357
  #: ../admin/constants.php:11
358
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
359
- msgstr ""
360
 
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
- msgstr ""
367
 
368
  #: ../admin/constants.php:3
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
- msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
- msgstr ""
375
 
376
  #: ../functions/interface.php:72
377
  msgid "http://php.net/manual/en/features.safe-mode.php"
378
- msgstr ""
379
 
380
  #: ../functions/interface.php:72
381
  msgid "Safe Mode"
382
- msgstr ""
383
 
384
  #: ../functions/interface.php:82
385
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
386
- msgstr ""
387
 
388
  #: ../functions/interface.php:92
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
- msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
- msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
- msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
- msgstr ""
403
 
404
  #: ../functions/interface.php:27
405
  msgid "Download"
406
- msgstr ""
407
 
408
  #: ../functions/interface.php:50 ../functions/interface.php:62
409
  msgid "BackUpWordPress is almost ready."
410
- msgstr ""
411
 
412
  #: ../functions/interface.php:102
413
  msgid "BackUpWordPress detected issues with your last backup."
414
- msgstr ""
415
 
416
  #: ../functions/interface.php:218
417
  msgid "Database and Files"
418
- msgstr ""
419
 
420
  #: ../functions/interface.php:224
421
  msgid "Database"
422
- msgstr ""
423
-
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
 
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
- msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
- msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
- msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
- msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
- msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
- msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
- msgstr ""
457
 
458
  #: ../admin/backups.php:13
459
  msgid "add schedule"
460
- msgstr ""
461
 
462
  #: ../admin/backups.php:37
463
  msgid "Size"
464
- msgstr ""
465
 
466
  #: ../admin/backups.php:38
467
  msgid "Type"
468
- msgstr ""
469
 
470
  #: ../admin/backups.php:39
471
  msgid "Actions"
472
- msgstr ""
473
 
474
  #: ../admin/backups.php:64
475
  msgid "This is where your backups will appear once you have one."
476
- msgstr ""
477
 
478
  #: ../admin/constants.php:3
479
  msgid "The Codex can help"
480
- msgstr ""
481
 
482
  #: ../admin/constants.php:8
483
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
484
- msgstr ""
485
 
486
  #: ../admin/constants.php:11 ../admin/constants.php:14
487
  msgid "database"
488
- msgstr ""
489
 
490
  #: ../admin/constants.php:14
491
  msgid "files"
492
- msgstr ""
493
 
494
  #: ../admin/constants.php:17
495
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
496
- msgstr ""
497
 
498
  #: ../admin/constants.php:20
499
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
500
- msgstr ""
501
 
502
  #: ../admin/menu.php:10 ../admin/page.php:5
503
  msgid "Manage Backups"
504
- msgstr ""
505
 
506
  #: ../admin/menu.php:10 ../admin/menu.php:34
507
  msgid "Backups"
508
- msgstr ""
509
 
510
  #: ../admin/menu.php:69
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
- msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
- msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
- msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
- msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
- msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
- msgstr ""
533
 
534
  #: ../admin/page.php:13
535
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
536
- msgstr ""
537
 
538
  #: ../admin/schedule-form-excludes.php:19
539
  msgid "Preview"
540
- msgstr ""
541
 
542
  #: ../admin/schedule-form-excludes.php:29
543
  msgid "Exclude Rules"
544
- msgstr ""
545
 
546
  #: ../admin/schedule-form-excludes.php:52
547
  msgid "Remove"
548
- msgstr ""
549
 
550
  #: ../admin/schedule-form-excludes.php:71
551
  msgid "Excluded"
552
- msgstr ""
553
 
554
  #: ../admin/schedule-form-excludes.php:75
555
  msgid "Included"
556
- msgstr ""
557
 
558
  #: ../admin/schedule-form-excludes.php:79
559
  msgid "Unreadable"
560
- msgstr ""
561
 
562
  #: ../admin/schedule-form-excludes.php:107
563
  msgid "Unreadable files can't be backed up"
564
- msgstr ""
565
 
566
  #: ../admin/schedule-form-excludes.php:113
567
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
568
- msgstr ""
569
 
570
  #: ../admin/schedule-form.php:11
571
  msgid "Backup"
572
- msgstr ""
573
 
574
  #: ../admin/schedule-form.php:14
575
  msgid "Both Database &amp; files"
576
- msgstr ""
577
 
578
  #: ../admin/schedule-form.php:15
579
  msgid "Files only"
580
- msgstr ""
581
 
582
  #: ../admin/schedule-form.php:16
583
  msgid "Database only"
584
- msgstr ""
585
 
586
  #: ../functions/interface.php:221
587
  msgid "Files"
588
- msgstr ""
589
 
590
  #: ../admin/schedule-form-excludes.php:7
591
  msgid "Manage Excludes"
592
- msgstr ""
593
 
594
  #: ../admin/schedule-form.php:23
595
  msgid "Schedule"
596
- msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
- msgstr ""
601
 
602
  #: ../admin/schedule.php:19
603
  msgid "hourly at %s minutes past the hour"
604
- msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
- msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
- msgstr ""
613
 
614
  #: ../plugin.php:66
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
- msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
- msgstr ""
621
 
622
  #: ../functions/core.php:288
623
  msgid "This %s file ensures that other people cannot download your backup files."
624
- msgstr ""
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:50+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
  msgstr ""
20
 
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr "Puedes enviar los detalles del error a %s para que sea investigado."
36
+
37
  #: ../functions/core.php:204
38
  msgid "Once Hourly"
39
+ msgstr "Cada hora"
40
 
41
  #: ../functions/core.php:205
42
  msgid "Twice Daily"
43
+ msgstr "Dos veces al día"
44
 
45
  #: ../functions/core.php:206
46
  msgid "Once Daily"
47
+ msgstr "A diario"
48
 
49
  #: ../functions/core.php:207
50
  msgid "Once Weekly"
51
+ msgstr "Una vez al día"
52
 
53
  #: ../functions/core.php:208
54
  msgid "Once Fortnightly"
55
+ msgstr "Cada quince días"
56
 
57
  #: ../functions/core.php:209
58
  msgid "Once Monthly"
59
+ msgstr "Cada mes"
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
+ msgstr "Contacta con soporte"
64
 
65
  #: ../admin/page.php:17
66
  msgid "If your finding BackUpWordPress useful, please %s."
67
+ msgstr "Si encuentras BackUpWordPress útil, por favor %s"
68
 
69
  #: ../admin/schedule-form-excludes.php:13
70
  msgid "New Exclude Rule[s]"
71
+ msgstr "Nueva regla de exclusión"
 
 
 
 
72
 
73
+ #: ../admin/actions.php:501
74
  msgid "Here's the response from the server:"
75
+ msgstr "Esta es la respuesta del servidor"
76
 
77
  #: ../admin/page.php:19
78
  msgid "If you need help getting things working then check the FAQ by clicking on help in the top right hand corner of this page."
79
+ msgstr "Si necesitas ayuda haz clic en la ayuda de la esquina superior derecha de esta página."
80
 
81
  #: ../admin/page.php:17
82
  msgid "rate it on the plugin directory"
83
+ msgstr "Valora el plugin en el directorio"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
+ msgstr "Backup comenzando"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
+ msgstr "Guardando la base de datos %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
+ msgstr "Verificando la base de datos %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
+ msgstr "Creando archivo comprimido %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
+ msgstr "Verificando archivo comprimido %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
+ msgstr "Finalizando copia de seguridad"
108
 
109
  #: ../classes/wp-cli.php:16
110
  msgid "BackUpWordPress may not work when php is running with %s on"
111
+ msgstr "BackUpWordPress podría no funcionar cuando php está funcionando con %s"
112
 
113
  #: ../functions/interface.php:72
114
  msgid "%1$s is running in %2$s, please contact your host and ask them to disable it. BackUpWordPress may not work correctly whilst %3$s is on."
115
+ msgstr "%1$s está funcionando en %2$s. Por favor contacta con tu alojador para que lo deshabilite. BackUpWordPress podría no funcionar correctamente mienstra %3$s esté encendido."
116
 
117
  #: ../admin/constants.php:29
118
  msgid "The time that your schedules should run. Defaults to %s."
119
+ msgstr "Hora a la que debe programarse. Por defecto %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
+ msgstr "¿Estás seguro de que deseas eliminar esta programación? Todos sus copias de seguridad serán también eliminados."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
+ msgstr "Cancela para volver atrás, OK para borrar."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
+ msgstr "¿Estás seguro de que quieres eliminar esta copia de seguridad?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
+ msgstr "¿Estás seguro de que quieres eliminar esta regla?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
+ msgstr "Reduciendo el número de copias de seguridad disponibles en el servidor causará que algunas de las copias de seguridad sean eliminadas. ¿Estás seguro de que quieres continuar?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
+ msgstr "Máximas copias de seguridad no puede estar vacío"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
+ msgstr "Máximas copias de seguridad debe ser mayor de 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
+ msgstr "Excluír"
152
 
153
  #: ../admin/schedule-form-excludes.php:44
154
  msgid "default"
155
+ msgstr "defecto"
156
 
157
  #: ../admin/schedule-form-excludes.php:48
158
  msgid "defined"
159
+ msgstr "definido"
160
 
161
  #: ../admin/schedule-form.php:27
162
  msgid "Manual Only"
163
+ msgstr "Sólo manual"
164
 
165
  #: ../admin/schedule-form.php:45
166
  msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
167
+ msgstr "Número de copias de seguridad a almacenar en el servidor. Las copias de seguridad por encima de este límite se eliminarán y remplazarán automáticamente."
168
 
169
  #: ../admin/schedule.php:4
170
  msgid "this shouldn't take long&hellip;"
171
+ msgstr "esto no debería llevar mucho &hellip;"
172
 
173
  #: ../admin/schedule.php:4
174
  msgid "calculating the size of your site&hellip;"
175
+ msgstr "calculando el tamaño de tu sitio web&hellip;"
176
 
177
  #: ../admin/schedule.php:12
178
  msgid "The next backup will be on %1$s at %2$s"
179
+ msgstr "La próxima copia de seguridad será el %1$s a las %2$s"
180
 
181
  #: ../admin/schedule.php:37
182
  msgid "every 12 hours at %1$s &amp; %2$s"
183
+ msgstr "cada 12 horas a %1$s &amp; %2$s"
184
 
185
  #: ../admin/schedule.php:43
186
  msgid "weekly on %1$s at %2$s"
187
+ msgstr "semanalmente los %1$s a las %2$s"
188
 
189
  #: ../admin/schedule.php:49
190
  msgid "fortnightly on %1$s at %2$s"
191
+ msgstr "quincenalmente los %1$s a las %2$s"
192
 
193
  #: ../admin/schedule.php:56
194
  msgid "on the %1$s of each month at %2$s"
195
+ msgstr "el %1$s de cada mes a las %2$s"
196
 
197
  #: ../admin/schedule.php:62
198
  msgid "manually"
199
+ msgstr "manualmente"
200
 
201
  #: ../admin/schedule.php:68
202
  msgid "this server"
203
+ msgstr "este servidor"
204
 
205
  #: ../admin/schedule.php:75
206
  msgid "store the only the last backup on %s"
207
+ msgstr "almacenar sólo la última copia de seguridad en %s"
208
 
209
  #: ../admin/schedule.php:81
210
  msgid "don't store any backups on %s"
211
+ msgstr "no almacenar ninguna copia de seguridad en %s"
212
 
213
  #: ../admin/schedule.php:87
214
  msgid "store only the last %1$s backups on %2$s"
215
+ msgstr "almacenar sólo la/las última/s %1$s copia de seguridad en %2$s"
216
 
217
  #: ../admin/schedule.php:96
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
+ msgstr "BackUpWordPress no ha podido hacer una copia de seguridad de tu sitio %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
+ msgstr "Estos son los errores encontrados:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
+ msgstr "Si los errores indicados te suenan a chino, reenvía este email a %3$s y le echaremos un vistazo"
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
+ "Saludos,\n"
239
+ "El robot de BackUpWordPress"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
+ msgstr "BackUpWordPress ha completado una copia de seguridad de tu sitio %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
+ msgstr "El archivo debería estar adjunto a este email."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
+ msgstr "Puedes descargar el archivo haciendo clic en el enlace inferior:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
257
  msgstr ""
258
+ "Saludos,\n"
259
+ "El robot de BackUpWordPress"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
+ msgstr "Desgraciadamente el archivo de copia de seguridad es demasiado grande para adjuntarlo a este email."
264
 
265
  #: ../classes/wp-cli.php:19
266
  msgid "Backup: Dumping database..."
268
 
269
  #: ../classes/wp-cli.php:23
270
  msgid "Backup: Zipping everything up..."
271
+ msgstr "Copia de seguridad: Comprimiendo ..."
272
 
273
  #: ../classes/wp-cli.php:38
274
  msgid "Invalid backup path"
275
+ msgstr "Ruta de copia de seguridad no válida"
276
 
277
  #: ../classes/wp-cli.php:43
278
  msgid "Invalid root path"
279
+ msgstr "Ruta de raíz no válida"
280
 
281
  #: ../classes/wp-cli.php:68
282
  msgid "Backup Complete: "
283
+ msgstr "Copia de seguridad completada:"
284
 
285
  #: ../classes/wp-cli.php:71
286
  msgid "Backup Failed"
287
+ msgstr "La copia de seguridad ha fallado"
288
 
289
  #: ../functions/core.php:189
290
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
291
+ msgstr "Por defecto BackUpWordPress realiza automáticamente una copia de seguridad de la base de datos diaria y semanal. Puedes modificar la configuración."
292
 
293
  #: ../functions/interface.php:229
294
  msgid "Legacy"
295
+ msgstr "Heredado"
296
 
297
  #: ../functions/interface.php:62
298
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
299
+ msgstr "El directorio de copias de seguridad no se puede escribir. Ejecuta %1$s o %2$s o establece los permisos."
300
 
301
  #: ../functions/interface.php:50
302
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
303
+ msgstr "El directorio de copias de seguridad no se puede crear porque el directorio %1$s no se puede escribir. Ejecuta %1$s o %2$s o establece los permisos."
304
 
305
  #: ../functions/core.php:189
306
  msgid "BackUpWordPress has setup your default schedules."
307
+ msgstr "BackUpWordPress ha configurado tus ajustes por defecto."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
+ msgstr "La copia de seguridad de %s ha fallado"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
+ msgstr "Enviar un email de notificación a %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
+ msgstr "%s no es un email válido"
320
 
321
  #: ../admin/schedule.php:4
322
  msgid "Backups will be compressed and should be smaller than this."
323
+ msgstr "Las copias de seguridad serán comprimidas y deberían ser más pequeñas que esto."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
+ msgstr "Notificación de email"
328
 
329
  #: ../admin/schedule.php:19
330
  msgid "hourly on the hour"
332
 
333
  #: ../admin/schedule.php:25
334
  msgid "daily at %s"
335
+ msgstr "diariamente a las %s"
336
 
337
  #: ../admin/schedule-form.php:41
338
  msgid "Number of backups to store on this server"
339
+ msgstr "Número de copias de seguridad a almacenar en el servidor"
340
 
341
  #: ../admin/schedule-form.php:7
342
  msgid "Schedule Settings"
343
+ msgstr "Configuración de frecuencia de copias de seguridad"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
+ msgstr "Cerrar"
348
 
349
  #: ../admin/menu.php:69
350
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
351
+ msgstr "La información indicadaes para la versión %1$s. Visita el archivo %2$s para ayuda específica sobre la versión %3$s."
352
 
353
  #: ../admin/constants.php:26
354
  msgid "The root directory that is backed up. Defaults to %s."
355
+ msgstr "Directorio raíz. Por defecto %s."
356
 
357
  #: ../admin/constants.php:23
358
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
359
+ msgstr "Capacidad que se usa al llamar %1$s. Valor predeterminado es %2$s."
360
 
361
  #: ../admin/constants.php:14
362
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
363
+ msgstr "La ruta hacia tu %1$s ejecutable. Se utilizará para hacer el archivo comprimido zip de tu %2$s y %3$s si está disponible."
364
 
365
  #: ../plugin.php:77
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
+ msgstr "BackUpWordPress necesita versión de WordPress %s o superior."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
+ msgstr "Cancelar"
372
 
373
  #: ../admin/constants.php:11
374
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
375
+ msgstr "La ruta hacia tu %1$s ejecutable. Se utilizará para la parte %2$s de la copia de seguridad si está disponible."
376
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
+ msgstr "ej."
383
 
384
  #: ../admin/constants.php:3
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
+ msgstr "Puedes %1$s cualquiera de los %2$s en tu %3$s para controlar opciones avanzadas. %4$s. %5$s establecidas verán destacadas."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
+ msgstr "%1$s estaá devolviendo una respuesta %2$s lo que podría significar que procesos Cron no se están ejecutado correctamente. BackUpWordPress no puede funcionar sin que wp-cron haga copias de seguridad en un proceso aparte. Consulta %3$s para más información."
391
 
392
  #: ../functions/interface.php:72
393
  msgid "http://php.net/manual/en/features.safe-mode.php"
394
+ msgstr "http://www.php.net/manual/es/features.safe-mode.php"
395
 
396
  #: ../functions/interface.php:72
397
  msgid "Safe Mode"
398
+ msgstr "Modo seguro"
399
 
400
  #: ../functions/interface.php:82
401
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
402
+ msgstr "Tu directorio personalizado de copias de seguridad %1$s no existe y no puede ser creado. En su lugar, las copias de seguridad se guardarán en %2$s."
403
 
404
  #: ../functions/interface.php:92
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
+ msgstr "Tu directorio personalizado de copias de seguridad %1$s no se puede escribir. En su lugar, las copias de seguridad se guardarán en %2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
+ msgstr "cancelar"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
+ msgstr "Configuración"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
+ msgstr "Exclusiones"
419
 
420
  #: ../functions/interface.php:27
421
  msgid "Download"
422
+ msgstr "Descargar"
423
 
424
  #: ../functions/interface.php:50 ../functions/interface.php:62
425
  msgid "BackUpWordPress is almost ready."
426
+ msgstr "BackUpWordPress está casi listo."
427
 
428
  #: ../functions/interface.php:102
429
  msgid "BackUpWordPress detected issues with your last backup."
430
+ msgstr "BackUpWordPress ha detectado problemas con tu última copia de seguridad."
431
 
432
  #: ../functions/interface.php:218
433
  msgid "Database and Files"
434
+ msgstr "Base de datos y archivos"
435
 
436
  #: ../functions/interface.php:224
437
  msgid "Database"
438
+ msgstr "Base de datos"
 
 
 
 
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
+ msgstr "BackUpWordPress ha detectado un problema."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
+ msgstr "Tipo de copia de seguridad no puede estar vacío"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
+ msgstr "Tipo de copia de seguridad no válido"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
+ msgstr "Debe indicar una programación"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
+ msgstr "Programación no válida"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
+ msgstr "Máximas copias de seguridad debe ser un número"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
+ msgstr "%s no ah encontrado coincidencias."
469
 
470
  #: ../admin/backups.php:13
471
  msgid "add schedule"
472
+ msgstr "añadir programa"
473
 
474
  #: ../admin/backups.php:37
475
  msgid "Size"
476
+ msgstr "Tamaño"
477
 
478
  #: ../admin/backups.php:38
479
  msgid "Type"
480
+ msgstr "Tipo"
481
 
482
  #: ../admin/backups.php:39
483
  msgid "Actions"
484
+ msgstr "Acciones"
485
 
486
  #: ../admin/backups.php:64
487
  msgid "This is where your backups will appear once you have one."
488
+ msgstr "Aquí aparecerán tus copias de seguridad (cuando haya alguna)."
489
 
490
  #: ../admin/constants.php:3
491
  msgid "The Codex can help"
492
+ msgstr "El Codex puede ayudar"
493
 
494
  #: ../admin/constants.php:8
495
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
496
+ msgstr "Ruta a la carpeta en la que te gustaría almacenar tus copias de seguridad. Por defecto %s."
497
 
498
  #: ../admin/constants.php:11 ../admin/constants.php:14
499
  msgid "database"
500
+ msgstr "base de datos"
501
 
502
  #: ../admin/constants.php:14
503
  msgid "files"
504
+ msgstr "archivos"
505
 
506
  #: ../admin/constants.php:17
507
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
508
+ msgstr "Intenta envíar una copia de tus datos. Introduce un email al que enviar las copias de seguridad. Por defecto %s."
509
 
510
  #: ../admin/constants.php:20
511
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
512
+ msgstr "Lista de archivos o directorios a excluir en las copias de seguridad, separados por comas."
513
 
514
  #: ../admin/menu.php:10 ../admin/page.php:5
515
  msgid "Manage Backups"
516
+ msgstr "Gestionar copias de seguridad"
517
 
518
  #: ../admin/menu.php:10 ../admin/menu.php:34
519
  msgid "Backups"
520
+ msgstr "Copias de seguridad"
521
 
522
  #: ../admin/menu.php:69
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
+ msgstr "No estás usando la última versión estable de BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
+ msgstr "Preguntas frecuentes (FAQ)"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
+ msgstr "Constantes"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
+ msgstr "Para más información:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
+ msgstr "Foros de soporte"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
+ msgstr "Ayuda en la traducción"
545
 
546
  #: ../admin/page.php:13
547
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
548
+ msgstr "Necesitas arreglar los problemas detallados antes de poder comenzar BackUpWordPress."
549
 
550
  #: ../admin/schedule-form-excludes.php:19
551
  msgid "Preview"
552
+ msgstr "Previsualizar"
553
 
554
  #: ../admin/schedule-form-excludes.php:29
555
  msgid "Exclude Rules"
556
+ msgstr "Reglas de exclusión"
557
 
558
  #: ../admin/schedule-form-excludes.php:52
559
  msgid "Remove"
560
+ msgstr "Eliminar"
561
 
562
  #: ../admin/schedule-form-excludes.php:71
563
  msgid "Excluded"
564
+ msgstr "Excluído"
565
 
566
  #: ../admin/schedule-form-excludes.php:75
567
  msgid "Included"
568
+ msgstr "Incluído"
569
 
570
  #: ../admin/schedule-form-excludes.php:79
571
  msgid "Unreadable"
572
+ msgstr "No legible"
573
 
574
  #: ../admin/schedule-form-excludes.php:107
575
  msgid "Unreadable files can't be backed up"
576
+ msgstr "No se puede hacer copia de seguridad de los archivos no legibles"
577
 
578
  #: ../admin/schedule-form-excludes.php:113
579
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
580
+ msgstr "Tu sitio es %s. Las copias de seguridad se comprimirán y por tanto serán más pequeñas."
581
 
582
  #: ../admin/schedule-form.php:11
583
  msgid "Backup"
584
+ msgstr "Copia de seguridad"
585
 
586
  #: ../admin/schedule-form.php:14
587
  msgid "Both Database &amp; files"
588
+ msgstr "Base de datos y archivos"
589
 
590
  #: ../admin/schedule-form.php:15
591
  msgid "Files only"
592
+ msgstr "Archivos sólo"
593
 
594
  #: ../admin/schedule-form.php:16
595
  msgid "Database only"
596
+ msgstr "Base de datos sólo"
597
 
598
  #: ../functions/interface.php:221
599
  msgid "Files"
600
+ msgstr "Archivos"
601
 
602
  #: ../admin/schedule-form-excludes.php:7
603
  msgid "Manage Excludes"
604
+ msgstr "Gestiona las exclusiones"
605
 
606
  #: ../admin/schedule-form.php:23
607
  msgid "Schedule"
608
+ msgstr "Programa"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
+ msgstr "Actualizar"
613
 
614
  #: ../admin/schedule.php:19
615
  msgid "hourly at %s minutes past the hour"
616
+ msgstr "cada hora, %s minutos después de las horas en punto"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
+ msgstr "Ejecutar ahora"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
+ msgstr "Eliminar"
625
 
626
  #: ../plugin.php:66
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
+ msgstr "BackUpWordPress requiere una versión de PHP 5.2.4 o superior."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
+ msgstr "Copia de seguridad de %s"
633
 
634
  #: ../functions/core.php:288
635
  msgid "This %s file ensures that other people cannot download your backup files."
636
+ msgstr "El archivo de seguridad %s evita que otros puedan descargar tus copias de seguridad."
languages/hmbkp-eu_EU.mo CHANGED
Binary file
languages/hmbkp-eu_EU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr ""
367
 
@@ -369,7 +381,7 @@ msgstr ""
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr ""
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr ""
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr ""
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr ""
613
 
@@ -615,7 +623,7 @@ msgstr ""
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:47+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr ""
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr ""
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr ""
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr ""
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr ""
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr ""
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr ""
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr ""
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr ""
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr ""
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr ""
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr ""
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
languages/hmbkp-fr_FR.mo CHANGED
Binary file
languages/hmbkp-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,615 +10,627 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
14
- msgid "You can email details of this error to %s so they can look into the issue."
 
 
 
 
15
  msgstr ""
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: ../functions/core.php:204
18
  msgid "Once Hourly"
19
- msgstr ""
20
 
21
  #: ../functions/core.php:205
22
  msgid "Twice Daily"
23
- msgstr ""
24
 
25
  #: ../functions/core.php:206
26
  msgid "Once Daily"
27
- msgstr ""
28
 
29
  #: ../functions/core.php:207
30
  msgid "Once Weekly"
31
- msgstr ""
32
 
33
  #: ../functions/core.php:208
34
  msgid "Once Fortnightly"
35
- msgstr ""
36
 
37
  #: ../functions/core.php:209
38
  msgid "Once Monthly"
39
- msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
- msgstr ""
44
 
45
  #: ../admin/page.php:17
46
  msgid "If your finding BackUpWordPress useful, please %s."
47
- msgstr ""
48
 
49
  #: ../admin/schedule-form-excludes.php:13
50
  msgid "New Exclude Rule[s]"
51
- msgstr ""
52
-
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
 
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
- msgstr ""
60
 
61
  #: ../admin/page.php:19
62
  msgid "If you need help getting things working then check the FAQ by clicking on help in the top right hand corner of this page."
63
- msgstr ""
64
 
65
  #: ../admin/page.php:17
66
  msgid "rate it on the plugin directory"
67
- msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
- msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
- msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
- msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
- msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
- msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
- msgstr ""
92
 
93
  #: ../classes/wp-cli.php:16
94
  msgid "BackUpWordPress may not work when php is running with %s on"
95
- msgstr ""
96
 
97
  #: ../functions/interface.php:72
98
  msgid "%1$s is running in %2$s, please contact your host and ask them to disable it. BackUpWordPress may not work correctly whilst %3$s is on."
99
- msgstr ""
100
 
101
  #: ../admin/constants.php:29
102
  msgid "The time that your schedules should run. Defaults to %s."
103
- msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
- msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
- msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
- msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
- msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
- msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
- msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
- msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
- msgstr ""
136
 
137
  #: ../admin/schedule-form-excludes.php:44
138
  msgid "default"
139
- msgstr ""
140
 
141
  #: ../admin/schedule-form-excludes.php:48
142
  msgid "defined"
143
- msgstr ""
144
 
145
  #: ../admin/schedule-form.php:27
146
  msgid "Manual Only"
147
- msgstr ""
148
 
149
  #: ../admin/schedule-form.php:45
150
  msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
151
- msgstr ""
152
 
153
  #: ../admin/schedule.php:4
154
  msgid "this shouldn't take long&hellip;"
155
- msgstr ""
156
 
157
  #: ../admin/schedule.php:4
158
  msgid "calculating the size of your site&hellip;"
159
- msgstr ""
160
 
161
  #: ../admin/schedule.php:12
162
  msgid "The next backup will be on %1$s at %2$s"
163
- msgstr ""
164
 
165
  #: ../admin/schedule.php:37
166
  msgid "every 12 hours at %1$s &amp; %2$s"
167
- msgstr ""
168
 
169
  #: ../admin/schedule.php:43
170
  msgid "weekly on %1$s at %2$s"
171
- msgstr ""
172
 
173
  #: ../admin/schedule.php:49
174
  msgid "fortnightly on %1$s at %2$s"
175
- msgstr ""
176
 
177
  #: ../admin/schedule.php:56
178
  msgid "on the %1$s of each month at %2$s"
179
- msgstr ""
180
 
181
  #: ../admin/schedule.php:62
182
  msgid "manually"
183
- msgstr ""
184
 
185
  #: ../admin/schedule.php:68
186
  msgid "this server"
187
- msgstr ""
188
 
189
  #: ../admin/schedule.php:75
190
  msgid "store the only the last backup on %s"
191
- msgstr ""
192
 
193
  #: ../admin/schedule.php:81
194
  msgid "don't store any backups on %s"
195
- msgstr ""
196
 
197
  #: ../admin/schedule.php:87
198
  msgid "store only the last %1$s backups on %2$s"
199
- msgstr ""
200
 
201
  #: ../admin/schedule.php:96
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
- msgstr ""
204
-
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
 
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
- msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
- msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
- msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
 
 
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
- msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
- msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
- msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
 
 
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
- msgstr ""
248
 
249
  #: ../classes/wp-cli.php:19
250
  msgid "Backup: Dumping database..."
251
- msgstr ""
252
 
253
  #: ../classes/wp-cli.php:23
254
  msgid "Backup: Zipping everything up..."
255
- msgstr ""
256
 
257
  #: ../classes/wp-cli.php:38
258
  msgid "Invalid backup path"
259
- msgstr ""
260
 
261
  #: ../classes/wp-cli.php:43
262
  msgid "Invalid root path"
263
- msgstr ""
264
 
265
  #: ../classes/wp-cli.php:68
266
  msgid "Backup Complete: "
267
- msgstr ""
268
 
269
  #: ../classes/wp-cli.php:71
270
  msgid "Backup Failed"
271
- msgstr ""
272
 
273
  #: ../functions/core.php:189
274
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
275
- msgstr ""
276
 
277
  #: ../functions/interface.php:229
278
  msgid "Legacy"
279
- msgstr ""
280
 
281
  #: ../functions/interface.php:62
282
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
283
- msgstr ""
284
 
285
  #: ../functions/interface.php:50
286
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
287
- msgstr ""
288
 
289
  #: ../functions/core.php:189
290
  msgid "BackUpWordPress has setup your default schedules."
291
- msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
- msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
- msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
- msgstr ""
304
 
305
  #: ../admin/schedule.php:4
306
  msgid "Backups will be compressed and should be smaller than this."
307
- msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
- msgstr ""
312
 
313
  #: ../admin/schedule.php:19
314
  msgid "hourly on the hour"
315
- msgstr ""
316
 
317
  #: ../admin/schedule.php:25
318
  msgid "daily at %s"
319
- msgstr ""
320
 
321
  #: ../admin/schedule-form.php:41
322
  msgid "Number of backups to store on this server"
323
- msgstr ""
324
 
325
  #: ../admin/schedule-form.php:7
326
  msgid "Schedule Settings"
327
- msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
- msgstr ""
332
 
333
  #: ../admin/menu.php:69
334
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
335
- msgstr ""
336
 
337
  #: ../admin/constants.php:26
338
  msgid "The root directory that is backed up. Defaults to %s."
339
- msgstr ""
340
 
341
  #: ../admin/constants.php:23
342
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
343
- msgstr ""
344
 
345
  #: ../admin/constants.php:14
346
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
347
- msgstr ""
348
 
349
  #: ../plugin.php:77
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
- msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
- msgstr ""
356
 
357
  #: ../admin/constants.php:11
358
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
359
- msgstr ""
360
 
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
- msgstr ""
367
 
368
  #: ../admin/constants.php:3
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
- msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
- msgstr ""
375
 
376
  #: ../functions/interface.php:72
377
  msgid "http://php.net/manual/en/features.safe-mode.php"
378
- msgstr ""
379
 
380
  #: ../functions/interface.php:72
381
  msgid "Safe Mode"
382
- msgstr ""
383
 
384
  #: ../functions/interface.php:82
385
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
386
- msgstr ""
387
 
388
  #: ../functions/interface.php:92
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
- msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
- msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
- msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
- msgstr ""
403
 
404
  #: ../functions/interface.php:27
405
  msgid "Download"
406
- msgstr ""
407
 
408
  #: ../functions/interface.php:50 ../functions/interface.php:62
409
  msgid "BackUpWordPress is almost ready."
410
- msgstr ""
411
 
412
  #: ../functions/interface.php:102
413
  msgid "BackUpWordPress detected issues with your last backup."
414
- msgstr ""
415
 
416
  #: ../functions/interface.php:218
417
  msgid "Database and Files"
418
- msgstr ""
419
 
420
  #: ../functions/interface.php:224
421
  msgid "Database"
422
- msgstr ""
423
-
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
 
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
- msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
- msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
- msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
- msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
- msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
- msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
- msgstr ""
457
 
458
  #: ../admin/backups.php:13
459
  msgid "add schedule"
460
- msgstr ""
461
 
462
  #: ../admin/backups.php:37
463
  msgid "Size"
464
- msgstr ""
465
 
466
  #: ../admin/backups.php:38
467
  msgid "Type"
468
- msgstr ""
469
 
470
  #: ../admin/backups.php:39
471
  msgid "Actions"
472
- msgstr ""
473
 
474
  #: ../admin/backups.php:64
475
  msgid "This is where your backups will appear once you have one."
476
- msgstr ""
477
 
478
  #: ../admin/constants.php:3
479
  msgid "The Codex can help"
480
- msgstr ""
481
 
482
  #: ../admin/constants.php:8
483
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
484
- msgstr ""
485
 
486
  #: ../admin/constants.php:11 ../admin/constants.php:14
487
  msgid "database"
488
- msgstr ""
489
 
490
  #: ../admin/constants.php:14
491
  msgid "files"
492
- msgstr ""
493
 
494
  #: ../admin/constants.php:17
495
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
496
- msgstr ""
497
 
498
  #: ../admin/constants.php:20
499
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
500
- msgstr ""
501
 
502
  #: ../admin/menu.php:10 ../admin/page.php:5
503
  msgid "Manage Backups"
504
- msgstr ""
505
 
506
  #: ../admin/menu.php:10 ../admin/menu.php:34
507
  msgid "Backups"
508
- msgstr ""
509
 
510
  #: ../admin/menu.php:69
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
- msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
- msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
- msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
- msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
- msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
- msgstr ""
533
 
534
  #: ../admin/page.php:13
535
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
536
- msgstr ""
537
 
538
  #: ../admin/schedule-form-excludes.php:19
539
  msgid "Preview"
540
- msgstr ""
541
 
542
  #: ../admin/schedule-form-excludes.php:29
543
  msgid "Exclude Rules"
544
- msgstr ""
545
 
546
  #: ../admin/schedule-form-excludes.php:52
547
  msgid "Remove"
548
- msgstr ""
549
 
550
  #: ../admin/schedule-form-excludes.php:71
551
  msgid "Excluded"
552
- msgstr ""
553
 
554
  #: ../admin/schedule-form-excludes.php:75
555
  msgid "Included"
556
- msgstr ""
557
 
558
  #: ../admin/schedule-form-excludes.php:79
559
  msgid "Unreadable"
560
- msgstr ""
561
 
562
  #: ../admin/schedule-form-excludes.php:107
563
  msgid "Unreadable files can't be backed up"
564
- msgstr ""
565
 
566
  #: ../admin/schedule-form-excludes.php:113
567
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
568
- msgstr ""
569
 
570
  #: ../admin/schedule-form.php:11
571
  msgid "Backup"
572
- msgstr ""
573
 
574
  #: ../admin/schedule-form.php:14
575
  msgid "Both Database &amp; files"
576
- msgstr ""
577
 
578
  #: ../admin/schedule-form.php:15
579
  msgid "Files only"
580
- msgstr ""
581
 
582
  #: ../admin/schedule-form.php:16
583
  msgid "Database only"
584
- msgstr ""
585
 
586
  #: ../functions/interface.php:221
587
  msgid "Files"
588
- msgstr ""
589
 
590
  #: ../admin/schedule-form-excludes.php:7
591
  msgid "Manage Excludes"
592
- msgstr ""
593
 
594
  #: ../admin/schedule-form.php:23
595
  msgid "Schedule"
596
- msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
- msgstr ""
601
 
602
  #: ../admin/schedule.php:19
603
  msgid "hourly at %s minutes past the hour"
604
- msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
- msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
- msgstr ""
613
 
614
  #: ../plugin.php:66
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
- msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
- msgstr ""
621
 
622
  #: ../functions/core.php:288
623
  msgid "This %s file ensures that other people cannot download your backup files."
624
- msgstr ""
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
  msgstr ""
20
 
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr "Vous pouvez envoyez les détails de cette erreur par e-mail ) %s afin qu'il l'analyse."
36
+
37
  #: ../functions/core.php:204
38
  msgid "Once Hourly"
39
+ msgstr "Chaque heure"
40
 
41
  #: ../functions/core.php:205
42
  msgid "Twice Daily"
43
+ msgstr "2 fois par jour"
44
 
45
  #: ../functions/core.php:206
46
  msgid "Once Daily"
47
+ msgstr "Quotidienne"
48
 
49
  #: ../functions/core.php:207
50
  msgid "Once Weekly"
51
+ msgstr "Une fois par semaine"
52
 
53
  #: ../functions/core.php:208
54
  msgid "Once Fortnightly"
55
+ msgstr "Toutes les 2 semaines"
56
 
57
  #: ../functions/core.php:209
58
  msgid "Once Monthly"
59
+ msgstr "Une fois par mois"
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
+ msgstr "Contacter l'aide par courrier électronique"
64
 
65
  #: ../admin/page.php:17
66
  msgid "If your finding BackUpWordPress useful, please %s."
67
+ msgstr "Si vous trouvez BackUpWordPress utile, vous pouvez %s."
68
 
69
  #: ../admin/schedule-form-excludes.php:13
70
  msgid "New Exclude Rule[s]"
71
+ msgstr "Nouvelle(s) règle(s) d'exclusion"
 
 
 
 
72
 
73
+ #: ../admin/actions.php:501
74
  msgid "Here's the response from the server:"
75
+ msgstr "Voici la réponse du serveur :"
76
 
77
  #: ../admin/page.php:19
78
  msgid "If you need help getting things working then check the FAQ by clicking on help in the top right hand corner of this page."
79
+ msgstr "Si vous avez besoin d'aide n'hésitez pas à consulter la FAQ en cliquant sur 'Aide' dans la partie supérieure droite de cette page."
80
 
81
  #: ../admin/page.php:17
82
  msgid "rate it on the plugin directory"
83
+ msgstr "lui donner une note dans le catalogue des extensions"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
+ msgstr "Début de la sauvegarde"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
+ msgstr "Export de la base de données %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
+ msgstr "Vérification de l'export de la base de données %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
+ msgstr "Création de l'archive zip %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
+ msgstr "Vérification de l'archive zip %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
+ msgstr "Fin de la sauvegarde"
108
 
109
  #: ../classes/wp-cli.php:16
110
  msgid "BackUpWordPress may not work when php is running with %s on"
111
+ msgstr "BackUpWordPress peut ne pas fonctionner correctement lorsque PHP s'exécute avec %s activé"
112
 
113
  #: ../functions/interface.php:72
114
  msgid "%1$s is running in %2$s, please contact your host and ask them to disable it. BackUpWordPress may not work correctly whilst %3$s is on."
115
+ msgstr "%1$s s'exécute dans %2$s, merci de contacter votre hébergeur et de lui demande de désactiver cela. BackUpWordPress peut ne pas fonctionner correctement tant que %3$s est activé."
116
 
117
  #: ../admin/constants.php:29
118
  msgid "The time that your schedules should run. Defaults to %s."
119
+ msgstr "L'heure à laquelle vos sauvegardes seront effectuées. Par défaut : %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
+ msgstr "Etes-vous sûr(e) de vouloir supprimer cette planification de sauvegarde ? Toutes les sauvegardes associées seront aussi supprimées."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
+ msgstr "'Annuler' pour revenir en arrière, 'OK' pour supprimer."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
+ msgstr "Etes-vous sûr(e) de vouloir supprimer cette sauvegarde ?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
+ msgstr "Etes-vous sûr(e) de vouloir supprimer cette règle d'exclusion ?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
+ msgstr "Réduire le nombre de sauvegardes stockées sur le serveur supprimera certaines de vos sauvegardes. Etes-vous sûr(e) de vouloir effectuer cette action ?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
+ msgstr "Le nombre maximum de sauvegarde doit être indiqué"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
+ msgstr "Le nombre maximum de sauvegardes doit être supérieur à 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
+ msgstr "Exclure"
152
 
153
  #: ../admin/schedule-form-excludes.php:44
154
  msgid "default"
155
+ msgstr "par défaut"
156
 
157
  #: ../admin/schedule-form-excludes.php:48
158
  msgid "defined"
159
+ msgstr "défini"
160
 
161
  #: ../admin/schedule-form.php:27
162
  msgid "Manual Only"
163
+ msgstr "Manuellement"
164
 
165
  #: ../admin/schedule-form.php:45
166
  msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
167
+ msgstr "Passée cette limite les sauvegardes les plus anciennes seront supprimées automatiquement."
168
 
169
  #: ../admin/schedule.php:4
170
  msgid "this shouldn't take long&hellip;"
171
+ msgstr "cela ne devrait pas être long&hellip;"
172
 
173
  #: ../admin/schedule.php:4
174
  msgid "calculating the size of your site&hellip;"
175
+ msgstr "calcul de la taille de votre site&hellip;"
176
 
177
  #: ../admin/schedule.php:12
178
  msgid "The next backup will be on %1$s at %2$s"
179
+ msgstr "La prochaine sauvegarde aura lieu le %1$s à %2$s"
180
 
181
  #: ../admin/schedule.php:37
182
  msgid "every 12 hours at %1$s &amp; %2$s"
183
+ msgstr "toutes les 12 heures à %1$s &amp; %2$s"
184
 
185
  #: ../admin/schedule.php:43
186
  msgid "weekly on %1$s at %2$s"
187
+ msgstr "toutes les semaines le %1$s à %2$s"
188
 
189
  #: ../admin/schedule.php:49
190
  msgid "fortnightly on %1$s at %2$s"
191
+ msgstr "toutes les 2 semaines à %1$s at %2$s"
192
 
193
  #: ../admin/schedule.php:56
194
  msgid "on the %1$s of each month at %2$s"
195
+ msgstr "le %1$s de chaque mois à %2$s"
196
 
197
  #: ../admin/schedule.php:62
198
  msgid "manually"
199
+ msgstr "manuellement"
200
 
201
  #: ../admin/schedule.php:68
202
  msgid "this server"
203
+ msgstr "ce serveur"
204
 
205
  #: ../admin/schedule.php:75
206
  msgid "store the only the last backup on %s"
207
+ msgstr "Stocker uniquement la dernière sauvegarde sur %s"
208
 
209
  #: ../admin/schedule.php:81
210
  msgid "don't store any backups on %s"
211
+ msgstr "ne stocker aucune sauvegarde sur %s"
212
 
213
  #: ../admin/schedule.php:87
214
  msgid "store only the last %1$s backups on %2$s"
215
+ msgstr "Stocker uniquement les %1$s dernières sauvegardes sur %2$s"
216
 
217
  #: ../admin/schedule.php:96
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
+ msgstr "Sauvegarder ma %2$s de %1$s %3$s. %4$s. %5$s"
 
 
 
 
220
 
221
+ #: ../classes/email.php:142
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
+ msgstr "BackUpWordPress n'a pu sauvegarder votre site %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
+ msgstr "Voici les erreurs rencontrées :"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
+ msgstr "Si les erreurs décrites ci-dessus sont pour vous du chinois, transférez nous ce courrier électronique à %3$s et nous y jetterons un coup d'oeil"
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
+ "Cordialement,\n"
239
+ "Le robot de sauvegarde de BackUpWordPress"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
+ msgstr "BackUpWordPress a effectué une sauvegarde de votre site %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
+ msgstr "Le fichier de sauvegarde devrait être joint à ce courrier électronique."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
+ msgstr "Vous pouvez télécharger le fichier de sauvegarde en cliquant sur le lien suivant :"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
257
  msgstr ""
258
+ "Cordialement,\n"
259
+ "Le robot de sauvegarde de BackUpWordPress"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
+ msgstr "Malheureusement le fichier de sauvegarde est trop gros pour être joint à ce courrier électronique."
264
 
265
  #: ../classes/wp-cli.php:19
266
  msgid "Backup: Dumping database..."
267
+ msgstr "Sauvegarde : Export de la base de données..."
268
 
269
  #: ../classes/wp-cli.php:23
270
  msgid "Backup: Zipping everything up..."
271
+ msgstr "Sauvegarde : compression des données"
272
 
273
  #: ../classes/wp-cli.php:38
274
  msgid "Invalid backup path"
275
+ msgstr "Le chemin de sauvegarde est invalide"
276
 
277
  #: ../classes/wp-cli.php:43
278
  msgid "Invalid root path"
279
+ msgstr "Le chemin racine est invalide"
280
 
281
  #: ../classes/wp-cli.php:68
282
  msgid "Backup Complete: "
283
+ msgstr "Sauvegarde terminée :"
284
 
285
  #: ../classes/wp-cli.php:71
286
  msgid "Backup Failed"
287
+ msgstr "La sauvegarde a échoué"
288
 
289
  #: ../functions/core.php:189
290
  msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
291
+ msgstr "Par défaut, BackUpWordPress effectue une sauvegarde suotidienne de votre base de données et une sauvegarde hebdomadaire de votre base de données &amp; des fichiers. Vous pouvez modifier cette fréquence."
292
 
293
  #: ../functions/interface.php:229
294
  msgid "Legacy"
295
+ msgstr "Contribution"
296
 
297
  #: ../functions/interface.php:62
298
  msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
299
+ msgstr "Votre dossier de sauvegarde n'a pas l'autorisation d'écriture. Exécutez %1$s ou %2$s, ou réglez les permissions adéquates."
300
 
301
  #: ../functions/interface.php:50
302
  msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
303
+ msgstr "Le dossier de sauvegarde ne peut être créé car le dossier %1$s n'a pas l'autorisation d'écriture. Exécutez %2$s ou %3$s, ou réglez les permissions adéquates."
304
 
305
  #: ../functions/core.php:189
306
  msgid "BackUpWordPress has setup your default schedules."
307
+ msgstr "BackUpWordPress a réglé les planifications de sauvegarde par défaut."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
+ msgstr "La sauvegarde de %s a échoué"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
+ msgstr "Envoyer une confirmation par courrier électronique à %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
+ msgstr "%s n'est pas une adresse électronique valide"
320
 
321
  #: ../admin/schedule.php:4
322
  msgid "Backups will be compressed and should be smaller than this."
323
+ msgstr "Les sauvegardes seront compressées et seront plus petites que la taille indiquée ici."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
+ msgstr "Confirmation par courrier électronique"
328
 
329
  #: ../admin/schedule.php:19
330
  msgid "hourly on the hour"
331
+ msgstr "chaque heure"
332
 
333
  #: ../admin/schedule.php:25
334
  msgid "daily at %s"
335
+ msgstr "chaque jour à %s"
336
 
337
  #: ../admin/schedule-form.php:41
338
  msgid "Number of backups to store on this server"
339
+ msgstr "Nombre de sauvegarde à conserver sur ce serveur "
340
 
341
  #: ../admin/schedule-form.php:7
342
  msgid "Schedule Settings"
343
+ msgstr "Paramètres de planification"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
+ msgstr "Fermer"
348
 
349
  #: ../admin/menu.php:69
350
  msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
351
+ msgstr "Les informations ci-dessous concernent la version %1$s. Consultez le fichier %2$s pour une aide spécifique à la version %3$s."
352
 
353
  #: ../admin/constants.php:26
354
  msgid "The root directory that is backed up. Defaults to %s."
355
+ msgstr "Le répertoire racine à sauvegarder. Par défaut : %s."
356
 
357
  #: ../admin/constants.php:23
358
  msgid "The capability to use when calling %1$s. Defaults to %2$s."
359
+ msgstr "La capacité à utiliser quand %1$s est appelé. Par défaut : %2$s."
360
 
361
  #: ../admin/constants.php:14
362
  msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
363
+ msgstr "Le chemin vers l'exécutable %1$s. Il sera utilisé pour compresser %2$s et %3$s s'il est présent."
364
 
365
  #: ../plugin.php:77
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
+ msgstr "BackUpWordPress nécessite WordPress version %s ou plus récent."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
+ msgstr "Annuler"
372
 
373
  #: ../admin/constants.php:11
374
  msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
375
+ msgstr "Le chemin de l'exécutable %1$s. Il sera utilisé pour la partie %2$s de la sauvegarde, s'il est présent."
376
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
+ msgstr "ex."
383
 
384
  #: ../admin/constants.php:3
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
+ msgstr "Vous pouvez %1$s chacun des prochains %2$s dans votre %3$s pour régler les paramètres avancés. %4$s. %5$s défini sera souligné."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
+ msgstr "%1$s retourne une réponse %2$s. Cela peut signifier que les tâches Cron ne se déclenchent pas correctement. BackUpWordPress se repose sur wp-cron pour exécuter les sauvegardes. Consultez %3$s pour plus de détails."
391
 
392
  #: ../functions/interface.php:72
393
  msgid "http://php.net/manual/en/features.safe-mode.php"
394
+ msgstr "http://php.net/manual/en/features.safe-mode.php"
395
 
396
  #: ../functions/interface.php:72
397
  msgid "Safe Mode"
398
+ msgstr "Mode sans échec"
399
 
400
  #: ../functions/interface.php:82
401
  msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
402
+ msgstr "Le dossier de sauvegarde %1$s n'existe pas et ne peut être créé. Vos sauvegardes seront stockées dans %2$s."
403
 
404
  #: ../functions/interface.php:92
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
+ msgstr "Le dossier de sauvegarde %1$s n'a pas l'autorisation d'écriture. Les nouvelles sauvegardes seront stockées dans %2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
+ msgstr "annuler"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
+ msgstr "Paramètres"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
+ msgstr "Exclusions"
419
 
420
  #: ../functions/interface.php:27
421
  msgid "Download"
422
+ msgstr "Télécharger"
423
 
424
  #: ../functions/interface.php:50 ../functions/interface.php:62
425
  msgid "BackUpWordPress is almost ready."
426
+ msgstr "BackUpWordPress a presque terminé."
427
 
428
  #: ../functions/interface.php:102
429
  msgid "BackUpWordPress detected issues with your last backup."
430
+ msgstr "BackUpWordPress a détecté des problèmes lors de la dernière sauvegarde."
431
 
432
  #: ../functions/interface.php:218
433
  msgid "Database and Files"
434
+ msgstr "Base de données et fichiers"
435
 
436
  #: ../functions/interface.php:224
437
  msgid "Database"
438
+ msgstr "Base de données"
 
 
 
 
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
+ msgstr "BackUpWordPress a détecté un problème."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
+ msgstr "Le type de sauvegarde doit être indiqué"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
+ msgstr "Le type de sauvegarde est invalide"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
+ msgstr "La planification doit être indiquée"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
+ msgstr "Planification invalide"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
+ msgstr "Le nombre maximum de sauvegardes doit être un nombre"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
+ msgstr "%s ne correspond à aucun fichier."
469
 
470
  #: ../admin/backups.php:13
471
  msgid "add schedule"
472
+ msgstr "ajouter une planification"
473
 
474
  #: ../admin/backups.php:37
475
  msgid "Size"
476
+ msgstr "Taille"
477
 
478
  #: ../admin/backups.php:38
479
  msgid "Type"
480
+ msgstr "Type"
481
 
482
  #: ../admin/backups.php:39
483
  msgid "Actions"
484
+ msgstr "Actions"
485
 
486
  #: ../admin/backups.php:64
487
  msgid "This is where your backups will appear once you have one."
488
+ msgstr "Aucune sauvegarde n'a été effectuée pour le moment."
489
 
490
  #: ../admin/constants.php:3
491
  msgid "The Codex can help"
492
+ msgstr "Le Codex peut vous aider"
493
 
494
  #: ../admin/constants.php:8
495
  msgid "The path to folder you would like to store your backup files in, defaults to %s."
496
+ msgstr "Le chemin du dossier de sauvegarde. Par défaut : %s."
497
 
498
  #: ../admin/constants.php:11 ../admin/constants.php:14
499
  msgid "database"
500
+ msgstr "base de données"
501
 
502
  #: ../admin/constants.php:14
503
  msgid "files"
504
+ msgstr "fichiers"
505
 
506
  #: ../admin/constants.php:17
507
  msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
508
+ msgstr "Essaie d'envoyer une copie de vos sauvegardes par courrier électronique. La valeur doit être l'adresse électronique à laquelle envoyer les sauvegardes. Par défaut : %s."
509
 
510
  #: ../admin/constants.php:20
511
  msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
512
+ msgstr "Liste, séparée par des virgules, des dossiers à exclure. Le dossier de sauvegarde est automatiquement exclu."
513
 
514
  #: ../admin/menu.php:10 ../admin/page.php:5
515
  msgid "Manage Backups"
516
+ msgstr "Gérer les sauvegardes"
517
 
518
  #: ../admin/menu.php:10 ../admin/menu.php:34
519
  msgid "Backups"
520
+ msgstr "Sauvegardes"
521
 
522
  #: ../admin/menu.php:69
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
+ msgstr "Vous n'utilisez pas la dernière version stable de BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
+ msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
+ msgstr "Constantes"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
+ msgstr "Pour plus d'informations :"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
+ msgstr "Forums d'entraide"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
+ msgstr "Aider à la traduction"
545
 
546
  #: ../admin/page.php:13
547
  msgid "You need to fix the issues detailed above before BackUpWordPress can start."
548
+ msgstr "Vous devez corriger les problèmes détaillés ci-dessus avant que BackUpWordPress puisse fonctionner."
549
 
550
  #: ../admin/schedule-form-excludes.php:19
551
  msgid "Preview"
552
+ msgstr "Aperçu"
553
 
554
  #: ../admin/schedule-form-excludes.php:29
555
  msgid "Exclude Rules"
556
+ msgstr "Règles d'exclusion"
557
 
558
  #: ../admin/schedule-form-excludes.php:52
559
  msgid "Remove"
560
+ msgstr "Supprimer"
561
 
562
  #: ../admin/schedule-form-excludes.php:71
563
  msgid "Excluded"
564
+ msgstr "Exclus"
565
 
566
  #: ../admin/schedule-form-excludes.php:75
567
  msgid "Included"
568
+ msgstr "Inclus"
569
 
570
  #: ../admin/schedule-form-excludes.php:79
571
  msgid "Unreadable"
572
+ msgstr "Illisible"
573
 
574
  #: ../admin/schedule-form-excludes.php:107
575
  msgid "Unreadable files can't be backed up"
576
+ msgstr "Les fichiers illisibles ne peuvent être sauvegardé"
577
 
578
  #: ../admin/schedule-form-excludes.php:113
579
  msgid "Your site is %s. Backups will be compressed and so will be smaller."
580
+ msgstr "Votre site est %s. Les sauvegardes seront compressées afin de prendre moins d'espace."
581
 
582
  #: ../admin/schedule-form.php:11
583
  msgid "Backup"
584
+ msgstr "Sauvegarde"
585
 
586
  #: ../admin/schedule-form.php:14
587
  msgid "Both Database &amp; files"
588
+ msgstr "Base de données &amp; fichiers"
589
 
590
  #: ../admin/schedule-form.php:15
591
  msgid "Files only"
592
+ msgstr "Seulement les fichiers"
593
 
594
  #: ../admin/schedule-form.php:16
595
  msgid "Database only"
596
+ msgstr "Seulement la base de données"
597
 
598
  #: ../functions/interface.php:221
599
  msgid "Files"
600
+ msgstr "Fichiers"
601
 
602
  #: ../admin/schedule-form-excludes.php:7
603
  msgid "Manage Excludes"
604
+ msgstr "Gérer les exclusions"
605
 
606
  #: ../admin/schedule-form.php:23
607
  msgid "Schedule"
608
+ msgstr "Fréquence"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
+ msgstr "Enregistrer"
613
 
614
  #: ../admin/schedule.php:19
615
  msgid "hourly at %s minutes past the hour"
616
+ msgstr "toutes les heures, %s minutes après l'heure pile"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
+ msgstr "Exécuter maintenant"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
+ msgstr "Supprimer"
625
 
626
  #: ../plugin.php:66
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
+ msgstr "BackUpWordPress nécessite PHP version 5.2.4 ou plus récent."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
+ msgstr "Sauvegarde de %s"
633
 
634
  #: ../functions/core.php:288
635
  msgid "This %s file ensures that other people cannot download your backup files."
636
+ msgstr "Ce fichier %s permet de s'assurer que personne d'autre ne puisse télécharger vos fichiers de sauvegarde."
languages/hmbkp-he_HE.mo CHANGED
Binary file
languages/hmbkp-he_HE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr "BackUpWordPress הגדיר את תזמוני ברירת-המחדל שלך."
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr "גיבוי של %s נכשל"
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr "שלח התראה בדוא\"ל אל %s"
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr "%s אינו דוא\"ל חוקי"
304
 
@@ -306,7 +318,7 @@ msgstr "%s אינו דוא\"ל חוקי"
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr "גיבויים ידחסו וצריכים להיות קטנים יותר מזה."
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr "התראה בדוא\"ל"
312
 
@@ -326,7 +338,7 @@ msgstr "מספר גיבויים לאחסון על שרת זה"
326
  msgid "Schedule Settings"
327
  msgstr "הגדרות תזמון"
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr "סגור"
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr "BackUpWordPress דורש וורדפרס גרסה %s או יותר."
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr "ביטול"
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr "למשל"
367
 
@@ -369,7 +381,7 @@ msgstr "למשל"
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr "ספריית הגיבויים המותאמת אישית שלך %1$s לא
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr "ספריית הגיבויים המותאמת אישית שלך %1$s לא ניתנת לכתיבה, גיבויים חדשים ישמרו ב-%2$s במקום."
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr "ביטול"
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr "הגדרות"
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr "לא כלולים"
403
 
@@ -421,37 +433,33 @@ msgstr "מסד נתונים וקבצים"
421
  msgid "Database"
422
  msgstr "מסד נתונים"
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr "הקבצים הבאים אינם קריאים ולא היה ניתן לגבות אותם:"
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr "BackUpWordPress זיהה בעיה."
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr "סוג הגיבוי אינו יכול להיות ריק"
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr "סוג גיבוי לא חוקי"
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr "תזמון אינו יכול להיות ריק"
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr "תזמון לא חוקי"
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr "מספר גיבויים מקסימלי חייב להיות מספר"
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr "%s לא תאם אף קובץ."
457
 
@@ -511,23 +519,23 @@ msgstr "גיבויים"
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr "אינך משתמש בגרסה האחרונה היציבה של BackUpWordPress"
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr "שאלות נפוצות"
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr "למידע נוסף:"
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr "פורומי תמיכה"
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr "עזרה עם תרגום"
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr "תזמון"
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr "עדכן"
601
 
@@ -603,11 +611,11 @@ msgstr "עדכן"
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr "פעם בשעה %s דקות לאחר תחילת השעה"
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr "גבה עכשיו"
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr "מחק"
613
 
@@ -615,7 +623,7 @@ msgstr "מחק"
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr "BackUpWordPress דורש PHP גרסה 5.2.4 או יותר."
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr "גיבוי של %s"
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr "BackUpWordPress הגדיר את תזמוני ברירת-המחדל שלך."
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr "גיבוי של %s נכשל"
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr "שלח התראה בדוא\"ל אל %s"
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr "%s אינו דוא\"ל חוקי"
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr "גיבויים ידחסו וצריכים להיות קטנים יותר מזה."
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr "התראה בדוא\"ל"
324
 
338
  msgid "Schedule Settings"
339
  msgstr "הגדרות תזמון"
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr "סגור"
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr "BackUpWordPress דורש וורדפרס גרסה %s או יותר."
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr "ביטול"
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr "למשל"
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr "ספריית הגיבויים המותאמת אישית שלך %1$s לא ניתנת לכתיבה, גיבויים חדשים ישמרו ב-%2$s במקום."
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr "ביטול"
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr "הגדרות"
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr "לא כלולים"
415
 
433
  msgid "Database"
434
  msgstr "מסד נתונים"
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr "BackUpWordPress זיהה בעיה."
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr "סוג הגיבוי אינו יכול להיות ריק"
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr "סוג גיבוי לא חוקי"
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr "תזמון אינו יכול להיות ריק"
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr "תזמון לא חוקי"
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr "מספר גיבויים מקסימלי חייב להיות מספר"
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr "%s לא תאם אף קובץ."
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr "אינך משתמש בגרסה האחרונה היציבה של BackUpWordPress"
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr "שאלות נפוצות"
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr "למידע נוסף:"
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr "פורומי תמיכה"
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr "עזרה עם תרגום"
541
 
603
  msgid "Schedule"
604
  msgstr "תזמון"
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr "עדכן"
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr "פעם בשעה %s דקות לאחר תחילת השעה"
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr "גבה עכשיו"
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr "מחק"
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr "BackUpWordPress דורש PHP גרסה 5.2.4 או יותר."
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr "גיבוי של %s"
629
 
languages/hmbkp-it_IT.mo CHANGED
Binary file
languages/hmbkp-it_IT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Email al supporto"
44
 
@@ -50,11 +70,7 @@ msgstr "Se trovi BackUpWordPress utile, per favore %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Nuove regole di esclusione"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Il tuo backup è fallito"
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Ecco la risposta del server:"
60
 
@@ -66,27 +82,27 @@ msgstr "Se hai bisogno di aiuto controlla le FAQ cliccando su \"Aiuto\" nell'ang
66
  msgid "rate it on the plugin directory"
67
  msgstr "valutalo nella directory dei plugin"
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Avvio backup"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Dumping Database %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Verifica Database Dump %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Creazione archivio zip %s "
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Verifica archivio zip %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Termino il backup"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s è in esecuzione in %2$s, si prega di contattare il tuo host e chie
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Quando si deve avviare la tua pianificazione. Il valore predefinito è %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Sei sicuro di voler cancellare questa pianificazione? Tutti i backup verranno eliminati."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "\"Annulla\" per tornare indietro, \"OK\" per cancellare."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Sei sicuro di voler cancellare questo backup?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Sei sicuro di voler rimuovere questa regola di esclusione?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "La riduzione del numero di backup che sono memorizzati sul server causerà la cancellazione di alcuni dei vostri backup esistenti, sei sicuro?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "I backup massimi non devono essere vuoti"
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "I backup massimi devono essere maggiori di 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Escludere"
136
 
@@ -202,23 +218,19 @@ msgstr "memorizza solo gli ultimi %1$s backup su %2$s"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Memorizza %1$s %2$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Ricevi una email di notifica quando un backup è pronto, se il backup è abbastanza piccolo (&lt; 10mb) sarà allegato alla email. Separa più indirizzi e-mail con una virgola."
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "BackUpWordPress non è riuscito a memorizzare il tuo sito %1$s."
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Qui ci sono gli errori riscontrati:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "Se gli errori di cui sopra hanno un aspetto marziano, inoltra questa email a %3$s e gli daremo un'occhiata."
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,25 +238,25 @@ msgstr ""
226
  "Cordiali saluti, \n"
227
  "L'apologetico BackUpWordPress Backup Robot Emailing"
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "BackUpWordPress ha completato un backup del tuo sito %1$s."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "Il file di backup deve essere allegato a questa email."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "È possibile scaricare il file di backup cliccando sul link sottostante:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
245
  msgstr "Cordiali saluti, Il felice BackUpWordPress Backup Robot Emailing"
246
 
247
- #: ../classes/email.php:151
248
  msgid "Unfortunately the backup file was too large to attach to this email."
249
  msgstr "Purtroppo il file di backup è troppo grande da allegare a questa email."
250
 
@@ -292,15 +304,15 @@ msgstr "La directory di backup non può essere creato perché la directory %1$s
292
  msgid "BackUpWordPress has setup your default schedules."
293
  msgstr "BackUpWordPress ha impostato le pianificazioni predefinite."
294
 
295
- #: ../classes/email.php:127
296
  msgid "Backup of %s Failed"
297
  msgstr "Backup di %s fallito"
298
 
299
- #: ../classes/email.php:50
300
  msgid "Send an email notification to %s"
301
  msgstr "Invia una notifica email a %s "
302
 
303
- #: ../classes/email.php:72
304
  msgid "%s isn't a valid email"
305
  msgstr "%s non è un'email valida"
306
 
@@ -308,7 +320,7 @@ msgstr "%s non è un'email valida"
308
  msgid "Backups will be compressed and should be smaller than this."
309
  msgstr "Il backup sarà compresso e dovrebbe occupare meno spazio di questo."
310
 
311
- #: ../classes/email.php:19
312
  msgid "Email notification"
313
  msgstr "Notifica email"
314
 
@@ -328,7 +340,7 @@ msgstr "Numero di backup da memorizzare su questo server"
328
  msgid "Schedule Settings"
329
  msgstr "Impostazioni di pianificazione"
330
 
331
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
332
  msgid "Close"
333
  msgstr "Chiudi"
334
 
@@ -352,7 +364,7 @@ msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per comprimere i t
352
  msgid "BackUpWordPress requires WordPress version %s or greater."
353
  msgstr "BackUpWordPress richiede WordPress versione %s o superiore."
354
 
355
- #: ../plugin.php:143 ../admin/actions.php:419
356
  msgid "Cancel"
357
  msgstr "Cancella"
358
 
@@ -363,7 +375,7 @@ msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per la parte del %
363
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
364
  #: ../admin/constants.php:17 ../admin/constants.php:20
365
  #: ../admin/constants.php:23 ../admin/constants.php:26
366
- #: ../admin/constants.php:29
367
  msgid "e.g."
368
  msgstr "ad esempio"
369
 
@@ -371,7 +383,7 @@ msgstr "ad esempio"
371
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
372
  msgstr "Tu puoi %1$s uno dei seguenti %2$s nel tuo %3$s per controllare le impostazioni avanzate. %4$s. I %5$s definiti saranno evidenziati."
373
 
374
- #: ../admin/actions.php:194 ../admin/actions.php:197
375
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
376
  msgstr "%1$s restituisce una %2$s risposta che potrebbe significare che cron jobs non si è avviato in modo corretto. BackUpWordPress si basa su wp-cron per eseguire i backup pianificati. Vedere il %3$s per maggiori dettagli."
377
 
@@ -391,15 +403,15 @@ msgstr "La tua directory personalizzata di backup %1$s non esiste e non può ess
391
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
392
  msgstr "La tua directory personalizzata di backup %1$s non è scrivibile, i nuovi backup verranno salvati in % 2$s"
393
 
394
- #: ../functions/interface.php:243
395
  msgid "cancel"
396
  msgstr "cancella"
397
 
398
- #: ../functions/interface.php:247
399
  msgid "Settings"
400
  msgstr "Impostazioni"
401
 
402
- #: ../functions/interface.php:250
403
  msgid "Excludes"
404
  msgstr "Esclusioni"
405
 
@@ -423,37 +435,33 @@ msgstr "Database e files"
423
  msgid "Database"
424
  msgstr "Database"
425
 
426
- #: ../hm-backup/hm-backup.php:958
427
- msgid "The following files are unreadable and couldn't be backed up: "
428
- msgstr "I seguenti file sono illeggibili e non possono essere memorizzati::"
429
-
430
- #: ../admin/actions.php:194 ../admin/actions.php:197
431
  #: ../functions/interface.php:72 ../functions/interface.php:82
432
  #: ../functions/interface.php:92
433
  msgid "BackUpWordPress has detected a problem."
434
  msgstr "BackUpWordPress ha rilevato un problema."
435
 
436
- #: ../admin/actions.php:277
437
  msgid "Backup type cannot be empty"
438
  msgstr "Il tipo di backup non può essere vuoto"
439
 
440
- #: ../admin/actions.php:280
441
  msgid "Invalid backup type"
442
  msgstr "Tipo di backup non valido"
443
 
444
- #: ../admin/actions.php:292
445
  msgid "Schedule cannot be empty"
446
  msgstr "La pianificazione non può essere vuota"
447
 
448
- #: ../admin/actions.php:295
449
  msgid "Invalid schedule"
450
  msgstr "Pianificazione non valida"
451
 
452
- #: ../admin/actions.php:310
453
  msgid "Max backups must be a number"
454
  msgstr "Max backup deve essere un numero"
455
 
456
- #: ../admin/actions.php:415
457
  msgid "%s didn't match any files."
458
  msgstr "%s non corrisponde ad alcun file."
459
 
@@ -513,23 +521,23 @@ msgstr "Backups"
513
  msgid "You are not using the latest stable version of BackUpWordPress"
514
  msgstr "Non si sta utilizzando l'ultima versione stabile di BackUpWordPress"
515
 
516
- #: ../admin/menu.php:75
517
  msgid "FAQ"
518
  msgstr "FAQ"
519
 
520
- #: ../admin/constants.php:3 ../admin/menu.php:76
521
  msgid "Constants"
522
  msgstr "Costanti"
523
 
524
- #: ../admin/menu.php:79
525
  msgid "For more information:"
526
  msgstr "Per altre informazioni:"
527
 
528
- #: ../admin/menu.php:81
529
  msgid "Support Forums"
530
  msgstr "Forum di supporto"
531
 
532
- #: ../admin/menu.php:82
533
  msgid "Help with translation"
534
  msgstr "Aiuto per la traduzione"
535
 
@@ -597,7 +605,7 @@ msgstr "Gestione esclusioni"
597
  msgid "Schedule"
598
  msgstr "Pianificazione"
599
 
600
- #: ../plugin.php:142 ../admin/schedule-form.php:54
601
  msgid "Update"
602
  msgstr "Aggiorna"
603
 
@@ -605,11 +613,11 @@ msgstr "Aggiorna"
605
  msgid "hourly at %s minutes past the hour"
606
  msgstr "ogni %s minuti di ogni ora"
607
 
608
- #: ../functions/interface.php:253
609
  msgid "Run now"
610
  msgstr "Avvia adesso"
611
 
612
- #: ../functions/interface.php:28 ../functions/interface.php:255
613
  msgid "Delete"
614
  msgstr "Cancella"
615
 
@@ -617,7 +625,7 @@ msgstr "Cancella"
617
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
618
  msgstr "BackUpWordPress richiede PHP versione 5.2.4 o superiore."
619
 
620
- #: ../classes/email.php:137
621
  msgid "Backup of %s"
622
  msgstr "Backup di %s"
623
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Email al supporto"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Nuove regole di esclusione"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Ecco la risposta del server:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "valutalo nella directory dei plugin"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Avvio backup"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Dumping Database %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Verifica Database Dump %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Creazione archivio zip %s "
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Verifica archivio zip %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Termino il backup"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Quando si deve avviare la tua pianificazione. Il valore predefinito è %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Sei sicuro di voler cancellare questa pianificazione? Tutti i backup verranno eliminati."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "\"Annulla\" per tornare indietro, \"OK\" per cancellare."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Sei sicuro di voler cancellare questo backup?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Sei sicuro di voler rimuovere questa regola di esclusione?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "La riduzione del numero di backup che sono memorizzati sul server causerà la cancellazione di alcuni dei vostri backup esistenti, sei sicuro?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "I backup massimi non devono essere vuoti"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "I backup massimi devono essere maggiori di 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Escludere"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Memorizza %1$s %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "BackUpWordPress non è riuscito a memorizzare il tuo sito %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Qui ci sono gli errori riscontrati:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "Se gli errori di cui sopra hanno un aspetto marziano, inoltra questa email a %3$s e gli daremo un'occhiata."
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "Cordiali saluti, \n"
239
  "L'apologetico BackUpWordPress Backup Robot Emailing"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "BackUpWordPress ha completato un backup del tuo sito %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "Il file di backup deve essere allegato a questa email."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "È possibile scaricare il file di backup cliccando sul link sottostante:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
257
  msgstr "Cordiali saluti, Il felice BackUpWordPress Backup Robot Emailing"
258
 
259
+ #: ../classes/email.php:164
260
  msgid "Unfortunately the backup file was too large to attach to this email."
261
  msgstr "Purtroppo il file di backup è troppo grande da allegare a questa email."
262
 
304
  msgid "BackUpWordPress has setup your default schedules."
305
  msgstr "BackUpWordPress ha impostato le pianificazioni predefinite."
306
 
307
+ #: ../classes/email.php:140
308
  msgid "Backup of %s Failed"
309
  msgstr "Backup di %s fallito"
310
 
311
+ #: ../classes/email.php:63
312
  msgid "Send an email notification to %s"
313
  msgstr "Invia una notifica email a %s "
314
 
315
+ #: ../classes/email.php:85
316
  msgid "%s isn't a valid email"
317
  msgstr "%s non è un'email valida"
318
 
320
  msgid "Backups will be compressed and should be smaller than this."
321
  msgstr "Il backup sarà compresso e dovrebbe occupare meno spazio di questo."
322
 
323
+ #: ../classes/email.php:25
324
  msgid "Email notification"
325
  msgstr "Notifica email"
326
 
340
  msgid "Schedule Settings"
341
  msgstr "Impostazioni di pianificazione"
342
 
343
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
344
  msgid "Close"
345
  msgstr "Chiudi"
346
 
364
  msgid "BackUpWordPress requires WordPress version %s or greater."
365
  msgstr "BackUpWordPress richiede WordPress versione %s o superiore."
366
 
367
+ #: ../plugin.php:144 ../admin/actions.php:471
368
  msgid "Cancel"
369
  msgstr "Cancella"
370
 
375
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
376
  #: ../admin/constants.php:17 ../admin/constants.php:20
377
  #: ../admin/constants.php:23 ../admin/constants.php:26
378
+ #: ../admin/constants.php:29 ../classes/email.php:48
379
  msgid "e.g."
380
  msgstr "ad esempio"
381
 
383
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
384
  msgstr "Tu puoi %1$s uno dei seguenti %2$s nel tuo %3$s per controllare le impostazioni avanzate. %4$s. I %5$s definiti saranno evidenziati."
385
 
386
+ #: ../admin/actions.php:234 ../admin/actions.php:237
387
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
388
  msgstr "%1$s restituisce una %2$s risposta che potrebbe significare che cron jobs non si è avviato in modo corretto. BackUpWordPress si basa su wp-cron per eseguire i backup pianificati. Vedere il %3$s per maggiori dettagli."
389
 
403
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
404
  msgstr "La tua directory personalizzata di backup %1$s non è scrivibile, i nuovi backup verranno salvati in % 2$s"
405
 
406
+ #: ../functions/interface.php:245
407
  msgid "cancel"
408
  msgstr "cancella"
409
 
410
+ #: ../functions/interface.php:249
411
  msgid "Settings"
412
  msgstr "Impostazioni"
413
 
414
+ #: ../functions/interface.php:252
415
  msgid "Excludes"
416
  msgstr "Esclusioni"
417
 
435
  msgid "Database"
436
  msgstr "Database"
437
 
438
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
439
  #: ../functions/interface.php:72 ../functions/interface.php:82
440
  #: ../functions/interface.php:92
441
  msgid "BackUpWordPress has detected a problem."
442
  msgstr "BackUpWordPress ha rilevato un problema."
443
 
444
+ #: ../admin/actions.php:318
445
  msgid "Backup type cannot be empty"
446
  msgstr "Il tipo di backup non può essere vuoto"
447
 
448
+ #: ../admin/actions.php:321
449
  msgid "Invalid backup type"
450
  msgstr "Tipo di backup non valido"
451
 
452
+ #: ../admin/actions.php:333
453
  msgid "Schedule cannot be empty"
454
  msgstr "La pianificazione non può essere vuota"
455
 
456
+ #: ../admin/actions.php:336
457
  msgid "Invalid schedule"
458
  msgstr "Pianificazione non valida"
459
 
460
+ #: ../admin/actions.php:351
461
  msgid "Max backups must be a number"
462
  msgstr "Max backup deve essere un numero"
463
 
464
+ #: ../admin/actions.php:465
465
  msgid "%s didn't match any files."
466
  msgstr "%s non corrisponde ad alcun file."
467
 
521
  msgid "You are not using the latest stable version of BackUpWordPress"
522
  msgstr "Non si sta utilizzando l'ultima versione stabile di BackUpWordPress"
523
 
524
+ #: ../admin/menu.php:77
525
  msgid "FAQ"
526
  msgstr "FAQ"
527
 
528
+ #: ../admin/constants.php:3 ../admin/menu.php:79
529
  msgid "Constants"
530
  msgstr "Costanti"
531
 
532
+ #: ../admin/menu.php:82
533
  msgid "For more information:"
534
  msgstr "Per altre informazioni:"
535
 
536
+ #: ../admin/menu.php:84
537
  msgid "Support Forums"
538
  msgstr "Forum di supporto"
539
 
540
+ #: ../admin/menu.php:85
541
  msgid "Help with translation"
542
  msgstr "Aiuto per la traduzione"
543
 
605
  msgid "Schedule"
606
  msgstr "Pianificazione"
607
 
608
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
609
  msgid "Update"
610
  msgstr "Aggiorna"
611
 
613
  msgid "hourly at %s minutes past the hour"
614
  msgstr "ogni %s minuti di ogni ora"
615
 
616
+ #: ../functions/interface.php:255
617
  msgid "Run now"
618
  msgstr "Avvia adesso"
619
 
620
+ #: ../functions/interface.php:28 ../functions/interface.php:257
621
  msgid "Delete"
622
  msgstr "Cancella"
623
 
625
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
626
  msgstr "BackUpWordPress richiede PHP versione 5.2.4 o superiore."
627
 
628
+ #: ../classes/email.php:150
629
  msgid "Backup of %s"
630
  msgstr "Backup di %s"
631
 
languages/hmbkp-lt_LT.mo CHANGED
Binary file
languages/hmbkp-lt_LT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr ""
367
 
@@ -369,7 +381,7 @@ msgstr ""
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr ""
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr ""
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr ""
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr ""
613
 
@@ -615,7 +623,7 @@ msgstr ""
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr ""
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr ""
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr ""
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr ""
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr ""
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr ""
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr ""
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr ""
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr ""
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr ""
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr ""
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr ""
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
languages/hmbkp-lv_LV.mo CHANGED
Binary file
languages/hmbkp-lv_LV.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Laiks, kurā tiek veiktas ik dienas rezerves kopija. Pēc noklusējuma: %s"
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Vai tiešām vēlaties izdzēst šo grafiku? Visas tā rezerves kopijas arī tiks izdzēstas."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "Spied 'Atcelt' lai dotos atpakaļ, vai 'OK', lai izdzēstu."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Vai tiešām vēlaties izdzēst šo rezerves kopiju? "
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Vai tiešām vēlaties izdzēst šos izņēmumus?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Samazinot rezerves kopiju skaitu, cik tiek glabātas uz servera, varat pazaudēt jau saglabātās kopijas. Vai tiešām to vēlaties? "
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "Norādiet rezerves kopiju skaitu"
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "Maksimālais rezerves kopiju skaits ir jābūt lielākam par 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Nav iekļauts"
136
 
@@ -202,23 +218,19 @@ msgstr "saglabāt tikai pēdējo %1$s rezerves kopiju %2$s"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Izveidot rezerves kopiju %1$s %2$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Varat saņemt paziņojumus epastā, kad rezerves kopija ir izveidota, ja tā ir pietiekoši maza (&lt; 10mb), tad to ir iespējams saņemt epasta pielikumā. Varat norādīt arī vairākus epastus tos atdalot ar komatiem. "
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "BackUpWordPress nevarēja izveidot rezerves kopiju Jūsu mājas lapai %1$s. "
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Kļūdas, kuras radās veidojot rezerves kopiju:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "ja šis kļūdas paziņojums Jums liekas nesaprotams, pārsūtiet to uz epastu %3$s (angļu valodā) un mēs centīsimies palīdzēt. "
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,19 +238,19 @@ msgstr ""
226
  "Ar sveicieniem,\n"
227
  "BackUpWordPress Robots"
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "BackUpWordPress ir izveidojis rezerves kopiju Jūsu mājas lapai %1$s."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "Rezerves kopijai vajadzētu būtu epasta pielikumā."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "Lai lejupielādētu izveidoto rezerves kopiju spiediet uz zemāk esošo saiti:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
@@ -246,7 +258,7 @@ msgstr ""
246
  "Ar Sveicieniem,\n"
247
  "Priecīgais BackUpWordPress Robots"
248
 
249
- #: ../classes/email.php:151
250
  msgid "Unfortunately the backup file was too large to attach to this email."
251
  msgstr "Diemžēl rezerves kopija bija pārāk liela, lai to nosūtītu epastā."
252
 
@@ -294,15 +306,15 @@ msgstr "Nepieciešamā mape netika izveidota, jo mapei %1$s nav nepieciešamās
294
  msgid "BackUpWordPress has setup your default schedules."
295
  msgstr "BackUpWordPress ir iestatījis Jūsu noklusētos grafikus."
296
 
297
- #: ../classes/email.php:127
298
  msgid "Backup of %s Failed"
299
  msgstr "Rezerves kopija %s netika izveidota"
300
 
301
- #: ../classes/email.php:50
302
  msgid "Send an email notification to %s"
303
  msgstr "Nosūtīt epasta paziņojumu uz %s"
304
 
305
- #: ../classes/email.php:72
306
  msgid "%s isn't a valid email"
307
  msgstr "epasts %s ir norādīts nepareizi "
308
 
@@ -310,7 +322,7 @@ msgstr "epasts %s ir norādīts nepareizi "
310
  msgid "Backups will be compressed and should be smaller than this."
311
  msgstr "Rezerves kopija tiks saspiesta, tāpēc tā aizņems mazāk vietas."
312
 
313
- #: ../classes/email.php:19
314
  msgid "Email notification"
315
  msgstr "Epasta paziņojumi"
316
 
@@ -330,7 +342,7 @@ msgstr "Skaits, cik rezerves kopijas tiks glabātas uz servera."
330
  msgid "Schedule Settings"
331
  msgstr "Rezerves Kopiju Uzstādījumi"
332
 
333
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
334
  msgid "Close"
335
  msgstr "Aizvērt"
336
 
@@ -354,7 +366,7 @@ msgstr "Tiks izmantos %1$s. Tas tiks izmantots lai arhivētu %2$s un %3$s ja tie
354
  msgid "BackUpWordPress requires WordPress version %s or greater."
355
  msgstr "BackUpWordPress nepieciešams WordPress %s vai jaunāka versija."
356
 
357
- #: ../plugin.php:143 ../admin/actions.php:419
358
  msgid "Cancel"
359
  msgstr "Atcelt"
360
 
@@ -365,7 +377,7 @@ msgstr "Tiks izmantots %1$s. Mēs izmantosim %2$s, lai veidotu rezerves kopiju,
365
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
366
  #: ../admin/constants.php:17 ../admin/constants.php:20
367
  #: ../admin/constants.php:23 ../admin/constants.php:26
368
- #: ../admin/constants.php:29
369
  msgid "e.g."
370
  msgstr "Kā piemēram"
371
 
@@ -373,7 +385,7 @@ msgstr "Kā piemēram"
373
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
374
  msgstr "Jūs vara %1$s ar jebkuru no šiem %2$s Jūsu %3$s, lai kontrolētu papildus uzstādījumus. %4$s. %5$s būs izcelti."
375
 
376
- #: ../admin/actions.php:194 ../admin/actions.php:197
377
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
378
  msgstr "%1$s atgriež %2$s, kas varētu nozīmēt to, ka nestrādā 'cron jobs'. BackUpWordPress izmantot wp-cron, lai veiktu savus uzdevumus. Vairāk informāciju iegūsiet apskatot %3$s."
379
 
@@ -393,15 +405,15 @@ msgstr "Jūsu izvēlētā mape %1$s neeksistē, tāpēc rezerves kopija tika sag
393
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
394
  msgstr "Jūsu izvēlētajā mapē %1$s nebija iespējams ierakstīt, tāpēc rezerves kopija tika saglabāta mapē \"%2$s."
395
 
396
- #: ../functions/interface.php:243
397
  msgid "cancel"
398
  msgstr "atcelt"
399
 
400
- #: ../functions/interface.php:247
401
  msgid "Settings"
402
  msgstr "Iestatījumi"
403
 
404
- #: ../functions/interface.php:250
405
  msgid "Excludes"
406
  msgstr "Izņēmumi"
407
 
@@ -425,37 +437,33 @@ msgstr "Datubāzi un failus"
425
  msgid "Database"
426
  msgstr "Datubāze"
427
 
428
- #: ../hm-backup/hm-backup.php:958
429
- msgid "The following files are unreadable and couldn't be backed up: "
430
- msgstr "Šie faili ir nesalasāmi (unreadable), tāpēc tie netiks iekļauti rezerves kopijā:"
431
-
432
- #: ../admin/actions.php:194 ../admin/actions.php:197
433
  #: ../functions/interface.php:72 ../functions/interface.php:82
434
  #: ../functions/interface.php:92
435
  msgid "BackUpWordPress has detected a problem."
436
  msgstr "BackUpWordPress ir konstatējis problēmas. "
437
 
438
- #: ../admin/actions.php:277
439
  msgid "Backup type cannot be empty"
440
  msgstr "Norādiet rezerves kopijas veidu"
441
 
442
- #: ../admin/actions.php:280
443
  msgid "Invalid backup type"
444
  msgstr "Nepareizs rezerves kopijas formāts"
445
 
446
- #: ../admin/actions.php:292
447
  msgid "Schedule cannot be empty"
448
  msgstr "Grafiks nevar palikt tukšs"
449
 
450
- #: ../admin/actions.php:295
451
  msgid "Invalid schedule"
452
  msgstr "Nesaderīgs grafiks"
453
 
454
- #: ../admin/actions.php:310
455
  msgid "Max backups must be a number"
456
  msgstr "Maksimālajam rezerves kopiju skaitu jānorāda kā numuru"
457
 
458
- #: ../admin/actions.php:415
459
  msgid "%s didn't match any files."
460
  msgstr "%s nesakrīt ar nevienu failu. "
461
 
@@ -515,23 +523,23 @@ msgstr "Rezerves kopijas"
515
  msgid "You are not using the latest stable version of BackUpWordPress"
516
  msgstr "Jūs neizmantojat jaunāko BackUpWordPress versiju."
517
 
518
- #: ../admin/menu.php:75
519
  msgid "FAQ"
520
  msgstr "FAQ"
521
 
522
- #: ../admin/constants.php:3 ../admin/menu.php:76
523
  msgid "Constants"
524
  msgstr "Konstantes"
525
 
526
- #: ../admin/menu.php:79
527
  msgid "For more information:"
528
  msgstr "Vairāk informācijai:"
529
 
530
- #: ../admin/menu.php:81
531
  msgid "Support Forums"
532
  msgstr "Atbalsta Forums"
533
 
534
- #: ../admin/menu.php:82
535
  msgid "Help with translation"
536
  msgstr "Palīdzi ar tulkojumu"
537
 
@@ -599,7 +607,7 @@ msgstr "Pārvaldīt izņēmumus"
599
  msgid "Schedule"
600
  msgstr "Cik bieži"
601
 
602
- #: ../plugin.php:142 ../admin/schedule-form.php:54
603
  msgid "Update"
604
  msgstr "Atjaunināt"
605
 
@@ -607,11 +615,11 @@ msgstr "Atjaunināt"
607
  msgid "hourly at %s minutes past the hour"
608
  msgstr "ik stundu, %s minūtes pāri"
609
 
610
- #: ../functions/interface.php:253
611
  msgid "Run now"
612
  msgstr "Palaist tulīt"
613
 
614
- #: ../functions/interface.php:28 ../functions/interface.php:255
615
  msgid "Delete"
616
  msgstr "Izdzēst"
617
 
@@ -619,7 +627,7 @@ msgstr "Izdzēst"
619
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
620
  msgstr "BackUpWordPress nepieciešams PHP 5.2.4 vai jaunāka versija."
621
 
622
- #: ../classes/email.php:137
623
  msgid "Backup of %s"
624
  msgstr "Backup von %s"
625
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Laiks, kurā tiek veiktas ik dienas rezerves kopija. Pēc noklusējuma: %s"
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Vai tiešām vēlaties izdzēst šo grafiku? Visas tā rezerves kopijas arī tiks izdzēstas."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "Spied 'Atcelt' lai dotos atpakaļ, vai 'OK', lai izdzēstu."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Vai tiešām vēlaties izdzēst šo rezerves kopiju? "
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Vai tiešām vēlaties izdzēst šos izņēmumus?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Samazinot rezerves kopiju skaitu, cik tiek glabātas uz servera, varat pazaudēt jau saglabātās kopijas. Vai tiešām to vēlaties? "
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "Norādiet rezerves kopiju skaitu"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "Maksimālais rezerves kopiju skaits ir jābūt lielākam par 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Nav iekļauts"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Izveidot rezerves kopiju %1$s %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "BackUpWordPress nevarēja izveidot rezerves kopiju Jūsu mājas lapai %1$s. "
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Kļūdas, kuras radās veidojot rezerves kopiju:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "ja šis kļūdas paziņojums Jums liekas nesaprotams, pārsūtiet to uz epastu %3$s (angļu valodā) un mēs centīsimies palīdzēt. "
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "Ar sveicieniem,\n"
239
  "BackUpWordPress Robots"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "BackUpWordPress ir izveidojis rezerves kopiju Jūsu mājas lapai %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "Rezerves kopijai vajadzētu būtu epasta pielikumā."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "Lai lejupielādētu izveidoto rezerves kopiju spiediet uz zemāk esošo saiti:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
258
  "Ar Sveicieniem,\n"
259
  "Priecīgais BackUpWordPress Robots"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
  msgstr "Diemžēl rezerves kopija bija pārāk liela, lai to nosūtītu epastā."
264
 
306
  msgid "BackUpWordPress has setup your default schedules."
307
  msgstr "BackUpWordPress ir iestatījis Jūsu noklusētos grafikus."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
  msgstr "Rezerves kopija %s netika izveidota"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
  msgstr "Nosūtīt epasta paziņojumu uz %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
  msgstr "epasts %s ir norādīts nepareizi "
320
 
322
  msgid "Backups will be compressed and should be smaller than this."
323
  msgstr "Rezerves kopija tiks saspiesta, tāpēc tā aizņems mazāk vietas."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
  msgstr "Epasta paziņojumi"
328
 
342
  msgid "Schedule Settings"
343
  msgstr "Rezerves Kopiju Uzstādījumi"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
  msgstr "Aizvērt"
348
 
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
  msgstr "BackUpWordPress nepieciešams WordPress %s vai jaunāka versija."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
  msgstr "Atcelt"
372
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
  msgstr "Kā piemēram"
383
 
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
  msgstr "Jūs vara %1$s ar jebkuru no šiem %2$s Jūsu %3$s, lai kontrolētu papildus uzstādījumus. %4$s. %5$s būs izcelti."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
  msgstr "%1$s atgriež %2$s, kas varētu nozīmēt to, ka nestrādā 'cron jobs'. BackUpWordPress izmantot wp-cron, lai veiktu savus uzdevumus. Vairāk informāciju iegūsiet apskatot %3$s."
391
 
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
  msgstr "Jūsu izvēlētajā mapē %1$s nebija iespējams ierakstīt, tāpēc rezerves kopija tika saglabāta mapē \"%2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
  msgstr "atcelt"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
  msgstr "Iestatījumi"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
  msgstr "Izņēmumi"
419
 
437
  msgid "Database"
438
  msgstr "Datubāze"
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
  msgstr "BackUpWordPress ir konstatējis problēmas. "
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
  msgstr "Norādiet rezerves kopijas veidu"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
  msgstr "Nepareizs rezerves kopijas formāts"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
  msgstr "Grafiks nevar palikt tukšs"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
  msgstr "Nesaderīgs grafiks"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
  msgstr "Maksimālajam rezerves kopiju skaitu jānorāda kā numuru"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
  msgstr "%s nesakrīt ar nevienu failu. "
469
 
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
  msgstr "Jūs neizmantojat jaunāko BackUpWordPress versiju."
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
  msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
  msgstr "Konstantes"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
  msgstr "Vairāk informācijai:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
  msgstr "Atbalsta Forums"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
  msgstr "Palīdzi ar tulkojumu"
545
 
607
  msgid "Schedule"
608
  msgstr "Cik bieži"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
  msgstr "Atjaunināt"
613
 
615
  msgid "hourly at %s minutes past the hour"
616
  msgstr "ik stundu, %s minūtes pāri"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
  msgstr "Palaist tulīt"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
  msgstr "Izdzēst"
625
 
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
  msgstr "BackUpWordPress nepieciešams PHP 5.2.4 vai jaunāka versija."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
  msgstr "Backup von %s"
633
 
languages/hmbkp-nl_NL.mo CHANGED
Binary file
languages/hmbkp-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "De tijd waarop je schema zou moeten draaien, Standaard is dat %s"
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Weet je zeker dat je dit schema wilt verwijderen? Alle backups van dit schema zullen ook worden verwijderd."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "'Cancel\"om terug te gaan, 'OK' om te verwijderen."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Weet je zeker dat je deze backup wilt verwijderen?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Weet je zeker dat je deze uitzonderingsregel wilt verwijderen?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr "bijv."
367
 
@@ -369,7 +381,7 @@ msgstr "bijv."
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr "Annuleren"
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr "Instellingen"
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr "Exclusief"
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr "De volgende bestanden zijn onleesbaar en konden niet in een back-up worden opgenomen:"
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr "BackUpWordPress heeft een probleem ondervonden."
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr "Back ups"
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr "Je gebruikt niet de laatste stabiele versie van BackUpWordPress"
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr "Veel gestelde vragen"
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr "Constanten"
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr "Voor meer informatie:"
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr "Ondersteunings forums"
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr "Vertaal hulp"
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr "Verwijderen"
613
 
@@ -615,7 +623,7 @@ msgstr "Verwijderen"
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr "BackUpWordPress vereist PHP versie 5.2.4 of hoger."
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr "Back up van %s"
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "De tijd waarop je schema zou moeten draaien, Standaard is dat %s"
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Weet je zeker dat je dit schema wilt verwijderen? Alle backups van dit schema zullen ook worden verwijderd."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "'Cancel\"om terug te gaan, 'OK' om te verwijderen."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Weet je zeker dat je deze backup wilt verwijderen?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Weet je zeker dat je deze uitzonderingsregel wilt verwijderen?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr "bijv."
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr "Annuleren"
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr "Instellingen"
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr "Exclusief"
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr "BackUpWordPress heeft een probleem ondervonden."
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr "Je gebruikt niet de laatste stabiele versie van BackUpWordPress"
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr "Veel gestelde vragen"
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr "Constanten"
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr "Voor meer informatie:"
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr "Ondersteunings forums"
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr "Vertaal hulp"
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr "Verwijderen"
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr "BackUpWordPress vereist PHP versie 5.2.4 of hoger."
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr "Back up van %s"
629
 
languages/hmbkp-pl_PL.mo CHANGED
Binary file
languages/hmbkp-pl_PL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Wyślij e-mail do wsparcia technicznego"
44
 
@@ -50,11 +70,7 @@ msgstr "Jeśli uważasz, że BackUpWordPress jest pomocne, proszę %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Nowa zasada wykluczeń"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Twoja kopia zapasowa nie powiodła się"
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Oto odpowiedź z serwera:"
60
 
@@ -66,27 +82,27 @@ msgstr "Jeśli potrzebujesz pomocy by uruchomieniu wtyczki, sprawdź FAQ klikaj
66
  msgid "rate it on the plugin directory"
67
  msgstr "oceń ją na stronie wtyczki"
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Rozpoczynam wykonywanie kopii zapasowej"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Zrzucam bazę danych %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Sprawdzam poprawność zrzutu bazy %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Tworzę archiwum ZIP %s"
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Sprawdzam poprawność archiwum ZIP %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Kończę wykonywanie kopii zapasowej"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s działa w %2$s, skontaktuj się ze swoja firmą hostingową i zapyt
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "Godzina o której powinny się uruchamiać zadania. Domyślnie to %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Czy na pewno chcesz usunąć ten harmonogram? Wszystkie jego kopie zapasowe również zostaną usunięte."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "'Anuluj' by powrócić, 'OK' by usunąć."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Czy na pewno chcesz usunąć tą kopię zapasową?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Czy na pewno chcesz usunąć tę regułę wykluczającą?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Zmniejszenie liczby kopii zapasowy, które są przechowywane na tym serwerze spowoduje, że niektóre kopie zapasowe zostaną usunięte, czy na pewno chcesz to zrobić?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "Maksymalna liczba kopii nie może być pusta"
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "Maksymalna liczba kopii musi być większa od 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Wyklucz"
136
 
@@ -202,23 +218,19 @@ msgstr "przechowuj tylko ostatnie %1$s kopii zapasowych na %2$s"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Wykonaj kopię zapasową moich %2$s o rozmiarze %1$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Wyślij powiadomienie e-mailem kiedy wykonywanie kopii zapasowej zostanie ukończone. Jeśli kopia jest wystarczająca mała (&lt; 10MB) zostanie dołączona do e-maila. Oddzielaj wiele adresów e-mail przecinkiem."
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "BackUpWordPress nie był w stanie wykonać kopii zapasowej Twojej strony %1$s."
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Oto błędy na które się natknęliśmy:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "Jeśli błędy powyżej wyglądają jak język kosmitów, prześlij ten e-mail do %3$s, a rzucimy na niego okiem"
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,19 +238,19 @@ msgstr ""
226
  "Z poważaniem,\n"
227
  "skruszony automat mailingowy BackUpWordPress "
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "BackUpWordPress wykonal kopię zapasową Twojej strony %1$s."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "Kopia zapasowa powinna być dołączona do tej wiadomości e-mail."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "Mozesz pobrać kopię zapasową klikając odnośnik poniżej:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
@@ -246,7 +258,7 @@ msgstr ""
246
  "Z poważaniem,\n"
247
  "szczęśliwy automat mailingowy BackUpWordPress "
248
 
249
- #: ../classes/email.php:151
250
  msgid "Unfortunately the backup file was too large to attach to this email."
251
  msgstr "Niestety kopia zapasowa była zbyt duża by dołączyć ją do tej wiadomości e-mail."
252
 
@@ -294,15 +306,15 @@ msgstr "Katalog kopii zapasowych nie może zostać utworzony ponieważ katalog %
294
  msgid "BackUpWordPress has setup your default schedules."
295
  msgstr "BackUpWordPress ustawił Twoje domyślne harmonogramy."
296
 
297
- #: ../classes/email.php:127
298
  msgid "Backup of %s Failed"
299
  msgstr "Kopia zapasowa %s nie powiodła się"
300
 
301
- #: ../classes/email.php:50
302
  msgid "Send an email notification to %s"
303
  msgstr "Wyślij powiadomienie e-mail do %s"
304
 
305
- #: ../classes/email.php:72
306
  msgid "%s isn't a valid email"
307
  msgstr "%s nie jest poprawnym adresem e-mail"
308
 
@@ -310,7 +322,7 @@ msgstr "%s nie jest poprawnym adresem e-mail"
310
  msgid "Backups will be compressed and should be smaller than this."
311
  msgstr "Kopie zapasowe zostaną skompresowane i powinny być mniejsze niż to."
312
 
313
- #: ../classes/email.php:19
314
  msgid "Email notification"
315
  msgstr "Powiadom e-mailem"
316
 
@@ -330,7 +342,7 @@ msgstr "Liczba kopii zapasowych, które mają być przechowywane na tym serwerze
330
  msgid "Schedule Settings"
331
  msgstr "Ustawienia harmonogramu"
332
 
333
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
334
  msgid "Close"
335
  msgstr "Zamknij"
336
 
@@ -354,7 +366,7 @@ msgstr "Ścieżka do pliku wykonywalnego %1$s. Będzie używane przy kompresowan
354
  msgid "BackUpWordPress requires WordPress version %s or greater."
355
  msgstr "BackUpWordPress wymaga WordPress w wersji %s albo nowszej."
356
 
357
- #: ../plugin.php:143 ../admin/actions.php:419
358
  msgid "Cancel"
359
  msgstr "Anuluj"
360
 
@@ -365,7 +377,7 @@ msgstr "Ścieżka do pliku wykonywalnego %1$s. Będzie używane przy %2$s kopii
365
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
366
  #: ../admin/constants.php:17 ../admin/constants.php:20
367
  #: ../admin/constants.php:23 ../admin/constants.php:26
368
- #: ../admin/constants.php:29
369
  msgid "e.g."
370
  msgstr "np."
371
 
@@ -373,7 +385,7 @@ msgstr "np."
373
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
374
  msgstr "Możesz %1$s którekolwiek %2$s w Twoim %3$s by kontrolować zaawansowane ustawienia. %4$s. Zdefiniowane %5$s zostanie podświetlone."
375
 
376
- #: ../admin/actions.php:194 ../admin/actions.php:197
377
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
378
  msgstr "%1$s zwraca odpowiedź %2$s która może znaczyć, że zadania cron nie są uruchamiane poprawnie. BackUpWordPress polega na wp-cron by uruchamiać zaplanowane kopie. Zobacz %3$s by uzyskać więcej informacji."
379
 
@@ -393,15 +405,15 @@ msgstr "Twój katalog kopii zapasowych %1$s nie istnieje i nie może zostać utw
393
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
394
  msgstr "Twój katalog kopii zapasowych %1$s nie jest zapisywalny, Twoje kopie zapasowe zostaną zapisane w %2$s."
395
 
396
- #: ../functions/interface.php:243
397
  msgid "cancel"
398
  msgstr "anuluj"
399
 
400
- #: ../functions/interface.php:247
401
  msgid "Settings"
402
  msgstr "Ustawienia"
403
 
404
- #: ../functions/interface.php:250
405
  msgid "Excludes"
406
  msgstr "Wykluczenia"
407
 
@@ -425,37 +437,33 @@ msgstr "Baza danych i pliki"
425
  msgid "Database"
426
  msgstr "Baza danych"
427
 
428
- #: ../hm-backup/hm-backup.php:958
429
- msgid "The following files are unreadable and couldn't be backed up: "
430
- msgstr "Następujące pliki nie są czytelne i nie mogły być uwzględnione w kopii zapasowej:"
431
-
432
- #: ../admin/actions.php:194 ../admin/actions.php:197
433
  #: ../functions/interface.php:72 ../functions/interface.php:82
434
  #: ../functions/interface.php:92
435
  msgid "BackUpWordPress has detected a problem."
436
  msgstr "BackUpWordPress wykrył problem."
437
 
438
- #: ../admin/actions.php:277
439
  msgid "Backup type cannot be empty"
440
  msgstr "Typ kopii zapasowej nie może być pusty"
441
 
442
- #: ../admin/actions.php:280
443
  msgid "Invalid backup type"
444
  msgstr "Nieprawidłowy typ kopii zapasowej"
445
 
446
- #: ../admin/actions.php:292
447
  msgid "Schedule cannot be empty"
448
  msgstr "Harmonogram nie może być pusty"
449
 
450
- #: ../admin/actions.php:295
451
  msgid "Invalid schedule"
452
  msgstr "Nieprawidłowy harmonogram"
453
 
454
- #: ../admin/actions.php:310
455
  msgid "Max backups must be a number"
456
  msgstr "Maksymalna liczna kopii musi być liczbą"
457
 
458
- #: ../admin/actions.php:415
459
  msgid "%s didn't match any files."
460
  msgstr "%s nie pasuje do żadnych plików."
461
 
@@ -515,23 +523,23 @@ msgstr "Kopie zapasowe"
515
  msgid "You are not using the latest stable version of BackUpWordPress"
516
  msgstr "Nie korzystasz z najnowszej, stabilnej wersji BackUpWordPress"
517
 
518
- #: ../admin/menu.php:75
519
  msgid "FAQ"
520
  msgstr "FAQ"
521
 
522
- #: ../admin/constants.php:3 ../admin/menu.php:76
523
  msgid "Constants"
524
  msgstr "Stałe"
525
 
526
- #: ../admin/menu.php:79
527
  msgid "For more information:"
528
  msgstr "Więcej informacji:"
529
 
530
- #: ../admin/menu.php:81
531
  msgid "Support Forums"
532
  msgstr "Forum wsparcia technicznego"
533
 
534
- #: ../admin/menu.php:82
535
  msgid "Help with translation"
536
  msgstr "Pomoc w tłumaczeniu"
537
 
@@ -599,7 +607,7 @@ msgstr "Zarządzaj wykluczeniami"
599
  msgid "Schedule"
600
  msgstr "Harmonogram"
601
 
602
- #: ../plugin.php:142 ../admin/schedule-form.php:54
603
  msgid "Update"
604
  msgstr "Aktualizuj"
605
 
@@ -607,11 +615,11 @@ msgstr "Aktualizuj"
607
  msgid "hourly at %s minutes past the hour"
608
  msgstr "co godzinę, %s minut po pełnej godzinie"
609
 
610
- #: ../functions/interface.php:253
611
  msgid "Run now"
612
  msgstr "Uruchom teraz"
613
 
614
- #: ../functions/interface.php:28 ../functions/interface.php:255
615
  msgid "Delete"
616
  msgstr "Usuń"
617
 
@@ -619,7 +627,7 @@ msgstr "Usuń"
619
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
620
  msgstr "BackUpWordPress wymaga PHP w wersji 5.2.4 albo nowszej."
621
 
622
- #: ../classes/email.php:137
623
  msgid "Backup of %s"
624
  msgstr "Kopia zapasowa %s"
625
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Wyślij e-mail do wsparcia technicznego"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Nowa zasada wykluczeń"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Oto odpowiedź z serwera:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "oceń ją na stronie wtyczki"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Rozpoczynam wykonywanie kopii zapasowej"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Zrzucam bazę danych %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Sprawdzam poprawność zrzutu bazy %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Tworzę archiwum ZIP %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Sprawdzam poprawność archiwum ZIP %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Kończę wykonywanie kopii zapasowej"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "Godzina o której powinny się uruchamiać zadania. Domyślnie to %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Czy na pewno chcesz usunąć ten harmonogram? Wszystkie jego kopie zapasowe również zostaną usunięte."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "'Anuluj' by powrócić, 'OK' by usunąć."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Czy na pewno chcesz usunąć tą kopię zapasową?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Czy na pewno chcesz usunąć tę regułę wykluczającą?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Zmniejszenie liczby kopii zapasowy, które są przechowywane na tym serwerze spowoduje, że niektóre kopie zapasowe zostaną usunięte, czy na pewno chcesz to zrobić?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "Maksymalna liczba kopii nie może być pusta"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "Maksymalna liczba kopii musi być większa od 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Wyklucz"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Wykonaj kopię zapasową moich %2$s o rozmiarze %1$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "BackUpWordPress nie był w stanie wykonać kopii zapasowej Twojej strony %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Oto błędy na które się natknęliśmy:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "Jeśli błędy powyżej wyglądają jak język kosmitów, prześlij ten e-mail do %3$s, a rzucimy na niego okiem"
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "Z poważaniem,\n"
239
  "skruszony automat mailingowy BackUpWordPress "
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "BackUpWordPress wykonal kopię zapasową Twojej strony %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "Kopia zapasowa powinna być dołączona do tej wiadomości e-mail."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "Mozesz pobrać kopię zapasową klikając odnośnik poniżej:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
258
  "Z poważaniem,\n"
259
  "szczęśliwy automat mailingowy BackUpWordPress "
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
  msgstr "Niestety kopia zapasowa była zbyt duża by dołączyć ją do tej wiadomości e-mail."
264
 
306
  msgid "BackUpWordPress has setup your default schedules."
307
  msgstr "BackUpWordPress ustawił Twoje domyślne harmonogramy."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
  msgstr "Kopia zapasowa %s nie powiodła się"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
  msgstr "Wyślij powiadomienie e-mail do %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
  msgstr "%s nie jest poprawnym adresem e-mail"
320
 
322
  msgid "Backups will be compressed and should be smaller than this."
323
  msgstr "Kopie zapasowe zostaną skompresowane i powinny być mniejsze niż to."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
  msgstr "Powiadom e-mailem"
328
 
342
  msgid "Schedule Settings"
343
  msgstr "Ustawienia harmonogramu"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
  msgstr "Zamknij"
348
 
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
  msgstr "BackUpWordPress wymaga WordPress w wersji %s albo nowszej."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
  msgstr "Anuluj"
372
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
  msgstr "np."
383
 
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
  msgstr "Możesz %1$s którekolwiek %2$s w Twoim %3$s by kontrolować zaawansowane ustawienia. %4$s. Zdefiniowane %5$s zostanie podświetlone."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
  msgstr "%1$s zwraca odpowiedź %2$s która może znaczyć, że zadania cron nie są uruchamiane poprawnie. BackUpWordPress polega na wp-cron by uruchamiać zaplanowane kopie. Zobacz %3$s by uzyskać więcej informacji."
391
 
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
  msgstr "Twój katalog kopii zapasowych %1$s nie jest zapisywalny, Twoje kopie zapasowe zostaną zapisane w %2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
  msgstr "anuluj"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
  msgstr "Ustawienia"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
  msgstr "Wykluczenia"
419
 
437
  msgid "Database"
438
  msgstr "Baza danych"
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
  msgstr "BackUpWordPress wykrył problem."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
  msgstr "Typ kopii zapasowej nie może być pusty"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
  msgstr "Nieprawidłowy typ kopii zapasowej"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
  msgstr "Harmonogram nie może być pusty"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
  msgstr "Nieprawidłowy harmonogram"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
  msgstr "Maksymalna liczna kopii musi być liczbą"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
  msgstr "%s nie pasuje do żadnych plików."
469
 
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
  msgstr "Nie korzystasz z najnowszej, stabilnej wersji BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
  msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
  msgstr "Stałe"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
  msgstr "Więcej informacji:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
  msgstr "Forum wsparcia technicznego"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
  msgstr "Pomoc w tłumaczeniu"
545
 
607
  msgid "Schedule"
608
  msgstr "Harmonogram"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
  msgstr "Aktualizuj"
613
 
615
  msgid "hourly at %s minutes past the hour"
616
  msgstr "co godzinę, %s minut po pełnej godzinie"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
  msgstr "Uruchom teraz"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
  msgstr "Usuń"
625
 
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
  msgstr "BackUpWordPress wymaga PHP w wersji 5.2.4 albo nowszej."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
  msgstr "Kopia zapasowa %s"
633
 
languages/hmbkp-pt-br.mo CHANGED
Binary file
languages/hmbkp-pt-br.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,35 +10,55 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
14
- msgid "You can email details of this error to %s so they can look into the issue."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
 
 
 
 
17
  #: ../functions/core.php:204
18
  msgid "Once Hourly"
19
- msgstr ""
20
 
21
  #: ../functions/core.php:205
22
  msgid "Twice Daily"
23
- msgstr ""
24
 
25
  #: ../functions/core.php:206
26
  msgid "Once Daily"
27
- msgstr ""
28
 
29
  #: ../functions/core.php:207
30
  msgid "Once Weekly"
31
- msgstr ""
32
 
33
  #: ../functions/core.php:208
34
  msgid "Once Fortnightly"
35
- msgstr ""
36
 
37
  #: ../functions/core.php:209
38
  msgid "Once Monthly"
39
- msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr "Entre em contato para Suporte"
44
 
@@ -50,11 +70,7 @@ msgstr "Se você está achando o BackUpWordPress útil, por favor %s."
50
  msgid "New Exclude Rule[s]"
51
  msgstr "Nova[s] Regra[s] de exclusão"
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr "Seu Backup Falhou"
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr "Aqui está a resposta do servidor:"
60
 
@@ -66,27 +82,27 @@ msgstr "Se você precisar de ajuda para fazer as coisas funcionarem, consulte o
66
  msgid "rate it on the plugin directory"
67
  msgstr "avalie-o no diretório de plugins"
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr "Iniciando Backup"
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr "Realizando o dumping do Banco de Dados %s"
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr "Verificando o Dump do Banco de Dodos %s"
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr "Criando arquivo ZIP %s"
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr "Verificando arquivo ZIP %s"
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr "Finalizando Backup"
92
 
@@ -102,35 +118,35 @@ msgstr "%1$s está rodando em %2$s, por favor entre em contato com os administra
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr "O horário em que seus agendamentos devem ser executados. O padrão é %s."
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr "Você tem certeza de que quer apagar este agendamento? Todos os backups já realizados nesta programação também serão excluídos."
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr "'Cancelar' para voltar, 'OK' para apagar."
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr "Você tem certeza que quer apagar este backup?"
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr "Você tem certeza de que deseja remover esta regra de exclusão?"
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr "Reduzindo o número de backups que serão armazenados neste servidor causará a eliminação de alguns backups já existentes. Você tem certeza que é isso que você quer?"
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr "A quant. de backups não pode ficar vazia"
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr "A quant. de backups precisa ser maior que 0"
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr "Excluir"
136
 
@@ -202,23 +218,19 @@ msgstr "armazenar os últimos %1$s backups %2$s"
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr "Realizar o backup dos %1$s do %2$s %3$s, %4$s. %5$s"
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr "Receba um email de notificação quando um backup for concluído. Se o backup for pequeno o suficiente (&lt; 10mb), então ele será anexado ao email. Separe os emails com uma virgula."
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr "O BackUpWordPress não foi capaz de realizar o backup do seu site %1$s."
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr "Aqui estão os erros que foram encontrados:"
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr "Se os erros acima parecem tão esquisitos quanto Marcianos, encaminhe este email para %3$s e iremos dar uma olhada"
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
@@ -226,19 +238,19 @@ msgstr ""
226
  "Atenciosamente, \n"
227
  "O Apologético Robô Carteiro do BackUpWordPress"
228
 
229
- #: ../classes/email.php:142 ../classes/email.php:151
230
  msgid "BackUpWordPress has completed a backup of your site %1$s."
231
  msgstr "O BackUpWordPress completou a realização de um backup do seu site %1$s."
232
 
233
- #: ../classes/email.php:142
234
  msgid "The backup file should be attached to this email."
235
  msgstr "O arquivo de backup será anexado neste email."
236
 
237
- #: ../classes/email.php:142 ../classes/email.php:151
238
  msgid "You can download the backup file by clicking the link below:"
239
  msgstr "Você pode realizar o download do arquivo de backup clicando no link abaixo:"
240
 
241
- #: ../classes/email.php:142 ../classes/email.php:151
242
  msgid ""
243
  "Kind Regards,\n"
244
  "The Happy BackUpWordPress Backup Emailing Robot"
@@ -246,7 +258,7 @@ msgstr ""
246
  "Atenciosamente,\n"
247
  "O Feliz Robô Entregador de Backups do BackUpWordPress"
248
 
249
- #: ../classes/email.php:151
250
  msgid "Unfortunately the backup file was too large to attach to this email."
251
  msgstr "Infelizmente o arquivo de backup era muito grande para ser anexado nesta mensagem de email."
252
 
@@ -294,15 +306,15 @@ msgstr "Não é possível criar o diretório de backups pois sua pasta %1$s não
294
  msgid "BackUpWordPress has setup your default schedules."
295
  msgstr "O BackUpWordPress configurou seus agendamentos padrão."
296
 
297
- #: ../classes/email.php:127
298
  msgid "Backup of %s Failed"
299
  msgstr "Backup de %s Falhou"
300
 
301
- #: ../classes/email.php:50
302
  msgid "Send an email notification to %s"
303
  msgstr "Enviar uma notificação por email para %s"
304
 
305
- #: ../classes/email.php:72
306
  msgid "%s isn't a valid email"
307
  msgstr "%s não é um email válido"
308
 
@@ -310,7 +322,7 @@ msgstr "%s não é um email válido"
310
  msgid "Backups will be compressed and should be smaller than this."
311
  msgstr "Os backups serão compactados e ficarão menores que isso."
312
 
313
- #: ../classes/email.php:19
314
  msgid "Email notification"
315
  msgstr "Notificação por email"
316
 
@@ -330,7 +342,7 @@ msgstr "Número de backups para armazenar"
330
  msgid "Schedule Settings"
331
  msgstr "Configurações do Agendamento"
332
 
333
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
334
  msgid "Close"
335
  msgstr "Fechar"
336
 
@@ -354,7 +366,7 @@ msgstr "O caminho para executar a função %1$s. Será usado para compactar seus
354
  msgid "BackUpWordPress requires WordPress version %s or greater."
355
  msgstr "O BackUpWordPress requer o WordPress versão %s ou superior."
356
 
357
- #: ../plugin.php:143 ../admin/actions.php:419
358
  msgid "Cancel"
359
  msgstr "Cancelar"
360
 
@@ -365,7 +377,7 @@ msgstr "O caminho para executar o comando %1$s. Será usado para parte do backup
365
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
366
  #: ../admin/constants.php:17 ../admin/constants.php:20
367
  #: ../admin/constants.php:23 ../admin/constants.php:26
368
- #: ../admin/constants.php:29
369
  msgid "e.g."
370
  msgstr "ex:"
371
 
@@ -373,7 +385,7 @@ msgstr "ex:"
373
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
374
  msgstr "Você pode %1$s qualquer uma das seguintes %2$s em seu arquivo %3$s para controlar certas definições avançadas. %4$s. As %5$s que estiverem personalizadas aparecerão abaixo destacadas."
375
 
376
- #: ../admin/actions.php:194 ../admin/actions.php:197
377
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
378
  msgstr "%1$s está retornando a resposta %2$s que pode indicar que as tarefas agendadas não estão sendo executadas corretamente. O BackUpWordPress depende do wp-cron para realizar os seus backups agendados. Veja o %3$s para mais detalhes."
379
 
@@ -393,15 +405,15 @@ msgstr "Seu diretório de backups personalizado %1$s não existe e também não
393
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
394
  msgstr "Seu diretório personalizado para backups %1$s não possui permissões para gravação, e ao invés disso, novos backups serão salvos em %2$s."
395
 
396
- #: ../functions/interface.php:243
397
  msgid "cancel"
398
  msgstr "cancelar"
399
 
400
- #: ../functions/interface.php:247
401
  msgid "Settings"
402
  msgstr "Configurações"
403
 
404
- #: ../functions/interface.php:250
405
  msgid "Excludes"
406
  msgstr "Exclusões"
407
 
@@ -425,37 +437,33 @@ msgstr "Banco de Dados e Arquivos"
425
  msgid "Database"
426
  msgstr "Banco de dados"
427
 
428
- #: ../hm-backup/hm-backup.php:958
429
- msgid "The following files are unreadable and couldn't be backed up: "
430
- msgstr "Os seguintes arquivos não puderam ser lidos e por isso não foram copiados no backup:"
431
-
432
- #: ../admin/actions.php:194 ../admin/actions.php:197
433
  #: ../functions/interface.php:72 ../functions/interface.php:82
434
  #: ../functions/interface.php:92
435
  msgid "BackUpWordPress has detected a problem."
436
  msgstr "O BackUpWordPress detectou um problema."
437
 
438
- #: ../admin/actions.php:277
439
  msgid "Backup type cannot be empty"
440
  msgstr "O tipo de backup não pode ficar vazio"
441
 
442
- #: ../admin/actions.php:280
443
  msgid "Invalid backup type"
444
  msgstr "Tipo de backup inválido"
445
 
446
- #: ../admin/actions.php:292
447
  msgid "Schedule cannot be empty"
448
  msgstr "O intervalo não pode ficar vazio"
449
 
450
- #: ../admin/actions.php:295
451
  msgid "Invalid schedule"
452
  msgstr "Agendamento inválido"
453
 
454
- #: ../admin/actions.php:310
455
  msgid "Max backups must be a number"
456
  msgstr "A quant. de backups precisa ser um número"
457
 
458
- #: ../admin/actions.php:415
459
  msgid "%s didn't match any files."
460
  msgstr "%s não resulta em arquivo algum."
461
 
@@ -515,23 +523,23 @@ msgstr "Backups"
515
  msgid "You are not using the latest stable version of BackUpWordPress"
516
  msgstr "Você não está usando a última versão estável do BackUpWordPress"
517
 
518
- #: ../admin/menu.php:75
519
  msgid "FAQ"
520
  msgstr "FAQ"
521
 
522
- #: ../admin/constants.php:3 ../admin/menu.php:76
523
  msgid "Constants"
524
  msgstr "Constantes"
525
 
526
- #: ../admin/menu.php:79
527
  msgid "For more information:"
528
  msgstr "Para mais informações:"
529
 
530
- #: ../admin/menu.php:81
531
  msgid "Support Forums"
532
  msgstr "Fóruns de suporte"
533
 
534
- #: ../admin/menu.php:82
535
  msgid "Help with translation"
536
  msgstr "Ajude a traduzir"
537
 
@@ -599,7 +607,7 @@ msgstr "Gerenciar Exclusões"
599
  msgid "Schedule"
600
  msgstr "Intervalo"
601
 
602
- #: ../plugin.php:142 ../admin/schedule-form.php:54
603
  msgid "Update"
604
  msgstr "Atualizar"
605
 
@@ -607,11 +615,11 @@ msgstr "Atualizar"
607
  msgid "hourly at %s minutes past the hour"
608
  msgstr "de hora em hora, passado %s minutos de cada hora"
609
 
610
- #: ../functions/interface.php:253
611
  msgid "Run now"
612
  msgstr "Executar agora"
613
 
614
- #: ../functions/interface.php:28 ../functions/interface.php:255
615
  msgid "Delete"
616
  msgstr "Excluir"
617
 
@@ -619,7 +627,7 @@ msgstr "Excluir"
619
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
620
  msgstr "O BackUpWordPress requer o PHP versão 5.2.4 ou superior."
621
 
622
- #: ../classes/email.php:137
623
  msgid "Backup of %s"
624
  msgstr "Backup de %s"
625
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
  msgstr ""
32
 
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr "Você pode enviar os detalhes deste erro para %s para que possam analisar este problema."
36
+
37
  #: ../functions/core.php:204
38
  msgid "Once Hourly"
39
+ msgstr "Um vez a cada hora"
40
 
41
  #: ../functions/core.php:205
42
  msgid "Twice Daily"
43
+ msgstr "Duas vezes por dia"
44
 
45
  #: ../functions/core.php:206
46
  msgid "Once Daily"
47
+ msgstr "Uma vez por dia"
48
 
49
  #: ../functions/core.php:207
50
  msgid "Once Weekly"
51
+ msgstr "Uma vez por semana"
52
 
53
  #: ../functions/core.php:208
54
  msgid "Once Fortnightly"
55
+ msgstr "Uma vez a cada quinze dias"
56
 
57
  #: ../functions/core.php:209
58
  msgid "Once Monthly"
59
+ msgstr "Uma vez por mês"
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr "Entre em contato para Suporte"
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr "Nova[s] Regra[s] de exclusão"
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr "Aqui está a resposta do servidor:"
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr "avalie-o no diretório de plugins"
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr "Iniciando Backup"
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr "Realizando o dumping do Banco de Dados %s"
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr "Verificando o Dump do Banco de Dodos %s"
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr "Criando arquivo ZIP %s"
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr "Verificando arquivo ZIP %s"
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr "Finalizando Backup"
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr "O horário em que seus agendamentos devem ser executados. O padrão é %s."
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr "Você tem certeza de que quer apagar este agendamento? Todos os backups já realizados nesta programação também serão excluídos."
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr "'Cancelar' para voltar, 'OK' para apagar."
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr "Você tem certeza que quer apagar este backup?"
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr "Você tem certeza de que deseja remover esta regra de exclusão?"
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr "Reduzindo o número de backups que serão armazenados neste servidor causará a eliminação de alguns backups já existentes. Você tem certeza que é isso que você quer?"
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr "A quant. de backups não pode ficar vazia"
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr "A quant. de backups precisa ser maior que 0"
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr "Excluir"
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr "Realizar o backup dos %1$s do %2$s %3$s, %4$s. %5$s"
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr "O BackUpWordPress não foi capaz de realizar o backup do seu site %1$s."
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr "Aqui estão os erros que foram encontrados:"
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr "Se os erros acima parecem tão esquisitos quanto Marcianos, encaminhe este email para %3$s e iremos dar uma olhada"
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
238
  "Atenciosamente, \n"
239
  "O Apologético Robô Carteiro do BackUpWordPress"
240
 
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
  msgid "BackUpWordPress has completed a backup of your site %1$s."
243
  msgstr "O BackUpWordPress completou a realização de um backup do seu site %1$s."
244
 
245
+ #: ../classes/email.php:155
246
  msgid "The backup file should be attached to this email."
247
  msgstr "O arquivo de backup será anexado neste email."
248
 
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
  msgid "You can download the backup file by clicking the link below:"
251
  msgstr "Você pode realizar o download do arquivo de backup clicando no link abaixo:"
252
 
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
  msgid ""
255
  "Kind Regards,\n"
256
  "The Happy BackUpWordPress Backup Emailing Robot"
258
  "Atenciosamente,\n"
259
  "O Feliz Robô Entregador de Backups do BackUpWordPress"
260
 
261
+ #: ../classes/email.php:164
262
  msgid "Unfortunately the backup file was too large to attach to this email."
263
  msgstr "Infelizmente o arquivo de backup era muito grande para ser anexado nesta mensagem de email."
264
 
306
  msgid "BackUpWordPress has setup your default schedules."
307
  msgstr "O BackUpWordPress configurou seus agendamentos padrão."
308
 
309
+ #: ../classes/email.php:140
310
  msgid "Backup of %s Failed"
311
  msgstr "Backup de %s Falhou"
312
 
313
+ #: ../classes/email.php:63
314
  msgid "Send an email notification to %s"
315
  msgstr "Enviar uma notificação por email para %s"
316
 
317
+ #: ../classes/email.php:85
318
  msgid "%s isn't a valid email"
319
  msgstr "%s não é um email válido"
320
 
322
  msgid "Backups will be compressed and should be smaller than this."
323
  msgstr "Os backups serão compactados e ficarão menores que isso."
324
 
325
+ #: ../classes/email.php:25
326
  msgid "Email notification"
327
  msgstr "Notificação por email"
328
 
342
  msgid "Schedule Settings"
343
  msgstr "Configurações do Agendamento"
344
 
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
  msgid "Close"
347
  msgstr "Fechar"
348
 
366
  msgid "BackUpWordPress requires WordPress version %s or greater."
367
  msgstr "O BackUpWordPress requer o WordPress versão %s ou superior."
368
 
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
  msgid "Cancel"
371
  msgstr "Cancelar"
372
 
377
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
  #: ../admin/constants.php:17 ../admin/constants.php:20
379
  #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
  msgid "e.g."
382
  msgstr "ex:"
383
 
385
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
  msgstr "Você pode %1$s qualquer uma das seguintes %2$s em seu arquivo %3$s para controlar certas definições avançadas. %4$s. As %5$s que estiverem personalizadas aparecerão abaixo destacadas."
387
 
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
  msgstr "%1$s está retornando a resposta %2$s que pode indicar que as tarefas agendadas não estão sendo executadas corretamente. O BackUpWordPress depende do wp-cron para realizar os seus backups agendados. Veja o %3$s para mais detalhes."
391
 
405
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
  msgstr "Seu diretório personalizado para backups %1$s não possui permissões para gravação, e ao invés disso, novos backups serão salvos em %2$s."
407
 
408
+ #: ../functions/interface.php:245
409
  msgid "cancel"
410
  msgstr "cancelar"
411
 
412
+ #: ../functions/interface.php:249
413
  msgid "Settings"
414
  msgstr "Configurações"
415
 
416
+ #: ../functions/interface.php:252
417
  msgid "Excludes"
418
  msgstr "Exclusões"
419
 
437
  msgid "Database"
438
  msgstr "Banco de dados"
439
 
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
441
  #: ../functions/interface.php:72 ../functions/interface.php:82
442
  #: ../functions/interface.php:92
443
  msgid "BackUpWordPress has detected a problem."
444
  msgstr "O BackUpWordPress detectou um problema."
445
 
446
+ #: ../admin/actions.php:318
447
  msgid "Backup type cannot be empty"
448
  msgstr "O tipo de backup não pode ficar vazio"
449
 
450
+ #: ../admin/actions.php:321
451
  msgid "Invalid backup type"
452
  msgstr "Tipo de backup inválido"
453
 
454
+ #: ../admin/actions.php:333
455
  msgid "Schedule cannot be empty"
456
  msgstr "O intervalo não pode ficar vazio"
457
 
458
+ #: ../admin/actions.php:336
459
  msgid "Invalid schedule"
460
  msgstr "Agendamento inválido"
461
 
462
+ #: ../admin/actions.php:351
463
  msgid "Max backups must be a number"
464
  msgstr "A quant. de backups precisa ser um número"
465
 
466
+ #: ../admin/actions.php:465
467
  msgid "%s didn't match any files."
468
  msgstr "%s não resulta em arquivo algum."
469
 
523
  msgid "You are not using the latest stable version of BackUpWordPress"
524
  msgstr "Você não está usando a última versão estável do BackUpWordPress"
525
 
526
+ #: ../admin/menu.php:77
527
  msgid "FAQ"
528
  msgstr "FAQ"
529
 
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
  msgid "Constants"
532
  msgstr "Constantes"
533
 
534
+ #: ../admin/menu.php:82
535
  msgid "For more information:"
536
  msgstr "Para mais informações:"
537
 
538
+ #: ../admin/menu.php:84
539
  msgid "Support Forums"
540
  msgstr "Fóruns de suporte"
541
 
542
+ #: ../admin/menu.php:85
543
  msgid "Help with translation"
544
  msgstr "Ajude a traduzir"
545
 
607
  msgid "Schedule"
608
  msgstr "Intervalo"
609
 
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
  msgid "Update"
612
  msgstr "Atualizar"
613
 
615
  msgid "hourly at %s minutes past the hour"
616
  msgstr "de hora em hora, passado %s minutos de cada hora"
617
 
618
+ #: ../functions/interface.php:255
619
  msgid "Run now"
620
  msgstr "Executar agora"
621
 
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
  msgid "Delete"
624
  msgstr "Excluir"
625
 
627
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
  msgstr "O BackUpWordPress requer o PHP versão 5.2.4 ou superior."
629
 
630
+ #: ../classes/email.php:150
631
  msgid "Backup of %s"
632
  msgstr "Backup de %s"
633
 
languages/hmbkp-ro_RO.mo CHANGED
Binary file
languages/hmbkp-ro_RO.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr ""
367
 
@@ -369,7 +381,7 @@ msgstr ""
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr ""
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr ""
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr ""
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr ""
613
 
@@ -615,7 +623,7 @@ msgstr ""
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr ""
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr ""
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr ""
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr ""
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr ""
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr ""
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr ""
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr ""
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr ""
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr ""
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr ""
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr ""
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
languages/hmbkp-ru_RU.mo CHANGED
Binary file
languages/hmbkp-ru_RU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr ""
367
 
@@ -369,7 +381,7 @@ msgstr ""
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr ""
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr ""
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr ""
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr ""
613
 
@@ -615,7 +623,7 @@ msgstr ""
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr ""
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr ""
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr ""
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr ""
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr ""
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr ""
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr ""
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr ""
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr ""
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr ""
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr ""
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr ""
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
languages/hmbkp-sk_SK.mo ADDED
Binary file
languages/hmbkp-sk_SK.po ADDED
@@ -0,0 +1,636 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.x in Slovak
2
+ # This file is distributed under the same license as the 2.x package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:50+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: 2.x\n"
12
+
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
+ msgid "You can email details of this error to %s so they can look into the issue."
35
+ msgstr ""
36
+
37
+ #: ../functions/core.php:204
38
+ msgid "Once Hourly"
39
+ msgstr ""
40
+
41
+ #: ../functions/core.php:205
42
+ msgid "Twice Daily"
43
+ msgstr ""
44
+
45
+ #: ../functions/core.php:206
46
+ msgid "Once Daily"
47
+ msgstr ""
48
+
49
+ #: ../functions/core.php:207
50
+ msgid "Once Weekly"
51
+ msgstr ""
52
+
53
+ #: ../functions/core.php:208
54
+ msgid "Once Fortnightly"
55
+ msgstr ""
56
+
57
+ #: ../functions/core.php:209
58
+ msgid "Once Monthly"
59
+ msgstr ""
60
+
61
+ #: ../admin/actions.php:509
62
+ msgid "Email to Support"
63
+ msgstr "E-mail na podporu"
64
+
65
+ #: ../admin/page.php:17
66
+ msgid "If your finding BackUpWordPress useful, please %s."
67
+ msgstr "Ak vaše hľadanie BackUpWordPress užitočné, prosím % s."
68
+
69
+ #: ../admin/schedule-form-excludes.php:13
70
+ msgid "New Exclude Rule[s]"
71
+ msgstr "Nové pravidlo vylúčiť [s]"
72
+
73
+ #: ../admin/actions.php:501
74
+ msgid "Here's the response from the server:"
75
+ msgstr "Tu je odpoveď zo servera:"
76
+
77
+ #: ../admin/page.php:19
78
+ msgid "If you need help getting things working then check the FAQ by clicking on help in the top right hand corner of this page."
79
+ msgstr "Ak potrebujete pomoc pri získavaní pracovných veciach skontrolujte FAQ kliknutím na Pomocníka v pravom hornom rohu tejto stránky."
80
+
81
+ #: ../admin/page.php:17
82
+ msgid "rate it on the plugin directory"
83
+ msgstr "kurz v adresári plugin"
84
+
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
+ msgid "Starting Backup"
87
+ msgstr "Spúšťa sa program Zálohovanie"
88
+
89
+ #: ../classes/schedule.php:606
90
+ msgid "Dumping Database %s"
91
+ msgstr "Dumping databáza %s"
92
+
93
+ #: ../classes/schedule.php:612
94
+ msgid "Verifying Database Dump %s"
95
+ msgstr "Overovanie Dump databázy %s"
96
+
97
+ #: ../classes/schedule.php:618
98
+ msgid "Creating zip archive %s"
99
+ msgstr "Vytváranie zip archív %s"
100
+
101
+ #: ../classes/schedule.php:624
102
+ msgid "Verifying Zip Archive %s"
103
+ msgstr "Overovanie Zip archív %s"
104
+
105
+ #: ../classes/schedule.php:630
106
+ msgid "Finishing Backup"
107
+ msgstr "Dokončuje sa zálohovanie"
108
+
109
+ #: ../classes/wp-cli.php:16
110
+ msgid "BackUpWordPress may not work when php is running with %s on"
111
+ msgstr "BackUpWordPress nemusia fungovať, keď beží php s %s"
112
+
113
+ #: ../functions/interface.php:72
114
+ msgid "%1$s is running in %2$s, please contact your host and ask them to disable it. BackUpWordPress may not work correctly whilst %3$s is on."
115
+ msgstr "%1$ s beží v %2$ s, prosím kontaktujte svojho hostiteľa a požiadajte ich, aby ju zakázať. BackUpWordPress nemusia fungovať správne, kým %3$ s zapnutý."
116
+
117
+ #: ../admin/constants.php:29
118
+ msgid "The time that your schedules should run. Defaults to %s."
119
+ msgstr "Čas, ktorý by mala spustiť svoje plány. Predvolené nastavenia na % s."
120
+
121
+ #: ../plugin.php:145
122
+ msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
+ msgstr "Naozaj chcete odstrániť tento plán? Všetko je to záloh sa tiež odstránia."
124
+
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
+ msgid "'Cancel' to go back, 'OK' to delete."
127
+ msgstr "\"Zrušiť\" ísť späť, \"OK\" zmazať."
128
+
129
+ #: ../plugin.php:146
130
+ msgid "Are you sure you want to delete this backup?"
131
+ msgstr "Naozaj chcete zmaza╗ t·to zßlohu?"
132
+
133
+ #: ../plugin.php:147
134
+ msgid "Are you sure you want to remove this exclude rule?"
135
+ msgstr "Naozaj chcete odstrániť toto pravidlo vylúčiť?"
136
+
137
+ #: ../plugin.php:148
138
+ msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
+ msgstr "Zníženie počtu zálohy, ktoré sú uložené na tomto serveri spôsobí niektoré vaše existujúce zálohy vypustiť, ste si istý, že to, čo chcete?"
140
+
141
+ #: ../admin/actions.php:348
142
+ msgid "Max backups can't be empty"
143
+ msgstr "Max zálohovanie nemôže byť prázdny"
144
+
145
+ #: ../admin/actions.php:354
146
+ msgid "Max backups must be greater than 0"
147
+ msgstr "Max zálohy musí byť väčšia ako 0"
148
+
149
+ #: ../admin/actions.php:470
150
+ msgid "Exclude"
151
+ msgstr "Vylúčiť"
152
+
153
+ #: ../admin/schedule-form-excludes.php:44
154
+ msgid "default"
155
+ msgstr "predvolené"
156
+
157
+ #: ../admin/schedule-form-excludes.php:48
158
+ msgid "defined"
159
+ msgstr "definované"
160
+
161
+ #: ../admin/schedule-form.php:27
162
+ msgid "Manual Only"
163
+ msgstr "Len manuál"
164
+
165
+ #: ../admin/schedule-form.php:45
166
+ msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
167
+ msgstr "Počet predchádzajúcich záloh uložiť na server. okolo tohto limitu staršie zálohy budú automaticky odstránené."
168
+
169
+ #: ../admin/schedule.php:4
170
+ msgid "this shouldn't take long&hellip;"
171
+ msgstr "to by nemalo trvať dlho &hellip;"
172
+
173
+ #: ../admin/schedule.php:4
174
+ msgid "calculating the size of your site&hellip;"
175
+ msgstr "vypočítava sa veľkosť vašich stránok &hellip;"
176
+
177
+ #: ../admin/schedule.php:12
178
+ msgid "The next backup will be on %1$s at %2$s"
179
+ msgstr "Ďalšie zálohovanie bude na %1$ s na %2$ s"
180
+
181
+ #: ../admin/schedule.php:37
182
+ msgid "every 12 hours at %1$s &amp; %2$s"
183
+ msgstr "každých 12 hodín v %1$ s &amp; %2$ s"
184
+
185
+ #: ../admin/schedule.php:43
186
+ msgid "weekly on %1$s at %2$s"
187
+ msgstr "každý týždeň v %1$ s na %2$ s"
188
+
189
+ #: ../admin/schedule.php:49
190
+ msgid "fortnightly on %1$s at %2$s"
191
+ msgstr "dvojtýždenník o %1$ s na %2$ s"
192
+
193
+ #: ../admin/schedule.php:56
194
+ msgid "on the %1$s of each month at %2$s"
195
+ msgstr "na %1$ s každého mesiaca %2$ s"
196
+
197
+ #: ../admin/schedule.php:62
198
+ msgid "manually"
199
+ msgstr "manuálne"
200
+
201
+ #: ../admin/schedule.php:68
202
+ msgid "this server"
203
+ msgstr "Tento server"
204
+
205
+ #: ../admin/schedule.php:75
206
+ msgid "store the only the last backup on %s"
207
+ msgstr "uložiť len posledné zálohovanie na %s"
208
+
209
+ #: ../admin/schedule.php:81
210
+ msgid "don't store any backups on %s"
211
+ msgstr "nechcete uložiť žiadne zálohy na %s"
212
+
213
+ #: ../admin/schedule.php:87
214
+ msgid "store only the last %1$s backups on %2$s"
215
+ msgstr "uložiť len posledných %1$ s zálohy na %2$ s"
216
+
217
+ #: ../admin/schedule.php:96
218
+ msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
+ msgstr "Zálohovať moje %1$ s %2$ s %3$ s, %4 s. %5$ $s"
220
+
221
+ #: ../classes/email.php:142
222
+ msgid "BackUpWordPress was unable to backup your site %1$s."
223
+ msgstr "BackUpWordPress sa nepodarilo zálohovať vaše stránky %1$ s."
224
+
225
+ #: ../classes/email.php:142
226
+ msgid "Here are the errors that we're encountered:"
227
+ msgstr "Tu sú chyby, že sme sa už stretli:"
228
+
229
+ #: ../classes/email.php:142
230
+ msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
+ msgstr "Ak vyššie uvedené chyby vyzerať Martian, toto e-mailom na %3$ s a budeme sa pozrieť"
232
+
233
+ #: ../classes/email.php:142
234
+ msgid ""
235
+ "Kind Regards,\n"
236
+ "The Apologetic BackUpWordPress Backup Emailing Robot"
237
+ msgstr ""
238
+ "Kind Regards, \n"
239
+ " Ospravedlňujúci BackUpWordPress Backup e-mailom Robot"
240
+
241
+ #: ../classes/email.php:155 ../classes/email.php:164
242
+ msgid "BackUpWordPress has completed a backup of your site %1$s."
243
+ msgstr "BackUpWordPress ukončil zálohu vaše stránky %1$ s."
244
+
245
+ #: ../classes/email.php:155
246
+ msgid "The backup file should be attached to this email."
247
+ msgstr "Záložný súbor má byť pričlenený na tento e-mail."
248
+
249
+ #: ../classes/email.php:155 ../classes/email.php:164
250
+ msgid "You can download the backup file by clicking the link below:"
251
+ msgstr "Záložný súbor si môžete stiahnuť kliknutím na odkaz nižšie:"
252
+
253
+ #: ../classes/email.php:155 ../classes/email.php:164
254
+ msgid ""
255
+ "Kind Regards,\n"
256
+ "The Happy BackUpWordPress Backup Emailing Robot"
257
+ msgstr ""
258
+ "So srdečným pozdravom,\n"
259
+ "Šťastný BackUpWordPress Backup e-mailom Robot"
260
+
261
+ #: ../classes/email.php:164
262
+ msgid "Unfortunately the backup file was too large to attach to this email."
263
+ msgstr "Bohužiaľ záložný súbor bol príliš veľký pripojiť na tento e-mail."
264
+
265
+ #: ../classes/wp-cli.php:19
266
+ msgid "Backup: Dumping database..."
267
+ msgstr "Zálohovanie: Dumpingu databázy..."
268
+
269
+ #: ../classes/wp-cli.php:23
270
+ msgid "Backup: Zipping everything up..."
271
+ msgstr "Zálohovanie: Zipovanie všetko..."
272
+
273
+ #: ../classes/wp-cli.php:38
274
+ msgid "Invalid backup path"
275
+ msgstr "Neplatný cestu zálohovania"
276
+
277
+ #: ../classes/wp-cli.php:43
278
+ msgid "Invalid root path"
279
+ msgstr "Neplatný koreňový cestu"
280
+
281
+ #: ../classes/wp-cli.php:68
282
+ msgid "Backup Complete: "
283
+ msgstr "Kompletné zálohovanie: "
284
+
285
+ #: ../classes/wp-cli.php:71
286
+ msgid "Backup Failed"
287
+ msgstr "Zálohovanie zlyhalo"
288
+
289
+ #: ../functions/core.php:189
290
+ msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database &amp; files. You can modify these schedules."
291
+ msgstr "V predvolenom nastavení BackUpWordPress vykonáva denné zálohovanie databázy a týždenné zálohovanie súborov &amp; databázy. Môžete upraviť tieto plány."
292
+
293
+ #: ../functions/interface.php:229
294
+ msgid "Legacy"
295
+ msgstr "Dedičstvo"
296
+
297
+ #: ../functions/interface.php:62
298
+ msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
299
+ msgstr "Adresára zálohy nie je možné zapisovať, spustiť %1$ s alebo %2$ s alebo nastaviť povolenia sami."
300
+
301
+ #: ../functions/interface.php:50
302
+ msgid "The backups directory can't be created because your %1$s directory isn't writable, run %2$s or %3$s or create the folder yourself."
303
+ msgstr "Zálohovanie adresára sa nedá vytvoriť, pretože nie je zapisovateľný adresára %1$ s spustiť %2$ s alebo %3$ s alebo vytvorte priečinok sami."
304
+
305
+ #: ../functions/core.php:189
306
+ msgid "BackUpWordPress has setup your default schedules."
307
+ msgstr "BackUpWordPress má nastavenie vaše predvolené plány."
308
+
309
+ #: ../classes/email.php:140
310
+ msgid "Backup of %s Failed"
311
+ msgstr "Zálohu %s zlyhalo"
312
+
313
+ #: ../classes/email.php:63
314
+ msgid "Send an email notification to %s"
315
+ msgstr "Odoslať e-mail oznámenia na %s"
316
+
317
+ #: ../classes/email.php:85
318
+ msgid "%s isn't a valid email"
319
+ msgstr "%s nie je platný e-mail"
320
+
321
+ #: ../admin/schedule.php:4
322
+ msgid "Backups will be compressed and should be smaller than this."
323
+ msgstr "Zálohy sa skomprimujú a by mala byť menšia než tohle."
324
+
325
+ #: ../classes/email.php:25
326
+ msgid "Email notification"
327
+ msgstr "E-mail oznámenia"
328
+
329
+ #: ../admin/schedule.php:19
330
+ msgid "hourly on the hour"
331
+ msgstr "hodinové na hodinu"
332
+
333
+ #: ../admin/schedule.php:25
334
+ msgid "daily at %s"
335
+ msgstr "denne na %s"
336
+
337
+ #: ../admin/schedule-form.php:41
338
+ msgid "Number of backups to store on this server"
339
+ msgstr "Počet zálohy na uloženie, na tomto serveri"
340
+
341
+ #: ../admin/schedule-form.php:7
342
+ msgid "Schedule Settings"
343
+ msgstr "Nastavenie plánu"
344
+
345
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
346
+ msgid "Close"
347
+ msgstr "Zavrieť"
348
+
349
+ #: ../admin/menu.php:69
350
+ msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
351
+ msgstr "Nižšie uvedené informácie je pre verziu %1$ s. %2$ s súbor zobrazenia pre Pomocníka špecifického pre verziu %3$ s."
352
+
353
+ #: ../admin/constants.php:26
354
+ msgid "The root directory that is backed up. Defaults to %s."
355
+ msgstr "V koreňovom adresári, ktorý je zálohovaný. Predvolené nastavenia na % s."
356
+
357
+ #: ../admin/constants.php:23
358
+ msgid "The capability to use when calling %1$s. Defaults to %2$s."
359
+ msgstr "Schopnosť používať pri volaní %1$ s. predvolené %2$ s."
360
+
361
+ #: ../admin/constants.php:14
362
+ msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
363
+ msgstr "Cesta k %1$ s spustiteľný. Sa použije na zips až %2$ s a %3$ s Ak je k dispozícii."
364
+
365
+ #: ../plugin.php:77
366
+ msgid "BackUpWordPress requires WordPress version %s or greater."
367
+ msgstr "BackUpWordPress vyžaduje WordPress verzia %s alebo väčšia."
368
+
369
+ #: ../plugin.php:144 ../admin/actions.php:471
370
+ msgid "Cancel"
371
+ msgstr "Zrušiť"
372
+
373
+ #: ../admin/constants.php:11
374
+ msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
375
+ msgstr "Cesta k %1$ s spustiteľný. Sa použije pre %2$ s časť chrbta ak je k dispozícii."
376
+
377
+ #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
378
+ #: ../admin/constants.php:17 ../admin/constants.php:20
379
+ #: ../admin/constants.php:23 ../admin/constants.php:26
380
+ #: ../admin/constants.php:29 ../classes/email.php:48
381
+ msgid "e.g."
382
+ msgstr "napr"
383
+
384
+ #: ../admin/constants.php:3
385
+ msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
386
+ msgstr "Môžete si %1$ s niektorou z nasledujúcich %2$ s vašej %3$ s na ovládanie rozšírených nastavení. %4$ s. zadefinované %5$ s budú zvýraznené."
387
+
388
+ #: ../admin/actions.php:234 ../admin/actions.php:237
389
+ msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
390
+ msgstr "%1$ s sa vracia %2$ s odpoveď, čo by mohlo znamenať cron jobs nie dostať padáka správne. BackUpWordPress sa opiera o wp-cron bežať plánovaným zálohovať ups. Pozri %3$ s pre viac informácií."
391
+
392
+ #: ../functions/interface.php:72
393
+ msgid "http://php.net/manual/en/features.safe-mode.php"
394
+ msgstr "http://php.net/manual/en/features.safe-mode.php"
395
+
396
+ #: ../functions/interface.php:72
397
+ msgid "Safe Mode"
398
+ msgstr "Núdzový režim"
399
+
400
+ #: ../functions/interface.php:82
401
+ msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
402
+ msgstr "Vaše vlastné zálohovanie adresára %1$ s neexistuje a nemožno vytvoriť, zálohy sa uloží do %2$ s namiesto."
403
+
404
+ #: ../functions/interface.php:92
405
+ msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
406
+ msgstr "Vaše vlastné zálohovanie adresára %1$ s nie je zapisovateľný, nové zálohy sa uloží do %2$ s namiesto."
407
+
408
+ #: ../functions/interface.php:245
409
+ msgid "cancel"
410
+ msgstr "zrušiť"
411
+
412
+ #: ../functions/interface.php:249
413
+ msgid "Settings"
414
+ msgstr "Nastavenia"
415
+
416
+ #: ../functions/interface.php:252
417
+ msgid "Excludes"
418
+ msgstr "Vylučuje"
419
+
420
+ #: ../functions/interface.php:27
421
+ msgid "Download"
422
+ msgstr "Stiahnuť"
423
+
424
+ #: ../functions/interface.php:50 ../functions/interface.php:62
425
+ msgid "BackUpWordPress is almost ready."
426
+ msgstr "BackUpWordPress je takmer pripravená."
427
+
428
+ #: ../functions/interface.php:102
429
+ msgid "BackUpWordPress detected issues with your last backup."
430
+ msgstr "BackUpWordPress zistené problémy s posledného zálohovania."
431
+
432
+ #: ../functions/interface.php:218
433
+ msgid "Database and Files"
434
+ msgstr "Databázy a súbory"
435
+
436
+ #: ../functions/interface.php:224
437
+ msgid "Database"
438
+ msgstr "Databáza"
439
+
440
+ #: ../admin/actions.php:234 ../admin/actions.php:237
441
+ #: ../functions/interface.php:72 ../functions/interface.php:82
442
+ #: ../functions/interface.php:92
443
+ msgid "BackUpWordPress has detected a problem."
444
+ msgstr "BackUpWordPress bol zistený problém."
445
+
446
+ #: ../admin/actions.php:318
447
+ msgid "Backup type cannot be empty"
448
+ msgstr "Typ zálohovania nemôže byť prázdny"
449
+
450
+ #: ../admin/actions.php:321
451
+ msgid "Invalid backup type"
452
+ msgstr "Neplatný typ zálohovania"
453
+
454
+ #: ../admin/actions.php:333
455
+ msgid "Schedule cannot be empty"
456
+ msgstr "Plán nemôže byť prázdny"
457
+
458
+ #: ../admin/actions.php:336
459
+ msgid "Invalid schedule"
460
+ msgstr "Neplatný rozvrh"
461
+
462
+ #: ../admin/actions.php:351
463
+ msgid "Max backups must be a number"
464
+ msgstr "Max zálohy musí byť číslo"
465
+
466
+ #: ../admin/actions.php:465
467
+ msgid "%s didn't match any files."
468
+ msgstr "%s nezodpovedajú žiadne súbory."
469
+
470
+ #: ../admin/backups.php:13
471
+ msgid "add schedule"
472
+ msgstr "pridať plán"
473
+
474
+ #: ../admin/backups.php:37
475
+ msgid "Size"
476
+ msgstr "Veľkosť"
477
+
478
+ #: ../admin/backups.php:38
479
+ msgid "Type"
480
+ msgstr "Typ"
481
+
482
+ #: ../admin/backups.php:39
483
+ msgid "Actions"
484
+ msgstr "Akcie"
485
+
486
+ #: ../admin/backups.php:64
487
+ msgid "This is where your backups will appear once you have one."
488
+ msgstr "To je, kde svoje zálohy sa objaví, akonáhle budete mať jeden."
489
+
490
+ #: ../admin/constants.php:3
491
+ msgid "The Codex can help"
492
+ msgstr "Kódex môže pomôcť"
493
+
494
+ #: ../admin/constants.php:8
495
+ msgid "The path to folder you would like to store your backup files in, defaults to %s."
496
+ msgstr "Cestu k priečinku chcete uložiť súbory zálohy, predvolené nastavenia na % s."
497
+
498
+ #: ../admin/constants.php:11 ../admin/constants.php:14
499
+ msgid "database"
500
+ msgstr "databáza"
501
+
502
+ #: ../admin/constants.php:14
503
+ msgid "files"
504
+ msgstr "súbory"
505
+
506
+ #: ../admin/constants.php:17
507
+ msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
508
+ msgstr "Pokus o e-mailom kópiu zálohy. Hodnota by mala byť email address to send zálohy. Predvolené nastavenia na % s."
509
+
510
+ #: ../admin/constants.php:20
511
+ msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
512
+ msgstr "Oddelené čiarkou zoznam súborov alebo adresárov vylúčiť, adresári zálohy je automaticky vylúčená."
513
+
514
+ #: ../admin/menu.php:10 ../admin/page.php:5
515
+ msgid "Manage Backups"
516
+ msgstr "Spravovať zálohy"
517
+
518
+ #: ../admin/menu.php:10 ../admin/menu.php:34
519
+ msgid "Backups"
520
+ msgstr "Zálohy"
521
+
522
+ #: ../admin/menu.php:69
523
+ msgid "You are not using the latest stable version of BackUpWordPress"
524
+ msgstr "Nepoužívate najnovšiu stabilnú verziu BackUpWordPress"
525
+
526
+ #: ../admin/menu.php:77
527
+ msgid "FAQ"
528
+ msgstr "FAQ"
529
+
530
+ #: ../admin/constants.php:3 ../admin/menu.php:79
531
+ msgid "Constants"
532
+ msgstr "Konštanty"
533
+
534
+ #: ../admin/menu.php:82
535
+ msgid "For more information:"
536
+ msgstr "Ďalšie informácie:"
537
+
538
+ #: ../admin/menu.php:84
539
+ msgid "Support Forums"
540
+ msgstr "Diskusné fóra"
541
+
542
+ #: ../admin/menu.php:85
543
+ msgid "Help with translation"
544
+ msgstr "Pomôcť s prekladom"
545
+
546
+ #: ../admin/page.php:13
547
+ msgid "You need to fix the issues detailed above before BackUpWordPress can start."
548
+ msgstr "Potrebujete opraviť problémy opísané vyššie, než môžete začať BackUpWordPress."
549
+
550
+ #: ../admin/schedule-form-excludes.php:19
551
+ msgid "Preview"
552
+ msgstr "Náhľad"
553
+
554
+ #: ../admin/schedule-form-excludes.php:29
555
+ msgid "Exclude Rules"
556
+ msgstr "Vylúčiť pravidlá"
557
+
558
+ #: ../admin/schedule-form-excludes.php:52
559
+ msgid "Remove"
560
+ msgstr "Odstrániť"
561
+
562
+ #: ../admin/schedule-form-excludes.php:71
563
+ msgid "Excluded"
564
+ msgstr "Vylúčené"
565
+
566
+ #: ../admin/schedule-form-excludes.php:75
567
+ msgid "Included"
568
+ msgstr "Zahrnuté"
569
+
570
+ #: ../admin/schedule-form-excludes.php:79
571
+ msgid "Unreadable"
572
+ msgstr "Nečitateľné"
573
+
574
+ #: ../admin/schedule-form-excludes.php:107
575
+ msgid "Unreadable files can't be backed up"
576
+ msgstr "Nečitateľné súbory nedajú zálohovať"
577
+
578
+ #: ../admin/schedule-form-excludes.php:113
579
+ msgid "Your site is %s. Backups will be compressed and so will be smaller."
580
+ msgstr "Vaše stránky sú % s. zálohy sa skomprimujú a tak bude menšie."
581
+
582
+ #: ../admin/schedule-form.php:11
583
+ msgid "Backup"
584
+ msgstr "Zálohovanie"
585
+
586
+ #: ../admin/schedule-form.php:14
587
+ msgid "Both Database &amp; files"
588
+ msgstr "Súborov &amp; databázy"
589
+
590
+ #: ../admin/schedule-form.php:15
591
+ msgid "Files only"
592
+ msgstr "Iba súbory"
593
+
594
+ #: ../admin/schedule-form.php:16
595
+ msgid "Database only"
596
+ msgstr "Databázy len"
597
+
598
+ #: ../functions/interface.php:221
599
+ msgid "Files"
600
+ msgstr "Súbory"
601
+
602
+ #: ../admin/schedule-form-excludes.php:7
603
+ msgid "Manage Excludes"
604
+ msgstr "Spravovať vylučuje"
605
+
606
+ #: ../admin/schedule-form.php:23
607
+ msgid "Schedule"
608
+ msgstr "Harmonogram"
609
+
610
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
611
+ msgid "Update"
612
+ msgstr "Aktualizácia"
613
+
614
+ #: ../admin/schedule.php:19
615
+ msgid "hourly at %s minutes past the hour"
616
+ msgstr "každú hodinu v %s minúty po hodine"
617
+
618
+ #: ../functions/interface.php:255
619
+ msgid "Run now"
620
+ msgstr "Spustiť teraz"
621
+
622
+ #: ../functions/interface.php:28 ../functions/interface.php:257
623
+ msgid "Delete"
624
+ msgstr "Odstrániť"
625
+
626
+ #: ../plugin.php:66
627
+ msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
628
+ msgstr "BackUpWordPress vyžaduje PHP verzia 5.2.4 alebo väčšia."
629
+
630
+ #: ../classes/email.php:150
631
+ msgid "Backup of %s"
632
+ msgstr "Zálohovanie %s"
633
+
634
+ #: ../functions/core.php:288
635
+ msgid "This %s file ensures that other people cannot download your backup files."
636
+ msgstr "Tento súbor %s zaisťuje, že ostatných ľudí nemôže prevziať súbory zo zálohy."
languages/hmbkp-sr_SR.mo CHANGED
Binary file
languages/hmbkp-sr_SR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr ""
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr ""
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr ""
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr ""
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr ""
304
 
@@ -306,7 +318,7 @@ msgstr ""
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr ""
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr ""
312
 
@@ -326,7 +338,7 @@ msgstr ""
326
  msgid "Schedule Settings"
327
  msgstr ""
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr ""
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr ""
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr ""
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr ""
367
 
@@ -369,7 +381,7 @@ msgstr ""
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr ""
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr ""
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr ""
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr ""
403
 
@@ -421,37 +433,33 @@ msgstr ""
421
  msgid "Database"
422
  msgstr ""
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr ""
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr ""
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr ""
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr ""
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr ""
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr ""
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr ""
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr ""
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr ""
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr ""
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr ""
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr ""
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr ""
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr ""
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr ""
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr ""
601
 
@@ -603,11 +611,11 @@ msgstr ""
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr ""
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr ""
613
 
@@ -615,7 +623,7 @@ msgstr ""
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr ""
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr ""
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr ""
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr ""
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr ""
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr ""
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr ""
324
 
338
  msgid "Schedule Settings"
339
  msgstr ""
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr ""
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr ""
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr ""
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr ""
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr ""
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr ""
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr ""
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr ""
415
 
433
  msgid "Database"
434
  msgstr ""
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr ""
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr ""
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr ""
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr ""
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr ""
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr ""
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr ""
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr ""
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr ""
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr ""
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr ""
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr ""
541
 
603
  msgid "Schedule"
604
  msgstr ""
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr ""
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr ""
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr ""
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr ""
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
languages/hmbkp-zh-cn.mo CHANGED
Binary file
languages/hmbkp-zh-cn.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-02-12 21:42:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,7 +10,27 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
- #: ../admin/actions.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "You can email details of this error to %s so they can look into the issue."
15
  msgstr ""
16
 
@@ -38,7 +58,7 @@ msgstr ""
38
  msgid "Once Monthly"
39
  msgstr ""
40
 
41
- #: ../admin/actions.php:442
42
  msgid "Email to Support"
43
  msgstr ""
44
 
@@ -50,11 +70,7 @@ msgstr ""
50
  msgid "New Exclude Rule[s]"
51
  msgstr ""
52
 
53
- #: ../admin/actions.php:433
54
- msgid "Your BackUp Failed"
55
- msgstr ""
56
-
57
- #: ../admin/actions.php:435
58
  msgid "Here's the response from the server:"
59
  msgstr ""
60
 
@@ -66,27 +82,27 @@ msgstr ""
66
  msgid "rate it on the plugin directory"
67
  msgstr ""
68
 
69
- #: ../classes/schedule.php:523 ../functions/interface.php:243
70
  msgid "Starting Backup"
71
  msgstr ""
72
 
73
- #: ../classes/schedule.php:596
74
  msgid "Dumping Database %s"
75
  msgstr ""
76
 
77
- #: ../classes/schedule.php:602
78
  msgid "Verifying Database Dump %s"
79
  msgstr ""
80
 
81
- #: ../classes/schedule.php:608
82
  msgid "Creating zip archive %s"
83
  msgstr ""
84
 
85
- #: ../classes/schedule.php:614
86
  msgid "Verifying Zip Archive %s"
87
  msgstr ""
88
 
89
- #: ../classes/schedule.php:620
90
  msgid "Finishing Backup"
91
  msgstr ""
92
 
@@ -102,35 +118,35 @@ msgstr ""
102
  msgid "The time that your schedules should run. Defaults to %s."
103
  msgstr ""
104
 
105
- #: ../plugin.php:144
106
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
107
  msgstr ""
108
 
109
- #: ../plugin.php:144 ../plugin.php:145 ../plugin.php:146 ../plugin.php:147
110
  msgid "'Cancel' to go back, 'OK' to delete."
111
  msgstr ""
112
 
113
- #: ../plugin.php:145
114
  msgid "Are you sure you want to delete this backup?"
115
  msgstr ""
116
 
117
- #: ../plugin.php:146
118
  msgid "Are you sure you want to remove this exclude rule?"
119
  msgstr ""
120
 
121
- #: ../plugin.php:147
122
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
123
  msgstr ""
124
 
125
- #: ../admin/actions.php:307
126
  msgid "Max backups can't be empty"
127
  msgstr ""
128
 
129
- #: ../admin/actions.php:313
130
  msgid "Max backups must be greater than 0"
131
  msgstr ""
132
 
133
- #: ../admin/actions.php:419
134
  msgid "Exclude"
135
  msgstr ""
136
 
@@ -202,47 +218,43 @@ msgstr ""
202
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
203
  msgstr ""
204
 
205
- #: ../classes/email.php:23
206
- msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
207
- msgstr ""
208
-
209
- #: ../classes/email.php:129
210
  msgid "BackUpWordPress was unable to backup your site %1$s."
211
  msgstr ""
212
 
213
- #: ../classes/email.php:129
214
  msgid "Here are the errors that we're encountered:"
215
  msgstr ""
216
 
217
- #: ../classes/email.php:129
218
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
219
  msgstr ""
220
 
221
- #: ../classes/email.php:129
222
  msgid ""
223
  "Kind Regards,\n"
224
  "The Apologetic BackUpWordPress Backup Emailing Robot"
225
  msgstr ""
226
 
227
- #: ../classes/email.php:142 ../classes/email.php:151
228
  msgid "BackUpWordPress has completed a backup of your site %1$s."
229
  msgstr ""
230
 
231
- #: ../classes/email.php:142
232
  msgid "The backup file should be attached to this email."
233
  msgstr ""
234
 
235
- #: ../classes/email.php:142 ../classes/email.php:151
236
  msgid "You can download the backup file by clicking the link below:"
237
  msgstr ""
238
 
239
- #: ../classes/email.php:142 ../classes/email.php:151
240
  msgid ""
241
  "Kind Regards,\n"
242
  "The Happy BackUpWordPress Backup Emailing Robot"
243
  msgstr ""
244
 
245
- #: ../classes/email.php:151
246
  msgid "Unfortunately the backup file was too large to attach to this email."
247
  msgstr ""
248
 
@@ -290,15 +302,15 @@ msgstr "因为目录 %1$s 无法写入导致不能创建备份目录, 运行 %2$
290
  msgid "BackUpWordPress has setup your default schedules."
291
  msgstr "BackUpWordPress 已经配置了你的默认安排。"
292
 
293
- #: ../classes/email.php:127
294
  msgid "Backup of %s Failed"
295
  msgstr "%s 的备份失败"
296
 
297
- #: ../classes/email.php:50
298
  msgid "Send an email notification to %s"
299
  msgstr "给%s发送电子邮件通知"
300
 
301
- #: ../classes/email.php:72
302
  msgid "%s isn't a valid email"
303
  msgstr "%s 不是有效的电子邮件地址"
304
 
@@ -306,7 +318,7 @@ msgstr "%s 不是有效的电子邮件地址"
306
  msgid "Backups will be compressed and should be smaller than this."
307
  msgstr "备份会被压缩所以应该会比这个数值要小。"
308
 
309
- #: ../classes/email.php:19
310
  msgid "Email notification"
311
  msgstr "电子邮件通知"
312
 
@@ -326,7 +338,7 @@ msgstr "存储在服务器上的备份数目"
326
  msgid "Schedule Settings"
327
  msgstr "日程安排"
328
 
329
- #: ../admin/actions.php:441 ../admin/schedule-form-excludes.php:119
330
  msgid "Close"
331
  msgstr "关闭"
332
 
@@ -350,7 +362,7 @@ msgstr ""
350
  msgid "BackUpWordPress requires WordPress version %s or greater."
351
  msgstr "BackUpWordPress 需要Wordpress的版本至少为%s。"
352
 
353
- #: ../plugin.php:143 ../admin/actions.php:419
354
  msgid "Cancel"
355
  msgstr "取消"
356
 
@@ -361,7 +373,7 @@ msgstr ""
361
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
362
  #: ../admin/constants.php:17 ../admin/constants.php:20
363
  #: ../admin/constants.php:23 ../admin/constants.php:26
364
- #: ../admin/constants.php:29
365
  msgid "e.g."
366
  msgstr "例如:"
367
 
@@ -369,7 +381,7 @@ msgstr "例如:"
369
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
370
  msgstr ""
371
 
372
- #: ../admin/actions.php:194 ../admin/actions.php:197
373
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
374
  msgstr ""
375
 
@@ -389,15 +401,15 @@ msgstr ""
389
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
390
  msgstr "您设定的备份目录 %1$s 无法写入,新的备份文件将会被存储到 %2$s 。"
391
 
392
- #: ../functions/interface.php:243
393
  msgid "cancel"
394
  msgstr "取消"
395
 
396
- #: ../functions/interface.php:247
397
  msgid "Settings"
398
  msgstr "设置"
399
 
400
- #: ../functions/interface.php:250
401
  msgid "Excludes"
402
  msgstr "排除"
403
 
@@ -421,37 +433,33 @@ msgstr "数据库和文件"
421
  msgid "Database"
422
  msgstr "数据库"
423
 
424
- #: ../hm-backup/hm-backup.php:958
425
- msgid "The following files are unreadable and couldn't be backed up: "
426
- msgstr "下列文件不可读,故无法备份:"
427
-
428
- #: ../admin/actions.php:194 ../admin/actions.php:197
429
  #: ../functions/interface.php:72 ../functions/interface.php:82
430
  #: ../functions/interface.php:92
431
  msgid "BackUpWordPress has detected a problem."
432
  msgstr "BackUpWordPress 检测到一个问题。"
433
 
434
- #: ../admin/actions.php:277
435
  msgid "Backup type cannot be empty"
436
  msgstr "备份类型不能为空"
437
 
438
- #: ../admin/actions.php:280
439
  msgid "Invalid backup type"
440
  msgstr "无效的备份类型。"
441
 
442
- #: ../admin/actions.php:292
443
  msgid "Schedule cannot be empty"
444
  msgstr "计划不能为空"
445
 
446
- #: ../admin/actions.php:295
447
  msgid "Invalid schedule"
448
  msgstr "无效的计划"
449
 
450
- #: ../admin/actions.php:310
451
  msgid "Max backups must be a number"
452
  msgstr "最大备份数必须是数字"
453
 
454
- #: ../admin/actions.php:415
455
  msgid "%s didn't match any files."
456
  msgstr ""
457
 
@@ -511,23 +519,23 @@ msgstr "备份"
511
  msgid "You are not using the latest stable version of BackUpWordPress"
512
  msgstr "您使用的不是BackUpWordPress的最新稳定版本"
513
 
514
- #: ../admin/menu.php:75
515
  msgid "FAQ"
516
  msgstr "常见问题"
517
 
518
- #: ../admin/constants.php:3 ../admin/menu.php:76
519
  msgid "Constants"
520
  msgstr "常量"
521
 
522
- #: ../admin/menu.php:79
523
  msgid "For more information:"
524
  msgstr "获取更多信息:"
525
 
526
- #: ../admin/menu.php:81
527
  msgid "Support Forums"
528
  msgstr "支持论坛"
529
 
530
- #: ../admin/menu.php:82
531
  msgid "Help with translation"
532
  msgstr "帮助进行翻译"
533
 
@@ -595,7 +603,7 @@ msgstr ""
595
  msgid "Schedule"
596
  msgstr "计划"
597
 
598
- #: ../plugin.php:142 ../admin/schedule-form.php:54
599
  msgid "Update"
600
  msgstr "更新"
601
 
@@ -603,11 +611,11 @@ msgstr "更新"
603
  msgid "hourly at %s minutes past the hour"
604
  msgstr ""
605
 
606
- #: ../functions/interface.php:253
607
  msgid "Run now"
608
  msgstr "现在备份"
609
 
610
- #: ../functions/interface.php:28 ../functions/interface.php:255
611
  msgid "Delete"
612
  msgstr "删除"
613
 
@@ -615,7 +623,7 @@ msgstr "删除"
615
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
616
  msgstr "BackUpWordPress 需要 PHP 的版本至少为5.2.4。"
617
 
618
- #: ../classes/email.php:137
619
  msgid "Backup of %s"
620
  msgstr ""
621
 
2
  # This file is distributed under the same license as the 2.x package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-03-26 14:40:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: 2.x\n"
12
 
13
+ #: ../admin/actions.php:493
14
+ msgid "Your backup completed but with the following errors / warnings, it's probably ok to ignore these."
15
+ msgstr ""
16
+
17
+ #: ../admin/actions.php:497
18
+ msgid "Your backup failed"
19
+ msgstr ""
20
+
21
+ #: ../classes/email.php:29
22
+ msgid "Receive a notification email when a backup completes, if the backup is small enough (&lt; %s) then it will be attached to the email. Separate multiple email address's with a comma."
23
+ msgstr ""
24
+
25
+ #: ../classes/email.php:48
26
+ msgid "The maximum filesize of your backup that will be attached to your notification emails . Defaults to %s."
27
+ msgstr ""
28
+
29
+ #: ../classes/error.php:148
30
+ msgid "Your backup could not be completed because you have run out of disk space."
31
+ msgstr ""
32
+
33
+ #: ../admin/actions.php:505
34
  msgid "You can email details of this error to %s so they can look into the issue."
35
  msgstr ""
36
 
58
  msgid "Once Monthly"
59
  msgstr ""
60
 
61
+ #: ../admin/actions.php:509
62
  msgid "Email to Support"
63
  msgstr ""
64
 
70
  msgid "New Exclude Rule[s]"
71
  msgstr ""
72
 
73
+ #: ../admin/actions.php:501
 
 
 
 
74
  msgid "Here's the response from the server:"
75
  msgstr ""
76
 
82
  msgid "rate it on the plugin directory"
83
  msgstr ""
84
 
85
+ #: ../classes/schedule.php:529 ../functions/interface.php:245
86
  msgid "Starting Backup"
87
  msgstr ""
88
 
89
+ #: ../classes/schedule.php:606
90
  msgid "Dumping Database %s"
91
  msgstr ""
92
 
93
+ #: ../classes/schedule.php:612
94
  msgid "Verifying Database Dump %s"
95
  msgstr ""
96
 
97
+ #: ../classes/schedule.php:618
98
  msgid "Creating zip archive %s"
99
  msgstr ""
100
 
101
+ #: ../classes/schedule.php:624
102
  msgid "Verifying Zip Archive %s"
103
  msgstr ""
104
 
105
+ #: ../classes/schedule.php:630
106
  msgid "Finishing Backup"
107
  msgstr ""
108
 
118
  msgid "The time that your schedules should run. Defaults to %s."
119
  msgstr ""
120
 
121
+ #: ../plugin.php:145
122
  msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
123
  msgstr ""
124
 
125
+ #: ../plugin.php:145 ../plugin.php:146 ../plugin.php:147 ../plugin.php:148
126
  msgid "'Cancel' to go back, 'OK' to delete."
127
  msgstr ""
128
 
129
+ #: ../plugin.php:146
130
  msgid "Are you sure you want to delete this backup?"
131
  msgstr ""
132
 
133
+ #: ../plugin.php:147
134
  msgid "Are you sure you want to remove this exclude rule?"
135
  msgstr ""
136
 
137
+ #: ../plugin.php:148
138
  msgid "Reducing the number of backups that are stored on this server will cause some of your existing backups to be deleted, are you sure that's what you want?"
139
  msgstr ""
140
 
141
+ #: ../admin/actions.php:348
142
  msgid "Max backups can't be empty"
143
  msgstr ""
144
 
145
+ #: ../admin/actions.php:354
146
  msgid "Max backups must be greater than 0"
147
  msgstr ""
148
 
149
+ #: ../admin/actions.php:470
150
  msgid "Exclude"
151
  msgstr ""
152
 
218
  msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
219
  msgstr ""
220
 
221
+ #: ../classes/email.php:142
 
 
 
 
222
  msgid "BackUpWordPress was unable to backup your site %1$s."
223
  msgstr ""
224
 
225
+ #: ../classes/email.php:142
226
  msgid "Here are the errors that we're encountered:"
227
  msgstr ""
228
 
229
+ #: ../classes/email.php:142
230
  msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
231
  msgstr ""
232
 
233
+ #: ../classes/email.php:142
234
  msgid ""
235
  "Kind Regards,\n"
236
  "The Apologetic BackUpWordPress Backup Emailing Robot"
237
  msgstr ""
238
 
239
+ #: ../classes/email.php:155 ../classes/email.php:164
240
  msgid "BackUpWordPress has completed a backup of your site %1$s."
241
  msgstr ""
242
 
243
+ #: ../classes/email.php:155
244
  msgid "The backup file should be attached to this email."
245
  msgstr ""
246
 
247
+ #: ../classes/email.php:155 ../classes/email.php:164
248
  msgid "You can download the backup file by clicking the link below:"
249
  msgstr ""
250
 
251
+ #: ../classes/email.php:155 ../classes/email.php:164
252
  msgid ""
253
  "Kind Regards,\n"
254
  "The Happy BackUpWordPress Backup Emailing Robot"
255
  msgstr ""
256
 
257
+ #: ../classes/email.php:164
258
  msgid "Unfortunately the backup file was too large to attach to this email."
259
  msgstr ""
260
 
302
  msgid "BackUpWordPress has setup your default schedules."
303
  msgstr "BackUpWordPress 已经配置了你的默认安排。"
304
 
305
+ #: ../classes/email.php:140
306
  msgid "Backup of %s Failed"
307
  msgstr "%s 的备份失败"
308
 
309
+ #: ../classes/email.php:63
310
  msgid "Send an email notification to %s"
311
  msgstr "给%s发送电子邮件通知"
312
 
313
+ #: ../classes/email.php:85
314
  msgid "%s isn't a valid email"
315
  msgstr "%s 不是有效的电子邮件地址"
316
 
318
  msgid "Backups will be compressed and should be smaller than this."
319
  msgstr "备份会被压缩所以应该会比这个数值要小。"
320
 
321
+ #: ../classes/email.php:25
322
  msgid "Email notification"
323
  msgstr "电子邮件通知"
324
 
338
  msgid "Schedule Settings"
339
  msgstr "日程安排"
340
 
341
+ #: ../admin/actions.php:508 ../admin/schedule-form-excludes.php:119
342
  msgid "Close"
343
  msgstr "关闭"
344
 
362
  msgid "BackUpWordPress requires WordPress version %s or greater."
363
  msgstr "BackUpWordPress 需要Wordpress的版本至少为%s。"
364
 
365
+ #: ../plugin.php:144 ../admin/actions.php:471
366
  msgid "Cancel"
367
  msgstr "取消"
368
 
373
  #: ../admin/constants.php:8 ../admin/constants.php:11 ../admin/constants.php:14
374
  #: ../admin/constants.php:17 ../admin/constants.php:20
375
  #: ../admin/constants.php:23 ../admin/constants.php:26
376
+ #: ../admin/constants.php:29 ../classes/email.php:48
377
  msgid "e.g."
378
  msgstr "例如:"
379
 
381
  msgid "You can %1$s any of the following %2$s in your %3$s to control advanced settings. %4$s. Defined %5$s will be highlighted."
382
  msgstr ""
383
 
384
+ #: ../admin/actions.php:234 ../admin/actions.php:237
385
  msgid "%1$s is returning a %2$s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %3$s for more details."
386
  msgstr ""
387
 
401
  msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
402
  msgstr "您设定的备份目录 %1$s 无法写入,新的备份文件将会被存储到 %2$s 。"
403
 
404
+ #: ../functions/interface.php:245
405
  msgid "cancel"
406
  msgstr "取消"
407
 
408
+ #: ../functions/interface.php:249
409
  msgid "Settings"
410
  msgstr "设置"
411
 
412
+ #: ../functions/interface.php:252
413
  msgid "Excludes"
414
  msgstr "排除"
415
 
433
  msgid "Database"
434
  msgstr "数据库"
435
 
436
+ #: ../admin/actions.php:234 ../admin/actions.php:237
 
 
 
 
437
  #: ../functions/interface.php:72 ../functions/interface.php:82
438
  #: ../functions/interface.php:92
439
  msgid "BackUpWordPress has detected a problem."
440
  msgstr "BackUpWordPress 检测到一个问题。"
441
 
442
+ #: ../admin/actions.php:318
443
  msgid "Backup type cannot be empty"
444
  msgstr "备份类型不能为空"
445
 
446
+ #: ../admin/actions.php:321
447
  msgid "Invalid backup type"
448
  msgstr "无效的备份类型。"
449
 
450
+ #: ../admin/actions.php:333
451
  msgid "Schedule cannot be empty"
452
  msgstr "计划不能为空"
453
 
454
+ #: ../admin/actions.php:336
455
  msgid "Invalid schedule"
456
  msgstr "无效的计划"
457
 
458
+ #: ../admin/actions.php:351
459
  msgid "Max backups must be a number"
460
  msgstr "最大备份数必须是数字"
461
 
462
+ #: ../admin/actions.php:465
463
  msgid "%s didn't match any files."
464
  msgstr ""
465
 
519
  msgid "You are not using the latest stable version of BackUpWordPress"
520
  msgstr "您使用的不是BackUpWordPress的最新稳定版本"
521
 
522
+ #: ../admin/menu.php:77
523
  msgid "FAQ"
524
  msgstr "常见问题"
525
 
526
+ #: ../admin/constants.php:3 ../admin/menu.php:79
527
  msgid "Constants"
528
  msgstr "常量"
529
 
530
+ #: ../admin/menu.php:82
531
  msgid "For more information:"
532
  msgstr "获取更多信息:"
533
 
534
+ #: ../admin/menu.php:84
535
  msgid "Support Forums"
536
  msgstr "支持论坛"
537
 
538
+ #: ../admin/menu.php:85
539
  msgid "Help with translation"
540
  msgstr "帮助进行翻译"
541
 
603
  msgid "Schedule"
604
  msgstr "计划"
605
 
606
+ #: ../plugin.php:143 ../admin/schedule-form.php:54
607
  msgid "Update"
608
  msgstr "更新"
609
 
611
  msgid "hourly at %s minutes past the hour"
612
  msgstr ""
613
 
614
+ #: ../functions/interface.php:255
615
  msgid "Run now"
616
  msgstr "现在备份"
617
 
618
+ #: ../functions/interface.php:28 ../functions/interface.php:257
619
  msgid "Delete"
620
  msgstr "删除"
621
 
623
  msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
624
  msgstr "BackUpWordPress 需要 PHP 的版本至少为5.2.4。"
625
 
626
+ #: ../classes/email.php:150
627
  msgid "Backup of %s"
628
  msgstr ""
629
 
plugin.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: BackUpWordPress
5
  Plugin URI: http://hmn.md/backupwordpress/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
- Version: 2.2.1
9
  Author URI: http://hmn.md/
10
  */
11
 
@@ -139,6 +139,7 @@ function hmbkp_init() {
139
  wp_enqueue_script( 'hmbkp', HMBKP_PLUGIN_URL . '/assets/hmbkp.js', array( 'jquery-ui-tabs', 'jquery-ui-widget', 'hmbkp-fancybox' ), sanitize_title( HMBKP_VERSION ) );
140
 
141
  wp_localize_script( 'hmbkp', 'hmbkp', array(
 
142
  'update' => __( 'Update', 'hmbkp' ),
143
  'cancel' => __( 'Cancel', 'hmbkp' ),
144
  'delete_schedule' => __( 'Are you sure you want to delete this schedule? All of it\'s backups will also be deleted.' ) . "\n\n" . __( '\'Cancel\' to go back, \'OK\' to delete.', 'hmbkp' ) . "\n",
5
  Plugin URI: http://hmn.md/backupwordpress/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
+ Version: 2.2.2
9
  Author URI: http://hmn.md/
10
  */
11
 
139
  wp_enqueue_script( 'hmbkp', HMBKP_PLUGIN_URL . '/assets/hmbkp.js', array( 'jquery-ui-tabs', 'jquery-ui-widget', 'hmbkp-fancybox' ), sanitize_title( HMBKP_VERSION ) );
140
 
141
  wp_localize_script( 'hmbkp', 'hmbkp', array(
142
+ 'nonce' => wp_create_nonce( 'hmbkp_nonce' ),
143
  'update' => __( 'Update', 'hmbkp' ),
144
  'cancel' => __( 'Cancel', 'hmbkp' ),
145
  'delete_schedule' => __( 'Are you sure you want to delete this schedule? All of it\'s backups will also be deleted.' ) . "\n\n" . __( '\'Cancel\' to go back, \'OK\' to delete.', 'hmbkp' ) . "\n",
uninstall.php CHANGED
@@ -3,8 +3,12 @@
3
  if ( ! defined( 'HMBKP_PLUGIN_PATH' ) )
4
  define( 'HMBKP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
5
 
 
 
 
6
  // Load the schedules
7
  require_once( HMBKP_PLUGIN_PATH . '/hm-backup/hm-backup.php' );
 
8
  require_once( HMBKP_PLUGIN_PATH . '/classes/schedule.php' );
9
  require_once( HMBKP_PLUGIN_PATH . '/classes/schedules.php' );
10
  require_once( HMBKP_PLUGIN_PATH . '/functions/core.php' );
3
  if ( ! defined( 'HMBKP_PLUGIN_PATH' ) )
4
  define( 'HMBKP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
5
 
6
+ if ( ! defined( 'HMBKP_SCHEDULE_TIME' ) )
7
+ define( 'HMBKP_SCHEDULE_TIME', '11pm' );
8
+
9
  // Load the schedules
10
  require_once( HMBKP_PLUGIN_PATH . '/hm-backup/hm-backup.php' );
11
+ require_once( HMBKP_PLUGIN_PATH . '/classes/services.php' );
12
  require_once( HMBKP_PLUGIN_PATH . '/classes/schedule.php' );
13
  require_once( HMBKP_PLUGIN_PATH . '/classes/schedules.php' );
14
  require_once( HMBKP_PLUGIN_PATH . '/functions/core.php' );