Version Description
Download this release
Release Info
Developer | willmot |
Plugin | BackUpWordPress |
Version | 2.2 |
Comparing to | |
See all releases |
Code changes from version 2.1.2 to 2.2
- admin/actions.php +50 -42
- admin/backups.php +6 -4
- admin/constants.php +1 -1
- admin/menu.php +2 -2
- admin/schedule-form-excludes.php +7 -7
- admin/schedule-form.php +4 -4
- admin/schedule.php +7 -7
- assets/hmbkp.css +20 -6
- assets/hmbkp.js +6 -8
- assets/wpspin_light-2x.gif +0 -0
- classes/email.php +5 -5
- classes/schedule.php +19 -9
- classes/services.php +1 -1
- functions/core.php +37 -40
- functions/interface.php +22 -31
- hm-backup/hm-backup.php +69 -34
- backupwordpress.mo → languages/backupwordpress.mo +0 -0
- backupwordpress.po → languages/backupwordpress.po +184 -168
- languages/hmbkp-cs_CS.mo +0 -0
- languages/hmbkp-cs_CS.po +628 -0
- languages/hmbkp-da_DA.mo +0 -0
- languages/hmbkp-da_DA.po +624 -0
- languages/hmbkp-de_DE.mo +0 -0
- languages/hmbkp-de_DE.po +199 -185
- languages/hmbkp-es_ES.mo +0 -0
- languages/hmbkp-es_ES.po +624 -0
- languages/hmbkp-eu_EU.mo +0 -0
- languages/hmbkp-eu_EU.po +624 -0
- languages/hmbkp-fr_FR.mo +0 -0
- languages/hmbkp-fr_FR.po +624 -0
- languages/hmbkp-he_HE.mo +0 -0
- languages/{hmbkp-he_IL.po → hmbkp-he_HE.po} +179 -165
- languages/hmbkp-he_IL.mo +0 -0
- languages/hmbkp-it_IT.mo +0 -0
- languages/hmbkp-it_IT.po +239 -225
- languages/hmbkp-lt_LT.mo +0 -0
- languages/hmbkp-lt_LT.po +624 -0
- languages/hmbkp-lv_LV.mo +0 -0
- languages/hmbkp-lv_LV.po +628 -0
- languages/hmbkp-nl_NL.mo +0 -0
- languages/hmbkp-nl_NL.po +178 -164
- languages/hmbkp-pl_PL.mo +0 -0
- languages/hmbkp-pl_PL.po +628 -0
- languages/hmbkp-pt-br.mo +0 -0
- languages/{hmbkp-pt_BR.po → hmbkp-pt-br.po} +196 -182
- languages/hmbkp-pt_BR.mo +0 -0
- languages/hmbkp-ro_RO.mo +0 -0
- languages/hmbkp-ro_RO.po +624 -0
- languages/hmbkp-ru_RU.mo +0 -0
- languages/hmbkp-ru_RU.po +624 -0
- languages/hmbkp-sr_SR.mo +0 -0
- languages/hmbkp-sr_SR.po +624 -0
- languages/hmbkp-zh-cn.mo +0 -0
- languages/{hmbkp-zh_CN.po → hmbkp-zh-cn.po} +178 -164
- languages/hmbkp-zh_CN.mo +0 -0
- plugin.php +13 -11
- readme.txt +26 -1
- uninstall.php +23 -0
admin/actions.php
CHANGED
@@ -9,9 +9,9 @@ function hmbkp_request_delete_backup() {
|
|
9 |
if ( empty( $_GET['hmbkp_delete_backup'] ) || ! check_admin_referer( 'hmbkp-delete_backup' ) )
|
10 |
return;
|
11 |
|
12 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_GET['hmbkp_schedule_id'] ) );
|
13 |
|
14 |
-
$schedule->delete_backup( base64_decode( $_GET['hmbkp_delete_backup'] ) );
|
15 |
|
16 |
wp_redirect( remove_query_arg( array( 'hmbkp_delete_backup', '_wpnonce' ) ), 303 );
|
17 |
|
@@ -29,7 +29,7 @@ function hmbkp_request_delete_schedule() {
|
|
29 |
if ( empty( $_GET['action'] ) || $_GET['action'] !== 'hmbkp_delete_schedule' || ! check_admin_referer( 'hmbkp-delete_schedule' ) )
|
30 |
return;
|
31 |
|
32 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_GET['hmbkp_schedule_id'] ) );
|
33 |
$schedule->cancel( true );
|
34 |
|
35 |
wp_redirect( remove_query_arg( array( 'hmbkp_schedule_id', 'action', '_wpnonce' ) ), 303 );
|
@@ -60,7 +60,7 @@ function hmbkp_ajax_request_do_backup() {
|
|
60 |
|
61 |
hmbkp_cleanup();
|
62 |
|
63 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_POST['hmbkp_schedule_id'] ) );
|
64 |
|
65 |
$schedule->run();
|
66 |
|
@@ -77,10 +77,10 @@ function hmbkp_request_download_backup() {
|
|
77 |
|
78 |
global $is_apache;
|
79 |
|
80 |
-
if ( empty( $_GET['hmbkp_download_backup'] ) || ! check_admin_referer( 'hmbkp-download_backup' ) || ! file_exists( base64_decode( $_GET['hmbkp_download_backup'] ) ) )
|
81 |
return;
|
82 |
|
83 |
-
$url = str_replace( HM_Backup::conform_dir( HM_Backup::get_home_path() ), home_url(), trailingslashit( dirname( base64_decode( $_GET['hmbkp_download_backup'] ) ) ) ) . urlencode( pathinfo( base64_decode( $_GET['hmbkp_download_backup'] ), PATHINFO_BASENAME ) );
|
84 |
|
85 |
if ( $is_apache ) {
|
86 |
|
@@ -110,7 +110,7 @@ function hmbkp_request_cancel_backup() {
|
|
110 |
if ( ! isset( $_GET['action'] ) || $_GET['action'] !== 'hmbkp_cancel' )
|
111 |
return;
|
112 |
|
113 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_GET['hmbkp_schedule_id'] ) );
|
114 |
|
115 |
// Delete the running backup
|
116 |
if ( $schedule->get_running_backup_filename() && file_exists( trailingslashit( hmbkp_path() ) . $schedule->get_running_backup_filename() ) )
|
@@ -151,7 +151,7 @@ function hmbkp_ajax_is_backup_in_progress() {
|
|
151 |
if ( empty( $_POST['hmbkp_schedule_id'] ) )
|
152 |
exit;
|
153 |
|
154 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_POST['hmbkp_schedule_id'] ) );
|
155 |
|
156 |
if ( ! $schedule->get_status() )
|
157 |
echo 0;
|
@@ -172,7 +172,7 @@ function hmbkp_ajax_calculate_backup_size() {
|
|
172 |
if ( empty( $_POST['hmbkp_schedule_id'] ) )
|
173 |
exit;
|
174 |
|
175 |
-
$schedule = new HMBKP_Scheduled_Backup( urldecode( $_POST['hmbkp_schedule_id'] ) );
|
176 |
|
177 |
$recalculate_filesize = true;
|
178 |
|
@@ -188,13 +188,13 @@ add_action( 'wp_ajax_hmbkp_calculate', 'hmbkp_ajax_calculate_backup_size' );
|
|
188 |
*/
|
189 |
function hmbkp_ajax_cron_test() {
|
190 |
|
191 |
-
$response = wp_remote_head( site_url( 'wp-cron.php' ) );
|
192 |
|
193 |
if ( is_wp_error( $response ) )
|
194 |
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>';
|
195 |
|
196 |
elseif ( wp_remote_retrieve_response_code( $response ) != 200 )
|
197 |
-
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>' . wp_remote_retrieve_response_code( $response ) . ' ' . get_status_header_desc( wp_remote_retrieve_response_code( $response ) ) . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
|
198 |
|
199 |
else
|
200 |
echo 1;
|
@@ -212,7 +212,7 @@ function hmbkp_edit_schedule_load() {
|
|
212 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
213 |
exit;
|
214 |
|
215 |
-
$schedule = new HMBKP_Scheduled_Backup( $_GET['hmbkp_schedule_id'] );
|
216 |
|
217 |
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
|
218 |
|
@@ -229,7 +229,7 @@ function hmbkp_edit_schedule_excludes_load() {
|
|
229 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
230 |
exit;
|
231 |
|
232 |
-
$schedule = new HMBKP_Scheduled_Backup( $_GET['hmbkp_schedule_id'] );
|
233 |
|
234 |
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
|
235 |
|
@@ -263,54 +263,64 @@ function hmnkp_edit_schedule_submit() {
|
|
263 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
264 |
exit;
|
265 |
|
266 |
-
$schedule = new HMBKP_Scheduled_Backup( $_GET['hmbkp_schedule_id'] );
|
267 |
|
268 |
$errors = array();
|
269 |
|
|
|
|
|
270 |
if ( isset( $_GET['hmbkp_schedule_type'] ) ) {
|
271 |
|
272 |
-
|
|
|
|
|
273 |
$errors['hmbkp_schedule_type'] = __( 'Backup type cannot be empty', 'hmbkp' );
|
274 |
|
275 |
-
elseif ( ! in_array( $
|
276 |
$errors['hmbkp_schedule_type'] = __( 'Invalid backup type', 'hmbkp' );
|
277 |
|
278 |
else
|
279 |
-
$schedule->set_type( $
|
280 |
|
281 |
}
|
282 |
|
283 |
if ( isset( $_GET['hmbkp_schedule_reoccurrence'] ) ) {
|
284 |
|
285 |
-
|
|
|
|
|
286 |
$errors['hmbkp_schedule_reoccurrence'] = __( 'Schedule cannot be empty', 'hmbkp' );
|
287 |
|
288 |
-
elseif ( ! in_array( $
|
289 |
$errors['hmbkp_schedule_reoccurrence'] = __( 'Invalid schedule', 'hmbkp' );
|
290 |
|
291 |
else
|
292 |
-
$schedule->set_reoccurrence( $
|
293 |
|
294 |
}
|
295 |
|
296 |
if ( isset( $_GET['hmbkp_schedule_max_backups'] ) ) {
|
297 |
|
298 |
-
|
|
|
|
|
299 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups can\'t be empty', 'hmbkp' );
|
300 |
|
301 |
-
elseif ( ! is_numeric( $
|
302 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups must be a number', 'hmbkp' );
|
303 |
|
304 |
-
elseif ( ! ( $
|
305 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups must be greater than 0', 'hmbkp' );
|
306 |
|
307 |
else
|
308 |
-
$schedule->set_max_backups( (int) $
|
309 |
|
|
|
310 |
$schedule->delete_old_backups();
|
311 |
|
312 |
}
|
313 |
|
|
|
314 |
foreach ( HMBKP_Services::get_services( $schedule ) as $service )
|
315 |
$errors = array_merge( $errors, $service->save() );
|
316 |
|
@@ -333,16 +343,16 @@ add_action( 'wp_ajax_hmnkp_edit_schedule_submit', 'hmnkp_edit_schedule_submit' )
|
|
333 |
*/
|
334 |
function hmbkp_add_exclude_rule() {
|
335 |
|
336 |
-
if ( empty( $
|
337 |
exit;
|
338 |
|
339 |
-
$schedule = new HMBKP_Scheduled_Backup( $_POST['hmbkp_schedule_id'] );
|
340 |
|
341 |
-
$schedule->set_excludes( $_POST['hmbkp_exclude_rule'], true );
|
342 |
|
343 |
$schedule->save();
|
344 |
|
345 |
-
|
346 |
|
347 |
exit;
|
348 |
|
@@ -361,15 +371,15 @@ function hmbkp_delete_exclude_rule() {
|
|
361 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
362 |
exit;
|
363 |
|
364 |
-
$schedule = new HMBKP_Scheduled_Backup( $_GET['hmbkp_schedule_id'] );
|
365 |
|
366 |
$excludes = $schedule->get_excludes();
|
367 |
|
368 |
-
$schedule->set_excludes( array_diff( $excludes, (array) stripslashes( $_GET['hmbkp_exclude_rule'] ) ) );
|
369 |
|
370 |
$schedule->save();
|
371 |
|
372 |
-
|
373 |
|
374 |
exit;
|
375 |
|
@@ -385,14 +395,12 @@ add_action( 'wp_ajax_hmbkp_delete_exclude_rule', 'hmbkp_delete_exclude_rule' );
|
|
385 |
*/
|
386 |
function hmbkp_preview_exclude_rule() {
|
387 |
|
388 |
-
echo 'test';
|
389 |
-
|
390 |
if ( empty( $_POST['hmbkp_schedule_id'] ) || empty( $_POST['hmbkp_schedule_excludes'] ) )
|
391 |
exit;
|
392 |
|
393 |
-
$schedule = new HMBKP_Scheduled_Backup( $_POST['hmbkp_schedule_id'] );
|
394 |
|
395 |
-
$excludes = explode( ',', $_POST['hmbkp_schedule_excludes'] );
|
396 |
|
397 |
hmbkp_file_list( $schedule, $excludes, 'get_excluded_files' );
|
398 |
|
@@ -400,11 +408,11 @@ function hmbkp_preview_exclude_rule() {
|
|
400 |
|
401 |
if ( $schedule->get_excluded_file_count() ) { ?>
|
402 |
|
403 |
-
<p><?php printf( _n( '%s matches 1 file.', '%1$s matches %2$d files.', $schedule->get_excluded_file_count(), 'hmbkp' ), '<code>' . implode( '</code>, <code>', $excludes ) . '</code>', $schedule->get_excluded_file_count() ); ?></p>
|
404 |
|
405 |
<?php } else { ?>
|
406 |
|
407 |
-
<p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', $excludes ) . '</code>' ); ?></p>
|
408 |
|
409 |
<?php } ?>
|
410 |
|
@@ -420,15 +428,15 @@ function hmbkp_display_error_and_offer_to_email_it() {
|
|
420 |
if ( empty( $_POST['hmbkp_error'] ) )
|
421 |
exit;
|
422 |
|
423 |
-
$error = str_replace( HM_Backup::get_home_path(), '', $_POST['hmbkp_error'] ); ?>
|
424 |
|
425 |
<h3><?php _e( 'Your BackUp Failed', 'hmbkp' ); ?></h3>
|
426 |
|
427 |
-
<p><?php _e(
|
428 |
|
429 |
-
<pre><?php
|
430 |
|
431 |
-
<p class="description"
|
432 |
|
433 |
<button class="button hmbkp-fancybox-close"><?php _e( 'Close', 'hmbkp' ); ?></button>
|
434 |
<button class="button-primary hmbkp_send_error_via_email right"><?php _e( 'Email to Support', 'hmbkp' ); ?></button>
|
@@ -442,7 +450,7 @@ function hmbkp_send_error_via_email() {
|
|
442 |
if ( empty( $_POST['hmbkp_error'] ) )
|
443 |
exit;
|
444 |
|
445 |
-
$error = $_POST['hmbkp_error'];
|
446 |
|
447 |
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" );
|
448 |
|
9 |
if ( empty( $_GET['hmbkp_delete_backup'] ) || ! check_admin_referer( 'hmbkp-delete_backup' ) )
|
10 |
return;
|
11 |
|
12 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_GET['hmbkp_schedule_id'] ) ) );
|
13 |
|
14 |
+
$schedule->delete_backup( sanitize_text_field( base64_decode( $_GET['hmbkp_delete_backup'] ) ) );
|
15 |
|
16 |
wp_redirect( remove_query_arg( array( 'hmbkp_delete_backup', '_wpnonce' ) ), 303 );
|
17 |
|
29 |
if ( empty( $_GET['action'] ) || $_GET['action'] !== 'hmbkp_delete_schedule' || ! check_admin_referer( 'hmbkp-delete_schedule' ) )
|
30 |
return;
|
31 |
|
32 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_GET['hmbkp_schedule_id'] ) ) );
|
33 |
$schedule->cancel( true );
|
34 |
|
35 |
wp_redirect( remove_query_arg( array( 'hmbkp_schedule_id', 'action', '_wpnonce' ) ), 303 );
|
60 |
|
61 |
hmbkp_cleanup();
|
62 |
|
63 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
|
64 |
|
65 |
$schedule->run();
|
66 |
|
77 |
|
78 |
global $is_apache;
|
79 |
|
80 |
+
if ( empty( $_GET['hmbkp_download_backup'] ) || ! check_admin_referer( 'hmbkp-download_backup' ) || ! file_exists( sanitize_text_field( base64_decode( $_GET['hmbkp_download_backup'] ) ) ) )
|
81 |
return;
|
82 |
|
83 |
+
$url = str_replace( HM_Backup::conform_dir( HM_Backup::get_home_path() ), home_url(), trailingslashit( dirname( sanitize_text_field( base64_decode( $_GET['hmbkp_download_backup'] ) ) ) ) ) . urlencode( pathinfo( sanitize_text_field( base64_decode( $_GET['hmbkp_download_backup'] ) ), PATHINFO_BASENAME ) );
|
84 |
|
85 |
if ( $is_apache ) {
|
86 |
|
110 |
if ( ! isset( $_GET['action'] ) || $_GET['action'] !== 'hmbkp_cancel' )
|
111 |
return;
|
112 |
|
113 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_GET['hmbkp_schedule_id'] ) ) );
|
114 |
|
115 |
// Delete the running backup
|
116 |
if ( $schedule->get_running_backup_filename() && file_exists( trailingslashit( hmbkp_path() ) . $schedule->get_running_backup_filename() ) )
|
151 |
if ( empty( $_POST['hmbkp_schedule_id'] ) )
|
152 |
exit;
|
153 |
|
154 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
|
155 |
|
156 |
if ( ! $schedule->get_status() )
|
157 |
echo 0;
|
172 |
if ( empty( $_POST['hmbkp_schedule_id'] ) )
|
173 |
exit;
|
174 |
|
175 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( urldecode( $_POST['hmbkp_schedule_id'] ) ) );
|
176 |
|
177 |
$recalculate_filesize = true;
|
178 |
|
188 |
*/
|
189 |
function hmbkp_ajax_cron_test() {
|
190 |
|
191 |
+
$response = wp_remote_head( site_url( 'wp-cron.php' ), array( 'timeout' => 30 ) );
|
192 |
|
193 |
if ( is_wp_error( $response ) )
|
194 |
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>';
|
195 |
|
196 |
elseif ( wp_remote_retrieve_response_code( $response ) != 200 )
|
197 |
+
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>';
|
198 |
|
199 |
else
|
200 |
echo 1;
|
212 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
213 |
exit;
|
214 |
|
215 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
|
216 |
|
217 |
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form.php' );
|
218 |
|
229 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
230 |
exit;
|
231 |
|
232 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
|
233 |
|
234 |
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
|
235 |
|
263 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
264 |
exit;
|
265 |
|
266 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
|
267 |
|
268 |
$errors = array();
|
269 |
|
270 |
+
|
271 |
+
|
272 |
if ( isset( $_GET['hmbkp_schedule_type'] ) ) {
|
273 |
|
274 |
+
$schedule_type = sanitize_text_field( $_GET['hmbkp_schedule_type'] );
|
275 |
+
|
276 |
+
if ( ! trim( $schedule_type ) )
|
277 |
$errors['hmbkp_schedule_type'] = __( 'Backup type cannot be empty', 'hmbkp' );
|
278 |
|
279 |
+
elseif ( ! in_array( $schedule_type, array( 'complete', 'file', 'database' ) ) )
|
280 |
$errors['hmbkp_schedule_type'] = __( 'Invalid backup type', 'hmbkp' );
|
281 |
|
282 |
else
|
283 |
+
$schedule->set_type( $schedule_type );
|
284 |
|
285 |
}
|
286 |
|
287 |
if ( isset( $_GET['hmbkp_schedule_reoccurrence'] ) ) {
|
288 |
|
289 |
+
$schedule_reoccurrence = sanitize_text_field( $_GET['hmbkp_schedule_reoccurrence'] );
|
290 |
+
|
291 |
+
if ( empty( $schedule_reoccurrence ) )
|
292 |
$errors['hmbkp_schedule_reoccurrence'] = __( 'Schedule cannot be empty', 'hmbkp' );
|
293 |
|
294 |
+
elseif ( ! in_array( $schedule_reoccurrence, array_keys( hmbkp_cron_schedules() ) ) && $schedule_reoccurrence !== 'manually' )
|
295 |
$errors['hmbkp_schedule_reoccurrence'] = __( 'Invalid schedule', 'hmbkp' );
|
296 |
|
297 |
else
|
298 |
+
$schedule->set_reoccurrence( $schedule_reoccurrence );
|
299 |
|
300 |
}
|
301 |
|
302 |
if ( isset( $_GET['hmbkp_schedule_max_backups'] ) ) {
|
303 |
|
304 |
+
$schedule_max_backups = sanitize_text_field( $_GET['hmbkp_schedule_max_backups'] );
|
305 |
+
|
306 |
+
if ( empty( $schedule_max_backups ) )
|
307 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups can\'t be empty', 'hmbkp' );
|
308 |
|
309 |
+
elseif ( ! is_numeric( $schedule_max_backups ) )
|
310 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups must be a number', 'hmbkp' );
|
311 |
|
312 |
+
elseif ( ! ( $schedule_max_backups >= 1 ) )
|
313 |
$errors['hmbkp_schedule_max_backups'] = __( 'Max backups must be greater than 0', 'hmbkp' );
|
314 |
|
315 |
else
|
316 |
+
$schedule->set_max_backups( (int) $schedule_max_backups );
|
317 |
|
318 |
+
// Remove any old backups in-case max backups was reduced
|
319 |
$schedule->delete_old_backups();
|
320 |
|
321 |
}
|
322 |
|
323 |
+
// Save the service options
|
324 |
foreach ( HMBKP_Services::get_services( $schedule ) as $service )
|
325 |
$errors = array_merge( $errors, $service->save() );
|
326 |
|
343 |
*/
|
344 |
function hmbkp_add_exclude_rule() {
|
345 |
|
346 |
+
if ( empty( $_POST['hmbkp_schedule_id'] ) )
|
347 |
exit;
|
348 |
|
349 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
|
350 |
|
351 |
+
$schedule->set_excludes( sanitize_text_field( $_POST['hmbkp_exclude_rule'] ), true );
|
352 |
|
353 |
$schedule->save();
|
354 |
|
355 |
+
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
|
356 |
|
357 |
exit;
|
358 |
|
371 |
if ( empty( $_GET['hmbkp_schedule_id'] ) )
|
372 |
exit;
|
373 |
|
374 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
|
375 |
|
376 |
$excludes = $schedule->get_excludes();
|
377 |
|
378 |
+
$schedule->set_excludes( array_diff( $excludes, (array) stripslashes( sanitize_text_field( $_GET['hmbkp_exclude_rule'] ) ) ) );
|
379 |
|
380 |
$schedule->save();
|
381 |
|
382 |
+
require( HMBKP_PLUGIN_PATH . '/admin/schedule-form-excludes.php' );
|
383 |
|
384 |
exit;
|
385 |
|
395 |
*/
|
396 |
function hmbkp_preview_exclude_rule() {
|
397 |
|
|
|
|
|
398 |
if ( empty( $_POST['hmbkp_schedule_id'] ) || empty( $_POST['hmbkp_schedule_excludes'] ) )
|
399 |
exit;
|
400 |
|
401 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_POST['hmbkp_schedule_id'] ) );
|
402 |
|
403 |
+
$excludes = explode( ',', sanitize_text_field( $_POST['hmbkp_schedule_excludes'] ) );
|
404 |
|
405 |
hmbkp_file_list( $schedule, $excludes, 'get_excluded_files' );
|
406 |
|
408 |
|
409 |
if ( $schedule->get_excluded_file_count() ) { ?>
|
410 |
|
411 |
+
<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>
|
412 |
|
413 |
<?php } else { ?>
|
414 |
|
415 |
+
<p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>' ); ?></p>
|
416 |
|
417 |
<?php } ?>
|
418 |
|
428 |
if ( empty( $_POST['hmbkp_error'] ) )
|
429 |
exit;
|
430 |
|
431 |
+
$error = str_replace( HM_Backup::get_home_path(), '', sanitize_text_field( $_POST['hmbkp_error'] ) ); ?>
|
432 |
|
433 |
<h3><?php _e( 'Your BackUp Failed', 'hmbkp' ); ?></h3>
|
434 |
|
435 |
+
<p><?php _e( 'Here\'s the response from the server:', 'hmbkp' ); ?></p>
|
436 |
|
437 |
+
<pre><?php esc_html_e( $error ); ?></pre>
|
438 |
|
439 |
+
<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>
|
440 |
|
441 |
<button class="button hmbkp-fancybox-close"><?php _e( 'Close', 'hmbkp' ); ?></button>
|
442 |
<button class="button-primary hmbkp_send_error_via_email right"><?php _e( 'Email to Support', 'hmbkp' ); ?></button>
|
450 |
if ( empty( $_POST['hmbkp_error'] ) )
|
451 |
exit;
|
452 |
|
453 |
+
$error = sanitize_text_field( $_POST['hmbkp_error'] );
|
454 |
|
455 |
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" );
|
456 |
|
admin/backups.php
CHANGED
@@ -6,16 +6,16 @@
|
|
6 |
|
7 |
<?php foreach ( $schedules->get_schedules() as $schedule ) : ?>
|
8 |
|
9 |
-
<li<?php if ( $schedule->get_status() ) { ?> class="hmbkp-running"<?php } ?>><a<?php if ( ! empty ( $_GET['hmbkp_schedule_id'] ) && $schedule->get_id() == $_GET['hmbkp_schedule_id'] ) { ?> class="current"<?php } ?> href="<?php echo esc_url( add_query_arg( 'hmbkp_schedule_id', $schedule->get_id(), HMBKP_ADMIN_URL ) ); ?> "><?php
|
10 |
|
11 |
<?php endforeach; ?>
|
12 |
|
13 |
-
<li><a class="fancybox" href="<?php
|
14 |
|
15 |
</ul>
|
16 |
|
17 |
<?php if ( ! empty( $_GET['hmbkp_schedule_id'] ) )
|
18 |
-
$schedule = new HMBKP_Scheduled_Backup( $_GET['hmbkp_schedule_id'] );
|
19 |
|
20 |
else
|
21 |
$schedule = reset( $schedules->get_schedules() );
|
@@ -23,7 +23,7 @@ else
|
|
23 |
if ( ! $schedule )
|
24 |
return; ?>
|
25 |
|
26 |
-
<div data-hmbkp-schedule-id="<?php
|
27 |
|
28 |
<?php require( HMBKP_PLUGIN_PATH . '/admin/schedule.php' ); ?>
|
29 |
|
@@ -46,6 +46,8 @@ else
|
|
46 |
|
47 |
<?php if ( $schedule->get_backups() ) :
|
48 |
|
|
|
|
|
49 |
foreach ( $schedule->get_backups() as $file ) :
|
50 |
|
51 |
if ( ! file_exists( $file ) )
|
6 |
|
7 |
<?php foreach ( $schedules->get_schedules() as $schedule ) : ?>
|
8 |
|
9 |
+
<li<?php if ( $schedule->get_status() ) { ?> class="hmbkp-running"<?php } ?>><a<?php if ( ! empty ( $_GET['hmbkp_schedule_id'] ) && $schedule->get_id() == $_GET['hmbkp_schedule_id'] ) { ?> class="current"<?php } ?> href="<?php echo esc_url( add_query_arg( 'hmbkp_schedule_id', $schedule->get_id(), HMBKP_ADMIN_URL ) ); ?> "><?php esc_html_e( $schedule->get_name() ); ?> <span class="count">(<?php esc_attr_e( count( $schedule->get_backups() ) ); ?>)</span></a></li>
|
10 |
|
11 |
<?php endforeach; ?>
|
12 |
|
13 |
+
<li><a class="fancybox" href="<?php esc_attr_e( esc_url( add_query_arg( array( 'action' => 'hmbkp_add_schedule_load' ), admin_url( 'admin-ajax.php' ) ) ) ); ?>"> + <?php _e( 'add schedule', 'hmbkp' ); ?></a></li>
|
14 |
|
15 |
</ul>
|
16 |
|
17 |
<?php if ( ! empty( $_GET['hmbkp_schedule_id'] ) )
|
18 |
+
$schedule = new HMBKP_Scheduled_Backup( sanitize_text_field( $_GET['hmbkp_schedule_id'] ) );
|
19 |
|
20 |
else
|
21 |
$schedule = reset( $schedules->get_schedules() );
|
23 |
if ( ! $schedule )
|
24 |
return; ?>
|
25 |
|
26 |
+
<div data-hmbkp-schedule-id="<?php esc_attr_e( $schedule->get_id() ); ?>" class="hmbkp_schedule">
|
27 |
|
28 |
<?php require( HMBKP_PLUGIN_PATH . '/admin/schedule.php' ); ?>
|
29 |
|
46 |
|
47 |
<?php if ( $schedule->get_backups() ) :
|
48 |
|
49 |
+
$schedule->delete_old_backups();
|
50 |
+
|
51 |
foreach ( $schedule->get_backups() as $file ) :
|
52 |
|
53 |
if ( ! file_exists( $file ) )
|
admin/constants.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<dl>
|
6 |
|
7 |
<dt<?php if ( defined( 'HMBKP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_PATH</code></dt>
|
8 |
-
<dd><p><?php printf( __( 'The path to folder you would like to store your backup files in, defaults to %s.', 'hmbkp' ), '<code>' . hmbkp_path_default() . '</code>' ); ?></p><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_PATH', '/home/willmot/backups' );</code></p></dd>
|
9 |
|
10 |
<dt<?php if ( defined( 'HMBKP_MYSQLDUMP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_MYSQLDUMP_PATH</code></dt>
|
11 |
<dd><p><?php printf( __( 'The path to your %1$s executable. Will be used for the %2$s part of the back up if available.', 'hmbkp' ), '<code>mysqldump</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>' ); ?></p><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_MYSQLDUMP_PATH', '/opt/local/bin/mysqldump' );</code></p></dd>
|
5 |
<dl>
|
6 |
|
7 |
<dt<?php if ( defined( 'HMBKP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_PATH</code></dt>
|
8 |
+
<dd><p><?php printf( __( 'The path to folder you would like to store your backup files in, defaults to %s.', 'hmbkp' ), '<code>' . esc_html( hmbkp_path_default() ) . '</code>' ); ?></p><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_PATH', '/home/willmot/backups' );</code></p></dd>
|
9 |
|
10 |
<dt<?php if ( defined( 'HMBKP_MYSQLDUMP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_MYSQLDUMP_PATH</code></dt>
|
11 |
<dd><p><?php printf( __( 'The path to your %1$s executable. Will be used for the %2$s part of the back up if available.', 'hmbkp' ), '<code>mysqldump</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>' ); ?></p><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_MYSQLDUMP_PATH', '/opt/local/bin/mysqldump' );</code></p></dd>
|
admin/menu.php
CHANGED
@@ -72,8 +72,8 @@ 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' => $warning . $plugin->sections['faq'] ) );
|
76 |
-
get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => $constants ) );
|
77 |
|
78 |
get_current_screen()->set_help_sidebar(
|
79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
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(
|
79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
admin/schedule-form-excludes.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<form method="post" class="hmbkp-form">
|
2 |
|
3 |
-
<input type="hidden" name="hmbkp_schedule_id" value="<?php
|
4 |
|
5 |
<fieldset class="hmbkp-edit-schedule-excludes-form">
|
6 |
|
@@ -35,9 +35,9 @@
|
|
35 |
<?php foreach( $schedule->get_excludes() as $key => $exclude ) : ?>
|
36 |
|
37 |
<tr>
|
38 |
-
<td data-hmbkp-exclude-rule="<?php
|
39 |
|
40 |
-
<span class="code"><?php
|
41 |
|
42 |
<?php if ( $schedule->get_path() === untrailingslashit( $exclude ) ) : ?>
|
43 |
|
@@ -68,15 +68,15 @@
|
|
68 |
|
69 |
<?php if ( $schedule->get_excluded_file_count() ) : ?>
|
70 |
|
71 |
-
<li><a href="#hmbkp_excluded_files"><?php _e( 'Excluded', 'hmbkp' ); ?></a>(<?php
|
72 |
|
73 |
<?php endif; ?>
|
74 |
|
75 |
-
<li><a href="#hmbkp_included_files"><?php _e( 'Included', 'hmbkp' ); ?></a>(<?php
|
76 |
|
77 |
<?php if ( $schedule->get_unreadable_file_count() ) : ?>
|
78 |
|
79 |
-
<li><a href="#hmbkp_unreadable_files"><?php _e( 'Unreadable', 'hmbkp' ); ?></a>(<?php
|
80 |
|
81 |
<?php endif; ?>
|
82 |
|
@@ -110,7 +110,7 @@
|
|
110 |
|
111 |
<?php endif; ?>
|
112 |
|
113 |
-
<p><?php printf( __( 'Your site is %s. Backups will be compressed and so will be smaller.', 'hmbkp' ), '<code>' . $schedule->get_filesize( false ) . '</code>' ); ?></p>
|
114 |
|
115 |
</div>
|
116 |
|
1 |
<form method="post" class="hmbkp-form">
|
2 |
|
3 |
+
<input type="hidden" name="hmbkp_schedule_id" value="<?php esc_attr_e( $schedule->get_id() ); ?>" />
|
4 |
|
5 |
<fieldset class="hmbkp-edit-schedule-excludes-form">
|
6 |
|
35 |
<?php foreach( $schedule->get_excludes() as $key => $exclude ) : ?>
|
36 |
|
37 |
<tr>
|
38 |
+
<td data-hmbkp-exclude-rule="<?php esc_attr_e( $exclude ); ?>">
|
39 |
|
40 |
+
<span class="code"><?php esc_attr_e( str_ireplace( untrailingslashit( $schedule->get_root() ), '', $exclude ) ); ?></span>
|
41 |
|
42 |
<?php if ( $schedule->get_path() === untrailingslashit( $exclude ) ) : ?>
|
43 |
|
68 |
|
69 |
<?php if ( $schedule->get_excluded_file_count() ) : ?>
|
70 |
|
71 |
+
<li><a href="#hmbkp_excluded_files"><?php _e( 'Excluded', 'hmbkp' ); ?></a>(<?php esc_html_e( $schedule->get_excluded_file_count() ); ?>)</li>
|
72 |
|
73 |
<?php endif; ?>
|
74 |
|
75 |
+
<li><a href="#hmbkp_included_files"><?php _e( 'Included', 'hmbkp' ); ?></a>(<?php esc_html_e( $schedule->get_included_file_count() ); ?>)</li>
|
76 |
|
77 |
<?php if ( $schedule->get_unreadable_file_count() ) : ?>
|
78 |
|
79 |
+
<li><a href="#hmbkp_unreadable_files"><?php _e( 'Unreadable', 'hmbkp' ); ?></a>(<?php esc_html_e( $schedule->get_unreadable_file_count() ); ?>)</li>
|
80 |
|
81 |
<?php endif; ?>
|
82 |
|
110 |
|
111 |
<?php endif; ?>
|
112 |
|
113 |
+
<p><?php printf( __( 'Your site is %s. Backups will be compressed and so will be smaller.', 'hmbkp' ), '<code>' . esc_html( $schedule->get_filesize( false ) ) . '</code>' ); ?></p>
|
114 |
|
115 |
</div>
|
116 |
|
admin/schedule-form.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<form method="post" class="hmbkp-form" novalidate data-schedule-action="<?php if ( isset( $is_new_schedule ) ) { ?>add<?php } else { ?>edit<?php } ?>">
|
2 |
|
3 |
-
<input type="hidden" name="hmbkp_schedule_id" value="<?php
|
4 |
|
5 |
<fieldset class="hmbkp-edit-schedule-form">
|
6 |
|
@@ -26,9 +26,9 @@
|
|
26 |
|
27 |
<option value="manually"><?php _e( 'Manual Only', 'hmbkp' ); ?></option>
|
28 |
|
29 |
-
<?php foreach(
|
30 |
|
31 |
-
<option<?php selected( $schedule->get_reoccurrence(), $cron_schedule ); ?> value="<?php
|
32 |
|
33 |
<?php endforeach; ?>
|
34 |
|
@@ -40,7 +40,7 @@
|
|
40 |
|
41 |
<?php _e( 'Number of backups to store on this server', 'hmbkp' ); ?>
|
42 |
|
43 |
-
<input type="number" name="hmbkp_schedule_max_backups" min="1" step="1" value="<?php
|
44 |
|
45 |
<p class="description"><?php _e( 'The number of previous backups to store on the server. past this limit older backups will be deleted automatically.', 'hmbkp' ); ?></p>
|
46 |
|
1 |
<form method="post" class="hmbkp-form" novalidate data-schedule-action="<?php if ( isset( $is_new_schedule ) ) { ?>add<?php } else { ?>edit<?php } ?>">
|
2 |
|
3 |
+
<input type="hidden" name="hmbkp_schedule_id" value="<?php esc_attr_e( $schedule->get_id() ); ?>" />
|
4 |
|
5 |
<fieldset class="hmbkp-edit-schedule-form">
|
6 |
|
26 |
|
27 |
<option value="manually"><?php _e( 'Manual Only', 'hmbkp' ); ?></option>
|
28 |
|
29 |
+
<?php foreach( hmbkp_cron_schedules() as $cron_schedule => $cron_details ) : ?>
|
30 |
|
31 |
+
<option<?php selected( $schedule->get_reoccurrence(), $cron_schedule ); ?> value="<?php esc_attr_e( $cron_schedule ); ?>"><?php esc_html_e( $cron_details['display'] ); ?></option>
|
32 |
|
33 |
<?php endforeach; ?>
|
34 |
|
40 |
|
41 |
<?php _e( 'Number of backups to store on this server', 'hmbkp' ); ?>
|
42 |
|
43 |
+
<input type="number" name="hmbkp_schedule_max_backups" min="1" step="1" value="<?php esc_attr_e( $schedule->get_max_backups() ); ?>" />
|
44 |
|
45 |
<p class="description"><?php _e( 'The number of previous backups to store on the server. past this limit older backups will be deleted automatically.', 'hmbkp' ); ?></p>
|
46 |
|
admin/schedule.php
CHANGED
@@ -9,7 +9,7 @@ $type = strtolower( hmbkp_human_get_type( $schedule->get_type() ) );
|
|
9 |
// Backup Time
|
10 |
$day = date_i18n( 'l', $schedule->get_next_occurrence( false ) );
|
11 |
|
12 |
-
$next_backup = 'title="' . sprintf( __( 'The next backup will be on %1$s at %2$s', 'hmbkp' ), date_i18n( get_option( 'date_format' ), $schedule->get_next_occurrence( false ) ), date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '"';
|
13 |
|
14 |
// Backup Re-occurrence
|
15 |
switch ( $schedule->get_reoccurrence() ) :
|
@@ -22,7 +22,7 @@ switch ( $schedule->get_reoccurrence() ) :
|
|
22 |
|
23 |
case 'daily' :
|
24 |
|
25 |
-
$reoccurrence = sprintf( __( 'daily at %s', 'hmbkp' ), '<span ' . $next_backup . '>' . date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) . '</span>' );
|
26 |
|
27 |
break;
|
28 |
|
@@ -34,26 +34,26 @@ switch ( $schedule->get_reoccurrence() ) :
|
|
34 |
|
35 |
sort( $times );
|
36 |
|
37 |
-
$reoccurrence = sprintf( __( 'every 12 hours at %1$s & %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . reset( $times ) . '</span>', '<span>' . end( $times ) ) . '</span>';
|
38 |
|
39 |
break;
|
40 |
|
41 |
case 'weekly' :
|
42 |
|
43 |
-
$reoccurrence = sprintf( __( 'weekly on %1$s at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . $day . '</span>', '<span>' . date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) . '</span>' );
|
44 |
|
45 |
break;
|
46 |
|
47 |
case 'fortnightly' :
|
48 |
|
49 |
-
$reoccurrence = sprintf( __( 'fortnightly on %1$s at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . $day . '</span>', '<span>' . date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) . '</span>' );
|
50 |
|
51 |
break;
|
52 |
|
53 |
|
54 |
case 'monthly' :
|
55 |
|
56 |
-
$reoccurrence = sprintf( __( 'on the %1$s of each month at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . date_i18n( 'jS', $schedule->get_next_occurrence( false ) ) . '</span>', '<span>' . date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) . '</span>' );
|
57 |
|
58 |
break;
|
59 |
|
@@ -84,7 +84,7 @@ switch ( $schedule->get_max_backups() ) :
|
|
84 |
|
85 |
default :
|
86 |
|
87 |
-
$backup_to_keep = sprintf( __( 'store only the last %1$s backups on %2$s', 'hmbkp' ),
|
88 |
|
89 |
endswitch;
|
90 |
|
9 |
// Backup Time
|
10 |
$day = date_i18n( 'l', $schedule->get_next_occurrence( false ) );
|
11 |
|
12 |
+
$next_backup = 'title="' . esc_attr( sprintf( __( 'The next backup will be on %1$s at %2$s', 'hmbkp' ), date_i18n( get_option( 'date_format' ), $schedule->get_next_occurrence( false ) ), date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) ) . '"';
|
13 |
|
14 |
// Backup Re-occurrence
|
15 |
switch ( $schedule->get_reoccurrence() ) :
|
22 |
|
23 |
case 'daily' :
|
24 |
|
25 |
+
$reoccurrence = sprintf( __( 'daily at %s', 'hmbkp' ), '<span ' . $next_backup . '>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>' );
|
26 |
|
27 |
break;
|
28 |
|
34 |
|
35 |
sort( $times );
|
36 |
|
37 |
+
$reoccurrence = sprintf( __( 'every 12 hours at %1$s & %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . esc_html( reset( $times ) ) . '</span>', '<span>' . esc_html( end( $times ) ) ) . '</span>';
|
38 |
|
39 |
break;
|
40 |
|
41 |
case 'weekly' :
|
42 |
|
43 |
+
$reoccurrence = sprintf( __( 'weekly on %1$s at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' .esc_html( $day ) . '</span>', '<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>' );
|
44 |
|
45 |
break;
|
46 |
|
47 |
case 'fortnightly' :
|
48 |
|
49 |
+
$reoccurrence = sprintf( __( 'fortnightly on %1$s at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . $day . '</span>', '<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>' );
|
50 |
|
51 |
break;
|
52 |
|
53 |
|
54 |
case 'monthly' :
|
55 |
|
56 |
+
$reoccurrence = sprintf( __( 'on the %1$s of each month at %2$s', 'hmbkp' ), '<span ' . $next_backup . '>' . esc_html( date_i18n( 'jS', $schedule->get_next_occurrence( false ) ) ) . '</span>', '<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>' );
|
57 |
|
58 |
break;
|
59 |
|
84 |
|
85 |
default :
|
86 |
|
87 |
+
$backup_to_keep = sprintf( __( 'store only the last %1$s backups on %2$s', 'hmbkp' ), esc_html( $schedule->get_max_backups() ), $server );
|
88 |
|
89 |
endswitch;
|
90 |
|
assets/hmbkp.css
CHANGED
@@ -63,7 +63,7 @@ tfoot p { margin: 0; font-weight: normal; }
|
|
63 |
.hmbkp-schedule-actions { font-size: 12px; font-weight: normal; margin: 0 0 0 26px; }
|
64 |
|
65 |
.hmbkp-ajax-loading, button.hmbkp-ajax-loading { padding-left: 20px; }
|
66 |
-
.hmbkp-ajax-loading::before { background-image: url('wpspin_light.gif'); background-repeat: no-repeat; background-position:
|
67 |
|
68 |
button { height: 14px; }
|
69 |
|
@@ -71,12 +71,12 @@ button { height: 14px; }
|
|
71 |
.delete-action:hover .delete-action:focus { color: red; }
|
72 |
|
73 |
label[for="hmbkp-new-exclude-rule"] { overflow: hidden; }
|
74 |
-
.hmbkp_preview_exclude_rule { float: right; margin-top: 1px; }
|
75 |
-
.hmbkp_preview_exclude_rule.hmbkp-ajax-loading { width:
|
76 |
div.hmbkp_add_exclude_rule { display: block; line-height: 25px; width: 320px; overflow: hidden; }
|
77 |
div.hmbkp_add_exclude_rule input { min-width: 240px; float: left; }
|
78 |
-
.hmbkp_preview_exclude_rule { float:
|
79 |
-
.hmbkp_save_exclude_rule, .hmbkp_cancel_save_exclude_rule { float:
|
80 |
|
81 |
.hmbkp-exclude-preview-open table, .hmbkp-exclude-preview-open .hmbkp-tabs, .hmbkp-exclude-preview-open p.submit { display: none; }
|
82 |
.hmbkp-exclude-preview-open .hmbkp_add_exclude_rule { margin: 0; }
|
@@ -86,4 +86,18 @@ table.widefat tbody td { padding: 8px 7px; }
|
|
86 |
.hmbkp-edit-schedule-excludes-form td span.reason { color: #CCC; }
|
87 |
input[type="datetime-local"] { border-radius: 3px; border-width: 1px; border-style: solid; box-sizing: border-box; border-color: #DFDFDF; background-color: white; }
|
88 |
|
89 |
-
pre { background-color: #eee; padding: 10px; white-space: normal; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
.hmbkp-schedule-actions { font-size: 12px; font-weight: normal; margin: 0 0 0 26px; }
|
64 |
|
65 |
.hmbkp-ajax-loading, button.hmbkp-ajax-loading { padding-left: 20px; }
|
66 |
+
.hmbkp-ajax-loading::before { background-image: url('wpspin_light-2x.gif'); background-repeat: no-repeat; background-position: 0 -0px; background-size: 16px 16px; margin-left: -4px; display: inline-block; width: 18px; height: 18px; content: " "; vertical-align: middle; padding-right: 1px; }
|
67 |
|
68 |
button { height: 14px; }
|
69 |
|
71 |
.delete-action:hover .delete-action:focus { color: red; }
|
72 |
|
73 |
label[for="hmbkp-new-exclude-rule"] { overflow: hidden; }
|
74 |
+
.hmbkp_preview_exclude_rule { float: right; margin-top: 1px ! important; padding: 0 3px 1px ! important;}
|
75 |
+
.hmbkp_preview_exclude_rule.hmbkp-ajax-loading { width: 70px; }
|
76 |
div.hmbkp_add_exclude_rule { display: block; line-height: 25px; width: 320px; overflow: hidden; }
|
77 |
div.hmbkp_add_exclude_rule input { min-width: 240px; float: left; }
|
78 |
+
.hmbkp_preview_exclude_rule { float: left; width: 55px; }
|
79 |
+
.hmbkp_save_exclude_rule, .hmbkp_cancel_save_exclude_rule { float: left; }
|
80 |
|
81 |
.hmbkp-exclude-preview-open table, .hmbkp-exclude-preview-open .hmbkp-tabs, .hmbkp-exclude-preview-open p.submit { display: none; }
|
82 |
.hmbkp-exclude-preview-open .hmbkp_add_exclude_rule { margin: 0; }
|
86 |
.hmbkp-edit-schedule-excludes-form td span.reason { color: #CCC; }
|
87 |
input[type="datetime-local"] { border-radius: 3px; border-width: 1px; border-style: solid; box-sizing: border-box; border-color: #DFDFDF; background-color: white; }
|
88 |
|
89 |
+
pre { background-color: #eee; padding: 10px; white-space: normal; }
|
90 |
+
|
91 |
+
@media only screen and ( max-width : 321px ) {
|
92 |
+
|
93 |
+
div.hmbkp_add_exclude_rule input { width: 100% !important; }
|
94 |
+
|
95 |
+
.hmbkp_preview_exclude_rule { float: left !important; width: 100% !important; height: 40px !important; }
|
96 |
+
|
97 |
+
.hmbkp-form .button-primary { float: right !important; width: 100% !important; height: 40px !important; }
|
98 |
+
|
99 |
+
.hmbkp-form .hmbkp-edit-schedule-form .button-primary { width: 49% !important; }
|
100 |
+
|
101 |
+
.hmbkp-form .hmbkp-fancybox-close { float: left !important; width: 49% !important; height: 40px !important; }
|
102 |
+
|
103 |
+
}
|
assets/hmbkp.js
CHANGED
@@ -29,8 +29,8 @@ jQuery( document ).ready( function( $ ) {
|
|
29 |
|
30 |
$( '.hmbkp-tabs' ).tabs();
|
31 |
|
32 |
-
if ( $( ".hmbkp-form p.submit:contains('" +
|
33 |
-
$( '<button type="button" class="button-secondary hmbkp-fancybox-close">' +
|
34 |
|
35 |
}
|
36 |
|
@@ -39,7 +39,7 @@ jQuery( document ).ready( function( $ ) {
|
|
39 |
// Show delete confirm message for delete schedule
|
40 |
$( document ).on( 'click', '.hmbkp-schedule-actions .delete-action', function( e ) {
|
41 |
|
42 |
-
if ( ! confirm(
|
43 |
e.preventDefault();
|
44 |
|
45 |
} );
|
@@ -47,7 +47,7 @@ jQuery( document ).ready( function( $ ) {
|
|
47 |
// Show delete confirm message for delete backup
|
48 |
$( document ).on( 'click', '.hmbkp_manage_backups_row .delete-action', function( e ) {
|
49 |
|
50 |
-
if ( ! confirm(
|
51 |
e.preventDefault();
|
52 |
|
53 |
} );
|
@@ -55,7 +55,7 @@ jQuery( document ).ready( function( $ ) {
|
|
55 |
// Show delete confirm message for remove exclude rule
|
56 |
$( document ).on( 'click', '.hmbkp-edit-schedule-excludes-form .delete-action', function( e ) {
|
57 |
|
58 |
-
if ( ! confirm(
|
59 |
e.preventDefault();
|
60 |
|
61 |
} );
|
@@ -76,8 +76,6 @@ jQuery( document ).ready( function( $ ) {
|
|
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 |
-
console.log( data );
|
80 |
-
|
81 |
$( '.hmbkp_add_exclude_rule ul' ).remove();
|
82 |
$( '.hmbkp_add_exclude_rule p' ).remove();
|
83 |
|
@@ -202,7 +200,7 @@ jQuery( document ).ready( function( $ ) {
|
|
202 |
scheduleId = $( this ).closest( 'form' ).find( '[name="hmbkp_schedule_id"]' ).val();
|
203 |
|
204 |
// Warn that backups will be deleted if max backups has been set to less than the number of backups currently stored
|
205 |
-
if ( ! isNewSchedule && Number( $( 'input[name="hmbkp_schedule_max_backups"]' ).val() ) < Number( $( '.hmbkp_manage_backups_row' ).size() ) && ! confirm(
|
206 |
return false;
|
207 |
|
208 |
$( this ).find( 'button[type="submit"]' ).addClass( 'hmbkp-ajax-loading' );
|
29 |
|
30 |
$( '.hmbkp-tabs' ).tabs();
|
31 |
|
32 |
+
if ( $( ".hmbkp-form p.submit:contains('" + hmbkp.update + "')" ).size() )
|
33 |
+
$( '<button type="button" class="button-secondary hmbkp-fancybox-close">' + hmbkp.cancel + '</button></p>' ).appendTo( '.hmbkp-form p.submit' );
|
34 |
|
35 |
}
|
36 |
|
39 |
// Show delete confirm message for delete schedule
|
40 |
$( document ).on( 'click', '.hmbkp-schedule-actions .delete-action', function( e ) {
|
41 |
|
42 |
+
if ( ! confirm( hmbkp.delete_schedule ) )
|
43 |
e.preventDefault();
|
44 |
|
45 |
} );
|
47 |
// Show delete confirm message for delete backup
|
48 |
$( document ).on( 'click', '.hmbkp_manage_backups_row .delete-action', function( e ) {
|
49 |
|
50 |
+
if ( ! confirm( hmbkp.delete_backup ) )
|
51 |
e.preventDefault();
|
52 |
|
53 |
} );
|
55 |
// Show delete confirm message for remove exclude rule
|
56 |
$( document ).on( 'click', '.hmbkp-edit-schedule-excludes-form .delete-action', function( e ) {
|
57 |
|
58 |
+
if ( ! confirm( hmbkp.remove_exclude_rule ) )
|
59 |
e.preventDefault();
|
60 |
|
61 |
} );
|
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();
|
80 |
$( '.hmbkp_add_exclude_rule p' ).remove();
|
81 |
|
200 |
scheduleId = $( this ).closest( 'form' ).find( '[name="hmbkp_schedule_id"]' ).val();
|
201 |
|
202 |
// Warn that backups will be deleted if max backups has been set to less than the number of backups currently stored
|
203 |
+
if ( ! isNewSchedule && Number( $( 'input[name="hmbkp_schedule_max_backups"]' ).val() ) < Number( $( '.hmbkp_manage_backups_row' ).size() ) && ! confirm( hmbkp.remove_old_backups ) )
|
204 |
return false;
|
205 |
|
206 |
$( this ).find( 'button[type="submit"]' ).addClass( 'hmbkp-ajax-loading' );
|
assets/wpspin_light-2x.gif
ADDED
Binary file
|
classes/email.php
CHANGED
@@ -45,7 +45,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
|
|
45 |
|
46 |
if ( $emails = $this->get_email_address_array() ) {
|
47 |
|
48 |
-
$email = '<code>' . implode( '</code>, <code>', $emails ) . '</code>';
|
49 |
|
50 |
return sprintf( __( 'Send an email notification to %s', 'hmbkp' ), $email );
|
51 |
|
@@ -69,7 +69,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
|
|
69 |
if ( ! empty( $new_data['email'] ) )
|
70 |
foreach( explode( ',', $new_data['email'] ) as $email )
|
71 |
if ( ! is_email( trim( $email ) ) )
|
72 |
-
$errors['email'] = sprintf( __( '%s isn\'t a valid email', 'hmbkp' ),
|
73 |
|
74 |
|
75 |
if ( ! empty( $errors['email'] ) )
|
@@ -126,7 +126,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
|
|
126 |
|
127 |
$subject = sprintf( __( 'Backup of %s Failed', 'hmbkp' ), $domain );
|
128 |
|
129 |
-
$message = sprintf( __( 'BackUpWordPress was unable to backup your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'Here are the errors that we\'re encountered:', 'hmbkp' ) . "\n\n" . '%2$s' . "\n\n" . __( 'If the errors above look like Martian, forward this email to %3$s and we\'ll take a look', 'hmbkp' ) . "\n\n" . __( "Kind Regards,\nThe Apologetic BackUpWordPress Backup Emailing Robot", 'hmbkp' ), home_url(), $error_message, 'support@hmn.md' );
|
130 |
|
131 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers );
|
132 |
|
@@ -139,7 +139,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
|
|
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(), $download );
|
143 |
|
144 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers, $file );
|
145 |
|
@@ -148,7 +148,7 @@ class HMBKP_Email_Service extends HMBKP_Service {
|
|
148 |
// If we didn't send the email above then send just the notification
|
149 |
if ( ! $sent ) {
|
150 |
|
151 |
-
$message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'Unfortunately the backup file was too large to attach 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(), $download );
|
152 |
|
153 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers );
|
154 |
|
45 |
|
46 |
if ( $emails = $this->get_email_address_array() ) {
|
47 |
|
48 |
+
$email = '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $emails ) ) . '</code>';
|
49 |
|
50 |
return sprintf( __( 'Send an email notification to %s', 'hmbkp' ), $email );
|
51 |
|
69 |
if ( ! empty( $new_data['email'] ) )
|
70 |
foreach( explode( ',', $new_data['email'] ) as $email )
|
71 |
if ( ! is_email( trim( $email ) ) )
|
72 |
+
$errors['email'] = sprintf( __( '%s isn\'t a valid email', 'hmbkp' ), esc_html( $email ) );
|
73 |
|
74 |
|
75 |
if ( ! empty( $errors['email'] ) )
|
126 |
|
127 |
$subject = sprintf( __( 'Backup of %s Failed', 'hmbkp' ), $domain );
|
128 |
|
129 |
+
$message = sprintf( __( 'BackUpWordPress was unable to backup your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'Here are the errors that we\'re encountered:', 'hmbkp' ) . "\n\n" . '%2$s' . "\n\n" . __( 'If the errors above look like Martian, forward this email to %3$s and we\'ll take a look', 'hmbkp' ) . "\n\n" . __( "Kind Regards,\nThe Apologetic BackUpWordPress Backup Emailing Robot", 'hmbkp' ), home_url(), esc_html( $error_message ), 'support@hmn.md' );
|
130 |
|
131 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers );
|
132 |
|
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 |
|
144 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers, $file );
|
145 |
|
148 |
// If we didn't send the email above then send just the notification
|
149 |
if ( ! $sent ) {
|
150 |
|
151 |
+
$message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.', 'hmbkp' ) . "\n\n" . __( 'Unfortunately the backup file was too large to attach 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 ) );
|
152 |
|
153 |
$sent = wp_mail( $this->get_email_address_array(), $subject, $message, $headers );
|
154 |
|
classes/schedule.php
CHANGED
@@ -96,8 +96,8 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
96 |
// Set the archive filename to site name + schedule slug + date
|
97 |
$this->set_archive_filename( implode( '-', array( sanitize_title( str_ireplace( array( 'http://', 'https://', 'www' ), '', home_url() ) ), $this->get_id(), $this->get_type(), date( 'Y-m-d-H-i-s', current_time( 'timestamp' ) ) ) ) . '.zip' );
|
98 |
|
99 |
-
// Setup the schedule if it isn't set
|
100 |
-
if ( ( ! $this->get_next_occurrence() && in_array( $this->get_reoccurrence(), array_keys(
|
101 |
$this->schedule();
|
102 |
|
103 |
}
|
@@ -161,6 +161,9 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
161 |
*/
|
162 |
public function set_type( $type ) {
|
163 |
|
|
|
|
|
|
|
164 |
parent::set_type( $type );
|
165 |
|
166 |
$this->options['type'] = $type;
|
@@ -310,7 +313,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
310 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
311 |
continue;
|
312 |
|
313 |
-
if ( ! $file->isReadable() )
|
314 |
continue;
|
315 |
|
316 |
// Excludes
|
@@ -364,9 +367,13 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
364 |
if ( $this->get_reoccurrence() === 'manually' )
|
365 |
return 0;
|
366 |
|
367 |
-
if (
|
|
|
|
|
|
|
368 |
|
369 |
-
|
|
|
370 |
|
371 |
// Convert to UTC
|
372 |
$date -= get_option( 'gmt_offset' ) * 3600;
|
@@ -404,7 +411,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
404 |
if ( empty( $this->options['reoccurrence'] ) )
|
405 |
$this->set_reoccurrence( 'manually' );
|
406 |
|
407 |
-
return
|
408 |
|
409 |
}
|
410 |
|
@@ -417,7 +424,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
417 |
public function set_reoccurrence( $reoccurrence ) {
|
418 |
|
419 |
// Check it's valid
|
420 |
-
if ( ! is_string( $reoccurrence ) || ! trim( $reoccurrence ) || ( ! in_array( $reoccurrence, array_keys(
|
421 |
throw new Exception( 'Argument 1 for ' . __METHOD__ . ' must be a valid cron reoccurrence or "manually"' );
|
422 |
|
423 |
if ( isset( $this->options['reoccurrence'] ) && $this->options['reoccurrence'] === $reoccurrence )
|
@@ -441,7 +448,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
441 |
*/
|
442 |
public function get_interval() {
|
443 |
|
444 |
-
$schedules =
|
445 |
|
446 |
if ( $this->get_reoccurrence() === 'manually' )
|
447 |
return 0;
|
@@ -515,6 +522,9 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
515 |
// Mark the backup as started
|
516 |
$this->set_status( __( 'Starting Backup', 'hmbkp' ) );
|
517 |
|
|
|
|
|
|
|
518 |
$this->backup();
|
519 |
|
520 |
// Delete the backup running file
|
@@ -561,7 +571,7 @@ class HMBKP_Scheduled_Backup extends HM_Backup {
|
|
561 |
* @param string $message
|
562 |
* @return void
|
563 |
*/
|
564 |
-
|
565 |
|
566 |
if ( ! $handle = fopen( $this->get_schedule_running_path(), 'w' ) )
|
567 |
return;
|
96 |
// Set the archive filename to site name + schedule slug + date
|
97 |
$this->set_archive_filename( implode( '-', array( sanitize_title( str_ireplace( array( 'http://', 'https://', 'www' ), '', home_url() ) ), $this->get_id(), $this->get_type(), date( 'Y-m-d-H-i-s', current_time( 'timestamp' ) ) ) ) . '.zip' );
|
98 |
|
99 |
+
// Setup the schedule if it isn't set
|
100 |
+
if ( ( ! $this->get_next_occurrence() && in_array( $this->get_reoccurrence(), array_keys( hmbkp_cron_schedules() ) ) ) || ( date( get_option( 'time_format' ), strtotime( HMBKP_SCHEDULE_TIME ) - ( get_option( 'gmt_offset' ) * 3600 ) ) !== date( get_option( 'time_format' ), $this->get_next_occurrence() ) ) )
|
101 |
$this->schedule();
|
102 |
|
103 |
}
|
161 |
*/
|
162 |
public function set_type( $type ) {
|
163 |
|
164 |
+
if ( isset( $this->options['type'] ) && $this->options['type'] === $type )
|
165 |
+
return;
|
166 |
+
|
167 |
parent::set_type( $type );
|
168 |
|
169 |
$this->options['type'] = $type;
|
313 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
314 |
continue;
|
315 |
|
316 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
317 |
continue;
|
318 |
|
319 |
// Excludes
|
367 |
if ( $this->get_reoccurrence() === 'manually' )
|
368 |
return 0;
|
369 |
|
370 |
+
if ( empty( $this->schedule_start_time ) ) {
|
371 |
+
|
372 |
+
if ( defined( 'HMBKP_SCHEDULE_TIME' ) && HMBKP_SCHEDULE_TIME )
|
373 |
+
$date = strtotime( HMBKP_SCHEDULE_TIME );
|
374 |
|
375 |
+
else
|
376 |
+
$date = strtotime( '11pm' );
|
377 |
|
378 |
// Convert to UTC
|
379 |
$date -= get_option( 'gmt_offset' ) * 3600;
|
411 |
if ( empty( $this->options['reoccurrence'] ) )
|
412 |
$this->set_reoccurrence( 'manually' );
|
413 |
|
414 |
+
return $this->options['reoccurrence'];
|
415 |
|
416 |
}
|
417 |
|
424 |
public function set_reoccurrence( $reoccurrence ) {
|
425 |
|
426 |
// Check it's valid
|
427 |
+
if ( ! is_string( $reoccurrence ) || ! trim( $reoccurrence ) || ( ! in_array( $reoccurrence, array_keys( hmbkp_cron_schedules() ) ) ) && $reoccurrence !== 'manually' )
|
428 |
throw new Exception( 'Argument 1 for ' . __METHOD__ . ' must be a valid cron reoccurrence or "manually"' );
|
429 |
|
430 |
if ( isset( $this->options['reoccurrence'] ) && $this->options['reoccurrence'] === $reoccurrence )
|
448 |
*/
|
449 |
public function get_interval() {
|
450 |
|
451 |
+
$schedules = hmbkp_cron_schedules();
|
452 |
|
453 |
if ( $this->get_reoccurrence() === 'manually' )
|
454 |
return 0;
|
522 |
// Mark the backup as started
|
523 |
$this->set_status( __( 'Starting Backup', 'hmbkp' ) );
|
524 |
|
525 |
+
// Delete old backups now in-case we fatal error during the backup process
|
526 |
+
$this->delete_old_backups();
|
527 |
+
|
528 |
$this->backup();
|
529 |
|
530 |
// Delete the backup running file
|
571 |
* @param string $message
|
572 |
* @return void
|
573 |
*/
|
574 |
+
public function set_status( $message ) {
|
575 |
|
576 |
if ( ! $handle = fopen( $this->get_schedule_running_path(), 'w' ) )
|
577 |
return;
|
classes/services.php
CHANGED
@@ -86,7 +86,7 @@ abstract class HMBKP_Service {
|
|
86 |
|
87 |
$old_data = $this->schedule->get_service_options( $classname );
|
88 |
|
89 |
-
$new_data = isset( $_GET[$classname] ) ? $_GET[$classname] :
|
90 |
|
91 |
$errors = $this->update( $new_data, $old_data );
|
92 |
|
86 |
|
87 |
$old_data = $this->schedule->get_service_options( $classname );
|
88 |
|
89 |
+
$new_data = isset( $_GET[$classname] ) ? $_GET[$classname] : array();
|
90 |
|
91 |
$errors = $this->update( $new_data, $old_data );
|
92 |
|
functions/core.php
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
*/
|
6 |
function hmbkp_activate() {
|
7 |
|
|
|
8 |
hmbkp_deactivate();
|
9 |
|
10 |
}
|
@@ -16,30 +17,17 @@ function hmbkp_activate() {
|
|
16 |
*/
|
17 |
function hmbkp_deactivate() {
|
18 |
|
19 |
-
//
|
20 |
-
|
21 |
-
'hmbkp_zip_path',
|
22 |
-
'hmbkp_mysqldump_path',
|
23 |
-
'hmbkp_path',
|
24 |
-
'hmbkp_running',
|
25 |
-
'hmbkp_status',
|
26 |
-
'hmbkp_complete',
|
27 |
-
'hmbkp_email_error'
|
28 |
-
);
|
29 |
|
30 |
-
|
31 |
-
|
32 |
|
33 |
-
|
34 |
-
delete_transient( 'hmbkp_estimated_filesize' );
|
35 |
|
36 |
-
// Clear
|
37 |
-
foreach(
|
38 |
-
|
39 |
-
if ( strpos( $key, 'hmbkp' ) !== false )
|
40 |
-
wp_clear_scheduled_hook( $key );
|
41 |
-
|
42 |
-
hmbkp_cleanup();
|
43 |
|
44 |
}
|
45 |
|
@@ -144,7 +132,6 @@ function hmbkp_update() {
|
|
144 |
foreach ( array( 'hmbkp_database_only', 'hmbkp_files_only', 'hmbkp_max_backups', 'hmbkp_email_address', 'hmbkp_email', 'hmbkp_schedule_frequency', 'hmbkp_disable_automatic_backup' ) as $option_name )
|
145 |
delete_option( $option_name );
|
146 |
|
147 |
-
|
148 |
}
|
149 |
|
150 |
// Every update
|
@@ -207,20 +194,23 @@ function hmbkp_setup_default_schedules() {
|
|
207 |
add_action( 'admin_init', 'hmbkp_setup_default_schedules' );
|
208 |
|
209 |
/**
|
210 |
-
*
|
211 |
*
|
212 |
-
* @param array $reccurrences
|
213 |
* @return array $reccurrences
|
214 |
*/
|
215 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
-
return array_merge( $reccurrences, array(
|
218 |
-
'weekly' => array( 'interval' => 604800, 'display' => 'Once Weekly' ),
|
219 |
-
'fortnightly' => array( 'interval' => 1209600, 'display' => 'Once Fortnightly' ),
|
220 |
-
'monthly' => array( 'interval' => 2629743.83 , 'display' => 'Once Monthly' )
|
221 |
-
) );
|
222 |
}
|
223 |
-
add_filter( 'cron_schedules', '
|
224 |
|
225 |
/**
|
226 |
* Recursively delete a directory including
|
@@ -230,6 +220,9 @@ add_filter( 'cron_schedules', 'hmbkp_more_reccurences' );
|
|
230 |
*/
|
231 |
function hmbkp_rmdirtree( $dir ) {
|
232 |
|
|
|
|
|
|
|
233 |
if ( is_file( $dir ) )
|
234 |
@unlink( $dir );
|
235 |
|
@@ -320,7 +313,7 @@ function hmbkp_path_default() {
|
|
320 |
|
321 |
if ( empty( $path ) ) {
|
322 |
|
323 |
-
$path = HM_Backup::conform_dir( trailingslashit( WP_CONTENT_DIR ) . substr(
|
324 |
|
325 |
update_option( 'hmbkp_default_path', $path );
|
326 |
|
@@ -329,9 +322,9 @@ function hmbkp_path_default() {
|
|
329 |
$upload_dir = wp_upload_dir();
|
330 |
|
331 |
// If the backups dir can't be created in WP_CONTENT_DIR then fallback to uploads
|
332 |
-
if ( ( ! is_dir( $path ) && ! is_writable( dirname( $path ) ) ) || ( is_dir( $path ) && ! is_writable( $path ) ) && strpos( $path, $upload_dir['basedir'] ) === false ) {
|
333 |
|
334 |
-
hmbkp_path_move( $path, $path = HM_Backup::conform_dir( trailingslashit( $upload_dir['basedir'] ) . substr(
|
335 |
|
336 |
update_option( 'hmbkp_default_path', $path );
|
337 |
|
@@ -350,24 +343,28 @@ function hmbkp_path_default() {
|
|
350 |
*/
|
351 |
function hmbkp_path_move( $from, $to ) {
|
352 |
|
353 |
-
if ( ! untrailingslashit( $from ) || ! untrailingslashit( $to ) )
|
354 |
return;
|
355 |
|
356 |
-
// Create the
|
357 |
if ( is_writable( dirname( $to ) ) && ! is_dir( $to ) )
|
358 |
mkdir( $to, 0755 );
|
359 |
|
|
|
360 |
if ( ! is_dir( $to ) || ! is_writable( $to ) )
|
361 |
return false;
|
362 |
|
363 |
update_option( 'hmbkp_path', $to );
|
364 |
|
365 |
-
|
366 |
-
|
367 |
if ( ! is_dir( $from ) )
|
368 |
return false;
|
369 |
|
370 |
-
|
|
|
|
|
|
|
|
|
371 |
|
372 |
while ( false !== ( $file = readdir( $handle ) ) )
|
373 |
if ( $file !== '.' && $file !== '..' )
|
@@ -376,7 +373,7 @@ function hmbkp_path_move( $from, $to ) {
|
|
376 |
|
377 |
closedir( $handle );
|
378 |
|
379 |
-
|
380 |
|
381 |
hmbkp_rmdirtree( $from );
|
382 |
|
5 |
*/
|
6 |
function hmbkp_activate() {
|
7 |
|
8 |
+
// Run deactivate on activation in-case it was deactivated manually
|
9 |
hmbkp_deactivate();
|
10 |
|
11 |
}
|
17 |
*/
|
18 |
function hmbkp_deactivate() {
|
19 |
|
20 |
+
// Clean up the backups directory
|
21 |
+
hmbkp_cleanup();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
+
// Remove the plugin data cache
|
24 |
+
delete_transient( 'hmbkp_plugin_data' );
|
25 |
|
26 |
+
$schedules = new HMBKP_Schedules;
|
|
|
27 |
|
28 |
+
// Clear schedule crons
|
29 |
+
foreach ( $schedules->get_schedules() as $schedule )
|
30 |
+
$schedule->unschedule();
|
|
|
|
|
|
|
|
|
31 |
|
32 |
}
|
33 |
|
132 |
foreach ( array( 'hmbkp_database_only', 'hmbkp_files_only', 'hmbkp_max_backups', 'hmbkp_email_address', 'hmbkp_email', 'hmbkp_schedule_frequency', 'hmbkp_disable_automatic_backup' ) as $option_name )
|
133 |
delete_option( $option_name );
|
134 |
|
|
|
135 |
}
|
136 |
|
137 |
// Every update
|
194 |
add_action( 'admin_init', 'hmbkp_setup_default_schedules' );
|
195 |
|
196 |
/**
|
197 |
+
* Return an array of cron schedules
|
198 |
*
|
|
|
199 |
* @return array $reccurrences
|
200 |
*/
|
201 |
+
function hmbkp_cron_schedules() {
|
202 |
+
|
203 |
+
return array(
|
204 |
+
'hourly' => array( 'interval' => 3600, 'display' => __( 'Once Hourly' ) ),
|
205 |
+
'twicedaily' => array( 'interval' => 43200, 'display' => __( 'Twice Daily' ) ),
|
206 |
+
'daily' => array( 'interval' => 86400, 'display' => __( 'Once Daily' ) ),
|
207 |
+
'weekly' => array( 'interval' => 604800, 'display' => __( 'Once Weekly', 'hmbkp' ) ),
|
208 |
+
'fortnightly' => array( 'interval' => 1209600, 'display' => __( 'Once Fortnightly', 'hmbkp' ) ),
|
209 |
+
'monthly' => array( 'interval' => 2629743.83, 'display' => __( 'Once Monthly', 'hmbkp' ) )
|
210 |
+
);
|
211 |
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
+
add_filter( 'cron_schedules', 'hmbkp_cron_schedules' );
|
214 |
|
215 |
/**
|
216 |
* Recursively delete a directory including
|
220 |
*/
|
221 |
function hmbkp_rmdirtree( $dir ) {
|
222 |
|
223 |
+
if ( strpos( HM_Backup::get_home_path(), $dir ) !== false )
|
224 |
+
throw new Exception( 'You can only delete directories inside your WordPress installation' );
|
225 |
+
|
226 |
if ( is_file( $dir ) )
|
227 |
@unlink( $dir );
|
228 |
|
313 |
|
314 |
if ( empty( $path ) ) {
|
315 |
|
316 |
+
$path = HM_Backup::conform_dir( trailingslashit( WP_CONTENT_DIR ) . substr( HMBKP_SECURE_KEY, 0, 10 ) . '-backups' );
|
317 |
|
318 |
update_option( 'hmbkp_default_path', $path );
|
319 |
|
322 |
$upload_dir = wp_upload_dir();
|
323 |
|
324 |
// If the backups dir can't be created in WP_CONTENT_DIR then fallback to uploads
|
325 |
+
if ( ( ( ! is_dir( $path ) && ! is_writable( dirname( $path ) ) ) || ( is_dir( $path ) && ! is_writable( $path ) ) ) && strpos( $path, $upload_dir['basedir'] ) === false ) {
|
326 |
|
327 |
+
hmbkp_path_move( $path, $path = HM_Backup::conform_dir( trailingslashit( $upload_dir['basedir'] ) . substr( HMBKP_SECURE_KEY, 0, 10 ) . '-backups' ) );
|
328 |
|
329 |
update_option( 'hmbkp_default_path', $path );
|
330 |
|
343 |
*/
|
344 |
function hmbkp_path_move( $from, $to ) {
|
345 |
|
346 |
+
if ( ! trim( untrailingslashit( trim( $from ) ) ) || ! trim( untrailingslashit( trim( $to ) ) ) )
|
347 |
return;
|
348 |
|
349 |
+
// Create the new directory if it doesn't exist
|
350 |
if ( is_writable( dirname( $to ) ) && ! is_dir( $to ) )
|
351 |
mkdir( $to, 0755 );
|
352 |
|
353 |
+
// Bail if we couldn't
|
354 |
if ( ! is_dir( $to ) || ! is_writable( $to ) )
|
355 |
return false;
|
356 |
|
357 |
update_option( 'hmbkp_path', $to );
|
358 |
|
359 |
+
// Bail if the old directory doesn't exist
|
|
|
360 |
if ( ! is_dir( $from ) )
|
361 |
return false;
|
362 |
|
363 |
+
// Cleanup before we start moving things
|
364 |
+
hmbkp_cleanup();
|
365 |
+
|
366 |
+
// Move any existing backups
|
367 |
+
if ( $handle = opendir( $from ) ) {
|
368 |
|
369 |
while ( false !== ( $file = readdir( $handle ) ) )
|
370 |
if ( $file !== '.' && $file !== '..' )
|
373 |
|
374 |
closedir( $handle );
|
375 |
|
376 |
+
}
|
377 |
|
378 |
hmbkp_rmdirtree( $from );
|
379 |
|
functions/interface.php
CHANGED
@@ -13,14 +13,14 @@ function hmbkp_get_backup_row( $file, HMBKP_Scheduled_Backup $schedule ) {
|
|
13 |
<tr class="hmbkp_manage_backups_row<?php if ( file_exists( hmbkp_path() . '/.backup_complete' ) ) : ?> completed<?php unlink( hmbkp_path() . '/.backup_complete' ); endif; ?>">
|
14 |
|
15 |
<th scope="row">
|
16 |
-
<?php
|
17 |
</th>
|
18 |
|
19 |
<td class="code">
|
20 |
-
<?php
|
21 |
</td>
|
22 |
|
23 |
-
<td><?php
|
24 |
|
25 |
<td>
|
26 |
|
@@ -44,34 +44,34 @@ function hmbkp_admin_notices() {
|
|
44 |
// If the backups directory doesn't exist and can't be automatically created
|
45 |
if ( ! is_dir( hmbkp_path() ) ) :
|
46 |
|
47 |
-
|
48 |
-
|
49 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
|
54 |
endif;
|
55 |
|
56 |
// If the backups directory exists but isn't writable
|
57 |
if ( is_dir( hmbkp_path() ) && ! is_writable( hmbkp_path() ) ) :
|
58 |
|
59 |
-
|
60 |
$php_user = exec( 'whoami' );
|
61 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
|
66 |
endif;
|
67 |
|
68 |
// If safe mode is active
|
69 |
if ( HM_Backup::is_safe_mode_active() ) :
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
|
76 |
endif;
|
77 |
|
@@ -79,7 +79,7 @@ function hmbkp_admin_notices() {
|
|
79 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_dir( HMBKP_PATH ) ) :
|
80 |
|
81 |
function hmbkp_custom_path_exists_warning() {
|
82 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %1$s doesn\'t exist and can\'t be created, your backups will be saved to %2$s instead.', 'hmbkp' ), '<code>' .
|
83 |
}
|
84 |
add_action( 'admin_notices', 'hmbkp_custom_path_exists_warning' );
|
85 |
|
@@ -89,7 +89,7 @@ function hmbkp_admin_notices() {
|
|
89 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && is_dir( HMBKP_PATH ) && ! is_writable( HMBKP_PATH ) ) :
|
90 |
|
91 |
function hmbkp_custom_path_writable_notice() {
|
92 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %1$s isn\'t writable, new backups will be saved to %2$s instead.', 'hmbkp' ), '<code>' .
|
93 |
}
|
94 |
add_action( 'admin_notices', 'hmbkp_custom_path_writable_notice' );
|
95 |
|
@@ -105,15 +105,6 @@ function hmbkp_admin_notices() {
|
|
105 |
|
106 |
endif;
|
107 |
|
108 |
-
if ( ! empty( $_GET['reason'] ) ) :
|
109 |
-
|
110 |
-
function hmbkp_backup_failed_notice() {
|
111 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress failed to perform the backup.', 'hmbkp' ) . '</strong> ' . __( 'You have likely hit a memory limit.', 'hmbkp' ) . '<a href="' . add_query_arg( 'action', 'hmbkp_dismiss_error' ) . '" style="float: right;" class="button">Dismiss</a></p></div>';
|
112 |
-
}
|
113 |
-
//add_action( 'admin_notices', 'hmbkp_backup_failed_notice' );
|
114 |
-
|
115 |
-
endif;
|
116 |
-
|
117 |
}
|
118 |
add_action( 'admin_head', 'hmbkp_admin_notices' );
|
119 |
|
@@ -146,7 +137,7 @@ function hmbkp_backup_errors_message() {
|
|
146 |
|
147 |
foreach ( (array) json_decode( hmbkp_backup_errors() ) as $key => $errors )
|
148 |
foreach ( $errors as $error )
|
149 |
-
$message .= '<p><strong>' . $key . '</strong>: <code>' . implode( ':', (array) $error ) . '</code></p>';
|
150 |
|
151 |
return $message;
|
152 |
|
@@ -179,11 +170,11 @@ function hmbkp_file_list( HMBKP_Scheduled_Backup $schedule, $excludes = null, $f
|
|
179 |
continue;
|
180 |
|
181 |
// Show only unreadable files
|
182 |
-
if ( $file_method === 'get_unreadable_files' && $file->isReadable() )
|
183 |
continue;
|
184 |
|
185 |
// Skip unreadable files
|
186 |
-
elseif ( $file_method !== 'get_unreadable_files' && ! $file->isReadable() )
|
187 |
continue;
|
188 |
|
189 |
// Show only included files
|
@@ -196,7 +187,7 @@ function hmbkp_file_list( HMBKP_Scheduled_Backup $schedule, $excludes = null, $f
|
|
196 |
if ( ! $exclude_string || ! preg_match( '(' . $exclude_string . ')', str_ireplace( trailingslashit( $schedule->get_root() ), '', HM_Backup::conform_dir( $file->getPathname() ) ) ) )
|
197 |
continue;
|
198 |
|
199 |
-
if ( $file->isDir() ) { ?>
|
200 |
|
201 |
<li title="<?php echo esc_attr( HM_Backup::conform_dir( trailingslashit( $file->getPathName() ) ) ); ?>"><?php echo esc_html( ltrim( trailingslashit( str_ireplace( HM_Backup::conform_dir( trailingslashit( $schedule->get_root() ) ), '', HM_Backup::conform_dir( $file->getPathName() ) ) ), '/' ) ); ?></li>
|
202 |
|
13 |
<tr class="hmbkp_manage_backups_row<?php if ( file_exists( hmbkp_path() . '/.backup_complete' ) ) : ?> completed<?php unlink( hmbkp_path() . '/.backup_complete' ); endif; ?>">
|
14 |
|
15 |
<th scope="row">
|
16 |
+
<?php esc_html_e( date_i18n( get_option( 'date_format' ) . ' - ' . get_option( 'time_format' ), @filemtime( $file ) + $offset ) ); ?>
|
17 |
</th>
|
18 |
|
19 |
<td class="code">
|
20 |
+
<?php esc_html_e( size_format( @filesize( $file ) ) ); ?>
|
21 |
</td>
|
22 |
|
23 |
+
<td><?php esc_html_e( hmbkp_human_get_type( $file, $schedule ) ); ?></td>
|
24 |
|
25 |
<td>
|
26 |
|
44 |
// If the backups directory doesn't exist and can't be automatically created
|
45 |
if ( ! is_dir( hmbkp_path() ) ) :
|
46 |
|
47 |
+
function hmbkp_path_exists_warning() {
|
48 |
+
$php_user = exec( 'whoami' );
|
49 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
50 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress is almost ready.', 'hmbkp' ) . '</strong> ' . sprintf( __( '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.', 'hmbkp' ), '<code>wp-content</code>', '<code>chown ' . esc_html( $php_user ) . ':' . esc_html( $php_group ) . ' ' . esc_html( dirname( hmbkp_path() ) ) . '</code>', '<code>chmod 777 ' . esc_html( dirname( hmbkp_path() ) ) . '</code>' ) . '</p></div>';
|
51 |
+
}
|
52 |
+
add_action( 'admin_notices', 'hmbkp_path_exists_warning' );
|
53 |
|
54 |
endif;
|
55 |
|
56 |
// If the backups directory exists but isn't writable
|
57 |
if ( is_dir( hmbkp_path() ) && ! is_writable( hmbkp_path() ) ) :
|
58 |
|
59 |
+
function hmbkp_writable_path_warning() {
|
60 |
$php_user = exec( 'whoami' );
|
61 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
62 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress is almost ready.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your backups directory isn\'t writable, run %1$s or %2$s or set the permissions yourself.', 'hmbkp' ), '<code>chown -R ' . esc_html( $php_user ) . ':' . esc_html( $php_group ) . ' ' . esc_html( hmbkp_path() ) . '</code>', '<code>chmod -R 777 ' . esc_html( hmbkp_path() ) . '</code>' ) . '</p></div>';
|
63 |
+
}
|
64 |
+
add_action( 'admin_notices', 'hmbkp_writable_path_warning' );
|
65 |
|
66 |
endif;
|
67 |
|
68 |
// If safe mode is active
|
69 |
if ( HM_Backup::is_safe_mode_active() ) :
|
70 |
|
71 |
+
function hmbkp_safe_mode_warning() {
|
72 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%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.', 'hmbkp' ), '<code>PHP</code>', sprintf( '<a href="%1$s">%2$s</a>', __( 'http://php.net/manual/en/features.safe-mode.php', 'hmbkp' ), __( 'Safe Mode', 'hmbkp' ) ), '<code>' . __( 'Safe Mode', 'hmbkp' ) . '</code>' ) . '</p></div>';
|
73 |
+
}
|
74 |
+
add_action( 'admin_notices', 'hmbkp_safe_mode_warning' );
|
75 |
|
76 |
endif;
|
77 |
|
79 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_dir( HMBKP_PATH ) ) :
|
80 |
|
81 |
function hmbkp_custom_path_exists_warning() {
|
82 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %1$s doesn\'t exist and can\'t be created, your backups will be saved to %2$s instead.', 'hmbkp' ), '<code>' . esc_html( HMBKP_PATH ) . '</code>', '<code>' . esc_html( hmbkp_path() ) . '</code>' ) . '</p></div>';
|
83 |
}
|
84 |
add_action( 'admin_notices', 'hmbkp_custom_path_exists_warning' );
|
85 |
|
89 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && is_dir( HMBKP_PATH ) && ! is_writable( HMBKP_PATH ) ) :
|
90 |
|
91 |
function hmbkp_custom_path_writable_notice() {
|
92 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %1$s isn\'t writable, new backups will be saved to %2$s instead.', 'hmbkp' ), '<code>' . esc_html( HMBKP_PATH ) . '</code>', '<code>' . esc_html( hmbkp_path() ) . '</code>' ) . '</p></div>';
|
93 |
}
|
94 |
add_action( 'admin_notices', 'hmbkp_custom_path_writable_notice' );
|
95 |
|
105 |
|
106 |
endif;
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
}
|
109 |
add_action( 'admin_head', 'hmbkp_admin_notices' );
|
110 |
|
137 |
|
138 |
foreach ( (array) json_decode( hmbkp_backup_errors() ) as $key => $errors )
|
139 |
foreach ( $errors as $error )
|
140 |
+
$message .= '<p><strong>' . esc_html( $key ) . '</strong>: <code>' . implode( ':', array_map( 'esc_html', (array) $error ) ) . '</code></p>';
|
141 |
|
142 |
return $message;
|
143 |
|
170 |
continue;
|
171 |
|
172 |
// Show only unreadable files
|
173 |
+
if ( $file_method === 'get_unreadable_files' && @realpath( $file->getPathname() ) && $file->isReadable() )
|
174 |
continue;
|
175 |
|
176 |
// Skip unreadable files
|
177 |
+
elseif ( $file_method !== 'get_unreadable_files' && ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() ) )
|
178 |
continue;
|
179 |
|
180 |
// Show only included files
|
187 |
if ( ! $exclude_string || ! preg_match( '(' . $exclude_string . ')', str_ireplace( trailingslashit( $schedule->get_root() ), '', HM_Backup::conform_dir( $file->getPathname() ) ) ) )
|
188 |
continue;
|
189 |
|
190 |
+
if ( @realpath( $file->getPathname() ) && ! $file->isReadable() && $file->isDir() ) { ?>
|
191 |
|
192 |
<li title="<?php echo esc_attr( HM_Backup::conform_dir( trailingslashit( $file->getPathName() ) ) ); ?>"><?php echo esc_html( ltrim( trailingslashit( str_ireplace( HM_Backup::conform_dir( trailingslashit( $schedule->get_root() ) ), '', HM_Backup::conform_dir( $file->getPathName() ) ) ), '/' ) ); ?></li>
|
193 |
|
hm-backup/hm-backup.php
CHANGED
@@ -683,8 +683,8 @@ class HM_Backup {
|
|
683 |
// Pipe STDERR to STDOUT
|
684 |
$cmd .= ' 2>&1';
|
685 |
|
686 |
-
// Store any returned data in
|
687 |
-
$this->
|
688 |
|
689 |
$this->verify_mysqldump();
|
690 |
|
@@ -777,15 +777,15 @@ class HM_Backup {
|
|
777 |
|
778 |
// Zip up $this->root with excludes
|
779 |
if ( $this->get_type() !== 'database' && $this->exclude_string( 'zip' ) )
|
780 |
-
$this->warning( $this->
|
781 |
|
782 |
// Zip up $this->root without excludes
|
783 |
elseif ( $this->get_type() !== 'database' )
|
784 |
-
$this->warning( $this->
|
785 |
|
786 |
// Add the database dump to the archive
|
787 |
if ( $this->get_type() !== 'file' )
|
788 |
-
$this->warning( $this->
|
789 |
|
790 |
$this->verify_archive();
|
791 |
|
@@ -800,7 +800,7 @@ class HM_Backup {
|
|
800 |
*/
|
801 |
public function zip_archive() {
|
802 |
|
803 |
-
$this->errors_to_warnings( $this->
|
804 |
$this->archive_method = 'ziparchive';
|
805 |
|
806 |
$this->do_action( 'hmbkp_archive_started' );
|
@@ -823,7 +823,7 @@ class HM_Backup {
|
|
823 |
continue;
|
824 |
|
825 |
// Skip unreadable files
|
826 |
-
if ( ! $file->isReadable() )
|
827 |
continue;
|
828 |
|
829 |
// Excludes
|
@@ -849,10 +849,10 @@ class HM_Backup {
|
|
849 |
$zip->addFile( $this->get_database_dump_filepath(), $this->get_database_dump_filename() );
|
850 |
|
851 |
if ( $zip->status )
|
852 |
-
$this->warning( $this->
|
853 |
|
854 |
if ( $zip->statusSys )
|
855 |
-
$this->warning( $this->
|
856 |
|
857 |
$zip->close();
|
858 |
|
@@ -871,7 +871,7 @@ class HM_Backup {
|
|
871 |
*/
|
872 |
public function pcl_zip() {
|
873 |
|
874 |
-
$this->errors_to_warnings( $this->
|
875 |
$this->archive_method = 'pclzip';
|
876 |
|
877 |
$this->do_action( 'hmbkp_archive_started' );
|
@@ -887,12 +887,12 @@ class HM_Backup {
|
|
887 |
// Zip up everything
|
888 |
if ( $this->get_type() !== 'database' )
|
889 |
if ( ! $archive->add( $this->get_root(), PCLZIP_OPT_REMOVE_PATH, $this->get_root(), PCLZIP_CB_PRE_ADD, 'hmbkp_pclzip_callback' ) )
|
890 |
-
$this->warning( $this->
|
891 |
|
892 |
// Add the database
|
893 |
if ( $this->get_type() !== 'file' )
|
894 |
if ( ! $archive->add( $this->get_database_dump_filepath(), PCLZIP_OPT_REMOVE_PATH, $this->get_path() ) )
|
895 |
-
$this->warning( $this->
|
896 |
|
897 |
unset( $GLOBALS['_hmbkp_exclude_string'] );
|
898 |
|
@@ -908,14 +908,19 @@ class HM_Backup {
|
|
908 |
if ( ! empty( $this->mysqldump_verified ) )
|
909 |
return true;
|
910 |
|
911 |
-
// mysqldump
|
912 |
-
if (
|
913 |
-
|
914 |
|
915 |
-
|
916 |
-
|
|
|
|
|
|
|
|
|
|
|
917 |
|
918 |
-
return
|
919 |
|
920 |
|
921 |
}
|
@@ -934,9 +939,6 @@ class HM_Backup {
|
|
934 |
if ( ! empty( $this->archive_verified ) )
|
935 |
return true;
|
936 |
|
937 |
-
if ( ! file_exists( $this->get_archive_filepath() ) )
|
938 |
-
$this->error( $this->get_archive_method(), __( 'The backup file was not created', 'hmbkp' ) );
|
939 |
-
|
940 |
// Verify using the zip command if possible
|
941 |
if ( $this->get_zip_command_path() && $this->get_archive_method() === 'zip' ) {
|
942 |
|
@@ -951,13 +953,15 @@ class HM_Backup {
|
|
951 |
if ( $this->get_errors( $this->get_archive_method() ) && file_exists( $this->get_archive_filepath() ) )
|
952 |
unlink( $this->get_archive_filepath() );
|
953 |
|
954 |
-
|
955 |
-
return false;
|
956 |
-
|
957 |
if ( $this->get_unreadable_file_count() )
|
958 |
$this->warning( $this->get_archive_method(), __( 'The following files are unreadable and couldn\'t be backed up: ', 'hmbkp' ) . implode( ', ', $this->get_unreadable_files() ) );
|
959 |
|
960 |
-
|
|
|
|
|
|
|
|
|
961 |
|
962 |
}
|
963 |
|
@@ -975,7 +979,7 @@ class HM_Backup {
|
|
975 |
$this->files = array();
|
976 |
|
977 |
if ( defined( 'RecursiveDirectoryIterator::FOLLOW_SYMLINKS' ) )
|
978 |
-
$this->files = new RecursiveIteratorIterator( new
|
979 |
|
980 |
else
|
981 |
$this->files = $this->get_files_fallback( $this->get_root() );
|
@@ -1043,7 +1047,7 @@ class HM_Backup {
|
|
1043 |
continue;
|
1044 |
|
1045 |
// Skip unreadable files
|
1046 |
-
if ( ! $file->isReadable() )
|
1047 |
continue;
|
1048 |
|
1049 |
// Excludes
|
@@ -1080,7 +1084,7 @@ class HM_Backup {
|
|
1080 |
continue;
|
1081 |
|
1082 |
// Skip unreadable files
|
1083 |
-
if ( ! $file->isReadable() )
|
1084 |
continue;
|
1085 |
|
1086 |
// Excludes
|
@@ -1117,7 +1121,7 @@ class HM_Backup {
|
|
1117 |
continue;
|
1118 |
|
1119 |
// Skip unreadable files
|
1120 |
-
if ( ! $file->isReadable() )
|
1121 |
continue;
|
1122 |
|
1123 |
// Excludes
|
@@ -1152,7 +1156,7 @@ class HM_Backup {
|
|
1152 |
continue;
|
1153 |
|
1154 |
// Skip unreadable files
|
1155 |
-
if ( ! $file->isReadable() )
|
1156 |
continue;
|
1157 |
|
1158 |
// Excludes
|
@@ -1184,8 +1188,8 @@ class HM_Backup {
|
|
1184 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
1185 |
continue;
|
1186 |
|
1187 |
-
|
1188 |
-
|
1189 |
|
1190 |
}
|
1191 |
|
@@ -1212,8 +1216,8 @@ class HM_Backup {
|
|
1212 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
1213 |
continue;
|
1214 |
|
1215 |
-
|
1216 |
-
|
1217 |
|
1218 |
}
|
1219 |
|
@@ -1717,4 +1721,35 @@ function hmbkp_pclzip_callback( $event, &$file ) {
|
|
1717 |
|
1718 |
return true;
|
1719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1720 |
}
|
683 |
// Pipe STDERR to STDOUT
|
684 |
$cmd .= ' 2>&1';
|
685 |
|
686 |
+
// Store any returned data in an error
|
687 |
+
$this->error( $this->get_mysqldump_method(), shell_exec( $cmd ) );
|
688 |
|
689 |
$this->verify_mysqldump();
|
690 |
|
777 |
|
778 |
// Zip up $this->root with excludes
|
779 |
if ( $this->get_type() !== 'database' && $this->exclude_string( 'zip' ) )
|
780 |
+
$this->warning( $this->get_archive_method(), shell_exec( 'cd ' . escapeshellarg( $this->get_root() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -rq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ./' . ' -x ' . $this->exclude_string( 'zip' ) . ' 2>&1' ) );
|
781 |
|
782 |
// Zip up $this->root without excludes
|
783 |
elseif ( $this->get_type() !== 'database' )
|
784 |
+
$this->warning( $this->get_archive_method(), shell_exec( 'cd ' . escapeshellarg( $this->get_root() ) . ' && ' . escapeshellcmd( $this->get_zip_command_path() ) . ' -rq ' . escapeshellarg( $this->get_archive_filepath() ) . ' ./' . ' 2>&1' ) );
|
785 |
|
786 |
// Add the database dump to the archive
|
787 |
if ( $this->get_type() !== 'file' )
|
788 |
+
$this->warning( $this->get_archive_method(), 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' ) );
|
789 |
|
790 |
$this->verify_archive();
|
791 |
|
800 |
*/
|
801 |
public function zip_archive() {
|
802 |
|
803 |
+
$this->errors_to_warnings( $this->get_archive_method() );
|
804 |
$this->archive_method = 'ziparchive';
|
805 |
|
806 |
$this->do_action( 'hmbkp_archive_started' );
|
823 |
continue;
|
824 |
|
825 |
// Skip unreadable files
|
826 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
827 |
continue;
|
828 |
|
829 |
// Excludes
|
849 |
$zip->addFile( $this->get_database_dump_filepath(), $this->get_database_dump_filename() );
|
850 |
|
851 |
if ( $zip->status )
|
852 |
+
$this->warning( $this->get_archive_method(), $zip->status );
|
853 |
|
854 |
if ( $zip->statusSys )
|
855 |
+
$this->warning( $this->get_archive_method(), $zip->statusSys );
|
856 |
|
857 |
$zip->close();
|
858 |
|
871 |
*/
|
872 |
public function pcl_zip() {
|
873 |
|
874 |
+
$this->errors_to_warnings( $this->get_archive_method() );
|
875 |
$this->archive_method = 'pclzip';
|
876 |
|
877 |
$this->do_action( 'hmbkp_archive_started' );
|
887 |
// Zip up everything
|
888 |
if ( $this->get_type() !== 'database' )
|
889 |
if ( ! $archive->add( $this->get_root(), PCLZIP_OPT_REMOVE_PATH, $this->get_root(), PCLZIP_CB_PRE_ADD, 'hmbkp_pclzip_callback' ) )
|
890 |
+
$this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
|
891 |
|
892 |
// Add the database
|
893 |
if ( $this->get_type() !== 'file' )
|
894 |
if ( ! $archive->add( $this->get_database_dump_filepath(), PCLZIP_OPT_REMOVE_PATH, $this->get_path() ) )
|
895 |
+
$this->warning( $this->get_archive_method(), $archive->errorInfo( true ) );
|
896 |
|
897 |
unset( $GLOBALS['_hmbkp_exclude_string'] );
|
898 |
|
908 |
if ( ! empty( $this->mysqldump_verified ) )
|
909 |
return true;
|
910 |
|
911 |
+
// If there are mysqldump errors delete the database dump file as mysqldump will still have written one
|
912 |
+
if ( $this->get_errors( $this->get_mysqldump_method() ) && file_exists( $this->get_database_dump_filepath() ) )
|
913 |
+
unlink( $this->get_database_dump_filepath() );
|
914 |
|
915 |
+
// If we have an empty file delete it
|
916 |
+
if ( @filesize( $this->get_database_dump_filepath() ) === 0 )
|
917 |
+
unlink( $this->get_database_dump_filepath() );
|
918 |
+
|
919 |
+
// If the file still exists then it must be good
|
920 |
+
if ( file_exists( $this->get_database_dump_filepath() ) )
|
921 |
+
return $this->mysqldump_verified = true;
|
922 |
|
923 |
+
return false;
|
924 |
|
925 |
|
926 |
}
|
939 |
if ( ! empty( $this->archive_verified ) )
|
940 |
return true;
|
941 |
|
|
|
|
|
|
|
942 |
// Verify using the zip command if possible
|
943 |
if ( $this->get_zip_command_path() && $this->get_archive_method() === 'zip' ) {
|
944 |
|
953 |
if ( $this->get_errors( $this->get_archive_method() ) && file_exists( $this->get_archive_filepath() ) )
|
954 |
unlink( $this->get_archive_filepath() );
|
955 |
|
956 |
+
// Warn about unreadable files
|
|
|
|
|
957 |
if ( $this->get_unreadable_file_count() )
|
958 |
$this->warning( $this->get_archive_method(), __( 'The following files are unreadable and couldn\'t be backed up: ', 'hmbkp' ) . implode( ', ', $this->get_unreadable_files() ) );
|
959 |
|
960 |
+
// If the archive file still exists assume it's good
|
961 |
+
if ( file_exists( $this->get_archive_filepath() ) )
|
962 |
+
return $this->archive_verified = true;
|
963 |
+
|
964 |
+
return false;
|
965 |
|
966 |
}
|
967 |
|
979 |
$this->files = array();
|
980 |
|
981 |
if ( defined( 'RecursiveDirectoryIterator::FOLLOW_SYMLINKS' ) )
|
982 |
+
$this->files = new RecursiveIteratorIterator( new HMBKPRecursiveDirectoryIterator( $this->get_root(), RecursiveDirectoryIterator::FOLLOW_SYMLINKS ), RecursiveIteratorIterator::SELF_FIRST, RecursiveIteratorIterator::CATCH_GET_CHILD );
|
983 |
|
984 |
else
|
985 |
$this->files = $this->get_files_fallback( $this->get_root() );
|
1047 |
continue;
|
1048 |
|
1049 |
// Skip unreadable files
|
1050 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1051 |
continue;
|
1052 |
|
1053 |
// Excludes
|
1084 |
continue;
|
1085 |
|
1086 |
// Skip unreadable files
|
1087 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1088 |
continue;
|
1089 |
|
1090 |
// Excludes
|
1121 |
continue;
|
1122 |
|
1123 |
// Skip unreadable files
|
1124 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1125 |
continue;
|
1126 |
|
1127 |
// Excludes
|
1156 |
continue;
|
1157 |
|
1158 |
// Skip unreadable files
|
1159 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1160 |
continue;
|
1161 |
|
1162 |
// Excludes
|
1188 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
1189 |
continue;
|
1190 |
|
1191 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1192 |
+
$this->unreadable_files[] = $file;
|
1193 |
|
1194 |
}
|
1195 |
|
1216 |
if ( method_exists( $file, 'isDot' ) && $file->isDot() )
|
1217 |
continue;
|
1218 |
|
1219 |
+
if ( ! @realpath( $file->getPathname() ) || ! $file->isReadable() )
|
1220 |
+
$this->get_unreadable_file_count++;
|
1221 |
|
1222 |
}
|
1223 |
|
1721 |
|
1722 |
return true;
|
1723 |
|
1724 |
+
}
|
1725 |
+
|
1726 |
+
|
1727 |
+
/**
|
1728 |
+
* Custom RecursiveDirectoryIterator that catches exceptions in hasChildren
|
1729 |
+
*
|
1730 |
+
* @extends RecursiveDirectoryIterator
|
1731 |
+
*/
|
1732 |
+
class HMBKPRecursiveDirectoryIterator extends RecursiveDirectoryIterator {
|
1733 |
+
|
1734 |
+
|
1735 |
+
/**
|
1736 |
+
* Replace hasChildren with a version which.
|
1737 |
+
*
|
1738 |
+
* @access public
|
1739 |
+
* @return void
|
1740 |
+
*/
|
1741 |
+
function hasChildren() {
|
1742 |
+
|
1743 |
+
try {
|
1744 |
+
|
1745 |
+
return new HMBKPRecursiveDirectoryIterator( $this->getPathname() );
|
1746 |
+
|
1747 |
+
} catch( UnexpectedValueException $e ) {
|
1748 |
+
|
1749 |
+
return new RecursiveArrayIterator( array() );
|
1750 |
+
|
1751 |
+
}
|
1752 |
+
|
1753 |
+
}
|
1754 |
+
|
1755 |
}
|
backupwordpress.mo → languages/backupwordpress.mo
RENAMED
Binary file
|
backupwordpress.po → languages/backupwordpress.po
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: BackUpWordPress\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Tom Willmot <tom@
|
8 |
"Language-Team: Human Made Limited <support@humanmade.co.uk>\n"
|
9 |
"Language: en_GB\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -12,57 +12,58 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
-
"X-Poedit-SearchPath-0:
|
17 |
|
18 |
-
#: plugin.php:
|
19 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: plugin.php:
|
23 |
#, php-format
|
24 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: plugin.php:
|
28 |
msgid "Update"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: plugin.php:
|
32 |
msgid "Cancel"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: plugin.php:
|
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:
|
42 |
msgid "'Cancel' to go back, 'OK' to delete."
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: plugin.php:
|
46 |
msgid "Are you sure you want to delete this backup?"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: plugin.php:
|
50 |
msgid "Are you sure you want to remove this exclude rule?"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: plugin.php:
|
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:
|
61 |
-
#: functions/interface.php:
|
|
|
62 |
msgid "BackUpWordPress has detected a problem."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: admin/actions.php:
|
66 |
#, php-format
|
67 |
msgid ""
|
68 |
"%1$s is returning a %2$s response which could mean cron jobs aren't getting "
|
@@ -70,634 +71,649 @@ msgid ""
|
|
70 |
"See the %3$s for more details."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin/actions.php:
|
74 |
msgid "Backup type cannot be empty"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: admin/actions.php:
|
78 |
msgid "Invalid backup type"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: admin/actions.php:
|
82 |
msgid "Schedule cannot be empty"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/actions.php:
|
86 |
msgid "Invalid schedule"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: admin/actions.php:
|
90 |
msgid "Max backups can't be empty"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/actions.php:
|
94 |
msgid "Max backups must be a number"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups must be greater than 0"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
#, php-format
|
103 |
msgid "%s didn't match any files."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/actions.php:
|
107 |
msgid "Exclude"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin/actions.php:
|
111 |
msgid "Your BackUp Failed"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin/actions.php:
|
115 |
msgid "Here's the response from the server:"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin/actions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "Close"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin/actions.php:
|
123 |
msgid "Email to Support"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: admin/backups.php:13
|
127 |
msgid "add schedule"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: admin/backups.php:37
|
131 |
msgid "Size"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: admin/backups.php:38
|
135 |
msgid "Type"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin/backups.php:39
|
139 |
msgid "Actions"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin/backups.php:
|
143 |
msgid "This is where your backups will appear once you have one."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin/constants.php:3
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
"You can %1$s any of the following %2$s in your %3$s to control advanced "
|
150 |
"settings. %4$s. Defined %5$s will be highlighted."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/constants.php:3 admin/menu.php:76
|
154 |
msgid "Constants"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/constants.php:3
|
158 |
msgid "The Codex can help"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/constants.php:8
|
162 |
#, php-format
|
163 |
msgid ""
|
164 |
"The path to folder you would like to store your backup files in, defaults to "
|
165 |
"%s."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin/constants.php:8 admin/constants.php:11
|
169 |
-
#: admin/constants.php:
|
170 |
-
#: admin/constants.php:
|
|
|
171 |
msgid "e.g."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin/constants.php:11
|
175 |
#, php-format
|
176 |
msgid ""
|
177 |
"The path to your %1$s executable. Will be used for the %2$s part of the back "
|
178 |
"up if available."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: admin/constants.php:11 admin/constants.php:14
|
182 |
msgid "database"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin/constants.php:14
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"The path to your %1$s executable. Will be used to zip up your %2$s and %3$s "
|
189 |
"if available."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin/constants.php:14
|
193 |
msgid "files"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin/constants.php:17
|
197 |
#, php-format
|
198 |
msgid ""
|
199 |
"Attempt to email a copy of your backups. Value should be email address to "
|
200 |
"send backups to. Defaults to %s."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin/constants.php:20
|
204 |
msgid ""
|
205 |
"Comma separated list of files or directories to exclude, the backups "
|
206 |
"directory is automatically excluded."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin/constants.php:23
|
210 |
#, php-format
|
211 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: admin/constants.php:26
|
215 |
#, php-format
|
216 |
msgid "The root directory that is backed up. Defaults to %s."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin/constants.php:29
|
220 |
#, php-format
|
221 |
msgid "The time that your schedules should run. Defaults to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin/menu.php:10 admin/page.php:5
|
225 |
msgid "Manage Backups"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/menu.php:10 admin/menu.php:34
|
229 |
msgid "Backups"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/menu.php:69
|
233 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/menu.php:69
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"The information below is for version %1$s. View the %2$s file for help "
|
240 |
"specific to version %3$s."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: admin/menu.php:75
|
244 |
msgid "FAQ"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/menu.php:79
|
248 |
msgid "For more information:"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/menu.php:81
|
252 |
msgid "Support Forums"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/menu.php:82
|
256 |
msgid "Help with translation"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/page.php:13
|
260 |
msgid ""
|
261 |
"You need to fix the issues detailed above before BackUpWordPress can start."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin/page.php:17
|
265 |
#, php-format
|
266 |
msgid "If your finding BackUpWordPress useful, please %s."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin/page.php:17
|
270 |
msgid "rate it on the plugin directory"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin/page.php:19
|
274 |
msgid ""
|
275 |
"If you need help getting things working then check the FAQ by clicking on "
|
276 |
"help in the top right hand corner of this page."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin/schedule-form-excludes.php:7
|
280 |
msgid "Manage Excludes"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin/schedule-form-excludes.php:13
|
284 |
msgid "New Exclude Rule[s]"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin/schedule-form-excludes.php:19
|
288 |
msgid "Preview"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin/schedule-form-excludes.php:29
|
292 |
msgid "Exclude Rules"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/schedule-form-excludes.php:44
|
296 |
msgid "default"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin/schedule-form-excludes.php:48
|
300 |
msgid "defined"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin/schedule-form-excludes.php:52
|
304 |
msgid "Remove"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: admin/schedule-form-excludes.php:71
|
308 |
msgid "Excluded"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin/schedule-form-excludes.php:75
|
312 |
msgid "Included"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/schedule-form-excludes.php:79
|
316 |
msgid "Unreadable"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/schedule-form-excludes.php:107
|
320 |
msgid "Unreadable files can't be backed up"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: admin/schedule-form-excludes.php:113
|
324 |
#, php-format
|
325 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin/schedule-form.php:7
|
329 |
msgid "Schedule Settings"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin/schedule-form.php:11
|
333 |
msgid "Backup"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin/schedule-form.php:14
|
337 |
msgid "Both Database & files"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin/schedule-form.php:15
|
341 |
msgid "Files only"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin/schedule-form.php:16
|
345 |
msgid "Database only"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin/schedule-form.php:23
|
349 |
msgid "Schedule"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/schedule-form.php:27
|
353 |
msgid "Manual Only"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/schedule-form.php:41
|
357 |
msgid "Number of backups to store on this server"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/schedule-form.php:45
|
361 |
msgid ""
|
362 |
"The number of previous backups to store on the server. past this limit older "
|
363 |
"backups will be deleted automatically."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/schedule.php:4
|
367 |
msgid "Backups will be compressed and should be smaller than this."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/schedule.php:4
|
371 |
msgid "this shouldn't take long…"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/schedule.php:4
|
375 |
msgid "calculating the size of your site…"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: admin/schedule.php:12
|
379 |
#, php-format
|
380 |
msgid "The next backup will be on %1$s at %2$s"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/schedule.php:19
|
384 |
msgid "hourly on the hour"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/schedule.php:19
|
388 |
#, php-format
|
389 |
msgid "hourly at %s minutes past the hour"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/schedule.php:25
|
393 |
#, php-format
|
394 |
msgid "daily at %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/schedule.php:37
|
398 |
#, php-format
|
399 |
msgid "every 12 hours at %1$s & %2$s"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/schedule.php:43
|
403 |
#, php-format
|
404 |
msgid "weekly on %1$s at %2$s"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/schedule.php:49
|
408 |
#, php-format
|
409 |
msgid "fortnightly on %1$s at %2$s"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/schedule.php:56
|
413 |
#, php-format
|
414 |
msgid "on the %1$s of each month at %2$s"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin/schedule.php:62
|
418 |
msgid "manually"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin/schedule.php:68
|
422 |
msgid "this server"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin/schedule.php:75
|
426 |
#, php-format
|
427 |
msgid "store the only the last backup on %s"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/schedule.php:81
|
431 |
#, php-format
|
432 |
msgid "don't store any backups on %s"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/schedule.php:87
|
436 |
#, php-format
|
437 |
msgid "store only the last %1$s backups on %2$s"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/schedule.php:96
|
441 |
#, php-format
|
442 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: classes/email.php:19
|
446 |
msgid "Email notification"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: classes/email.php:23
|
450 |
msgid ""
|
451 |
"Receive a notification email when a backup completes, if the backup is small "
|
452 |
"enough (< 10mb) then it will be attached to the email. Separate multiple "
|
453 |
"email address's with a comma."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: classes/email.php:50
|
457 |
#, php-format
|
458 |
msgid "Send an email notification to %s"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: classes/email.php:72
|
462 |
#, php-format
|
463 |
msgid "%s isn't a valid email"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: classes/email.php:127
|
467 |
#, php-format
|
468 |
msgid "Backup of %s Failed"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: classes/email.php:129
|
472 |
#, php-format
|
473 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: classes/email.php:129
|
477 |
msgid "Here are the errors that we're encountered:"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/email.php:129
|
481 |
#, php-format
|
482 |
msgid ""
|
483 |
"If the errors above look like Martian, forward this email to %3$s and we'll "
|
484 |
"take a look"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: classes/email.php:129
|
488 |
msgid ""
|
489 |
"Kind Regards,\n"
|
490 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: classes/email.php:137
|
494 |
#, php-format
|
495 |
msgid "Backup of %s"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: classes/email.php:142 classes/email.php:151
|
499 |
#, php-format
|
500 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: classes/email.php:142
|
504 |
msgid "The backup file should be attached to this email."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: classes/email.php:142 classes/email.php:151
|
508 |
msgid "You can download the backup file by clicking the link below:"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: classes/email.php:142 classes/email.php:151
|
512 |
msgid ""
|
513 |
"Kind Regards,\n"
|
514 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: classes/email.php:151
|
518 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: classes/schedule.php:
|
522 |
msgid "Starting Backup"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: classes/schedule.php:
|
526 |
#, php-format
|
527 |
msgid "Dumping Database %s"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: classes/schedule.php:
|
531 |
#, php-format
|
532 |
msgid "Verifying Database Dump %s"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: classes/schedule.php:
|
536 |
#, php-format
|
537 |
msgid "Creating zip archive %s"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: classes/schedule.php:
|
541 |
#, php-format
|
542 |
msgid "Verifying Zip Archive %s"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: classes/schedule.php:
|
546 |
msgid "Finishing Backup"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: classes/wp-cli.php:16
|
550 |
#, php-format
|
551 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: classes/wp-cli.php:19
|
555 |
msgid "Backup: Dumping database..."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: classes/wp-cli.php:23
|
559 |
msgid "Backup: Zipping everything up..."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: classes/wp-cli.php:38
|
563 |
msgid "Invalid backup path"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: classes/wp-cli.php:43
|
567 |
msgid "Invalid root path"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: classes/wp-cli.php:68
|
571 |
msgid "Backup Complete: "
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: classes/wp-cli.php:71
|
575 |
msgid "Backup Failed"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: functions/core.php:
|
579 |
msgid "BackUpWordPress has setup your default schedules."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: functions/core.php:
|
583 |
msgid ""
|
584 |
"By default BackUpWordPress performs a daily backup of your database and a "
|
585 |
"weekly backup of your database & files. You can modify these schedules."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: functions/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
#, php-format
|
590 |
msgid ""
|
591 |
"This %s file ensures that other people cannot download your backup files."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: functions/interface.php:27
|
595 |
msgid "Download"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: functions/interface.php:28 functions/interface.php:
|
599 |
msgid "Delete"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: functions/interface.php:50 functions/interface.php:62
|
603 |
msgid "BackUpWordPress is almost ready."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: functions/interface.php:50
|
607 |
#, php-format
|
608 |
msgid ""
|
609 |
"The backups directory can't be created because your %1$s directory isn't "
|
610 |
"writable, run %2$s or %3$s or create the folder yourself."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: functions/interface.php:62
|
614 |
#, php-format
|
615 |
msgid ""
|
616 |
"Your backups directory isn't writable, run %1$s or %2$s or set the "
|
617 |
"permissions yourself."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: functions/interface.php:72
|
621 |
#, php-format
|
622 |
msgid ""
|
623 |
"%1$s is running in %2$s, please contact your host and ask them to disable "
|
624 |
"it. BackUpWordPress may not work correctly whilst %3$s is on."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: functions/interface.php:72
|
628 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: functions/interface.php:72
|
632 |
msgid "Safe Mode"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: functions/interface.php:82
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"Your custom backups directory %1$s doesn't exist and can't be created, your "
|
639 |
"backups will be saved to %2$s instead."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: functions/interface.php:92
|
643 |
#, php-format
|
644 |
msgid ""
|
645 |
"Your custom backups directory %1$s isn't writable, new backups will be saved "
|
646 |
"to %2$s instead."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: functions/interface.php:102
|
650 |
msgid "BackUpWordPress detected issues with your last backup."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: functions/interface.php:
|
654 |
-
msgid "BackUpWordPress failed to perform the backup."
|
655 |
-
msgstr ""
|
656 |
-
|
657 |
-
#: functions/interface.php:111
|
658 |
-
msgid "You have likely hit a memory limit."
|
659 |
-
msgstr ""
|
660 |
-
|
661 |
-
#: functions/interface.php:227
|
662 |
msgid "Database and Files"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: functions/interface.php:
|
666 |
msgid "Files"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: functions/interface.php:
|
670 |
msgid "Database"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: functions/interface.php:
|
674 |
msgid "Legacy"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: functions/interface.php:
|
678 |
msgid "cancel"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: functions/interface.php:
|
682 |
msgid "Settings"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: functions/interface.php:
|
686 |
msgid "Excludes"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: functions/interface.php:
|
690 |
msgid "Run now"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: hm-backup/hm-backup.php:
|
694 |
-
msgid "The mysqldump file was not created"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#: hm-backup/hm-backup.php:931
|
698 |
-
msgid "The backup file was not created"
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: hm-backup/hm-backup.php:951
|
702 |
msgid "The following files are unreadable and couldn't be backed up: "
|
703 |
msgstr ""
|
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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
+
#: ../plugin.php:66
|
19 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: ../plugin.php:77
|
23 |
#, php-format
|
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 |
"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 |
|
133 |
+
#: ../admin/backups.php:13
|
134 |
msgid "add schedule"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../admin/backups.php:37
|
138 |
msgid "Size"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../admin/backups.php:38
|
142 |
msgid "Type"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../admin/backups.php:39
|
146 |
msgid "Actions"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../admin/backups.php:64
|
150 |
msgid "This is where your backups will appear once you have one."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../admin/constants.php:3
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"You can %1$s any of the following %2$s in your %3$s to control advanced "
|
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 |
|
164 |
+
#: ../admin/constants.php:3
|
165 |
msgid "The Codex can help"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../admin/constants.php:8
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"The path to folder you would like to store your backup files in, defaults to "
|
172 |
"%s."
|
173 |
msgstr ""
|
174 |
|
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 |
|
182 |
+
#: ../admin/constants.php:11
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
"The path to your %1$s executable. Will be used for the %2$s part of the back "
|
186 |
"up if available."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
190 |
msgid "database"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../admin/constants.php:14
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"The path to your %1$s executable. Will be used to zip up your %2$s and %3$s "
|
197 |
"if available."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../admin/constants.php:14
|
201 |
msgid "files"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../admin/constants.php:17
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"Attempt to email a copy of your backups. Value should be email address to "
|
208 |
"send backups to. Defaults to %s."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../admin/constants.php:20
|
212 |
msgid ""
|
213 |
"Comma separated list of files or directories to exclude, the backups "
|
214 |
"directory is automatically excluded."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../admin/constants.php:23
|
218 |
#, php-format
|
219 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../admin/constants.php:26
|
223 |
#, php-format
|
224 |
msgid "The root directory that is backed up. Defaults to %s."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../admin/constants.php:29
|
228 |
#, php-format
|
229 |
msgid "The time that your schedules should run. Defaults to %s."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
233 |
msgid "Manage Backups"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
237 |
msgid "Backups"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../admin/menu.php:69
|
241 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../admin/menu.php:69
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"The information below is for version %1$s. View the %2$s file for help "
|
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 |
|
267 |
+
#: ../admin/page.php:13
|
268 |
msgid ""
|
269 |
"You need to fix the issues detailed above before BackUpWordPress can start."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../admin/page.php:17
|
273 |
#, php-format
|
274 |
msgid "If your finding BackUpWordPress useful, please %s."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../admin/page.php:17
|
278 |
msgid "rate it on the plugin directory"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../admin/page.php:19
|
282 |
msgid ""
|
283 |
"If you need help getting things working then check the FAQ by clicking on "
|
284 |
"help in the top right hand corner of this page."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../admin/schedule-form-excludes.php:7
|
288 |
msgid "Manage Excludes"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../admin/schedule-form-excludes.php:13
|
292 |
msgid "New Exclude Rule[s]"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../admin/schedule-form-excludes.php:19
|
296 |
msgid "Preview"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../admin/schedule-form-excludes.php:29
|
300 |
msgid "Exclude Rules"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../admin/schedule-form-excludes.php:44
|
304 |
msgid "default"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../admin/schedule-form-excludes.php:48
|
308 |
msgid "defined"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../admin/schedule-form-excludes.php:52
|
312 |
msgid "Remove"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin/schedule-form-excludes.php:71
|
316 |
msgid "Excluded"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../admin/schedule-form-excludes.php:75
|
320 |
msgid "Included"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../admin/schedule-form-excludes.php:79
|
324 |
msgid "Unreadable"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../admin/schedule-form-excludes.php:107
|
328 |
msgid "Unreadable files can't be backed up"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../admin/schedule-form-excludes.php:113
|
332 |
#, php-format
|
333 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../admin/schedule-form.php:7
|
337 |
msgid "Schedule Settings"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../admin/schedule-form.php:11
|
341 |
msgid "Backup"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../admin/schedule-form.php:14
|
345 |
msgid "Both Database & files"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../admin/schedule-form.php:15
|
349 |
msgid "Files only"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../admin/schedule-form.php:16
|
353 |
msgid "Database only"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../admin/schedule-form.php:23
|
357 |
msgid "Schedule"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../admin/schedule-form.php:27
|
361 |
msgid "Manual Only"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../admin/schedule-form.php:41
|
365 |
msgid "Number of backups to store on this server"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../admin/schedule-form.php:45
|
369 |
msgid ""
|
370 |
"The number of previous backups to store on the server. past this limit older "
|
371 |
"backups will be deleted automatically."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../admin/schedule.php:4
|
375 |
msgid "Backups will be compressed and should be smaller than this."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../admin/schedule.php:4
|
379 |
msgid "this shouldn't take long…"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../admin/schedule.php:4
|
383 |
msgid "calculating the size of your site…"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../admin/schedule.php:12
|
387 |
#, php-format
|
388 |
msgid "The next backup will be on %1$s at %2$s"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../admin/schedule.php:19
|
392 |
msgid "hourly on the hour"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../admin/schedule.php:19
|
396 |
#, php-format
|
397 |
msgid "hourly at %s minutes past the hour"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../admin/schedule.php:25
|
401 |
#, php-format
|
402 |
msgid "daily at %s"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../admin/schedule.php:37
|
406 |
#, php-format
|
407 |
msgid "every 12 hours at %1$s & %2$s"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../admin/schedule.php:43
|
411 |
#, php-format
|
412 |
msgid "weekly on %1$s at %2$s"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../admin/schedule.php:49
|
416 |
#, php-format
|
417 |
msgid "fortnightly on %1$s at %2$s"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../admin/schedule.php:56
|
421 |
#, php-format
|
422 |
msgid "on the %1$s of each month at %2$s"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../admin/schedule.php:62
|
426 |
msgid "manually"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../admin/schedule.php:68
|
430 |
msgid "this server"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../admin/schedule.php:75
|
434 |
#, php-format
|
435 |
msgid "store the only the last backup on %s"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ../admin/schedule.php:81
|
439 |
#, php-format
|
440 |
msgid "don't store any backups on %s"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../admin/schedule.php:87
|
444 |
#, php-format
|
445 |
msgid "store only the last %1$s backups on %2$s"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../admin/schedule.php:96
|
449 |
#, php-format
|
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 (< 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 |
|
557 |
+
#: ../classes/wp-cli.php:16
|
558 |
#, php-format
|
559 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: ../classes/wp-cli.php:19
|
563 |
msgid "Backup: Dumping database..."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: ../classes/wp-cli.php:23
|
567 |
msgid "Backup: Zipping everything up..."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../classes/wp-cli.php:38
|
571 |
msgid "Invalid backup path"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../classes/wp-cli.php:43
|
575 |
msgid "Invalid root path"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../classes/wp-cli.php:68
|
579 |
msgid "Backup Complete: "
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../classes/wp-cli.php:71
|
583 |
msgid "Backup Failed"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../functions/core.php:189
|
587 |
msgid "BackUpWordPress has setup your default schedules."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../functions/core.php:189
|
591 |
msgid ""
|
592 |
"By default BackUpWordPress performs a daily backup of your database and a "
|
593 |
"weekly backup of your database & files. You can modify these schedules."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../functions/core.php:204
|
597 |
+
msgid "Once Hourly"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: ../functions/core.php:205
|
601 |
+
msgid "Twice Daily"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: ../functions/core.php:206
|
605 |
+
msgid "Once Daily"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: ../functions/core.php:207
|
609 |
+
msgid "Once Weekly"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: ../functions/core.php:208
|
613 |
+
msgid "Once Fortnightly"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: ../functions/core.php:209
|
617 |
+
msgid "Once Monthly"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: ../functions/core.php:288
|
621 |
#, php-format
|
622 |
msgid ""
|
623 |
"This %s file ensures that other people cannot download your backup files."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../functions/interface.php:27
|
627 |
msgid "Download"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: ../functions/interface.php:28 ../functions/interface.php:255
|
631 |
msgid "Delete"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
635 |
msgid "BackUpWordPress is almost ready."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../functions/interface.php:50
|
639 |
#, php-format
|
640 |
msgid ""
|
641 |
"The backups directory can't be created because your %1$s directory isn't "
|
642 |
"writable, run %2$s or %3$s or create the folder yourself."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../functions/interface.php:62
|
646 |
#, php-format
|
647 |
msgid ""
|
648 |
"Your backups directory isn't writable, run %1$s or %2$s or set the "
|
649 |
"permissions yourself."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../functions/interface.php:72
|
653 |
#, php-format
|
654 |
msgid ""
|
655 |
"%1$s is running in %2$s, please contact your host and ask them to disable "
|
656 |
"it. BackUpWordPress may not work correctly whilst %3$s is on."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../functions/interface.php:72
|
660 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../functions/interface.php:72
|
664 |
msgid "Safe Mode"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../functions/interface.php:82
|
668 |
#, php-format
|
669 |
msgid ""
|
670 |
"Your custom backups directory %1$s doesn't exist and can't be created, your "
|
671 |
"backups will be saved to %2$s instead."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../functions/interface.php:92
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"Your custom backups directory %1$s isn't writable, new backups will be saved "
|
678 |
"to %2$s instead."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../functions/interface.php:102
|
682 |
msgid "BackUpWordPress detected issues with your last backup."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../functions/interface.php:218
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
msgid "Database and Files"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../functions/interface.php:221
|
690 |
msgid "Files"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../functions/interface.php:224
|
694 |
msgid "Database"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../functions/interface.php:229
|
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 ""
|
languages/hmbkp-cs_CS.mo
ADDED
Binary file
|
languages/hmbkp-cs_CS.po
ADDED
@@ -0,0 +1,628 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Czech
|
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"
|
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: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 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Pokud je pro vás BackUpWordPress užitečný, prosím %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Pokud potřebujete nápovědu k nastavení, pročtěte si nejčastější otázky klepnutím v pravém horním rohu stránky na Nápověda. "
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
+
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
+
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "BackUpWordPress nemusí správně fungovat pokud je php spuštěno s %s na "
|
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 "%1$s je spuštěno v %2$s, kontaktujte poskytovatele stránek a požádejte ho o zrušení. BackUpWordPress nemusí fungovat správně pokud je %3$s aktivní."
|
100 |
+
|
101 |
+
#: ../admin/constants.php:29
|
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 |
+
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
+
msgid "default"
|
139 |
+
msgstr "výchozí"
|
140 |
+
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
+
msgid "defined"
|
143 |
+
msgstr "nastavené"
|
144 |
+
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
+
msgid "Manual Only"
|
147 |
+
msgstr "Pouze ručně"
|
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 "Počet předchozích záloh uložených na tomto serveru. Starší zálohy nad tento počet budou automaticky smazány."
|
152 |
+
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
+
msgid "this shouldn't take long…"
|
155 |
+
msgstr "nebude to trvat dlouho …"
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
159 |
+
msgstr "zjišťuji velikost všech souborů …"
|
160 |
+
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
+
msgid "The next backup will be on %1$s at %2$s"
|
163 |
+
msgstr "Příští záloha bude provedena v %1$s v %2$s"
|
164 |
+
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
+
msgid "every 12 hours at %1$s & %2$s"
|
167 |
+
msgstr "každých 12 hodin v %1$s & %2$s"
|
168 |
+
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
+
msgid "weekly on %1$s at %2$s"
|
171 |
+
msgstr "týdně v %1$s v %2$s"
|
172 |
+
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
+
msgid "fortnightly on %1$s at %2$s"
|
175 |
+
msgstr "každé dva týdny v %1$s v %2$s"
|
176 |
+
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
+
msgid "on the %1$s of each month at %2$s"
|
179 |
+
msgstr "v %1$s každý měsíc v %2$s"
|
180 |
+
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
+
msgid "manually"
|
183 |
+
msgstr "ručně"
|
184 |
+
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
+
msgid "this server"
|
187 |
+
msgstr "tomto serveru"
|
188 |
+
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
+
msgid "store the only the last backup on %s"
|
191 |
+
msgstr "ponechat na %s pouze poslední zálohu"
|
192 |
+
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
+
msgid "don't store any backups on %s"
|
195 |
+
msgstr "na %s neukládat žádné zálohy"
|
196 |
+
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
+
msgid "store only the last %1$s backups on %2$s"
|
199 |
+
msgstr "na %2$s ponechat pouze poslední(ch) %1$s záloh(y)"
|
200 |
+
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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á (< 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"
|
225 |
+
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"
|
245 |
+
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 |
+
|
253 |
+
#: ../classes/wp-cli.php:19
|
254 |
+
msgid "Backup: Dumping database..."
|
255 |
+
msgstr "Záloha: provádím dump databáze..."
|
256 |
+
|
257 |
+
#: ../classes/wp-cli.php:23
|
258 |
+
msgid "Backup: Zipping everything up..."
|
259 |
+
msgstr "Záloha: provádím komprimaci..."
|
260 |
+
|
261 |
+
#: ../classes/wp-cli.php:38
|
262 |
+
msgid "Invalid backup path"
|
263 |
+
msgstr "Neplatná cesta k zálohám"
|
264 |
+
|
265 |
+
#: ../classes/wp-cli.php:43
|
266 |
+
msgid "Invalid root path"
|
267 |
+
msgstr "Neplatná hlavní cesta"
|
268 |
+
|
269 |
+
#: ../classes/wp-cli.php:68
|
270 |
+
msgid "Backup Complete: "
|
271 |
+
msgstr "Záloha ukončena:"
|
272 |
+
|
273 |
+
#: ../classes/wp-cli.php:71
|
274 |
+
msgid "Backup Failed"
|
275 |
+
msgstr "Záloha selhala"
|
276 |
+
|
277 |
+
#: ../functions/core.php:189
|
278 |
+
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
279 |
+
msgstr "Ve výchozím nastavení BackUpWordPress provádí denní zálohu vašich souborů a týdně zálohuje jak soubory tak i databázi. Nastavení můžete změnit."
|
280 |
+
|
281 |
+
#: ../functions/interface.php:229
|
282 |
+
msgid "Legacy"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: ../functions/interface.php:62
|
286 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
287 |
+
msgstr "Do adresáře pro zálohy nelze zapisovat, spusťte %1$s nebo %2$s nebo si nastavte oprávnění podle sebe."
|
288 |
+
|
289 |
+
#: ../functions/interface.php:50
|
290 |
+
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."
|
291 |
+
msgstr "Adresář pro zálohování nelze vytvořit, protože do vašeho adresáře %1$s nelze zapisovat, spusťte %2$s nebo %3$s nebo si jej vytvořte sami."
|
292 |
+
|
293 |
+
#: ../functions/core.php:189
|
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 |
+
|
309 |
+
#: ../admin/schedule.php:4
|
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 |
+
|
317 |
+
#: ../admin/schedule.php:19
|
318 |
+
msgid "hourly on the hour"
|
319 |
+
msgstr "každou hodinu v celou"
|
320 |
+
|
321 |
+
#: ../admin/schedule.php:25
|
322 |
+
msgid "daily at %s"
|
323 |
+
msgstr "denně v %s"
|
324 |
+
|
325 |
+
#: ../admin/schedule-form.php:41
|
326 |
+
msgid "Number of backups to store on this server"
|
327 |
+
msgstr "Počet záloh uložených na tomto serveru"
|
328 |
+
|
329 |
+
#: ../admin/schedule-form.php:7
|
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 |
+
|
337 |
+
#: ../admin/menu.php:69
|
338 |
+
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
339 |
+
msgstr "Informace uvedené níže jsou pro verzi %1$s. Pokud chcete nápovědu k verzi %3$s zobrazte si soubor %2$s."
|
340 |
+
|
341 |
+
#: ../admin/constants.php:26
|
342 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
343 |
+
msgstr "Kořenový adresář, který bude zálohován. Výchozí je %s."
|
344 |
+
|
345 |
+
#: ../admin/constants.php:23
|
346 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../admin/constants.php:14
|
350 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
351 |
+
msgstr "Cesta k %1$s. Pokud je dostupný, bude použit pro komprimaci vašich %2$s a %3$s."
|
352 |
+
|
353 |
+
#: ../plugin.php:77
|
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 |
+
|
361 |
+
#: ../admin/constants.php:11
|
362 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
363 |
+
msgstr "Cesta k spustitelnému souboru %1$s. Pokud je dostupný, bude použit pro část %2$s zálohování."
|
364 |
+
|
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 |
+
|
372 |
+
#: ../admin/constants.php:3
|
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"
|
386 |
+
msgstr "Safe Mode"
|
387 |
+
|
388 |
+
#: ../functions/interface.php:82
|
389 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
390 |
+
msgstr "Vámi zvolený adresář pro zálohy %1$s neexistuje a nelze jej vytvořit, zálohy se budou ukládat do %2$s."
|
391 |
+
|
392 |
+
#: ../functions/interface.php:92
|
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 |
+
|
408 |
+
#: ../functions/interface.php:27
|
409 |
+
msgid "Download"
|
410 |
+
msgstr "Stáhnout"
|
411 |
+
|
412 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
413 |
+
msgid "BackUpWordPress is almost ready."
|
414 |
+
msgstr "BackUpWordPress je připraven."
|
415 |
+
|
416 |
+
#: ../functions/interface.php:102
|
417 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
418 |
+
msgstr "BackUpWordPress detekoval problém s poslední zálohou."
|
419 |
+
|
420 |
+
#: ../functions/interface.php:218
|
421 |
+
msgid "Database and Files"
|
422 |
+
msgstr "Databáze a soubory"
|
423 |
+
|
424 |
+
#: ../functions/interface.php:224
|
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 |
+
|
462 |
+
#: ../admin/backups.php:13
|
463 |
+
msgid "add schedule"
|
464 |
+
msgstr "přidat plán zálohy"
|
465 |
+
|
466 |
+
#: ../admin/backups.php:37
|
467 |
+
msgid "Size"
|
468 |
+
msgstr "Velikost"
|
469 |
+
|
470 |
+
#: ../admin/backups.php:38
|
471 |
+
msgid "Type"
|
472 |
+
msgstr "Typ"
|
473 |
+
|
474 |
+
#: ../admin/backups.php:39
|
475 |
+
msgid "Actions"
|
476 |
+
msgstr "Akce"
|
477 |
+
|
478 |
+
#: ../admin/backups.php:64
|
479 |
+
msgid "This is where your backups will appear once you have one."
|
480 |
+
msgstr "Zde se bude zobrazovat seznam uložených záloh."
|
481 |
+
|
482 |
+
#: ../admin/constants.php:3
|
483 |
+
msgid "The Codex can help"
|
484 |
+
msgstr "Codex s pomocí"
|
485 |
+
|
486 |
+
#: ../admin/constants.php:8
|
487 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
488 |
+
msgstr "Cesta pro uložení souborů se zálohami, výchozí je %s."
|
489 |
+
|
490 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
491 |
+
msgid "database"
|
492 |
+
msgstr "databáze"
|
493 |
+
|
494 |
+
#: ../admin/constants.php:14
|
495 |
+
msgid "files"
|
496 |
+
msgstr "souborů"
|
497 |
+
|
498 |
+
#: ../admin/constants.php:17
|
499 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
500 |
+
msgstr "Email, na který bude odeslána kopie zálohy. Hodnota by měla být korektní emailová adresa. Výchozí hodnota je %s."
|
501 |
+
|
502 |
+
#: ../admin/constants.php:20
|
503 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
504 |
+
msgstr "Čárkou oddělený seznam souborů nebo adresářů, které se nebudou zálohovat, adresář se zálohami je vyjmut automaticky."
|
505 |
+
|
506 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
507 |
+
msgid "Manage Backups"
|
508 |
+
msgstr "Správa zálohování"
|
509 |
+
|
510 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
511 |
+
msgid "Backups"
|
512 |
+
msgstr "Zálohy"
|
513 |
+
|
514 |
+
#: ../admin/menu.php:69
|
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 |
+
|
538 |
+
#: ../admin/page.php:13
|
539 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
540 |
+
msgstr "Před dalším spuštěním nástroje BackUpWordPress je nutné opravit chyby uvedené výše."
|
541 |
+
|
542 |
+
#: ../admin/schedule-form-excludes.php:19
|
543 |
+
msgid "Preview"
|
544 |
+
msgstr "Náhled"
|
545 |
+
|
546 |
+
#: ../admin/schedule-form-excludes.php:29
|
547 |
+
msgid "Exclude Rules"
|
548 |
+
msgstr "Pravidla pro vyjmutí"
|
549 |
+
|
550 |
+
#: ../admin/schedule-form-excludes.php:52
|
551 |
+
msgid "Remove"
|
552 |
+
msgstr "Odebrat"
|
553 |
+
|
554 |
+
#: ../admin/schedule-form-excludes.php:71
|
555 |
+
msgid "Excluded"
|
556 |
+
msgstr "Vyjmuto"
|
557 |
+
|
558 |
+
#: ../admin/schedule-form-excludes.php:75
|
559 |
+
msgid "Included"
|
560 |
+
msgstr "Zahrnuto"
|
561 |
+
|
562 |
+
#: ../admin/schedule-form-excludes.php:79
|
563 |
+
msgid "Unreadable"
|
564 |
+
msgstr "Nečitelné"
|
565 |
+
|
566 |
+
#: ../admin/schedule-form-excludes.php:107
|
567 |
+
msgid "Unreadable files can't be backed up"
|
568 |
+
msgstr "Nečitelné soubory nelze zálohovat"
|
569 |
+
|
570 |
+
#: ../admin/schedule-form-excludes.php:113
|
571 |
+
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
572 |
+
msgstr "Veilikost webu je %s. Záloha bude komprimována aby se zmenšila velikost."
|
573 |
+
|
574 |
+
#: ../admin/schedule-form.php:11
|
575 |
+
msgid "Backup"
|
576 |
+
msgstr "Zálohovat"
|
577 |
+
|
578 |
+
#: ../admin/schedule-form.php:14
|
579 |
+
msgid "Both Database & files"
|
580 |
+
msgstr "Databázi i soubory"
|
581 |
+
|
582 |
+
#: ../admin/schedule-form.php:15
|
583 |
+
msgid "Files only"
|
584 |
+
msgstr "Pouze soubory"
|
585 |
+
|
586 |
+
#: ../admin/schedule-form.php:16
|
587 |
+
msgid "Database only"
|
588 |
+
msgstr "Pouze databázi"
|
589 |
+
|
590 |
+
#: ../functions/interface.php:221
|
591 |
+
msgid "Files"
|
592 |
+
msgstr "Soubory"
|
593 |
+
|
594 |
+
#: ../admin/schedule-form-excludes.php:7
|
595 |
+
msgid "Manage Excludes"
|
596 |
+
msgstr "Správa vyjímek"
|
597 |
+
|
598 |
+
#: ../admin/schedule-form.php:23
|
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 |
+
|
606 |
+
#: ../admin/schedule.php:19
|
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 |
+
|
618 |
+
#: ../plugin.php:66
|
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 |
+
|
626 |
+
#: ../functions/core.php:288
|
627 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
628 |
+
msgstr "Soubor %s zajišťuje, že ostatní uživatelé si nemohou stáhnout soubory s vašimi zálohami."
|
languages/hmbkp-da_DA.mo
ADDED
Binary file
|
languages/hmbkp-da_DA.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Danish
|
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"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
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 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Hvis du synes, BackUpWordPress er godt, så %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Hvis du har brug for hjælp til at få tingene til at virke, så kig i FAQ'en ved at klikke på Hjælp i øverste højre hjørne af denne side."
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
+
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
+
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "BackUpWordpress virker ikke når php kører med %s slået til"
|
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 "%1$s kører i %2$s. Kontakt venligst dit webhotel og bed dem slå det fra. BackUpWordPress virker ikke korrekt, mens %3$s er slået til."
|
100 |
+
|
101 |
+
#: ../admin/constants.php:29
|
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 |
+
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
+
msgid "default"
|
139 |
+
msgstr "standard"
|
140 |
+
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
+
msgid "defined"
|
143 |
+
msgstr "defineret"
|
144 |
+
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
+
msgid "Manual Only"
|
147 |
+
msgstr "Kun manuelt"
|
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 "Antallet af sikkerhedskopier, der skal gemmes på serveren. Ældre sikkerhedskopier vil automatisk blive slettet."
|
152 |
+
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
+
msgid "this shouldn't take long…"
|
155 |
+
msgstr "det her burde ikke tage så lang tid …"
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
159 |
+
msgstr "Beregner størrelse af dit websted…"
|
160 |
+
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
+
msgid "The next backup will be on %1$s at %2$s"
|
163 |
+
msgstr "Den næste sikkerhedskopi bliver taget %1$s klokken %2$s"
|
164 |
+
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
+
msgid "every 12 hours at %1$s & %2$s"
|
167 |
+
msgstr "hver 12. time klokken %1$s & %2$s"
|
168 |
+
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
+
msgid "weekly on %1$s at %2$s"
|
171 |
+
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 (< 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 & 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 & 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 ""
|
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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,187 +10,215 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
14 |
-
msgid "
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
-
msgid "
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "Starting Backup"
|
43 |
-
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
-
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr "Die Dauer, über die deine geplanten Aufgaben laufen sollen. Standard: %s."
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr "Bist du sicher, dass dieser Plan gelöscht werden soll? Alle zugehörigen Backups werden mit diesem Schritt auch gelöscht."
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr "'Abbrechen' zum Zurückkehren, 'OK' zum Löschen."
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr "Bist du sicher, dass du dieses Backup löschen möchtest?"
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr "Bist du sicher, dass du diese Ausschlussregel entfernen möchtest?"
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
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?"
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr "Die maximale Anzahl Backups kann nicht leer sein."
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr "Die maximale Anzahl Backups muss größer als 0 sein."
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr "Ausschließen"
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr "standard"
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr "festgelegt"
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr "Nur manuell"
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr "Die Anzahl der Backups, die auf diesem Server vorgehalten werden. Bei Überschreitung des Limits werden ältere Backups automatisch gelöscht."
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr "das sollte nicht lange dauern…"
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr "Wir berechnen die Größe deiner Seite…"
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr "Das nächste Backup wird ausgeführt am %1$s um %2$s."
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr "alle 12 Stunden um %1$s & %2$s"
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
msgstr "wöchentlich am %1$s um %2$s"
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr "zweiwöchentlich am %1$s um %2$s"
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr "am %1$s. jedes Monats um %2$s"
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr "manuell"
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr "Speichere keine Backups auf %s"
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr "Erstelle ein Backup meiner %1$s %2$s %3$s, %4$s. %5$s"
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr "Erhalte eine E-Mail, wenn ein Backup fertiggestellt wurde. Ist das Backup nicht zu groß (< 10 MB), wird es an die E-Mail angehängt. Einzelne E-Mail-Adressen können durch Kommata getrennt angegeben werden."
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr "BackUpWordPress konnte deine Seite %1$s nicht sichern."
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr "Hier sind die Fehler, auf die wir gestoßen sind:"
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
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."
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
@@ -198,19 +226,19 @@ msgstr ""
|
|
198 |
"Mit freundlichen Grüßen\n"
|
199 |
"Der Untröstliche BackUpWordpress Backup-E-Mail-Roboter "
|
200 |
|
201 |
-
#: classes/email.php:142 classes/email.php:151
|
202 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
203 |
msgstr "BackUpWordPress hat ein Backup deiner Seite %1$s fertiggestellt."
|
204 |
|
205 |
-
#: classes/email.php:142
|
206 |
msgid "The backup file should be attached to this email."
|
207 |
msgstr "Die Backup-Datei sollte dieser E-Mail angehängt sein."
|
208 |
|
209 |
-
#: classes/email.php:142 classes/email.php:151
|
210 |
msgid "You can download the backup file by clicking the link below:"
|
211 |
msgstr "Du kannst die Backup-Datei herunterladen, indem du auf den folgenden Link klickst:"
|
212 |
|
213 |
-
#: classes/email.php:142 classes/email.php:151
|
214 |
msgid ""
|
215 |
"Kind Regards,\n"
|
216 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
@@ -218,397 +246,383 @@ msgstr ""
|
|
218 |
"Mit freundlichen Grüßen\n"
|
219 |
"Der Glückliche BackUpWordPress Backup-E-Mail-Roboter"
|
220 |
|
221 |
-
#: classes/email.php:151
|
222 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
223 |
msgstr "Unglücklicherweise war die Backup-Datei zu groß, um sie dieser E-Mail anzuhängen."
|
224 |
|
225 |
-
#: classes/wp-cli.php:19
|
226 |
msgid "Backup: Dumping database..."
|
227 |
msgstr "Fertige Backup an: Sichere Datenbank..."
|
228 |
|
229 |
-
#: classes/wp-cli.php:23
|
230 |
msgid "Backup: Zipping everything up..."
|
231 |
msgstr "Fertige Backup an: Packe alles zusammen..."
|
232 |
|
233 |
-
#: classes/wp-cli.php:38
|
234 |
msgid "Invalid backup path"
|
235 |
msgstr "Ungültiges Backupverzeichnis"
|
236 |
|
237 |
-
#: classes/wp-cli.php:43
|
238 |
msgid "Invalid root path"
|
239 |
msgstr "Ungültiges Rootverzeichnis"
|
240 |
|
241 |
-
#: classes/wp-cli.php:68
|
242 |
msgid "Backup Complete: "
|
243 |
msgstr "Backup fertiggestellt:"
|
244 |
|
245 |
-
#: classes/wp-cli.php:71
|
246 |
msgid "Backup Failed"
|
247 |
-
msgstr "Backup fehlgeschlagen
|
248 |
|
249 |
-
#: functions/core.php:
|
250 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
251 |
msgstr "Standardmäßig führt BackUpWordPress ein tägliches Backup deiner Datenbank und ein wöchentliches Backup deiner Datenbank & Dateien durch. Du kannst diesen Aufgabenplan selbstverständlich anpassen."
|
252 |
|
253 |
-
#: functions/interface.php:
|
254 |
-
msgid "BackUpWordPress failed to perform the backup."
|
255 |
-
msgstr "BackUpWordPress ist am Ausführen des Backups gescheitert."
|
256 |
-
|
257 |
-
#: functions/interface.php:111
|
258 |
-
msgid "You have likely hit a memory limit."
|
259 |
-
msgstr "Du hast wahrscheinlich ein Speicherlimit überschritten."
|
260 |
-
|
261 |
-
#: functions/interface.php:238
|
262 |
msgid "Legacy"
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "The mysqldump file was not created"
|
267 |
-
msgstr "Die MySQL-Abbilddatei konnte nicht erstellt werden."
|
268 |
-
|
269 |
-
#: functions/interface.php:62
|
270 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
271 |
-
msgstr "Dein Backup-Verzeichnis ist nicht
|
272 |
|
273 |
-
#: functions/interface.php:50
|
274 |
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."
|
275 |
msgstr "Das Backup-Verzeichnis kann nicht erstellt werden, weil dein %1$s-Verzeichnis nicht schreibbar ist. Führe %2$s oder %3$s aus oder erstelle das Verzeichnis selbst."
|
276 |
|
277 |
-
#: functions/core.php:
|
278 |
msgid "BackUpWordPress has setup your default schedules."
|
279 |
msgstr "BackUpWordPress hat deine Standard-Pläne eingerichtet."
|
280 |
|
281 |
-
#: classes/email.php:127
|
282 |
msgid "Backup of %s Failed"
|
283 |
msgstr "Backup von %s fehlgeschlagen"
|
284 |
|
285 |
-
#: classes/email.php:50
|
286 |
msgid "Send an email notification to %s"
|
287 |
msgstr "Sende E-Mail-Benachrichtigungen an %s"
|
288 |
|
289 |
-
#: classes/email.php:72
|
290 |
msgid "%s isn't a valid email"
|
291 |
msgstr "%s ist keine gültige E-Mail-Adresse"
|
292 |
|
293 |
-
#: admin/schedule.php:4
|
294 |
msgid "Backups will be compressed and should be smaller than this."
|
295 |
msgstr "Die Backups werden komprimiert und sollten kleiner sein."
|
296 |
|
297 |
-
#: classes/email.php:19
|
298 |
msgid "Email notification"
|
299 |
msgstr "E-Mail-Benachrichtigung"
|
300 |
|
301 |
-
#: admin/schedule.php:19
|
302 |
msgid "hourly on the hour"
|
303 |
msgstr "stündlich zur vollen Stunde"
|
304 |
|
305 |
-
#: admin/schedule.php:25
|
306 |
msgid "daily at %s"
|
307 |
msgstr "täglich um %s"
|
308 |
|
309 |
-
#: admin/schedule-form.php:41
|
310 |
msgid "Number of backups to store on this server"
|
311 |
msgstr "Anzahl der Backups, die auf dem Server gespeichert bleiben"
|
312 |
|
313 |
-
#: admin/schedule-form.php:7
|
314 |
msgid "Schedule Settings"
|
315 |
msgstr "Plan-Einstellungen"
|
316 |
|
317 |
-
#: admin/actions.php:
|
318 |
msgid "Close"
|
319 |
msgstr "Schließen"
|
320 |
|
321 |
-
#: admin/menu.php:69
|
322 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
323 |
msgstr "Diese Informationen sind für Version %1$s. Sieh dir die %2$s-Datei für Hilfe speziell für Version %3$s an."
|
324 |
|
325 |
-
#: admin/constants.php:26
|
326 |
msgid "The root directory that is backed up. Defaults to %s."
|
327 |
msgstr "Das Wurzelverzeichnis, das gesichert wird. Standard: %s"
|
328 |
|
329 |
-
#: admin/constants.php:23
|
330 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
331 |
msgstr "Die Rolle, die beim Aufrufen von %1$s benutzt wird. Standard: %2$s"
|
332 |
|
333 |
-
#: admin/constants.php:14
|
334 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
335 |
msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird genutzt, um deine %2$s und %3$s als ZIP-Archiv zu komprimieren, wenn verfügbar."
|
336 |
|
337 |
-
#: plugin.php:
|
338 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
339 |
msgstr "BackUpWordPress benötigt WordPress Version %s oder größer."
|
340 |
|
341 |
-
#: plugin.php:
|
342 |
msgid "Cancel"
|
343 |
msgstr "Abbrechen"
|
344 |
|
345 |
-
#: admin/constants.php:11
|
346 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
347 |
msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird für den %2$s-Teil des Backups genutzt, wenn verfügbar."
|
348 |
|
349 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
350 |
-
#: admin/constants.php:17 admin/constants.php:20
|
351 |
-
#: admin/constants.php:
|
|
|
352 |
msgid "e.g."
|
353 |
msgstr "z.B."
|
354 |
|
355 |
-
#: admin/constants.php:3
|
356 |
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."
|
357 |
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."
|
358 |
|
359 |
-
#: admin/actions.php:
|
360 |
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."
|
361 |
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."
|
362 |
|
363 |
-
#: functions/interface.php:72
|
364 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
365 |
msgstr "http://php.net/manual/de/features.safe-mode.php"
|
366 |
|
367 |
-
#: functions/interface.php:72
|
368 |
msgid "Safe Mode"
|
369 |
msgstr "Safe Mode"
|
370 |
|
371 |
-
#: functions/interface.php:82
|
372 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
373 |
msgstr "Dein angepasstes Backup-Verzeichnis %1$s existiert nicht und kann nicht erstellt werden, neue Backups werden stattdessen nach %2$s gespeichert."
|
374 |
|
375 |
-
#: functions/interface.php:92
|
376 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
377 |
msgstr "Dein angepasstes Backup-Verzeichnis %1$s ist nicht schreibbar, neue Backups werden stattdessen nach %2$s gespeichert."
|
378 |
|
379 |
-
#: functions/interface.php:
|
380 |
msgid "cancel"
|
381 |
msgstr "abbrechen"
|
382 |
|
383 |
-
#: functions/interface.php:
|
384 |
msgid "Settings"
|
385 |
msgstr "Einstellungen"
|
386 |
|
387 |
-
#: functions/interface.php:
|
388 |
msgid "Excludes"
|
389 |
msgstr "Ausnahmen"
|
390 |
|
391 |
-
#: functions/interface.php:27
|
392 |
msgid "Download"
|
393 |
msgstr "Download"
|
394 |
|
395 |
-
#: functions/interface.php:50 functions/interface.php:62
|
396 |
msgid "BackUpWordPress is almost ready."
|
397 |
msgstr "BackUpWordPress ist fast fertig."
|
398 |
|
399 |
-
#: functions/interface.php:102
|
400 |
msgid "BackUpWordPress detected issues with your last backup."
|
401 |
msgstr "BackUpWordPress hat Probleme bei deinem letzten Backup bemerkt."
|
402 |
|
403 |
-
#: functions/interface.php:
|
404 |
msgid "Database and Files"
|
405 |
msgstr "Datenbank und Dateien"
|
406 |
|
407 |
-
#: functions/interface.php:
|
408 |
msgid "Database"
|
409 |
msgstr "Datenbank"
|
410 |
|
411 |
-
#: hm-backup/hm-backup.php:
|
412 |
-
msgid "The backup file was not created"
|
413 |
-
msgstr "Die Backup-Datei wurde nicht angelegt"
|
414 |
-
|
415 |
-
#: hm-backup/hm-backup.php:951
|
416 |
msgid "The following files are unreadable and couldn't be backed up: "
|
417 |
msgstr "Die folgenden Dateien sind nicht lesbar und konnten nicht gesichert werden:"
|
418 |
|
419 |
-
#: admin/actions.php:
|
420 |
-
#: functions/interface.php:
|
|
|
421 |
msgid "BackUpWordPress has detected a problem."
|
422 |
msgstr "BackUpWordPress hat ein Problem entdeckt."
|
423 |
|
424 |
-
#: admin/actions.php:
|
425 |
msgid "Backup type cannot be empty"
|
426 |
msgstr "Backup-Typ kann nicht leer sein"
|
427 |
|
428 |
-
#: admin/actions.php:
|
429 |
msgid "Invalid backup type"
|
430 |
msgstr "Ungültiger Backup-Typ"
|
431 |
|
432 |
-
#: admin/actions.php:
|
433 |
msgid "Schedule cannot be empty"
|
434 |
msgstr "Aufgaben können nicht leer sein"
|
435 |
|
436 |
-
#: admin/actions.php:
|
437 |
msgid "Invalid schedule"
|
438 |
msgstr "Ungültige Aufgaben"
|
439 |
|
440 |
-
#: admin/actions.php:
|
441 |
msgid "Max backups must be a number"
|
442 |
msgstr "Maximale Anzahl der Backups muss eine Zahl sein"
|
443 |
|
444 |
-
#: admin/actions.php:
|
445 |
msgid "%s didn't match any files."
|
446 |
msgstr "%s passt auf keine Dateien."
|
447 |
|
448 |
-
#: admin/backups.php:13
|
449 |
msgid "add schedule"
|
450 |
msgstr "Aufgabe hinzufügen"
|
451 |
|
452 |
-
#: admin/backups.php:37
|
453 |
msgid "Size"
|
454 |
msgstr "Größe"
|
455 |
|
456 |
-
#: admin/backups.php:38
|
457 |
msgid "Type"
|
458 |
msgstr "Typ"
|
459 |
|
460 |
-
#: admin/backups.php:39
|
461 |
msgid "Actions"
|
462 |
msgstr "Aktionen"
|
463 |
|
464 |
-
#: admin/backups.php:
|
465 |
msgid "This is where your backups will appear once you have one."
|
466 |
msgstr "Hier erscheinen deine Backups, sobald du welche hast."
|
467 |
|
468 |
-
#: admin/constants.php:3
|
469 |
msgid "The Codex can help"
|
470 |
msgstr "Der Codex kann helfen"
|
471 |
|
472 |
-
#: admin/constants.php:8
|
473 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
474 |
msgstr "Der Pfad zum Verzeichnis, in dem du die Backups speichern möchtest. Standard: %s"
|
475 |
|
476 |
-
#: admin/constants.php:11 admin/constants.php:14
|
477 |
msgid "database"
|
478 |
msgstr "Datenbank"
|
479 |
|
480 |
-
#: admin/constants.php:14
|
481 |
msgid "files"
|
482 |
msgstr "Dateien"
|
483 |
|
484 |
-
#: admin/constants.php:17
|
485 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
486 |
msgstr "Versuche, eine Kopie des Backups per E-Mail zu senden. Der Wert sollte eine E-Mail-Adresse sein. Standard: %s"
|
487 |
|
488 |
-
#: admin/constants.php:20
|
489 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
490 |
msgstr "Kommagetrennte Liste von Dateien oder Verzeichnissen, die ausgeschlossen werden sollen (das Backup-Verzeichnis ist automatisch ausgeschlossen)."
|
491 |
|
492 |
-
#: admin/menu.php:10 admin/page.php:5
|
493 |
msgid "Manage Backups"
|
494 |
msgstr "Backups verwalten"
|
495 |
|
496 |
-
#: admin/menu.php:10 admin/menu.php:34
|
497 |
msgid "Backups"
|
498 |
msgstr "Backups"
|
499 |
|
500 |
-
#: admin/menu.php:69
|
501 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
502 |
msgstr "Du benutzt nicht die neueste stabile BackUpWordPress-Version"
|
503 |
|
504 |
-
#: admin/menu.php:75
|
505 |
msgid "FAQ"
|
506 |
msgstr "FAQ"
|
507 |
|
508 |
-
#: admin/constants.php:3 admin/menu.php:76
|
509 |
msgid "Constants"
|
510 |
msgstr "Konstanten"
|
511 |
|
512 |
-
#: admin/menu.php:79
|
513 |
msgid "For more information:"
|
514 |
msgstr "Für mehr Informationen:"
|
515 |
|
516 |
-
#: admin/menu.php:81
|
517 |
msgid "Support Forums"
|
518 |
msgstr "Support-Foren"
|
519 |
|
520 |
-
#: admin/menu.php:82
|
521 |
msgid "Help with translation"
|
522 |
msgstr "Beim Übersetzen helfen"
|
523 |
|
524 |
-
#: admin/page.php:13
|
525 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
526 |
msgstr "Du musst die Probleme, die oben beschrieben werden, beheben, bevor BackUpWordPress starten kann."
|
527 |
|
528 |
-
#: admin/schedule-form-excludes.php:19
|
529 |
msgid "Preview"
|
530 |
msgstr "Vorschau"
|
531 |
|
532 |
-
#: admin/schedule-form-excludes.php:29
|
533 |
msgid "Exclude Rules"
|
534 |
msgstr "Ausnahmeregeln"
|
535 |
|
536 |
-
#: admin/schedule-form-excludes.php:52
|
537 |
msgid "Remove"
|
538 |
msgstr "Entfernen"
|
539 |
|
540 |
-
#: admin/schedule-form-excludes.php:71
|
541 |
msgid "Excluded"
|
542 |
msgstr "Ausnehmen"
|
543 |
|
544 |
-
#: admin/schedule-form-excludes.php:75
|
545 |
msgid "Included"
|
546 |
msgstr "Einschließen"
|
547 |
|
548 |
-
#: admin/schedule-form-excludes.php:79
|
549 |
msgid "Unreadable"
|
550 |
msgstr "Nicht lesbar"
|
551 |
|
552 |
-
#: admin/schedule-form-excludes.php:107
|
553 |
msgid "Unreadable files can't be backed up"
|
554 |
msgstr "Nicht lesbare Dateien können nicht gesichert werden"
|
555 |
|
556 |
-
#: admin/schedule-form-excludes.php:113
|
557 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
558 |
msgstr "Deine Seite ist %s groß. Die Backups werden komprimiert und sollten kleiner sein."
|
559 |
|
560 |
-
#: admin/schedule-form.php:11
|
561 |
msgid "Backup"
|
562 |
msgstr "Backup"
|
563 |
|
564 |
-
#: admin/schedule-form.php:14
|
565 |
msgid "Both Database & files"
|
566 |
msgstr "Datenbank & Dateien"
|
567 |
|
568 |
-
#: admin/schedule-form.php:15
|
569 |
msgid "Files only"
|
570 |
msgstr "Dateien"
|
571 |
|
572 |
-
#: admin/schedule-form.php:16
|
573 |
msgid "Database only"
|
574 |
msgstr "Datenbank"
|
575 |
|
576 |
-
#: functions/interface.php:
|
577 |
msgid "Files"
|
578 |
msgstr "Dateien"
|
579 |
|
580 |
-
#: admin/schedule-form-excludes.php:7
|
581 |
msgid "Manage Excludes"
|
582 |
msgstr "Ausnahmen verwalten"
|
583 |
|
584 |
-
#: admin/schedule-form.php:23
|
585 |
msgid "Schedule"
|
586 |
msgstr "Plan"
|
587 |
|
588 |
-
#: plugin.php:
|
589 |
msgid "Update"
|
590 |
msgstr "Update"
|
591 |
|
592 |
-
#: admin/schedule.php:19
|
593 |
msgid "hourly at %s minutes past the hour"
|
594 |
msgstr "stündlich, %s Minuten nach der vollen Stunde"
|
595 |
|
596 |
-
#: functions/interface.php:
|
597 |
msgid "Run now"
|
598 |
msgstr "Jetzt ausführen"
|
599 |
|
600 |
-
#: functions/interface.php:28 functions/interface.php:
|
601 |
msgid "Delete"
|
602 |
msgstr "Löschen"
|
603 |
|
604 |
-
#: plugin.php:
|
605 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
606 |
msgstr "BackUpWordPress benötigt PHP Version 5.2.4 oder höher."
|
607 |
|
608 |
-
#: classes/email.php:137
|
609 |
msgid "Backup of %s"
|
610 |
msgstr "Backup von %s"
|
611 |
|
612 |
-
#: functions/core.php:
|
613 |
msgid "This %s file ensures that other people cannot download your backup files."
|
614 |
msgstr "Diese %s-Datei garantiert, dass andere Leute nicht deine Backup-Dateien herunterladen können."
|
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 |
"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 "Sende eine E-Mail an den Support"
|
44 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Wenn du BackUpWordPress nützlich findest, %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Wenn du Hilfe brauchst, die Dinge zum Laufen zu bekommen, besuche die FAQ, indem du in der rechten oberen Ecke dieser Seite auf Hilfe klickst."
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "BackUpWordPress funktioniert vielleicht nicht, wenn PHP mit %s aktiviert läuft"
|
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 "%1$s läuft im %2$s, bitte kontaktiere deinen Hoster und bitte ihn dies zu deaktivieren. BackUpWordpress funktioniert vielleicht nicht richtig, während %3$s aktiviert ist."
|
100 |
|
101 |
+
#: ../admin/constants.php:29
|
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 |
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
msgid "default"
|
139 |
msgstr "standard"
|
140 |
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
msgid "defined"
|
143 |
msgstr "festgelegt"
|
144 |
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
msgid "Manual Only"
|
147 |
msgstr "Nur manuell"
|
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 "Die Anzahl der Backups, die auf diesem Server vorgehalten werden. Bei Überschreitung des Limits werden ältere Backups automatisch gelöscht."
|
152 |
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
msgid "this shouldn't take long…"
|
155 |
msgstr "das sollte nicht lange dauern…"
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
159 |
msgstr "Wir berechnen die Größe deiner Seite…"
|
160 |
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
msgid "The next backup will be on %1$s at %2$s"
|
163 |
msgstr "Das nächste Backup wird ausgeführt am %1$s um %2$s."
|
164 |
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
msgid "every 12 hours at %1$s & %2$s"
|
167 |
msgstr "alle 12 Stunden um %1$s & %2$s"
|
168 |
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
msgid "weekly on %1$s at %2$s"
|
171 |
msgstr "wöchentlich am %1$s um %2$s"
|
172 |
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
msgid "fortnightly on %1$s at %2$s"
|
175 |
msgstr "zweiwöchentlich am %1$s um %2$s"
|
176 |
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
msgid "on the %1$s of each month at %2$s"
|
179 |
msgstr "am %1$s. jedes Monats um %2$s"
|
180 |
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
msgid "manually"
|
183 |
msgstr "manuell"
|
184 |
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
msgid "this server"
|
187 |
+
msgstr "diesem Server"
|
188 |
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
msgid "store the only the last backup on %s"
|
191 |
+
msgstr "behalte nur das letzte Backup auf %s"
|
192 |
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
msgid "don't store any backups on %s"
|
195 |
msgstr "Speichere keine Backups auf %s"
|
196 |
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
msgid "store only the last %1$s backups on %2$s"
|
199 |
+
msgstr "behalte nur die letzten %1$s Backups auf %2$s"
|
200 |
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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ß (< 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 |
"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 |
"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 |
|
253 |
+
#: ../classes/wp-cli.php:19
|
254 |
msgid "Backup: Dumping database..."
|
255 |
msgstr "Fertige Backup an: Sichere Datenbank..."
|
256 |
|
257 |
+
#: ../classes/wp-cli.php:23
|
258 |
msgid "Backup: Zipping everything up..."
|
259 |
msgstr "Fertige Backup an: Packe alles zusammen..."
|
260 |
|
261 |
+
#: ../classes/wp-cli.php:38
|
262 |
msgid "Invalid backup path"
|
263 |
msgstr "Ungültiges Backupverzeichnis"
|
264 |
|
265 |
+
#: ../classes/wp-cli.php:43
|
266 |
msgid "Invalid root path"
|
267 |
msgstr "Ungültiges Rootverzeichnis"
|
268 |
|
269 |
+
#: ../classes/wp-cli.php:68
|
270 |
msgid "Backup Complete: "
|
271 |
msgstr "Backup fertiggestellt:"
|
272 |
|
273 |
+
#: ../classes/wp-cli.php:71
|
274 |
msgid "Backup Failed"
|
275 |
+
msgstr "Backup fehlgeschlagen"
|
276 |
|
277 |
+
#: ../functions/core.php:189
|
278 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
279 |
msgstr "Standardmäßig führt BackUpWordPress ein tägliches Backup deiner Datenbank und ein wöchentliches Backup deiner Datenbank & Dateien durch. Du kannst diesen Aufgabenplan selbstverständlich anpassen."
|
280 |
|
281 |
+
#: ../functions/interface.php:229
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Legacy"
|
283 |
+
msgstr "Bisherig"
|
284 |
|
285 |
+
#: ../functions/interface.php:62
|
|
|
|
|
|
|
|
|
286 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
287 |
+
msgstr "Dein Backup-Verzeichnis ist nicht beschreibbar. Führe %1$s oder %2$s aus oder setze die Berechtigungen selbst."
|
288 |
|
289 |
+
#: ../functions/interface.php:50
|
290 |
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."
|
291 |
msgstr "Das Backup-Verzeichnis kann nicht erstellt werden, weil dein %1$s-Verzeichnis nicht schreibbar ist. Führe %2$s oder %3$s aus oder erstelle das Verzeichnis selbst."
|
292 |
|
293 |
+
#: ../functions/core.php:189
|
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 |
|
309 |
+
#: ../admin/schedule.php:4
|
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 |
|
317 |
+
#: ../admin/schedule.php:19
|
318 |
msgid "hourly on the hour"
|
319 |
msgstr "stündlich zur vollen Stunde"
|
320 |
|
321 |
+
#: ../admin/schedule.php:25
|
322 |
msgid "daily at %s"
|
323 |
msgstr "täglich um %s"
|
324 |
|
325 |
+
#: ../admin/schedule-form.php:41
|
326 |
msgid "Number of backups to store on this server"
|
327 |
msgstr "Anzahl der Backups, die auf dem Server gespeichert bleiben"
|
328 |
|
329 |
+
#: ../admin/schedule-form.php:7
|
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 |
|
337 |
+
#: ../admin/menu.php:69
|
338 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
339 |
msgstr "Diese Informationen sind für Version %1$s. Sieh dir die %2$s-Datei für Hilfe speziell für Version %3$s an."
|
340 |
|
341 |
+
#: ../admin/constants.php:26
|
342 |
msgid "The root directory that is backed up. Defaults to %s."
|
343 |
msgstr "Das Wurzelverzeichnis, das gesichert wird. Standard: %s"
|
344 |
|
345 |
+
#: ../admin/constants.php:23
|
346 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
347 |
msgstr "Die Rolle, die beim Aufrufen von %1$s benutzt wird. Standard: %2$s"
|
348 |
|
349 |
+
#: ../admin/constants.php:14
|
350 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
351 |
msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird genutzt, um deine %2$s und %3$s als ZIP-Archiv zu komprimieren, wenn verfügbar."
|
352 |
|
353 |
+
#: ../plugin.php:77
|
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 |
|
361 |
+
#: ../admin/constants.php:11
|
362 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
363 |
msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird für den %2$s-Teil des Backups genutzt, wenn verfügbar."
|
364 |
|
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 |
|
372 |
+
#: ../admin/constants.php:3
|
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 |
|
380 |
+
#: ../functions/interface.php:72
|
381 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
382 |
msgstr "http://php.net/manual/de/features.safe-mode.php"
|
383 |
|
384 |
+
#: ../functions/interface.php:72
|
385 |
msgid "Safe Mode"
|
386 |
msgstr "Safe Mode"
|
387 |
|
388 |
+
#: ../functions/interface.php:82
|
389 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
390 |
msgstr "Dein angepasstes Backup-Verzeichnis %1$s existiert nicht und kann nicht erstellt werden, neue Backups werden stattdessen nach %2$s gespeichert."
|
391 |
|
392 |
+
#: ../functions/interface.php:92
|
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 |
|
408 |
+
#: ../functions/interface.php:27
|
409 |
msgid "Download"
|
410 |
msgstr "Download"
|
411 |
|
412 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
413 |
msgid "BackUpWordPress is almost ready."
|
414 |
msgstr "BackUpWordPress ist fast fertig."
|
415 |
|
416 |
+
#: ../functions/interface.php:102
|
417 |
msgid "BackUpWordPress detected issues with your last backup."
|
418 |
msgstr "BackUpWordPress hat Probleme bei deinem letzten Backup bemerkt."
|
419 |
|
420 |
+
#: ../functions/interface.php:218
|
421 |
msgid "Database and Files"
|
422 |
msgstr "Datenbank und Dateien"
|
423 |
|
424 |
+
#: ../functions/interface.php:224
|
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 |
|
462 |
+
#: ../admin/backups.php:13
|
463 |
msgid "add schedule"
|
464 |
msgstr "Aufgabe hinzufügen"
|
465 |
|
466 |
+
#: ../admin/backups.php:37
|
467 |
msgid "Size"
|
468 |
msgstr "Größe"
|
469 |
|
470 |
+
#: ../admin/backups.php:38
|
471 |
msgid "Type"
|
472 |
msgstr "Typ"
|
473 |
|
474 |
+
#: ../admin/backups.php:39
|
475 |
msgid "Actions"
|
476 |
msgstr "Aktionen"
|
477 |
|
478 |
+
#: ../admin/backups.php:64
|
479 |
msgid "This is where your backups will appear once you have one."
|
480 |
msgstr "Hier erscheinen deine Backups, sobald du welche hast."
|
481 |
|
482 |
+
#: ../admin/constants.php:3
|
483 |
msgid "The Codex can help"
|
484 |
msgstr "Der Codex kann helfen"
|
485 |
|
486 |
+
#: ../admin/constants.php:8
|
487 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
488 |
msgstr "Der Pfad zum Verzeichnis, in dem du die Backups speichern möchtest. Standard: %s"
|
489 |
|
490 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
491 |
msgid "database"
|
492 |
msgstr "Datenbank"
|
493 |
|
494 |
+
#: ../admin/constants.php:14
|
495 |
msgid "files"
|
496 |
msgstr "Dateien"
|
497 |
|
498 |
+
#: ../admin/constants.php:17
|
499 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
500 |
msgstr "Versuche, eine Kopie des Backups per E-Mail zu senden. Der Wert sollte eine E-Mail-Adresse sein. Standard: %s"
|
501 |
|
502 |
+
#: ../admin/constants.php:20
|
503 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
504 |
msgstr "Kommagetrennte Liste von Dateien oder Verzeichnissen, die ausgeschlossen werden sollen (das Backup-Verzeichnis ist automatisch ausgeschlossen)."
|
505 |
|
506 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
507 |
msgid "Manage Backups"
|
508 |
msgstr "Backups verwalten"
|
509 |
|
510 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
511 |
msgid "Backups"
|
512 |
msgstr "Backups"
|
513 |
|
514 |
+
#: ../admin/menu.php:69
|
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 |
|
538 |
+
#: ../admin/page.php:13
|
539 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
540 |
msgstr "Du musst die Probleme, die oben beschrieben werden, beheben, bevor BackUpWordPress starten kann."
|
541 |
|
542 |
+
#: ../admin/schedule-form-excludes.php:19
|
543 |
msgid "Preview"
|
544 |
msgstr "Vorschau"
|
545 |
|
546 |
+
#: ../admin/schedule-form-excludes.php:29
|
547 |
msgid "Exclude Rules"
|
548 |
msgstr "Ausnahmeregeln"
|
549 |
|
550 |
+
#: ../admin/schedule-form-excludes.php:52
|
551 |
msgid "Remove"
|
552 |
msgstr "Entfernen"
|
553 |
|
554 |
+
#: ../admin/schedule-form-excludes.php:71
|
555 |
msgid "Excluded"
|
556 |
msgstr "Ausnehmen"
|
557 |
|
558 |
+
#: ../admin/schedule-form-excludes.php:75
|
559 |
msgid "Included"
|
560 |
msgstr "Einschließen"
|
561 |
|
562 |
+
#: ../admin/schedule-form-excludes.php:79
|
563 |
msgid "Unreadable"
|
564 |
msgstr "Nicht lesbar"
|
565 |
|
566 |
+
#: ../admin/schedule-form-excludes.php:107
|
567 |
msgid "Unreadable files can't be backed up"
|
568 |
msgstr "Nicht lesbare Dateien können nicht gesichert werden"
|
569 |
|
570 |
+
#: ../admin/schedule-form-excludes.php:113
|
571 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
572 |
msgstr "Deine Seite ist %s groß. Die Backups werden komprimiert und sollten kleiner sein."
|
573 |
|
574 |
+
#: ../admin/schedule-form.php:11
|
575 |
msgid "Backup"
|
576 |
msgstr "Backup"
|
577 |
|
578 |
+
#: ../admin/schedule-form.php:14
|
579 |
msgid "Both Database & files"
|
580 |
msgstr "Datenbank & Dateien"
|
581 |
|
582 |
+
#: ../admin/schedule-form.php:15
|
583 |
msgid "Files only"
|
584 |
msgstr "Dateien"
|
585 |
|
586 |
+
#: ../admin/schedule-form.php:16
|
587 |
msgid "Database only"
|
588 |
msgstr "Datenbank"
|
589 |
|
590 |
+
#: ../functions/interface.php:221
|
591 |
msgid "Files"
|
592 |
msgstr "Dateien"
|
593 |
|
594 |
+
#: ../admin/schedule-form-excludes.php:7
|
595 |
msgid "Manage Excludes"
|
596 |
msgstr "Ausnahmen verwalten"
|
597 |
|
598 |
+
#: ../admin/schedule-form.php:23
|
599 |
msgid "Schedule"
|
600 |
msgstr "Plan"
|
601 |
|
602 |
+
#: ../plugin.php:142 ../admin/schedule-form.php:54
|
603 |
msgid "Update"
|
604 |
msgstr "Update"
|
605 |
|
606 |
+
#: ../admin/schedule.php:19
|
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 |
|
618 |
+
#: ../plugin.php:66
|
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 |
|
626 |
+
#: ../functions/core.php:288
|
627 |
msgid "This %s file ensures that other people cannot download your backup files."
|
628 |
msgstr "Diese %s-Datei garantiert, dass andere Leute nicht deine Backup-Dateien herunterladen können."
|
languages/hmbkp-es_ES.mo
ADDED
Binary file
|
languages/hmbkp-es_ES.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Spanish (Spain)
|
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"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-eu_EU.mo
ADDED
Binary file
|
languages/hmbkp-eu_EU.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Basque
|
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"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-fr_FR.mo
ADDED
Binary file
|
languages/hmbkp-fr_FR.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in French (France)
|
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"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-he_HE.mo
ADDED
Binary file
|
languages/{hmbkp-he_IL.po → hmbkp-he_HE.po}
RENAMED
@@ -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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,601 +10,615 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "Email to Support"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#: admin/page.php:17
|
18 |
msgid "If your finding BackUpWordPress useful, please %s."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin/schedule-form-excludes.php:13
|
22 |
msgid "New Exclude Rule[s]"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin/actions.php:
|
26 |
msgid "Your BackUp Failed"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/actions.php:
|
30 |
msgid "Here's the response from the server:"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/page.php:19
|
34 |
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."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/page.php:17
|
38 |
msgid "rate it on the plugin directory"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: classes/schedule.php:
|
42 |
msgid "Starting Backup"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: classes/email.php:142 classes/email.php:151
|
200 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: classes/email.php:142
|
204 |
msgid "The backup file should be attached to this email."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: classes/email.php:142 classes/email.php:151
|
208 |
msgid "You can download the backup file by clicking the link below:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/email.php:142 classes/email.php:151
|
212 |
msgid ""
|
213 |
"Kind Regards,\n"
|
214 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: classes/email.php:151
|
218 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: classes/wp-cli.php:19
|
222 |
msgid "Backup: Dumping database..."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: classes/wp-cli.php:23
|
226 |
msgid "Backup: Zipping everything up..."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: classes/wp-cli.php:38
|
230 |
msgid "Invalid backup path"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: classes/wp-cli.php:43
|
234 |
msgid "Invalid root path"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: classes/wp-cli.php:68
|
238 |
msgid "Backup Complete: "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: classes/wp-cli.php:71
|
242 |
msgid "Backup Failed"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: functions/core.php:
|
246 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: functions/interface.php:
|
250 |
-
msgid "BackUpWordPress failed to perform the backup."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: functions/interface.php:111
|
254 |
-
msgid "You have likely hit a memory limit."
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: functions/interface.php:238
|
258 |
msgid "Legacy"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "The mysqldump file was not created"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: functions/interface.php:62
|
266 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: functions/interface.php:50
|
270 |
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."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: functions/core.php:
|
274 |
msgid "BackUpWordPress has setup your default schedules."
|
275 |
msgstr "BackUpWordPress הגדיר את תזמוני ברירת-המחדל שלך."
|
276 |
|
277 |
-
#: classes/email.php:127
|
278 |
msgid "Backup of %s Failed"
|
279 |
msgstr "גיבוי של %s נכשל"
|
280 |
|
281 |
-
#: classes/email.php:50
|
282 |
msgid "Send an email notification to %s"
|
283 |
msgstr "שלח התראה בדוא\"ל אל %s"
|
284 |
|
285 |
-
#: classes/email.php:72
|
286 |
msgid "%s isn't a valid email"
|
287 |
msgstr "%s אינו דוא\"ל חוקי"
|
288 |
|
289 |
-
#: admin/schedule.php:4
|
290 |
msgid "Backups will be compressed and should be smaller than this."
|
291 |
msgstr "גיבויים ידחסו וצריכים להיות קטנים יותר מזה."
|
292 |
|
293 |
-
#: classes/email.php:19
|
294 |
msgid "Email notification"
|
295 |
msgstr "התראה בדוא\"ל"
|
296 |
|
297 |
-
#: admin/schedule.php:19
|
298 |
msgid "hourly on the hour"
|
299 |
msgstr "פעם בשעה על השעה"
|
300 |
|
301 |
-
#: admin/schedule.php:25
|
302 |
msgid "daily at %s"
|
303 |
msgstr "פעם ביום ב-%s"
|
304 |
|
305 |
-
#: admin/schedule-form.php:41
|
306 |
msgid "Number of backups to store on this server"
|
307 |
msgstr "מספר גיבויים לאחסון על שרת זה"
|
308 |
|
309 |
-
#: admin/schedule-form.php:7
|
310 |
msgid "Schedule Settings"
|
311 |
msgstr "הגדרות תזמון"
|
312 |
|
313 |
-
#: admin/actions.php:
|
314 |
msgid "Close"
|
315 |
msgstr "סגור"
|
316 |
|
317 |
-
#: admin/menu.php:69
|
318 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
319 |
msgstr "המידע שלהלן הוא לגרסה %1$s. צפה בקובץ %2$s לעזרה ספציפית לגרסה %3$s."
|
320 |
|
321 |
-
#: admin/constants.php:26
|
322 |
msgid "The root directory that is backed up. Defaults to %s."
|
323 |
msgstr "הספריה הראשית שמגובית. ברירת-מחדל היא %s."
|
324 |
|
325 |
-
#: admin/constants.php:23
|
326 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/constants.php:14
|
330 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: plugin.php:
|
334 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
335 |
msgstr "BackUpWordPress דורש וורדפרס גרסה %s או יותר."
|
336 |
|
337 |
-
#: plugin.php:
|
338 |
msgid "Cancel"
|
339 |
msgstr "ביטול"
|
340 |
|
341 |
-
#: admin/constants.php:11
|
342 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
346 |
-
#: admin/constants.php:17 admin/constants.php:20
|
347 |
-
#: admin/constants.php:
|
|
|
348 |
msgid "e.g."
|
349 |
msgstr "למשל"
|
350 |
|
351 |
-
#: admin/constants.php:3
|
352 |
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."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/actions.php:
|
356 |
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."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: functions/interface.php:72
|
360 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: functions/interface.php:72
|
364 |
msgid "Safe Mode"
|
365 |
msgstr "מצב בטוח"
|
366 |
|
367 |
-
#: functions/interface.php:82
|
368 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
369 |
msgstr "ספריית הגיבויים המותאמת אישית שלך %1$s לא קיימת ולא יכולה להיוצר, הגיבויים שלך ישמרו ב-%2$s במקום."
|
370 |
|
371 |
-
#: functions/interface.php:92
|
372 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
373 |
msgstr "ספריית הגיבויים המותאמת אישית שלך %1$s לא ניתנת לכתיבה, גיבויים חדשים ישמרו ב-%2$s במקום."
|
374 |
|
375 |
-
#: functions/interface.php:
|
376 |
msgid "cancel"
|
377 |
msgstr "ביטול"
|
378 |
|
379 |
-
#: functions/interface.php:
|
380 |
msgid "Settings"
|
381 |
msgstr "הגדרות"
|
382 |
|
383 |
-
#: functions/interface.php:
|
384 |
msgid "Excludes"
|
385 |
msgstr "לא כלולים"
|
386 |
|
387 |
-
#: functions/interface.php:27
|
388 |
msgid "Download"
|
389 |
msgstr "הורד"
|
390 |
|
391 |
-
#: functions/interface.php:50 functions/interface.php:62
|
392 |
msgid "BackUpWordPress is almost ready."
|
393 |
msgstr "BackUpWordPress כמעט מוכן."
|
394 |
|
395 |
-
#: functions/interface.php:102
|
396 |
msgid "BackUpWordPress detected issues with your last backup."
|
397 |
msgstr "BackUpWordPress זיהה בעיות עם הגיבוי האחרון שלך."
|
398 |
|
399 |
-
#: functions/interface.php:
|
400 |
msgid "Database and Files"
|
401 |
msgstr "מסד נתונים וקבצים"
|
402 |
|
403 |
-
#: functions/interface.php:
|
404 |
msgid "Database"
|
405 |
msgstr "מסד נתונים"
|
406 |
|
407 |
-
#: hm-backup/hm-backup.php:
|
408 |
-
msgid "The backup file was not created"
|
409 |
-
msgstr "קובץ הגיבוי לא נוצר"
|
410 |
-
|
411 |
-
#: hm-backup/hm-backup.php:951
|
412 |
msgid "The following files are unreadable and couldn't be backed up: "
|
413 |
msgstr "הקבצים הבאים אינם קריאים ולא היה ניתן לגבות אותם:"
|
414 |
|
415 |
-
#: admin/actions.php:
|
416 |
-
#: functions/interface.php:
|
|
|
417 |
msgid "BackUpWordPress has detected a problem."
|
418 |
msgstr "BackUpWordPress זיהה בעיה."
|
419 |
|
420 |
-
#: admin/actions.php:
|
421 |
msgid "Backup type cannot be empty"
|
422 |
msgstr "סוג הגיבוי אינו יכול להיות ריק"
|
423 |
|
424 |
-
#: admin/actions.php:
|
425 |
msgid "Invalid backup type"
|
426 |
msgstr "סוג גיבוי לא חוקי"
|
427 |
|
428 |
-
#: admin/actions.php:
|
429 |
msgid "Schedule cannot be empty"
|
430 |
msgstr "תזמון אינו יכול להיות ריק"
|
431 |
|
432 |
-
#: admin/actions.php:
|
433 |
msgid "Invalid schedule"
|
434 |
msgstr "תזמון לא חוקי"
|
435 |
|
436 |
-
#: admin/actions.php:
|
437 |
msgid "Max backups must be a number"
|
438 |
msgstr "מספר גיבויים מקסימלי חייב להיות מספר"
|
439 |
|
440 |
-
#: admin/actions.php:
|
441 |
msgid "%s didn't match any files."
|
442 |
msgstr "%s לא תאם אף קובץ."
|
443 |
|
444 |
-
#: admin/backups.php:13
|
445 |
msgid "add schedule"
|
446 |
msgstr "הוסף תזמון"
|
447 |
|
448 |
-
#: admin/backups.php:37
|
449 |
msgid "Size"
|
450 |
msgstr "גודל"
|
451 |
|
452 |
-
#: admin/backups.php:38
|
453 |
msgid "Type"
|
454 |
msgstr "סוג"
|
455 |
|
456 |
-
#: admin/backups.php:39
|
457 |
msgid "Actions"
|
458 |
msgstr "פעולות"
|
459 |
|
460 |
-
#: admin/backups.php:
|
461 |
msgid "This is where your backups will appear once you have one."
|
462 |
msgstr "זהו המקום בו הגיבויים שלך יופיעו ברגע שיהיה לך אחד."
|
463 |
|
464 |
-
#: admin/constants.php:3
|
465 |
msgid "The Codex can help"
|
466 |
msgstr "הקודקס יכול לעזור"
|
467 |
|
468 |
-
#: admin/constants.php:8
|
469 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
470 |
msgstr "הנתיב לתיקיה שבה תרצה לאחסן את קבצי הגיבוי שלך, ברירת-מחדל היא %s."
|
471 |
|
472 |
-
#: admin/constants.php:11 admin/constants.php:14
|
473 |
msgid "database"
|
474 |
msgstr "מסד נתונים"
|
475 |
|
476 |
-
#: admin/constants.php:14
|
477 |
msgid "files"
|
478 |
msgstr "קבצים"
|
479 |
|
480 |
-
#: admin/constants.php:17
|
481 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
482 |
msgstr "נסה לשלוח העתק של הגיבויים שלך בדוא\"ל. ערך צריך להיות כתובת דוא\"ל אליה ישלחו גיבויים. ברירת-מחדל היא %s."
|
483 |
|
484 |
-
#: admin/constants.php:20
|
485 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/menu.php:10 admin/page.php:5
|
489 |
msgid "Manage Backups"
|
490 |
msgstr "ניהול גיבויים"
|
491 |
|
492 |
-
#: admin/menu.php:10 admin/menu.php:34
|
493 |
msgid "Backups"
|
494 |
msgstr "גיבויים"
|
495 |
|
496 |
-
#: admin/menu.php:69
|
497 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
498 |
msgstr "אינך משתמש בגרסה האחרונה היציבה של BackUpWordPress"
|
499 |
|
500 |
-
#: admin/menu.php:75
|
501 |
msgid "FAQ"
|
502 |
msgstr "שאלות נפוצות"
|
503 |
|
504 |
-
#: admin/constants.php:3 admin/menu.php:76
|
505 |
msgid "Constants"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/menu.php:79
|
509 |
msgid "For more information:"
|
510 |
msgstr "למידע נוסף:"
|
511 |
|
512 |
-
#: admin/menu.php:81
|
513 |
msgid "Support Forums"
|
514 |
msgstr "פורומי תמיכה"
|
515 |
|
516 |
-
#: admin/menu.php:82
|
517 |
msgid "Help with translation"
|
518 |
msgstr "עזרה עם תרגום"
|
519 |
|
520 |
-
#: admin/page.php:13
|
521 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
522 |
msgstr "עליך לתקן את הבעיות המפורטות לעיל לפני ש-BackUpWordPress יוכל להתחיל."
|
523 |
|
524 |
-
#: admin/schedule-form-excludes.php:19
|
525 |
msgid "Preview"
|
526 |
msgstr "הצג"
|
527 |
|
528 |
-
#: admin/schedule-form-excludes.php:29
|
529 |
msgid "Exclude Rules"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/schedule-form-excludes.php:52
|
533 |
msgid "Remove"
|
534 |
msgstr "הסר"
|
535 |
|
536 |
-
#: admin/schedule-form-excludes.php:71
|
537 |
msgid "Excluded"
|
538 |
msgstr "לא כלול"
|
539 |
|
540 |
-
#: admin/schedule-form-excludes.php:75
|
541 |
msgid "Included"
|
542 |
msgstr "כלול"
|
543 |
|
544 |
-
#: admin/schedule-form-excludes.php:79
|
545 |
msgid "Unreadable"
|
546 |
msgstr "לא קריא"
|
547 |
|
548 |
-
#: admin/schedule-form-excludes.php:107
|
549 |
msgid "Unreadable files can't be backed up"
|
550 |
msgstr "קבצים לא קריאים אינם יכולים להיות מגובים"
|
551 |
|
552 |
-
#: admin/schedule-form-excludes.php:113
|
553 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
554 |
msgstr "האתר שלך הוא %s. גיבויים ידחסו ולכן יהיו קטנים יותר."
|
555 |
|
556 |
-
#: admin/schedule-form.php:11
|
557 |
msgid "Backup"
|
558 |
msgstr "גיבוי"
|
559 |
|
560 |
-
#: admin/schedule-form.php:14
|
561 |
msgid "Both Database & files"
|
562 |
msgstr "גם מסד נתונים וגם קבצים"
|
563 |
|
564 |
-
#: admin/schedule-form.php:15
|
565 |
msgid "Files only"
|
566 |
msgstr "קבצים בלבד"
|
567 |
|
568 |
-
#: admin/schedule-form.php:16
|
569 |
msgid "Database only"
|
570 |
msgstr "מסד נתונים בלבד"
|
571 |
|
572 |
-
#: functions/interface.php:
|
573 |
msgid "Files"
|
574 |
msgstr "קבצים"
|
575 |
|
576 |
-
#: admin/schedule-form-excludes.php:7
|
577 |
msgid "Manage Excludes"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/schedule-form.php:23
|
581 |
msgid "Schedule"
|
582 |
msgstr "תזמון"
|
583 |
|
584 |
-
#: plugin.php:
|
585 |
msgid "Update"
|
586 |
msgstr "עדכן"
|
587 |
|
588 |
-
#: admin/schedule.php:19
|
589 |
msgid "hourly at %s minutes past the hour"
|
590 |
msgstr "פעם בשעה %s דקות לאחר תחילת השעה"
|
591 |
|
592 |
-
#: functions/interface.php:
|
593 |
msgid "Run now"
|
594 |
msgstr "גבה עכשיו"
|
595 |
|
596 |
-
#: functions/interface.php:28 functions/interface.php:
|
597 |
msgid "Delete"
|
598 |
msgstr "מחק"
|
599 |
|
600 |
-
#: plugin.php:
|
601 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
602 |
msgstr "BackUpWordPress דורש PHP גרסה 5.2.4 או יותר."
|
603 |
|
604 |
-
#: classes/email.php:137
|
605 |
msgid "Backup of %s"
|
606 |
msgstr "גיבוי של %s"
|
607 |
|
608 |
-
#: functions/core.php:
|
609 |
msgid "This %s file ensures that other people cannot download your backup files."
|
610 |
-
msgstr ""
|
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 |
"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…"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 "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 |
|
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 "פעם ביום ב-%s"
|
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 "המידע שלהלן הוא לגרסה %1$s. צפה בקובץ %2$s לעזרה ספציפית לגרסה %3$s."
|
336 |
|
337 |
+
#: ../admin/constants.php:26
|
338 |
msgid "The root directory that is backed up. Defaults to %s."
|
339 |
msgstr "הספריה הראשית שמגובית. ברירת-מחדל היא %s."
|
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 "BackUpWordPress דורש וורדפרס גרסה %s או יותר."
|
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 "ספריית הגיבויים המותאמת אישית שלך %1$s לא קיימת ולא יכולה להיוצר, הגיבויים שלך ישמרו ב-%2$s במקום."
|
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 "ספריית הגיבויים המותאמת אישית שלך %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 |
|
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 "BackUpWordPress כמעט מוכן."
|
411 |
|
412 |
+
#: ../functions/interface.php:102
|
413 |
msgid "BackUpWordPress detected issues with your last backup."
|
414 |
msgstr "BackUpWordPress זיהה בעיות עם הגיבוי האחרון שלך."
|
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 "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 |
|
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 "הנתיב לתיקיה שבה תרצה לאחסן את קבצי הגיבוי שלך, ברירת-מחדל היא %s."
|
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 "נסה לשלוח העתק של הגיבויים שלך בדוא\"ל. ערך צריך להיות כתובת דוא\"ל אליה ישלחו גיבויים. ברירת-מחדל היא %s."
|
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 "אינך משתמש בגרסה האחרונה היציבה של 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 |
|
534 |
+
#: ../admin/page.php:13
|
535 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
536 |
msgstr "עליך לתקן את הבעיות המפורטות לעיל לפני ש-BackUpWordPress יוכל להתחיל."
|
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 "האתר שלך הוא %s. גיבויים ידחסו ולכן יהיו קטנים יותר."
|
569 |
|
570 |
+
#: ../admin/schedule-form.php:11
|
571 |
msgid "Backup"
|
572 |
msgstr "גיבוי"
|
573 |
|
574 |
+
#: ../admin/schedule-form.php:14
|
575 |
msgid "Both Database & 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 "פעם בשעה %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 |
|
614 |
+
#: ../plugin.php:66
|
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 |
|
622 |
+
#: ../functions/core.php:288
|
623 |
msgid "This %s file ensures that other people cannot download your backup files."
|
624 |
+
msgstr "קובץ ה-%s מבטיח שאנשים אחרים לא יכולים להוריד את קבצי הגיבוי שלך."
|
languages/hmbkp-he_IL.mo
DELETED
Binary file
|
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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,187 +10,215 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
14 |
-
msgid "
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
-
msgid "
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "Starting Backup"
|
43 |
-
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
-
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr "Quando si deve avviare la tua pianificazione. Il valore predefinito è %s."
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr "Sei sicuro di voler cancellare questa pianificazione? Tutti i backup verranno eliminati."
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr "\"Annulla\" per tornare indietro, \"OK\" per cancellare."
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr "Sei sicuro di voler cancellare questo backup?"
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr "Sei sicuro di voler rimuovere questa regola di esclusione?"
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
msgstr "La riduzione del numero di backup che sono memorizzati sul server causerà la cancellazione di alcuni dei vostri backup esistenti, sei sicuro?"
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr "I backup massimi non devono essere vuoti"
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr "I backup massimi devono essere maggiori di 0"
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr "Escludere"
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr "default"
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr "definito"
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr "Solo manuale"
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr "Il numero di backup precedenti da memorizzare sul server. Oltre questo limite i backup precedenti verranno automaticamente eliminati."
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr "questo non dovrebbe impiegare troppo tempo"
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr "calcolando le dimensioni del sito"
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr "Il prossimo backup sarà da %1$s a %2$s"
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr "ogni 12 ore dalle %1$s & %2$s"
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
-
msgstr "ogni settimana da %1$s
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr "ogni 15 giorni da %1$s a %2$s"
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr "da %1$s di ogni mese a %2$s"
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr "manualmente"
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
msgstr "questo server"
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
msgstr "memorizzare solamente l'ultimo backup su %s"
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr "non memorizzare alcun backup su %s"
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
msgstr "memorizza solo gli ultimi %1$s backup su %2$s"
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr "Memorizza %1$s %2$s %3$s, %4$s. %5$s"
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr "Ricevi una email di notifica quando un backup è pronto, se il backup è abbastanza piccolo (< 10mb) sarà allegato alla email. Separa più indirizzi e-mail con una virgola."
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr "BackUpWordPress non è riuscito a memorizzare il tuo sito %1$s."
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr "Qui ci sono gli errori riscontrati:"
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
msgstr "Se gli errori di cui sopra hanno un aspetto marziano, inoltra questa email a %3$s e gli daremo un'occhiata."
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
@@ -198,415 +226,401 @@ msgstr ""
|
|
198 |
"Cordiali saluti, \n"
|
199 |
"L'apologetico BackUpWordPress Backup Robot Emailing"
|
200 |
|
201 |
-
#: classes/email.php:142 classes/email.php:151
|
202 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
203 |
msgstr "BackUpWordPress ha completato un backup del tuo sito %1$s."
|
204 |
|
205 |
-
#: classes/email.php:142
|
206 |
msgid "The backup file should be attached to this email."
|
207 |
msgstr "Il file di backup deve essere allegato a questa email."
|
208 |
|
209 |
-
#: classes/email.php:142 classes/email.php:151
|
210 |
msgid "You can download the backup file by clicking the link below:"
|
211 |
msgstr "È possibile scaricare il file di backup cliccando sul link sottostante:"
|
212 |
|
213 |
-
#: classes/email.php:142 classes/email.php:151
|
214 |
msgid ""
|
215 |
"Kind Regards,\n"
|
216 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
217 |
msgstr "Cordiali saluti, Il felice BackUpWordPress Backup Robot Emailing"
|
218 |
|
219 |
-
#: classes/email.php:151
|
220 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
221 |
msgstr "Purtroppo il file di backup è troppo grande da allegare a questa email."
|
222 |
|
223 |
-
#: classes/wp-cli.php:19
|
224 |
msgid "Backup: Dumping database..."
|
225 |
msgstr "Backup: Dumping database..."
|
226 |
|
227 |
-
#: classes/wp-cli.php:23
|
228 |
msgid "Backup: Zipping everything up..."
|
229 |
msgstr "Backup: zippando..."
|
230 |
|
231 |
-
#: classes/wp-cli.php:38
|
232 |
msgid "Invalid backup path"
|
233 |
msgstr "Cartella backup non valida"
|
234 |
|
235 |
-
#: classes/wp-cli.php:43
|
236 |
msgid "Invalid root path"
|
237 |
msgstr "Percorso non valido"
|
238 |
|
239 |
-
#: classes/wp-cli.php:68
|
240 |
msgid "Backup Complete: "
|
241 |
msgstr "Backup completo:"
|
242 |
|
243 |
-
#: classes/wp-cli.php:71
|
244 |
msgid "Backup Failed"
|
245 |
msgstr "Backup fallito"
|
246 |
|
247 |
-
#: functions/core.php:
|
248 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
249 |
msgstr "Per impostazione predefinita BackUpWordPress esegue un backup giornaliero del database e un backup settimanale del database e dei file. È possibile modificare queste pianificazioni."
|
250 |
|
251 |
-
#: functions/interface.php:
|
252 |
-
msgid "BackUpWordPress failed to perform the backup."
|
253 |
-
msgstr "BackUpWordPress non è riuscito ad eseguire il backup."
|
254 |
-
|
255 |
-
#: functions/interface.php:111
|
256 |
-
msgid "You have likely hit a memory limit."
|
257 |
-
msgstr "Probabilmente è stato raggiunto il limite di memoria."
|
258 |
-
|
259 |
-
#: functions/interface.php:238
|
260 |
msgid "Legacy"
|
261 |
msgstr "Legacy"
|
262 |
|
263 |
-
#:
|
264 |
-
msgid "The mysqldump file was not created"
|
265 |
-
msgstr "Il file mysqldump non è stato creato"
|
266 |
-
|
267 |
-
#: functions/interface.php:62
|
268 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
269 |
msgstr "La tua directory di backup non è scrivibile, esegui %1$s o %2$s o imposta le autorizzazioni."
|
270 |
|
271 |
-
#: functions/interface.php:50
|
272 |
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."
|
273 |
msgstr "La directory di backup non può essere creato perché la directory %1$s non èscrivibile, esegui %2$s o %3$s o crea la cartella."
|
274 |
|
275 |
-
#: functions/core.php:
|
276 |
msgid "BackUpWordPress has setup your default schedules."
|
277 |
msgstr "BackUpWordPress ha impostato le pianificazioni predefinite."
|
278 |
|
279 |
-
#: classes/email.php:127
|
280 |
msgid "Backup of %s Failed"
|
281 |
msgstr "Backup di %s fallito"
|
282 |
|
283 |
-
#: classes/email.php:50
|
284 |
msgid "Send an email notification to %s"
|
285 |
msgstr "Invia una notifica email a %s "
|
286 |
|
287 |
-
#: classes/email.php:72
|
288 |
msgid "%s isn't a valid email"
|
289 |
msgstr "%s non è un'email valida"
|
290 |
|
291 |
-
#: admin/schedule.php:4
|
292 |
msgid "Backups will be compressed and should be smaller than this."
|
293 |
-
msgstr "Il backup sarà compresso e dovrebbe
|
294 |
|
295 |
-
#: classes/email.php:19
|
296 |
msgid "Email notification"
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: admin/schedule.php:19
|
300 |
msgid "hourly on the hour"
|
301 |
msgstr "ogni ora"
|
302 |
|
303 |
-
#: admin/schedule.php:25
|
304 |
msgid "daily at %s"
|
305 |
msgstr "ogni giorno alle %s"
|
306 |
|
307 |
-
#: admin/schedule-form.php:41
|
308 |
msgid "Number of backups to store on this server"
|
309 |
msgstr "Numero di backup da memorizzare su questo server"
|
310 |
|
311 |
-
#: admin/schedule-form.php:7
|
312 |
msgid "Schedule Settings"
|
313 |
msgstr "Impostazioni di pianificazione"
|
314 |
|
315 |
-
#: admin/actions.php:
|
316 |
msgid "Close"
|
317 |
msgstr "Chiudi"
|
318 |
|
319 |
-
#: admin/menu.php:69
|
320 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
321 |
-
msgstr "Le seguenti informazioni sono per la versione %1$s. Visualizza il file %2$s per aiuto specifico
|
322 |
|
323 |
-
#: admin/constants.php:26
|
324 |
msgid "The root directory that is backed up. Defaults to %s."
|
325 |
-
msgstr "La directory principale che è stata
|
326 |
|
327 |
-
#: admin/constants.php:23
|
328 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
329 |
-
msgstr "La capacità
|
330 |
|
331 |
-
#: admin/constants.php:14
|
332 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
333 |
-
msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per comprimere i tuoi %2$s e %3$s se disponibile."
|
334 |
|
335 |
-
#: plugin.php:
|
336 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
337 |
msgstr "BackUpWordPress richiede WordPress versione %s o superiore."
|
338 |
|
339 |
-
#: plugin.php:
|
340 |
msgid "Cancel"
|
341 |
msgstr "Cancella"
|
342 |
|
343 |
-
#: admin/constants.php:11
|
344 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
345 |
-
msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per la %2$s
|
346 |
|
347 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
348 |
-
#: admin/constants.php:17 admin/constants.php:20
|
349 |
-
#: admin/constants.php:
|
|
|
350 |
msgid "e.g."
|
351 |
msgstr "ad esempio"
|
352 |
|
353 |
-
#: admin/constants.php:3
|
354 |
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."
|
355 |
-
msgstr "Tu puoi %1$s uno dei seguenti %2$s nel tuo %3$s per controllare le impostazioni avanzate. %4$s.
|
356 |
|
357 |
-
#: admin/actions.php:
|
358 |
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."
|
359 |
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."
|
360 |
|
361 |
-
#: functions/interface.php:72
|
362 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
363 |
msgstr "http://php.net/manual/en/features.safe-mode.php"
|
364 |
|
365 |
-
#: functions/interface.php:72
|
366 |
msgid "Safe Mode"
|
367 |
msgstr "Modalità provvisoria"
|
368 |
|
369 |
-
#: functions/interface.php:82
|
370 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
371 |
msgstr "La tua directory personalizzata di backup %1$s non esiste e non può essere creata, i tuoi backup verranno salvati in % 2$s"
|
372 |
|
373 |
-
#: functions/interface.php:92
|
374 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
375 |
msgstr "La tua directory personalizzata di backup %1$s non è scrivibile, i nuovi backup verranno salvati in % 2$s"
|
376 |
|
377 |
-
#: functions/interface.php:
|
378 |
msgid "cancel"
|
379 |
msgstr "cancella"
|
380 |
|
381 |
-
#: functions/interface.php:
|
382 |
msgid "Settings"
|
383 |
msgstr "Impostazioni"
|
384 |
|
385 |
-
#: functions/interface.php:
|
386 |
msgid "Excludes"
|
387 |
msgstr "Esclusioni"
|
388 |
|
389 |
-
#: functions/interface.php:27
|
390 |
msgid "Download"
|
391 |
msgstr "Scarica"
|
392 |
|
393 |
-
#: functions/interface.php:50 functions/interface.php:62
|
394 |
msgid "BackUpWordPress is almost ready."
|
395 |
msgstr "BackUpWordPress è quasi pronto"
|
396 |
|
397 |
-
#: functions/interface.php:102
|
398 |
msgid "BackUpWordPress detected issues with your last backup."
|
399 |
msgstr "BackUpWordPress ha rilevato problemi con l'ultimo backup."
|
400 |
|
401 |
-
#: functions/interface.php:
|
402 |
msgid "Database and Files"
|
403 |
msgstr "Database e files"
|
404 |
|
405 |
-
#: functions/interface.php:
|
406 |
msgid "Database"
|
407 |
msgstr "Database"
|
408 |
|
409 |
-
#: hm-backup/hm-backup.php:
|
410 |
-
msgid "The backup file was not created"
|
411 |
-
msgstr "Il backup non è stato creato"
|
412 |
-
|
413 |
-
#: hm-backup/hm-backup.php:951
|
414 |
msgid "The following files are unreadable and couldn't be backed up: "
|
415 |
msgstr "I seguenti file sono illeggibili e non possono essere memorizzati::"
|
416 |
|
417 |
-
#: admin/actions.php:
|
418 |
-
#: functions/interface.php:
|
|
|
419 |
msgid "BackUpWordPress has detected a problem."
|
420 |
msgstr "BackUpWordPress ha rilevato un problema."
|
421 |
|
422 |
-
#: admin/actions.php:
|
423 |
msgid "Backup type cannot be empty"
|
424 |
msgstr "Il tipo di backup non può essere vuoto"
|
425 |
|
426 |
-
#: admin/actions.php:
|
427 |
msgid "Invalid backup type"
|
428 |
msgstr "Tipo di backup non valido"
|
429 |
|
430 |
-
#: admin/actions.php:
|
431 |
msgid "Schedule cannot be empty"
|
432 |
msgstr "La pianificazione non può essere vuota"
|
433 |
|
434 |
-
#: admin/actions.php:
|
435 |
msgid "Invalid schedule"
|
436 |
msgstr "Pianificazione non valida"
|
437 |
|
438 |
-
#: admin/actions.php:
|
439 |
msgid "Max backups must be a number"
|
440 |
msgstr "Max backup deve essere un numero"
|
441 |
|
442 |
-
#: admin/actions.php:
|
443 |
msgid "%s didn't match any files."
|
444 |
msgstr "%s non corrisponde ad alcun file."
|
445 |
|
446 |
-
#: admin/backups.php:13
|
447 |
msgid "add schedule"
|
448 |
msgstr "aggiungi pianificazione"
|
449 |
|
450 |
-
#: admin/backups.php:37
|
451 |
msgid "Size"
|
452 |
msgstr "Dimensione"
|
453 |
|
454 |
-
#: admin/backups.php:38
|
455 |
msgid "Type"
|
456 |
msgstr "Tipo"
|
457 |
|
458 |
-
#: admin/backups.php:39
|
459 |
msgid "Actions"
|
460 |
msgstr "Azioni"
|
461 |
|
462 |
-
#: admin/backups.php:
|
463 |
msgid "This is where your backups will appear once you have one."
|
464 |
msgstr "Questo è dove il backup apparirà una volta che ne hai uno."
|
465 |
|
466 |
-
#: admin/constants.php:3
|
467 |
msgid "The Codex can help"
|
468 |
-
msgstr "
|
469 |
|
470 |
-
#: admin/constants.php:8
|
471 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
472 |
-
msgstr "Il percorso
|
473 |
|
474 |
-
#: admin/constants.php:11 admin/constants.php:14
|
475 |
msgid "database"
|
476 |
-
msgstr ""
|
477 |
|
478 |
-
#: admin/constants.php:14
|
479 |
msgid "files"
|
480 |
-
msgstr ""
|
481 |
|
482 |
-
#: admin/constants.php:17
|
483 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
484 |
-
msgstr ""
|
485 |
|
486 |
-
#: admin/constants.php:20
|
487 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
488 |
-
msgstr ""
|
489 |
|
490 |
-
#: admin/menu.php:10 admin/page.php:5
|
491 |
msgid "Manage Backups"
|
492 |
-
msgstr ""
|
493 |
|
494 |
-
#: admin/menu.php:10 admin/menu.php:34
|
495 |
msgid "Backups"
|
496 |
-
msgstr ""
|
497 |
|
498 |
-
#: admin/menu.php:69
|
499 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
500 |
-
msgstr ""
|
501 |
|
502 |
-
#: admin/menu.php:75
|
503 |
msgid "FAQ"
|
504 |
-
msgstr ""
|
505 |
|
506 |
-
#: admin/constants.php:3 admin/menu.php:76
|
507 |
msgid "Constants"
|
508 |
-
msgstr ""
|
509 |
|
510 |
-
#: admin/menu.php:79
|
511 |
msgid "For more information:"
|
512 |
-
msgstr ""
|
513 |
|
514 |
-
#: admin/menu.php:81
|
515 |
msgid "Support Forums"
|
516 |
-
msgstr ""
|
517 |
|
518 |
-
#: admin/menu.php:82
|
519 |
msgid "Help with translation"
|
520 |
-
msgstr ""
|
521 |
|
522 |
-
#: admin/page.php:13
|
523 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
524 |
-
msgstr ""
|
525 |
|
526 |
-
#: admin/schedule-form-excludes.php:19
|
527 |
msgid "Preview"
|
528 |
-
msgstr ""
|
529 |
|
530 |
-
#: admin/schedule-form-excludes.php:29
|
531 |
msgid "Exclude Rules"
|
532 |
-
msgstr ""
|
533 |
|
534 |
-
#: admin/schedule-form-excludes.php:52
|
535 |
msgid "Remove"
|
536 |
-
msgstr ""
|
537 |
|
538 |
-
#: admin/schedule-form-excludes.php:71
|
539 |
msgid "Excluded"
|
540 |
-
msgstr ""
|
541 |
|
542 |
-
#: admin/schedule-form-excludes.php:75
|
543 |
msgid "Included"
|
544 |
-
msgstr ""
|
545 |
|
546 |
-
#: admin/schedule-form-excludes.php:79
|
547 |
msgid "Unreadable"
|
548 |
-
msgstr ""
|
549 |
|
550 |
-
#: admin/schedule-form-excludes.php:107
|
551 |
msgid "Unreadable files can't be backed up"
|
552 |
-
msgstr ""
|
553 |
|
554 |
-
#: admin/schedule-form-excludes.php:113
|
555 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
556 |
-
msgstr ""
|
557 |
|
558 |
-
#: admin/schedule-form.php:11
|
559 |
msgid "Backup"
|
560 |
-
msgstr ""
|
561 |
|
562 |
-
#: admin/schedule-form.php:14
|
563 |
msgid "Both Database & files"
|
564 |
-
msgstr ""
|
565 |
|
566 |
-
#: admin/schedule-form.php:15
|
567 |
msgid "Files only"
|
568 |
-
msgstr ""
|
569 |
|
570 |
-
#: admin/schedule-form.php:16
|
571 |
msgid "Database only"
|
572 |
-
msgstr ""
|
573 |
|
574 |
-
#: functions/interface.php:
|
575 |
msgid "Files"
|
576 |
-
msgstr ""
|
577 |
|
578 |
-
#: admin/schedule-form-excludes.php:7
|
579 |
msgid "Manage Excludes"
|
580 |
-
msgstr ""
|
581 |
|
582 |
-
#: admin/schedule-form.php:23
|
583 |
msgid "Schedule"
|
584 |
-
msgstr ""
|
585 |
|
586 |
-
#: plugin.php:
|
587 |
msgid "Update"
|
588 |
-
msgstr ""
|
589 |
|
590 |
-
#: admin/schedule.php:19
|
591 |
msgid "hourly at %s minutes past the hour"
|
592 |
-
msgstr ""
|
593 |
|
594 |
-
#: functions/interface.php:
|
595 |
msgid "Run now"
|
596 |
-
msgstr ""
|
597 |
|
598 |
-
#: functions/interface.php:28 functions/interface.php:
|
599 |
msgid "Delete"
|
600 |
-
msgstr ""
|
601 |
|
602 |
-
#: plugin.php:
|
603 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
604 |
-
msgstr ""
|
605 |
|
606 |
-
#: classes/email.php:137
|
607 |
msgid "Backup of %s"
|
608 |
-
msgstr ""
|
609 |
|
610 |
-
#: functions/core.php:
|
611 |
msgid "This %s file ensures that other people cannot download your backup files."
|
612 |
-
msgstr ""
|
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 |
"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 al supporto"
|
44 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Se trovi BackUpWordPress utile, per favore %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Se hai bisogno di aiuto controlla le FAQ cliccando su \"Aiuto\" nell'angolo in alto a destra di questa pagina."
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "BackUpWordPress potrebbe non funzionare quando php è in esecuzione con %s "
|
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 "%1$s è in esecuzione in %2$s, si prega di contattare il tuo host e chiedere di disattivarlo. BackUpWordPress potrebbe non funzionare correttamente mentre %3$s è attivo."
|
100 |
|
101 |
+
#: ../admin/constants.php:29
|
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 |
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
msgid "default"
|
139 |
msgstr "default"
|
140 |
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
msgid "defined"
|
143 |
msgstr "definito"
|
144 |
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
msgid "Manual Only"
|
147 |
msgstr "Solo manuale"
|
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 "Il numero di backup precedenti da memorizzare sul server. Oltre questo limite i backup precedenti verranno automaticamente eliminati."
|
152 |
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
msgid "this shouldn't take long…"
|
155 |
msgstr "questo non dovrebbe impiegare troppo tempo"
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
159 |
msgstr "calcolando le dimensioni del sito"
|
160 |
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
msgid "The next backup will be on %1$s at %2$s"
|
163 |
msgstr "Il prossimo backup sarà da %1$s a %2$s"
|
164 |
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
msgid "every 12 hours at %1$s & %2$s"
|
167 |
msgstr "ogni 12 ore dalle %1$s & %2$s"
|
168 |
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
msgid "weekly on %1$s at %2$s"
|
171 |
+
msgstr "ogni settimana da %1$s alle %2$s"
|
172 |
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
msgid "fortnightly on %1$s at %2$s"
|
175 |
msgstr "ogni 15 giorni da %1$s a %2$s"
|
176 |
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
msgid "on the %1$s of each month at %2$s"
|
179 |
msgstr "da %1$s di ogni mese a %2$s"
|
180 |
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
msgid "manually"
|
183 |
msgstr "manualmente"
|
184 |
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
msgid "this server"
|
187 |
msgstr "questo server"
|
188 |
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
msgid "store the only the last backup on %s"
|
191 |
msgstr "memorizzare solamente l'ultimo backup su %s"
|
192 |
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
msgid "don't store any backups on %s"
|
195 |
msgstr "non memorizzare alcun backup su %s"
|
196 |
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
msgid "store only the last %1$s backups on %2$s"
|
199 |
msgstr "memorizza solo gli ultimi %1$s backup su %2$s"
|
200 |
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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 (< 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 |
"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 |
|
251 |
+
#: ../classes/wp-cli.php:19
|
252 |
msgid "Backup: Dumping database..."
|
253 |
msgstr "Backup: Dumping database..."
|
254 |
|
255 |
+
#: ../classes/wp-cli.php:23
|
256 |
msgid "Backup: Zipping everything up..."
|
257 |
msgstr "Backup: zippando..."
|
258 |
|
259 |
+
#: ../classes/wp-cli.php:38
|
260 |
msgid "Invalid backup path"
|
261 |
msgstr "Cartella backup non valida"
|
262 |
|
263 |
+
#: ../classes/wp-cli.php:43
|
264 |
msgid "Invalid root path"
|
265 |
msgstr "Percorso non valido"
|
266 |
|
267 |
+
#: ../classes/wp-cli.php:68
|
268 |
msgid "Backup Complete: "
|
269 |
msgstr "Backup completo:"
|
270 |
|
271 |
+
#: ../classes/wp-cli.php:71
|
272 |
msgid "Backup Failed"
|
273 |
msgstr "Backup fallito"
|
274 |
|
275 |
+
#: ../functions/core.php:189
|
276 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
277 |
msgstr "Per impostazione predefinita BackUpWordPress esegue un backup giornaliero del database e un backup settimanale del database e dei file. È possibile modificare queste pianificazioni."
|
278 |
|
279 |
+
#: ../functions/interface.php:229
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgid "Legacy"
|
281 |
msgstr "Legacy"
|
282 |
|
283 |
+
#: ../functions/interface.php:62
|
|
|
|
|
|
|
|
|
284 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
285 |
msgstr "La tua directory di backup non è scrivibile, esegui %1$s o %2$s o imposta le autorizzazioni."
|
286 |
|
287 |
+
#: ../functions/interface.php:50
|
288 |
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."
|
289 |
msgstr "La directory di backup non può essere creato perché la directory %1$s non èscrivibile, esegui %2$s o %3$s o crea la cartella."
|
290 |
|
291 |
+
#: ../functions/core.php:189
|
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 |
|
307 |
+
#: ../admin/schedule.php:4
|
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 |
|
315 |
+
#: ../admin/schedule.php:19
|
316 |
msgid "hourly on the hour"
|
317 |
msgstr "ogni ora"
|
318 |
|
319 |
+
#: ../admin/schedule.php:25
|
320 |
msgid "daily at %s"
|
321 |
msgstr "ogni giorno alle %s"
|
322 |
|
323 |
+
#: ../admin/schedule-form.php:41
|
324 |
msgid "Number of backups to store on this server"
|
325 |
msgstr "Numero di backup da memorizzare su questo server"
|
326 |
|
327 |
+
#: ../admin/schedule-form.php:7
|
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 |
|
335 |
+
#: ../admin/menu.php:69
|
336 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
337 |
+
msgstr "Le seguenti informazioni sono per la versione %1$s. Visualizza il file %2$s per un aiuto specifico sulla versione %3$s."
|
338 |
|
339 |
+
#: ../admin/constants.php:26
|
340 |
msgid "The root directory that is backed up. Defaults to %s."
|
341 |
+
msgstr "La directory principale che è stata salvata. Il valore predefinito è %s."
|
342 |
|
343 |
+
#: ../admin/constants.php:23
|
344 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
345 |
+
msgstr "La capacità da utilizzare quando si richiama %1$s. Il valore predefinito è %2$s."
|
346 |
|
347 |
+
#: ../admin/constants.php:14
|
348 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
349 |
+
msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per comprimere i tuoi %2$s e il tuo %3$s se disponibile."
|
350 |
|
351 |
+
#: ../plugin.php:77
|
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 |
|
359 |
+
#: ../admin/constants.php:11
|
360 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
361 |
+
msgstr "Il percorso del tuo %1$s eseguibile. Sarà utilizzato per la parte del %2$s del backup, se disponibile."
|
362 |
|
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 |
|
370 |
+
#: ../admin/constants.php:3
|
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 |
|
378 |
+
#: ../functions/interface.php:72
|
379 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
380 |
msgstr "http://php.net/manual/en/features.safe-mode.php"
|
381 |
|
382 |
+
#: ../functions/interface.php:72
|
383 |
msgid "Safe Mode"
|
384 |
msgstr "Modalità provvisoria"
|
385 |
|
386 |
+
#: ../functions/interface.php:82
|
387 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
388 |
msgstr "La tua directory personalizzata di backup %1$s non esiste e non può essere creata, i tuoi backup verranno salvati in % 2$s"
|
389 |
|
390 |
+
#: ../functions/interface.php:92
|
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 |
|
406 |
+
#: ../functions/interface.php:27
|
407 |
msgid "Download"
|
408 |
msgstr "Scarica"
|
409 |
|
410 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
411 |
msgid "BackUpWordPress is almost ready."
|
412 |
msgstr "BackUpWordPress è quasi pronto"
|
413 |
|
414 |
+
#: ../functions/interface.php:102
|
415 |
msgid "BackUpWordPress detected issues with your last backup."
|
416 |
msgstr "BackUpWordPress ha rilevato problemi con l'ultimo backup."
|
417 |
|
418 |
+
#: ../functions/interface.php:218
|
419 |
msgid "Database and Files"
|
420 |
msgstr "Database e files"
|
421 |
|
422 |
+
#: ../functions/interface.php:224
|
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 |
|
460 |
+
#: ../admin/backups.php:13
|
461 |
msgid "add schedule"
|
462 |
msgstr "aggiungi pianificazione"
|
463 |
|
464 |
+
#: ../admin/backups.php:37
|
465 |
msgid "Size"
|
466 |
msgstr "Dimensione"
|
467 |
|
468 |
+
#: ../admin/backups.php:38
|
469 |
msgid "Type"
|
470 |
msgstr "Tipo"
|
471 |
|
472 |
+
#: ../admin/backups.php:39
|
473 |
msgid "Actions"
|
474 |
msgstr "Azioni"
|
475 |
|
476 |
+
#: ../admin/backups.php:64
|
477 |
msgid "This is where your backups will appear once you have one."
|
478 |
msgstr "Questo è dove il backup apparirà una volta che ne hai uno."
|
479 |
|
480 |
+
#: ../admin/constants.php:3
|
481 |
msgid "The Codex can help"
|
482 |
+
msgstr "Leggere il Codex può aiutare."
|
483 |
|
484 |
+
#: ../admin/constants.php:8
|
485 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
486 |
+
msgstr "Il percorso della cartella dove vuoi memorizzare i file di backup. Il valore predefinito è %s."
|
487 |
|
488 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
489 |
msgid "database"
|
490 |
+
msgstr "database"
|
491 |
|
492 |
+
#: ../admin/constants.php:14
|
493 |
msgid "files"
|
494 |
+
msgstr "files"
|
495 |
|
496 |
+
#: ../admin/constants.php:17
|
497 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
498 |
+
msgstr "Tento di inviare una copia di backup via email. Il valore deve essere l'indirizzo e-mail dove inviare il backup. Il valore predefinito è %s."
|
499 |
|
500 |
+
#: ../admin/constants.php:20
|
501 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
502 |
+
msgstr "Elenca file o directory da escludere separate da virgole, la directory di backup viene automaticamente esclusa."
|
503 |
|
504 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
505 |
msgid "Manage Backups"
|
506 |
+
msgstr "Gestione dei Backups"
|
507 |
|
508 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
509 |
msgid "Backups"
|
510 |
+
msgstr "Backups"
|
511 |
|
512 |
+
#: ../admin/menu.php:69
|
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 |
|
536 |
+
#: ../admin/page.php:13
|
537 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
538 |
+
msgstr "È necessario risolvere i problemi descritti sopra prima che BackUpWordPress possa iniziare."
|
539 |
|
540 |
+
#: ../admin/schedule-form-excludes.php:19
|
541 |
msgid "Preview"
|
542 |
+
msgstr "Anteprima"
|
543 |
|
544 |
+
#: ../admin/schedule-form-excludes.php:29
|
545 |
msgid "Exclude Rules"
|
546 |
+
msgstr "Escludi regole"
|
547 |
|
548 |
+
#: ../admin/schedule-form-excludes.php:52
|
549 |
msgid "Remove"
|
550 |
+
msgstr "Rimuovi"
|
551 |
|
552 |
+
#: ../admin/schedule-form-excludes.php:71
|
553 |
msgid "Excluded"
|
554 |
+
msgstr "Escluso"
|
555 |
|
556 |
+
#: ../admin/schedule-form-excludes.php:75
|
557 |
msgid "Included"
|
558 |
+
msgstr "Incluso"
|
559 |
|
560 |
+
#: ../admin/schedule-form-excludes.php:79
|
561 |
msgid "Unreadable"
|
562 |
+
msgstr "Illeggibile"
|
563 |
|
564 |
+
#: ../admin/schedule-form-excludes.php:107
|
565 |
msgid "Unreadable files can't be backed up"
|
566 |
+
msgstr "Files illeggibili che non possono essere salvati"
|
567 |
|
568 |
+
#: ../admin/schedule-form-excludes.php:113
|
569 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
570 |
+
msgstr "Il tuo sito è %s. I backup verranno compressi per renderli meno ingombranti."
|
571 |
|
572 |
+
#: ../admin/schedule-form.php:11
|
573 |
msgid "Backup"
|
574 |
+
msgstr "Backup"
|
575 |
|
576 |
+
#: ../admin/schedule-form.php:14
|
577 |
msgid "Both Database & files"
|
578 |
+
msgstr "Database e files insieme"
|
579 |
|
580 |
+
#: ../admin/schedule-form.php:15
|
581 |
msgid "Files only"
|
582 |
+
msgstr "Solo files"
|
583 |
|
584 |
+
#: ../admin/schedule-form.php:16
|
585 |
msgid "Database only"
|
586 |
+
msgstr "Solo database"
|
587 |
|
588 |
+
#: ../functions/interface.php:221
|
589 |
msgid "Files"
|
590 |
+
msgstr "Files"
|
591 |
|
592 |
+
#: ../admin/schedule-form-excludes.php:7
|
593 |
msgid "Manage Excludes"
|
594 |
+
msgstr "Gestione esclusioni"
|
595 |
|
596 |
+
#: ../admin/schedule-form.php:23
|
597 |
msgid "Schedule"
|
598 |
+
msgstr "Pianificazione"
|
599 |
|
600 |
+
#: ../plugin.php:142 ../admin/schedule-form.php:54
|
601 |
msgid "Update"
|
602 |
+
msgstr "Aggiorna"
|
603 |
|
604 |
+
#: ../admin/schedule.php:19
|
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 |
|
616 |
+
#: ../plugin.php:66
|
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 |
|
624 |
+
#: ../functions/core.php:288
|
625 |
msgid "This %s file ensures that other people cannot download your backup files."
|
626 |
+
msgstr "Questo %s file assicura che non è possibile scaricare i file di backup."
|
languages/hmbkp-lt_LT.mo
ADDED
Binary file
|
languages/hmbkp-lt_LT.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Lithuanian
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-lv_LV.mo
ADDED
Binary file
|
languages/hmbkp-lv_LV.po
ADDED
@@ -0,0 +1,628 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Latvian
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
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 "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 |
+
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
+
msgid "default"
|
139 |
+
msgstr "noklusētais"
|
140 |
+
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
+
msgid "defined"
|
143 |
+
msgstr "noteiktais"
|
144 |
+
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
+
msgid "Manual Only"
|
147 |
+
msgstr "Tikai manuāli"
|
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 "Skaits, cik rezerves kopijas tiks glabātas uz servera. Pārsniedzot šo skaitli, vecākās rezerves kopijas tiks dzēstas."
|
152 |
+
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
+
msgid "this shouldn't take long…"
|
155 |
+
msgstr "tam nevajadzētu aizņemt pārāk daudz laika…"
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
159 |
+
msgstr "mēram Jūsu mājas lapas lielumu…"
|
160 |
+
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
+
msgid "The next backup will be on %1$s at %2$s"
|
163 |
+
msgstr "Nākamā rezerves kopija tiks veidota %1$s pulksten %2$s"
|
164 |
+
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
+
msgid "every 12 hours at %1$s & %2$s"
|
167 |
+
msgstr "katras 12 stundas pulksten %1$s un %2$s"
|
168 |
+
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
+
msgid "weekly on %1$s at %2$s"
|
171 |
+
msgstr "katru nedēļu %1$s pulksten %2$s"
|
172 |
+
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
+
msgid "fortnightly on %1$s at %2$s"
|
175 |
+
msgstr "ik pa divām nedēļām %1$s pulksten %2$s"
|
176 |
+
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
+
msgid "on the %1$s of each month at %2$s"
|
179 |
+
msgstr "katra mēneša %1$s datumā pulksten %2$s"
|
180 |
+
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
+
msgid "manually"
|
183 |
+
msgstr "manuāli"
|
184 |
+
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
+
msgid "this server"
|
187 |
+
msgstr "serveris"
|
188 |
+
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
+
msgid "store the only the last backup on %s"
|
191 |
+
msgstr "saglabāt tikai pēdējo rezerves kopiju %s"
|
192 |
+
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
+
msgid "don't store any backups on %s"
|
195 |
+
msgstr "nesaglabāt nevienu rezerves kopiju %s"
|
196 |
+
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
+
msgid "store only the last %1$s backups on %2$s"
|
199 |
+
msgstr "saglabāt tikai pēdējo %1$s rezerves kopiju %2$s"
|
200 |
+
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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 (< 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"
|
225 |
+
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"
|
245 |
+
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 |
+
|
253 |
+
#: ../classes/wp-cli.php:19
|
254 |
+
msgid "Backup: Dumping database..."
|
255 |
+
msgstr "Veido rezerves kopiju datubāzei"
|
256 |
+
|
257 |
+
#: ../classes/wp-cli.php:23
|
258 |
+
msgid "Backup: Zipping everything up..."
|
259 |
+
msgstr "Veidojam zip arhīvu… "
|
260 |
+
|
261 |
+
#: ../classes/wp-cli.php:38
|
262 |
+
msgid "Invalid backup path"
|
263 |
+
msgstr "Nepareizs rezerves kopijas formāts"
|
264 |
+
|
265 |
+
#: ../classes/wp-cli.php:43
|
266 |
+
msgid "Invalid root path"
|
267 |
+
msgstr "Invalid root path"
|
268 |
+
|
269 |
+
#: ../classes/wp-cli.php:68
|
270 |
+
msgid "Backup Complete: "
|
271 |
+
msgstr "1 rezerves kopija izveidot"
|
272 |
+
|
273 |
+
#: ../classes/wp-cli.php:71
|
274 |
+
msgid "Backup Failed"
|
275 |
+
msgstr "Kļūda veidojot rezerves kopiju"
|
276 |
+
|
277 |
+
#: ../functions/core.php:189
|
278 |
+
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
279 |
+
msgstr "BackUpWordPress pēc noklusējuma rezerves kopijas datubāzei veido katru dienu un katru nedēļu tas veido rezerves kopiju datubāzei un failiem. Zemāk Jūs varat mainīt šo grafiku."
|
280 |
+
|
281 |
+
#: ../functions/interface.php:229
|
282 |
+
msgid "Legacy"
|
283 |
+
msgstr "Legacy"
|
284 |
+
|
285 |
+
#: ../functions/interface.php:62
|
286 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
287 |
+
msgstr "Izvēlētajai mapei rezerves kopiju saglabāšanai nav rakstīšanas tiesības. Palaidiet %1$s vai %2$s un uzstādiet nepieciešamās rakstīšanas tiesības."
|
288 |
+
|
289 |
+
#: ../functions/interface.php:50
|
290 |
+
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."
|
291 |
+
msgstr "Nepieciešamā mape netika izveidota, jo mapei %1$s nav nepieciešamās rakstīšanas tiesības. Palaidiet %2$s vai %3$s, vai izveidojiet šo mapi pats."
|
292 |
+
|
293 |
+
#: ../functions/core.php:189
|
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 |
+
|
309 |
+
#: ../admin/schedule.php:4
|
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 |
+
|
317 |
+
#: ../admin/schedule.php:19
|
318 |
+
msgid "hourly on the hour"
|
319 |
+
msgstr "katru stundu"
|
320 |
+
|
321 |
+
#: ../admin/schedule.php:25
|
322 |
+
msgid "daily at %s"
|
323 |
+
msgstr "katru dienu pulksten %s"
|
324 |
+
|
325 |
+
#: ../admin/schedule-form.php:41
|
326 |
+
msgid "Number of backups to store on this server"
|
327 |
+
msgstr "Skaits, cik rezerves kopijas tiks glabātas uz servera."
|
328 |
+
|
329 |
+
#: ../admin/schedule-form.php:7
|
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 |
+
|
337 |
+
#: ../admin/menu.php:69
|
338 |
+
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
339 |
+
msgstr "Šī informācija attiecas uz versiju %1$s. Apskaties failu %2$s, lai iegūtu informāciju kas attiecas uz versiju %3$s."
|
340 |
+
|
341 |
+
#: ../admin/constants.php:26
|
342 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
343 |
+
msgstr "Galvenā mape, kura tikai izveidota rezerves kopija. Pēc noklusējuma: %s"
|
344 |
+
|
345 |
+
#: ../admin/constants.php:23
|
346 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
347 |
+
msgstr "The capability to use when calling %1$s. Defaults to %2$s."
|
348 |
+
|
349 |
+
#: ../admin/constants.php:14
|
350 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
351 |
+
msgstr "Tiks izmantos %1$s. Tas tiks izmantots lai arhivētu %2$s un %3$s ja tie būs pieejami."
|
352 |
+
|
353 |
+
#: ../plugin.php:77
|
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 |
+
|
361 |
+
#: ../admin/constants.php:11
|
362 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
363 |
+
msgstr "Tiks izmantots %1$s. Mēs izmantosim %2$s, lai veidotu rezerves kopiju, ja tas būs pieejams."
|
364 |
+
|
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 |
+
|
372 |
+
#: ../admin/constants.php:3
|
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 |
+
|
380 |
+
#: ../functions/interface.php:72
|
381 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
382 |
+
msgstr "http://php.net/manual/en/features.safe-mode.php"
|
383 |
+
|
384 |
+
#: ../functions/interface.php:72
|
385 |
+
msgid "Safe Mode"
|
386 |
+
msgstr "Drošais režīms"
|
387 |
+
|
388 |
+
#: ../functions/interface.php:82
|
389 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
390 |
+
msgstr "Jūsu izvēlētā mape %1$s neeksistē, tāpēc rezerves kopija tika saglabāta mapē %2$s"
|
391 |
+
|
392 |
+
#: ../functions/interface.php:92
|
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 |
+
|
408 |
+
#: ../functions/interface.php:27
|
409 |
+
msgid "Download"
|
410 |
+
msgstr "Lejupielādēt"
|
411 |
+
|
412 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
413 |
+
msgid "BackUpWordPress is almost ready."
|
414 |
+
msgstr "BackUpWordPress ir gandrīz gatavs."
|
415 |
+
|
416 |
+
#: ../functions/interface.php:102
|
417 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
418 |
+
msgstr "BackUpWordPress konstatēja problēmas ar Jūsu janāko rezerves kopiju."
|
419 |
+
|
420 |
+
#: ../functions/interface.php:218
|
421 |
+
msgid "Database and Files"
|
422 |
+
msgstr "Datubāzi un failus"
|
423 |
+
|
424 |
+
#: ../functions/interface.php:224
|
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 |
+
|
462 |
+
#: ../admin/backups.php:13
|
463 |
+
msgid "add schedule"
|
464 |
+
msgstr "Pievienot grafiku"
|
465 |
+
|
466 |
+
#: ../admin/backups.php:37
|
467 |
+
msgid "Size"
|
468 |
+
msgstr "Izmērs"
|
469 |
+
|
470 |
+
#: ../admin/backups.php:38
|
471 |
+
msgid "Type"
|
472 |
+
msgstr "Veids"
|
473 |
+
|
474 |
+
#: ../admin/backups.php:39
|
475 |
+
msgid "Actions"
|
476 |
+
msgstr "Darbības"
|
477 |
+
|
478 |
+
#: ../admin/backups.php:64
|
479 |
+
msgid "This is where your backups will appear once you have one."
|
480 |
+
msgstr "Šeit parādīsies izveidotās rezerves kopijas"
|
481 |
+
|
482 |
+
#: ../admin/constants.php:3
|
483 |
+
msgid "The Codex can help"
|
484 |
+
msgstr "Codex var palīdzēt"
|
485 |
+
|
486 |
+
#: ../admin/constants.php:8
|
487 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
488 |
+
msgstr "Vieta kurā tiks glabātas Jūsu rezerves kopijas. Pēc noklusējuma: %s"
|
489 |
+
|
490 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
491 |
+
msgid "database"
|
492 |
+
msgstr "datubāze"
|
493 |
+
|
494 |
+
#: ../admin/constants.php:14
|
495 |
+
msgid "files"
|
496 |
+
msgstr "faili"
|
497 |
+
|
498 |
+
#: ../admin/constants.php:17
|
499 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
500 |
+
msgstr "Rezerves kopiju var nosūtīt uz epastu, tāpēc varat norādīt epastu uz kuru to sūtīt. Pēc noklusējuma: %s."
|
501 |
+
|
502 |
+
#: ../admin/constants.php:20
|
503 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
504 |
+
msgstr "Ar komatiem atdalīts saraksts ar mapēm, kuras netiks iekļautas rezerves kopijā. "
|
505 |
+
|
506 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
507 |
+
msgid "Manage Backups"
|
508 |
+
msgstr "Pārvaldīt Rezerves Kopijas"
|
509 |
+
|
510 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
511 |
+
msgid "Backups"
|
512 |
+
msgstr "Rezerves kopijas"
|
513 |
+
|
514 |
+
#: ../admin/menu.php:69
|
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 |
+
|
538 |
+
#: ../admin/page.php:13
|
539 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
540 |
+
msgstr "Jums nepieciešams salabot augstāk minētās problēmas, lai BackUpWordPress varētu sākt strādāt."
|
541 |
+
|
542 |
+
#: ../admin/schedule-form-excludes.php:19
|
543 |
+
msgid "Preview"
|
544 |
+
msgstr "Priekšskatījums"
|
545 |
+
|
546 |
+
#: ../admin/schedule-form-excludes.php:29
|
547 |
+
msgid "Exclude Rules"
|
548 |
+
msgstr "Izņēmumi"
|
549 |
+
|
550 |
+
#: ../admin/schedule-form-excludes.php:52
|
551 |
+
msgid "Remove"
|
552 |
+
msgstr "Izdzēst"
|
553 |
+
|
554 |
+
#: ../admin/schedule-form-excludes.php:71
|
555 |
+
msgid "Excluded"
|
556 |
+
msgstr "Nav iekļauts "
|
557 |
+
|
558 |
+
#: ../admin/schedule-form-excludes.php:75
|
559 |
+
msgid "Included"
|
560 |
+
msgstr "Iekļauts"
|
561 |
+
|
562 |
+
#: ../admin/schedule-form-excludes.php:79
|
563 |
+
msgid "Unreadable"
|
564 |
+
msgstr "Nenolasāms"
|
565 |
+
|
566 |
+
#: ../admin/schedule-form-excludes.php:107
|
567 |
+
msgid "Unreadable files can't be backed up"
|
568 |
+
msgstr "Failiem kurus nevar atvērt nav iespējams izveidot rezerves kopijas"
|
569 |
+
|
570 |
+
#: ../admin/schedule-form-excludes.php:113
|
571 |
+
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
572 |
+
msgstr "Jūsu mājas lapa aizņem %s. Rezerves kopija tiks saspiest, lai samazinātu tās izmēru."
|
573 |
+
|
574 |
+
#: ../admin/schedule-form.php:11
|
575 |
+
msgid "Backup"
|
576 |
+
msgstr "Ko saglabāt"
|
577 |
+
|
578 |
+
#: ../admin/schedule-form.php:14
|
579 |
+
msgid "Both Database & files"
|
580 |
+
msgstr "Gan datubāzi, gan failus"
|
581 |
+
|
582 |
+
#: ../admin/schedule-form.php:15
|
583 |
+
msgid "Files only"
|
584 |
+
msgstr "Tikai failus"
|
585 |
+
|
586 |
+
#: ../admin/schedule-form.php:16
|
587 |
+
msgid "Database only"
|
588 |
+
msgstr "Tikai datubāzi"
|
589 |
+
|
590 |
+
#: ../functions/interface.php:221
|
591 |
+
msgid "Files"
|
592 |
+
msgstr "Faili"
|
593 |
+
|
594 |
+
#: ../admin/schedule-form-excludes.php:7
|
595 |
+
msgid "Manage Excludes"
|
596 |
+
msgstr "Pārvaldīt izņēmumus"
|
597 |
+
|
598 |
+
#: ../admin/schedule-form.php:23
|
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 |
+
|
606 |
+
#: ../admin/schedule.php:19
|
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 |
+
|
618 |
+
#: ../plugin.php:66
|
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 |
+
|
626 |
+
#: ../functions/core.php:288
|
627 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
628 |
+
msgstr ""
|
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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,601 +10,615 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "Email to Support"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#: admin/page.php:17
|
18 |
msgid "If your finding BackUpWordPress useful, please %s."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin/schedule-form-excludes.php:13
|
22 |
msgid "New Exclude Rule[s]"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin/actions.php:
|
26 |
msgid "Your BackUp Failed"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/actions.php:
|
30 |
msgid "Here's the response from the server:"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/page.php:19
|
34 |
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."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/page.php:17
|
38 |
msgid "rate it on the plugin directory"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: classes/schedule.php:
|
42 |
msgid "Starting Backup"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr "De tijd waarop je schema zou moeten draaien, Standaard is dat %s"
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr "Weet je zeker dat je dit schema wilt verwijderen? Alle backups van dit schema zullen ook worden verwijderd."
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr "'Cancel\"om terug te gaan, 'OK' om te verwijderen."
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr "Weet je zeker dat je deze backup wilt verwijderen?"
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr "Weet je zeker dat je deze uitzonderingsregel wilt verwijderen?"
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: classes/email.php:142 classes/email.php:151
|
200 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: classes/email.php:142
|
204 |
msgid "The backup file should be attached to this email."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: classes/email.php:142 classes/email.php:151
|
208 |
msgid "You can download the backup file by clicking the link below:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/email.php:142 classes/email.php:151
|
212 |
msgid ""
|
213 |
"Kind Regards,\n"
|
214 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: classes/email.php:151
|
218 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: classes/wp-cli.php:19
|
222 |
msgid "Backup: Dumping database..."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: classes/wp-cli.php:23
|
226 |
msgid "Backup: Zipping everything up..."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: classes/wp-cli.php:38
|
230 |
msgid "Invalid backup path"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: classes/wp-cli.php:43
|
234 |
msgid "Invalid root path"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: classes/wp-cli.php:68
|
238 |
msgid "Backup Complete: "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: classes/wp-cli.php:71
|
242 |
msgid "Backup Failed"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: functions/core.php:
|
246 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: functions/interface.php:
|
250 |
-
msgid "BackUpWordPress failed to perform the backup."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: functions/interface.php:111
|
254 |
-
msgid "You have likely hit a memory limit."
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: functions/interface.php:238
|
258 |
msgid "Legacy"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "The mysqldump file was not created"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: functions/interface.php:62
|
266 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: functions/interface.php:50
|
270 |
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."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: functions/core.php:
|
274 |
msgid "BackUpWordPress has setup your default schedules."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: classes/email.php:127
|
278 |
msgid "Backup of %s Failed"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: classes/email.php:50
|
282 |
msgid "Send an email notification to %s"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: classes/email.php:72
|
286 |
msgid "%s isn't a valid email"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin/schedule.php:4
|
290 |
msgid "Backups will be compressed and should be smaller than this."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: classes/email.php:19
|
294 |
msgid "Email notification"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/schedule.php:19
|
298 |
msgid "hourly on the hour"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/schedule.php:25
|
302 |
msgid "daily at %s"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/schedule-form.php:41
|
306 |
msgid "Number of backups to store on this server"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin/schedule-form.php:7
|
310 |
msgid "Schedule Settings"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin/actions.php:
|
314 |
msgid "Close"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin/menu.php:69
|
318 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/constants.php:26
|
322 |
msgid "The root directory that is backed up. Defaults to %s."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/constants.php:23
|
326 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/constants.php:14
|
330 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: plugin.php:
|
334 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: plugin.php:
|
338 |
msgid "Cancel"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin/constants.php:11
|
342 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
346 |
-
#: admin/constants.php:17 admin/constants.php:20
|
347 |
-
#: admin/constants.php:
|
|
|
348 |
msgid "e.g."
|
349 |
msgstr "bijv."
|
350 |
|
351 |
-
#: admin/constants.php:3
|
352 |
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."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/actions.php:
|
356 |
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."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: functions/interface.php:72
|
360 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: functions/interface.php:72
|
364 |
msgid "Safe Mode"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: functions/interface.php:82
|
368 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: functions/interface.php:92
|
372 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: functions/interface.php:
|
376 |
msgid "cancel"
|
377 |
msgstr "Annuleren"
|
378 |
|
379 |
-
#: functions/interface.php:
|
380 |
msgid "Settings"
|
381 |
msgstr "Instellingen"
|
382 |
|
383 |
-
#: functions/interface.php:
|
384 |
msgid "Excludes"
|
385 |
msgstr "Exclusief"
|
386 |
|
387 |
-
#: functions/interface.php:27
|
388 |
msgid "Download"
|
389 |
msgstr "Download"
|
390 |
|
391 |
-
#: functions/interface.php:50 functions/interface.php:62
|
392 |
msgid "BackUpWordPress is almost ready."
|
393 |
msgstr "BackUpWordPress is bijna klaar."
|
394 |
|
395 |
-
#: functions/interface.php:102
|
396 |
msgid "BackUpWordPress detected issues with your last backup."
|
397 |
msgstr "BackUpWordPress heeft problemen ondervonden met je laatste back-up."
|
398 |
|
399 |
-
#: functions/interface.php:
|
400 |
msgid "Database and Files"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: functions/interface.php:
|
404 |
msgid "Database"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: hm-backup/hm-backup.php:
|
408 |
-
msgid "The backup file was not created"
|
409 |
-
msgstr "Het back-up bestand is niet gemaakt"
|
410 |
-
|
411 |
-
#: hm-backup/hm-backup.php:951
|
412 |
msgid "The following files are unreadable and couldn't be backed up: "
|
413 |
msgstr "De volgende bestanden zijn onleesbaar en konden niet in een back-up worden opgenomen:"
|
414 |
|
415 |
-
#: admin/actions.php:
|
416 |
-
#: functions/interface.php:
|
|
|
417 |
msgid "BackUpWordPress has detected a problem."
|
418 |
msgstr "BackUpWordPress heeft een probleem ondervonden."
|
419 |
|
420 |
-
#: admin/actions.php:
|
421 |
msgid "Backup type cannot be empty"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/actions.php:
|
425 |
msgid "Invalid backup type"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/actions.php:
|
429 |
msgid "Schedule cannot be empty"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/actions.php:
|
433 |
msgid "Invalid schedule"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/actions.php:
|
437 |
msgid "Max backups must be a number"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/actions.php:
|
441 |
msgid "%s didn't match any files."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/backups.php:13
|
445 |
msgid "add schedule"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/backups.php:37
|
449 |
msgid "Size"
|
450 |
msgstr "Grootte"
|
451 |
|
452 |
-
#: admin/backups.php:38
|
453 |
msgid "Type"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/backups.php:39
|
457 |
msgid "Actions"
|
458 |
msgstr "Acties"
|
459 |
|
460 |
-
#: admin/backups.php:
|
461 |
msgid "This is where your backups will appear once you have one."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin/constants.php:3
|
465 |
msgid "The Codex can help"
|
466 |
msgstr "De Codex kan hulp bieden."
|
467 |
|
468 |
-
#: admin/constants.php:8
|
469 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
470 |
msgstr "Het pad naar de map waar je de back up bestanden wilt bewaren, standaard naar %s."
|
471 |
|
472 |
-
#: admin/constants.php:11 admin/constants.php:14
|
473 |
msgid "database"
|
474 |
msgstr "database"
|
475 |
|
476 |
-
#: admin/constants.php:14
|
477 |
msgid "files"
|
478 |
msgstr "bestanden"
|
479 |
|
480 |
-
#: admin/constants.php:17
|
481 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
482 |
msgstr "Poging om een kopie van uw back-ups e-mailen. Waarde moet het e-mailadres om back-ups naar toe te sturen zijn. Standaard naar %s."
|
483 |
|
484 |
-
#: admin/constants.php:20
|
485 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
486 |
msgstr "Een door komma's gescheiden lijst van bestanden of mappen die uitgesloten worden, de backup(s) map is automatisch uitgesloten."
|
487 |
|
488 |
-
#: admin/menu.php:10 admin/page.php:5
|
489 |
msgid "Manage Backups"
|
490 |
msgstr "Beheer back ups"
|
491 |
|
492 |
-
#: admin/menu.php:10 admin/menu.php:34
|
493 |
msgid "Backups"
|
494 |
msgstr "Back ups"
|
495 |
|
496 |
-
#: admin/menu.php:69
|
497 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
498 |
msgstr "Je gebruikt niet de laatste stabiele versie van BackUpWordPress"
|
499 |
|
500 |
-
#: admin/menu.php:75
|
501 |
msgid "FAQ"
|
502 |
msgstr "Veel gestelde vragen"
|
503 |
|
504 |
-
#: admin/constants.php:3 admin/menu.php:76
|
505 |
msgid "Constants"
|
506 |
msgstr "Constanten"
|
507 |
|
508 |
-
#: admin/menu.php:79
|
509 |
msgid "For more information:"
|
510 |
msgstr "Voor meer informatie:"
|
511 |
|
512 |
-
#: admin/menu.php:81
|
513 |
msgid "Support Forums"
|
514 |
msgstr "Ondersteunings forums"
|
515 |
|
516 |
-
#: admin/menu.php:82
|
517 |
msgid "Help with translation"
|
518 |
msgstr "Vertaal hulp"
|
519 |
|
520 |
-
#: admin/page.php:13
|
521 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
522 |
msgstr "Je moet de hierboven beschreven problemen oplossen voordat BackUpWordPress kan beginnen."
|
523 |
|
524 |
-
#: admin/schedule-form-excludes.php:19
|
525 |
msgid "Preview"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/schedule-form-excludes.php:29
|
529 |
msgid "Exclude Rules"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/schedule-form-excludes.php:52
|
533 |
msgid "Remove"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/schedule-form-excludes.php:71
|
537 |
msgid "Excluded"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/schedule-form-excludes.php:75
|
541 |
msgid "Included"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/schedule-form-excludes.php:79
|
545 |
msgid "Unreadable"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/schedule-form-excludes.php:107
|
549 |
msgid "Unreadable files can't be backed up"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/schedule-form-excludes.php:113
|
553 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/schedule-form.php:11
|
557 |
msgid "Backup"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/schedule-form.php:14
|
561 |
msgid "Both Database & files"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/schedule-form.php:15
|
565 |
msgid "Files only"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/schedule-form.php:16
|
569 |
msgid "Database only"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: functions/interface.php:
|
573 |
msgid "Files"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/schedule-form-excludes.php:7
|
577 |
msgid "Manage Excludes"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/schedule-form.php:23
|
581 |
msgid "Schedule"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: plugin.php:
|
585 |
msgid "Update"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/schedule.php:19
|
589 |
msgid "hourly at %s minutes past the hour"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: functions/interface.php:
|
593 |
msgid "Run now"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: functions/interface.php:28 functions/interface.php:
|
597 |
msgid "Delete"
|
598 |
msgstr "Verwijderen"
|
599 |
|
600 |
-
#: plugin.php:
|
601 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
602 |
msgstr "BackUpWordPress vereist PHP versie 5.2.4 of hoger."
|
603 |
|
604 |
-
#: classes/email.php:137
|
605 |
msgid "Backup of %s"
|
606 |
msgstr "Back up van %s"
|
607 |
|
608 |
-
#: functions/core.php:
|
609 |
msgid "This %s file ensures that other people cannot download your backup files."
|
610 |
msgstr ""
|
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 |
"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 "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 |
|
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…"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 "bijv."
|
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 "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 |
|
404 |
+
#: ../functions/interface.php:27
|
405 |
msgid "Download"
|
406 |
msgstr "Download"
|
407 |
|
408 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
409 |
msgid "BackUpWordPress is almost ready."
|
410 |
msgstr "BackUpWordPress is bijna klaar."
|
411 |
|
412 |
+
#: ../functions/interface.php:102
|
413 |
msgid "BackUpWordPress detected issues with your last backup."
|
414 |
msgstr "BackUpWordPress heeft problemen ondervonden met je laatste back-up."
|
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 "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 |
|
458 |
+
#: ../admin/backups.php:13
|
459 |
msgid "add schedule"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../admin/backups.php:37
|
463 |
msgid "Size"
|
464 |
msgstr "Grootte"
|
465 |
|
466 |
+
#: ../admin/backups.php:38
|
467 |
msgid "Type"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../admin/backups.php:39
|
471 |
msgid "Actions"
|
472 |
msgstr "Acties"
|
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 "De Codex kan hulp bieden."
|
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 "Het pad naar de map waar je de back up bestanden wilt bewaren, standaard naar %s."
|
485 |
|
486 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
487 |
msgid "database"
|
488 |
msgstr "database"
|
489 |
|
490 |
+
#: ../admin/constants.php:14
|
491 |
msgid "files"
|
492 |
msgstr "bestanden"
|
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 "Poging om een kopie van uw back-ups e-mailen. Waarde moet het e-mailadres om back-ups naar toe te sturen zijn. Standaard naar %s."
|
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 "Een door komma's gescheiden lijst van bestanden of mappen die uitgesloten worden, de backup(s) map is automatisch uitgesloten."
|
501 |
|
502 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
503 |
msgid "Manage Backups"
|
504 |
msgstr "Beheer back ups"
|
505 |
|
506 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
507 |
msgid "Backups"
|
508 |
msgstr "Back ups"
|
509 |
|
510 |
+
#: ../admin/menu.php:69
|
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 |
|
534 |
+
#: ../admin/page.php:13
|
535 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
536 |
msgstr "Je moet de hierboven beschreven problemen oplossen voordat BackUpWordPress kan beginnen."
|
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 & 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 "Verwijderen"
|
613 |
|
614 |
+
#: ../plugin.php:66
|
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 |
|
622 |
+
#: ../functions/core.php:288
|
623 |
msgid "This %s file ensures that other people cannot download your backup files."
|
624 |
msgstr ""
|
languages/hmbkp-pl_PL.mo
ADDED
Binary file
|
languages/hmbkp-pl_PL.po
ADDED
@@ -0,0 +1,628 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Polish
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
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 "Wyślij e-mail do wsparcia technicznego"
|
44 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Jeśli uważasz, że BackUpWordPress jest pomocne, proszę %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Jeśli potrzebujesz pomocy by uruchomieniu wtyczki, sprawdź FAQ klikając na pomoc w górnym prawym rogu tej strony."
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
+
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
+
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "BackUpWordPress może nie działać jeśli PHP działa z włączonym %s"
|
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 "%1$s działa w %2$s, skontaktuj się ze swoja firmą hostingową i zapytaj ich o wyłączenie tego. BackUpWordPress może niedziałać poprawnie jeśli %3$s jest włączone."
|
100 |
+
|
101 |
+
#: ../admin/constants.php:29
|
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 |
+
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
+
msgid "default"
|
139 |
+
msgstr "domyślnie"
|
140 |
+
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
+
msgid "defined"
|
143 |
+
msgstr "zdefiniowane"
|
144 |
+
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
+
msgid "Manual Only"
|
147 |
+
msgstr "Tylko ręcznie"
|
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 "Liczba poprzednich kopii, które mają być przechowywane na tym serwerze. Po przekroczeniu tej liczby starsze kopie zostaną usunięte automatycznie."
|
152 |
+
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
+
msgid "this shouldn't take long…"
|
155 |
+
msgstr "to nie powinno długo potrwać long…"
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
159 |
+
msgstr "obliczam rozmiar Twojej strony…"
|
160 |
+
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
+
msgid "The next backup will be on %1$s at %2$s"
|
163 |
+
msgstr "Następna kopia zapasowa zostanie wykonana %1$s o godzinie %2$s"
|
164 |
+
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
+
msgid "every 12 hours at %1$s & %2$s"
|
167 |
+
msgstr "co 12 godzin o %1$s oraz %2$s"
|
168 |
+
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
+
msgid "weekly on %1$s at %2$s"
|
171 |
+
msgstr "cotygodniowo w %1$s o %2$s"
|
172 |
+
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
+
msgid "fortnightly on %1$s at %2$s"
|
175 |
+
msgstr "co dwa tygodnie w %1$s o %2$s"
|
176 |
+
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
+
msgid "on the %1$s of each month at %2$s"
|
179 |
+
msgstr "%1$s. każdego miesiąca o %2$s"
|
180 |
+
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
+
msgid "manually"
|
183 |
+
msgstr "ręcznie"
|
184 |
+
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
+
msgid "this server"
|
187 |
+
msgstr "tym serwerze"
|
188 |
+
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
+
msgid "store the only the last backup on %s"
|
191 |
+
msgstr "przechowuj tylko ostatnią kopię zapasową na %s"
|
192 |
+
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
+
msgid "don't store any backups on %s"
|
195 |
+
msgstr "nie przechowuj żadnych kopii na %s"
|
196 |
+
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
+
msgid "store only the last %1$s backups on %2$s"
|
199 |
+
msgstr "przechowuj tylko ostatnie %1$s kopii zapasowych na %2$s"
|
200 |
+
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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 (< 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"
|
225 |
+
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"
|
245 |
+
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 |
+
|
253 |
+
#: ../classes/wp-cli.php:19
|
254 |
+
msgid "Backup: Dumping database..."
|
255 |
+
msgstr "Kopia zapasowa: zrzucam bazę danych..."
|
256 |
+
|
257 |
+
#: ../classes/wp-cli.php:23
|
258 |
+
msgid "Backup: Zipping everything up..."
|
259 |
+
msgstr "Kopia zapasowa: Kompresuję wszystko..."
|
260 |
+
|
261 |
+
#: ../classes/wp-cli.php:38
|
262 |
+
msgid "Invalid backup path"
|
263 |
+
msgstr "Nieprawidłowa ścieżka kopii zapasowej"
|
264 |
+
|
265 |
+
#: ../classes/wp-cli.php:43
|
266 |
+
msgid "Invalid root path"
|
267 |
+
msgstr "Nieprawidłowa ścieżka katalogu głównego"
|
268 |
+
|
269 |
+
#: ../classes/wp-cli.php:68
|
270 |
+
msgid "Backup Complete: "
|
271 |
+
msgstr "Wykonywanie kopii zapasowych zakończone:"
|
272 |
+
|
273 |
+
#: ../classes/wp-cli.php:71
|
274 |
+
msgid "Backup Failed"
|
275 |
+
msgstr "Wykonywanie kopii zapasowych nie powiodło się"
|
276 |
+
|
277 |
+
#: ../functions/core.php:189
|
278 |
+
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
279 |
+
msgstr "Domyślnie BackUpWordPress wykonuje codziennie kopię zapasową bazy danych oraz cotygodniowo kopię bazy danych i plików. Możesz zmienić te harmonogramy."
|
280 |
+
|
281 |
+
#: ../functions/interface.php:229
|
282 |
+
msgid "Legacy"
|
283 |
+
msgstr "Zgodność"
|
284 |
+
|
285 |
+
#: ../functions/interface.php:62
|
286 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
287 |
+
msgstr "Twój katalog kopii zapasowych nie jest zapisywalny, wykonaj polecenie %1$s lub %2$s, albo ustaw uprawnienia własnoręcznie."
|
288 |
+
|
289 |
+
#: ../functions/interface.php:50
|
290 |
+
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."
|
291 |
+
msgstr "Katalog kopii zapasowych nie może zostać utworzony ponieważ katalog %1$s nie jest zapisywalny, wykonaj polecenie %2$s lub %3$s, albo utwórz katalog własnoręcznie."
|
292 |
+
|
293 |
+
#: ../functions/core.php:189
|
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 |
+
|
309 |
+
#: ../admin/schedule.php:4
|
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 |
+
|
317 |
+
#: ../admin/schedule.php:19
|
318 |
+
msgid "hourly on the hour"
|
319 |
+
msgstr "co godzinę o"
|
320 |
+
|
321 |
+
#: ../admin/schedule.php:25
|
322 |
+
msgid "daily at %s"
|
323 |
+
msgstr "codziennie o %s"
|
324 |
+
|
325 |
+
#: ../admin/schedule-form.php:41
|
326 |
+
msgid "Number of backups to store on this server"
|
327 |
+
msgstr "Liczba kopii zapasowych, które mają być przechowywane na tym serwerze. "
|
328 |
+
|
329 |
+
#: ../admin/schedule-form.php:7
|
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 |
+
|
337 |
+
#: ../admin/menu.php:69
|
338 |
+
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
339 |
+
msgstr "Informacje poniżej są dla wersji %1$s. Zobacz plik %2$s dla informacji specyficznych dla wersji %3$s."
|
340 |
+
|
341 |
+
#: ../admin/constants.php:26
|
342 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
343 |
+
msgstr "katalog główny, który jest uwzględniony w kopii zapasowej. Domyślnie to %s."
|
344 |
+
|
345 |
+
#: ../admin/constants.php:23
|
346 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
347 |
+
msgstr "Możliwość użycia przy wywołaniu %1$s. Domyślnie to %2$s."
|
348 |
+
|
349 |
+
#: ../admin/constants.php:14
|
350 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
351 |
+
msgstr "Ścieżka do pliku wykonywalnego %1$s. Będzie używane przy kompresowaniu %2$s oraz %3$s, jeśli jest dostępne."
|
352 |
+
|
353 |
+
#: ../plugin.php:77
|
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 |
+
|
361 |
+
#: ../admin/constants.php:11
|
362 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
363 |
+
msgstr "Ścieżka do pliku wykonywalnego %1$s. Będzie używane przy %2$s kopii zapasowej, jeśli jest dostępne."
|
364 |
+
|
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 |
+
|
372 |
+
#: ../admin/constants.php:3
|
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 |
+
|
380 |
+
#: ../functions/interface.php:72
|
381 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
382 |
+
msgstr "http://php.net/manual/pl/features.safe-mode.php"
|
383 |
+
|
384 |
+
#: ../functions/interface.php:72
|
385 |
+
msgid "Safe Mode"
|
386 |
+
msgstr "Tryb bezpieczny"
|
387 |
+
|
388 |
+
#: ../functions/interface.php:82
|
389 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
390 |
+
msgstr "Twój katalog kopii zapasowych %1$s nie istnieje i nie może zostać utworzony, Twoje kopie zapasowe zostaną zapisane w %2$s."
|
391 |
+
|
392 |
+
#: ../functions/interface.php:92
|
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 |
+
|
408 |
+
#: ../functions/interface.php:27
|
409 |
+
msgid "Download"
|
410 |
+
msgstr "Pobierz"
|
411 |
+
|
412 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
413 |
+
msgid "BackUpWordPress is almost ready."
|
414 |
+
msgstr "BackUpWordPress prawie skończył."
|
415 |
+
|
416 |
+
#: ../functions/interface.php:102
|
417 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
418 |
+
msgstr "BackUpWordPress wykrył problemy z Twoją ostatnią kopią zapasową."
|
419 |
+
|
420 |
+
#: ../functions/interface.php:218
|
421 |
+
msgid "Database and Files"
|
422 |
+
msgstr "Baza danych i pliki"
|
423 |
+
|
424 |
+
#: ../functions/interface.php:224
|
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 |
+
|
462 |
+
#: ../admin/backups.php:13
|
463 |
+
msgid "add schedule"
|
464 |
+
msgstr "dodaj harmonogram"
|
465 |
+
|
466 |
+
#: ../admin/backups.php:37
|
467 |
+
msgid "Size"
|
468 |
+
msgstr "Rozmiar"
|
469 |
+
|
470 |
+
#: ../admin/backups.php:38
|
471 |
+
msgid "Type"
|
472 |
+
msgstr "Typ"
|
473 |
+
|
474 |
+
#: ../admin/backups.php:39
|
475 |
+
msgid "Actions"
|
476 |
+
msgstr "Akcje"
|
477 |
+
|
478 |
+
#: ../admin/backups.php:64
|
479 |
+
msgid "This is where your backups will appear once you have one."
|
480 |
+
msgstr "Tutaj będą pojawiać się kopie zapasowe kiedy jakieś zostaną wykonane."
|
481 |
+
|
482 |
+
#: ../admin/constants.php:3
|
483 |
+
msgid "The Codex can help"
|
484 |
+
msgstr "Codex może pomóc"
|
485 |
+
|
486 |
+
#: ../admin/constants.php:8
|
487 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
488 |
+
msgstr "Ścieżka do folderu w którym chciałbyś trzymać swoje kopie zapasowe, domyślnie to %s."
|
489 |
+
|
490 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
491 |
+
msgid "database"
|
492 |
+
msgstr "baza danych"
|
493 |
+
|
494 |
+
#: ../admin/constants.php:14
|
495 |
+
msgid "files"
|
496 |
+
msgstr "pliki"
|
497 |
+
|
498 |
+
#: ../admin/constants.php:17
|
499 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
500 |
+
msgstr "Spróbuj przesłać e-mailem Twoją kopie zapasowe. Wartość powinna być adresem e-mail, na który zostaną wysłane kopie. Domyślnie to %s."
|
501 |
+
|
502 |
+
#: ../admin/constants.php:20
|
503 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
504 |
+
msgstr "Lista rozdzielana przecinkiem plików lub katalogów, które zostaną wykluczone. Katalog kopii zapasowych jest wykluczony automatycznie."
|
505 |
+
|
506 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
507 |
+
msgid "Manage Backups"
|
508 |
+
msgstr "Zarządzaj kopiami"
|
509 |
+
|
510 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
511 |
+
msgid "Backups"
|
512 |
+
msgstr "Kopie zapasowe"
|
513 |
+
|
514 |
+
#: ../admin/menu.php:69
|
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 |
+
|
538 |
+
#: ../admin/page.php:13
|
539 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
540 |
+
msgstr "Musisz rozwiązać problemy wymienione powyżej nim będzie można uruchomić BackUpWordPress."
|
541 |
+
|
542 |
+
#: ../admin/schedule-form-excludes.php:19
|
543 |
+
msgid "Preview"
|
544 |
+
msgstr "Podgląd"
|
545 |
+
|
546 |
+
#: ../admin/schedule-form-excludes.php:29
|
547 |
+
msgid "Exclude Rules"
|
548 |
+
msgstr "Zasady wykluczeń"
|
549 |
+
|
550 |
+
#: ../admin/schedule-form-excludes.php:52
|
551 |
+
msgid "Remove"
|
552 |
+
msgstr "Usuń"
|
553 |
+
|
554 |
+
#: ../admin/schedule-form-excludes.php:71
|
555 |
+
msgid "Excluded"
|
556 |
+
msgstr "Wykluczone"
|
557 |
+
|
558 |
+
#: ../admin/schedule-form-excludes.php:75
|
559 |
+
msgid "Included"
|
560 |
+
msgstr "Zawarte"
|
561 |
+
|
562 |
+
#: ../admin/schedule-form-excludes.php:79
|
563 |
+
msgid "Unreadable"
|
564 |
+
msgstr "Nieczytelne"
|
565 |
+
|
566 |
+
#: ../admin/schedule-form-excludes.php:107
|
567 |
+
msgid "Unreadable files can't be backed up"
|
568 |
+
msgstr "Pliki, których nie można odczytać, nie mogą być uwzględnione w kopii zapasowej."
|
569 |
+
|
570 |
+
#: ../admin/schedule-form-excludes.php:113
|
571 |
+
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
572 |
+
msgstr "Twoja strona ma rozmiar %s. Kopie zapasowe zostaną skompresowane by zmniejszyć ich rozmiar."
|
573 |
+
|
574 |
+
#: ../admin/schedule-form.php:11
|
575 |
+
msgid "Backup"
|
576 |
+
msgstr "Uwzględnij w kopii"
|
577 |
+
|
578 |
+
#: ../admin/schedule-form.php:14
|
579 |
+
msgid "Both Database & files"
|
580 |
+
msgstr "Bazę danych i pliki"
|
581 |
+
|
582 |
+
#: ../admin/schedule-form.php:15
|
583 |
+
msgid "Files only"
|
584 |
+
msgstr "Tylko pliki"
|
585 |
+
|
586 |
+
#: ../admin/schedule-form.php:16
|
587 |
+
msgid "Database only"
|
588 |
+
msgstr "Tylko bazę danych"
|
589 |
+
|
590 |
+
#: ../functions/interface.php:221
|
591 |
+
msgid "Files"
|
592 |
+
msgstr "Pliki"
|
593 |
+
|
594 |
+
#: ../admin/schedule-form-excludes.php:7
|
595 |
+
msgid "Manage Excludes"
|
596 |
+
msgstr "Zarządzaj wykluczeniami"
|
597 |
+
|
598 |
+
#: ../admin/schedule-form.php:23
|
599 |
+
msgid "Schedule"
|
600 |
+
msgstr "Harmonogram"
|
601 |
+
|
602 |
+
#: ../plugin.php:142 ../admin/schedule-form.php:54
|
603 |
+
msgid "Update"
|
604 |
+
msgstr "Aktualizuj"
|
605 |
+
|
606 |
+
#: ../admin/schedule.php:19
|
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 |
+
|
618 |
+
#: ../plugin.php:66
|
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 |
+
|
626 |
+
#: ../functions/core.php:288
|
627 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
628 |
+
msgstr "Plik %s zapewnia że inny ludzie nie będą mogli pobrać Twoich kopii zapasowych."
|
languages/hmbkp-pt-br.mo
ADDED
Binary file
|
languages/{hmbkp-pt_BR.po → hmbkp-pt-br.po}
RENAMED
@@ -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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,187 +10,215 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
14 |
-
msgid "
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
-
msgid "
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "Starting Backup"
|
43 |
-
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
-
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr "O horário em que seus agendamentos devem ser executados. O padrão é %s."
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr "Você tem certeza de que quer apagar este agendamento? Todos os backups já realizados nesta programação também serão excluídos."
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr "'Cancelar' para voltar, 'OK' para apagar."
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr "Você tem certeza que quer apagar este backup?"
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr "Você tem certeza de que deseja remover esta regra de exclusão?"
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
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?"
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr "A quant. de backups não pode ficar vazia"
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr "A quant. de backups precisa ser maior que 0"
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr "Excluir"
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr "padrão"
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr "definido"
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr "Apenas Manualmente"
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr "O número de versões de backup que serão armazenadas no servidor. Passado este limite, os backups mais antigos serão automaticamente excluídos."
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr "isso não deve demorar muito…"
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr "calculando o tamanho de seu site…"
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr "O próximo backup será em %1$s às %2$s"
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr "a cada 12 horas às %1$s & %2$s"
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
msgstr "semanalmente no(a) %1$s às %2$s"
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr "quinzenalmente no(a) %1$s às %2$s"
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr "no %1$s de cada mês às %2$s"
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr "manualmente"
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
msgstr "neste servidor"
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
msgstr "armazenar apenas o último backup %s"
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr "não armazenar nenhum backup em %s"
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
msgstr "armazenar os últimos %1$s backups %2$s"
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr "Realizar o backup dos %1$s do %2$s %3$s, %4$s. %5$s"
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr "Receba um email de notificação quando um backup for concluído. Se o backup for pequeno o suficiente (< 10mb), então ele será anexado ao email. Separe os emails com uma virgula."
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr "O BackUpWordPress não foi capaz de realizar o backup do seu site %1$s."
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr "Aqui estão os erros que foram encontrados:"
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
msgstr "Se os erros acima parecem tão esquisitos quanto Marcianos, encaminhe este email para %3$s e iremos dar uma olhada"
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
@@ -198,417 +226,403 @@ msgstr ""
|
|
198 |
"Atenciosamente, \n"
|
199 |
"O Apologético Robô Carteiro do BackUpWordPress"
|
200 |
|
201 |
-
#: classes/email.php:142 classes/email.php:151
|
202 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
203 |
msgstr "O BackUpWordPress completou a realização de um backup do seu site %1$s."
|
204 |
|
205 |
-
#: classes/email.php:142
|
206 |
msgid "The backup file should be attached to this email."
|
207 |
msgstr "O arquivo de backup será anexado neste email."
|
208 |
|
209 |
-
#: classes/email.php:142 classes/email.php:151
|
210 |
msgid "You can download the backup file by clicking the link below:"
|
211 |
msgstr "Você pode realizar o download do arquivo de backup clicando no link abaixo:"
|
212 |
|
213 |
-
#: classes/email.php:142 classes/email.php:151
|
214 |
msgid ""
|
215 |
"Kind Regards,\n"
|
216 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
217 |
msgstr ""
|
218 |
"Atenciosamente,\n"
|
219 |
-
"O Feliz Robô
|
220 |
|
221 |
-
#: classes/email.php:151
|
222 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
223 |
msgstr "Infelizmente o arquivo de backup era muito grande para ser anexado nesta mensagem de email."
|
224 |
|
225 |
-
#: classes/wp-cli.php:19
|
226 |
msgid "Backup: Dumping database..."
|
227 |
msgstr "Backup: Realizando o dumping do banco de dados..."
|
228 |
|
229 |
-
#: classes/wp-cli.php:23
|
230 |
msgid "Backup: Zipping everything up..."
|
231 |
msgstr "Backup: Compactando tudo..."
|
232 |
|
233 |
-
#: classes/wp-cli.php:38
|
234 |
msgid "Invalid backup path"
|
235 |
msgstr "Caminho de backup inválido"
|
236 |
|
237 |
-
#: classes/wp-cli.php:43
|
238 |
msgid "Invalid root path"
|
239 |
msgstr "Caminho do diretório raiz inválido"
|
240 |
|
241 |
-
#: classes/wp-cli.php:68
|
242 |
msgid "Backup Complete: "
|
243 |
msgstr "Backup Concluído: "
|
244 |
|
245 |
-
#: classes/wp-cli.php:71
|
246 |
msgid "Backup Failed"
|
247 |
msgstr "Falha no Backup"
|
248 |
|
249 |
-
#: functions/core.php:
|
250 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
251 |
msgstr "Por padrão, o BackUpWordPress realiza um backup diário de seu banco de dados e um backup semanal de seu banco de dados & arquivos. Você pode modificar esses agendamentos."
|
252 |
|
253 |
-
#: functions/interface.php:
|
254 |
-
msgid "BackUpWordPress failed to perform the backup."
|
255 |
-
msgstr "O BackUpWordPress não conseguiu realizar o backup."
|
256 |
-
|
257 |
-
#: functions/interface.php:111
|
258 |
-
msgid "You have likely hit a memory limit."
|
259 |
-
msgstr "Você provavelmente atingiu o limite de memória."
|
260 |
-
|
261 |
-
#: functions/interface.php:238
|
262 |
msgid "Legacy"
|
263 |
msgstr "Legado"
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "The mysqldump file was not created"
|
267 |
-
msgstr "O arquivo mysqldump não foi criado"
|
268 |
-
|
269 |
-
#: functions/interface.php:62
|
270 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
271 |
msgstr "Seu diretório de backups não é gravável. Execute o comando %1$s ou %2$s, ou defina as permissões você mesmo."
|
272 |
|
273 |
-
#: functions/interface.php:50
|
274 |
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."
|
275 |
msgstr "Não é possível criar o diretório de backups pois sua pasta %1$s não possui permissões para gravação. Execute o comando %2$s ou %3$s ou crie a pasta você mesmo."
|
276 |
|
277 |
-
#: functions/core.php:
|
278 |
msgid "BackUpWordPress has setup your default schedules."
|
279 |
msgstr "O BackUpWordPress configurou seus agendamentos padrão."
|
280 |
|
281 |
-
#: classes/email.php:127
|
282 |
msgid "Backup of %s Failed"
|
283 |
msgstr "Backup de %s Falhou"
|
284 |
|
285 |
-
#: classes/email.php:50
|
286 |
msgid "Send an email notification to %s"
|
287 |
msgstr "Enviar uma notificação por email para %s"
|
288 |
|
289 |
-
#: classes/email.php:72
|
290 |
msgid "%s isn't a valid email"
|
291 |
msgstr "%s não é um email válido"
|
292 |
|
293 |
-
#: admin/schedule.php:4
|
294 |
msgid "Backups will be compressed and should be smaller than this."
|
295 |
msgstr "Os backups serão compactados e ficarão menores que isso."
|
296 |
|
297 |
-
#: classes/email.php:19
|
298 |
msgid "Email notification"
|
299 |
msgstr "Notificação por email"
|
300 |
|
301 |
-
#: admin/schedule.php:19
|
302 |
msgid "hourly on the hour"
|
303 |
msgstr "de hora em hora"
|
304 |
|
305 |
-
#: admin/schedule.php:25
|
306 |
msgid "daily at %s"
|
307 |
msgstr "diariamente às %s"
|
308 |
|
309 |
-
#: admin/schedule-form.php:41
|
310 |
msgid "Number of backups to store on this server"
|
311 |
msgstr "Número de backups para armazenar"
|
312 |
|
313 |
-
#: admin/schedule-form.php:7
|
314 |
msgid "Schedule Settings"
|
315 |
msgstr "Configurações do Agendamento"
|
316 |
|
317 |
-
#: admin/actions.php:
|
318 |
msgid "Close"
|
319 |
msgstr "Fechar"
|
320 |
|
321 |
-
#: admin/menu.php:69
|
322 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
323 |
msgstr "A informação abaixo é referente à versão %1$s. Consulte o arquivo %2$s para instruções específicas da versão %3$s."
|
324 |
|
325 |
-
#: admin/constants.php:26
|
326 |
msgid "The root directory that is backed up. Defaults to %s."
|
327 |
msgstr "O diretório raiz onde será realizado o backup. O padrão é %s."
|
328 |
|
329 |
-
#: admin/constants.php:23
|
330 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
331 |
msgstr "A capacidade que o usuário deve ter ao solicitar %1$s. O padrão é %2$s."
|
332 |
|
333 |
-
#: admin/constants.php:14
|
334 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
335 |
msgstr "O caminho para executar a função %1$s. Será usado para compactar seus %2$s e %3$s, se disponível."
|
336 |
|
337 |
-
#: plugin.php:
|
338 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
339 |
msgstr "O BackUpWordPress requer o WordPress versão %s ou superior."
|
340 |
|
341 |
-
#: plugin.php:
|
342 |
msgid "Cancel"
|
343 |
msgstr "Cancelar"
|
344 |
|
345 |
-
#: admin/constants.php:11
|
346 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
347 |
msgstr "O caminho para executar o comando %1$s. Será usado para parte do backup do seu %2$s, se disponível."
|
348 |
|
349 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
350 |
-
#: admin/constants.php:17 admin/constants.php:20
|
351 |
-
#: admin/constants.php:
|
|
|
352 |
msgid "e.g."
|
353 |
msgstr "ex:"
|
354 |
|
355 |
-
#: admin/constants.php:3
|
356 |
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."
|
357 |
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."
|
358 |
|
359 |
-
#: admin/actions.php:
|
360 |
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."
|
361 |
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."
|
362 |
|
363 |
-
#: functions/interface.php:72
|
364 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
365 |
msgstr "http://php.net/manual/pt_BR/features.safe-mode.php"
|
366 |
|
367 |
-
#: functions/interface.php:72
|
368 |
msgid "Safe Mode"
|
369 |
msgstr "Safe Mode (Modo Seguro)"
|
370 |
|
371 |
-
#: functions/interface.php:82
|
372 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
373 |
msgstr "Seu diretório de backups personalizado %1$s não existe e também não pode ser criado. Ao invés disso seus backups serão salvos em %2$s."
|
374 |
|
375 |
-
#: functions/interface.php:92
|
376 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
377 |
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."
|
378 |
|
379 |
-
#: functions/interface.php:
|
380 |
msgid "cancel"
|
381 |
msgstr "cancelar"
|
382 |
|
383 |
-
#: functions/interface.php:
|
384 |
msgid "Settings"
|
385 |
msgstr "Configurações"
|
386 |
|
387 |
-
#: functions/interface.php:
|
388 |
msgid "Excludes"
|
389 |
msgstr "Exclusões"
|
390 |
|
391 |
-
#: functions/interface.php:27
|
392 |
msgid "Download"
|
393 |
msgstr "Download"
|
394 |
|
395 |
-
#: functions/interface.php:50 functions/interface.php:62
|
396 |
msgid "BackUpWordPress is almost ready."
|
397 |
msgstr "O BackUpWordPress está quase pronto."
|
398 |
|
399 |
-
#: functions/interface.php:102
|
400 |
msgid "BackUpWordPress detected issues with your last backup."
|
401 |
msgstr "O BackUpWordPress detectou problemas com o seu último backup."
|
402 |
|
403 |
-
#: functions/interface.php:
|
404 |
msgid "Database and Files"
|
405 |
msgstr "Banco de Dados e Arquivos"
|
406 |
|
407 |
-
#: functions/interface.php:
|
408 |
msgid "Database"
|
409 |
msgstr "Banco de dados"
|
410 |
|
411 |
-
#: hm-backup/hm-backup.php:
|
412 |
-
msgid "The backup file was not created"
|
413 |
-
msgstr "O arquivo de backup não foi criado"
|
414 |
-
|
415 |
-
#: hm-backup/hm-backup.php:951
|
416 |
msgid "The following files are unreadable and couldn't be backed up: "
|
417 |
msgstr "Os seguintes arquivos não puderam ser lidos e por isso não foram copiados no backup:"
|
418 |
|
419 |
-
#: admin/actions.php:
|
420 |
-
#: functions/interface.php:
|
|
|
421 |
msgid "BackUpWordPress has detected a problem."
|
422 |
msgstr "O BackUpWordPress detectou um problema."
|
423 |
|
424 |
-
#: admin/actions.php:
|
425 |
msgid "Backup type cannot be empty"
|
426 |
msgstr "O tipo de backup não pode ficar vazio"
|
427 |
|
428 |
-
#: admin/actions.php:
|
429 |
msgid "Invalid backup type"
|
430 |
msgstr "Tipo de backup inválido"
|
431 |
|
432 |
-
#: admin/actions.php:
|
433 |
msgid "Schedule cannot be empty"
|
434 |
msgstr "O intervalo não pode ficar vazio"
|
435 |
|
436 |
-
#: admin/actions.php:
|
437 |
msgid "Invalid schedule"
|
438 |
msgstr "Agendamento inválido"
|
439 |
|
440 |
-
#: admin/actions.php:
|
441 |
msgid "Max backups must be a number"
|
442 |
msgstr "A quant. de backups precisa ser um número"
|
443 |
|
444 |
-
#: admin/actions.php:
|
445 |
msgid "%s didn't match any files."
|
446 |
msgstr "%s não resulta em arquivo algum."
|
447 |
|
448 |
-
#: admin/backups.php:13
|
449 |
msgid "add schedule"
|
450 |
msgstr "agendar novo backup"
|
451 |
|
452 |
-
#: admin/backups.php:37
|
453 |
msgid "Size"
|
454 |
msgstr "Tamanho"
|
455 |
|
456 |
-
#: admin/backups.php:38
|
457 |
msgid "Type"
|
458 |
msgstr "Tipo"
|
459 |
|
460 |
-
#: admin/backups.php:39
|
461 |
msgid "Actions"
|
462 |
msgstr "Ações"
|
463 |
|
464 |
-
#: admin/backups.php:
|
465 |
msgid "This is where your backups will appear once you have one."
|
466 |
msgstr "Quando você tiver um backup, ele irá aparecer neste espaço."
|
467 |
|
468 |
-
#: admin/constants.php:3
|
469 |
msgid "The Codex can help"
|
470 |
msgstr "O Codex pode ajudar"
|
471 |
|
472 |
-
#: admin/constants.php:8
|
473 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
474 |
msgstr "O caminho do diretório que você gostaria de armazenar os arquivos de backup. O padrão é %s."
|
475 |
|
476 |
-
#: admin/constants.php:11 admin/constants.php:14
|
477 |
msgid "database"
|
478 |
msgstr "banco de dados"
|
479 |
|
480 |
-
#: admin/constants.php:14
|
481 |
msgid "files"
|
482 |
msgstr "arquivos"
|
483 |
|
484 |
-
#: admin/constants.php:17
|
485 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
486 |
msgstr "Opção de enviar uma cópia de seus backups por email. O valor precisar ser um endereço de email que receberá os envios. O padrão é %s."
|
487 |
|
488 |
-
#: admin/constants.php:20
|
489 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
490 |
msgstr "Lista de arquivos ou diretórios (separados por vírgula) que devem ser excluídos do backup. O diretório de backups é automaticamente excluído."
|
491 |
|
492 |
-
#: admin/menu.php:10 admin/page.php:5
|
493 |
msgid "Manage Backups"
|
494 |
msgstr "Gerenciar Backups"
|
495 |
|
496 |
-
#: admin/menu.php:10 admin/menu.php:34
|
497 |
msgid "Backups"
|
498 |
msgstr "Backups"
|
499 |
|
500 |
-
#: admin/menu.php:69
|
501 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
502 |
msgstr "Você não está usando a última versão estável do BackUpWordPress"
|
503 |
|
504 |
-
#: admin/menu.php:75
|
505 |
msgid "FAQ"
|
506 |
msgstr "FAQ"
|
507 |
|
508 |
-
#: admin/constants.php:3 admin/menu.php:76
|
509 |
msgid "Constants"
|
510 |
msgstr "Constantes"
|
511 |
|
512 |
-
#: admin/menu.php:79
|
513 |
msgid "For more information:"
|
514 |
msgstr "Para mais informações:"
|
515 |
|
516 |
-
#: admin/menu.php:81
|
517 |
msgid "Support Forums"
|
518 |
msgstr "Fóruns de suporte"
|
519 |
|
520 |
-
#: admin/menu.php:82
|
521 |
msgid "Help with translation"
|
522 |
msgstr "Ajude a traduzir"
|
523 |
|
524 |
-
#: admin/page.php:13
|
525 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
526 |
msgstr "Você precisa corrigir os erros indicados acima antes que o BackUpWordPress possa ser iniciado."
|
527 |
|
528 |
-
#: admin/schedule-form-excludes.php:19
|
529 |
msgid "Preview"
|
530 |
msgstr "Visualizar"
|
531 |
|
532 |
-
#: admin/schedule-form-excludes.php:29
|
533 |
msgid "Exclude Rules"
|
534 |
msgstr "Regras de exclusão"
|
535 |
|
536 |
-
#: admin/schedule-form-excludes.php:52
|
537 |
msgid "Remove"
|
538 |
msgstr "Excluir"
|
539 |
|
540 |
-
#: admin/schedule-form-excludes.php:71
|
541 |
msgid "Excluded"
|
542 |
msgstr "Excluído"
|
543 |
|
544 |
-
#: admin/schedule-form-excludes.php:75
|
545 |
msgid "Included"
|
546 |
msgstr "Incluído"
|
547 |
|
548 |
-
#: admin/schedule-form-excludes.php:79
|
549 |
msgid "Unreadable"
|
550 |
msgstr "Ilegível"
|
551 |
|
552 |
-
#: admin/schedule-form-excludes.php:107
|
553 |
msgid "Unreadable files can't be backed up"
|
554 |
msgstr "Não é possível realizar o backup de arquivos ilegíveis"
|
555 |
|
556 |
-
#: admin/schedule-form-excludes.php:113
|
557 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
558 |
msgstr "Seu site tem %s. Os backups serão compactados e ficarão menores."
|
559 |
|
560 |
-
#: admin/schedule-form.php:11
|
561 |
msgid "Backup"
|
562 |
msgstr "Backup"
|
563 |
|
564 |
-
#: admin/schedule-form.php:14
|
565 |
msgid "Both Database & files"
|
566 |
msgstr "Banco de dados & arquivos"
|
567 |
|
568 |
-
#: admin/schedule-form.php:15
|
569 |
msgid "Files only"
|
570 |
msgstr "Apenas arquivos"
|
571 |
|
572 |
-
#: admin/schedule-form.php:16
|
573 |
msgid "Database only"
|
574 |
msgstr "Apenas banco de dados"
|
575 |
|
576 |
-
#: functions/interface.php:
|
577 |
msgid "Files"
|
578 |
msgstr "Arquivos"
|
579 |
|
580 |
-
#: admin/schedule-form-excludes.php:7
|
581 |
msgid "Manage Excludes"
|
582 |
msgstr "Gerenciar Exclusões"
|
583 |
|
584 |
-
#: admin/schedule-form.php:23
|
585 |
msgid "Schedule"
|
586 |
msgstr "Intervalo"
|
587 |
|
588 |
-
#: plugin.php:
|
589 |
msgid "Update"
|
590 |
-
msgstr ""
|
591 |
|
592 |
-
#: admin/schedule.php:19
|
593 |
msgid "hourly at %s minutes past the hour"
|
594 |
msgstr "de hora em hora, passado %s minutos de cada hora"
|
595 |
|
596 |
-
#: functions/interface.php:
|
597 |
msgid "Run now"
|
598 |
msgstr "Executar agora"
|
599 |
|
600 |
-
#: functions/interface.php:28 functions/interface.php:
|
601 |
msgid "Delete"
|
602 |
msgstr "Excluir"
|
603 |
|
604 |
-
#: plugin.php:
|
605 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
606 |
msgstr "O BackUpWordPress requer o PHP versão 5.2.4 ou superior."
|
607 |
|
608 |
-
#: classes/email.php:137
|
609 |
msgid "Backup of %s"
|
610 |
msgstr "Backup de %s"
|
611 |
|
612 |
-
#: functions/core.php:
|
613 |
msgid "This %s file ensures that other people cannot download your backup files."
|
614 |
-
msgstr ""
|
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 |
"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 |
+
|
45 |
+
#: ../admin/page.php:17
|
46 |
+
msgid "If your finding BackUpWordPress useful, please %s."
|
47 |
+
msgstr "Se você está achando o BackUpWordPress útil, por favor %s."
|
48 |
+
|
49 |
+
#: ../admin/schedule-form-excludes.php:13
|
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 |
+
|
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 "Se você precisar de ajuda para fazer as coisas funcionarem, consulte o FAQ clicando no botão \"Ajuda\" localizado no canto superior direito desta página."
|
64 |
+
|
65 |
+
#: ../admin/page.php:17
|
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 |
|
93 |
+
#: ../classes/wp-cli.php:16
|
94 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
95 |
+
msgstr "O BackUpWordPress pode não funcionar quando o php estiver rodando com o %s ligado."
|
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 "%1$s está rodando em %2$s, por favor entre em contato com os administradores do seu servidor e os peça para desativar isso. O BackUpWordPress pode não funcionar corretamente enquanto %3$s estiver ativo."
|
100 |
|
101 |
+
#: ../admin/constants.php:29
|
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 |
|
137 |
+
#: ../admin/schedule-form-excludes.php:44
|
138 |
msgid "default"
|
139 |
msgstr "padrão"
|
140 |
|
141 |
+
#: ../admin/schedule-form-excludes.php:48
|
142 |
msgid "defined"
|
143 |
msgstr "definido"
|
144 |
|
145 |
+
#: ../admin/schedule-form.php:27
|
146 |
msgid "Manual Only"
|
147 |
msgstr "Apenas Manualmente"
|
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 "O número de versões de backup que serão armazenadas no servidor. Passado este limite, os backups mais antigos serão automaticamente excluídos."
|
152 |
|
153 |
+
#: ../admin/schedule.php:4
|
154 |
msgid "this shouldn't take long…"
|
155 |
msgstr "isso não deve demorar muito…"
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
159 |
msgstr "calculando o tamanho de seu site…"
|
160 |
|
161 |
+
#: ../admin/schedule.php:12
|
162 |
msgid "The next backup will be on %1$s at %2$s"
|
163 |
msgstr "O próximo backup será em %1$s às %2$s"
|
164 |
|
165 |
+
#: ../admin/schedule.php:37
|
166 |
msgid "every 12 hours at %1$s & %2$s"
|
167 |
msgstr "a cada 12 horas às %1$s & %2$s"
|
168 |
|
169 |
+
#: ../admin/schedule.php:43
|
170 |
msgid "weekly on %1$s at %2$s"
|
171 |
msgstr "semanalmente no(a) %1$s às %2$s"
|
172 |
|
173 |
+
#: ../admin/schedule.php:49
|
174 |
msgid "fortnightly on %1$s at %2$s"
|
175 |
msgstr "quinzenalmente no(a) %1$s às %2$s"
|
176 |
|
177 |
+
#: ../admin/schedule.php:56
|
178 |
msgid "on the %1$s of each month at %2$s"
|
179 |
msgstr "no %1$s de cada mês às %2$s"
|
180 |
|
181 |
+
#: ../admin/schedule.php:62
|
182 |
msgid "manually"
|
183 |
msgstr "manualmente"
|
184 |
|
185 |
+
#: ../admin/schedule.php:68
|
186 |
msgid "this server"
|
187 |
msgstr "neste servidor"
|
188 |
|
189 |
+
#: ../admin/schedule.php:75
|
190 |
msgid "store the only the last backup on %s"
|
191 |
msgstr "armazenar apenas o último backup %s"
|
192 |
|
193 |
+
#: ../admin/schedule.php:81
|
194 |
msgid "don't store any backups on %s"
|
195 |
msgstr "não armazenar nenhum backup em %s"
|
196 |
|
197 |
+
#: ../admin/schedule.php:87
|
198 |
msgid "store only the last %1$s backups on %2$s"
|
199 |
msgstr "armazenar os últimos %1$s backups %2$s"
|
200 |
|
201 |
+
#: ../admin/schedule.php:96
|
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 (< 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 (< 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 |
"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"
|
245 |
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 |
|
253 |
+
#: ../classes/wp-cli.php:19
|
254 |
msgid "Backup: Dumping database..."
|
255 |
msgstr "Backup: Realizando o dumping do banco de dados..."
|
256 |
|
257 |
+
#: ../classes/wp-cli.php:23
|
258 |
msgid "Backup: Zipping everything up..."
|
259 |
msgstr "Backup: Compactando tudo..."
|
260 |
|
261 |
+
#: ../classes/wp-cli.php:38
|
262 |
msgid "Invalid backup path"
|
263 |
msgstr "Caminho de backup inválido"
|
264 |
|
265 |
+
#: ../classes/wp-cli.php:43
|
266 |
msgid "Invalid root path"
|
267 |
msgstr "Caminho do diretório raiz inválido"
|
268 |
|
269 |
+
#: ../classes/wp-cli.php:68
|
270 |
msgid "Backup Complete: "
|
271 |
msgstr "Backup Concluído: "
|
272 |
|
273 |
+
#: ../classes/wp-cli.php:71
|
274 |
msgid "Backup Failed"
|
275 |
msgstr "Falha no Backup"
|
276 |
|
277 |
+
#: ../functions/core.php:189
|
278 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
279 |
msgstr "Por padrão, o BackUpWordPress realiza um backup diário de seu banco de dados e um backup semanal de seu banco de dados & arquivos. Você pode modificar esses agendamentos."
|
280 |
|
281 |
+
#: ../functions/interface.php:229
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Legacy"
|
283 |
msgstr "Legado"
|
284 |
|
285 |
+
#: ../functions/interface.php:62
|
|
|
|
|
|
|
|
|
286 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
287 |
msgstr "Seu diretório de backups não é gravável. Execute o comando %1$s ou %2$s, ou defina as permissões você mesmo."
|
288 |
|
289 |
+
#: ../functions/interface.php:50
|
290 |
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."
|
291 |
msgstr "Não é possível criar o diretório de backups pois sua pasta %1$s não possui permissões para gravação. Execute o comando %2$s ou %3$s ou crie a pasta você mesmo."
|
292 |
|
293 |
+
#: ../functions/core.php:189
|
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 |
|
309 |
+
#: ../admin/schedule.php:4
|
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 |
|
317 |
+
#: ../admin/schedule.php:19
|
318 |
msgid "hourly on the hour"
|
319 |
msgstr "de hora em hora"
|
320 |
|
321 |
+
#: ../admin/schedule.php:25
|
322 |
msgid "daily at %s"
|
323 |
msgstr "diariamente às %s"
|
324 |
|
325 |
+
#: ../admin/schedule-form.php:41
|
326 |
msgid "Number of backups to store on this server"
|
327 |
msgstr "Número de backups para armazenar"
|
328 |
|
329 |
+
#: ../admin/schedule-form.php:7
|
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 |
|
337 |
+
#: ../admin/menu.php:69
|
338 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
339 |
msgstr "A informação abaixo é referente à versão %1$s. Consulte o arquivo %2$s para instruções específicas da versão %3$s."
|
340 |
|
341 |
+
#: ../admin/constants.php:26
|
342 |
msgid "The root directory that is backed up. Defaults to %s."
|
343 |
msgstr "O diretório raiz onde será realizado o backup. O padrão é %s."
|
344 |
|
345 |
+
#: ../admin/constants.php:23
|
346 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
347 |
msgstr "A capacidade que o usuário deve ter ao solicitar %1$s. O padrão é %2$s."
|
348 |
|
349 |
+
#: ../admin/constants.php:14
|
350 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
351 |
msgstr "O caminho para executar a função %1$s. Será usado para compactar seus %2$s e %3$s, se disponível."
|
352 |
|
353 |
+
#: ../plugin.php:77
|
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 |
|
361 |
+
#: ../admin/constants.php:11
|
362 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
363 |
msgstr "O caminho para executar o comando %1$s. Será usado para parte do backup do seu %2$s, se disponível."
|
364 |
|
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 |
|
372 |
+
#: ../admin/constants.php:3
|
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 |
|
380 |
+
#: ../functions/interface.php:72
|
381 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
382 |
msgstr "http://php.net/manual/pt_BR/features.safe-mode.php"
|
383 |
|
384 |
+
#: ../functions/interface.php:72
|
385 |
msgid "Safe Mode"
|
386 |
msgstr "Safe Mode (Modo Seguro)"
|
387 |
|
388 |
+
#: ../functions/interface.php:82
|
389 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
390 |
msgstr "Seu diretório de backups personalizado %1$s não existe e também não pode ser criado. Ao invés disso seus backups serão salvos em %2$s."
|
391 |
|
392 |
+
#: ../functions/interface.php:92
|
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 |
|
408 |
+
#: ../functions/interface.php:27
|
409 |
msgid "Download"
|
410 |
msgstr "Download"
|
411 |
|
412 |
+
#: ../functions/interface.php:50 ../functions/interface.php:62
|
413 |
msgid "BackUpWordPress is almost ready."
|
414 |
msgstr "O BackUpWordPress está quase pronto."
|
415 |
|
416 |
+
#: ../functions/interface.php:102
|
417 |
msgid "BackUpWordPress detected issues with your last backup."
|
418 |
msgstr "O BackUpWordPress detectou problemas com o seu último backup."
|
419 |
|
420 |
+
#: ../functions/interface.php:218
|
421 |
msgid "Database and Files"
|
422 |
msgstr "Banco de Dados e Arquivos"
|
423 |
|
424 |
+
#: ../functions/interface.php:224
|
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 |
|
462 |
+
#: ../admin/backups.php:13
|
463 |
msgid "add schedule"
|
464 |
msgstr "agendar novo backup"
|
465 |
|
466 |
+
#: ../admin/backups.php:37
|
467 |
msgid "Size"
|
468 |
msgstr "Tamanho"
|
469 |
|
470 |
+
#: ../admin/backups.php:38
|
471 |
msgid "Type"
|
472 |
msgstr "Tipo"
|
473 |
|
474 |
+
#: ../admin/backups.php:39
|
475 |
msgid "Actions"
|
476 |
msgstr "Ações"
|
477 |
|
478 |
+
#: ../admin/backups.php:64
|
479 |
msgid "This is where your backups will appear once you have one."
|
480 |
msgstr "Quando você tiver um backup, ele irá aparecer neste espaço."
|
481 |
|
482 |
+
#: ../admin/constants.php:3
|
483 |
msgid "The Codex can help"
|
484 |
msgstr "O Codex pode ajudar"
|
485 |
|
486 |
+
#: ../admin/constants.php:8
|
487 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
488 |
msgstr "O caminho do diretório que você gostaria de armazenar os arquivos de backup. O padrão é %s."
|
489 |
|
490 |
+
#: ../admin/constants.php:11 ../admin/constants.php:14
|
491 |
msgid "database"
|
492 |
msgstr "banco de dados"
|
493 |
|
494 |
+
#: ../admin/constants.php:14
|
495 |
msgid "files"
|
496 |
msgstr "arquivos"
|
497 |
|
498 |
+
#: ../admin/constants.php:17
|
499 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
500 |
msgstr "Opção de enviar uma cópia de seus backups por email. O valor precisar ser um endereço de email que receberá os envios. O padrão é %s."
|
501 |
|
502 |
+
#: ../admin/constants.php:20
|
503 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
504 |
msgstr "Lista de arquivos ou diretórios (separados por vírgula) que devem ser excluídos do backup. O diretório de backups é automaticamente excluído."
|
505 |
|
506 |
+
#: ../admin/menu.php:10 ../admin/page.php:5
|
507 |
msgid "Manage Backups"
|
508 |
msgstr "Gerenciar Backups"
|
509 |
|
510 |
+
#: ../admin/menu.php:10 ../admin/menu.php:34
|
511 |
msgid "Backups"
|
512 |
msgstr "Backups"
|
513 |
|
514 |
+
#: ../admin/menu.php:69
|
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 |
|
538 |
+
#: ../admin/page.php:13
|
539 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
540 |
msgstr "Você precisa corrigir os erros indicados acima antes que o BackUpWordPress possa ser iniciado."
|
541 |
|
542 |
+
#: ../admin/schedule-form-excludes.php:19
|
543 |
msgid "Preview"
|
544 |
msgstr "Visualizar"
|
545 |
|
546 |
+
#: ../admin/schedule-form-excludes.php:29
|
547 |
msgid "Exclude Rules"
|
548 |
msgstr "Regras de exclusão"
|
549 |
|
550 |
+
#: ../admin/schedule-form-excludes.php:52
|
551 |
msgid "Remove"
|
552 |
msgstr "Excluir"
|
553 |
|
554 |
+
#: ../admin/schedule-form-excludes.php:71
|
555 |
msgid "Excluded"
|
556 |
msgstr "Excluído"
|
557 |
|
558 |
+
#: ../admin/schedule-form-excludes.php:75
|
559 |
msgid "Included"
|
560 |
msgstr "Incluído"
|
561 |
|
562 |
+
#: ../admin/schedule-form-excludes.php:79
|
563 |
msgid "Unreadable"
|
564 |
msgstr "Ilegível"
|
565 |
|
566 |
+
#: ../admin/schedule-form-excludes.php:107
|
567 |
msgid "Unreadable files can't be backed up"
|
568 |
msgstr "Não é possível realizar o backup de arquivos ilegíveis"
|
569 |
|
570 |
+
#: ../admin/schedule-form-excludes.php:113
|
571 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
572 |
msgstr "Seu site tem %s. Os backups serão compactados e ficarão menores."
|
573 |
|
574 |
+
#: ../admin/schedule-form.php:11
|
575 |
msgid "Backup"
|
576 |
msgstr "Backup"
|
577 |
|
578 |
+
#: ../admin/schedule-form.php:14
|
579 |
msgid "Both Database & files"
|
580 |
msgstr "Banco de dados & arquivos"
|
581 |
|
582 |
+
#: ../admin/schedule-form.php:15
|
583 |
msgid "Files only"
|
584 |
msgstr "Apenas arquivos"
|
585 |
|
586 |
+
#: ../admin/schedule-form.php:16
|
587 |
msgid "Database only"
|
588 |
msgstr "Apenas banco de dados"
|
589 |
|
590 |
+
#: ../functions/interface.php:221
|
591 |
msgid "Files"
|
592 |
msgstr "Arquivos"
|
593 |
|
594 |
+
#: ../admin/schedule-form-excludes.php:7
|
595 |
msgid "Manage Excludes"
|
596 |
msgstr "Gerenciar Exclusões"
|
597 |
|
598 |
+
#: ../admin/schedule-form.php:23
|
599 |
msgid "Schedule"
|
600 |
msgstr "Intervalo"
|
601 |
|
602 |
+
#: ../plugin.php:142 ../admin/schedule-form.php:54
|
603 |
msgid "Update"
|
604 |
+
msgstr "Atualizar"
|
605 |
|
606 |
+
#: ../admin/schedule.php:19
|
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 |
|
618 |
+
#: ../plugin.php:66
|
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 |
|
626 |
+
#: ../functions/core.php:288
|
627 |
msgid "This %s file ensures that other people cannot download your backup files."
|
628 |
+
msgstr "Este arquivo %s garante que nenhuma outra pessoa consiga fazer o download dos seus arquivos de backup."
|
languages/hmbkp-pt_BR.mo
DELETED
Binary file
|
languages/hmbkp-ro_RO.mo
ADDED
Binary file
|
languages/hmbkp-ro_RO.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Romanian
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-ru_RU.mo
ADDED
Binary file
|
languages/hmbkp-ru_RU.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Russian
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-sr_SR.mo
ADDED
Binary file
|
languages/hmbkp-sr_SR.po
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 2.x in Serbian
|
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"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
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…"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
+
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 & 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 ""
|
languages/hmbkp-zh-cn.mo
ADDED
Binary file
|
languages/{hmbkp-zh_CN.po → hmbkp-zh-cn.po}
RENAMED
@@ -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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,601 +10,615 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: 2.x\n"
|
12 |
|
13 |
-
#: admin/actions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "Email to Support"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#: admin/page.php:17
|
18 |
msgid "If your finding BackUpWordPress useful, please %s."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin/schedule-form-excludes.php:13
|
22 |
msgid "New Exclude Rule[s]"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin/actions.php:
|
26 |
msgid "Your BackUp Failed"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/actions.php:
|
30 |
msgid "Here's the response from the server:"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/page.php:19
|
34 |
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."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/page.php:17
|
38 |
msgid "rate it on the plugin directory"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: classes/schedule.php:
|
42 |
msgid "Starting Backup"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: classes/schedule.php:
|
46 |
msgid "Dumping Database %s"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: classes/schedule.php:
|
50 |
msgid "Verifying Database Dump %s"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: classes/schedule.php:
|
54 |
msgid "Creating zip archive %s"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: classes/schedule.php:
|
58 |
msgid "Verifying Zip Archive %s"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: classes/schedule.php:
|
62 |
msgid "Finishing Backup"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: classes/wp-cli.php:16
|
66 |
msgid "BackUpWordPress may not work when php is running with %s on"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: functions/interface.php:72
|
70 |
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."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin/constants.php:29
|
74 |
msgid "The time that your schedules should run. Defaults to %s."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: plugin.php:
|
78 |
msgid "Are you sure you want to delete this schedule? All of it's backups will also be deleted."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: plugin.php:
|
82 |
msgid "'Cancel' to go back, 'OK' to delete."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: plugin.php:
|
86 |
msgid "Are you sure you want to delete this backup?"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: plugin.php:
|
90 |
msgid "Are you sure you want to remove this exclude rule?"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: plugin.php:
|
94 |
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?"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/actions.php:
|
98 |
msgid "Max backups can't be empty"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin/actions.php:
|
102 |
msgid "Max backups must be greater than 0"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin/actions.php:
|
106 |
msgid "Exclude"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/schedule-form-excludes.php:44
|
110 |
msgid "default"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/schedule-form-excludes.php:48
|
114 |
msgid "defined"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/schedule-form.php:27
|
118 |
msgid "Manual Only"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/schedule-form.php:45
|
122 |
msgid "The number of previous backups to store on the server. past this limit older backups will be deleted automatically."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin/schedule.php:4
|
126 |
msgid "this shouldn't take long…"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/schedule.php:4
|
130 |
msgid "calculating the size of your site…"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/schedule.php:12
|
134 |
msgid "The next backup will be on %1$s at %2$s"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/schedule.php:37
|
138 |
msgid "every 12 hours at %1$s & %2$s"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/schedule.php:43
|
142 |
msgid "weekly on %1$s at %2$s"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin/schedule.php:49
|
146 |
msgid "fortnightly on %1$s at %2$s"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/schedule.php:56
|
150 |
msgid "on the %1$s of each month at %2$s"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/schedule.php:62
|
154 |
msgid "manually"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/schedule.php:68
|
158 |
msgid "this server"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/schedule.php:75
|
162 |
msgid "store the only the last backup on %s"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin/schedule.php:81
|
166 |
msgid "don't store any backups on %s"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin/schedule.php:87
|
170 |
msgid "store only the last %1$s backups on %2$s"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/schedule.php:96
|
174 |
msgid "Backup my %1$s %2$s %3$s, %4$s. %5$s"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: classes/email.php:23
|
178 |
msgid "Receive a notification email when a backup completes, if the backup is small enough (< 10mb) then it will be attached to the email. Separate multiple email address's with a comma."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: classes/email.php:129
|
182 |
msgid "BackUpWordPress was unable to backup your site %1$s."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: classes/email.php:129
|
186 |
msgid "Here are the errors that we're encountered:"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: classes/email.php:129
|
190 |
msgid "If the errors above look like Martian, forward this email to %3$s and we'll take a look"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: classes/email.php:129
|
194 |
msgid ""
|
195 |
"Kind Regards,\n"
|
196 |
"The Apologetic BackUpWordPress Backup Emailing Robot"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: classes/email.php:142 classes/email.php:151
|
200 |
msgid "BackUpWordPress has completed a backup of your site %1$s."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: classes/email.php:142
|
204 |
msgid "The backup file should be attached to this email."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: classes/email.php:142 classes/email.php:151
|
208 |
msgid "You can download the backup file by clicking the link below:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/email.php:142 classes/email.php:151
|
212 |
msgid ""
|
213 |
"Kind Regards,\n"
|
214 |
"The Happy BackUpWordPress Backup Emailing Robot"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: classes/email.php:151
|
218 |
msgid "Unfortunately the backup file was too large to attach to this email."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: classes/wp-cli.php:19
|
222 |
msgid "Backup: Dumping database..."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: classes/wp-cli.php:23
|
226 |
msgid "Backup: Zipping everything up..."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: classes/wp-cli.php:38
|
230 |
msgid "Invalid backup path"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: classes/wp-cli.php:43
|
234 |
msgid "Invalid root path"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: classes/wp-cli.php:68
|
238 |
msgid "Backup Complete: "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: classes/wp-cli.php:71
|
242 |
msgid "Backup Failed"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: functions/core.php:
|
246 |
msgid "By default BackUpWordPress performs a daily backup of your database and a weekly backup of your database & files. You can modify these schedules."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: functions/interface.php:
|
250 |
-
msgid "BackUpWordPress failed to perform the backup."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: functions/interface.php:111
|
254 |
-
msgid "You have likely hit a memory limit."
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: functions/interface.php:238
|
258 |
msgid "Legacy"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "The mysqldump file was not created"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: functions/interface.php:62
|
266 |
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
267 |
msgstr "你的备份目录无法写入,运行 %1$s 或 %2$s 或者自行设置权限。"
|
268 |
|
269 |
-
#: functions/interface.php:50
|
270 |
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."
|
271 |
msgstr "因为目录 %1$s 无法写入导致不能创建备份目录, 运行 %2$s 或 %3$s 或 自行创建目录。"
|
272 |
|
273 |
-
#: functions/core.php:
|
274 |
msgid "BackUpWordPress has setup your default schedules."
|
275 |
msgstr "BackUpWordPress 已经配置了你的默认安排。"
|
276 |
|
277 |
-
#: classes/email.php:127
|
278 |
msgid "Backup of %s Failed"
|
279 |
msgstr "%s 的备份失败"
|
280 |
|
281 |
-
#: classes/email.php:50
|
282 |
msgid "Send an email notification to %s"
|
283 |
msgstr "给%s发送电子邮件通知"
|
284 |
|
285 |
-
#: classes/email.php:72
|
286 |
msgid "%s isn't a valid email"
|
287 |
msgstr "%s 不是有效的电子邮件地址"
|
288 |
|
289 |
-
#: admin/schedule.php:4
|
290 |
msgid "Backups will be compressed and should be smaller than this."
|
291 |
msgstr "备份会被压缩所以应该会比这个数值要小。"
|
292 |
|
293 |
-
#: classes/email.php:19
|
294 |
msgid "Email notification"
|
295 |
msgstr "电子邮件通知"
|
296 |
|
297 |
-
#: admin/schedule.php:19
|
298 |
msgid "hourly on the hour"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/schedule.php:25
|
302 |
msgid "daily at %s"
|
303 |
msgstr "在每天的 %s"
|
304 |
|
305 |
-
#: admin/schedule-form.php:41
|
306 |
msgid "Number of backups to store on this server"
|
307 |
msgstr "存储在服务器上的备份数目"
|
308 |
|
309 |
-
#: admin/schedule-form.php:7
|
310 |
msgid "Schedule Settings"
|
311 |
msgstr "日程安排"
|
312 |
|
313 |
-
#: admin/actions.php:
|
314 |
msgid "Close"
|
315 |
msgstr "关闭"
|
316 |
|
317 |
-
#: admin/menu.php:69
|
318 |
msgid "The information below is for version %1$s. View the %2$s file for help specific to version %3$s."
|
319 |
msgstr "以下信息适用于%1$s版本。查看%2$s 文件以获取%3$s版本的帮助信息。"
|
320 |
|
321 |
-
#: admin/constants.php:26
|
322 |
msgid "The root directory that is backed up. Defaults to %s."
|
323 |
msgstr "根目录已经备份。默认备份到 %s 。"
|
324 |
|
325 |
-
#: admin/constants.php:23
|
326 |
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/constants.php:14
|
330 |
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: plugin.php:
|
334 |
msgid "BackUpWordPress requires WordPress version %s or greater."
|
335 |
msgstr "BackUpWordPress 需要Wordpress的版本至少为%s。"
|
336 |
|
337 |
-
#: plugin.php:
|
338 |
msgid "Cancel"
|
339 |
msgstr "取消"
|
340 |
|
341 |
-
#: admin/constants.php:11
|
342 |
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/constants.php:8 admin/constants.php:11 admin/constants.php:14
|
346 |
-
#: admin/constants.php:17 admin/constants.php:20
|
347 |
-
#: admin/constants.php:
|
|
|
348 |
msgid "e.g."
|
349 |
msgstr "例如:"
|
350 |
|
351 |
-
#: admin/constants.php:3
|
352 |
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."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/actions.php:
|
356 |
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."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: functions/interface.php:72
|
360 |
msgid "http://php.net/manual/en/features.safe-mode.php"
|
361 |
msgstr "http://php.net/manual/en/features.safe-mode.php"
|
362 |
|
363 |
-
#: functions/interface.php:72
|
364 |
msgid "Safe Mode"
|
365 |
msgstr "安全模式"
|
366 |
|
367 |
-
#: functions/interface.php:82
|
368 |
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: functions/interface.php:92
|
372 |
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
373 |
msgstr "您设定的备份目录 %1$s 无法写入,新的备份文件将会被存储到 %2$s 。"
|
374 |
|
375 |
-
#: functions/interface.php:
|
376 |
msgid "cancel"
|
377 |
msgstr "取消"
|
378 |
|
379 |
-
#: functions/interface.php:
|
380 |
msgid "Settings"
|
381 |
msgstr "设置"
|
382 |
|
383 |
-
#: functions/interface.php:
|
384 |
msgid "Excludes"
|
385 |
msgstr "排除"
|
386 |
|
387 |
-
#: functions/interface.php:27
|
388 |
msgid "Download"
|
389 |
msgstr "下载"
|
390 |
|
391 |
-
#: functions/interface.php:50 functions/interface.php:62
|
392 |
msgid "BackUpWordPress is almost ready."
|
393 |
msgstr "BackUpWordPress 已经准备好。"
|
394 |
|
395 |
-
#: functions/interface.php:102
|
396 |
msgid "BackUpWordPress detected issues with your last backup."
|
397 |
msgstr "BackUpWordPress 检测到上一个备份存在错误。"
|
398 |
|
399 |
-
#: functions/interface.php:
|
400 |
msgid "Database and Files"
|
401 |
msgstr "数据库和文件"
|
402 |
|
403 |
-
#: functions/interface.php:
|
404 |
msgid "Database"
|
405 |
msgstr "数据库"
|
406 |
|
407 |
-
#: hm-backup/hm-backup.php:
|
408 |
-
msgid "The backup file was not created"
|
409 |
-
msgstr "备份文件没有被创建"
|
410 |
-
|
411 |
-
#: hm-backup/hm-backup.php:951
|
412 |
msgid "The following files are unreadable and couldn't be backed up: "
|
413 |
msgstr "下列文件不可读,故无法备份:"
|
414 |
|
415 |
-
#: admin/actions.php:
|
416 |
-
#: functions/interface.php:
|
|
|
417 |
msgid "BackUpWordPress has detected a problem."
|
418 |
msgstr "BackUpWordPress 检测到一个问题。"
|
419 |
|
420 |
-
#: admin/actions.php:
|
421 |
msgid "Backup type cannot be empty"
|
422 |
msgstr "备份类型不能为空"
|
423 |
|
424 |
-
#: admin/actions.php:
|
425 |
msgid "Invalid backup type"
|
426 |
msgstr "无效的备份类型。"
|
427 |
|
428 |
-
#: admin/actions.php:
|
429 |
msgid "Schedule cannot be empty"
|
430 |
msgstr "计划不能为空"
|
431 |
|
432 |
-
#: admin/actions.php:
|
433 |
msgid "Invalid schedule"
|
434 |
msgstr "无效的计划"
|
435 |
|
436 |
-
#: admin/actions.php:
|
437 |
msgid "Max backups must be a number"
|
438 |
msgstr "最大备份数必须是数字"
|
439 |
|
440 |
-
#: admin/actions.php:
|
441 |
msgid "%s didn't match any files."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/backups.php:13
|
445 |
msgid "add schedule"
|
446 |
msgstr "添加计划"
|
447 |
|
448 |
-
#: admin/backups.php:37
|
449 |
msgid "Size"
|
450 |
msgstr "大小"
|
451 |
|
452 |
-
#: admin/backups.php:38
|
453 |
msgid "Type"
|
454 |
msgstr "类型"
|
455 |
|
456 |
-
#: admin/backups.php:39
|
457 |
msgid "Actions"
|
458 |
msgstr "行动"
|
459 |
|
460 |
-
#: admin/backups.php:
|
461 |
msgid "This is where your backups will appear once you have one."
|
462 |
msgstr "这里是您的备份文件会出现的地方。"
|
463 |
|
464 |
-
#: admin/constants.php:3
|
465 |
msgid "The Codex can help"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/constants.php:8
|
469 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
470 |
msgstr "您想要存储备份文件的目录,默认是%s。"
|
471 |
|
472 |
-
#: admin/constants.php:11 admin/constants.php:14
|
473 |
msgid "database"
|
474 |
msgstr "数据库"
|
475 |
|
476 |
-
#: admin/constants.php:14
|
477 |
msgid "files"
|
478 |
msgstr "文件"
|
479 |
|
480 |
-
#: admin/constants.php:17
|
481 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/constants.php:20
|
485 |
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/menu.php:10 admin/page.php:5
|
489 |
msgid "Manage Backups"
|
490 |
msgstr "管理备份"
|
491 |
|
492 |
-
#: admin/menu.php:10 admin/menu.php:34
|
493 |
msgid "Backups"
|
494 |
msgstr "备份"
|
495 |
|
496 |
-
#: admin/menu.php:69
|
497 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
498 |
msgstr "您使用的不是BackUpWordPress的最新稳定版本"
|
499 |
|
500 |
-
#: admin/menu.php:75
|
501 |
msgid "FAQ"
|
502 |
msgstr "常见问题"
|
503 |
|
504 |
-
#: admin/constants.php:3 admin/menu.php:76
|
505 |
msgid "Constants"
|
506 |
msgstr "常量"
|
507 |
|
508 |
-
#: admin/menu.php:79
|
509 |
msgid "For more information:"
|
510 |
msgstr "获取更多信息:"
|
511 |
|
512 |
-
#: admin/menu.php:81
|
513 |
msgid "Support Forums"
|
514 |
msgstr "支持论坛"
|
515 |
|
516 |
-
#: admin/menu.php:82
|
517 |
msgid "Help with translation"
|
518 |
msgstr "帮助进行翻译"
|
519 |
|
520 |
-
#: admin/page.php:13
|
521 |
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/schedule-form-excludes.php:19
|
525 |
msgid "Preview"
|
526 |
msgstr "预览"
|
527 |
|
528 |
-
#: admin/schedule-form-excludes.php:29
|
529 |
msgid "Exclude Rules"
|
530 |
msgstr "排除规则"
|
531 |
|
532 |
-
#: admin/schedule-form-excludes.php:52
|
533 |
msgid "Remove"
|
534 |
msgstr "移除"
|
535 |
|
536 |
-
#: admin/schedule-form-excludes.php:71
|
537 |
msgid "Excluded"
|
538 |
msgstr "已被排除的"
|
539 |
|
540 |
-
#: admin/schedule-form-excludes.php:75
|
541 |
msgid "Included"
|
542 |
msgstr "已包括"
|
543 |
|
544 |
-
#: admin/schedule-form-excludes.php:79
|
545 |
msgid "Unreadable"
|
546 |
msgstr "无法读取的"
|
547 |
|
548 |
-
#: admin/schedule-form-excludes.php:107
|
549 |
msgid "Unreadable files can't be backed up"
|
550 |
msgstr "无法读取的文件不会被备份"
|
551 |
|
552 |
-
#: admin/schedule-form-excludes.php:113
|
553 |
msgid "Your site is %s. Backups will be compressed and so will be smaller."
|
554 |
msgstr "您的站点大小为 %s. 压缩文件的大小会比这个值要小。"
|
555 |
|
556 |
-
#: admin/schedule-form.php:11
|
557 |
msgid "Backup"
|
558 |
msgstr "备份"
|
559 |
|
560 |
-
#: admin/schedule-form.php:14
|
561 |
msgid "Both Database & files"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/schedule-form.php:15
|
565 |
msgid "Files only"
|
566 |
msgstr "仅文件"
|
567 |
|
568 |
-
#: admin/schedule-form.php:16
|
569 |
msgid "Database only"
|
570 |
msgstr "仅数据库"
|
571 |
|
572 |
-
#: functions/interface.php:
|
573 |
msgid "Files"
|
574 |
msgstr "文件"
|
575 |
|
576 |
-
#: admin/schedule-form-excludes.php:7
|
577 |
msgid "Manage Excludes"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/schedule-form.php:23
|
581 |
msgid "Schedule"
|
582 |
msgstr "计划"
|
583 |
|
584 |
-
#: plugin.php:
|
585 |
msgid "Update"
|
586 |
msgstr "更新"
|
587 |
|
588 |
-
#: admin/schedule.php:19
|
589 |
msgid "hourly at %s minutes past the hour"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: functions/interface.php:
|
593 |
msgid "Run now"
|
594 |
msgstr "现在备份"
|
595 |
|
596 |
-
#: functions/interface.php:28 functions/interface.php:
|
597 |
msgid "Delete"
|
598 |
msgstr "删除"
|
599 |
|
600 |
-
#: plugin.php:
|
601 |
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
602 |
msgstr "BackUpWordPress 需要 PHP 的版本至少为5.2.4。"
|
603 |
|
604 |
-
#: classes/email.php:137
|
605 |
msgid "Backup of %s"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: functions/core.php:
|
609 |
msgid "This %s file ensures that other people cannot download your backup files."
|
610 |
msgstr "这个 %s 文件确保其他人不能下载您的备份文件"
|
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 |
"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…"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../admin/schedule.php:4
|
158 |
msgid "calculating the size of your site…"
|
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 & %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 (< 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 & 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 "你的备份目录无法写入,运行 %1$s 或 %2$s 或者自行设置权限。"
|
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 "因为目录 %1$s 无法写入导致不能创建备份目录, 运行 %2$s 或 %3$s 或 自行创建目录。"
|
288 |
|
289 |
+
#: ../functions/core.php:189
|
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 |
|
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 "在每天的 %s"
|
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 "以下信息适用于%1$s版本。查看%2$s 文件以获取%3$s版本的帮助信息。"
|
336 |
|
337 |
+
#: ../admin/constants.php:26
|
338 |
msgid "The root directory that is backed up. Defaults to %s."
|
339 |
msgstr "根目录已经备份。默认备份到 %s 。"
|
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 "BackUpWordPress 需要Wordpress的版本至少为%s。"
|
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 "http://php.net/manual/en/features.safe-mode.php"
|
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 "您设定的备份目录 %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 |
|
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 "BackUpWordPress 已经准备好。"
|
411 |
|
412 |
+
#: ../functions/interface.php:102
|
413 |
msgid "BackUpWordPress detected issues with your last backup."
|
414 |
msgstr "BackUpWordPress 检测到上一个备份存在错误。"
|
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 "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 |
|
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 "您想要存储备份文件的目录,默认是%s。"
|
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 "您使用的不是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 |
|
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 "您的站点大小为 %s. 压缩文件的大小会比这个值要小。"
|
569 |
|
570 |
+
#: ../admin/schedule-form.php:11
|
571 |
msgid "Backup"
|
572 |
msgstr "备份"
|
573 |
|
574 |
+
#: ../admin/schedule-form.php:14
|
575 |
msgid "Both Database & 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 "BackUpWordPress 需要 PHP 的版本至少为5.2.4。"
|
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 "这个 %s 文件确保其他人不能下载您的备份文件"
|
languages/hmbkp-zh_CN.mo
DELETED
Binary file
|
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 → Backups</strong>.
|
7 |
Author: Human Made Limited
|
8 |
-
Version: 2.
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
@@ -38,7 +38,13 @@ if ( ! defined( 'HMBKP_PLUGIN_URL' ) )
|
|
38 |
if ( ! defined( 'HMBKP_ADMIN_URL' ) )
|
39 |
define( 'HMBKP_ADMIN_URL', add_query_arg( 'page', HMBKP_PLUGIN_SLUG, admin_url( 'tools.php' ) ) );
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
if ( ! defined( 'HMBKP_REQUIRED_WP_VERSION' ) )
|
44 |
define( 'HMBKP_REQUIRED_WP_VERSION', '3.3.3' );
|
@@ -98,17 +104,13 @@ require_once( HMBKP_PLUGIN_PATH . '/classes/email.php' );
|
|
98 |
if ( defined( 'WP_CLI' ) && WP_CLI )
|
99 |
include( HMBKP_PLUGIN_PATH . '/classes/wp-cli.php' );
|
100 |
|
|
|
|
|
|
|
|
|
101 |
// Handle any advanced option changes
|
102 |
hmbkp_constant_changes();
|
103 |
|
104 |
-
// Set the tmp directory to the backup path
|
105 |
-
if ( ! defined( 'PCLZIP_TEMPORARY_DIR' ) )
|
106 |
-
define( 'PCLZIP_TEMPORARY_DIR', trailingslashit( hmbkp_path() ) );
|
107 |
-
|
108 |
-
// Hook in the activation and deactivation actions
|
109 |
-
add_action( 'activate_' . HMBKP_PLUGIN_SLUG . '/plugin.php', 'hmbkp_activate' );
|
110 |
-
add_action( 'deactivate_' . HMBKP_PLUGIN_SLUG . '/plugin.php', 'hmbkp_deactivate' );
|
111 |
-
|
112 |
if ( ! function_exists( 'hmbkp_init' ) ) :
|
113 |
|
114 |
/**
|
@@ -136,7 +138,7 @@ function hmbkp_init() {
|
|
136 |
wp_enqueue_script( 'hmbkp-fancybox', HMBKP_PLUGIN_URL . '/assets/fancyBox/source/jquery.fancybox.js', array( 'jquery' ), sanitize_title( HMBKP_VERSION ) );
|
137 |
wp_enqueue_script( 'hmbkp', HMBKP_PLUGIN_URL . '/assets/hmbkp.js', array( 'jquery-ui-tabs', 'jquery-ui-widget', 'hmbkp-fancybox' ), sanitize_title( HMBKP_VERSION ) );
|
138 |
|
139 |
-
wp_localize_script( 'hmbkp', '
|
140 |
'update' => __( 'Update', 'hmbkp' ),
|
141 |
'cancel' => __( 'Cancel', 'hmbkp' ),
|
142 |
'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 → Backups</strong>.
|
7 |
Author: Human Made Limited
|
8 |
+
Version: 2.2
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
38 |
if ( ! defined( 'HMBKP_ADMIN_URL' ) )
|
39 |
define( 'HMBKP_ADMIN_URL', add_query_arg( 'page', HMBKP_PLUGIN_SLUG, admin_url( 'tools.php' ) ) );
|
40 |
|
41 |
+
$key = array( ABSPATH, time() );
|
42 |
+
|
43 |
+
foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT', 'SECRET_KEY' ) as $constant )
|
44 |
+
if ( defined( $constant ) )
|
45 |
+
$key[] = $constant;
|
46 |
+
|
47 |
+
define( 'HMBKP_SECURE_KEY', md5( shuffle( $key ) ) );
|
48 |
|
49 |
if ( ! defined( 'HMBKP_REQUIRED_WP_VERSION' ) )
|
50 |
define( 'HMBKP_REQUIRED_WP_VERSION', '3.3.3' );
|
104 |
if ( defined( 'WP_CLI' ) && WP_CLI )
|
105 |
include( HMBKP_PLUGIN_PATH . '/classes/wp-cli.php' );
|
106 |
|
107 |
+
// Hook in the activation and deactivation actions
|
108 |
+
register_activation_hook( HMBKP_PLUGIN_SLUG . '/plugin.php', 'hmbkp_activate' );
|
109 |
+
register_deactivation_hook( HMBKP_PLUGIN_SLUG . '/plugin.php', 'hmbkp_deactivate' );
|
110 |
+
|
111 |
// Handle any advanced option changes
|
112 |
hmbkp_constant_changes();
|
113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
if ( ! function_exists( 'hmbkp_init' ) ) :
|
115 |
|
116 |
/**
|
138 |
wp_enqueue_script( 'hmbkp-fancybox', HMBKP_PLUGIN_URL . '/assets/fancyBox/source/jquery.fancybox.js', array( 'jquery' ), sanitize_title( HMBKP_VERSION ) );
|
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",
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot, cuvelier
|
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.3.3
|
5 |
Tested up to: 3.5
|
6 |
-
Stable tag: 2.
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
@@ -103,6 +103,31 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
#### 2.1.2
|
107 |
|
108 |
* Fix an issue that could stop the settings panel from closing on save on servers which return `'0'` for ajax requests.
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.3.3
|
5 |
Tested up to: 3.5
|
6 |
+
Stable tag: 2.2
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
#### 2.2
|
107 |
+
|
108 |
+
* Don't repeatedly try to create the backups directory in the `uploads` if `uploads` isn't writable.
|
109 |
+
* Show the correct path in the warning message when the backups path can't be created.
|
110 |
+
* Include any user defined auth keys and salts when generating the HMBKP_SECRET_KEY.
|
111 |
+
* Stop relying on the built in WordPress schedules as other plugins can mess with them.
|
112 |
+
* Delete old backups everytime the backups page is viewed in an attempt to ensure old backups are always cleaned up.
|
113 |
+
* Improve modals on small screens and mobile devices.
|
114 |
+
* Use the retina spinner on retina screens.
|
115 |
+
* Update buttons to the new 3.5 style.
|
116 |
+
* Fix a possible fatal error caused when a symlink points to a location that is outside an `open_basedir` restriction.
|
117 |
+
* Fix an issue that could cause backups using PclZip with a custom backups path to fail.
|
118 |
+
* Security hardening by improving escaping, sanitizitation and validation.
|
119 |
+
* Increase the timeout on the ajax cron check, should fix issues with cron errors showing on slow sites.
|
120 |
+
* Only clear the cached backup filesize if the backup type changes.
|
121 |
+
* Add unit tests for all the schedule recurrences.
|
122 |
+
* Fix an issue which could cause weekly and monthly schedules to fail.
|
123 |
+
* Add an `uninstall.php` file which removes all BackUpWordPress data and options.
|
124 |
+
* Catch a possible fatal error in `RecursiveDirectoryIterator::hasChildren`.
|
125 |
+
* Fix an issue that could cause mysqldump errors to be ignored thus causing the backup process to use an incomplete mysqldump file.
|
126 |
+
|
127 |
+
#### 2.1.3
|
128 |
+
|
129 |
+
* Fix a regression in `2.1.2` that broke previewing and adding new exclude rules.
|
130 |
+
|
131 |
#### 2.1.2
|
132 |
|
133 |
* Fix an issue that could stop the settings panel from closing on save on servers which return `'0'` for ajax requests.
|
uninstall.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
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' );
|
11 |
+
|
12 |
+
$schedules = new HMBKP_Schedules;
|
13 |
+
|
14 |
+
// Cancel all the schedules and delete all the backups
|
15 |
+
foreach ( $schedules->get_schedules() as $schedule )
|
16 |
+
$schedule->cancel( true );
|
17 |
+
|
18 |
+
// Remove the backups directory
|
19 |
+
hmbkp_rmdirtree( hmbkp_path() );
|
20 |
+
|
21 |
+
// Remove all the options
|
22 |
+
foreach ( array( 'hmbkp_plugin_version', 'hmbkp_path', 'hmbkp_path_default' ) as $option )
|
23 |
+
delete_option( $option );
|