Version Description
Download this release
Release Info
| Developer | willmot |
| Plugin | |
| Version | 1.6.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.6.8 to 1.6.9
- admin.actions.php +5 -4
- admin.constants.php +13 -13
- admin.menus.php +2 -2
- admin.settings.php +3 -3
- admin.status.php +24 -8
- backupwordpress.mo +0 -0
- backupwordpress.po +277 -231
- functions/backup.functions.php +3 -3
- functions/core.functions.php +25 -1
- functions/interface.functions.php +8 -7
- functions/wp-cli.php +1 -1
- languages/hmbkp-de_DE.mo +0 -0
- languages/hmbkp-de_DE.po +539 -0
- languages/hmbkp-es_ES.mo +0 -0
- languages/hmbkp-es_ES.po +359 -272
- languages/hmbkp-eu.mo +0 -0
- languages/hmbkp-eu.po +432 -0
- languages/hmbkp-fr_FR.mo +0 -0
- languages/hmbkp-fr_FR.po +359 -272
- languages/hmbkp-lt.mo +0 -0
- languages/hmbkp-lt.po +432 -0
- languages/hmbkp-lt_LT.mo +0 -0
- languages/hmbkp-lt_LT.po +340 -249
- languages/hmbkp-nl.mo +0 -0
- languages/hmbkp-nl.po +432 -0
- languages/hmbkp-ro_RO.mo +0 -0
- languages/hmbkp-ro_RO.po +335 -244
- languages/hmbkp-ru_RU.mo +0 -0
- languages/hmbkp-ru_RU.po +340 -249
- languages/hmbkp-sr_SR.mo +0 -0
- languages/hmbkp-sr_SR.po +334 -243
- plugin.php +1 -1
- readme.txt +16 -6
admin.actions.php
CHANGED
|
@@ -42,12 +42,12 @@ function hmbkp_option_save() {
|
|
| 42 |
if ( wp_get_schedule( 'hmbkp_schedule_backup_hook' ) != get_option( 'hmbkp_schedule_frequency' ) )
|
| 43 |
wp_clear_scheduled_hook( 'hmbkp_schedule_backup_hook' );
|
| 44 |
|
| 45 |
-
if ( isset( $_POST['hmbkp_what_to_backup'] ) && $_POST['hmbkp_what_to_backup'] == '
|
| 46 |
|
| 47 |
update_option( 'hmbkp_files_only', 'true' );
|
| 48 |
delete_option( 'hmbkp_database_only' );
|
| 49 |
|
| 50 |
-
} elseif ( isset( $_POST['hmbkp_what_to_backup'] ) && $_POST['hmbkp_what_to_backup'] == '
|
| 51 |
|
| 52 |
update_option( 'hmbkp_database_only', 'true' );
|
| 53 |
delete_option( 'hmbkp_files_only' );
|
|
@@ -167,9 +167,10 @@ function hmbkp_request_download_backup() {
|
|
| 167 |
if ( file_exists( hmbkp_path() . '/.htaccess' ) )
|
| 168 |
unlink( hmbkp_path() . '/.htaccess' );
|
| 169 |
|
|
|
|
| 170 |
hmbkp_path();
|
| 171 |
|
| 172 |
-
wp_redirect( add_query_arg( 'key', md5( HMBKP_SECURE_KEY ), str_replace( hmbkp_conform_dir(
|
| 173 |
|
| 174 |
exit;
|
| 175 |
|
|
@@ -246,7 +247,7 @@ function hmbkp_ajax_cron_test() {
|
|
| 246 |
$response = wp_remote_get( site_url( 'wp-cron.php' ) );
|
| 247 |
|
| 248 |
if ( ! is_wp_error( $response ) && $response['response']['code'] != '200' )
|
| 249 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '%s is returning a %s response which could mean cron jobs aren\'t getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %s for more details.', 'hmbkp' ), '<code>wp-cron.php</code>', '<code>' . $response['response']['code'] . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
|
| 250 |
|
| 251 |
else
|
| 252 |
echo 1;
|
| 42 |
if ( wp_get_schedule( 'hmbkp_schedule_backup_hook' ) != get_option( 'hmbkp_schedule_frequency' ) )
|
| 43 |
wp_clear_scheduled_hook( 'hmbkp_schedule_backup_hook' );
|
| 44 |
|
| 45 |
+
if ( isset( $_POST['hmbkp_what_to_backup'] ) && $_POST['hmbkp_what_to_backup'] == 'files_only' ) {
|
| 46 |
|
| 47 |
update_option( 'hmbkp_files_only', 'true' );
|
| 48 |
delete_option( 'hmbkp_database_only' );
|
| 49 |
|
| 50 |
+
} elseif ( isset( $_POST['hmbkp_what_to_backup'] ) && $_POST['hmbkp_what_to_backup'] == 'database_only' ) {
|
| 51 |
|
| 52 |
update_option( 'hmbkp_database_only', 'true' );
|
| 53 |
delete_option( 'hmbkp_files_only' );
|
| 167 |
if ( file_exists( hmbkp_path() . '/.htaccess' ) )
|
| 168 |
unlink( hmbkp_path() . '/.htaccess' );
|
| 169 |
|
| 170 |
+
// Force a refresh of the HMBKP_SECURE_KEY in .htaccess
|
| 171 |
hmbkp_path();
|
| 172 |
|
| 173 |
+
wp_redirect( add_query_arg( 'key', md5( HMBKP_SECURE_KEY ), str_replace( realpath( hmbkp_conform_dir( get_home_path() ) ), home_url(), base64_decode( $_GET['hmbkp_download'] ) ) ), 303 );
|
| 174 |
|
| 175 |
exit;
|
| 176 |
|
| 247 |
$response = wp_remote_get( site_url( 'wp-cron.php' ) );
|
| 248 |
|
| 249 |
if ( ! is_wp_error( $response ) && $response['response']['code'] != '200' )
|
| 250 |
+
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['response']['code'] . '</code>', '<a href="http://wordpress.org/extend/plugins/backupwordpress/faq/">FAQ</a>' ) . '</p></div>';
|
| 251 |
|
| 252 |
else
|
| 253 |
echo 1;
|
admin.constants.php
CHANGED
|
@@ -1,44 +1,44 @@
|
|
| 1 |
<div id="hmbkp-constants">
|
| 2 |
|
| 3 |
-
<p><?php printf( __( 'You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted.', 'hmbkp' ), '<code>define</code>', '<code>' . __( 'Constants', 'hmbkp' )
|
| 4 |
|
| 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"
|
| 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 %s executable. Will be used for the %s part of the back up if available.', 'hmbkp' ), '<code>mysqldump</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>' ); ?></p><p class="example"
|
| 12 |
|
| 13 |
<dt<?php if ( defined( 'HMBKP_ZIP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_ZIP_PATH</code></dt>
|
| 14 |
-
<dd><p><?php printf( __( 'The path to your %s executable. Will be used to zip up your %s and %s if available.', 'hmbkp' ), '<code>zip</code>', '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>' ); ?><p class="example"
|
| 15 |
|
| 16 |
<dt<?php if ( defined( 'HMBKP_DISABLE_AUTOMATIC_BACKUP' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DISABLE_AUTOMATIC_BACKUP</code></dt>
|
| 17 |
-
<dd><p><?php printf( __( 'Completely disables the automatic back up. You can still back up using the "Back Up Now" button. Defaults to %s.', 'hmbkp' ), '<code>(bool) false</code>' ); ?><p class="example"
|
| 18 |
|
| 19 |
<dt<?php if ( defined( 'HMBKP_MAX_BACKUPS' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_MAX_BACKUPS</code></dt>
|
| 20 |
-
<dd><p><?php printf( __( 'Number of backups to keep, older backups will be deleted automatically when a new backup is completed.
|
| 21 |
|
| 22 |
<dt<?php if ( defined( 'HMBKP_FILES_ONLY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_FILES_ONLY</code></dt>
|
| 23 |
-
<dd><p><?php printf( __( 'Backup %s only, your %s won\'t be backed up. Defaults to %s.', 'hmbkp' ), '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>', '<code>(bool) false</code>' ); ?><p class="example"
|
| 24 |
|
| 25 |
<dt<?php if ( defined( 'HMBKP_DATABASE_ONLY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DATABASE_ONLY</code></dt>
|
| 26 |
-
<dd><p><?php printf( __( 'Backup %s only, your %s won\'t be backed up. Defaults to %s.', 'hmbkp' ), '<code>' . __( 'database', 'hmbkp' ) . '</code>', '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>(bool) false</code>' ); ?><p class="example"
|
| 27 |
|
| 28 |
<dt<?php if ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DAILY_SCHEDULE_TIME</code></dt>
|
| 29 |
-
<dd><p><?php printf( __( 'The time that the daily back up should run. Defaults to %s.', 'hmbkp' ), '<code>23:00</code>' ); ?><p class="example"
|
| 30 |
|
| 31 |
<dt<?php if ( defined( 'HMBKP_EMAIL' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_EMAIL</code></dt>
|
| 32 |
-
<dd><p><?php printf( __( 'Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s.', 'hmbkp' ), '<code>(bool) false</code>' ); ?><p class="example"
|
| 33 |
|
| 34 |
<dt<?php if ( defined( 'HMBKP_EXCLUDE' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_EXCLUDE</code></dt>
|
| 35 |
-
<dd><p><?php _e( 'Comma separated list of files or directories to exclude, the backups directory is automatically excluded.', 'hmbkp' ); ?><p class="example"
|
| 36 |
|
| 37 |
<dt<?php if ( defined( 'HMBKP_CAPABILITY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_CAPABILITY</code></dt>
|
| 38 |
-
<dd><p><?php printf( __( 'The capability to use when calling %s. Defaults to %s.', 'hmbkp' ), '<code>add_menu_page</code>', '<code>manage_options</code>' ); ?><p class="example"
|
| 39 |
|
| 40 |
<dt<?php if ( defined( 'HMBKP_ROOT' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_ROOT</code></dt>
|
| 41 |
-
<dd><p><?php printf( __( 'The root directory that is backed up. Defaults to %s.', 'hmbkp' ), '<code>
|
| 42 |
|
| 43 |
</dl>
|
| 44 |
|
| 1 |
<div id="hmbkp-constants">
|
| 2 |
|
| 3 |
+
<p><?php printf( __( '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.', 'hmbkp' ), '<code>define</code>', '<code>' . __( 'Constants', 'hmbkp' ) . '</code>', '<code>wp-config.php</code>', '<a href="http://codex.wordpress.org/Editing_wp-config.php">' . __( 'The Codex can help', 'hmbkp' ) . '</a>', '<code>' . __( 'Constants', 'hmbkp' ) . '</code>' ); ?></p>
|
| 4 |
|
| 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>
|
| 12 |
|
| 13 |
<dt<?php if ( defined( 'HMBKP_ZIP_PATH' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_ZIP_PATH</code></dt>
|
| 14 |
+
<dd><p><?php printf( __( 'The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available.', 'hmbkp' ), '<code>zip</code>', '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_ZIP_PATH', '/opt/local/bin/zip' );</code></p></dd>
|
| 15 |
|
| 16 |
<dt<?php if ( defined( 'HMBKP_DISABLE_AUTOMATIC_BACKUP' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DISABLE_AUTOMATIC_BACKUP</code></dt>
|
| 17 |
+
<dd><p><?php printf( __( 'Completely disables the automatic back up. You can still back up using the "Back Up Now" button. Defaults to %s.', 'hmbkp' ), '<code>(bool) false</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_DISABLE_AUTOMATIC_BACKUP', true );</code></p></dd>
|
| 18 |
|
| 19 |
<dt<?php if ( defined( 'HMBKP_MAX_BACKUPS' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_MAX_BACKUPS</code></dt>
|
| 20 |
+
<dd><p><?php printf( __( 'Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s.', 'hmbkp' ), '<code>(int) 10</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_MAX_BACKUPS', 5 );</code></p></dd>
|
| 21 |
|
| 22 |
<dt<?php if ( defined( 'HMBKP_FILES_ONLY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_FILES_ONLY</code></dt>
|
| 23 |
+
<dd><p><?php printf( __( 'Backup %1$s only, your %2$s won\'t be backed up. Defaults to %3$s.', 'hmbkp' ), '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>' . __( 'database', 'hmbkp' ) . '</code>', '<code>(bool) false</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_FILES_ONLY', true );</code></p></dd>
|
| 24 |
|
| 25 |
<dt<?php if ( defined( 'HMBKP_DATABASE_ONLY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DATABASE_ONLY</code></dt>
|
| 26 |
+
<dd><p><?php printf( __( 'Backup %1$s only, your %2$s won\'t be backed up. Defaults to %3$s.', 'hmbkp' ), '<code>' . __( 'database', 'hmbkp' ) . '</code>', '<code>' . __( 'files', 'hmbkp' ) . '</code>', '<code>(bool) false</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_DATABASE_ONLY', true );</code></p></dd>
|
| 27 |
|
| 28 |
<dt<?php if ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_DAILY_SCHEDULE_TIME</code></dt>
|
| 29 |
+
<dd><p><?php printf( __( 'The time that the daily back up should run. Defaults to %s.', 'hmbkp' ), '<code>23:00</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_DAILY_SCHEDULE_TIME', '07:30' );</code></p></dd>
|
| 30 |
|
| 31 |
<dt<?php if ( defined( 'HMBKP_EMAIL' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_EMAIL</code></dt>
|
| 32 |
+
<dd><p><?php printf( __( 'Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s.', 'hmbkp' ), '<code>(bool) false</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_EMAIL', 'email@example.com' );</code></p></dd>
|
| 33 |
|
| 34 |
<dt<?php if ( defined( 'HMBKP_EXCLUDE' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_EXCLUDE</code></dt>
|
| 35 |
+
<dd><p><?php _e( 'Comma separated list of files or directories to exclude, the backups directory is automatically excluded.', 'hmbkp' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_EXCLUDE', '/wp-content/uploads/, /stats/, .svn/, *.txt' );</code></p></dd>
|
| 36 |
|
| 37 |
<dt<?php if ( defined( 'HMBKP_CAPABILITY' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_CAPABILITY</code></dt>
|
| 38 |
+
<dd><p><?php printf( __( 'The capability to use when calling %1$s. Defaults to %2$s.', 'hmbkp' ), '<code>add_menu_page</code>', '<code>manage_options</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_CAPABILITY', 'edit_posts' );</code></p></dd>
|
| 39 |
|
| 40 |
<dt<?php if ( defined( 'HMBKP_ROOT' ) ) { ?> class="hmbkp_active"<?php } ?>><code>HMBKP_ROOT</code></dt>
|
| 41 |
+
<dd><p><?php printf( __( 'The root directory that is backed up. Defaults to %s.', 'hmbkp' ), '<code>' . hmbkp_get_home_path() . '</code>' ); ?><p class="example"><?php _e( 'e.g.', 'hmbkp' ); ?> <code>define( 'HMBKP_ROOT', ABSPATH . 'wp/' );</code></p></dd>
|
| 42 |
|
| 43 |
</dl>
|
| 44 |
|
admin.menus.php
CHANGED
|
@@ -62,7 +62,7 @@ function hmbkp_contextual_help() {
|
|
| 62 |
|
| 63 |
// Check if help is for the right version.
|
| 64 |
if ( ! empty( $plugin->version ) && version_compare( HMBKP_VERSION, $plugin->version, '!=' ) )
|
| 65 |
-
$warning = sprintf( '<div id="message" class="updated inline"><p><strong>' . __( 'You are not using the latest stable version of BackUpWordPress', 'hmbkp' ) . '</strong> — ' . __( 'The information below is for version %s. View the
|
| 66 |
|
| 67 |
ob_start();
|
| 68 |
require_once( HMBKP_PLUGIN_PATH . '/admin.constants.php' );
|
|
@@ -77,7 +77,7 @@ function hmbkp_contextual_help() {
|
|
| 77 |
|
| 78 |
get_current_screen()->set_help_sidebar(
|
| 79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
| 80 |
-
'<p><a href="https://github.com/humanmade/backupwordpress" target="_blank">
|
| 81 |
'<p><a href="http://wordpress.org/tags/backupwordpress?forum_id=10" target="_blank">' . __( 'Support Forums', 'hmbkp' ) .'</a></p>' .
|
| 82 |
'<p><a href="http://translate.hmn.md/" target="_blank">' . __( 'Help with translation', 'hmbkp' ) .'</a></p>'
|
| 83 |
);
|
| 62 |
|
| 63 |
// Check if help is for the right version.
|
| 64 |
if ( ! empty( $plugin->version ) && version_compare( HMBKP_VERSION, $plugin->version, '!=' ) )
|
| 65 |
+
$warning = sprintf( '<div id="message" class="updated inline"><p><strong>' . __( 'You are not using the latest stable version of BackUpWordPress', 'hmbkp' ) . '</strong> — ' . __( 'The information below is for version %1$s. View the %2$s file for help specific to version %3$s.', 'hmbkp' ) . '</p></div>', '<code>' . $plugin->version . '</code>', '<code>readme.txt</code>', '<code>' . HMBKP_VERSION . '</code>' );
|
| 66 |
|
| 67 |
ob_start();
|
| 68 |
require_once( HMBKP_PLUGIN_PATH . '/admin.constants.php' );
|
| 77 |
|
| 78 |
get_current_screen()->set_help_sidebar(
|
| 79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
| 80 |
+
'<p><a href="https://github.com/humanmade/backupwordpress" target="_blank">GitHub</a></p>' .
|
| 81 |
'<p><a href="http://wordpress.org/tags/backupwordpress?forum_id=10" target="_blank">' . __( 'Support Forums', 'hmbkp' ) .'</a></p>' .
|
| 82 |
'<p><a href="http://translate.hmn.md/" target="_blank">' . __( 'Help with translation', 'hmbkp' ) .'</a></p>'
|
| 83 |
);
|
admin.settings.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
<h3><?php _e( 'Settings', 'hmbkp' ); ?></h3>
|
| 4 |
|
| 5 |
-
<p><?php printf( __( 'You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below.', 'hmbkp' ), '<code>' . __( 'Constants', 'hmbkp' ) . '</code>', '<code>wp-config.php</code>', '<code>' . __( 'Constants', 'hmbkp' ) . '</code>', '<a href="#contextual-help-wrap" class="hmbkp-show-help-tab">' . __( 'help panel' ) . '</a>' ); ?></p>
|
| 6 |
|
| 7 |
<form method="post">
|
| 8 |
|
|
@@ -60,8 +60,8 @@
|
|
| 60 |
|
| 61 |
<select name="hmbkp_what_to_backup" id="hmbkp_what_to_backup" <?php disabled( defined( 'HMBKP_FILES_ONLY' ) || defined( 'HMBKP_DATABASE_ONLY' ) ); ?>>
|
| 62 |
<option value="default" <?php selected( ! get_option( 'hmbkp_files_only' ) && !get_option( 'hmbkp_database_only' ) ); ?>><?php _e( 'database & files', 'hmbkp' ); ?></option>
|
| 63 |
-
<option <?php selected( hmbkp_get_database_only() ); ?>><?php _e( 'database only', 'hmbkp' ); ?></option>
|
| 64 |
-
<option <?php selected( hmbkp_get_files_only() ); ?>><?php _e( 'files only', 'hmbkp' ); ?></option>
|
| 65 |
</select>
|
| 66 |
|
| 67 |
</td>
|
| 2 |
|
| 3 |
<h3><?php _e( 'Settings', 'hmbkp' ); ?></h3>
|
| 4 |
|
| 5 |
+
<p><?php printf( __( 'You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below.', 'hmbkp' ), '<code>' . __( 'Constants', 'hmbkp' ) . '</code>', '<code>wp-config.php</code>', '<code>' . __( 'Constants', 'hmbkp' ) . '</code>', '<a href="#contextual-help-wrap" class="hmbkp-show-help-tab">' . __( 'help panel', 'hmbkp' ) . '</a>' ); ?></p>
|
| 6 |
|
| 7 |
<form method="post">
|
| 8 |
|
| 60 |
|
| 61 |
<select name="hmbkp_what_to_backup" id="hmbkp_what_to_backup" <?php disabled( defined( 'HMBKP_FILES_ONLY' ) || defined( 'HMBKP_DATABASE_ONLY' ) ); ?>>
|
| 62 |
<option value="default" <?php selected( ! get_option( 'hmbkp_files_only' ) && !get_option( 'hmbkp_database_only' ) ); ?>><?php _e( 'database & files', 'hmbkp' ); ?></option>
|
| 63 |
+
<option value="database_only" <?php selected( hmbkp_get_database_only() ); ?>><?php _e( 'database only', 'hmbkp' ); ?></option>
|
| 64 |
+
<option value="files_only" <?php selected( hmbkp_get_files_only() ); ?>><?php _e( 'files only', 'hmbkp' ); ?></option>
|
| 65 |
</select>
|
| 66 |
|
| 67 |
</td>
|
admin.status.php
CHANGED
|
@@ -10,19 +10,35 @@ if ( ( ! empty( $_POST['hmbkp_settings_submit'] ) ) && ( ! wp_next_scheduled( 'h
|
|
| 10 |
|
| 11 |
<?php else :
|
| 12 |
|
| 13 |
-
if ( ! hmbkp_get_database_only() && ! hmbkp_get_files_only() )
|
| 14 |
-
$what_to_backup = '<code>' . __( 'database', 'hmbkp' ) . '</code> ' . __( '&', 'hmbkp' ) .
|
|
|
|
| 15 |
|
| 16 |
-
elseif ( hmbkp_get_database_only() )
|
| 17 |
$what_to_backup = '<code>' . __( 'database', 'hmbkp' ) . '</code>';
|
|
|
|
| 18 |
|
| 19 |
-
else
|
| 20 |
-
$what_to_backup = '<code>' . __( 'files', 'hmbkp' ) . '</code>';
|
|
|
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
| 23 |
$schedules = wp_get_schedules();
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
<?php endif; ?>
|
| 28 |
|
| 10 |
|
| 11 |
<?php else :
|
| 12 |
|
| 13 |
+
if ( ! hmbkp_get_database_only() && ! hmbkp_get_files_only() ) :
|
| 14 |
+
$what_to_backup = '<code>' . __( 'database', 'hmbkp' ) . '</code> ' . __( '&', 'hmbkp' ) . ' <code>' . __( 'files', 'hmbkp' ) . '</code>';
|
| 15 |
+
$count = 2;
|
| 16 |
|
| 17 |
+
elseif ( hmbkp_get_database_only() ) :
|
| 18 |
$what_to_backup = '<code>' . __( 'database', 'hmbkp' ) . '</code>';
|
| 19 |
+
$count = 1;
|
| 20 |
|
| 21 |
+
else :
|
| 22 |
+
$what_to_backup = '<code>' . __( 'files', 'hmbkp' ) . '</code>';
|
| 23 |
+
$count = 2;
|
| 24 |
|
| 25 |
+
endif;
|
| 26 |
+
|
| 27 |
+
$offset = current_time( 'timestamp' ) - time();
|
| 28 |
$schedules = wp_get_schedules();
|
| 29 |
+
$schedule = $schedules[wp_get_schedule( 'hmbkp_schedule_backup_hook' )]['display'];
|
| 30 |
+
printf(
|
| 31 |
+
_n(
|
| 32 |
+
'Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s.', // singular
|
| 33 |
+
'Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s.', // plural
|
| 34 |
+
$count, 'hmbkp'
|
| 35 |
+
),
|
| 36 |
+
$what_to_backup,
|
| 37 |
+
'<code>' . $schedule . '</code>',
|
| 38 |
+
'<code>' . date_i18n( get_option( 'time_format' ), wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) + $offset ) . '</code>',
|
| 39 |
+
'<code title="' . sprintf( __( 'It\'s currently %s', 'hmbkp' ), date_i18n( get_option( 'time_format' ) ) ) . '">' . date_i18n( get_option( 'date_format' ), wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) + $offset ) . '</code>',
|
| 40 |
+
'<code>' . hmbkp_path() . '</code>'
|
| 41 |
+
); ?>
|
| 42 |
|
| 43 |
<?php endif; ?>
|
| 44 |
|
backupwordpress.mo
CHANGED
|
Binary file
|
backupwordpress.po
CHANGED
|
@@ -2,52 +2,150 @@ msgid ""
|
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: BackUpWordPress\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
-
"POT-Creation-Date: 2012-
|
| 6 |
-
"PO-Revision-Date: 2012-
|
| 7 |
-
"Last-Translator:
|
| 8 |
"Language-Team: Human Made Limited <support@humanmade.co.uk>\n"
|
|
|
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
| 13 |
"X-Poedit-Basepath: .\n"
|
| 14 |
"X-Poedit-Language: English\n"
|
| 15 |
"X-Poedit-Country: UNITED KINGDOM\n"
|
|
|
|
|
|
|
| 16 |
"X-Poedit-SearchPath-0: .\n"
|
| 17 |
|
| 18 |
-
#: admin.
|
| 19 |
-
|
|
|
|
| 20 |
msgstr ""
|
| 21 |
|
| 22 |
-
#: admin.
|
| 23 |
#, php-format
|
| 24 |
-
msgid "%s
|
| 25 |
msgstr ""
|
| 26 |
|
| 27 |
-
#: admin.
|
| 28 |
-
#:
|
| 29 |
-
#:
|
| 30 |
-
|
| 31 |
-
#: functions/interface.functions.php:119
|
| 32 |
-
#: functions/interface.functions.php:129
|
| 33 |
-
#: functions/interface.functions.php:139
|
| 34 |
-
#: functions/interface.functions.php:149
|
| 35 |
-
msgid "BackUpWordPress has detected a problem."
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
-
#: admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
#, php-format
|
| 40 |
-
msgid "
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
-
#: admin.
|
| 44 |
-
msgid "
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
-
#: admin.
|
| 48 |
-
msgid "
|
| 49 |
msgstr ""
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
#: admin.backups-table.php:13
|
| 52 |
msgid "Size"
|
| 53 |
msgstr ""
|
|
@@ -56,20 +154,43 @@ msgstr ""
|
|
| 56 |
msgid "Actions"
|
| 57 |
msgstr ""
|
| 58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
#: admin.backups-table.php:21
|
| 60 |
#, php-format
|
| 61 |
msgid "Total %s"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
-
#: admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
#, php-format
|
| 66 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
#: admin.constants.php:3
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
msgid "Constants"
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
#: admin.constants.php:3
|
|
@@ -83,7 +204,7 @@ msgstr ""
|
|
| 83 |
|
| 84 |
#: admin.constants.php:11
|
| 85 |
#, php-format
|
| 86 |
-
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
#: admin.constants.php:11
|
|
@@ -91,20 +212,20 @@ msgstr ""
|
|
| 91 |
#: admin.constants.php:23
|
| 92 |
#: admin.constants.php:26
|
| 93 |
#: admin.status.php:14
|
| 94 |
-
#: admin.status.php:
|
| 95 |
msgid "database"
|
| 96 |
msgstr ""
|
| 97 |
|
| 98 |
#: admin.constants.php:14
|
| 99 |
#, php-format
|
| 100 |
-
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
| 101 |
msgstr ""
|
| 102 |
|
| 103 |
#: admin.constants.php:14
|
| 104 |
#: admin.constants.php:23
|
| 105 |
#: admin.constants.php:26
|
| 106 |
#: admin.status.php:14
|
| 107 |
-
#: admin.status.php:
|
| 108 |
msgid "files"
|
| 109 |
msgstr ""
|
| 110 |
|
|
@@ -115,13 +236,13 @@ msgstr ""
|
|
| 115 |
|
| 116 |
#: admin.constants.php:20
|
| 117 |
#, php-format
|
| 118 |
-
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed.
|
| 119 |
msgstr ""
|
| 120 |
|
| 121 |
#: admin.constants.php:23
|
| 122 |
#: admin.constants.php:26
|
| 123 |
#, php-format
|
| 124 |
-
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 125 |
msgstr ""
|
| 126 |
|
| 127 |
#: admin.constants.php:29
|
|
@@ -140,12 +261,37 @@ msgstr ""
|
|
| 140 |
|
| 141 |
#: admin.constants.php:38
|
| 142 |
#, php-format
|
| 143 |
-
msgid "The capability to use when calling %s. Defaults to %s."
|
| 144 |
msgstr ""
|
| 145 |
|
| 146 |
-
#: admin.
|
| 147 |
-
|
| 148 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
#: admin.menus.php:10
|
|
@@ -159,7 +305,7 @@ msgstr ""
|
|
| 159 |
|
| 160 |
#: admin.menus.php:65
|
| 161 |
#, php-format
|
| 162 |
-
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
| 163 |
msgstr ""
|
| 164 |
|
| 165 |
#: admin.menus.php:75
|
|
@@ -178,167 +324,140 @@ msgstr ""
|
|
| 178 |
msgid "Help with translation"
|
| 179 |
msgstr ""
|
| 180 |
|
| 181 |
-
#:
|
| 182 |
-
|
| 183 |
-
msgid "Settings"
|
| 184 |
-
msgstr ""
|
| 185 |
-
|
| 186 |
-
#: admin.page.php:23
|
| 187 |
-
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#:
|
| 191 |
#, php-format
|
| 192 |
-
msgid "
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
-
#: admin.
|
| 196 |
#, php-format
|
| 197 |
-
msgid "
|
| 198 |
-
msgstr ""
|
| 199 |
-
|
| 200 |
-
#: admin.settings.php:5
|
| 201 |
-
msgid "help panel"
|
| 202 |
-
msgstr ""
|
| 203 |
-
|
| 204 |
-
#: admin.settings.php:16
|
| 205 |
-
msgid "Automatic Backups"
|
| 206 |
msgstr ""
|
| 207 |
|
| 208 |
-
#: admin.
|
| 209 |
-
msgid "
|
| 210 |
msgstr ""
|
| 211 |
|
| 212 |
-
#: admin.
|
| 213 |
-
msgid "
|
| 214 |
msgstr ""
|
| 215 |
|
| 216 |
-
#: admin.
|
| 217 |
-
|
| 218 |
-
|
|
|
|
|
|
|
|
|
|
| 219 |
|
| 220 |
-
#: admin.
|
| 221 |
-
|
|
|
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
-
#: admin.
|
| 225 |
-
|
|
|
|
| 226 |
msgstr ""
|
| 227 |
|
| 228 |
-
#: admin.
|
| 229 |
-
msgid "
|
| 230 |
msgstr ""
|
| 231 |
|
| 232 |
-
#: admin.
|
| 233 |
-
|
|
|
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
-
#: admin.
|
| 237 |
-
|
|
|
|
| 238 |
msgstr ""
|
| 239 |
|
| 240 |
-
#:
|
| 241 |
-
msgid "
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
-
#:
|
| 245 |
-
msgid "
|
| 246 |
msgstr ""
|
| 247 |
|
| 248 |
-
#:
|
| 249 |
-
msgid "
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
-
#:
|
| 253 |
-
msgid "
|
| 254 |
msgstr ""
|
| 255 |
|
| 256 |
-
#:
|
| 257 |
-
msgid "
|
| 258 |
msgstr ""
|
| 259 |
|
| 260 |
-
#:
|
| 261 |
-
|
|
|
|
| 262 |
msgstr ""
|
| 263 |
|
| 264 |
-
#:
|
| 265 |
#, php-format
|
| 266 |
-
msgid "The
|
| 267 |
-
msgstr ""
|
| 268 |
-
|
| 269 |
-
#: admin.settings.php:77
|
| 270 |
-
msgid "Email backups"
|
| 271 |
-
msgstr ""
|
| 272 |
-
|
| 273 |
-
#: admin.settings.php:78
|
| 274 |
-
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 275 |
-
msgstr ""
|
| 276 |
-
|
| 277 |
-
#: admin.settings.php:82
|
| 278 |
-
msgid "Excludes"
|
| 279 |
-
msgstr ""
|
| 280 |
-
|
| 281 |
-
#: admin.settings.php:85
|
| 282 |
-
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 283 |
-
msgstr ""
|
| 284 |
-
|
| 285 |
-
#: admin.settings.php:86
|
| 286 |
-
msgid "e.g."
|
| 287 |
-
msgstr ""
|
| 288 |
-
|
| 289 |
-
#: admin.settings.php:94
|
| 290 |
-
msgid "Save Changes"
|
| 291 |
msgstr ""
|
| 292 |
|
| 293 |
-
#:
|
| 294 |
#, php-format
|
| 295 |
-
msgid "
|
| 296 |
msgstr ""
|
| 297 |
|
| 298 |
-
#:
|
| 299 |
-
|
|
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
-
#:
|
| 303 |
-
msgid "
|
| 304 |
msgstr ""
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
|
| 308 |
-
msgid "Your %s will be automatically backed up <code>%s</code>. The next backup will occur at %s on %s and be saved to %s."
|
| 309 |
msgstr ""
|
| 310 |
|
| 311 |
-
#:
|
| 312 |
#, php-format
|
| 313 |
-
msgid "
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
-
#:
|
| 317 |
#, php-format
|
| 318 |
-
msgid "
|
| 319 |
-
|
|
|
|
|
|
|
| 320 |
|
| 321 |
-
#:
|
| 322 |
-
msgid "
|
| 323 |
msgstr ""
|
| 324 |
|
| 325 |
-
#:
|
| 326 |
#, php-format
|
| 327 |
-
msgid "
|
| 328 |
msgstr ""
|
| 329 |
|
| 330 |
-
#:
|
| 331 |
#, php-format
|
| 332 |
-
msgid "
|
| 333 |
msgstr ""
|
| 334 |
|
| 335 |
-
#:
|
| 336 |
-
|
|
|
|
| 337 |
msgstr ""
|
| 338 |
|
| 339 |
-
#:
|
| 340 |
-
|
| 341 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
#: functions/backup.actions.php:12
|
|
@@ -362,32 +481,32 @@ msgstr ""
|
|
| 362 |
#: functions/backup.functions.php:148
|
| 363 |
#, php-format
|
| 364 |
msgid ""
|
| 365 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 366 |
-
"
|
| 367 |
-
"The backup file should be attached to this email
|
| 368 |
-
"
|
| 369 |
-
"You can also download the backup file by clicking the link below
|
| 370 |
-
"
|
| 371 |
-
"%s
|
| 372 |
-
"
|
| 373 |
-
"Kind Regards
|
| 374 |
-
"
|
| 375 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: functions/backup.functions.php:158
|
| 379 |
#, php-format
|
| 380 |
msgid ""
|
| 381 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 382 |
-
"
|
| 383 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 384 |
-
"
|
| 385 |
-
"You can download the backup file by clicking the link below
|
| 386 |
-
"
|
| 387 |
-
"%s
|
| 388 |
-
"
|
| 389 |
-
"Kind Regards
|
| 390 |
-
"
|
| 391 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 392 |
msgstr ""
|
| 393 |
|
|
@@ -396,76 +515,3 @@ msgstr ""
|
|
| 396 |
msgid "This %s file ensures that other people cannot download your backup files."
|
| 397 |
msgstr ""
|
| 398 |
|
| 399 |
-
#: functions/interface.functions.php:25
|
| 400 |
-
msgid "Download"
|
| 401 |
-
msgstr ""
|
| 402 |
-
|
| 403 |
-
#: functions/interface.functions.php:26
|
| 404 |
-
msgid "Delete"
|
| 405 |
-
msgstr ""
|
| 406 |
-
|
| 407 |
-
#: functions/interface.functions.php:48
|
| 408 |
-
msgid "Settings saved."
|
| 409 |
-
msgstr ""
|
| 410 |
-
|
| 411 |
-
#: functions/interface.functions.php:67
|
| 412 |
-
#: functions/interface.functions.php:79
|
| 413 |
-
msgid "BackUpWordPress is almost ready."
|
| 414 |
-
msgstr ""
|
| 415 |
-
|
| 416 |
-
#: functions/interface.functions.php:67
|
| 417 |
-
#, php-format
|
| 418 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 419 |
-
msgstr ""
|
| 420 |
-
|
| 421 |
-
#: functions/interface.functions.php:79
|
| 422 |
-
#, php-format
|
| 423 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 424 |
-
msgstr ""
|
| 425 |
-
|
| 426 |
-
#: functions/interface.functions.php:89
|
| 427 |
-
#, php-format
|
| 428 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 429 |
-
msgstr ""
|
| 430 |
-
|
| 431 |
-
#: functions/interface.functions.php:99
|
| 432 |
-
#, php-format
|
| 433 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 434 |
-
msgstr ""
|
| 435 |
-
|
| 436 |
-
#: functions/interface.functions.php:109
|
| 437 |
-
#, php-format
|
| 438 |
-
msgid "The following email address's are not valid: %s."
|
| 439 |
-
msgstr ""
|
| 440 |
-
|
| 441 |
-
#: functions/interface.functions.php:119
|
| 442 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 443 |
-
msgstr ""
|
| 444 |
-
|
| 445 |
-
#: functions/interface.functions.php:129
|
| 446 |
-
#, php-format
|
| 447 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 448 |
-
msgstr ""
|
| 449 |
-
|
| 450 |
-
#: functions/interface.functions.php:139
|
| 451 |
-
#, php-format
|
| 452 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 453 |
-
msgstr ""
|
| 454 |
-
|
| 455 |
-
#: functions/interface.functions.php:149
|
| 456 |
-
#, php-format
|
| 457 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 458 |
-
msgstr ""
|
| 459 |
-
|
| 460 |
-
#: functions/interface.functions.php:159
|
| 461 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 462 |
-
msgstr ""
|
| 463 |
-
|
| 464 |
-
#: hm-backup/hm-backup.php:532
|
| 465 |
-
msgid "The backup file was not created"
|
| 466 |
-
msgstr ""
|
| 467 |
-
|
| 468 |
-
#: hm-backup/hm-backup.php:603
|
| 469 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 470 |
-
msgstr ""
|
| 471 |
-
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: BackUpWordPress\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
+
"POT-Creation-Date: 2012-08-14 14:01+0100\n"
|
| 6 |
+
"PO-Revision-Date: 2012-08-14 14:18+0100\n"
|
| 7 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 8 |
"Language-Team: Human Made Limited <support@humanmade.co.uk>\n"
|
| 9 |
+
"Language: \n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 14 |
"X-Poedit-Basepath: .\n"
|
| 15 |
"X-Poedit-Language: English\n"
|
| 16 |
"X-Poedit-Country: UNITED KINGDOM\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 18 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 19 |
"X-Poedit-SearchPath-0: .\n"
|
| 20 |
|
| 21 |
+
#: admin.settings.php:3
|
| 22 |
+
#: admin.page.php:11
|
| 23 |
+
msgid "Settings"
|
| 24 |
msgstr ""
|
| 25 |
|
| 26 |
+
#: admin.settings.php:5
|
| 27 |
#, php-format
|
| 28 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 29 |
msgstr ""
|
| 30 |
|
| 31 |
+
#: admin.settings.php:5
|
| 32 |
+
#: admin.constants.php:3
|
| 33 |
+
#: admin.menus.php:76
|
| 34 |
+
msgid "Constants"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
+
#: admin.settings.php:5
|
| 38 |
+
msgid "help panel"
|
| 39 |
+
msgstr ""
|
| 40 |
+
|
| 41 |
+
#: admin.settings.php:16
|
| 42 |
+
msgid "Automatic Backups"
|
| 43 |
+
msgstr ""
|
| 44 |
+
|
| 45 |
+
#: admin.settings.php:22
|
| 46 |
+
msgid "Backup my site automatically."
|
| 47 |
+
msgstr ""
|
| 48 |
+
|
| 49 |
+
#: admin.settings.php:27
|
| 50 |
+
msgid "No automatic backups."
|
| 51 |
+
msgstr ""
|
| 52 |
+
|
| 53 |
+
#: admin.settings.php:36
|
| 54 |
+
msgid "Frequency of backups"
|
| 55 |
+
msgstr ""
|
| 56 |
+
|
| 57 |
+
#: admin.settings.php:40
|
| 58 |
+
msgid "Automatic backups will occur"
|
| 59 |
+
msgstr ""
|
| 60 |
+
|
| 61 |
+
#: admin.settings.php:43
|
| 62 |
+
msgid "Daily"
|
| 63 |
+
msgstr ""
|
| 64 |
+
|
| 65 |
+
#: admin.settings.php:44
|
| 66 |
+
msgid "Weekly"
|
| 67 |
+
msgstr ""
|
| 68 |
+
|
| 69 |
+
#: admin.settings.php:45
|
| 70 |
+
msgid "Fortnightly"
|
| 71 |
+
msgstr ""
|
| 72 |
+
|
| 73 |
+
#: admin.settings.php:46
|
| 74 |
+
msgid "Monthly"
|
| 75 |
+
msgstr ""
|
| 76 |
+
|
| 77 |
+
#: admin.settings.php:55
|
| 78 |
+
msgid "What to Backup"
|
| 79 |
+
msgstr ""
|
| 80 |
+
|
| 81 |
+
#: admin.settings.php:59
|
| 82 |
+
msgid "Backup my"
|
| 83 |
+
msgstr ""
|
| 84 |
+
|
| 85 |
+
#: admin.settings.php:62
|
| 86 |
+
msgid "database & files"
|
| 87 |
+
msgstr ""
|
| 88 |
+
|
| 89 |
+
#: admin.settings.php:63
|
| 90 |
+
msgid "database only"
|
| 91 |
+
msgstr ""
|
| 92 |
+
|
| 93 |
+
#: admin.settings.php:64
|
| 94 |
+
msgid "files only"
|
| 95 |
+
msgstr ""
|
| 96 |
+
|
| 97 |
+
#: admin.settings.php:72
|
| 98 |
+
msgid "Number of backups"
|
| 99 |
+
msgstr ""
|
| 100 |
+
|
| 101 |
+
#: admin.settings.php:73
|
| 102 |
#, php-format
|
| 103 |
+
msgid "The last %s backups will be stored on the server."
|
| 104 |
msgstr ""
|
| 105 |
|
| 106 |
+
#: admin.settings.php:77
|
| 107 |
+
msgid "Email backups"
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
+
#: admin.settings.php:78
|
| 111 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 112 |
msgstr ""
|
| 113 |
|
| 114 |
+
#: admin.settings.php:82
|
| 115 |
+
msgid "Excludes"
|
| 116 |
+
msgstr ""
|
| 117 |
+
|
| 118 |
+
#: admin.settings.php:85
|
| 119 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 120 |
+
msgstr ""
|
| 121 |
+
|
| 122 |
+
#: admin.settings.php:86
|
| 123 |
+
#: admin.constants.php:8
|
| 124 |
+
#: admin.constants.php:11
|
| 125 |
+
#: admin.constants.php:14
|
| 126 |
+
#: admin.constants.php:17
|
| 127 |
+
#: admin.constants.php:20
|
| 128 |
+
#: admin.constants.php:23
|
| 129 |
+
#: admin.constants.php:26
|
| 130 |
+
#: admin.constants.php:29
|
| 131 |
+
#: admin.constants.php:32
|
| 132 |
+
#: admin.constants.php:35
|
| 133 |
+
#: admin.constants.php:38
|
| 134 |
+
#: admin.constants.php:41
|
| 135 |
+
msgid "e.g."
|
| 136 |
+
msgstr ""
|
| 137 |
+
|
| 138 |
+
#: admin.settings.php:94
|
| 139 |
+
msgid "Save Changes"
|
| 140 |
+
msgstr ""
|
| 141 |
+
|
| 142 |
+
#: admin.backups-table.php:12
|
| 143 |
+
#, php-format
|
| 144 |
+
msgid "1 backup completed"
|
| 145 |
+
msgid_plural "%d backups completed"
|
| 146 |
+
msgstr[0] ""
|
| 147 |
+
msgstr[1] ""
|
| 148 |
+
|
| 149 |
#: admin.backups-table.php:13
|
| 150 |
msgid "Size"
|
| 151 |
msgstr ""
|
| 154 |
msgid "Actions"
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
+
#: admin.backups-table.php:20
|
| 158 |
+
#, php-format
|
| 159 |
+
msgid "Only the most recent backup will be saved"
|
| 160 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 161 |
+
msgstr[0] ""
|
| 162 |
+
msgstr[1] ""
|
| 163 |
+
|
| 164 |
#: admin.backups-table.php:21
|
| 165 |
#, php-format
|
| 166 |
msgid "Total %s"
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
+
#: admin.page.php:7
|
| 170 |
+
#: admin.menus.php:10
|
| 171 |
+
msgid "Manage Backups"
|
| 172 |
+
msgstr ""
|
| 173 |
+
|
| 174 |
+
#: admin.page.php:23
|
| 175 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 176 |
+
msgstr ""
|
| 177 |
+
|
| 178 |
+
#: admin.page.php:29
|
| 179 |
#, php-format
|
| 180 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 181 |
+
msgstr ""
|
| 182 |
+
|
| 183 |
+
#: admin.backup-button.php:3
|
| 184 |
+
msgid "cancel"
|
| 185 |
+
msgstr ""
|
| 186 |
+
|
| 187 |
+
#: admin.backup-button.php:7
|
| 188 |
+
msgid "Back Up Now"
|
| 189 |
msgstr ""
|
| 190 |
|
| 191 |
#: admin.constants.php:3
|
| 192 |
+
#, php-format
|
| 193 |
+
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."
|
|
|
|
| 194 |
msgstr ""
|
| 195 |
|
| 196 |
#: admin.constants.php:3
|
| 204 |
|
| 205 |
#: admin.constants.php:11
|
| 206 |
#, php-format
|
| 207 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
#: admin.constants.php:11
|
| 212 |
#: admin.constants.php:23
|
| 213 |
#: admin.constants.php:26
|
| 214 |
#: admin.status.php:14
|
| 215 |
+
#: admin.status.php:18
|
| 216 |
msgid "database"
|
| 217 |
msgstr ""
|
| 218 |
|
| 219 |
#: admin.constants.php:14
|
| 220 |
#, php-format
|
| 221 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
#: admin.constants.php:14
|
| 225 |
#: admin.constants.php:23
|
| 226 |
#: admin.constants.php:26
|
| 227 |
#: admin.status.php:14
|
| 228 |
+
#: admin.status.php:22
|
| 229 |
msgid "files"
|
| 230 |
msgstr ""
|
| 231 |
|
| 236 |
|
| 237 |
#: admin.constants.php:20
|
| 238 |
#, php-format
|
| 239 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
#: admin.constants.php:23
|
| 243 |
#: admin.constants.php:26
|
| 244 |
#, php-format
|
| 245 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 246 |
msgstr ""
|
| 247 |
|
| 248 |
#: admin.constants.php:29
|
| 261 |
|
| 262 |
#: admin.constants.php:38
|
| 263 |
#, php-format
|
| 264 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
+
#: admin.constants.php:41
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 270 |
+
msgstr ""
|
| 271 |
+
|
| 272 |
+
#: admin.actions.php:70
|
| 273 |
+
msgid "You have entered an invalid number of backups."
|
| 274 |
+
msgstr ""
|
| 275 |
+
|
| 276 |
+
#: admin.actions.php:79
|
| 277 |
+
#, php-format
|
| 278 |
+
msgid "%s is an invalid email address."
|
| 279 |
+
msgstr ""
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:249
|
| 282 |
+
#: functions/interface.functions.php:89
|
| 283 |
+
#: functions/interface.functions.php:99
|
| 284 |
+
#: functions/interface.functions.php:110
|
| 285 |
+
#: functions/interface.functions.php:120
|
| 286 |
+
#: functions/interface.functions.php:130
|
| 287 |
+
#: functions/interface.functions.php:140
|
| 288 |
+
#: functions/interface.functions.php:150
|
| 289 |
+
msgid "BackUpWordPress has detected a problem."
|
| 290 |
+
msgstr ""
|
| 291 |
+
|
| 292 |
+
#: admin.actions.php:249
|
| 293 |
+
#, php-format
|
| 294 |
+
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."
|
| 295 |
msgstr ""
|
| 296 |
|
| 297 |
#: admin.menus.php:10
|
| 305 |
|
| 306 |
#: admin.menus.php:65
|
| 307 |
#, php-format
|
| 308 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 309 |
msgstr ""
|
| 310 |
|
| 311 |
#: admin.menus.php:75
|
| 324 |
msgid "Help with translation"
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
+
#: plugin.php:47
|
| 328 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
msgstr ""
|
| 330 |
|
| 331 |
+
#: plugin.php:58
|
| 332 |
#, php-format
|
| 333 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: admin.status.php:9
|
| 337 |
#, php-format
|
| 338 |
+
msgid "Automatic backups are %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 339 |
msgstr ""
|
| 340 |
|
| 341 |
+
#: admin.status.php:9
|
| 342 |
+
msgid "disabled"
|
| 343 |
msgstr ""
|
| 344 |
|
| 345 |
+
#: admin.status.php:14
|
| 346 |
+
msgid "&"
|
| 347 |
msgstr ""
|
| 348 |
|
| 349 |
+
#: admin.status.php:32
|
| 350 |
+
#, php-format
|
| 351 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 352 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 353 |
+
msgstr[0] ""
|
| 354 |
+
msgstr[1] ""
|
| 355 |
|
| 356 |
+
#: admin.status.php:39
|
| 357 |
+
#, php-format
|
| 358 |
+
msgid "It's currently %s"
|
| 359 |
msgstr ""
|
| 360 |
|
| 361 |
+
#: admin.status.php:47
|
| 362 |
+
#, php-format
|
| 363 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 364 |
msgstr ""
|
| 365 |
|
| 366 |
+
#: admin.status.php:47
|
| 367 |
+
msgid "Calculating Size..."
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
+
#: admin.status.php:50
|
| 371 |
+
#, php-format
|
| 372 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 373 |
msgstr ""
|
| 374 |
|
| 375 |
+
#: admin.status.php:54
|
| 376 |
+
#, php-format
|
| 377 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 378 |
msgstr ""
|
| 379 |
|
| 380 |
+
#: hm-backup/hm-backup.php:532
|
| 381 |
+
msgid "The backup file was not created"
|
| 382 |
msgstr ""
|
| 383 |
|
| 384 |
+
#: hm-backup/hm-backup.php:603
|
| 385 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 386 |
msgstr ""
|
| 387 |
|
| 388 |
+
#: functions/interface.functions.php:25
|
| 389 |
+
msgid "Download"
|
| 390 |
msgstr ""
|
| 391 |
|
| 392 |
+
#: functions/interface.functions.php:26
|
| 393 |
+
msgid "Delete"
|
| 394 |
msgstr ""
|
| 395 |
|
| 396 |
+
#: functions/interface.functions.php:48
|
| 397 |
+
msgid "Settings saved."
|
| 398 |
msgstr ""
|
| 399 |
|
| 400 |
+
#: functions/interface.functions.php:67
|
| 401 |
+
#: functions/interface.functions.php:79
|
| 402 |
+
msgid "BackUpWordPress is almost ready."
|
| 403 |
msgstr ""
|
| 404 |
|
| 405 |
+
#: functions/interface.functions.php:67
|
| 406 |
#, php-format
|
| 407 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 408 |
msgstr ""
|
| 409 |
|
| 410 |
+
#: functions/interface.functions.php:79
|
| 411 |
#, php-format
|
| 412 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 413 |
msgstr ""
|
| 414 |
|
| 415 |
+
#: functions/interface.functions.php:89
|
| 416 |
+
#, php-format
|
| 417 |
+
msgid " %1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 418 |
msgstr ""
|
| 419 |
|
| 420 |
+
#: functions/interface.functions.php:89
|
| 421 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
+
#: functions/interface.functions.php:89
|
| 425 |
+
msgid "Safe Mode"
|
|
|
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
+
#: functions/interface.functions.php:99
|
| 429 |
#, php-format
|
| 430 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 431 |
msgstr ""
|
| 432 |
|
| 433 |
+
#: functions/interface.functions.php:110
|
| 434 |
#, php-format
|
| 435 |
+
msgid "The following email address is not valid: %s."
|
| 436 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 437 |
+
msgstr[0] ""
|
| 438 |
+
msgstr[1] ""
|
| 439 |
|
| 440 |
+
#: functions/interface.functions.php:120
|
| 441 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
+
#: functions/interface.functions.php:130
|
| 445 |
#, php-format
|
| 446 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 447 |
msgstr ""
|
| 448 |
|
| 449 |
+
#: functions/interface.functions.php:140
|
| 450 |
#, php-format
|
| 451 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 452 |
msgstr ""
|
| 453 |
|
| 454 |
+
#: functions/interface.functions.php:150
|
| 455 |
+
#, php-format
|
| 456 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 457 |
msgstr ""
|
| 458 |
|
| 459 |
+
#: functions/interface.functions.php:160
|
| 460 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
|
|
|
| 461 |
msgstr ""
|
| 462 |
|
| 463 |
#: functions/backup.actions.php:12
|
| 481 |
#: functions/backup.functions.php:148
|
| 482 |
#, php-format
|
| 483 |
msgid ""
|
| 484 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 485 |
+
"\\n"
|
| 486 |
+
"The backup file should be attached to this email.\\n"
|
| 487 |
+
"\\n"
|
| 488 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 489 |
+
"\\n"
|
| 490 |
+
"%2$s\\n"
|
| 491 |
+
"\\n"
|
| 492 |
+
"Kind Regards\\n"
|
| 493 |
+
"\\n"
|
| 494 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 495 |
msgstr ""
|
| 496 |
|
| 497 |
#: functions/backup.functions.php:158
|
| 498 |
#, php-format
|
| 499 |
msgid ""
|
| 500 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 501 |
+
"\\n"
|
| 502 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 503 |
+
"\\n"
|
| 504 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 505 |
+
"\\n"
|
| 506 |
+
"%2$s\\n"
|
| 507 |
+
"\\n"
|
| 508 |
+
"Kind Regards\\n"
|
| 509 |
+
"\\n"
|
| 510 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 511 |
msgstr ""
|
| 512 |
|
| 515 |
msgid "This %s file ensures that other people cannot download your backup files."
|
| 516 |
msgstr ""
|
| 517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
functions/backup.functions.php
CHANGED
|
@@ -145,7 +145,7 @@ function hmbkp_email_backup() {
|
|
| 145 |
$domain = parse_url( get_bloginfo( 'url' ), PHP_URL_HOST ) . parse_url( get_bloginfo( 'url' ), PHP_URL_PATH );
|
| 146 |
|
| 147 |
$subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
|
| 148 |
-
$message = sprintf( __(
|
| 149 |
$headers = 'From: BackUpWordPress <' . get_bloginfo( 'admin_email' ) . '>' . "\r\n";
|
| 150 |
|
| 151 |
// Try to send the email
|
|
@@ -155,7 +155,7 @@ function hmbkp_email_backup() {
|
|
| 155 |
if ( ! $sent ) :
|
| 156 |
|
| 157 |
$subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
|
| 158 |
-
$message = sprintf( __(
|
| 159 |
|
| 160 |
$sent = wp_mail( array_filter( hmbkp_get_email_address(), 'is_email' ), $subject, $message, $headers );
|
| 161 |
|
|
@@ -232,7 +232,7 @@ function hmbkp_invalid_custom_excludes() {
|
|
| 232 |
if ( $excludes = hmbkp_get_excludes() )
|
| 233 |
|
| 234 |
foreach ( explode( ',', $excludes ) as $rule )
|
| 235 |
-
if ( ( $rule = trim( $rule ) ) && in_array( substr( $rule, 0, 1 ), array( '/', '\\' ) ) && ! file_exists( $rule ) && ! file_exists(
|
| 236 |
$invalid_rules[] = $rule;
|
| 237 |
|
| 238 |
return array_filter( $invalid_rules );
|
| 145 |
$domain = parse_url( get_bloginfo( 'url' ), PHP_URL_HOST ) . parse_url( get_bloginfo( 'url' ), PHP_URL_PATH );
|
| 146 |
|
| 147 |
$subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
|
| 148 |
+
$message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.\n\nThe backup file should be attached to this email.\n\nYou can also download the backup file by clicking the link below:\n\n%2$s\n\nKind Regards\n\n The Happy BackUpWordPress Backup Emailing Robot', 'hmbkp' ), get_bloginfo( 'url' ), $download );
|
| 149 |
$headers = 'From: BackUpWordPress <' . get_bloginfo( 'admin_email' ) . '>' . "\r\n";
|
| 150 |
|
| 151 |
// Try to send the email
|
| 155 |
if ( ! $sent ) :
|
| 156 |
|
| 157 |
$subject = sprintf( __( 'Backup of %s', 'hmbkp' ), $domain );
|
| 158 |
+
$message = sprintf( __( 'BackUpWordPress has completed a backup of your site %1$s.\n\nUnfortunately the backup file was too large to attach to this email.\n\nYou can download the backup file by clicking the link below:\n\n%2$s\n\nKind Regards\n\n The Happy BackUpWordPress Backup Emailing Robot', 'hmbkp' ), get_bloginfo( 'url' ), $download );
|
| 159 |
|
| 160 |
$sent = wp_mail( array_filter( hmbkp_get_email_address(), 'is_email' ), $subject, $message, $headers );
|
| 161 |
|
| 232 |
if ( $excludes = hmbkp_get_excludes() )
|
| 233 |
|
| 234 |
foreach ( explode( ',', $excludes ) as $rule )
|
| 235 |
+
if ( ( $rule = trim( $rule ) ) && in_array( substr( $rule, 0, 1 ), array( '/', '\\' ) ) && ! file_exists( $rule ) && ! file_exists( hmbkp_get_home_path() . $rule ) && ! file_exists( trailingslashit( hmbkp_get_home_path() ) . $rule ) )
|
| 236 |
$invalid_rules[] = $rule;
|
| 237 |
|
| 238 |
return array_filter( $invalid_rules );
|
functions/core.functions.php
CHANGED
|
@@ -234,7 +234,7 @@ function hmbkp_calculate() {
|
|
| 234 |
clearstatcache();
|
| 235 |
|
| 236 |
foreach ( HM_Backup::get_instance()->files() as $file )
|
| 237 |
-
$filesize += (float) @filesize(
|
| 238 |
|
| 239 |
}
|
| 240 |
|
|
@@ -307,6 +307,30 @@ function hmbkp_setup_schedule() {
|
|
| 307 |
wp_schedule_event( $scheduletime_UTC, $schedule_frequency, 'hmbkp_schedule_backup_hook' );
|
| 308 |
}
|
| 309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
/**
|
| 311 |
* Get the path to the backups directory
|
| 312 |
*
|
| 234 |
clearstatcache();
|
| 235 |
|
| 236 |
foreach ( HM_Backup::get_instance()->files() as $file )
|
| 237 |
+
$filesize += (float) @filesize( hmbkp_get_home_path() . $file );
|
| 238 |
|
| 239 |
}
|
| 240 |
|
| 307 |
wp_schedule_event( $scheduletime_UTC, $schedule_frequency, 'hmbkp_schedule_backup_hook' );
|
| 308 |
}
|
| 309 |
|
| 310 |
+
|
| 311 |
+
/**
|
| 312 |
+
* Get the absolute filesystem path to the root of the WordPress installation
|
| 313 |
+
* A clone of the get_home_path function found in wp-admin
|
| 314 |
+
*
|
| 315 |
+
* @uses get_option
|
| 316 |
+
* @return string Full filesystem path to the root of the WordPress installation
|
| 317 |
+
*/
|
| 318 |
+
function hmbkp_get_home_path() {
|
| 319 |
+
$home = get_option( 'home' );
|
| 320 |
+
$siteurl = get_option( 'siteurl' );
|
| 321 |
+
if ( $home != '' && $home != $siteurl ) {
|
| 322 |
+
$wp_path_rel_to_home = str_replace( $home, '', $siteurl ); /* $siteurl - $home */
|
| 323 |
+
$pos = strrpos( $_SERVER["SCRIPT_FILENAME"], $wp_path_rel_to_home );
|
| 324 |
+
$home_path = substr( $_SERVER["SCRIPT_FILENAME"], 0, $pos );
|
| 325 |
+
$home_path = trailingslashit( $home_path );
|
| 326 |
+
} else {
|
| 327 |
+
$home_path = ABSPATH;
|
| 328 |
+
}
|
| 329 |
+
|
| 330 |
+
return $home_path;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
|
| 334 |
/**
|
| 335 |
* Get the path to the backups directory
|
| 336 |
*
|
functions/interface.functions.php
CHANGED
|
@@ -64,7 +64,7 @@ function hmbkp_admin_notices() {
|
|
| 64 |
function hmbkp_path_exists_warning() {
|
| 65 |
$php_user = exec( 'whoami' );
|
| 66 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
| 67 |
-
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 %s directory isn\'t writable, run %s or %s or create the folder yourself.', 'hmbkp' ), '<code>wp-content</code>', '<code>chown ' . $php_user . ':' . $php_group . ' ' . WP_CONTENT_DIR . '</code>', '<code>chmod 777 ' . WP_CONTENT_DIR . '</code>' ) . '</p></div>';
|
| 68 |
}
|
| 69 |
add_action( 'admin_notices', 'hmbkp_path_exists_warning' );
|
| 70 |
|
|
@@ -76,7 +76,7 @@ function hmbkp_admin_notices() {
|
|
| 76 |
function hmbkp_writable_path_warning() {
|
| 77 |
$php_user = exec( 'whoami' );
|
| 78 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
| 79 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress is almost ready.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your backups directory isn\'t writable
|
| 80 |
}
|
| 81 |
add_action( 'admin_notices', 'hmbkp_writable_path_warning' );
|
| 82 |
|
|
@@ -86,7 +86,7 @@ function hmbkp_admin_notices() {
|
|
| 86 |
if ( hmbkp_is_safe_mode_active() ) :
|
| 87 |
|
| 88 |
function hmbkp_safe_mode_warning() {
|
| 89 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( '
|
| 90 |
}
|
| 91 |
add_action( 'admin_notices', 'hmbkp_safe_mode_warning' );
|
| 92 |
|
|
@@ -96,7 +96,7 @@ function hmbkp_admin_notices() {
|
|
| 96 |
if ( hmbkp_get_files_only() && hmbkp_get_database_only() ) :
|
| 97 |
|
| 98 |
function hmbkp_nothing_to_backup_warning() {
|
| 99 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'You have both %s and %s defined so there isn\'t anything to back up.', 'hmbkp' ), '<code>HMBKP_DATABASE_ONLY</code>', '<code>HMBKP_FILES_ONLY</code>' ) . '</p></div>';
|
| 100 |
}
|
| 101 |
add_action( 'admin_notices', 'hmbkp_nothing_to_backup_warning' );
|
| 102 |
|
|
@@ -106,7 +106,8 @@ function hmbkp_admin_notices() {
|
|
| 106 |
if ( hmbkp_get_email_address() && array_diff( hmbkp_get_email_address(), array_filter( hmbkp_get_email_address(), 'is_email' ) ) ) :
|
| 107 |
|
| 108 |
function hmbkp_email_invalid_warning() {
|
| 109 |
-
|
|
|
|
| 110 |
}
|
| 111 |
add_action( 'admin_notices', 'hmbkp_email_invalid_warning' );
|
| 112 |
|
|
@@ -126,7 +127,7 @@ function hmbkp_admin_notices() {
|
|
| 126 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_dir( HMBKP_PATH ) ) :
|
| 127 |
|
| 128 |
function hmbkp_custom_path_exists_warning() {
|
| 129 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %s doesn\'t exist and can\'t be created, your backups will be saved to %s instead.', 'hmbkp' ), '<code>' . HMBKP_PATH . '</code>', '<code>' . hmbkp_path() . '</code>' ) . '</p></div>';
|
| 130 |
}
|
| 131 |
add_action( 'admin_notices', 'hmbkp_custom_path_exists_warning' );
|
| 132 |
|
|
@@ -136,7 +137,7 @@ function hmbkp_admin_notices() {
|
|
| 136 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && is_dir( HMBKP_PATH ) && ! is_writable( HMBKP_PATH ) ) :
|
| 137 |
|
| 138 |
function hmbkp_custom_path_writable_notice() {
|
| 139 |
-
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'Your custom backups directory %s isn\'t writable, new backups will be saved to %s instead.', 'hmbkp' ), '<code>' . HMBKP_PATH . '</code>', '<code>' . hmbkp_path() . '</code>' ) . '</p></div>';
|
| 140 |
}
|
| 141 |
add_action( 'admin_notices', 'hmbkp_custom_path_writable_notice' );
|
| 142 |
|
| 64 |
function hmbkp_path_exists_warning() {
|
| 65 |
$php_user = exec( 'whoami' );
|
| 66 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
| 67 |
+
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 ' . $php_user . ':' . $php_group . ' ' . WP_CONTENT_DIR . '</code>', '<code>chmod 777 ' . WP_CONTENT_DIR . '</code>' ) . '</p></div>';
|
| 68 |
}
|
| 69 |
add_action( 'admin_notices', 'hmbkp_path_exists_warning' );
|
| 70 |
|
| 76 |
function hmbkp_writable_path_warning() {
|
| 77 |
$php_user = exec( 'whoami' );
|
| 78 |
$php_group = reset( explode( ' ', exec( 'groups' ) ) );
|
| 79 |
+
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 ' . $php_user . ':' . $php_group . ' ' . hmbkp_path() . '</code>', '<code>chmod -R 777 ' . hmbkp_path() . '</code>' ) . '</p></div>';
|
| 80 |
}
|
| 81 |
add_action( 'admin_notices', 'hmbkp_writable_path_warning' );
|
| 82 |
|
| 86 |
if ( hmbkp_is_safe_mode_active() ) :
|
| 87 |
|
| 88 |
function hmbkp_safe_mode_warning() {
|
| 89 |
+
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 %3$s.', '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>';
|
| 90 |
}
|
| 91 |
add_action( 'admin_notices', 'hmbkp_safe_mode_warning' );
|
| 92 |
|
| 96 |
if ( hmbkp_get_files_only() && hmbkp_get_database_only() ) :
|
| 97 |
|
| 98 |
function hmbkp_nothing_to_backup_warning() {
|
| 99 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( __( 'You have both %1$s and %2$s defined so there isn\'t anything to back up.', 'hmbkp' ), '<code>HMBKP_DATABASE_ONLY</code>', '<code>HMBKP_FILES_ONLY</code>' ) . '</p></div>';
|
| 100 |
}
|
| 101 |
add_action( 'admin_notices', 'hmbkp_nothing_to_backup_warning' );
|
| 102 |
|
| 106 |
if ( hmbkp_get_email_address() && array_diff( hmbkp_get_email_address(), array_filter( hmbkp_get_email_address(), 'is_email' ) ) ) :
|
| 107 |
|
| 108 |
function hmbkp_email_invalid_warning() {
|
| 109 |
+
$invalid_emails = array_diff( hmbkp_get_email_address(), array_filter( hmbkp_get_email_address(), 'is_email' ) );
|
| 110 |
+
echo '<div id="hmbkp-warning" class="updated fade"><p><strong>' . __( 'BackUpWordPress has detected a problem.', 'hmbkp' ) . '</strong> ' . sprintf( _n( 'The following email address is not valid: %s.', 'The following email addresses are not valid: %s.', count( $invalid_emails ), 'hmbkp' ), '<code>' . implode( '</code>, <code>', $invalid_emails ) . '</code>' ) . '</p></div>';
|
| 111 |
}
|
| 112 |
add_action( 'admin_notices', 'hmbkp_email_invalid_warning' );
|
| 113 |
|
| 127 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && ! is_dir( HMBKP_PATH ) ) :
|
| 128 |
|
| 129 |
function hmbkp_custom_path_exists_warning() {
|
| 130 |
+
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>' . HMBKP_PATH . '</code>', '<code>' . hmbkp_path() . '</code>' ) . '</p></div>';
|
| 131 |
}
|
| 132 |
add_action( 'admin_notices', 'hmbkp_custom_path_exists_warning' );
|
| 133 |
|
| 137 |
if ( defined( 'HMBKP_PATH' ) && HMBKP_PATH && is_dir( HMBKP_PATH ) && ! is_writable( HMBKP_PATH ) ) :
|
| 138 |
|
| 139 |
function hmbkp_custom_path_writable_notice() {
|
| 140 |
+
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>' . HMBKP_PATH . '</code>', '<code>' . hmbkp_path() . '</code>' ) . '</p></div>';
|
| 141 |
}
|
| 142 |
add_action( 'admin_notices', 'hmbkp_custom_path_writable_notice' );
|
| 143 |
|
functions/wp-cli.php
CHANGED
|
@@ -92,7 +92,7 @@ usage: wp backup [--files_only] [--database_only] [--path<dir>] [--root<dir>] [-
|
|
| 92 |
--files_only Backup files only, default to off
|
| 93 |
--database_only Backup database only, defaults to off
|
| 94 |
--path dir that the backup should be save in, defaults to wp-content/backups/
|
| 95 |
-
--root dir that should be backed up, defaults to
|
| 96 |
--zip_command_path path to your zip binary, standard locations are automatically used
|
| 97 |
--mysqldump_command_path path to your mysqldump binary, standard locations are automatically used
|
| 98 |
|
| 92 |
--files_only Backup files only, default to off
|
| 93 |
--database_only Backup database only, defaults to off
|
| 94 |
--path dir that the backup should be save in, defaults to wp-content/backups/
|
| 95 |
+
--root dir that should be backed up, defaults to site root.
|
| 96 |
--zip_command_path path to your zip binary, standard locations are automatically used
|
| 97 |
--mysqldump_command_path path to your mysqldump binary, standard locations are automatically used
|
| 98 |
|
languages/hmbkp-de_DE.mo
ADDED
|
Binary file
|
languages/hmbkp-de_DE.po
ADDED
|
@@ -0,0 +1,539 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
msgid ""
|
| 2 |
+
msgstr ""
|
| 3 |
+
"Project-Id-Version: BackUpWordPress\n"
|
| 4 |
+
"Report-Msgid-Bugs-To: \n"
|
| 5 |
+
"POT-Creation-Date: 2012-08-14 14:32+0100\n"
|
| 6 |
+
"PO-Revision-Date: 2012-08-14 14:54+0100\n"
|
| 7 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 8 |
+
"Language-Team: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 9 |
+
"Language: \n"
|
| 10 |
+
"MIME-Version: 1.0\n"
|
| 11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2\n"
|
| 14 |
+
"X-Poedit-Basepath: ..\n"
|
| 15 |
+
"X-Poedit-Language: German\n"
|
| 16 |
+
"X-Poedit-Country: GERMANY\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 18 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 19 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 20 |
+
|
| 21 |
+
#: admin.settings.php:3
|
| 22 |
+
#: admin.page.php:11
|
| 23 |
+
msgid "Settings"
|
| 24 |
+
msgstr "Einstellungen"
|
| 25 |
+
|
| 26 |
+
#: admin.settings.php:5
|
| 27 |
+
#, php-format
|
| 28 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 29 |
+
msgstr "Du kannst %1$s in deinem %2$s definieren, um einige Einstellungen vorzunehmen. Eine komplette Liste der %3$s kannst du im %4$s finden. Definierte Einstellungen sind unten nicht veränderbar."
|
| 30 |
+
|
| 31 |
+
#: admin.settings.php:5
|
| 32 |
+
#: admin.constants.php:3
|
| 33 |
+
#: admin.menus.php:76
|
| 34 |
+
msgid "Constants"
|
| 35 |
+
msgstr "Konstanten"
|
| 36 |
+
|
| 37 |
+
#: admin.settings.php:5
|
| 38 |
+
msgid "help panel"
|
| 39 |
+
msgstr "Hilfe-Panel"
|
| 40 |
+
|
| 41 |
+
#: admin.settings.php:16
|
| 42 |
+
msgid "Automatic Backups"
|
| 43 |
+
msgstr "Automatische Backups"
|
| 44 |
+
|
| 45 |
+
#: admin.settings.php:22
|
| 46 |
+
msgid "Backup my site automatically."
|
| 47 |
+
msgstr "Sichere meine Seite automatisch."
|
| 48 |
+
|
| 49 |
+
#: admin.settings.php:27
|
| 50 |
+
msgid "No automatic backups."
|
| 51 |
+
msgstr "Keine automatischen Backups."
|
| 52 |
+
|
| 53 |
+
#: admin.settings.php:36
|
| 54 |
+
msgid "Frequency of backups"
|
| 55 |
+
msgstr "Häufigkeit der Backups"
|
| 56 |
+
|
| 57 |
+
#: admin.settings.php:40
|
| 58 |
+
msgid "Automatic backups will occur"
|
| 59 |
+
msgstr "Automatische Backups werden ausgeführt:"
|
| 60 |
+
|
| 61 |
+
#: admin.settings.php:43
|
| 62 |
+
msgid "Daily"
|
| 63 |
+
msgstr "Täglich"
|
| 64 |
+
|
| 65 |
+
#: admin.settings.php:44
|
| 66 |
+
msgid "Weekly"
|
| 67 |
+
msgstr "Wöchentlich"
|
| 68 |
+
|
| 69 |
+
#: admin.settings.php:45
|
| 70 |
+
msgid "Fortnightly"
|
| 71 |
+
msgstr "Vierzehntägig"
|
| 72 |
+
|
| 73 |
+
#: admin.settings.php:46
|
| 74 |
+
msgid "Monthly"
|
| 75 |
+
msgstr "Monatlich"
|
| 76 |
+
|
| 77 |
+
#: admin.settings.php:55
|
| 78 |
+
msgid "What to Backup"
|
| 79 |
+
msgstr "Zu sichernde Daten"
|
| 80 |
+
|
| 81 |
+
#: admin.settings.php:59
|
| 82 |
+
msgid "Backup my"
|
| 83 |
+
msgstr "Sichere meine"
|
| 84 |
+
|
| 85 |
+
#: admin.settings.php:62
|
| 86 |
+
msgid "database & files"
|
| 87 |
+
msgstr "Datenbank & Dateien"
|
| 88 |
+
|
| 89 |
+
#: admin.settings.php:63
|
| 90 |
+
msgid "database only"
|
| 91 |
+
msgstr "Datenbank"
|
| 92 |
+
|
| 93 |
+
#: admin.settings.php:64
|
| 94 |
+
msgid "files only"
|
| 95 |
+
msgstr "Dateien"
|
| 96 |
+
|
| 97 |
+
#: admin.settings.php:72
|
| 98 |
+
msgid "Number of backups"
|
| 99 |
+
msgstr "Anzahl der Backups"
|
| 100 |
+
|
| 101 |
+
#: admin.settings.php:73
|
| 102 |
+
#, php-format
|
| 103 |
+
msgid "The last %s backups will be stored on the server."
|
| 104 |
+
msgstr "Die letzten %s Backups werden auf dem Server gespeichert bleiben."
|
| 105 |
+
|
| 106 |
+
#: admin.settings.php:77
|
| 107 |
+
msgid "Email backups"
|
| 108 |
+
msgstr "Backup-E-Mail"
|
| 109 |
+
|
| 110 |
+
#: admin.settings.php:78
|
| 111 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 112 |
+
msgstr "Eine Kopie der Backup-Datei wird per E-Mail an diese Adresse gesendet. Leerlassen zum deaktivieren."
|
| 113 |
+
|
| 114 |
+
#: admin.settings.php:82
|
| 115 |
+
msgid "Excludes"
|
| 116 |
+
msgstr "Ausnahmen"
|
| 117 |
+
|
| 118 |
+
#: admin.settings.php:85
|
| 119 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 120 |
+
msgstr "Eine kommagetrennte Liste von Datei- und Verzeichnispfaden, die du <strong>nicht</strong> sichern möchtest."
|
| 121 |
+
|
| 122 |
+
#: admin.settings.php:86
|
| 123 |
+
#: admin.constants.php:8
|
| 124 |
+
#: admin.constants.php:11
|
| 125 |
+
#: admin.constants.php:14
|
| 126 |
+
#: admin.constants.php:17
|
| 127 |
+
#: admin.constants.php:20
|
| 128 |
+
#: admin.constants.php:23
|
| 129 |
+
#: admin.constants.php:26
|
| 130 |
+
#: admin.constants.php:29
|
| 131 |
+
#: admin.constants.php:32
|
| 132 |
+
#: admin.constants.php:35
|
| 133 |
+
#: admin.constants.php:38
|
| 134 |
+
#: admin.constants.php:41
|
| 135 |
+
msgid "e.g."
|
| 136 |
+
msgstr "z.B."
|
| 137 |
+
|
| 138 |
+
#: admin.settings.php:94
|
| 139 |
+
msgid "Save Changes"
|
| 140 |
+
msgstr "Änderungen speichern"
|
| 141 |
+
|
| 142 |
+
#: admin.backups-table.php:12
|
| 143 |
+
#, php-format
|
| 144 |
+
msgid "1 backup completed"
|
| 145 |
+
msgid_plural "%d backups completed"
|
| 146 |
+
msgstr[0] "1 Backup fertiggestellt"
|
| 147 |
+
msgstr[1] "%d Backups fertiggestellt"
|
| 148 |
+
|
| 149 |
+
#: admin.backups-table.php:13
|
| 150 |
+
msgid "Size"
|
| 151 |
+
msgstr "Größe"
|
| 152 |
+
|
| 153 |
+
#: admin.backups-table.php:14
|
| 154 |
+
msgid "Actions"
|
| 155 |
+
msgstr "Aktionen"
|
| 156 |
+
|
| 157 |
+
#: admin.backups-table.php:20
|
| 158 |
+
#, php-format
|
| 159 |
+
msgid "Only the most recent backup will be saved"
|
| 160 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 161 |
+
msgstr[0] "Nur das neueste Backup wird gespeichert"
|
| 162 |
+
msgstr[1] "Die %d neuesten Backups werden gespeichert"
|
| 163 |
+
|
| 164 |
+
#: admin.backups-table.php:21
|
| 165 |
+
#, php-format
|
| 166 |
+
msgid "Total %s"
|
| 167 |
+
msgstr "Insgesamt %s"
|
| 168 |
+
|
| 169 |
+
#: admin.page.php:7
|
| 170 |
+
#: admin.menus.php:10
|
| 171 |
+
msgid "Manage Backups"
|
| 172 |
+
msgstr "Backups verwalten"
|
| 173 |
+
|
| 174 |
+
#: admin.page.php:23
|
| 175 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 176 |
+
msgstr "Du musst die Probleme, die oben beschrieben werden, beheben, bevor BackUpWordPress starten kann."
|
| 177 |
+
|
| 178 |
+
#: admin.page.php:29
|
| 179 |
+
#, php-format
|
| 180 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 181 |
+
msgstr "Wenn du Hilfe brauchst, sende uns ruhig eine E-Mail an %s (am besten auf Englisch) und wir werden sehen, was wir tun können."
|
| 182 |
+
|
| 183 |
+
#: admin.backup-button.php:3
|
| 184 |
+
msgid "cancel"
|
| 185 |
+
msgstr "abbrechen"
|
| 186 |
+
|
| 187 |
+
#: admin.backup-button.php:7
|
| 188 |
+
msgid "Back Up Now"
|
| 189 |
+
msgstr "Jetzt sichern"
|
| 190 |
+
|
| 191 |
+
#: admin.constants.php:3
|
| 192 |
+
#, php-format
|
| 193 |
+
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."
|
| 194 |
+
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."
|
| 195 |
+
|
| 196 |
+
#: admin.constants.php:3
|
| 197 |
+
msgid "The Codex can help"
|
| 198 |
+
msgstr "Der Codex kann helfen"
|
| 199 |
+
|
| 200 |
+
#: admin.constants.php:8
|
| 201 |
+
#, php-format
|
| 202 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 203 |
+
msgstr "Der Pfad zum Verzeichnis, in dem du die Backups speichern möchtest. Standard: %s"
|
| 204 |
+
|
| 205 |
+
#: admin.constants.php:11
|
| 206 |
+
#, php-format
|
| 207 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 208 |
+
msgstr "Der Pfad zur ausführbaren %1$s-Datei. Wird für den %2$s-Teil des Backups genutzt, wenn verfügbar."
|
| 209 |
+
|
| 210 |
+
#: admin.constants.php:11
|
| 211 |
+
#: admin.constants.php:14
|
| 212 |
+
#: admin.constants.php:23
|
| 213 |
+
#: admin.constants.php:26
|
| 214 |
+
#: admin.status.php:14
|
| 215 |
+
#: admin.status.php:18
|
| 216 |
+
msgid "database"
|
| 217 |
+
msgstr "Datenbank"
|
| 218 |
+
|
| 219 |
+
#: admin.constants.php:14
|
| 220 |
+
#, php-format
|
| 221 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 222 |
+
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."
|
| 223 |
+
|
| 224 |
+
#: admin.constants.php:14
|
| 225 |
+
#: admin.constants.php:23
|
| 226 |
+
#: admin.constants.php:26
|
| 227 |
+
#: admin.status.php:14
|
| 228 |
+
#: admin.status.php:22
|
| 229 |
+
msgid "files"
|
| 230 |
+
msgstr "Dateien"
|
| 231 |
+
|
| 232 |
+
#: admin.constants.php:17
|
| 233 |
+
#, php-format
|
| 234 |
+
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 235 |
+
msgstr "Deaktiviert die automatischen Backups vollständig. Du kannst trotzdem Backups erstellen, indem du den \"Jetzt sichern\"-Button verwendest. Standard: %s"
|
| 236 |
+
|
| 237 |
+
#: admin.constants.php:20
|
| 238 |
+
#, php-format
|
| 239 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 240 |
+
msgstr "Anzahl der zu behaltenden Backups. Ältere Backups werden automatisch gelöscht, sobald ein neues Backup fertiggestellt ist. Standard: %s"
|
| 241 |
+
|
| 242 |
+
#: admin.constants.php:23
|
| 243 |
+
#: admin.constants.php:26
|
| 244 |
+
#, php-format
|
| 245 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 246 |
+
msgstr "Nur die %1$s sichern, deine %2$s werden nicht gesichert. Standard: %3$s"
|
| 247 |
+
|
| 248 |
+
#: admin.constants.php:29
|
| 249 |
+
#, php-format
|
| 250 |
+
msgid "The time that the daily back up should run. Defaults to %s."
|
| 251 |
+
msgstr "Die Zeit, zu der das tägliche Backup laufen soll. Standard: %s"
|
| 252 |
+
|
| 253 |
+
#: admin.constants.php:32
|
| 254 |
+
#, php-format
|
| 255 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 256 |
+
msgstr "Versuche, eine Kopie des Backups per E-Mail zu senden. Der Wert sollte eine E-Mail-Adresse sein. Standard: %s"
|
| 257 |
+
|
| 258 |
+
#: admin.constants.php:35
|
| 259 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
| 260 |
+
msgstr "Kommagetrennte Liste von Dateien oder Verzeichnissen, die ausgeschlossen werden sollen (das Backup-Verzeichnis ist automatisch ausgeschlossen)."
|
| 261 |
+
|
| 262 |
+
#: admin.constants.php:38
|
| 263 |
+
#, php-format
|
| 264 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 265 |
+
msgstr "Die Rolle, die beim Aufrufen von %1$s benutzt wird. Standard: %2$s"
|
| 266 |
+
|
| 267 |
+
#: admin.constants.php:41
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 270 |
+
msgstr "Das Wurzelverzeichnis, das gesichert wird. Standard: %s"
|
| 271 |
+
|
| 272 |
+
#: admin.actions.php:70
|
| 273 |
+
msgid "You have entered an invalid number of backups."
|
| 274 |
+
msgstr "Du hast eine ungültige Anzahl von Backups eingegeben."
|
| 275 |
+
|
| 276 |
+
#: admin.actions.php:79
|
| 277 |
+
#, php-format
|
| 278 |
+
msgid "%s is an invalid email address."
|
| 279 |
+
msgstr "%s ist eine ungültige E-Mail-Adresse."
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:249
|
| 282 |
+
#: functions/interface.functions.php:89
|
| 283 |
+
#: functions/interface.functions.php:99
|
| 284 |
+
#: functions/interface.functions.php:110
|
| 285 |
+
#: functions/interface.functions.php:120
|
| 286 |
+
#: functions/interface.functions.php:130
|
| 287 |
+
#: functions/interface.functions.php:140
|
| 288 |
+
#: functions/interface.functions.php:150
|
| 289 |
+
msgid "BackUpWordPress has detected a problem."
|
| 290 |
+
msgstr "BackUpWordPress hat ein Problem entdeckt."
|
| 291 |
+
|
| 292 |
+
#: admin.actions.php:249
|
| 293 |
+
#, php-format
|
| 294 |
+
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."
|
| 295 |
+
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."
|
| 296 |
+
|
| 297 |
+
#: admin.menus.php:10
|
| 298 |
+
#: admin.menus.php:34
|
| 299 |
+
msgid "Backups"
|
| 300 |
+
msgstr "Backups"
|
| 301 |
+
|
| 302 |
+
#: admin.menus.php:65
|
| 303 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 304 |
+
msgstr "Du benutzt nicht die neueste stabile BackUpWordPress-Version"
|
| 305 |
+
|
| 306 |
+
#: admin.menus.php:65
|
| 307 |
+
#, php-format
|
| 308 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 309 |
+
msgstr "Diese Informationen sind für Version %1$s. Sieh dir die <code>readme.txt</code>-Datei für Hilfe speziell für Version %2$s an."
|
| 310 |
+
|
| 311 |
+
#: admin.menus.php:75
|
| 312 |
+
msgid "FAQ"
|
| 313 |
+
msgstr "FAQ"
|
| 314 |
+
|
| 315 |
+
#: admin.menus.php:79
|
| 316 |
+
msgid "For more information:"
|
| 317 |
+
msgstr "Für mehr Informationen:"
|
| 318 |
+
|
| 319 |
+
#: admin.menus.php:81
|
| 320 |
+
msgid "Support Forums"
|
| 321 |
+
msgstr "Support-Foren"
|
| 322 |
+
|
| 323 |
+
#: admin.menus.php:82
|
| 324 |
+
msgid "Help with translation"
|
| 325 |
+
msgstr "Beim Übersetzen helfen"
|
| 326 |
+
|
| 327 |
+
#: plugin.php:47
|
| 328 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 329 |
+
msgstr "BackUpWordPress benötigt PHP Version 5.2.4 oder höher."
|
| 330 |
+
|
| 331 |
+
#: plugin.php:58
|
| 332 |
+
#, php-format
|
| 333 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 334 |
+
msgstr "BackUpWordPress benötigt WordPress Version %s."
|
| 335 |
+
|
| 336 |
+
#: admin.status.php:9
|
| 337 |
+
#, php-format
|
| 338 |
+
msgid "Automatic backups are %s."
|
| 339 |
+
msgstr "Automatische Backups sind %s."
|
| 340 |
+
|
| 341 |
+
#: admin.status.php:9
|
| 342 |
+
msgid "disabled"
|
| 343 |
+
msgstr "deaktiviert"
|
| 344 |
+
|
| 345 |
+
#: admin.status.php:14
|
| 346 |
+
msgid "&"
|
| 347 |
+
msgstr "&"
|
| 348 |
+
|
| 349 |
+
#: admin.status.php:32
|
| 350 |
+
#, php-format
|
| 351 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 352 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 353 |
+
msgstr[0] "Deine %1$s wird automatisch %2$s gesichert. Das nächste Backup findet am %3$s um %4$s statt und wird nach %5$s gespeichert."
|
| 354 |
+
msgstr[1] "Deine %1$s werden automatisch %2$s gesichert. Das nächste Backup findet am %3$s um %4$s statt und wird nach %5$s gespeichert."
|
| 355 |
+
|
| 356 |
+
#: admin.status.php:39
|
| 357 |
+
#, php-format
|
| 358 |
+
msgid "It's currently %s"
|
| 359 |
+
msgstr "Es ist jetzt %s"
|
| 360 |
+
|
| 361 |
+
#: admin.status.php:47
|
| 362 |
+
#, php-format
|
| 363 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 364 |
+
msgstr "Deine Seite ist %s groß. Die Backups werden komprimiert und sollten kleiner sein."
|
| 365 |
+
|
| 366 |
+
#: admin.status.php:47
|
| 367 |
+
msgid "Calculating Size..."
|
| 368 |
+
msgstr "Größe berechnen..."
|
| 369 |
+
|
| 370 |
+
#: admin.status.php:50
|
| 371 |
+
#, php-format
|
| 372 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 373 |
+
msgstr "Eine Kopie jedes Backups wird an %s gesendet."
|
| 374 |
+
|
| 375 |
+
#: admin.status.php:54
|
| 376 |
+
#, php-format
|
| 377 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 378 |
+
msgstr "Die folgenden Pfade werden von deinen Backups ausgeschlossen sein: %s"
|
| 379 |
+
|
| 380 |
+
#: hm-backup/hm-backup.php:532
|
| 381 |
+
msgid "The backup file was not created"
|
| 382 |
+
msgstr "Die Backup-Datei wurde nicht angelegt"
|
| 383 |
+
|
| 384 |
+
#: hm-backup/hm-backup.php:603
|
| 385 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 386 |
+
msgstr "Die folgenden Dateien sind nicht lesbar und konnten nicht gesichert werden:"
|
| 387 |
+
|
| 388 |
+
#: functions/interface.functions.php:25
|
| 389 |
+
msgid "Download"
|
| 390 |
+
msgstr "Download"
|
| 391 |
+
|
| 392 |
+
#: functions/interface.functions.php:26
|
| 393 |
+
msgid "Delete"
|
| 394 |
+
msgstr "Löschen"
|
| 395 |
+
|
| 396 |
+
#: functions/interface.functions.php:48
|
| 397 |
+
msgid "Settings saved."
|
| 398 |
+
msgstr "Einstellungen gespeichert."
|
| 399 |
+
|
| 400 |
+
#: functions/interface.functions.php:67
|
| 401 |
+
#: functions/interface.functions.php:79
|
| 402 |
+
msgid "BackUpWordPress is almost ready."
|
| 403 |
+
msgstr "BackUpWordPress ist fast fertig."
|
| 404 |
+
|
| 405 |
+
#: functions/interface.functions.php:67
|
| 406 |
+
#, php-format
|
| 407 |
+
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."
|
| 408 |
+
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."
|
| 409 |
+
|
| 410 |
+
#: functions/interface.functions.php:79
|
| 411 |
+
#, php-format
|
| 412 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 413 |
+
msgstr "Dein Backup-Verzeichnis ist nicht schreibbar. Führe %1$s oder %2$s aus oder setze die Berechtigungen selbst."
|
| 414 |
+
|
| 415 |
+
#: functions/interface.functions.php:89
|
| 416 |
+
#, php-format
|
| 417 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 418 |
+
msgstr "%1$s läuft im %2$s. Bitte kontaktiere deinen Administrator und bitte ihn, den %3$s zu deaktivieren."
|
| 419 |
+
|
| 420 |
+
#: functions/interface.functions.php:89
|
| 421 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 422 |
+
msgstr "http://php.net/manual/de/features.safe-mode.php"
|
| 423 |
+
|
| 424 |
+
#: functions/interface.functions.php:89
|
| 425 |
+
msgid "Safe Mode"
|
| 426 |
+
msgstr "Safe Mode"
|
| 427 |
+
|
| 428 |
+
#: functions/interface.functions.php:99
|
| 429 |
+
#, php-format
|
| 430 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 431 |
+
msgstr "Du hast sowohl %1$s, als auch %2$s definiert. Deswegen gibt es nichts zu sichern."
|
| 432 |
+
|
| 433 |
+
#: functions/interface.functions.php:110
|
| 434 |
+
#, php-format
|
| 435 |
+
msgid "The following email address is not valid: %s."
|
| 436 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 437 |
+
msgstr[0] "Die folgende E-Mail-Adresse ist ungültig: %s"
|
| 438 |
+
msgstr[1] "Die folgenden E-Mail-Adressen sind ungültig: %s"
|
| 439 |
+
|
| 440 |
+
#: functions/interface.functions.php:120
|
| 441 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 442 |
+
msgstr "Das letzte Backup-E-Mail konnte nicht gesendet werden. Wahrscheinlich ist die Datei zu groß."
|
| 443 |
+
|
| 444 |
+
#: functions/interface.functions.php:130
|
| 445 |
+
#, php-format
|
| 446 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 447 |
+
msgstr "Dein angepasstes Backup-Verzeichnis %1$s existiert nicht und kann nicht erstellt werden, neue Backups werden stattdessen nach %2$s gespeichert."
|
| 448 |
+
|
| 449 |
+
#: functions/interface.functions.php:140
|
| 450 |
+
#, php-format
|
| 451 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 452 |
+
msgstr "Dein angepasstes Backup-Verzeichnis %1$s ist nicht schreibbar, neue Backups werden stattdessen nach %2$s gespeichert."
|
| 453 |
+
|
| 454 |
+
#: functions/interface.functions.php:150
|
| 455 |
+
#, php-format
|
| 456 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 457 |
+
msgstr "Du hast eine Ausnahmen-Liste definiert, aber die folgenden Pfade existieren nicht: %s. Bist du sicher, dass du sie korrekt eingegeben hast?"
|
| 458 |
+
|
| 459 |
+
#: functions/interface.functions.php:160
|
| 460 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 461 |
+
msgstr "BackUpWordPress hat Probleme bei deinem letzten Backup bemerkt."
|
| 462 |
+
|
| 463 |
+
#: functions/backup.actions.php:12
|
| 464 |
+
msgid "Dumping database"
|
| 465 |
+
msgstr "Datenbank wird gedump"
|
| 466 |
+
|
| 467 |
+
#: functions/backup.actions.php:22
|
| 468 |
+
msgid "Creating zip archive"
|
| 469 |
+
msgstr "ZIP-Archiv wird erstellt"
|
| 470 |
+
|
| 471 |
+
#: functions/backup.functions.php:19
|
| 472 |
+
msgid "Removing old backups"
|
| 473 |
+
msgstr "Alte Backups werden gelöscht"
|
| 474 |
+
|
| 475 |
+
#: functions/backup.functions.php:147
|
| 476 |
+
#: functions/backup.functions.php:157
|
| 477 |
+
#, php-format
|
| 478 |
+
msgid "Backup of %s"
|
| 479 |
+
msgstr "Backup von %s"
|
| 480 |
+
|
| 481 |
+
#: functions/backup.functions.php:148
|
| 482 |
+
#, php-format
|
| 483 |
+
msgid ""
|
| 484 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 485 |
+
"\\n"
|
| 486 |
+
"The backup file should be attached to this email.\\n"
|
| 487 |
+
"\\n"
|
| 488 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 489 |
+
"\\n"
|
| 490 |
+
"%2$s\\n"
|
| 491 |
+
"\\n"
|
| 492 |
+
"Kind Regards\\n"
|
| 493 |
+
"\\n"
|
| 494 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 495 |
+
msgstr ""
|
| 496 |
+
"BackUpWordPress hat ein Backup deiner Seite %1$s fertiggestellt.\n"
|
| 497 |
+
"\n"
|
| 498 |
+
"Die Backup-Datei sollte an diese E-Mail angehängt sein.\n"
|
| 499 |
+
"\n"
|
| 500 |
+
"Du kannst es auch herunterladen, indem du den folgenden Link anklickst:\n"
|
| 501 |
+
"\n"
|
| 502 |
+
"%2$s\n"
|
| 503 |
+
"\n"
|
| 504 |
+
"Liebe Grüße\n"
|
| 505 |
+
"\n"
|
| 506 |
+
" Der glückliche BackUpWordPress-Backup-E-Mail-Roboter"
|
| 507 |
+
|
| 508 |
+
#: functions/backup.functions.php:158
|
| 509 |
+
#, php-format
|
| 510 |
+
msgid ""
|
| 511 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 512 |
+
"\\n"
|
| 513 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 514 |
+
"\\n"
|
| 515 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 516 |
+
"\\n"
|
| 517 |
+
"%2$s\\n"
|
| 518 |
+
"\\n"
|
| 519 |
+
"Kind Regards\\n"
|
| 520 |
+
"\\n"
|
| 521 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 522 |
+
msgstr ""
|
| 523 |
+
"BackUpWordPress hat ein Backup deiner Seite %1$s fertiggestellt.\n"
|
| 524 |
+
"\n"
|
| 525 |
+
"Leider war die Backup-Datei zu groß, um sie an dieses E-Mail anzuhängen.\n"
|
| 526 |
+
"\n"
|
| 527 |
+
"Du kannst es aber herunterladen, indem du den folgenden Link anklickst:\n"
|
| 528 |
+
"\n"
|
| 529 |
+
"%2$s\n"
|
| 530 |
+
"\n"
|
| 531 |
+
"Liebe Grüße\n"
|
| 532 |
+
"\n"
|
| 533 |
+
" Der glückliche BackUpWordPress-Backup-E-Mail-Roboter"
|
| 534 |
+
|
| 535 |
+
#: functions/core.functions.php:339
|
| 536 |
+
#, php-format
|
| 537 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 538 |
+
msgstr "Diese %s-Datei garantiert, dass andere Leute nicht deine Backup-Dateien herunterladen können."
|
| 539 |
+
|
languages/hmbkp-es_ES.mo
CHANGED
|
Binary file
|
languages/hmbkp-es_ES.po
CHANGED
|
@@ -2,94 +2,152 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
msgid "Help with translation"
|
| 18 |
-
msgstr "Ayuda con las traducciones"
|
| 19 |
-
|
| 20 |
-
#: admin.backup-button.php:3
|
| 21 |
-
msgid "cancel"
|
| 22 |
-
msgstr "cancelar"
|
| 23 |
-
|
| 24 |
-
#: admin.constants.php:23
|
| 25 |
-
#: admin.constants.php:26
|
| 26 |
-
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 27 |
-
msgstr "Copiar sólo %s, %s no será incluido. Valor predeterminado %s."
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
|
| 31 |
-
|
|
|
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
|
| 35 |
-
|
|
|
|
| 36 |
|
|
|
|
| 37 |
#: admin.constants.php:3
|
| 38 |
#: admin.menus.php:76
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
msgid "Constants"
|
| 41 |
msgstr "Constantes"
|
| 42 |
|
| 43 |
-
#: admin.menus.php:81
|
| 44 |
-
msgid "Support Forums"
|
| 45 |
-
msgstr "Foros de soporte"
|
| 46 |
-
|
| 47 |
-
#: admin.settings.php:5
|
| 48 |
-
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 49 |
-
msgstr "Puedes establecer %s de %s para controlar algunas opciones de configuración. La lista completa de %s se encuentra en %s. No podrás cambiar las opciones de configuración predeterminadas."
|
| 50 |
-
|
| 51 |
#: admin.settings.php:5
|
| 52 |
msgid "help panel"
|
| 53 |
msgstr "panel de ayuda"
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
-
msgstr "
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
-
msgstr "
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress ha detectado un problema."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
-
msgstr "
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,60 +157,104 @@ msgstr "Tamaño"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Acciones"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr "Total %s"
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
| 108 |
-
|
|
|
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
| 111 |
msgid "The Codex can help"
|
| 112 |
msgstr "Busca ayuda en el Codex"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "La ruta hacia el directorio en el que deseas guardar tus copias de seguridad será por defecto %s."
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
| 120 |
-
|
|
|
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
| 123 |
#: admin.constants.php:14
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "base de datos"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
| 133 |
-
|
|
|
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "archivos"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr "Desactiva completamente las copias automáticas. Podrás hacer copias de seguridad de todas maneras utilizando el botón \"Hacer copia de seguridad ahora\". Valor predeterminado es %s."
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
| 149 |
msgstr "El numero de copias de seguridad que se guardarán; las copias más antiguas se borrarán automáticamente cuando se crea una nueva copia. Valor predeterminado es %s."
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr "La hora a la que se creará la copia diaria. Valor predeterminado es %s."
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr "Intento de enviar un correo con tu copia de de seguridad. El valor debería ser la dirección de correo de envíos. Valor predeterminado es %s."
|
| 158 |
|
|
@@ -161,13 +263,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr "Listado de archivos o directorios para excluir de la copia de seguridad separados por coma."
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
| 165 |
-
|
|
|
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,108 +306,38 @@ msgstr "Copias de seguridad"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "No estás usando la versión más reciente y estable de BackUpWordPress"
|
| 180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
#: admin.menus.php:79
|
| 182 |
msgid "For more information:"
|
| 183 |
msgstr "Para más información:"
|
| 184 |
|
| 185 |
-
#: admin.
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
msgstr "Opciones"
|
| 189 |
-
|
| 190 |
-
#: admin.page.php:23
|
| 191 |
-
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 192 |
-
msgstr "Debes arreglar los problemas indicados arriba para que BackUpWordPress pueda iniciar."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Si necesitas ayuda puedes contactarnos al correo electrónico %s y haremos todo lo posible para ayudarte."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
-
msgstr "Copias de seguridad automáticas"
|
| 201 |
-
|
| 202 |
-
#: admin.settings.php:22
|
| 203 |
-
msgid "Backup my site automatically."
|
| 204 |
-
msgstr "Hacer copias de seguridad de mi sitio de manera automática."
|
| 205 |
-
|
| 206 |
-
#: admin.settings.php:27
|
| 207 |
-
msgid "No automatic backups."
|
| 208 |
-
msgstr "No hacer copias de seguridad de mi sitio de manera automática."
|
| 209 |
-
|
| 210 |
-
#: admin.settings.php:36
|
| 211 |
-
msgid "Frequency of backups"
|
| 212 |
-
msgstr "Frecuencia de las copias de seguridad"
|
| 213 |
-
|
| 214 |
-
#: admin.settings.php:40
|
| 215 |
-
msgid "Automatic backups will occur"
|
| 216 |
-
msgstr "Copias de seguridad automáticas se producirán"
|
| 217 |
-
|
| 218 |
-
#: admin.settings.php:43
|
| 219 |
-
msgid "Daily"
|
| 220 |
-
msgstr "Cada día"
|
| 221 |
-
|
| 222 |
-
#: admin.settings.php:44
|
| 223 |
-
msgid "Weekly"
|
| 224 |
-
msgstr "Cada semana"
|
| 225 |
-
|
| 226 |
-
#: admin.settings.php:45
|
| 227 |
-
msgid "Fortnightly"
|
| 228 |
-
msgstr "Cada dos semanas"
|
| 229 |
-
|
| 230 |
-
#: admin.settings.php:46
|
| 231 |
-
msgid "Monthly"
|
| 232 |
-
msgstr "Cada mes"
|
| 233 |
-
|
| 234 |
-
#: admin.settings.php:55
|
| 235 |
-
msgid "What to Backup"
|
| 236 |
-
msgstr "Incluir en la copia de seguridad"
|
| 237 |
-
|
| 238 |
-
#: admin.settings.php:59
|
| 239 |
-
msgid "Backup my"
|
| 240 |
-
msgstr "Hacer copia de seguridad de mi"
|
| 241 |
-
|
| 242 |
-
#: admin.settings.php:62
|
| 243 |
-
msgid "database & files"
|
| 244 |
-
msgstr "base de datos & archivos"
|
| 245 |
-
|
| 246 |
-
#: admin.settings.php:63
|
| 247 |
-
msgid "database only"
|
| 248 |
-
msgstr "sólo base de datos"
|
| 249 |
-
|
| 250 |
-
#: admin.settings.php:64
|
| 251 |
-
msgid "files only"
|
| 252 |
-
msgstr "sólo archivos"
|
| 253 |
-
|
| 254 |
-
#: admin.settings.php:72
|
| 255 |
-
msgid "Number of backups"
|
| 256 |
-
msgstr "Número de copias de seguridad"
|
| 257 |
-
|
| 258 |
-
#: admin.settings.php:73
|
| 259 |
-
msgid "The last %s backups will be stored on the server."
|
| 260 |
-
msgstr "Las %s últimas copias de seguridad se almacenarán en el servidor."
|
| 261 |
-
|
| 262 |
-
#: admin.settings.php:77
|
| 263 |
-
msgid "Email backups"
|
| 264 |
-
msgstr "Enviar copias de seguridad por correo electrónico"
|
| 265 |
-
|
| 266 |
-
#: admin.settings.php:78
|
| 267 |
-
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 268 |
-
msgstr "Se enviará el archivo de copia de seguridad a esta dirección de correo electrónico. Dejar en blanco para desactivar."
|
| 269 |
|
| 270 |
-
#: admin.
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr "
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
-
msgstr "
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
| 280 |
-
|
|
|
|
| 281 |
|
| 282 |
#: admin.status.php:9
|
|
|
|
| 283 |
msgid "Automatic backups are %s."
|
| 284 |
msgstr "Las copias automáticas están %s."
|
| 285 |
|
|
@@ -291,30 +349,120 @@ msgstr "desactivadas"
|
|
| 291 |
msgid "&"
|
| 292 |
msgstr "&"
|
| 293 |
|
| 294 |
-
#: admin.status.php:
|
| 295 |
-
|
| 296 |
-
|
|
|
|
|
|
|
|
|
|
| 297 |
|
| 298 |
-
#: admin.status.php:
|
|
|
|
| 299 |
msgid "It's currently %s"
|
| 300 |
msgstr "Actualmente son %s"
|
| 301 |
|
| 302 |
-
#: admin.status.php:
|
|
|
|
| 303 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 304 |
msgstr "Tu sitio web pesa %s. Las copias de seguridad serán comprimidas y deberían pesar menos."
|
| 305 |
|
| 306 |
-
#: admin.status.php:
|
| 307 |
msgid "Calculating Size..."
|
| 308 |
msgstr "Calculando el tamaño..."
|
| 309 |
|
| 310 |
-
#: admin.status.php:
|
|
|
|
| 311 |
msgid "A copy of each backup will be emailed to %s."
|
| 312 |
msgstr "Una de copia de seguridad será enviada por correo electrónico a %s."
|
| 313 |
|
| 314 |
-
#: admin.status.php:
|
|
|
|
| 315 |
msgid "The following paths will be excluded from your backups %s."
|
| 316 |
msgstr "Las siguientes rutas se excluirán de tu copias de seguridad %s."
|
| 317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
#: functions/backup.actions.php:12
|
| 319 |
msgid "Dumping database"
|
| 320 |
msgstr "Guardando la base de datos"
|
|
@@ -329,125 +477,64 @@ msgstr "Borrando copias antiguas"
|
|
| 329 |
|
| 330 |
#: functions/backup.functions.php:147
|
| 331 |
#: functions/backup.functions.php:157
|
|
|
|
| 332 |
msgid "Backup of %s"
|
| 333 |
msgstr "Copia de %s"
|
| 334 |
|
| 335 |
#: functions/backup.functions.php:148
|
|
|
|
| 336 |
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 338 |
-
"
|
| 339 |
-
"The backup file should be attached to this email
|
| 340 |
-
"
|
| 341 |
-
"You can also download the backup file by clicking the link below
|
| 342 |
-
"
|
| 343 |
-
"%s
|
| 344 |
-
"
|
| 345 |
-
"Kind Regards
|
| 346 |
-
"
|
| 347 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
-
"BackUpWordpress ha completado una copia de seguridad de tu sito %s.\n"
|
| 350 |
"\n"
|
| 351 |
"El archivo de copia de seguridad se encuentra adjunto a este correo electrónico.\n"
|
| 352 |
"\n"
|
| 353 |
"También puedes descargarlo desde el enlace indicado más abajo:\n"
|
| 354 |
"\n"
|
| 355 |
-
"%s\n"
|
| 356 |
"\n"
|
| 357 |
"Un saludo\n"
|
| 358 |
"\n"
|
| 359 |
"El feliz robot de envíos de BackUpWordPress"
|
| 360 |
|
| 361 |
#: functions/backup.functions.php:158
|
|
|
|
| 362 |
msgid ""
|
| 363 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 364 |
-
"
|
| 365 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 366 |
-
"
|
| 367 |
-
"You can download the backup file by clicking the link below
|
| 368 |
-
"
|
| 369 |
-
"%s
|
| 370 |
-
"
|
| 371 |
-
"Kind Regards
|
| 372 |
-
"
|
| 373 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 374 |
msgstr ""
|
| 375 |
-
"BackUpWordpress ha completado una copia de seguridad de tu sito %s.\n"
|
| 376 |
"\n"
|
| 377 |
"Desafortunadamente el archivo de copia de seguridad creado es demasiado grande para enviar como archivo adjunto, pero puedes descargarlo desde enlace indicado aquí:\n"
|
| 378 |
"\n"
|
| 379 |
-
"%s\n"
|
| 380 |
"\n"
|
| 381 |
"Un saludo\n"
|
| 382 |
"\n"
|
| 383 |
"El feliz robot de envíos de BackUpWordPress"
|
| 384 |
|
| 385 |
-
#: functions/
|
| 386 |
-
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
#: functions/interface.functions.php:26
|
| 390 |
-
msgid "Delete"
|
| 391 |
-
msgstr "Borrar"
|
| 392 |
-
|
| 393 |
-
#: functions/interface.functions.php:67
|
| 394 |
-
#: functions/interface.functions.php:79
|
| 395 |
-
msgid "BackUpWordPress is almost ready."
|
| 396 |
-
msgstr "BackUpWordPress está casi preparado."
|
| 397 |
-
|
| 398 |
-
#: functions/interface.functions.php:67
|
| 399 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 400 |
-
msgstr "El directorio de copias de seguridad no se pudo crear porque tu directorio %s no tiene el permiso de escritura; ejecuta %s o %s o crea el directorio tu mismo."
|
| 401 |
-
|
| 402 |
-
#: functions/interface.functions.php:79
|
| 403 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 404 |
-
msgstr "El directorio de tus copias de seguridad no tiene permiso de escritura, ejecuta %s o %s o configura los permisos tu mismo."
|
| 405 |
-
|
| 406 |
-
#: functions/interface.functions.php:89
|
| 407 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 408 |
-
msgstr " %s se está ejecutando en %s. Por favor contacta con tu administrador de alojamiento para que pare el proceso %s."
|
| 409 |
-
|
| 410 |
-
#: functions/interface.functions.php:99
|
| 411 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 412 |
-
msgstr "Tienes %s y %s definidos - no hay archivos para hacer copias de seguridad."
|
| 413 |
-
|
| 414 |
-
#: functions/interface.functions.php:109
|
| 415 |
-
msgid "The following email address's are not valid: %s."
|
| 416 |
-
msgstr "La siguiente dirección de correo electrónico no es válida: %s."
|
| 417 |
-
|
| 418 |
-
#: functions/interface.functions.php:119
|
| 419 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 420 |
-
msgstr "No se pudo enviar el último correo electrónico con copia de seguridad. Es probable que el archivo sea demasiado grande."
|
| 421 |
-
|
| 422 |
-
#: functions/interface.functions.php:129
|
| 423 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 424 |
-
msgstr "No existe la carpeta de tus copias de seguridad %s y no se puede crear; tus copias se guardarán en %s."
|
| 425 |
-
|
| 426 |
-
#: functions/interface.functions.php:139
|
| 427 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 428 |
-
msgstr "La carpeta de tus copias de seguridad %s no tiene permisos de escritura; las nuevas copias se guardarán en %s."
|
| 429 |
-
|
| 430 |
-
#: functions/interface.functions.php:149
|
| 431 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 432 |
-
msgstr "Has definido la lista de exclusión personalizada pero las rutas %s no existen; ¿estás seguro de que las escribiste correctamente?"
|
| 433 |
-
|
| 434 |
-
#: functions/interface.functions.php:159
|
| 435 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 436 |
-
msgstr "BackUpWordPress ha detectado problemas con la última copia de seguridad."
|
| 437 |
-
|
| 438 |
-
#: hm-backup/hm-backup.php:532
|
| 439 |
-
msgid "The backup file was not created"
|
| 440 |
-
msgstr "No se ha creado el archivo de copia de seguridad"
|
| 441 |
-
|
| 442 |
-
#: hm-backup/hm-backup.php:603
|
| 443 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 444 |
-
msgstr "Los siguientes archivos son ilegibles y no se ha incluido en la copia de seguridad: "
|
| 445 |
-
|
| 446 |
-
#: plugin.php:47
|
| 447 |
-
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 448 |
-
msgstr "BackUpWordPress requiere PHP versión 5.2.4 o superior."
|
| 449 |
-
|
| 450 |
-
#: plugin.php:58
|
| 451 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 452 |
-
msgstr "BackUpWordPress requiere la versión %s de Wordpress."
|
| 453 |
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:41+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:41+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: Spanish\n"
|
| 18 |
+
"X-Poedit-Country: SPAIN\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
+
msgstr "Opciones"
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
+
msgstr "Puedes establecer %1$s de %2$s para controlar algunas opciones de configuración. La lista completa de %3$s se encuentra en %4$s. No podrás cambiar las opciones de configuración predeterminadas."
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
| 35 |
#: admin.constants.php:3
|
| 36 |
#: admin.menus.php:76
|
|
|
|
| 37 |
msgid "Constants"
|
| 38 |
msgstr "Constantes"
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
#: admin.settings.php:5
|
| 41 |
msgid "help panel"
|
| 42 |
msgstr "panel de ayuda"
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
+
msgstr "Copias de seguridad automáticas"
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
| 50 |
+
msgstr "Hacer copias de seguridad de mi sitio de manera automática."
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
+
msgstr "No hacer copias de seguridad de mi sitio de manera automática."
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
+
msgstr "Frecuencia de las copias de seguridad"
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
+
msgstr "Copias de seguridad automáticas se producirán"
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
+
msgstr "Cada día"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
+
msgstr "Cada semana"
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
+
msgstr "Cada dos semanas"
|
| 75 |
+
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
+
msgstr "Cada mes"
|
| 79 |
+
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
+
msgstr "Incluir en la copia de seguridad"
|
| 83 |
+
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr "Hacer copia de seguridad de mi"
|
| 87 |
+
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
+
msgstr "base de datos & archivos"
|
| 91 |
+
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr "sólo base de datos"
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr "sólo archivos"
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr "Número de copias de seguridad"
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr "Las %s últimas copias de seguridad se almacenarán en el servidor."
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr "Enviar copias de seguridad por correo electrónico"
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr "Se enviará el archivo de copia de seguridad a esta dirección de correo electrónico. Dejar en blanco para desactivar."
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr "Excluir"
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr "Lista de archivos y rutas de carpetas que <strong>no</strong> deseas incluir en la copia de seguridad."
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr "por ejemplo"
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr "Guardar los cambios"
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
|
| 152 |
#: admin.backups-table.php:13
|
| 153 |
msgid "Size"
|
| 157 |
msgid "Actions"
|
| 158 |
msgstr "Acciones"
|
| 159 |
|
| 160 |
+
#: admin.backups-table.php:20
|
| 161 |
+
#, php-format
|
| 162 |
+
msgid "Only the most recent backup will be saved"
|
| 163 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 164 |
+
msgstr[0] ""
|
| 165 |
+
msgstr[1] ""
|
| 166 |
+
|
| 167 |
#: admin.backups-table.php:21
|
| 168 |
+
#, php-format
|
| 169 |
msgid "Total %s"
|
| 170 |
msgstr "Total %s"
|
| 171 |
|
| 172 |
+
#: admin.page.php:7
|
| 173 |
+
#: admin.menus.php:10
|
| 174 |
+
msgid "Manage Backups"
|
| 175 |
+
msgstr "Gestionar copias de seguridad"
|
| 176 |
+
|
| 177 |
+
#: admin.page.php:23
|
| 178 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 179 |
+
msgstr "Debes arreglar los problemas indicados arriba para que BackUpWordPress pueda iniciar."
|
| 180 |
+
|
| 181 |
+
#: admin.page.php:29
|
| 182 |
+
#, php-format
|
| 183 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 184 |
+
msgstr "Si necesitas ayuda puedes contactarnos al correo electrónico %s y haremos todo lo posible para ayudarte."
|
| 185 |
+
|
| 186 |
+
#: admin.backup-button.php:3
|
| 187 |
+
msgid "cancel"
|
| 188 |
+
msgstr "cancelar"
|
| 189 |
+
|
| 190 |
+
#: admin.backup-button.php:7
|
| 191 |
+
msgid "Back Up Now"
|
| 192 |
+
msgstr "Hacer copia de seguridad ahora"
|
| 193 |
+
|
| 194 |
#: admin.constants.php:3
|
| 195 |
+
#, php-format
|
| 196 |
+
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."
|
| 197 |
+
msgstr "Puedes %1$s cualquiera de los %2$s en tu %3$s para controlar opciones avanzadas. %4$s. %5$s establecidas verán destacadas."
|
| 198 |
|
| 199 |
#: admin.constants.php:3
|
| 200 |
msgid "The Codex can help"
|
| 201 |
msgstr "Busca ayuda en el Codex"
|
| 202 |
|
| 203 |
#: admin.constants.php:8
|
| 204 |
+
#, php-format
|
| 205 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 206 |
msgstr "La ruta hacia el directorio en el que deseas guardar tus copias de seguridad será por defecto %s."
|
| 207 |
|
| 208 |
#: admin.constants.php:11
|
| 209 |
+
#, php-format
|
| 210 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 211 |
+
msgstr "La ruta hacia tu %1$s ejecutable. Se utilizará para la parte %2$s de la copia de seguridad si está disponible."
|
| 212 |
|
| 213 |
#: admin.constants.php:11
|
| 214 |
#: admin.constants.php:14
|
| 215 |
#: admin.constants.php:23
|
| 216 |
#: admin.constants.php:26
|
| 217 |
#: admin.status.php:14
|
| 218 |
+
#: admin.status.php:18
|
| 219 |
msgid "database"
|
| 220 |
msgstr "base de datos"
|
| 221 |
|
| 222 |
#: admin.constants.php:14
|
| 223 |
+
#, php-format
|
| 224 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 225 |
+
msgstr "La ruta hacia tu %1$s ejecutable. Se utilizará para hacer el archivo zip de tu %2$s y %3$s si está disponible."
|
| 226 |
|
| 227 |
#: admin.constants.php:14
|
| 228 |
#: admin.constants.php:23
|
| 229 |
#: admin.constants.php:26
|
| 230 |
#: admin.status.php:14
|
| 231 |
+
#: admin.status.php:22
|
| 232 |
msgid "files"
|
| 233 |
msgstr "archivos"
|
| 234 |
|
| 235 |
#: admin.constants.php:17
|
| 236 |
+
#, php-format
|
| 237 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 238 |
msgstr "Desactiva completamente las copias automáticas. Podrás hacer copias de seguridad de todas maneras utilizando el botón \"Hacer copia de seguridad ahora\". Valor predeterminado es %s."
|
| 239 |
|
| 240 |
#: admin.constants.php:20
|
| 241 |
+
#, fuzzy, php-format
|
| 242 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 243 |
msgstr "El numero de copias de seguridad que se guardarán; las copias más antiguas se borrarán automáticamente cuando se crea una nueva copia. Valor predeterminado es %s."
|
| 244 |
|
| 245 |
+
#: admin.constants.php:23
|
| 246 |
+
#: admin.constants.php:26
|
| 247 |
+
#, php-format
|
| 248 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 249 |
+
msgstr "Copiar sólo %1$s, %2$s no será incluido. Valor predeterminado %3$s."
|
| 250 |
+
|
| 251 |
#: admin.constants.php:29
|
| 252 |
+
#, php-format
|
| 253 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 254 |
msgstr "La hora a la que se creará la copia diaria. Valor predeterminado es %s."
|
| 255 |
|
| 256 |
#: admin.constants.php:32
|
| 257 |
+
#, php-format
|
| 258 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 259 |
msgstr "Intento de enviar un correo con tu copia de de seguridad. El valor debería ser la dirección de correo de envíos. Valor predeterminado es %s."
|
| 260 |
|
| 263 |
msgstr "Listado de archivos o directorios para excluir de la copia de seguridad separados por coma."
|
| 264 |
|
| 265 |
#: admin.constants.php:38
|
| 266 |
+
#, php-format
|
| 267 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 268 |
+
msgstr "Capacidad que se usa al llamar %1$s. Valor predeterminado es %2$s."
|
| 269 |
|
| 270 |
+
#: admin.constants.php:41
|
| 271 |
+
#, fuzzy, php-format
|
| 272 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 273 |
+
msgstr "La hora a la que se creará la copia diaria. Valor predeterminado es %s."
|
| 274 |
+
|
| 275 |
+
#: admin.actions.php:70
|
| 276 |
+
msgid "You have entered an invalid number of backups."
|
| 277 |
+
msgstr "Has introducido un número de copias de seguridad no válido."
|
| 278 |
+
|
| 279 |
+
#: admin.actions.php:79
|
| 280 |
+
#, php-format
|
| 281 |
+
msgid "%s is an invalid email address."
|
| 282 |
+
msgstr "%s no es una dirección de correo valida."
|
| 283 |
+
|
| 284 |
+
#: admin.actions.php:249
|
| 285 |
+
#: functions/interface.functions.php:89
|
| 286 |
+
#: functions/interface.functions.php:99
|
| 287 |
+
#: functions/interface.functions.php:110
|
| 288 |
+
#: functions/interface.functions.php:120
|
| 289 |
+
#: functions/interface.functions.php:130
|
| 290 |
+
#: functions/interface.functions.php:140
|
| 291 |
+
#: functions/interface.functions.php:150
|
| 292 |
+
msgid "BackUpWordPress has detected a problem."
|
| 293 |
+
msgstr "BackUpWordPress ha detectado un problema."
|
| 294 |
+
|
| 295 |
+
#: admin.actions.php:249
|
| 296 |
+
#, php-format
|
| 297 |
+
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."
|
| 298 |
+
msgstr "%1$s esta devolviendo una respuesta %2$s lo que podría significar que procesos cron no se están ejecutado correctamente. BackUpWordPress no puede funcionar sin que wp-cron haga copias de seguridad en un proceso aparte. Consultar %3$s para más información."
|
| 299 |
|
| 300 |
#: admin.menus.php:10
|
| 301 |
#: admin.menus.php:34
|
| 306 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 307 |
msgstr "No estás usando la versión más reciente y estable de BackUpWordPress"
|
| 308 |
|
| 309 |
+
#: admin.menus.php:65
|
| 310 |
+
#, php-format
|
| 311 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 312 |
+
msgstr "La información abajo es válida para la versión %1$s. Consulta el archivo <code>readme.txt</code> para ayuda especifica para la versión %2$s."
|
| 313 |
+
|
| 314 |
+
#: admin.menus.php:75
|
| 315 |
+
msgid "FAQ"
|
| 316 |
+
msgstr "Preguntas frecuentes"
|
| 317 |
+
|
| 318 |
#: admin.menus.php:79
|
| 319 |
msgid "For more information:"
|
| 320 |
msgstr "Para más información:"
|
| 321 |
|
| 322 |
+
#: admin.menus.php:81
|
| 323 |
+
msgid "Support Forums"
|
| 324 |
+
msgstr "Foros de soporte"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 325 |
|
| 326 |
+
#: admin.menus.php:82
|
| 327 |
+
msgid "Help with translation"
|
| 328 |
+
msgstr "Ayuda con las traducciones"
|
| 329 |
|
| 330 |
+
#: plugin.php:47
|
| 331 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 332 |
+
msgstr "BackUpWordPress requiere PHP versión 5.2.4 o superior."
|
| 333 |
|
| 334 |
+
#: plugin.php:58
|
| 335 |
+
#, php-format
|
| 336 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 337 |
+
msgstr "BackUpWordPress requiere la versión %s de Wordpress."
|
| 338 |
|
| 339 |
#: admin.status.php:9
|
| 340 |
+
#, php-format
|
| 341 |
msgid "Automatic backups are %s."
|
| 342 |
msgstr "Las copias automáticas están %s."
|
| 343 |
|
| 349 |
msgid "&"
|
| 350 |
msgstr "&"
|
| 351 |
|
| 352 |
+
#: admin.status.php:32
|
| 353 |
+
#, php-format
|
| 354 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 355 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 356 |
+
msgstr[0] "Tus %1$s se incluirán en la copia de seguridad automática %2$s. La siguiente copia de seguridad se producirá a las %3$s el %4$s y se guardará en %5$s."
|
| 357 |
+
msgstr[1] "Tus %1$s se incluirán en la copia de seguridad automática %2$s. La siguiente copia de seguridad se producirá a las %3$s el %4$s y se guardará en %5$s."
|
| 358 |
|
| 359 |
+
#: admin.status.php:39
|
| 360 |
+
#, php-format
|
| 361 |
msgid "It's currently %s"
|
| 362 |
msgstr "Actualmente son %s"
|
| 363 |
|
| 364 |
+
#: admin.status.php:47
|
| 365 |
+
#, php-format
|
| 366 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 367 |
msgstr "Tu sitio web pesa %s. Las copias de seguridad serán comprimidas y deberían pesar menos."
|
| 368 |
|
| 369 |
+
#: admin.status.php:47
|
| 370 |
msgid "Calculating Size..."
|
| 371 |
msgstr "Calculando el tamaño..."
|
| 372 |
|
| 373 |
+
#: admin.status.php:50
|
| 374 |
+
#, php-format
|
| 375 |
msgid "A copy of each backup will be emailed to %s."
|
| 376 |
msgstr "Una de copia de seguridad será enviada por correo electrónico a %s."
|
| 377 |
|
| 378 |
+
#: admin.status.php:54
|
| 379 |
+
#, php-format
|
| 380 |
msgid "The following paths will be excluded from your backups %s."
|
| 381 |
msgstr "Las siguientes rutas se excluirán de tu copias de seguridad %s."
|
| 382 |
|
| 383 |
+
#: hm-backup/hm-backup.php:532
|
| 384 |
+
msgid "The backup file was not created"
|
| 385 |
+
msgstr "No se ha creado el archivo de copia de seguridad"
|
| 386 |
+
|
| 387 |
+
#: hm-backup/hm-backup.php:603
|
| 388 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 389 |
+
msgstr "Los siguientes archivos son ilegibles y no se ha incluido en la copia de seguridad: "
|
| 390 |
+
|
| 391 |
+
#: functions/interface.functions.php:25
|
| 392 |
+
msgid "Download"
|
| 393 |
+
msgstr "Descarga"
|
| 394 |
+
|
| 395 |
+
#: functions/interface.functions.php:26
|
| 396 |
+
msgid "Delete"
|
| 397 |
+
msgstr "Borrar"
|
| 398 |
+
|
| 399 |
+
#: functions/interface.functions.php:48
|
| 400 |
+
msgid "Settings saved."
|
| 401 |
+
msgstr "Configuración guardada."
|
| 402 |
+
|
| 403 |
+
#: functions/interface.functions.php:67
|
| 404 |
+
#: functions/interface.functions.php:79
|
| 405 |
+
msgid "BackUpWordPress is almost ready."
|
| 406 |
+
msgstr "BackUpWordPress está casi preparado."
|
| 407 |
+
|
| 408 |
+
#: functions/interface.functions.php:67
|
| 409 |
+
#, php-format
|
| 410 |
+
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."
|
| 411 |
+
msgstr "El directorio de copias de seguridad no se pudo crear porque tu directorio %1$s no tiene el permiso de escritura; ejecuta %2$s o %3$s o crea el directorio tu mismo."
|
| 412 |
+
|
| 413 |
+
#: functions/interface.functions.php:79
|
| 414 |
+
#, php-format
|
| 415 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 416 |
+
msgstr "El directorio de tus copias de seguridad no tiene permiso de escritura, ejecuta %1$s o %2$s o configura los permisos tu mismo."
|
| 417 |
+
|
| 418 |
+
#: functions/interface.functions.php:89
|
| 419 |
+
#, php-format
|
| 420 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 421 |
+
msgstr "%1$s se está ejecutando en %2$s. Por favor contacta con tu administrador de alojamiento para que pare el proceso %3$s."
|
| 422 |
+
|
| 423 |
+
#: functions/interface.functions.php:89
|
| 424 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 425 |
+
msgstr "http://php.net/manual/es/features.safe-mode.php"
|
| 426 |
+
|
| 427 |
+
#: functions/interface.functions.php:89
|
| 428 |
+
msgid "Safe Mode"
|
| 429 |
+
msgstr "Safe Mode"
|
| 430 |
+
|
| 431 |
+
#: functions/interface.functions.php:99
|
| 432 |
+
#, php-format
|
| 433 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 434 |
+
msgstr "Tienes %1$s y %2$s definidos - no hay archivos para hacer copias de seguridad."
|
| 435 |
+
|
| 436 |
+
#: functions/interface.functions.php:110
|
| 437 |
+
#, fuzzy, php-format
|
| 438 |
+
msgid "The following email address is not valid: %s."
|
| 439 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 440 |
+
msgstr[0] "La siguiente dirección de correo electrónico no es válida: %s."
|
| 441 |
+
msgstr[1] "La siguiente dirección de correo electrónico no es válida: %s."
|
| 442 |
+
|
| 443 |
+
#: functions/interface.functions.php:120
|
| 444 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 445 |
+
msgstr "No se pudo enviar el último correo electrónico con copia de seguridad. Es probable que el archivo sea demasiado grande."
|
| 446 |
+
|
| 447 |
+
#: functions/interface.functions.php:130
|
| 448 |
+
#, php-format
|
| 449 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 450 |
+
msgstr "No existe la carpeta de tus copias de seguridad %1$s y no se puede crear; tus copias se guardarán en %2$s."
|
| 451 |
+
|
| 452 |
+
#: functions/interface.functions.php:140
|
| 453 |
+
#, php-format
|
| 454 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 455 |
+
msgstr "La carpeta de tus copias de seguridad %1$s no tiene permisos de escritura; las nuevas copias se guardarán en %2$s."
|
| 456 |
+
|
| 457 |
+
#: functions/interface.functions.php:150
|
| 458 |
+
#, php-format
|
| 459 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 460 |
+
msgstr "Has definido la lista de exclusión personalizada pero las rutas %s no existen; ¿estás seguro de que las escribiste correctamente?"
|
| 461 |
+
|
| 462 |
+
#: functions/interface.functions.php:160
|
| 463 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 464 |
+
msgstr "BackUpWordPress ha detectado problemas con la última copia de seguridad."
|
| 465 |
+
|
| 466 |
#: functions/backup.actions.php:12
|
| 467 |
msgid "Dumping database"
|
| 468 |
msgstr "Guardando la base de datos"
|
| 477 |
|
| 478 |
#: functions/backup.functions.php:147
|
| 479 |
#: functions/backup.functions.php:157
|
| 480 |
+
#, php-format
|
| 481 |
msgid "Backup of %s"
|
| 482 |
msgstr "Copia de %s"
|
| 483 |
|
| 484 |
#: functions/backup.functions.php:148
|
| 485 |
+
#, php-format
|
| 486 |
msgid ""
|
| 487 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 488 |
+
"\\n"
|
| 489 |
+
"The backup file should be attached to this email.\\n"
|
| 490 |
+
"\\n"
|
| 491 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"%2$s\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"Kind Regards\\n"
|
| 496 |
+
"\\n"
|
| 497 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 498 |
msgstr ""
|
| 499 |
+
"BackUpWordpress ha completado una copia de seguridad de tu sito %1$s.\n"
|
| 500 |
"\n"
|
| 501 |
"El archivo de copia de seguridad se encuentra adjunto a este correo electrónico.\n"
|
| 502 |
"\n"
|
| 503 |
"También puedes descargarlo desde el enlace indicado más abajo:\n"
|
| 504 |
"\n"
|
| 505 |
+
"%2$s\n"
|
| 506 |
"\n"
|
| 507 |
"Un saludo\n"
|
| 508 |
"\n"
|
| 509 |
"El feliz robot de envíos de BackUpWordPress"
|
| 510 |
|
| 511 |
#: functions/backup.functions.php:158
|
| 512 |
+
#, php-format
|
| 513 |
msgid ""
|
| 514 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 515 |
+
"\\n"
|
| 516 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 517 |
+
"\\n"
|
| 518 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 519 |
+
"\\n"
|
| 520 |
+
"%2$s\\n"
|
| 521 |
+
"\\n"
|
| 522 |
+
"Kind Regards\\n"
|
| 523 |
+
"\\n"
|
| 524 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 525 |
msgstr ""
|
| 526 |
+
"BackUpWordpress ha completado una copia de seguridad de tu sito %1$s.\n"
|
| 527 |
"\n"
|
| 528 |
"Desafortunadamente el archivo de copia de seguridad creado es demasiado grande para enviar como archivo adjunto, pero puedes descargarlo desde enlace indicado aquí:\n"
|
| 529 |
"\n"
|
| 530 |
+
"%2$s\n"
|
| 531 |
"\n"
|
| 532 |
"Un saludo\n"
|
| 533 |
"\n"
|
| 534 |
"El feliz robot de envíos de BackUpWordPress"
|
| 535 |
|
| 536 |
+
#: functions/core.functions.php:339
|
| 537 |
+
#, php-format
|
| 538 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 539 |
+
msgstr "El archivo %s de seguridad hace que otras personas no pueden descargar tus copias de seguridad."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 540 |
|
languages/hmbkp-eu.mo
ADDED
|
Binary file
|
languages/hmbkp-eu.po
ADDED
|
@@ -0,0 +1,432 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Translation of 1.6.8 in Basque
|
| 2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
+
msgid ""
|
| 4 |
+
msgstr ""
|
| 5 |
+
"PO-Revision-Date: 2012-08-10 14:34:15+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: 1.6.8\n"
|
| 12 |
+
|
| 13 |
+
#: admin.menus.php:82
|
| 14 |
+
msgid "Help with translation"
|
| 15 |
+
msgstr "Itzulpenarekin lagundu"
|
| 16 |
+
|
| 17 |
+
#: admin.backup-button.php:3
|
| 18 |
+
msgid "cancel"
|
| 19 |
+
msgstr "ezeztatu"
|
| 20 |
+
|
| 21 |
+
#: admin.constants.php:23 admin.constants.php:26
|
| 22 |
+
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 23 |
+
msgstr "Honen %s babeskopia baino ez egin. %s honen babeskopiarik ez da egingo. %s lehenespen gisa."
|
| 24 |
+
|
| 25 |
+
#: admin.menus.php:65
|
| 26 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
| 27 |
+
msgstr "Beheko informazioa %s bertsiorako da. %s bertsioko laguntza lortzeko, readme.txt fitxategia irakurri."
|
| 28 |
+
|
| 29 |
+
#: admin.menus.php:75
|
| 30 |
+
msgid "FAQ"
|
| 31 |
+
msgstr "MEG"
|
| 32 |
+
|
| 33 |
+
#: admin.constants.php:3 admin.menus.php:76 admin.settings.php:5
|
| 34 |
+
msgid "Constants"
|
| 35 |
+
msgstr "Iraunkorrak"
|
| 36 |
+
|
| 37 |
+
#: admin.menus.php:81
|
| 38 |
+
msgid "Support Forums"
|
| 39 |
+
msgstr "Laguntza-foroak"
|
| 40 |
+
|
| 41 |
+
#: admin.settings.php:5
|
| 42 |
+
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 43 |
+
msgstr "%s zehaztu dezakezu zeure %s ezarpen batzuk kontrolatzeko. %s-(r)en zerrenda oso bat aurki daiteke hemen: %s. Zehaztutako ezarpenak ezin izango dira azpian aldatu."
|
| 44 |
+
|
| 45 |
+
#: admin.settings.php:5
|
| 46 |
+
msgid "help panel"
|
| 47 |
+
msgstr "laguntza taula"
|
| 48 |
+
|
| 49 |
+
#: admin.settings.php:94
|
| 50 |
+
msgid "Save Changes"
|
| 51 |
+
msgstr "Aldaketak Gorde"
|
| 52 |
+
|
| 53 |
+
#: functions/core.functions.php:339
|
| 54 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 55 |
+
msgstr "Fitxategi %s hau, beste inork zeure babeskopiak jaisten ez dituelaz ziurtatzen da."
|
| 56 |
+
|
| 57 |
+
#: functions/interface.functions.php:48
|
| 58 |
+
msgid "Settings saved."
|
| 59 |
+
msgstr "Ezarpenak gordeta."
|
| 60 |
+
|
| 61 |
+
#: admin.actions.php:70
|
| 62 |
+
msgid "You have entered an invalid number of backups."
|
| 63 |
+
msgstr "Babeskopia kopuru oker bat idatzi duzu."
|
| 64 |
+
|
| 65 |
+
#: admin.actions.php:79
|
| 66 |
+
msgid "%s is an invalid email address."
|
| 67 |
+
msgstr "%s posta elektroniko helbide okerra da."
|
| 68 |
+
|
| 69 |
+
#: admin.actions.php:249 functions/interface.functions.php:89
|
| 70 |
+
#: functions/interface.functions.php:99 functions/interface.functions.php:109
|
| 71 |
+
#: functions/interface.functions.php:119 functions/interface.functions.php:129
|
| 72 |
+
#: functions/interface.functions.php:139 functions/interface.functions.php:149
|
| 73 |
+
msgid "BackUpWordPress has detected a problem."
|
| 74 |
+
msgstr "BackUpWordPress-ek arazo bat aurkitu du."
|
| 75 |
+
|
| 76 |
+
#: admin.actions.php:249
|
| 77 |
+
msgid "%s is returning a %s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %s for more details."
|
| 78 |
+
msgstr "Hau (%s) honen (%s) erantzuna bilakatzen ari da, cron lanak zuzen bidaltzen ez direla esanahi ahal duena. BackUpWordPress wp-cron-en oinarritzen da antolatutako babeskopiak egiteko. %s ikusi xehetasun gehiagorako."
|
| 79 |
+
|
| 80 |
+
#: admin.backup-button.php:7
|
| 81 |
+
msgid "Back Up Now"
|
| 82 |
+
msgstr "Babeskopia Oraintxe Egin"
|
| 83 |
+
|
| 84 |
+
#: admin.backups-table.php:13
|
| 85 |
+
msgid "Size"
|
| 86 |
+
msgstr "Neurria"
|
| 87 |
+
|
| 88 |
+
#: admin.backups-table.php:14
|
| 89 |
+
msgid "Actions"
|
| 90 |
+
msgstr "Ekintzak"
|
| 91 |
+
|
| 92 |
+
#: admin.backups-table.php:21
|
| 93 |
+
msgid "Total %s"
|
| 94 |
+
msgstr "%s guztira"
|
| 95 |
+
|
| 96 |
+
#: admin.constants.php:3
|
| 97 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
| 98 |
+
msgstr "%s ahal duzu ondorengo edozein %s zeure %s ezarpen aurreratuak kontrolatzeko. %s. Zehaztutako %s nabarmenduta egongo dira."
|
| 99 |
+
|
| 100 |
+
#: admin.constants.php:3
|
| 101 |
+
msgid "The Codex can help"
|
| 102 |
+
msgstr "Kodizeak lagundu dezake"
|
| 103 |
+
|
| 104 |
+
#: admin.constants.php:8
|
| 105 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 106 |
+
msgstr "Zeure babeskopien fitxategiak gorde gura dituzun karpetaren bide-izena, %s da lehenespen gisa."
|
| 107 |
+
|
| 108 |
+
#: admin.constants.php:11
|
| 109 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
| 110 |
+
msgstr "Zeure egikaritutako %s-(e)rako bide-izena. Ahal bada, babeskopiaren %s atalerako erabiliko da. "
|
| 111 |
+
|
| 112 |
+
#: admin.constants.php:11 admin.constants.php:14 admin.constants.php:23
|
| 113 |
+
#: admin.constants.php:26 admin.status.php:14 admin.status.php:17
|
| 114 |
+
msgid "database"
|
| 115 |
+
msgstr "datu-basea"
|
| 116 |
+
|
| 117 |
+
#: admin.constants.php:14
|
| 118 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
| 119 |
+
msgstr "Zeure egikaritutako %s-(e)rako bide-izena. Ahal bada, zeure %s eta %s konprimitzeko erabiliko da."
|
| 120 |
+
|
| 121 |
+
#: admin.constants.php:14 admin.constants.php:23 admin.constants.php:26
|
| 122 |
+
#: admin.status.php:14 admin.status.php:20
|
| 123 |
+
msgid "files"
|
| 124 |
+
msgstr "fitxategiak"
|
| 125 |
+
|
| 126 |
+
#: admin.constants.php:17
|
| 127 |
+
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 128 |
+
msgstr "Guztiz ezgaitzen du babeskopia automatikoa, baina \"Babeskopia Oraintxe Egin\" botoia erabiliz egin dezakezu. %s lehenespen gisa."
|
| 129 |
+
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
| 132 |
+
msgstr "Gorde behar den babeskopien kopurua. Babeskopia zaharrak automatikoki ezabatuko dira babeskopia berri bat sortzen denean. %s lehenespen gisa."
|
| 133 |
+
|
| 134 |
+
#: admin.constants.php:29
|
| 135 |
+
msgid "The time that the daily back up should run. Defaults to %s."
|
| 136 |
+
msgstr "Egunero babeskopia egiten hasten den ordua. %s lehenespen gisa."
|
| 137 |
+
|
| 138 |
+
#: admin.constants.php:32
|
| 139 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 140 |
+
msgstr "Zeure babeskopien kopia bat posta elektronikora bidaltzen saiatu. Zeure posta elektronikoa sartu babeskopiak jasotzeko. %s lehenespen gisa."
|
| 141 |
+
|
| 142 |
+
#: admin.constants.php:35
|
| 143 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
| 144 |
+
msgstr "Komez bananduriko baztertzeko fitxategi eta direktorio bide-izenen zerrenda. Babeskopien direktorioa automatikoki baztertzen da."
|
| 145 |
+
|
| 146 |
+
#: admin.constants.php:38
|
| 147 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
| 148 |
+
msgstr "%s deitzerakoan erabiltzeko duen gaitasuna. %s lehenespen gisa."
|
| 149 |
+
|
| 150 |
+
#: admin.menus.php:10 admin.page.php:7
|
| 151 |
+
msgid "Manage Backups"
|
| 152 |
+
msgstr "Babeskopiak Kudeatu"
|
| 153 |
+
|
| 154 |
+
#: admin.menus.php:10 admin.menus.php:34
|
| 155 |
+
msgid "Backups"
|
| 156 |
+
msgstr "Babeskopiak"
|
| 157 |
+
|
| 158 |
+
#: admin.menus.php:65
|
| 159 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 160 |
+
msgstr "Ez zaude BackUpWordPress-eko azken bertsioa erabiltzen"
|
| 161 |
+
|
| 162 |
+
#: admin.menus.php:79
|
| 163 |
+
msgid "For more information:"
|
| 164 |
+
msgstr "Informazio gehiagorako:"
|
| 165 |
+
|
| 166 |
+
#: admin.page.php:11 admin.settings.php:3
|
| 167 |
+
msgid "Settings"
|
| 168 |
+
msgstr "Ezarpenak"
|
| 169 |
+
|
| 170 |
+
#: admin.page.php:23
|
| 171 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 172 |
+
msgstr "Aurretiaz azaldutako arazoak konpontzea beharrezkoa da BackUpWordPress martxan jartzeko."
|
| 173 |
+
|
| 174 |
+
#: admin.page.php:29
|
| 175 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 176 |
+
msgstr "Laguntzarik behar baduzu gauzak martxan jartzeko, %s-era posta elektroniko bat bidal diezagukezu eta ahal dugun guztia egingo dugu laguntzeko."
|
| 177 |
+
|
| 178 |
+
#: admin.settings.php:16
|
| 179 |
+
msgid "Automatic Backups"
|
| 180 |
+
msgstr "Babeskopia automatikoak"
|
| 181 |
+
|
| 182 |
+
#: admin.settings.php:22
|
| 183 |
+
msgid "Backup my site automatically."
|
| 184 |
+
msgstr "Neure gunearen babeskopia automatikoki egin."
|
| 185 |
+
|
| 186 |
+
#: admin.settings.php:27
|
| 187 |
+
msgid "No automatic backups."
|
| 188 |
+
msgstr "Babeskopia automatikorik ez."
|
| 189 |
+
|
| 190 |
+
#: admin.settings.php:36
|
| 191 |
+
msgid "Frequency of backups"
|
| 192 |
+
msgstr "Babeskopien maiztasuna"
|
| 193 |
+
|
| 194 |
+
#: admin.settings.php:40
|
| 195 |
+
msgid "Automatic backups will occur"
|
| 196 |
+
msgstr "Babeskopia automatikoak egingo dira"
|
| 197 |
+
|
| 198 |
+
#: admin.settings.php:43
|
| 199 |
+
msgid "Daily"
|
| 200 |
+
msgstr "Egunero"
|
| 201 |
+
|
| 202 |
+
#: admin.settings.php:44
|
| 203 |
+
msgid "Weekly"
|
| 204 |
+
msgstr "Astero"
|
| 205 |
+
|
| 206 |
+
#: admin.settings.php:45
|
| 207 |
+
msgid "Fortnightly"
|
| 208 |
+
msgstr "Hamabost egunez behin"
|
| 209 |
+
|
| 210 |
+
#: admin.settings.php:46
|
| 211 |
+
msgid "Monthly"
|
| 212 |
+
msgstr "Hilero"
|
| 213 |
+
|
| 214 |
+
#: admin.settings.php:55
|
| 215 |
+
msgid "What to Backup"
|
| 216 |
+
msgstr "Zeren Babeskopia"
|
| 217 |
+
|
| 218 |
+
#: admin.settings.php:59
|
| 219 |
+
msgid "Backup my"
|
| 220 |
+
msgstr "Honen babeskopia egin"
|
| 221 |
+
|
| 222 |
+
#: admin.settings.php:62
|
| 223 |
+
msgid "database & files"
|
| 224 |
+
msgstr "datu-baseak eta fitxategiak"
|
| 225 |
+
|
| 226 |
+
#: admin.settings.php:63
|
| 227 |
+
msgid "database only"
|
| 228 |
+
msgstr "datu-basea bakarrik"
|
| 229 |
+
|
| 230 |
+
#: admin.settings.php:64
|
| 231 |
+
msgid "files only"
|
| 232 |
+
msgstr "fitxategiak bakarrik"
|
| 233 |
+
|
| 234 |
+
#: admin.settings.php:72
|
| 235 |
+
msgid "Number of backups"
|
| 236 |
+
msgstr "Babeskopia kopurua"
|
| 237 |
+
|
| 238 |
+
#: admin.settings.php:73
|
| 239 |
+
msgid "The last %s backups will be stored on the server."
|
| 240 |
+
msgstr "Azkenengo %s babeskopiak zerbitzarian gordeko dira."
|
| 241 |
+
|
| 242 |
+
#: admin.settings.php:77
|
| 243 |
+
msgid "Email backups"
|
| 244 |
+
msgstr "Babeskopiak posta elektronikoaz bidali"
|
| 245 |
+
|
| 246 |
+
#: admin.settings.php:78
|
| 247 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 248 |
+
msgstr "Babeskopiaren kopia bat posta elektroniko honetara bidaliko da. Ezgaituta hutsik egotekotan."
|
| 249 |
+
|
| 250 |
+
#: admin.settings.php:82
|
| 251 |
+
msgid "Excludes"
|
| 252 |
+
msgstr "Baztertuak"
|
| 253 |
+
|
| 254 |
+
#: admin.settings.php:85
|
| 255 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 256 |
+
msgstr "Babeskopia egin gura <strong>ez</strong> duzun fitxategi eta direktorio bide-izenen zerrenda, komez banandurikoa."
|
| 257 |
+
|
| 258 |
+
#: admin.settings.php:86
|
| 259 |
+
msgid "e.g."
|
| 260 |
+
msgstr "adibidez"
|
| 261 |
+
|
| 262 |
+
#: admin.status.php:9
|
| 263 |
+
msgid "Automatic backups are %s."
|
| 264 |
+
msgstr "%s babeskopia automatikoak dira."
|
| 265 |
+
|
| 266 |
+
#: admin.status.php:9
|
| 267 |
+
msgid "disabled"
|
| 268 |
+
msgstr "ezgaituta"
|
| 269 |
+
|
| 270 |
+
#: admin.status.php:14
|
| 271 |
+
msgid "&"
|
| 272 |
+
msgstr "eta"
|
| 273 |
+
|
| 274 |
+
#: admin.status.php:25
|
| 275 |
+
msgid "Your %s will be automatically backed up <code>%s</code>. The next backup will occur at %s on %s and be saved to %s."
|
| 276 |
+
msgstr "%s babeskopia <code>%s</code> automatikoki egingo da. Hurrengo babeskopia %s-(r)etan, %s-(e)an eta %s-(e)n gordeko da."
|
| 277 |
+
|
| 278 |
+
#: admin.status.php:25
|
| 279 |
+
msgid "It's currently %s"
|
| 280 |
+
msgstr "Orain %s da"
|
| 281 |
+
|
| 282 |
+
#: admin.status.php:31
|
| 283 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 284 |
+
msgstr "Zeure gunea %s da. Babeskopiak konprimatu eta hau baino txikiagoak izan dira."
|
| 285 |
+
|
| 286 |
+
#: admin.status.php:31
|
| 287 |
+
msgid "Calculating Size..."
|
| 288 |
+
msgstr "Neurria Kalkulatzen..."
|
| 289 |
+
|
| 290 |
+
#: admin.status.php:34
|
| 291 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 292 |
+
msgstr "Babeskopia bakoitzaren kopia bat %s posta elektronikora bidaliko da."
|
| 293 |
+
|
| 294 |
+
#: admin.status.php:38
|
| 295 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 296 |
+
msgstr "Hurrengo bide-izenak babeskopiatik kanpo geratuko dira: %s."
|
| 297 |
+
|
| 298 |
+
#: functions/backup.actions.php:12
|
| 299 |
+
msgid "Dumping database"
|
| 300 |
+
msgstr "Datu-basera bidaltzen"
|
| 301 |
+
|
| 302 |
+
#: functions/backup.actions.php:22
|
| 303 |
+
msgid "Creating zip archive"
|
| 304 |
+
msgstr "Zip fitxategia sortzen"
|
| 305 |
+
|
| 306 |
+
#: functions/backup.functions.php:19
|
| 307 |
+
msgid "Removing old backups"
|
| 308 |
+
msgstr "Babeskopia zaharrak ezabatzen"
|
| 309 |
+
|
| 310 |
+
#: functions/backup.functions.php:147 functions/backup.functions.php:157
|
| 311 |
+
msgid "Backup of %s"
|
| 312 |
+
msgstr "%s-(r)en babeskopia"
|
| 313 |
+
|
| 314 |
+
#: functions/backup.functions.php:148
|
| 315 |
+
msgid ""
|
| 316 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 317 |
+
"\n"
|
| 318 |
+
"The backup file should be attached to this email.\n"
|
| 319 |
+
"\n"
|
| 320 |
+
"You can also download the backup file by clicking the link below:\n"
|
| 321 |
+
"\n"
|
| 322 |
+
"%s\n"
|
| 323 |
+
"\n"
|
| 324 |
+
"Kind Regards\n"
|
| 325 |
+
"\n"
|
| 326 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 327 |
+
msgstr ""
|
| 328 |
+
"BackUpWordPress-ek zeure %s gunearen babeskopia bat egiten amaitu du.\n"
|
| 329 |
+
"\n"
|
| 330 |
+
"Babeskopiaren fitxategia posta elektroniko honetara erantsiko da.\n"
|
| 331 |
+
"\n"
|
| 332 |
+
"Azpian dagoen estekan klik eginez, babeskopiaren fitxategia jaitsi dezakezu baita ere:\n"
|
| 333 |
+
"\n"
|
| 334 |
+
"%s\n"
|
| 335 |
+
"\n"
|
| 336 |
+
"Agur bero bat\n"
|
| 337 |
+
"\n"
|
| 338 |
+
"Posta Elektronikoak Bidaltzen Dituen BackUpWordPress-eko Errobot Zoriontsua"
|
| 339 |
+
|
| 340 |
+
#: functions/backup.functions.php:158
|
| 341 |
+
msgid ""
|
| 342 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 343 |
+
"\n"
|
| 344 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
| 345 |
+
"\n"
|
| 346 |
+
"You can download the backup file by clicking the link below:\n"
|
| 347 |
+
"\n"
|
| 348 |
+
"%s\n"
|
| 349 |
+
"\n"
|
| 350 |
+
"Kind Regards\n"
|
| 351 |
+
"\n"
|
| 352 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 353 |
+
msgstr ""
|
| 354 |
+
"BackUpWordPress-ek zeure %s gunearen babeskopia bat egiten amaitu du.\n"
|
| 355 |
+
"\n"
|
| 356 |
+
"Zoritxarrez, babeskopiaren fitxategia handiegia da posta elektronikora eransteko.\n"
|
| 357 |
+
"\n"
|
| 358 |
+
"Azpian dagoen estekan klik eginez, babeskopiaren fitxategia jaitsi dezakezu:\n"
|
| 359 |
+
"\n"
|
| 360 |
+
"%s\n"
|
| 361 |
+
"\n"
|
| 362 |
+
"Agur bero bat\n"
|
| 363 |
+
"\n"
|
| 364 |
+
"Posta Elektronikoak Bidaltzen Dituen BackUpWordPress-eko Errobot Zoriontsua"
|
| 365 |
+
|
| 366 |
+
#: functions/interface.functions.php:25
|
| 367 |
+
msgid "Download"
|
| 368 |
+
msgstr "Jaitsi"
|
| 369 |
+
|
| 370 |
+
#: functions/interface.functions.php:26
|
| 371 |
+
msgid "Delete"
|
| 372 |
+
msgstr "Ezabatu"
|
| 373 |
+
|
| 374 |
+
#: functions/interface.functions.php:67 functions/interface.functions.php:79
|
| 375 |
+
msgid "BackUpWordPress is almost ready."
|
| 376 |
+
msgstr "BackUpWordPress ia prest dago."
|
| 377 |
+
|
| 378 |
+
#: functions/interface.functions.php:67
|
| 379 |
+
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 380 |
+
msgstr "Babeskopien direktorioa ezin da sortu %s direktorioa idazgarria ez delako, %s edo %s egikaritu edo sortu karpeta zeure kabuz."
|
| 381 |
+
|
| 382 |
+
#: functions/interface.functions.php:79
|
| 383 |
+
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 384 |
+
msgstr "Zeure babeskopien direktorioa ez da idazgarria. %s edo %s egikaritu edo baimenak zeure kabuz ezarri."
|
| 385 |
+
|
| 386 |
+
#: functions/interface.functions.php:89
|
| 387 |
+
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 388 |
+
msgstr "%s %s-(e) egikaritzen ari da. Mesedez zeure ostalariarekin harremanetan jarri eta %s ezgaitzeko eskatu."
|
| 389 |
+
|
| 390 |
+
#: functions/interface.functions.php:99
|
| 391 |
+
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 392 |
+
msgstr "%s eta %s aukeratuak, beraz, ez dago ezeren babeskopiarik egiterik."
|
| 393 |
+
|
| 394 |
+
#: functions/interface.functions.php:109
|
| 395 |
+
msgid "The following email address's are not valid: %s."
|
| 396 |
+
msgstr "Hurrengo posta elektroniko helbideak ez dira zuzenak: %s."
|
| 397 |
+
|
| 398 |
+
#: functions/interface.functions.php:119
|
| 399 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 400 |
+
msgstr "Azkenengo babeskopiaren bidalketak huts egin du. Fitxategiaren neurria oso handia delako izan daiteke."
|
| 401 |
+
|
| 402 |
+
#: functions/interface.functions.php:129
|
| 403 |
+
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 404 |
+
msgstr "Babeskopiak gordetzeko ezarri duzun %s direktorioa ez da existitzen eta ezin da sortu, beraz, zeure babeskopiak hemen gordeko dira: %s."
|
| 405 |
+
|
| 406 |
+
#: functions/interface.functions.php:139
|
| 407 |
+
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 408 |
+
msgstr "Babeskopiak gordetzeko ezarri duzun %s direktorioa ez da idazgarria, beraz, babeskopia berriak hemen gordeko dira: %s. "
|
| 409 |
+
|
| 410 |
+
#: functions/interface.functions.php:149
|
| 411 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 412 |
+
msgstr "Bazterketa-zerrenda egin duzu, baina hurrengo bide-izenak ez dira existitzen %s, zuzen idatzi dituzula ziur zaude?"
|
| 413 |
+
|
| 414 |
+
#: functions/interface.functions.php:159
|
| 415 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 416 |
+
msgstr "BackUpWordPress-ek arazoak aurkitu ditu zeure azken babeskopian."
|
| 417 |
+
|
| 418 |
+
#: hm-backup/hm-backup.php:532
|
| 419 |
+
msgid "The backup file was not created"
|
| 420 |
+
msgstr "Babeskopiaren fitxategia ez da sortu"
|
| 421 |
+
|
| 422 |
+
#: hm-backup/hm-backup.php:603
|
| 423 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 424 |
+
msgstr "Hurrengo fitxategiak irakurtezinak dira eta ezin da hauen babeskopiarik egin:"
|
| 425 |
+
|
| 426 |
+
#: plugin.php:47
|
| 427 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 428 |
+
msgstr "BackUpWordPress-ek PHP-eko 5.2.4 bertsioa edo hobeagoa behar du."
|
| 429 |
+
|
| 430 |
+
#: plugin.php:58
|
| 431 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 432 |
+
msgstr "BackUpWordPress-ek WordPress-eko %s bertsioa behar du."
|
languages/hmbkp-fr_FR.mo
CHANGED
|
Binary file
|
languages/hmbkp-fr_FR.po
CHANGED
|
@@ -2,94 +2,152 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
msgid "Help with translation"
|
| 18 |
-
msgstr "Aide pour la traduction"
|
| 19 |
-
|
| 20 |
-
#: admin.backup-button.php:3
|
| 21 |
-
msgid "cancel"
|
| 22 |
-
msgstr "Abandon"
|
| 23 |
-
|
| 24 |
-
#: admin.constants.php:23
|
| 25 |
-
#: admin.constants.php:26
|
| 26 |
-
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 27 |
-
msgstr "Sauvegarde %s seulement, vos %s ne seront pas sauvegardés. Par défaut à %s."
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
|
| 31 |
-
|
|
|
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
|
| 35 |
-
|
|
|
|
| 36 |
|
|
|
|
| 37 |
#: admin.constants.php:3
|
| 38 |
#: admin.menus.php:76
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
msgid "Constants"
|
| 41 |
msgstr "Constantes"
|
| 42 |
|
| 43 |
-
#: admin.menus.php:81
|
| 44 |
-
msgid "Support Forums"
|
| 45 |
-
msgstr "Forums de support"
|
| 46 |
-
|
| 47 |
-
#: admin.settings.php:5
|
| 48 |
-
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 49 |
-
msgstr "Vous pouvez définir des %s dans votre %s pour contrôler certains paramètres. Une liste complète des %s est disponible dans le %s. La valeur des paramètres ne peut pas être modifié ici."
|
| 50 |
-
|
| 51 |
#: admin.settings.php:5
|
| 52 |
msgid "help panel"
|
| 53 |
msgstr "page d'aide"
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
-
msgstr "
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
-
msgstr "
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress a détecté un problème."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
-
msgstr "
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,60 +157,104 @@ msgstr "Taille"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Actions"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr "%s au total"
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
| 108 |
-
|
|
|
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
| 111 |
msgid "The Codex can help"
|
| 112 |
msgstr "Le Codex peut vous aider"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "Le chemin du répertoire où vous souhaitez stocker vos sauvegardes, par défaut : %s"
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
| 120 |
-
|
|
|
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
| 123 |
#: admin.constants.php:14
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "base de données"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
| 133 |
-
|
|
|
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "fichiers"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr "Désactive totalement la sauvegarde automatique. Vous pouvez toujours faire une sauvagarde en utilisant le bouton \"Sauvegarder maintenant\". Par défaut à %s."
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
| 149 |
msgstr "Nombre de sauvegardes à conserver, les plus anciennes sont automatiquement effacées quand une nouvelle sauvegarde est effectuée. Par défaut à %s."
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr "Heure à laquelle la sauvegarde quotidienne à lieu. Par défaut à %s heures."
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr "Tente d'envoyer une copie de la sauvegarde par e-mail. Saisissez l'adresse e-mail où envoyer. Par défaut : %s."
|
| 158 |
|
|
@@ -161,13 +263,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr "Liste des fichiers ou des répertoires à exclure, le répertoire des sauvegardes est automatiquement exclu."
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
| 165 |
-
|
|
|
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,108 +306,38 @@ msgstr "Sauvegardes"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "Vous n'utilisez pas la dernière version de BackUpWordPress."
|
| 180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
#: admin.menus.php:79
|
| 182 |
msgid "For more information:"
|
| 183 |
msgstr "Pour plus d'informations :"
|
| 184 |
|
| 185 |
-
#: admin.
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
msgstr "Paramètres"
|
| 189 |
-
|
| 190 |
-
#: admin.page.php:23
|
| 191 |
-
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 192 |
-
msgstr "Vous devez régler les problèmes ci dessus pour que BackUpWordPress puisse démarrer."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Si vous avez besoin d'aide pour tout faire fonctionner, nous vous engourageons à nous écrire à %s et nous ferrons notre possible pour vous aider."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
-
msgstr "Sauvegardes automatiques"
|
| 201 |
-
|
| 202 |
-
#: admin.settings.php:22
|
| 203 |
-
msgid "Backup my site automatically."
|
| 204 |
-
msgstr "Sauvegarder mon site automatiquement."
|
| 205 |
-
|
| 206 |
-
#: admin.settings.php:27
|
| 207 |
-
msgid "No automatic backups."
|
| 208 |
-
msgstr "Pas de sauvegardes automatiques."
|
| 209 |
-
|
| 210 |
-
#: admin.settings.php:36
|
| 211 |
-
msgid "Frequency of backups"
|
| 212 |
-
msgstr "Fréquences des sauvegardes"
|
| 213 |
-
|
| 214 |
-
#: admin.settings.php:40
|
| 215 |
-
msgid "Automatic backups will occur"
|
| 216 |
-
msgstr "Les sauvegardes automatiques auront lieu"
|
| 217 |
-
|
| 218 |
-
#: admin.settings.php:43
|
| 219 |
-
msgid "Daily"
|
| 220 |
-
msgstr "Quotidiennement"
|
| 221 |
-
|
| 222 |
-
#: admin.settings.php:44
|
| 223 |
-
msgid "Weekly"
|
| 224 |
-
msgstr "Hebdomadairement"
|
| 225 |
-
|
| 226 |
-
#: admin.settings.php:45
|
| 227 |
-
msgid "Fortnightly"
|
| 228 |
-
msgstr "Tous les quinze jours"
|
| 229 |
-
|
| 230 |
-
#: admin.settings.php:46
|
| 231 |
-
msgid "Monthly"
|
| 232 |
-
msgstr "Mensuellement"
|
| 233 |
-
|
| 234 |
-
#: admin.settings.php:55
|
| 235 |
-
msgid "What to Backup"
|
| 236 |
-
msgstr "Étendue de la sauvegarde"
|
| 237 |
-
|
| 238 |
-
#: admin.settings.php:59
|
| 239 |
-
msgid "Backup my"
|
| 240 |
-
msgstr "Sauvegardez"
|
| 241 |
-
|
| 242 |
-
#: admin.settings.php:62
|
| 243 |
-
msgid "database & files"
|
| 244 |
-
msgstr "la base de données et les fichiers"
|
| 245 |
-
|
| 246 |
-
#: admin.settings.php:63
|
| 247 |
-
msgid "database only"
|
| 248 |
-
msgstr "la base de données seule"
|
| 249 |
-
|
| 250 |
-
#: admin.settings.php:64
|
| 251 |
-
msgid "files only"
|
| 252 |
-
msgstr "les fichiers seuls"
|
| 253 |
-
|
| 254 |
-
#: admin.settings.php:72
|
| 255 |
-
msgid "Number of backups"
|
| 256 |
-
msgstr "Nombre de sauvegardes"
|
| 257 |
-
|
| 258 |
-
#: admin.settings.php:73
|
| 259 |
-
msgid "The last %s backups will be stored on the server."
|
| 260 |
-
msgstr "Les %s dernières sauvegardes seront conservées sur le serveur."
|
| 261 |
-
|
| 262 |
-
#: admin.settings.php:77
|
| 263 |
-
msgid "Email backups"
|
| 264 |
-
msgstr "Envoi par courriel"
|
| 265 |
-
|
| 266 |
-
#: admin.settings.php:78
|
| 267 |
-
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 268 |
-
msgstr "Une copie de la sauvegarde sera envoyée par courriel à cette adresse. Laisser blanc pour désactiver l'envoi."
|
| 269 |
|
| 270 |
-
#: admin.
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr "
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
-
msgstr "
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
| 280 |
-
|
|
|
|
| 281 |
|
| 282 |
#: admin.status.php:9
|
|
|
|
| 283 |
msgid "Automatic backups are %s."
|
| 284 |
msgstr "Les sauvegardes automatiques sont %s."
|
| 285 |
|
|
@@ -291,30 +349,120 @@ msgstr "désactivé"
|
|
| 291 |
msgid "&"
|
| 292 |
msgstr "&"
|
| 293 |
|
| 294 |
-
#: admin.status.php:
|
| 295 |
-
|
| 296 |
-
|
|
|
|
|
|
|
|
|
|
| 297 |
|
| 298 |
-
#: admin.status.php:
|
|
|
|
| 299 |
msgid "It's currently %s"
|
| 300 |
msgstr "Il est actuellement %s"
|
| 301 |
|
| 302 |
-
#: admin.status.php:
|
|
|
|
| 303 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 304 |
msgstr "Votre site web pèse %s. La sauvegarde sera compressée pour être plus petite que ça."
|
| 305 |
|
| 306 |
-
#: admin.status.php:
|
| 307 |
msgid "Calculating Size..."
|
| 308 |
msgstr "Calcul du volume ..."
|
| 309 |
|
| 310 |
-
#: admin.status.php:
|
|
|
|
| 311 |
msgid "A copy of each backup will be emailed to %s."
|
| 312 |
msgstr "Une copie des sauvegardes sera envoyée par e-mail à %s."
|
| 313 |
|
| 314 |
-
#: admin.status.php:
|
|
|
|
| 315 |
msgid "The following paths will be excluded from your backups %s."
|
| 316 |
msgstr "Les répertoires suivants seront exclus des sauvegardes %s."
|
| 317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
#: functions/backup.actions.php:12
|
| 319 |
msgid "Dumping database"
|
| 320 |
msgstr "Export de la base de donnée"
|
|
@@ -329,127 +477,66 @@ msgstr "Effacement des anciennes sauvegardes"
|
|
| 329 |
|
| 330 |
#: functions/backup.functions.php:147
|
| 331 |
#: functions/backup.functions.php:157
|
|
|
|
| 332 |
msgid "Backup of %s"
|
| 333 |
msgstr "Sauvegarde de %s"
|
| 334 |
|
| 335 |
#: functions/backup.functions.php:148
|
|
|
|
| 336 |
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 338 |
-
"
|
| 339 |
-
"The backup file should be attached to this email
|
| 340 |
-
"
|
| 341 |
-
"You can also download the backup file by clicking the link below
|
| 342 |
-
"
|
| 343 |
-
"%s
|
| 344 |
-
"
|
| 345 |
-
"Kind Regards
|
| 346 |
-
"
|
| 347 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
-
"BackUpWordPress a terminé la sauvegarde de votre site %s.\n"
|
| 350 |
"\n"
|
| 351 |
"Le fichier de sauvegarde est joint à cet email.\n"
|
| 352 |
"\n"
|
| 353 |
"Vous pouvez également télécharger cette sauvegarde en suivant le lien ci-dessous :\n"
|
| 354 |
"\n"
|
| 355 |
-
"%s\n"
|
| 356 |
"\n"
|
| 357 |
"Cordialement\n"
|
| 358 |
"\n"
|
| 359 |
"Votre toujours souriant Robot BackUpWordPress "
|
| 360 |
|
| 361 |
#: functions/backup.functions.php:158
|
|
|
|
| 362 |
msgid ""
|
| 363 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 364 |
-
"
|
| 365 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 366 |
-
"
|
| 367 |
-
"You can download the backup file by clicking the link below
|
| 368 |
-
"
|
| 369 |
-
"%s
|
| 370 |
-
"
|
| 371 |
-
"Kind Regards
|
| 372 |
-
"
|
| 373 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 374 |
msgstr ""
|
| 375 |
-
"BackUpWordPress a terminé la sauvegarde de votre site %s.\n"
|
| 376 |
"\n"
|
| 377 |
"Le fichier de sauvegarde est trop volumineux pour être joint à cet email.\n"
|
| 378 |
"\n"
|
| 379 |
"Vous pouvez le télécharger en suivant le lien ci-dessous :\n"
|
| 380 |
"\n"
|
| 381 |
-
"%s\n"
|
| 382 |
"\n"
|
| 383 |
"Cordialement\n"
|
| 384 |
"\n"
|
| 385 |
"Votre toujours souriant Robot BackUpWordPress "
|
| 386 |
|
| 387 |
-
#: functions/
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
#: functions/interface.functions.php:26
|
| 392 |
-
msgid "Delete"
|
| 393 |
-
msgstr "Effacement"
|
| 394 |
-
|
| 395 |
-
#: functions/interface.functions.php:67
|
| 396 |
-
#: functions/interface.functions.php:79
|
| 397 |
-
msgid "BackUpWordPress is almost ready."
|
| 398 |
-
msgstr "BackUpWordPress est prêt."
|
| 399 |
-
|
| 400 |
-
#: functions/interface.functions.php:67
|
| 401 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 402 |
-
msgstr "Le répertoire des sauvegardes ne peut pas être créé car vous il n'est pas possible d'écrire dans %s, lancez %s ou %s ou créez le répertoire vous même."
|
| 403 |
-
|
| 404 |
-
#: functions/interface.functions.php:79
|
| 405 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 406 |
-
msgstr "Il n'est pas possible d'écrire dans le répertoire des sauvegardes, lancez %s ou %s ou changez les permissions vous même."
|
| 407 |
-
|
| 408 |
-
#: functions/interface.functions.php:89
|
| 409 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 410 |
-
msgstr "%s est actif sur %s. Contactez votre administrateur et demandez lui de désactiver %s."
|
| 411 |
-
|
| 412 |
-
#: functions/interface.functions.php:99
|
| 413 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 414 |
-
msgstr "Vous avez défini %s et %smais il n'y a rien à sauvegarder."
|
| 415 |
-
|
| 416 |
-
#: functions/interface.functions.php:109
|
| 417 |
-
msgid "The following email address's are not valid: %s."
|
| 418 |
-
msgstr "L'adresse de courriel suivante n'est pas valide : %s"
|
| 419 |
-
|
| 420 |
-
#: functions/interface.functions.php:119
|
| 421 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 422 |
-
msgstr "L'envoi de la dernière sauvegarde par courriel a échoué. C'est probablement que le fichier est trop volumineux."
|
| 423 |
-
|
| 424 |
-
#: functions/interface.functions.php:129
|
| 425 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 426 |
-
msgstr "Le répertoire de sauvegarde spécifié %s n'existe pas et ne peut être créé; les sauvegardes seront stockées dans %s à la place."
|
| 427 |
-
|
| 428 |
-
#: functions/interface.functions.php:139
|
| 429 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 430 |
-
msgstr "Il n'est pas possible d'écrire dans le répertoire de sauvegarde spécifié %s; les sauvegardes seront stockées dans %s à la place."
|
| 431 |
-
|
| 432 |
-
#: functions/interface.functions.php:149
|
| 433 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 434 |
-
msgstr "Vous avez défini une liste d'exclusion avec un chemin qui n'existe pas %s; êtes vous sûr que vous l'avez correctement renseigné ?"
|
| 435 |
-
|
| 436 |
-
#: functions/interface.functions.php:159
|
| 437 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 438 |
-
msgstr "BackUpWordPress à rencontré un problème lors de votre dernière sauvegarde."
|
| 439 |
-
|
| 440 |
-
#: hm-backup/hm-backup.php:532
|
| 441 |
-
msgid "The backup file was not created"
|
| 442 |
-
msgstr "Le fichier de la sauvegarde n'a pas été créé."
|
| 443 |
-
|
| 444 |
-
#: hm-backup/hm-backup.php:603
|
| 445 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 446 |
-
msgstr "Les fichiers suivants ne sont pas lisibles et ne peuvent être sauvegardés :"
|
| 447 |
-
|
| 448 |
-
#: plugin.php:47
|
| 449 |
-
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 450 |
-
msgstr "BackUpWordPress nécessite PHP version 5.2.4 ou plus."
|
| 451 |
-
|
| 452 |
-
#: plugin.php:58
|
| 453 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 454 |
-
msgstr "BackUpWordPress a besoin de la version %s de Wordpress."
|
| 455 |
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:40+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:41+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: French\n"
|
| 18 |
+
"X-Poedit-Country: FRANCE\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
+
msgstr "Paramètres"
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
+
msgstr "Vous pouvez définir des %1$s dans votre %2$s pour contrôler certains paramètres. Une liste complète des %3$s est disponible dans le %4$s. La valeur des paramètres ne peut pas être modifié ici."
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
| 35 |
#: admin.constants.php:3
|
| 36 |
#: admin.menus.php:76
|
|
|
|
| 37 |
msgid "Constants"
|
| 38 |
msgstr "Constantes"
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
#: admin.settings.php:5
|
| 41 |
msgid "help panel"
|
| 42 |
msgstr "page d'aide"
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
+
msgstr "Sauvegardes automatiques"
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
| 50 |
+
msgstr "Sauvegarder mon site automatiquement."
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
+
msgstr "Pas de sauvegardes automatiques."
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
+
msgstr "Fréquences des sauvegardes"
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
+
msgstr "Les sauvegardes automatiques auront lieu"
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
+
msgstr "Quotidiennement"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
+
msgstr "Hebdomadairement"
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
+
msgstr "Tous les quinze jours"
|
| 75 |
+
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
+
msgstr "Mensuellement"
|
| 79 |
+
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
+
msgstr "Étendue de la sauvegarde"
|
| 83 |
+
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr "Sauvegardez"
|
| 87 |
+
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
+
msgstr "la base de données et les fichiers"
|
| 91 |
+
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr "la base de données seule"
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr "les fichiers seuls"
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr "Nombre de sauvegardes"
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr "Les %s dernières sauvegardes seront conservées sur le serveur."
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr "Envoi par courriel"
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr "Une copie de la sauvegarde sera envoyée par courriel à cette adresse. Laisser blanc pour désactiver l'envoi."
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr "Exclusions"
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr "Liste de fichiers ou de répertoires, séparés par des virgules, que vous ne voulez <strong>pas</strong> sauvegarder."
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr "exemple :"
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr "Sauver les modifications"
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
|
| 152 |
#: admin.backups-table.php:13
|
| 153 |
msgid "Size"
|
| 157 |
msgid "Actions"
|
| 158 |
msgstr "Actions"
|
| 159 |
|
| 160 |
+
#: admin.backups-table.php:20
|
| 161 |
+
#, php-format
|
| 162 |
+
msgid "Only the most recent backup will be saved"
|
| 163 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 164 |
+
msgstr[0] ""
|
| 165 |
+
msgstr[1] ""
|
| 166 |
+
|
| 167 |
#: admin.backups-table.php:21
|
| 168 |
+
#, php-format
|
| 169 |
msgid "Total %s"
|
| 170 |
msgstr "%s au total"
|
| 171 |
|
| 172 |
+
#: admin.page.php:7
|
| 173 |
+
#: admin.menus.php:10
|
| 174 |
+
msgid "Manage Backups"
|
| 175 |
+
msgstr "Gestion des sauvegardes"
|
| 176 |
+
|
| 177 |
+
#: admin.page.php:23
|
| 178 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 179 |
+
msgstr "Vous devez régler les problèmes ci dessus pour que BackUpWordPress puisse démarrer."
|
| 180 |
+
|
| 181 |
+
#: admin.page.php:29
|
| 182 |
+
#, php-format
|
| 183 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 184 |
+
msgstr "Si vous avez besoin d'aide pour tout faire fonctionner, nous vous engourageons à nous écrire à %s et nous ferrons notre possible pour vous aider."
|
| 185 |
+
|
| 186 |
+
#: admin.backup-button.php:3
|
| 187 |
+
msgid "cancel"
|
| 188 |
+
msgstr "Abandon"
|
| 189 |
+
|
| 190 |
+
#: admin.backup-button.php:7
|
| 191 |
+
msgid "Back Up Now"
|
| 192 |
+
msgstr "Sauvegarder maintenant"
|
| 193 |
+
|
| 194 |
#: admin.constants.php:3
|
| 195 |
+
#, php-format
|
| 196 |
+
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."
|
| 197 |
+
msgstr "Vous pouvez %1$s chacun des éléments suivants %2$s dans votre %3$s pour contrôler les options avancées. %4$s. Le %5$s défini sera mis en évidence."
|
| 198 |
|
| 199 |
#: admin.constants.php:3
|
| 200 |
msgid "The Codex can help"
|
| 201 |
msgstr "Le Codex peut vous aider"
|
| 202 |
|
| 203 |
#: admin.constants.php:8
|
| 204 |
+
#, php-format
|
| 205 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 206 |
msgstr "Le chemin du répertoire où vous souhaitez stocker vos sauvegardes, par défaut : %s"
|
| 207 |
|
| 208 |
#: admin.constants.php:11
|
| 209 |
+
#, php-format
|
| 210 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 211 |
+
msgstr "Chemin vers votre exécutable %1$s. Il sera utilisé pour réaliser la partie %2$s de la sauvegarde s'il est disponible."
|
| 212 |
|
| 213 |
#: admin.constants.php:11
|
| 214 |
#: admin.constants.php:14
|
| 215 |
#: admin.constants.php:23
|
| 216 |
#: admin.constants.php:26
|
| 217 |
#: admin.status.php:14
|
| 218 |
+
#: admin.status.php:18
|
| 219 |
msgid "database"
|
| 220 |
msgstr "base de données"
|
| 221 |
|
| 222 |
#: admin.constants.php:14
|
| 223 |
+
#, php-format
|
| 224 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 225 |
+
msgstr "Chemin vers votre exécutable %1$s. Il sera utilisé pour compresser vos %2$s et votre %3$s s'il est disponible."
|
| 226 |
|
| 227 |
#: admin.constants.php:14
|
| 228 |
#: admin.constants.php:23
|
| 229 |
#: admin.constants.php:26
|
| 230 |
#: admin.status.php:14
|
| 231 |
+
#: admin.status.php:22
|
| 232 |
msgid "files"
|
| 233 |
msgstr "fichiers"
|
| 234 |
|
| 235 |
#: admin.constants.php:17
|
| 236 |
+
#, php-format
|
| 237 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 238 |
msgstr "Désactive totalement la sauvegarde automatique. Vous pouvez toujours faire une sauvagarde en utilisant le bouton \"Sauvegarder maintenant\". Par défaut à %s."
|
| 239 |
|
| 240 |
#: admin.constants.php:20
|
| 241 |
+
#, fuzzy, php-format
|
| 242 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 243 |
msgstr "Nombre de sauvegardes à conserver, les plus anciennes sont automatiquement effacées quand une nouvelle sauvegarde est effectuée. Par défaut à %s."
|
| 244 |
|
| 245 |
+
#: admin.constants.php:23
|
| 246 |
+
#: admin.constants.php:26
|
| 247 |
+
#, php-format
|
| 248 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 249 |
+
msgstr "Sauvegarde %1$s seulement, vos %2$s ne seront pas sauvegardés. Par défaut à %3$s."
|
| 250 |
+
|
| 251 |
#: admin.constants.php:29
|
| 252 |
+
#, php-format
|
| 253 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 254 |
msgstr "Heure à laquelle la sauvegarde quotidienne à lieu. Par défaut à %s heures."
|
| 255 |
|
| 256 |
#: admin.constants.php:32
|
| 257 |
+
#, php-format
|
| 258 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 259 |
msgstr "Tente d'envoyer une copie de la sauvegarde par e-mail. Saisissez l'adresse e-mail où envoyer. Par défaut : %s."
|
| 260 |
|
| 263 |
msgstr "Liste des fichiers ou des répertoires à exclure, le répertoire des sauvegardes est automatiquement exclu."
|
| 264 |
|
| 265 |
#: admin.constants.php:38
|
| 266 |
+
#, php-format
|
| 267 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 268 |
+
msgstr "Capacité à utiliser lors de l'appel à %1$s. La valeur par défaut est %2$s."
|
| 269 |
|
| 270 |
+
#: admin.constants.php:41
|
| 271 |
+
#, fuzzy, php-format
|
| 272 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 273 |
+
msgstr "Heure à laquelle la sauvegarde quotidienne à lieu. Par défaut à %s heures."
|
| 274 |
+
|
| 275 |
+
#: admin.actions.php:70
|
| 276 |
+
msgid "You have entered an invalid number of backups."
|
| 277 |
+
msgstr "Vous avez saisi un nombre de sauvegarde invalide."
|
| 278 |
+
|
| 279 |
+
#: admin.actions.php:79
|
| 280 |
+
#, php-format
|
| 281 |
+
msgid "%s is an invalid email address."
|
| 282 |
+
msgstr "%s est une adresse de courriel invalide."
|
| 283 |
+
|
| 284 |
+
#: admin.actions.php:249
|
| 285 |
+
#: functions/interface.functions.php:89
|
| 286 |
+
#: functions/interface.functions.php:99
|
| 287 |
+
#: functions/interface.functions.php:110
|
| 288 |
+
#: functions/interface.functions.php:120
|
| 289 |
+
#: functions/interface.functions.php:130
|
| 290 |
+
#: functions/interface.functions.php:140
|
| 291 |
+
#: functions/interface.functions.php:150
|
| 292 |
+
msgid "BackUpWordPress has detected a problem."
|
| 293 |
+
msgstr "BackUpWordPress a détecté un problème."
|
| 294 |
+
|
| 295 |
+
#: admin.actions.php:249
|
| 296 |
+
#, php-format
|
| 297 |
+
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."
|
| 298 |
+
msgstr "%1$s a renvoyé la réponse %2$s qui semble indiquer que les travaux cron ne s'achèvent pas correctement. BackUpWordPress ne fonctionne que si wp-cron peux lancer les sauvegardes programmées. Voir la %3$s pour plus de détails."
|
| 299 |
|
| 300 |
#: admin.menus.php:10
|
| 301 |
#: admin.menus.php:34
|
| 306 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 307 |
msgstr "Vous n'utilisez pas la dernière version de BackUpWordPress."
|
| 308 |
|
| 309 |
+
#: admin.menus.php:65
|
| 310 |
+
#, php-format
|
| 311 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 312 |
+
msgstr "Les informations qui suivent concernent la version %1$s. Lisez le fichier <code>readme.txt</code> pour une aide spécifique à la version %2$s."
|
| 313 |
+
|
| 314 |
+
#: admin.menus.php:75
|
| 315 |
+
msgid "FAQ"
|
| 316 |
+
msgstr "FAQ"
|
| 317 |
+
|
| 318 |
#: admin.menus.php:79
|
| 319 |
msgid "For more information:"
|
| 320 |
msgstr "Pour plus d'informations :"
|
| 321 |
|
| 322 |
+
#: admin.menus.php:81
|
| 323 |
+
msgid "Support Forums"
|
| 324 |
+
msgstr "Forums de support"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 325 |
|
| 326 |
+
#: admin.menus.php:82
|
| 327 |
+
msgid "Help with translation"
|
| 328 |
+
msgstr "Aide pour la traduction"
|
| 329 |
|
| 330 |
+
#: plugin.php:47
|
| 331 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 332 |
+
msgstr "BackUpWordPress nécessite PHP version 5.2.4 ou plus."
|
| 333 |
|
| 334 |
+
#: plugin.php:58
|
| 335 |
+
#, php-format
|
| 336 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 337 |
+
msgstr "BackUpWordPress a besoin de la version %s de Wordpress."
|
| 338 |
|
| 339 |
#: admin.status.php:9
|
| 340 |
+
#, php-format
|
| 341 |
msgid "Automatic backups are %s."
|
| 342 |
msgstr "Les sauvegardes automatiques sont %s."
|
| 343 |
|
| 349 |
msgid "&"
|
| 350 |
msgstr "&"
|
| 351 |
|
| 352 |
+
#: admin.status.php:32
|
| 353 |
+
#, php-format
|
| 354 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 355 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 356 |
+
msgstr[0] "La sauvegarde %1$s sera effectuée automatiquement %2$s. La prochaine aura lieu à %3$s le %4$s et sera sauvegardé sous %5$s."
|
| 357 |
+
msgstr[1] "La sauvegarde %1$s sera effectuée automatiquement %2$s. La prochaine aura lieu à %3$s le %4$s et sera sauvegardé sous %5$s."
|
| 358 |
|
| 359 |
+
#: admin.status.php:39
|
| 360 |
+
#, php-format
|
| 361 |
msgid "It's currently %s"
|
| 362 |
msgstr "Il est actuellement %s"
|
| 363 |
|
| 364 |
+
#: admin.status.php:47
|
| 365 |
+
#, php-format
|
| 366 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 367 |
msgstr "Votre site web pèse %s. La sauvegarde sera compressée pour être plus petite que ça."
|
| 368 |
|
| 369 |
+
#: admin.status.php:47
|
| 370 |
msgid "Calculating Size..."
|
| 371 |
msgstr "Calcul du volume ..."
|
| 372 |
|
| 373 |
+
#: admin.status.php:50
|
| 374 |
+
#, php-format
|
| 375 |
msgid "A copy of each backup will be emailed to %s."
|
| 376 |
msgstr "Une copie des sauvegardes sera envoyée par e-mail à %s."
|
| 377 |
|
| 378 |
+
#: admin.status.php:54
|
| 379 |
+
#, php-format
|
| 380 |
msgid "The following paths will be excluded from your backups %s."
|
| 381 |
msgstr "Les répertoires suivants seront exclus des sauvegardes %s."
|
| 382 |
|
| 383 |
+
#: hm-backup/hm-backup.php:532
|
| 384 |
+
msgid "The backup file was not created"
|
| 385 |
+
msgstr "Le fichier de la sauvegarde n'a pas été créé."
|
| 386 |
+
|
| 387 |
+
#: hm-backup/hm-backup.php:603
|
| 388 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 389 |
+
msgstr "Les fichiers suivants ne sont pas lisibles et ne peuvent être sauvegardés :"
|
| 390 |
+
|
| 391 |
+
#: functions/interface.functions.php:25
|
| 392 |
+
msgid "Download"
|
| 393 |
+
msgstr "Téléchargement"
|
| 394 |
+
|
| 395 |
+
#: functions/interface.functions.php:26
|
| 396 |
+
msgid "Delete"
|
| 397 |
+
msgstr "Effacement"
|
| 398 |
+
|
| 399 |
+
#: functions/interface.functions.php:48
|
| 400 |
+
msgid "Settings saved."
|
| 401 |
+
msgstr "Modifications enregistrées"
|
| 402 |
+
|
| 403 |
+
#: functions/interface.functions.php:67
|
| 404 |
+
#: functions/interface.functions.php:79
|
| 405 |
+
msgid "BackUpWordPress is almost ready."
|
| 406 |
+
msgstr "BackUpWordPress est prêt."
|
| 407 |
+
|
| 408 |
+
#: functions/interface.functions.php:67
|
| 409 |
+
#, php-format
|
| 410 |
+
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."
|
| 411 |
+
msgstr "Le répertoire des sauvegardes ne peut pas être créé car vous il n'est pas possible d'écrire dans %1$s, lancez %2$s ou %3$s ou créez le répertoire vous même."
|
| 412 |
+
|
| 413 |
+
#: functions/interface.functions.php:79
|
| 414 |
+
#, php-format
|
| 415 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 416 |
+
msgstr "Il n'est pas possible d'écrire dans le répertoire des sauvegardes, lancez %1$s ou %2$s ou changez les permissions vous même."
|
| 417 |
+
|
| 418 |
+
#: functions/interface.functions.php:89
|
| 419 |
+
#, php-format
|
| 420 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 421 |
+
msgstr "%1$s est actif sur %2$s. Contactez votre administrateur et demandez lui de désactiver %3$s."
|
| 422 |
+
|
| 423 |
+
#: functions/interface.functions.php:89
|
| 424 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 425 |
+
msgstr "http://php.net/manual/fr/features.safe-mode.php"
|
| 426 |
+
|
| 427 |
+
#: functions/interface.functions.php:89
|
| 428 |
+
msgid "Safe Mode"
|
| 429 |
+
msgstr "Safe Mode"
|
| 430 |
+
|
| 431 |
+
#: functions/interface.functions.php:99
|
| 432 |
+
#, php-format
|
| 433 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 434 |
+
msgstr "Vous avez défini %1$s et %2$s mais il n'y a rien à sauvegarder."
|
| 435 |
+
|
| 436 |
+
#: functions/interface.functions.php:110
|
| 437 |
+
#, php-format
|
| 438 |
+
msgid "The following email address is not valid: %s."
|
| 439 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 440 |
+
msgstr[0] "L'adresse de courriel suivante n'est pas valide: %s"
|
| 441 |
+
msgstr[1] "Les adresses de courriel suivante ne sont pas valides: %s"
|
| 442 |
+
|
| 443 |
+
#: functions/interface.functions.php:120
|
| 444 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 445 |
+
msgstr "L'envoi de la dernière sauvegarde par courriel a échoué. C'est probablement que le fichier est trop volumineux."
|
| 446 |
+
|
| 447 |
+
#: functions/interface.functions.php:130
|
| 448 |
+
#, php-format
|
| 449 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 450 |
+
msgstr "Le répertoire de sauvegarde spécifié %1$s n'existe pas et ne peut être créé; les sauvegardes seront stockées dans %2$s à la place."
|
| 451 |
+
|
| 452 |
+
#: functions/interface.functions.php:140
|
| 453 |
+
#, php-format
|
| 454 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 455 |
+
msgstr "Il n'est pas possible d'écrire dans le répertoire de sauvegarde spécifié %1$s; les sauvegardes seront stockées dans %2$s à la place."
|
| 456 |
+
|
| 457 |
+
#: functions/interface.functions.php:150
|
| 458 |
+
#, php-format
|
| 459 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 460 |
+
msgstr "Vous avez défini une liste d'exclusion avec un chemin qui n'existe pas %s; êtes vous sûr que vous l'avez correctement renseigné ?"
|
| 461 |
+
|
| 462 |
+
#: functions/interface.functions.php:160
|
| 463 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 464 |
+
msgstr "BackUpWordPress à rencontré un problème lors de votre dernière sauvegarde."
|
| 465 |
+
|
| 466 |
#: functions/backup.actions.php:12
|
| 467 |
msgid "Dumping database"
|
| 468 |
msgstr "Export de la base de donnée"
|
| 477 |
|
| 478 |
#: functions/backup.functions.php:147
|
| 479 |
#: functions/backup.functions.php:157
|
| 480 |
+
#, php-format
|
| 481 |
msgid "Backup of %s"
|
| 482 |
msgstr "Sauvegarde de %s"
|
| 483 |
|
| 484 |
#: functions/backup.functions.php:148
|
| 485 |
+
#, php-format
|
| 486 |
msgid ""
|
| 487 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 488 |
+
"\\n"
|
| 489 |
+
"The backup file should be attached to this email.\\n"
|
| 490 |
+
"\\n"
|
| 491 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"%2$s\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"Kind Regards\\n"
|
| 496 |
+
"\\n"
|
| 497 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 498 |
msgstr ""
|
| 499 |
+
"BackUpWordPress a terminé la sauvegarde de votre site %1$s.\n"
|
| 500 |
"\n"
|
| 501 |
"Le fichier de sauvegarde est joint à cet email.\n"
|
| 502 |
"\n"
|
| 503 |
"Vous pouvez également télécharger cette sauvegarde en suivant le lien ci-dessous :\n"
|
| 504 |
"\n"
|
| 505 |
+
"%2$s\n"
|
| 506 |
"\n"
|
| 507 |
"Cordialement\n"
|
| 508 |
"\n"
|
| 509 |
"Votre toujours souriant Robot BackUpWordPress "
|
| 510 |
|
| 511 |
#: functions/backup.functions.php:158
|
| 512 |
+
#, php-format
|
| 513 |
msgid ""
|
| 514 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 515 |
+
"\\n"
|
| 516 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 517 |
+
"\\n"
|
| 518 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 519 |
+
"\\n"
|
| 520 |
+
"%2$s\\n"
|
| 521 |
+
"\\n"
|
| 522 |
+
"Kind Regards\\n"
|
| 523 |
+
"\\n"
|
| 524 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 525 |
msgstr ""
|
| 526 |
+
"BackUpWordPress a terminé la sauvegarde de votre site %1$s.\n"
|
| 527 |
"\n"
|
| 528 |
"Le fichier de sauvegarde est trop volumineux pour être joint à cet email.\n"
|
| 529 |
"\n"
|
| 530 |
"Vous pouvez le télécharger en suivant le lien ci-dessous :\n"
|
| 531 |
"\n"
|
| 532 |
+
"%2$s\n"
|
| 533 |
"\n"
|
| 534 |
"Cordialement\n"
|
| 535 |
"\n"
|
| 536 |
"Votre toujours souriant Robot BackUpWordPress "
|
| 537 |
|
| 538 |
+
#: functions/core.functions.php:339
|
| 539 |
+
#, php-format
|
| 540 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 541 |
+
msgstr "Ce fichier %s garanti qu'aucune autre personne ne peut télécharger vos sauvegardes."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 542 |
|
languages/hmbkp-lt.mo
ADDED
|
Binary file
|
languages/hmbkp-lt.po
ADDED
|
@@ -0,0 +1,432 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Translation of 1.6.8 in Lithuanian
|
| 2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
+
msgid ""
|
| 4 |
+
msgstr ""
|
| 5 |
+
"PO-Revision-Date: 2012-08-10 14:37:47+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: 1.6.8\n"
|
| 12 |
+
|
| 13 |
+
#: admin.menus.php:82
|
| 14 |
+
msgid "Help with translation"
|
| 15 |
+
msgstr ""
|
| 16 |
+
|
| 17 |
+
#: admin.backup-button.php:3
|
| 18 |
+
msgid "cancel"
|
| 19 |
+
msgstr ""
|
| 20 |
+
|
| 21 |
+
#: admin.constants.php:23 admin.constants.php:26
|
| 22 |
+
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
#: admin.menus.php:65
|
| 26 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
| 27 |
+
msgstr ""
|
| 28 |
+
|
| 29 |
+
#: admin.menus.php:75
|
| 30 |
+
msgid "FAQ"
|
| 31 |
+
msgstr ""
|
| 32 |
+
|
| 33 |
+
#: admin.constants.php:3 admin.menus.php:76 admin.settings.php:5
|
| 34 |
+
msgid "Constants"
|
| 35 |
+
msgstr ""
|
| 36 |
+
|
| 37 |
+
#: admin.menus.php:81
|
| 38 |
+
msgid "Support Forums"
|
| 39 |
+
msgstr ""
|
| 40 |
+
|
| 41 |
+
#: admin.settings.php:5
|
| 42 |
+
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 43 |
+
msgstr ""
|
| 44 |
+
|
| 45 |
+
#: admin.settings.php:5
|
| 46 |
+
msgid "help panel"
|
| 47 |
+
msgstr ""
|
| 48 |
+
|
| 49 |
+
#: admin.settings.php:94
|
| 50 |
+
msgid "Save Changes"
|
| 51 |
+
msgstr ""
|
| 52 |
+
|
| 53 |
+
#: functions/core.functions.php:339
|
| 54 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 55 |
+
msgstr ""
|
| 56 |
+
|
| 57 |
+
#: functions/interface.functions.php:48
|
| 58 |
+
msgid "Settings saved."
|
| 59 |
+
msgstr ""
|
| 60 |
+
|
| 61 |
+
#: admin.actions.php:70
|
| 62 |
+
msgid "You have entered an invalid number of backups."
|
| 63 |
+
msgstr ""
|
| 64 |
+
|
| 65 |
+
#: admin.actions.php:79
|
| 66 |
+
msgid "%s is an invalid email address."
|
| 67 |
+
msgstr ""
|
| 68 |
+
|
| 69 |
+
#: admin.actions.php:249 functions/interface.functions.php:89
|
| 70 |
+
#: functions/interface.functions.php:99 functions/interface.functions.php:109
|
| 71 |
+
#: functions/interface.functions.php:119 functions/interface.functions.php:129
|
| 72 |
+
#: functions/interface.functions.php:139 functions/interface.functions.php:149
|
| 73 |
+
msgid "BackUpWordPress has detected a problem."
|
| 74 |
+
msgstr "BackUpWordPress aptiko problemą."
|
| 75 |
+
|
| 76 |
+
#: admin.actions.php:249
|
| 77 |
+
msgid "%s is returning a %s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %s for more details."
|
| 78 |
+
msgstr ""
|
| 79 |
+
|
| 80 |
+
#: admin.backup-button.php:7
|
| 81 |
+
msgid "Back Up Now"
|
| 82 |
+
msgstr "Kurti Atsarginę kopiją Dabar"
|
| 83 |
+
|
| 84 |
+
#: admin.backups-table.php:13
|
| 85 |
+
msgid "Size"
|
| 86 |
+
msgstr "Dydis"
|
| 87 |
+
|
| 88 |
+
#: admin.backups-table.php:14
|
| 89 |
+
msgid "Actions"
|
| 90 |
+
msgstr "Veiksmai"
|
| 91 |
+
|
| 92 |
+
#: admin.backups-table.php:21
|
| 93 |
+
msgid "Total %s"
|
| 94 |
+
msgstr "Iš viso %s"
|
| 95 |
+
|
| 96 |
+
#: admin.constants.php:3
|
| 97 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
| 98 |
+
msgstr ""
|
| 99 |
+
|
| 100 |
+
#: admin.constants.php:3
|
| 101 |
+
msgid "The Codex can help"
|
| 102 |
+
msgstr "The Codex gali pagelbėti"
|
| 103 |
+
|
| 104 |
+
#: admin.constants.php:8
|
| 105 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 106 |
+
msgstr "Aplanko, kuriame norėtumėte laikyti savo atsargines kopijas adresas. Pagal nutylėjimą %s."
|
| 107 |
+
|
| 108 |
+
#: admin.constants.php:11
|
| 109 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
| 110 |
+
msgstr "Adresas į Jūsų %s yra vykdomasis. Jis bus naudojamas %s atsarginės kopijos daliai, jeigu tik tai bus įmanoma."
|
| 111 |
+
|
| 112 |
+
#: admin.constants.php:11 admin.constants.php:14 admin.constants.php:23
|
| 113 |
+
#: admin.constants.php:26 admin.status.php:14 admin.status.php:17
|
| 114 |
+
msgid "database"
|
| 115 |
+
msgstr "duomenų bazė"
|
| 116 |
+
|
| 117 |
+
#: admin.constants.php:14
|
| 118 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
| 119 |
+
msgstr "Adresas į Jūsų %s yra vykdomasis. Jis bus naudojamas suspaudžiant Jūsų %s ir %s, jeigu tik bus įmanoma."
|
| 120 |
+
|
| 121 |
+
#: admin.constants.php:14 admin.constants.php:23 admin.constants.php:26
|
| 122 |
+
#: admin.status.php:14 admin.status.php:20
|
| 123 |
+
msgid "files"
|
| 124 |
+
msgstr "rinkmenos"
|
| 125 |
+
|
| 126 |
+
#: admin.constants.php:17
|
| 127 |
+
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 128 |
+
msgstr "Visiškai panaikina automatinę atsarginių kopijų darymo funkciją. Jūs vis dar galite pasidaryti atsarginę kopiją, naudojant \"Daryti Atsarginę Kopiją Dabar\" mygtuką. Pagal nutylėjimą %s."
|
| 129 |
+
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
| 132 |
+
msgstr "Saugomų atsarginių kopijų kiekis, senesnės atsarginės kopijos bus ištrintos automatiškai, kuomet sėkmingai atliekamas naujos atsarginės kopijos sukūrimas. Pagal nutylėjimą %s."
|
| 133 |
+
|
| 134 |
+
#: admin.constants.php:29
|
| 135 |
+
msgid "The time that the daily back up should run. Defaults to %s."
|
| 136 |
+
msgstr "Laikas, kurį dieninės atsarginės kopijos kūrimas turėtų būti vykdomas. Pagal nutylėjimą %s."
|
| 137 |
+
|
| 138 |
+
#: admin.constants.php:32
|
| 139 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 140 |
+
msgstr "Bandyti persiųsti Jūsų atsargines kopijas elektroniniu paštu. Reikšmė turėtų būti elektroninio pašto adresas, į kurį bus siunčiamos atsarginės kopijos. Pagal nutylėjimą %s."
|
| 141 |
+
|
| 142 |
+
#: admin.constants.php:35
|
| 143 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
| 144 |
+
msgstr "Išskiriamų rinkmenų ar direktorijų sąrašas (narius išskiriant kableliais), kurios nebus įtrauktos į automatinį atsarginių kopijų kūrimą."
|
| 145 |
+
|
| 146 |
+
#: admin.constants.php:38
|
| 147 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
| 148 |
+
msgstr ""
|
| 149 |
+
|
| 150 |
+
#: admin.menus.php:10 admin.page.php:7
|
| 151 |
+
msgid "Manage Backups"
|
| 152 |
+
msgstr "Valdyti Atsargines kopijas"
|
| 153 |
+
|
| 154 |
+
#: admin.menus.php:10 admin.menus.php:34
|
| 155 |
+
msgid "Backups"
|
| 156 |
+
msgstr "Atsarginės kopijos"
|
| 157 |
+
|
| 158 |
+
#: admin.menus.php:65
|
| 159 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 160 |
+
msgstr "Jūsų nenaudojate paskutiniosios pilnos BackUpWordPress papildinio versijos."
|
| 161 |
+
|
| 162 |
+
#: admin.menus.php:79
|
| 163 |
+
msgid "For more information:"
|
| 164 |
+
msgstr ""
|
| 165 |
+
|
| 166 |
+
#: admin.page.php:11 admin.settings.php:3
|
| 167 |
+
msgid "Settings"
|
| 168 |
+
msgstr ""
|
| 169 |
+
|
| 170 |
+
#: admin.page.php:23
|
| 171 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 172 |
+
msgstr "Jūs turite sutvarkyti problemas, aprašytas viršuje, prieš BackUpWordPress galimą paleidimą."
|
| 173 |
+
|
| 174 |
+
#: admin.page.php:29
|
| 175 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 176 |
+
msgstr "Jeigu Jums reikia pagalbos sprendžiant bėdas, nesivaržykite parašyti mums elektroninio laiško į %s pašto dėžutę ir mes suteiksime Jums pagalbą, jeigu tik galėsime."
|
| 177 |
+
|
| 178 |
+
#: admin.settings.php:16
|
| 179 |
+
msgid "Automatic Backups"
|
| 180 |
+
msgstr ""
|
| 181 |
+
|
| 182 |
+
#: admin.settings.php:22
|
| 183 |
+
msgid "Backup my site automatically."
|
| 184 |
+
msgstr ""
|
| 185 |
+
|
| 186 |
+
#: admin.settings.php:27
|
| 187 |
+
msgid "No automatic backups."
|
| 188 |
+
msgstr ""
|
| 189 |
+
|
| 190 |
+
#: admin.settings.php:36
|
| 191 |
+
msgid "Frequency of backups"
|
| 192 |
+
msgstr ""
|
| 193 |
+
|
| 194 |
+
#: admin.settings.php:40
|
| 195 |
+
msgid "Automatic backups will occur"
|
| 196 |
+
msgstr ""
|
| 197 |
+
|
| 198 |
+
#: admin.settings.php:43
|
| 199 |
+
msgid "Daily"
|
| 200 |
+
msgstr ""
|
| 201 |
+
|
| 202 |
+
#: admin.settings.php:44
|
| 203 |
+
msgid "Weekly"
|
| 204 |
+
msgstr ""
|
| 205 |
+
|
| 206 |
+
#: admin.settings.php:45
|
| 207 |
+
msgid "Fortnightly"
|
| 208 |
+
msgstr ""
|
| 209 |
+
|
| 210 |
+
#: admin.settings.php:46
|
| 211 |
+
msgid "Monthly"
|
| 212 |
+
msgstr ""
|
| 213 |
+
|
| 214 |
+
#: admin.settings.php:55
|
| 215 |
+
msgid "What to Backup"
|
| 216 |
+
msgstr ""
|
| 217 |
+
|
| 218 |
+
#: admin.settings.php:59
|
| 219 |
+
msgid "Backup my"
|
| 220 |
+
msgstr ""
|
| 221 |
+
|
| 222 |
+
#: admin.settings.php:62
|
| 223 |
+
msgid "database & files"
|
| 224 |
+
msgstr ""
|
| 225 |
+
|
| 226 |
+
#: admin.settings.php:63
|
| 227 |
+
msgid "database only"
|
| 228 |
+
msgstr ""
|
| 229 |
+
|
| 230 |
+
#: admin.settings.php:64
|
| 231 |
+
msgid "files only"
|
| 232 |
+
msgstr ""
|
| 233 |
+
|
| 234 |
+
#: admin.settings.php:72
|
| 235 |
+
msgid "Number of backups"
|
| 236 |
+
msgstr ""
|
| 237 |
+
|
| 238 |
+
#: admin.settings.php:73
|
| 239 |
+
msgid "The last %s backups will be stored on the server."
|
| 240 |
+
msgstr ""
|
| 241 |
+
|
| 242 |
+
#: admin.settings.php:77
|
| 243 |
+
msgid "Email backups"
|
| 244 |
+
msgstr ""
|
| 245 |
+
|
| 246 |
+
#: admin.settings.php:78
|
| 247 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 248 |
+
msgstr ""
|
| 249 |
+
|
| 250 |
+
#: admin.settings.php:82
|
| 251 |
+
msgid "Excludes"
|
| 252 |
+
msgstr ""
|
| 253 |
+
|
| 254 |
+
#: admin.settings.php:85
|
| 255 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 256 |
+
msgstr ""
|
| 257 |
+
|
| 258 |
+
#: admin.settings.php:86
|
| 259 |
+
msgid "e.g."
|
| 260 |
+
msgstr ""
|
| 261 |
+
|
| 262 |
+
#: admin.status.php:9
|
| 263 |
+
msgid "Automatic backups are %s."
|
| 264 |
+
msgstr "Automatinių atsarginių kopijų kūrimas yra %s."
|
| 265 |
+
|
| 266 |
+
#: admin.status.php:9
|
| 267 |
+
msgid "disabled"
|
| 268 |
+
msgstr "išjungtas"
|
| 269 |
+
|
| 270 |
+
#: admin.status.php:14
|
| 271 |
+
msgid "&"
|
| 272 |
+
msgstr "&"
|
| 273 |
+
|
| 274 |
+
#: admin.status.php:25
|
| 275 |
+
msgid "Your %s will be automatically backed up <code>%s</code>. The next backup will occur at %s on %s and be saved to %s."
|
| 276 |
+
msgstr ""
|
| 277 |
+
|
| 278 |
+
#: admin.status.php:25
|
| 279 |
+
msgid "It's currently %s"
|
| 280 |
+
msgstr ""
|
| 281 |
+
|
| 282 |
+
#: admin.status.php:31
|
| 283 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 284 |
+
msgstr "Jūsų tinklalapis yra %s. Atsarginės kopijos bus suspaustos ir turėtų būti mažesnės nei tai."
|
| 285 |
+
|
| 286 |
+
#: admin.status.php:31
|
| 287 |
+
msgid "Calculating Size..."
|
| 288 |
+
msgstr "Skaičiuojamas Dydis..."
|
| 289 |
+
|
| 290 |
+
#: admin.status.php:34
|
| 291 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 292 |
+
msgstr "Kiekvienos atsarginės kopijos kopija bus išsiųsta elektroniniu paštu %s."
|
| 293 |
+
|
| 294 |
+
#: admin.status.php:38
|
| 295 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 296 |
+
msgstr "Šie adresai bus išskirti iš Jūsų atsarginių kopijų %s."
|
| 297 |
+
|
| 298 |
+
#: functions/backup.actions.php:12
|
| 299 |
+
msgid "Dumping database"
|
| 300 |
+
msgstr "Duomenų bazės iškrovimas"
|
| 301 |
+
|
| 302 |
+
#: functions/backup.actions.php:22
|
| 303 |
+
msgid "Creating zip archive"
|
| 304 |
+
msgstr "Kuriamas zip archyvas"
|
| 305 |
+
|
| 306 |
+
#: functions/backup.functions.php:19
|
| 307 |
+
msgid "Removing old backups"
|
| 308 |
+
msgstr "Pašalinamos senos atsarginės kopijos"
|
| 309 |
+
|
| 310 |
+
#: functions/backup.functions.php:147 functions/backup.functions.php:157
|
| 311 |
+
msgid "Backup of %s"
|
| 312 |
+
msgstr "%s atsarginė kopija"
|
| 313 |
+
|
| 314 |
+
#: functions/backup.functions.php:148
|
| 315 |
+
msgid ""
|
| 316 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 317 |
+
"\n"
|
| 318 |
+
"The backup file should be attached to this email.\n"
|
| 319 |
+
"\n"
|
| 320 |
+
"You can also download the backup file by clicking the link below:\n"
|
| 321 |
+
"\n"
|
| 322 |
+
"%s\n"
|
| 323 |
+
"\n"
|
| 324 |
+
"Kind Regards\n"
|
| 325 |
+
"\n"
|
| 326 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 327 |
+
msgstr ""
|
| 328 |
+
"BackUpWordpress baigė kurti Jūsų tinklalapio %s atsarginę kopiją.\n"
|
| 329 |
+
"\n"
|
| 330 |
+
"Atsarginės kopijos rinkmena turėtų būti pridėta prie šio elektroninio laiško.\n"
|
| 331 |
+
"\n"
|
| 332 |
+
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 333 |
+
"\n"
|
| 334 |
+
"%s\n"
|
| 335 |
+
"\n"
|
| 336 |
+
"Pagarbiai\n"
|
| 337 |
+
"\n"
|
| 338 |
+
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 339 |
+
|
| 340 |
+
#: functions/backup.functions.php:158
|
| 341 |
+
msgid ""
|
| 342 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 343 |
+
"\n"
|
| 344 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
| 345 |
+
"\n"
|
| 346 |
+
"You can download the backup file by clicking the link below:\n"
|
| 347 |
+
"\n"
|
| 348 |
+
"%s\n"
|
| 349 |
+
"\n"
|
| 350 |
+
"Kind Regards\n"
|
| 351 |
+
"\n"
|
| 352 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 353 |
+
msgstr ""
|
| 354 |
+
"BackUpWordpress baigė kurti Jūsų tinklalapio %s atsarginę kopiją.\n"
|
| 355 |
+
"\n"
|
| 356 |
+
"Nelaimei, atsarginės kopijos rinkmena buvo per didelė, kad ją būtų galima prisegti prie šio elektroninio laiško.\n"
|
| 357 |
+
"\n"
|
| 358 |
+
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 359 |
+
"\n"
|
| 360 |
+
"%s\n"
|
| 361 |
+
"\n"
|
| 362 |
+
"Pagarbiai\n"
|
| 363 |
+
"\n"
|
| 364 |
+
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 365 |
+
|
| 366 |
+
#: functions/interface.functions.php:25
|
| 367 |
+
msgid "Download"
|
| 368 |
+
msgstr "Parsisiųsti"
|
| 369 |
+
|
| 370 |
+
#: functions/interface.functions.php:26
|
| 371 |
+
msgid "Delete"
|
| 372 |
+
msgstr "Ištrinti"
|
| 373 |
+
|
| 374 |
+
#: functions/interface.functions.php:67 functions/interface.functions.php:79
|
| 375 |
+
msgid "BackUpWordPress is almost ready."
|
| 376 |
+
msgstr "BackUpWordPress beveik paruoštas."
|
| 377 |
+
|
| 378 |
+
#: functions/interface.functions.php:67
|
| 379 |
+
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 380 |
+
msgstr "Atsarginių kopijų katalogas negali būti sukurtas, nes Jūsų %s katalogas nėra įrašytinas, paleiskite %s arba %s, arba sukurkite aplanką pats."
|
| 381 |
+
|
| 382 |
+
#: functions/interface.functions.php:79
|
| 383 |
+
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 384 |
+
msgstr "Jūsų %s katalogas nėra įrašytinas, paleiskite %s arba %s, arba pakeiskite leidimus pats."
|
| 385 |
+
|
| 386 |
+
#: functions/interface.functions.php:89
|
| 387 |
+
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 388 |
+
msgstr "%s vyksta %s. Prašome susisiekti su savo priglobos tiekėju ir paprašyti jo išjungti %s."
|
| 389 |
+
|
| 390 |
+
#: functions/interface.functions.php:99
|
| 391 |
+
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 392 |
+
msgstr "Jūs apibūdinote abudu - ir %s, ir %s , todėl nėra nieko, kieno atsarginę kopiją būtų galima sukurti."
|
| 393 |
+
|
| 394 |
+
#: functions/interface.functions.php:109
|
| 395 |
+
msgid "The following email address's are not valid: %s."
|
| 396 |
+
msgstr ""
|
| 397 |
+
|
| 398 |
+
#: functions/interface.functions.php:119
|
| 399 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 400 |
+
msgstr ""
|
| 401 |
+
|
| 402 |
+
#: functions/interface.functions.php:129
|
| 403 |
+
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 404 |
+
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %s neegzistuoja ir negali būti sukurtas, todėl Jūsų atsarginės kopijos bus įrašytos į %s, vietoje nurodytojo katalogo."
|
| 405 |
+
|
| 406 |
+
#: functions/interface.functions.php:139
|
| 407 |
+
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 408 |
+
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %s nėra įrašytinas, todėl naujos atsarginės kopijos bus įrašytos į %s, vietoje nurodytojo katalogo."
|
| 409 |
+
|
| 410 |
+
#: functions/interface.functions.php:149
|
| 411 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 412 |
+
msgstr "Jūs nurodėte individualizuotą išskyrimų sąrašą, bet šie adresai neegzistuoja %s, ar esate tikras, jog įrašėte juos teisingai?"
|
| 413 |
+
|
| 414 |
+
#: functions/interface.functions.php:159
|
| 415 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 416 |
+
msgstr ""
|
| 417 |
+
|
| 418 |
+
#: hm-backup/hm-backup.php:532
|
| 419 |
+
msgid "The backup file was not created"
|
| 420 |
+
msgstr ""
|
| 421 |
+
|
| 422 |
+
#: hm-backup/hm-backup.php:603
|
| 423 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 424 |
+
msgstr ""
|
| 425 |
+
|
| 426 |
+
#: plugin.php:47
|
| 427 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 428 |
+
msgstr ""
|
| 429 |
+
|
| 430 |
+
#: plugin.php:58
|
| 431 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 432 |
+
msgstr "BackUpWordPress reikalauja WordPress versijos %s."
|
languages/hmbkp-lt_LT.mo
CHANGED
|
Binary file
|
languages/hmbkp-lt_LT.po
CHANGED
|
@@ -2,94 +2,153 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
#: admin.
|
| 17 |
-
|
|
|
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
-
#: admin.
|
| 21 |
-
|
|
|
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
-
#: admin.
|
| 25 |
-
#: admin.constants.php:
|
| 26 |
-
|
|
|
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
msgid "
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
msgid "
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
-
#: admin.
|
| 38 |
-
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
-
msgid "Constants"
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
-
#: admin.
|
| 44 |
-
msgid "
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
-
#: admin.settings.php:
|
| 48 |
-
msgid "
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
-
#: admin.settings.php:
|
| 52 |
-
msgid "
|
| 53 |
msgstr ""
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
msgstr ""
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
msgstr ""
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
msgstr ""
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress aptiko problemą."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
msgstr ""
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,12 +158,44 @@ msgstr "Dydis"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Veiksmai"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr "Iš viso %s"
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
|
|
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
|
@@ -112,47 +203,60 @@ msgid "The Codex can help"
|
|
| 112 |
msgstr "The Codex gali pagelbėti"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "Aplanko, kuriame norėtumėte laikyti savo atsargines kopijas adresas. Pagal nutylėjimą %s."
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
| 120 |
-
|
|
|
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
| 123 |
#: admin.constants.php:14
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "duomenų bazė"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
| 133 |
-
|
|
|
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "rinkmenos"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr "Visiškai panaikina automatinę atsarginių kopijų darymo funkciją. Jūs vis dar galite pasidaryti atsarginę kopiją, naudojant \"Daryti Atsarginę Kopiją Dabar\" mygtuką. Pagal nutylėjimą %s."
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
| 149 |
msgstr "Saugomų atsarginių kopijų kiekis, senesnės atsarginės kopijos bus ištrintos automatiškai, kuomet sėkmingai atliekamas naujos atsarginės kopijos sukūrimas. Pagal nutylėjimą %s."
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr "Laikas, kurį dieninės atsarginės kopijos kūrimas turėtų būti vykdomas. Pagal nutylėjimą %s."
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr "Bandyti persiųsti Jūsų atsargines kopijas elektroniniu paštu. Reikšmė turėtų būti elektroninio pašto adresas, į kurį bus siunčiamos atsarginės kopijos. Pagal nutylėjimą %s."
|
| 158 |
|
|
@@ -161,13 +265,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr "Išskiriamų rinkmenų ar direktorijų sąrašas (narius išskiriant kableliais), kurios nebus įtrauktos į automatinį atsarginių kopijų kūrimą."
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
|
|
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,142 +308,164 @@ msgstr "Atsarginės kopijos"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "Jūsų nenaudojate paskutiniosios pilnos BackUpWordPress papildinio versijos."
|
| 180 |
|
| 181 |
-
#: admin.menus.php:
|
| 182 |
-
|
|
|
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
-
#: admin.
|
| 186 |
-
|
| 187 |
-
msgid "Settings"
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#: admin.
|
| 191 |
-
msgid "
|
| 192 |
-
msgstr "Jūs turite sutvarkyti problemas, aprašytas viršuje, prieš BackUpWordPress galimą paleidimą."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Jeigu Jums reikia pagalbos sprendžiant bėdas, nesivaržykite parašyti mums elektroninio laiško į %s pašto dėžutę ir mes suteiksime Jums pagalbą, jeigu tik galėsime."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
msgstr ""
|
| 201 |
|
| 202 |
-
#: admin.
|
| 203 |
-
msgid "
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
-
#: admin.
|
| 207 |
-
msgid "
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
-
#:
|
| 211 |
-
msgid "
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
-
#:
|
| 215 |
-
|
| 216 |
-
|
|
|
|
| 217 |
|
| 218 |
-
#: admin.
|
| 219 |
-
|
| 220 |
-
|
|
|
|
| 221 |
|
| 222 |
-
#: admin.
|
| 223 |
-
msgid "
|
| 224 |
-
msgstr ""
|
| 225 |
|
| 226 |
-
#: admin.
|
| 227 |
-
msgid "
|
| 228 |
-
msgstr ""
|
| 229 |
|
| 230 |
-
#: admin.
|
| 231 |
-
|
| 232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
|
| 234 |
-
#: admin.
|
| 235 |
-
|
|
|
|
| 236 |
msgstr ""
|
| 237 |
|
| 238 |
-
#: admin.
|
| 239 |
-
|
| 240 |
-
|
|
|
|
| 241 |
|
| 242 |
-
#: admin.
|
| 243 |
-
msgid "
|
| 244 |
-
msgstr ""
|
| 245 |
|
| 246 |
-
#: admin.
|
| 247 |
-
|
| 248 |
-
|
|
|
|
| 249 |
|
| 250 |
-
#: admin.
|
| 251 |
-
|
| 252 |
-
|
|
|
|
| 253 |
|
| 254 |
-
#:
|
| 255 |
-
msgid "
|
| 256 |
msgstr ""
|
| 257 |
|
| 258 |
-
#:
|
| 259 |
-
msgid "The
|
| 260 |
msgstr ""
|
| 261 |
|
| 262 |
-
#:
|
| 263 |
-
msgid "
|
| 264 |
-
msgstr ""
|
| 265 |
|
| 266 |
-
#:
|
| 267 |
-
msgid "
|
| 268 |
-
msgstr ""
|
| 269 |
|
| 270 |
-
#:
|
| 271 |
-
msgid "
|
| 272 |
msgstr ""
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
|
| 276 |
-
|
|
|
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
| 280 |
-
|
|
|
|
| 281 |
|
| 282 |
-
#:
|
| 283 |
-
|
| 284 |
-
|
|
|
|
| 285 |
|
| 286 |
-
#:
|
| 287 |
-
|
| 288 |
-
|
|
|
|
| 289 |
|
| 290 |
-
#:
|
| 291 |
-
msgid "
|
| 292 |
-
msgstr "
|
| 293 |
|
| 294 |
-
#:
|
| 295 |
-
msgid "
|
| 296 |
-
msgstr ""
|
| 297 |
|
| 298 |
-
#:
|
| 299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
-
#:
|
| 303 |
-
|
| 304 |
-
|
|
|
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
|
| 308 |
-
|
|
|
|
| 309 |
|
| 310 |
-
#:
|
| 311 |
-
|
| 312 |
-
|
|
|
|
| 313 |
|
| 314 |
-
#:
|
| 315 |
-
msgid "
|
| 316 |
-
msgstr "
|
| 317 |
|
| 318 |
#: functions/backup.actions.php:12
|
| 319 |
msgid "Dumping database"
|
|
@@ -329,127 +481,66 @@ msgstr "Pašalinamos senos atsarginės kopijos"
|
|
| 329 |
|
| 330 |
#: functions/backup.functions.php:147
|
| 331 |
#: functions/backup.functions.php:157
|
|
|
|
| 332 |
msgid "Backup of %s"
|
| 333 |
msgstr "%s atsarginė kopija"
|
| 334 |
|
| 335 |
#: functions/backup.functions.php:148
|
|
|
|
| 336 |
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 338 |
-
"
|
| 339 |
-
"The backup file should be attached to this email
|
| 340 |
-
"
|
| 341 |
-
"You can also download the backup file by clicking the link below
|
| 342 |
-
"
|
| 343 |
-
"%s
|
| 344 |
-
"
|
| 345 |
-
"Kind Regards
|
| 346 |
-
"
|
| 347 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
-
"BackUpWordpress baigė kurti Jūsų tinklalapio %s atsarginę kopiją.\n"
|
| 350 |
"\n"
|
| 351 |
"Atsarginės kopijos rinkmena turėtų būti pridėta prie šio elektroninio laiško.\n"
|
| 352 |
"\n"
|
| 353 |
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 354 |
"\n"
|
| 355 |
-
"%s\n"
|
| 356 |
"\n"
|
| 357 |
"Pagarbiai\n"
|
| 358 |
"\n"
|
| 359 |
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 360 |
|
| 361 |
#: functions/backup.functions.php:158
|
|
|
|
| 362 |
msgid ""
|
| 363 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 364 |
-
"
|
| 365 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 366 |
-
"
|
| 367 |
-
"You can download the backup file by clicking the link below
|
| 368 |
-
"
|
| 369 |
-
"%s
|
| 370 |
-
"
|
| 371 |
-
"Kind Regards
|
| 372 |
-
"
|
| 373 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 374 |
msgstr ""
|
| 375 |
-
"BackUpWordpress baigė kurti Jūsų tinklalapio %s atsarginę kopiją.\n"
|
| 376 |
"\n"
|
| 377 |
"Nelaimei, atsarginės kopijos rinkmena buvo per didelė, kad ją būtų galima prisegti prie šio elektroninio laiško.\n"
|
| 378 |
"\n"
|
| 379 |
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 380 |
"\n"
|
| 381 |
-
"%s\n"
|
| 382 |
"\n"
|
| 383 |
"Pagarbiai\n"
|
| 384 |
"\n"
|
| 385 |
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 386 |
|
| 387 |
-
#: functions/
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
#: functions/interface.functions.php:26
|
| 392 |
-
msgid "Delete"
|
| 393 |
-
msgstr "Ištrinti"
|
| 394 |
-
|
| 395 |
-
#: functions/interface.functions.php:67
|
| 396 |
-
#: functions/interface.functions.php:79
|
| 397 |
-
msgid "BackUpWordPress is almost ready."
|
| 398 |
-
msgstr "BackUpWordPress beveik paruoštas."
|
| 399 |
-
|
| 400 |
-
#: functions/interface.functions.php:67
|
| 401 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 402 |
-
msgstr "Atsarginių kopijų katalogas negali būti sukurtas, nes Jūsų %s katalogas nėra įrašytinas, paleiskite %s arba %s, arba sukurkite aplanką pats."
|
| 403 |
-
|
| 404 |
-
#: functions/interface.functions.php:79
|
| 405 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 406 |
-
msgstr "Jūsų %s katalogas nėra įrašytinas, paleiskite %s arba %s, arba pakeiskite leidimus pats."
|
| 407 |
-
|
| 408 |
-
#: functions/interface.functions.php:89
|
| 409 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 410 |
-
msgstr "%s vyksta %s. Prašome susisiekti su savo priglobos tiekėju ir paprašyti jo išjungti %s."
|
| 411 |
-
|
| 412 |
-
#: functions/interface.functions.php:99
|
| 413 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 414 |
-
msgstr "Jūs apibūdinote abudu - ir %s, ir %s , todėl nėra nieko, kieno atsarginę kopiją būtų galima sukurti."
|
| 415 |
-
|
| 416 |
-
#: functions/interface.functions.php:109
|
| 417 |
-
msgid "The following email address's are not valid: %s."
|
| 418 |
-
msgstr ""
|
| 419 |
-
|
| 420 |
-
#: functions/interface.functions.php:119
|
| 421 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 422 |
-
msgstr ""
|
| 423 |
-
|
| 424 |
-
#: functions/interface.functions.php:129
|
| 425 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 426 |
-
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %s neegzistuoja ir negali būti sukurtas, todėl Jūsų atsarginės kopijos bus įrašytos į %s, vietoje nurodytojo katalogo."
|
| 427 |
-
|
| 428 |
-
#: functions/interface.functions.php:139
|
| 429 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 430 |
-
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %s nėra įrašytinas, todėl naujos atsarginės kopijos bus įrašytos į %s, vietoje nurodytojo katalogo."
|
| 431 |
-
|
| 432 |
-
#: functions/interface.functions.php:149
|
| 433 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 434 |
-
msgstr "Jūs nurodėte individualizuotą išskyrimų sąrašą, bet šie adresai neegzistuoja %s, ar esate tikras, jog įrašėte juos teisingai?"
|
| 435 |
-
|
| 436 |
-
#: functions/interface.functions.php:159
|
| 437 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 438 |
-
msgstr ""
|
| 439 |
-
|
| 440 |
-
#: hm-backup/hm-backup.php:532
|
| 441 |
-
msgid "The backup file was not created"
|
| 442 |
-
msgstr ""
|
| 443 |
-
|
| 444 |
-
#: hm-backup/hm-backup.php:603
|
| 445 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 446 |
-
msgstr ""
|
| 447 |
-
|
| 448 |
-
#: plugin.php:47
|
| 449 |
-
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
-
#: plugin.php:58
|
| 453 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 454 |
-
msgstr "BackUpWordPress reikalauja WordPress versijos %s."
|
| 455 |
-
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:41+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:44+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: Lithuanian\n"
|
| 18 |
+
"X-Poedit-Country: LITHUANIA\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
msgstr ""
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
| 35 |
+
#: admin.constants.php:3
|
| 36 |
+
#: admin.menus.php:76
|
| 37 |
+
msgid "Constants"
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
+
#: admin.settings.php:5
|
| 41 |
+
msgid "help panel"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
msgstr ""
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
|
|
|
|
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
msgstr ""
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr ""
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr ""
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr ""
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr ""
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr ""
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr ""
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr ""
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr ""
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr ""
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr ""
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
+
msgstr[2] ""
|
| 152 |
|
| 153 |
#: admin.backups-table.php:13
|
| 154 |
msgid "Size"
|
| 158 |
msgid "Actions"
|
| 159 |
msgstr "Veiksmai"
|
| 160 |
|
| 161 |
+
#: admin.backups-table.php:20
|
| 162 |
+
#, php-format
|
| 163 |
+
msgid "Only the most recent backup will be saved"
|
| 164 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 165 |
+
msgstr[0] ""
|
| 166 |
+
msgstr[1] ""
|
| 167 |
+
msgstr[2] ""
|
| 168 |
+
|
| 169 |
#: admin.backups-table.php:21
|
| 170 |
+
#, php-format
|
| 171 |
msgid "Total %s"
|
| 172 |
msgstr "Iš viso %s"
|
| 173 |
|
| 174 |
+
#: admin.page.php:7
|
| 175 |
+
#: admin.menus.php:10
|
| 176 |
+
msgid "Manage Backups"
|
| 177 |
+
msgstr "Valdyti Atsargines kopijas"
|
| 178 |
+
|
| 179 |
+
#: admin.page.php:23
|
| 180 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 181 |
+
msgstr "Jūs turite sutvarkyti problemas, aprašytas viršuje, prieš BackUpWordPress galimą paleidimą."
|
| 182 |
+
|
| 183 |
+
#: admin.page.php:29
|
| 184 |
+
#, php-format
|
| 185 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 186 |
+
msgstr "Jeigu Jums reikia pagalbos sprendžiant bėdas, nesivaržykite parašyti mums elektroninio laiško į %s pašto dėžutę ir mes suteiksime Jums pagalbą, jeigu tik galėsime."
|
| 187 |
+
|
| 188 |
+
#: admin.backup-button.php:3
|
| 189 |
+
msgid "cancel"
|
| 190 |
+
msgstr ""
|
| 191 |
+
|
| 192 |
+
#: admin.backup-button.php:7
|
| 193 |
+
msgid "Back Up Now"
|
| 194 |
+
msgstr "Kurti Atsarginę kopiją Dabar"
|
| 195 |
+
|
| 196 |
#: admin.constants.php:3
|
| 197 |
+
#, php-format
|
| 198 |
+
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."
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
#: admin.constants.php:3
|
| 203 |
msgstr "The Codex gali pagelbėti"
|
| 204 |
|
| 205 |
#: admin.constants.php:8
|
| 206 |
+
#, php-format
|
| 207 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 208 |
msgstr "Aplanko, kuriame norėtumėte laikyti savo atsargines kopijas adresas. Pagal nutylėjimą %s."
|
| 209 |
|
| 210 |
#: admin.constants.php:11
|
| 211 |
+
#, php-format
|
| 212 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 213 |
+
msgstr "Adresas į Jūsų %1$s yra vykdomasis. Jis bus naudojamas %2$s atsarginės kopijos daliai, jeigu tik tai bus įmanoma."
|
| 214 |
|
| 215 |
#: admin.constants.php:11
|
| 216 |
#: admin.constants.php:14
|
| 217 |
#: admin.constants.php:23
|
| 218 |
#: admin.constants.php:26
|
| 219 |
#: admin.status.php:14
|
| 220 |
+
#: admin.status.php:18
|
| 221 |
msgid "database"
|
| 222 |
msgstr "duomenų bazė"
|
| 223 |
|
| 224 |
#: admin.constants.php:14
|
| 225 |
+
#, php-format
|
| 226 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 227 |
+
msgstr "Adresas į Jūsų %1$s yra vykdomasis. Jis bus naudojamas suspaudžiant Jūsų %2$s ir %3$s, jeigu tik bus įmanoma."
|
| 228 |
|
| 229 |
#: admin.constants.php:14
|
| 230 |
#: admin.constants.php:23
|
| 231 |
#: admin.constants.php:26
|
| 232 |
#: admin.status.php:14
|
| 233 |
+
#: admin.status.php:22
|
| 234 |
msgid "files"
|
| 235 |
msgstr "rinkmenos"
|
| 236 |
|
| 237 |
#: admin.constants.php:17
|
| 238 |
+
#, php-format
|
| 239 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 240 |
msgstr "Visiškai panaikina automatinę atsarginių kopijų darymo funkciją. Jūs vis dar galite pasidaryti atsarginę kopiją, naudojant \"Daryti Atsarginę Kopiją Dabar\" mygtuką. Pagal nutylėjimą %s."
|
| 241 |
|
| 242 |
#: admin.constants.php:20
|
| 243 |
+
#, fuzzy, php-format
|
| 244 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 245 |
msgstr "Saugomų atsarginių kopijų kiekis, senesnės atsarginės kopijos bus ištrintos automatiškai, kuomet sėkmingai atliekamas naujos atsarginės kopijos sukūrimas. Pagal nutylėjimą %s."
|
| 246 |
|
| 247 |
+
#: admin.constants.php:23
|
| 248 |
+
#: admin.constants.php:26
|
| 249 |
+
#, php-format
|
| 250 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 251 |
+
msgstr ""
|
| 252 |
+
|
| 253 |
#: admin.constants.php:29
|
| 254 |
+
#, php-format
|
| 255 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 256 |
msgstr "Laikas, kurį dieninės atsarginės kopijos kūrimas turėtų būti vykdomas. Pagal nutylėjimą %s."
|
| 257 |
|
| 258 |
#: admin.constants.php:32
|
| 259 |
+
#, php-format
|
| 260 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 261 |
msgstr "Bandyti persiųsti Jūsų atsargines kopijas elektroniniu paštu. Reikšmė turėtų būti elektroninio pašto adresas, į kurį bus siunčiamos atsarginės kopijos. Pagal nutylėjimą %s."
|
| 262 |
|
| 265 |
msgstr "Išskiriamų rinkmenų ar direktorijų sąrašas (narius išskiriant kableliais), kurios nebus įtrauktos į automatinį atsarginių kopijų kūrimą."
|
| 266 |
|
| 267 |
#: admin.constants.php:38
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 270 |
msgstr ""
|
| 271 |
|
| 272 |
+
#: admin.constants.php:41
|
| 273 |
+
#, fuzzy, php-format
|
| 274 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 275 |
+
msgstr "Laikas, kurį dieninės atsarginės kopijos kūrimas turėtų būti vykdomas. Pagal nutylėjimą %s."
|
| 276 |
+
|
| 277 |
+
#: admin.actions.php:70
|
| 278 |
+
msgid "You have entered an invalid number of backups."
|
| 279 |
+
msgstr ""
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:79
|
| 282 |
+
#, php-format
|
| 283 |
+
msgid "%s is an invalid email address."
|
| 284 |
+
msgstr ""
|
| 285 |
+
|
| 286 |
+
#: admin.actions.php:249
|
| 287 |
+
#: functions/interface.functions.php:89
|
| 288 |
+
#: functions/interface.functions.php:99
|
| 289 |
+
#: functions/interface.functions.php:110
|
| 290 |
+
#: functions/interface.functions.php:120
|
| 291 |
+
#: functions/interface.functions.php:130
|
| 292 |
+
#: functions/interface.functions.php:140
|
| 293 |
+
#: functions/interface.functions.php:150
|
| 294 |
+
msgid "BackUpWordPress has detected a problem."
|
| 295 |
+
msgstr "BackUpWordPress aptiko problemą."
|
| 296 |
+
|
| 297 |
+
#: admin.actions.php:249
|
| 298 |
+
#, php-format
|
| 299 |
+
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."
|
| 300 |
+
msgstr ""
|
| 301 |
|
| 302 |
#: admin.menus.php:10
|
| 303 |
#: admin.menus.php:34
|
| 308 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 309 |
msgstr "Jūsų nenaudojate paskutiniosios pilnos BackUpWordPress papildinio versijos."
|
| 310 |
|
| 311 |
+
#: admin.menus.php:65
|
| 312 |
+
#, php-format
|
| 313 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
+
#: admin.menus.php:75
|
| 317 |
+
msgid "FAQ"
|
|
|
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
+
#: admin.menus.php:79
|
| 321 |
+
msgid "For more information:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 322 |
msgstr ""
|
| 323 |
|
| 324 |
+
#: admin.menus.php:81
|
| 325 |
+
msgid "Support Forums"
|
| 326 |
msgstr ""
|
| 327 |
|
| 328 |
+
#: admin.menus.php:82
|
| 329 |
+
msgid "Help with translation"
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
+
#: plugin.php:47
|
| 333 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: plugin.php:58
|
| 337 |
+
#, php-format
|
| 338 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 339 |
+
msgstr "BackUpWordPress reikalauja WordPress versijos %s."
|
| 340 |
|
| 341 |
+
#: admin.status.php:9
|
| 342 |
+
#, php-format
|
| 343 |
+
msgid "Automatic backups are %s."
|
| 344 |
+
msgstr "Automatinių atsarginių kopijų kūrimas yra %s."
|
| 345 |
|
| 346 |
+
#: admin.status.php:9
|
| 347 |
+
msgid "disabled"
|
| 348 |
+
msgstr "išjungtas"
|
| 349 |
|
| 350 |
+
#: admin.status.php:14
|
| 351 |
+
msgid "&"
|
| 352 |
+
msgstr "&"
|
| 353 |
|
| 354 |
+
#: admin.status.php:32
|
| 355 |
+
#, php-format
|
| 356 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 357 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 358 |
+
msgstr[0] ""
|
| 359 |
+
msgstr[1] ""
|
| 360 |
+
msgstr[2] ""
|
| 361 |
|
| 362 |
+
#: admin.status.php:39
|
| 363 |
+
#, php-format
|
| 364 |
+
msgid "It's currently %s"
|
| 365 |
msgstr ""
|
| 366 |
|
| 367 |
+
#: admin.status.php:47
|
| 368 |
+
#, php-format
|
| 369 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 370 |
+
msgstr "Jūsų tinklalapis yra %s. Atsarginės kopijos bus suspaustos ir turėtų būti mažesnės nei tai."
|
| 371 |
|
| 372 |
+
#: admin.status.php:47
|
| 373 |
+
msgid "Calculating Size..."
|
| 374 |
+
msgstr "Skaičiuojamas Dydis..."
|
| 375 |
|
| 376 |
+
#: admin.status.php:50
|
| 377 |
+
#, php-format
|
| 378 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 379 |
+
msgstr "Kiekvienos atsarginės kopijos kopija bus išsiųsta elektroniniu paštu %s."
|
| 380 |
|
| 381 |
+
#: admin.status.php:54
|
| 382 |
+
#, php-format
|
| 383 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 384 |
+
msgstr "Šie adresai bus išskirti iš Jūsų atsarginių kopijų %s."
|
| 385 |
|
| 386 |
+
#: hm-backup/hm-backup.php:532
|
| 387 |
+
msgid "The backup file was not created"
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
+
#: hm-backup/hm-backup.php:603
|
| 391 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: functions/interface.functions.php:25
|
| 395 |
+
msgid "Download"
|
| 396 |
+
msgstr "Parsisiųsti"
|
| 397 |
|
| 398 |
+
#: functions/interface.functions.php:26
|
| 399 |
+
msgid "Delete"
|
| 400 |
+
msgstr "Ištrinti"
|
| 401 |
|
| 402 |
+
#: functions/interface.functions.php:48
|
| 403 |
+
msgid "Settings saved."
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
+
#: functions/interface.functions.php:67
|
| 407 |
+
#: functions/interface.functions.php:79
|
| 408 |
+
msgid "BackUpWordPress is almost ready."
|
| 409 |
+
msgstr "BackUpWordPress beveik paruoštas."
|
| 410 |
|
| 411 |
+
#: functions/interface.functions.php:67
|
| 412 |
+
#, php-format
|
| 413 |
+
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."
|
| 414 |
+
msgstr "Atsarginių kopijų katalogas negali būti sukurtas, nes Jūsų %1$s katalogas nėra įrašytinas, paleiskite %2$s arba %3$s, arba sukurkite aplanką pats."
|
| 415 |
|
| 416 |
+
#: functions/interface.functions.php:79
|
| 417 |
+
#, php-format
|
| 418 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 419 |
+
msgstr "Jūsų %s katalogas nėra įrašytinas, paleiskite %1$s arba %2$s, arba pakeiskite leidimus pats."
|
| 420 |
|
| 421 |
+
#: functions/interface.functions.php:89
|
| 422 |
+
#, php-format
|
| 423 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 424 |
+
msgstr "%1$s vyksta %2$s. Prašome susisiekti su savo priglobos tiekėju ir paprašyti jo išjungti %3$s."
|
| 425 |
|
| 426 |
+
#: functions/interface.functions.php:89
|
| 427 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 428 |
+
msgstr "http://php.net/manual/en/features.safe-mode.php"
|
| 429 |
|
| 430 |
+
#: functions/interface.functions.php:89
|
| 431 |
+
msgid "Safe Mode"
|
| 432 |
+
msgstr "Safe Mode"
|
| 433 |
|
| 434 |
+
#: functions/interface.functions.php:99
|
| 435 |
+
#, php-format
|
| 436 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 437 |
+
msgstr "Jūs apibūdinote abudu - ir %1$s, ir %2$s , todėl nėra nieko, kieno atsarginę kopiją būtų galima sukurti."
|
| 438 |
+
|
| 439 |
+
#: functions/interface.functions.php:110
|
| 440 |
+
#, php-format
|
| 441 |
+
msgid "The following email address is not valid: %s."
|
| 442 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 443 |
+
msgstr[0] ""
|
| 444 |
+
msgstr[1] ""
|
| 445 |
+
msgstr[2] ""
|
| 446 |
+
|
| 447 |
+
#: functions/interface.functions.php:120
|
| 448 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
+
#: functions/interface.functions.php:130
|
| 452 |
+
#, php-format
|
| 453 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 454 |
+
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %1$s neegzistuoja ir negali būti sukurtas, todėl Jūsų atsarginės kopijos bus įrašytos į %2$s, vietoje nurodytojo katalogo."
|
| 455 |
|
| 456 |
+
#: functions/interface.functions.php:140
|
| 457 |
+
#, php-format
|
| 458 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 459 |
+
msgstr "Jūsų individualizuotas atsarginių kopijų katalogas %1$s nėra įrašytinas, todėl naujos atsarginės kopijos bus įrašytos į %2$s, vietoje nurodytojo katalogo."
|
| 460 |
|
| 461 |
+
#: functions/interface.functions.php:150
|
| 462 |
+
#, php-format
|
| 463 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 464 |
+
msgstr "Jūs nurodėte individualizuotą išskyrimų sąrašą, bet šie adresai neegzistuoja %s, ar esate tikras, jog įrašėte juos teisingai?"
|
| 465 |
|
| 466 |
+
#: functions/interface.functions.php:160
|
| 467 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 468 |
+
msgstr ""
|
| 469 |
|
| 470 |
#: functions/backup.actions.php:12
|
| 471 |
msgid "Dumping database"
|
| 481 |
|
| 482 |
#: functions/backup.functions.php:147
|
| 483 |
#: functions/backup.functions.php:157
|
| 484 |
+
#, php-format
|
| 485 |
msgid "Backup of %s"
|
| 486 |
msgstr "%s atsarginė kopija"
|
| 487 |
|
| 488 |
#: functions/backup.functions.php:148
|
| 489 |
+
#, php-format
|
| 490 |
msgid ""
|
| 491 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"The backup file should be attached to this email.\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 496 |
+
"\\n"
|
| 497 |
+
"%2$s\\n"
|
| 498 |
+
"\\n"
|
| 499 |
+
"Kind Regards\\n"
|
| 500 |
+
"\\n"
|
| 501 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 502 |
msgstr ""
|
| 503 |
+
"BackUpWordpress baigė kurti Jūsų tinklalapio %1$s atsarginę kopiją.\n"
|
| 504 |
"\n"
|
| 505 |
"Atsarginės kopijos rinkmena turėtų būti pridėta prie šio elektroninio laiško.\n"
|
| 506 |
"\n"
|
| 507 |
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 508 |
"\n"
|
| 509 |
+
"%2$s\n"
|
| 510 |
"\n"
|
| 511 |
"Pagarbiai\n"
|
| 512 |
"\n"
|
| 513 |
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 514 |
|
| 515 |
#: functions/backup.functions.php:158
|
| 516 |
+
#, php-format
|
| 517 |
msgid ""
|
| 518 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 519 |
+
"\\n"
|
| 520 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 521 |
+
"\\n"
|
| 522 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 523 |
+
"\\n"
|
| 524 |
+
"%2$s\\n"
|
| 525 |
+
"\\n"
|
| 526 |
+
"Kind Regards\\n"
|
| 527 |
+
"\\n"
|
| 528 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 529 |
msgstr ""
|
| 530 |
+
"BackUpWordpress baigė kurti Jūsų tinklalapio %1$s atsarginę kopiją.\n"
|
| 531 |
"\n"
|
| 532 |
"Nelaimei, atsarginės kopijos rinkmena buvo per didelė, kad ją būtų galima prisegti prie šio elektroninio laiško.\n"
|
| 533 |
"\n"
|
| 534 |
"Jūs taip pat galite parsisiųsti atsarginės kopijos rinkmeną, paspausdamas nuorodą žemiau:\n"
|
| 535 |
"\n"
|
| 536 |
+
"%2$s\n"
|
| 537 |
"\n"
|
| 538 |
"Pagarbiai\n"
|
| 539 |
"\n"
|
| 540 |
"Laimingas BackUpWordPress Elektroninių laiškų siuntimo Robotas"
|
| 541 |
|
| 542 |
+
#: functions/core.functions.php:339
|
| 543 |
+
#, php-format
|
| 544 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 545 |
msgstr ""
|
| 546 |
|
|
|
|
|
|
|
|
|
|
|
|
languages/hmbkp-nl.mo
ADDED
|
Binary file
|
languages/hmbkp-nl.po
ADDED
|
@@ -0,0 +1,432 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Translation of 1.6.8 in Dutch
|
| 2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
+
msgid ""
|
| 4 |
+
msgstr ""
|
| 5 |
+
"PO-Revision-Date: 2012-08-10 14:35:04+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: 1.6.8\n"
|
| 12 |
+
|
| 13 |
+
#: admin.menus.php:82
|
| 14 |
+
msgid "Help with translation"
|
| 15 |
+
msgstr "Vertaal hulp"
|
| 16 |
+
|
| 17 |
+
#: admin.backup-button.php:3
|
| 18 |
+
msgid "cancel"
|
| 19 |
+
msgstr "Annuleren"
|
| 20 |
+
|
| 21 |
+
#: admin.constants.php:23 admin.constants.php:26
|
| 22 |
+
msgid "Backup %s only, your %s won't be backed up. Defaults to %s."
|
| 23 |
+
msgstr "Backup alleen %s, de %s zullen niet gebacked up worden. Standaard ingesteld op %s."
|
| 24 |
+
|
| 25 |
+
#: admin.menus.php:65
|
| 26 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
| 27 |
+
msgstr "De informatie hier onder is voor versie %s. Bekijk de readme.txt voor hulp speciaal voor versie %s. "
|
| 28 |
+
|
| 29 |
+
#: admin.menus.php:75
|
| 30 |
+
msgid "FAQ"
|
| 31 |
+
msgstr "Veel gestelde vragen"
|
| 32 |
+
|
| 33 |
+
#: admin.constants.php:3 admin.menus.php:76 admin.settings.php:5
|
| 34 |
+
msgid "Constants"
|
| 35 |
+
msgstr "Constanten"
|
| 36 |
+
|
| 37 |
+
#: admin.menus.php:81
|
| 38 |
+
msgid "Support Forums"
|
| 39 |
+
msgstr "Ondersteunings forums"
|
| 40 |
+
|
| 41 |
+
#: admin.settings.php:5
|
| 42 |
+
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 43 |
+
msgstr "Je kunt %s definiëren in je %s om de instellingen te beheren. Een volledige lijst van %s is opgesomd in %s. Gedefinieerde instellingen zijn niet hieronder aan te passen."
|
| 44 |
+
|
| 45 |
+
#: admin.settings.php:5
|
| 46 |
+
msgid "help panel"
|
| 47 |
+
msgstr "Hulp scherm"
|
| 48 |
+
|
| 49 |
+
#: admin.settings.php:94
|
| 50 |
+
msgid "Save Changes"
|
| 51 |
+
msgstr "Wijzigingen opslaan"
|
| 52 |
+
|
| 53 |
+
#: functions/core.functions.php:339
|
| 54 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 55 |
+
msgstr "Dit %s bestand voorkomt dat ander gebruikers je back up bestanden downloaden."
|
| 56 |
+
|
| 57 |
+
#: functions/interface.functions.php:48
|
| 58 |
+
msgid "Settings saved."
|
| 59 |
+
msgstr "Instellingen opgeslagen."
|
| 60 |
+
|
| 61 |
+
#: admin.actions.php:70
|
| 62 |
+
msgid "You have entered an invalid number of backups."
|
| 63 |
+
msgstr "Je hebt een ongeldig aantal back ups ingevuld."
|
| 64 |
+
|
| 65 |
+
#: admin.actions.php:79
|
| 66 |
+
msgid "%s is an invalid email address."
|
| 67 |
+
msgstr "%s is een ongeldig email adres."
|
| 68 |
+
|
| 69 |
+
#: admin.actions.php:249 functions/interface.functions.php:89
|
| 70 |
+
#: functions/interface.functions.php:99 functions/interface.functions.php:109
|
| 71 |
+
#: functions/interface.functions.php:119 functions/interface.functions.php:129
|
| 72 |
+
#: functions/interface.functions.php:139 functions/interface.functions.php:149
|
| 73 |
+
msgid "BackUpWordPress has detected a problem."
|
| 74 |
+
msgstr "BackUpWordPress heeft een probleem ondervonden."
|
| 75 |
+
|
| 76 |
+
#: admin.actions.php:249
|
| 77 |
+
msgid "%s is returning a %s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run scheduled back ups. See the %s for more details."
|
| 78 |
+
msgstr ""
|
| 79 |
+
"%s geeft een %s antwoord welke kan betekenen dat cron jobs niet goed opgestart worden.\n"
|
| 80 |
+
"BackUpWordPress is afhankelijk van wp-cron om geplande back ups te maken. Zie de %s voor meer details."
|
| 81 |
+
|
| 82 |
+
#: admin.backup-button.php:7
|
| 83 |
+
msgid "Back Up Now"
|
| 84 |
+
msgstr "Back Up Nu."
|
| 85 |
+
|
| 86 |
+
#: admin.backups-table.php:13
|
| 87 |
+
msgid "Size"
|
| 88 |
+
msgstr "Grootte"
|
| 89 |
+
|
| 90 |
+
#: admin.backups-table.php:14
|
| 91 |
+
msgid "Actions"
|
| 92 |
+
msgstr "Acties"
|
| 93 |
+
|
| 94 |
+
#: admin.backups-table.php:21
|
| 95 |
+
msgid "Total %s"
|
| 96 |
+
msgstr "Totaal %s"
|
| 97 |
+
|
| 98 |
+
#: admin.constants.php:3
|
| 99 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
| 100 |
+
msgstr "Je kunt %s elke van de volgende %s in je %s om geavanceerde instellingen te beheren. %s. Gedefiniëerde %s zijn gemarkeerd."
|
| 101 |
+
|
| 102 |
+
#: admin.constants.php:3
|
| 103 |
+
msgid "The Codex can help"
|
| 104 |
+
msgstr "De Codex kan hulp bieden."
|
| 105 |
+
|
| 106 |
+
#: admin.constants.php:8
|
| 107 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 108 |
+
msgstr "Het pad naar de map waar je de back up bestanden wilt bewaren, standaard naar %s."
|
| 109 |
+
|
| 110 |
+
#: admin.constants.php:11
|
| 111 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
| 112 |
+
msgstr "Het pad naar je %s uitvoerbaar bestand. Wordt gebruikt voor het %s gedeelte van de back up indien beschikbaar."
|
| 113 |
+
|
| 114 |
+
#: admin.constants.php:11 admin.constants.php:14 admin.constants.php:23
|
| 115 |
+
#: admin.constants.php:26 admin.status.php:14 admin.status.php:17
|
| 116 |
+
msgid "database"
|
| 117 |
+
msgstr "database"
|
| 118 |
+
|
| 119 |
+
#: admin.constants.php:14
|
| 120 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
| 121 |
+
msgstr "Het pad naar je %s uitvoerbaar bestand. Wordt gebruikt om het %s gedeelte in te pakken en %s indien beschikbaar. "
|
| 122 |
+
|
| 123 |
+
#: admin.constants.php:14 admin.constants.php:23 admin.constants.php:26
|
| 124 |
+
#: admin.status.php:14 admin.status.php:20
|
| 125 |
+
msgid "files"
|
| 126 |
+
msgstr "bestanden"
|
| 127 |
+
|
| 128 |
+
#: admin.constants.php:17
|
| 129 |
+
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 130 |
+
msgstr "Schakelt de automatische back-up volledig uit. Je kunt nog steeds een back-up maken met behulp van de \"Back Up Nu\" knop. Standaard naar %s."
|
| 131 |
+
|
| 132 |
+
#: admin.constants.php:20
|
| 133 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
| 134 |
+
msgstr "Aantal te bewaren back-ups, oudere back-ups worden automatisch verwijderd wanneer er een nieuwe back-up is voltooid. Standaard naar %s."
|
| 135 |
+
|
| 136 |
+
#: admin.constants.php:29
|
| 137 |
+
msgid "The time that the daily back up should run. Defaults to %s."
|
| 138 |
+
msgstr "De tijd waarop de dagelijkse back-up moet worden uitgevoerd. Standaard naar %s."
|
| 139 |
+
|
| 140 |
+
#: admin.constants.php:32
|
| 141 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 142 |
+
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."
|
| 143 |
+
|
| 144 |
+
#: admin.constants.php:35
|
| 145 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
| 146 |
+
msgstr "Een door komma's gescheiden lijst van bestanden of mappen die uitgesloten worden, de backup(s) map is automatisch uitgesloten."
|
| 147 |
+
|
| 148 |
+
#: admin.constants.php:38
|
| 149 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
| 150 |
+
msgstr "De mogelijkheid om te gebruiken bij het aanroepen van %s. Standaard naar %s."
|
| 151 |
+
|
| 152 |
+
#: admin.menus.php:10 admin.page.php:7
|
| 153 |
+
msgid "Manage Backups"
|
| 154 |
+
msgstr "Beheer back ups"
|
| 155 |
+
|
| 156 |
+
#: admin.menus.php:10 admin.menus.php:34
|
| 157 |
+
msgid "Backups"
|
| 158 |
+
msgstr "Back ups"
|
| 159 |
+
|
| 160 |
+
#: admin.menus.php:65
|
| 161 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 162 |
+
msgstr "Je gebruikt niet de laatste stabiele versie van BackUpWordPress"
|
| 163 |
+
|
| 164 |
+
#: admin.menus.php:79
|
| 165 |
+
msgid "For more information:"
|
| 166 |
+
msgstr "Voor meer informatie:"
|
| 167 |
+
|
| 168 |
+
#: admin.page.php:11 admin.settings.php:3
|
| 169 |
+
msgid "Settings"
|
| 170 |
+
msgstr "Instellingen"
|
| 171 |
+
|
| 172 |
+
#: admin.page.php:23
|
| 173 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 174 |
+
msgstr "Je moet de hierboven beschreven problemen oplossen voordat BackUpWordPress kan beginnen."
|
| 175 |
+
|
| 176 |
+
#: admin.page.php:29
|
| 177 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 178 |
+
msgstr "Als u hulp nodig bent om dingen te laten werken bent u meer dan welkom om ons te e-mailen op %s en we zullen doen wat we kunnen om te helpen."
|
| 179 |
+
|
| 180 |
+
#: admin.settings.php:16
|
| 181 |
+
msgid "Automatic Backups"
|
| 182 |
+
msgstr "Automatische Backups"
|
| 183 |
+
|
| 184 |
+
#: admin.settings.php:22
|
| 185 |
+
msgid "Backup my site automatically."
|
| 186 |
+
msgstr "Backup mijn site automatisch"
|
| 187 |
+
|
| 188 |
+
#: admin.settings.php:27
|
| 189 |
+
msgid "No automatic backups."
|
| 190 |
+
msgstr "Geen automatische backups."
|
| 191 |
+
|
| 192 |
+
#: admin.settings.php:36
|
| 193 |
+
msgid "Frequency of backups"
|
| 194 |
+
msgstr "Frequentie van de backups"
|
| 195 |
+
|
| 196 |
+
#: admin.settings.php:40
|
| 197 |
+
msgid "Automatic backups will occur"
|
| 198 |
+
msgstr "Automatische backups ingesteld."
|
| 199 |
+
|
| 200 |
+
#: admin.settings.php:43
|
| 201 |
+
msgid "Daily"
|
| 202 |
+
msgstr "Dagelijks"
|
| 203 |
+
|
| 204 |
+
#: admin.settings.php:44
|
| 205 |
+
msgid "Weekly"
|
| 206 |
+
msgstr "Wekelijks"
|
| 207 |
+
|
| 208 |
+
#: admin.settings.php:45
|
| 209 |
+
msgid "Fortnightly"
|
| 210 |
+
msgstr "Alle veertien dagen"
|
| 211 |
+
|
| 212 |
+
#: admin.settings.php:46
|
| 213 |
+
msgid "Monthly"
|
| 214 |
+
msgstr "Maandelijks"
|
| 215 |
+
|
| 216 |
+
#: admin.settings.php:55
|
| 217 |
+
msgid "What to Backup"
|
| 218 |
+
msgstr "Wat te back uppen"
|
| 219 |
+
|
| 220 |
+
#: admin.settings.php:59
|
| 221 |
+
msgid "Backup my"
|
| 222 |
+
msgstr "Back up mijn"
|
| 223 |
+
|
| 224 |
+
#: admin.settings.php:62
|
| 225 |
+
msgid "database & files"
|
| 226 |
+
msgstr "database & bestanden"
|
| 227 |
+
|
| 228 |
+
#: admin.settings.php:63
|
| 229 |
+
msgid "database only"
|
| 230 |
+
msgstr "Alleen database"
|
| 231 |
+
|
| 232 |
+
#: admin.settings.php:64
|
| 233 |
+
msgid "files only"
|
| 234 |
+
msgstr "Alleen bestanden"
|
| 235 |
+
|
| 236 |
+
#: admin.settings.php:72
|
| 237 |
+
msgid "Number of backups"
|
| 238 |
+
msgstr "Aantal back ups"
|
| 239 |
+
|
| 240 |
+
#: admin.settings.php:73
|
| 241 |
+
msgid "The last %s backups will be stored on the server."
|
| 242 |
+
msgstr "De laatste %s backups zullen worden opgeslagen op de server."
|
| 243 |
+
|
| 244 |
+
#: admin.settings.php:77
|
| 245 |
+
msgid "Email backups"
|
| 246 |
+
msgstr "Email back ups."
|
| 247 |
+
|
| 248 |
+
#: admin.settings.php:78
|
| 249 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 250 |
+
msgstr "Een kopie van de back up zal worden verzonden naar dit email adres. Uitgeschakeld indien niet ingevuld."
|
| 251 |
+
|
| 252 |
+
#: admin.settings.php:82
|
| 253 |
+
msgid "Excludes"
|
| 254 |
+
msgstr "Exclusief"
|
| 255 |
+
|
| 256 |
+
#: admin.settings.php:85
|
| 257 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 258 |
+
msgstr "Een door komma's gescheiden lijst van bestanden en mappen die je <strong>niet</strong> wilt back uppen."
|
| 259 |
+
|
| 260 |
+
#: admin.settings.php:86
|
| 261 |
+
msgid "e.g."
|
| 262 |
+
msgstr "bijv."
|
| 263 |
+
|
| 264 |
+
#: admin.status.php:9
|
| 265 |
+
msgid "Automatic backups are %s."
|
| 266 |
+
msgstr "Automatische back-ups zijn %s."
|
| 267 |
+
|
| 268 |
+
#: admin.status.php:9
|
| 269 |
+
msgid "disabled"
|
| 270 |
+
msgstr "uitgeschakeld"
|
| 271 |
+
|
| 272 |
+
#: admin.status.php:14
|
| 273 |
+
msgid "&"
|
| 274 |
+
msgstr "&"
|
| 275 |
+
|
| 276 |
+
#: admin.status.php:25
|
| 277 |
+
msgid "Your %s will be automatically backed up <code>%s</code>. The next backup will occur at %s on %s and be saved to %s."
|
| 278 |
+
msgstr "Uw %s wordt automatisch geback-upped <code> %s</code>. De volgende back-up zal plaatsvinden op %s op %s en worden opgeslagen in %s."
|
| 279 |
+
|
| 280 |
+
#: admin.status.php:25
|
| 281 |
+
msgid "It's currently %s"
|
| 282 |
+
msgstr "Op dit moment %s"
|
| 283 |
+
|
| 284 |
+
#: admin.status.php:31
|
| 285 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 286 |
+
msgstr "Je site is %s. Back ups worden gecomprimeerd (gezipt) en zouden kleiner moeten worden dan dit."
|
| 287 |
+
|
| 288 |
+
#: admin.status.php:31
|
| 289 |
+
msgid "Calculating Size..."
|
| 290 |
+
msgstr "Grootte berekenen..."
|
| 291 |
+
|
| 292 |
+
#: admin.status.php:34
|
| 293 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 294 |
+
msgstr "Een kopie van elke back up zal worden gemaild naar %s."
|
| 295 |
+
|
| 296 |
+
#: admin.status.php:38
|
| 297 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 298 |
+
msgstr "De volgende paden zullen worden uitgesloten van je back-ups %s."
|
| 299 |
+
|
| 300 |
+
#: functions/backup.actions.php:12
|
| 301 |
+
msgid "Dumping database"
|
| 302 |
+
msgstr "Database verwijderen"
|
| 303 |
+
|
| 304 |
+
#: functions/backup.actions.php:22
|
| 305 |
+
msgid "Creating zip archive"
|
| 306 |
+
msgstr "Een zip archief maken"
|
| 307 |
+
|
| 308 |
+
#: functions/backup.functions.php:19
|
| 309 |
+
msgid "Removing old backups"
|
| 310 |
+
msgstr "Oude back ups verwijderen"
|
| 311 |
+
|
| 312 |
+
#: functions/backup.functions.php:147 functions/backup.functions.php:157
|
| 313 |
+
msgid "Backup of %s"
|
| 314 |
+
msgstr "Back up van %s"
|
| 315 |
+
|
| 316 |
+
#: functions/backup.functions.php:148
|
| 317 |
+
msgid ""
|
| 318 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 319 |
+
"\n"
|
| 320 |
+
"The backup file should be attached to this email.\n"
|
| 321 |
+
"\n"
|
| 322 |
+
"You can also download the backup file by clicking the link below:\n"
|
| 323 |
+
"\n"
|
| 324 |
+
"%s\n"
|
| 325 |
+
"\n"
|
| 326 |
+
"Kind Regards\n"
|
| 327 |
+
"\n"
|
| 328 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 329 |
+
msgstr ""
|
| 330 |
+
"BackUpWordPress heeft een back up van je site %s gemaakt.\n"
|
| 331 |
+
"\n"
|
| 332 |
+
"Het back up bestand is als bijlage toegevoegd bij deze mail.\n"
|
| 333 |
+
"\n"
|
| 334 |
+
"Je kunt het back up bestand ook downloaden door op onderstaande link te klikken:\n"
|
| 335 |
+
"\n"
|
| 336 |
+
"%s\n"
|
| 337 |
+
"\n"
|
| 338 |
+
"Vriendelijke groet\n"
|
| 339 |
+
"\n"
|
| 340 |
+
"De \"Happy BackUpWordPress Backup Email Robot."
|
| 341 |
+
|
| 342 |
+
#: functions/backup.functions.php:158
|
| 343 |
+
msgid ""
|
| 344 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 345 |
+
"\n"
|
| 346 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
| 347 |
+
"\n"
|
| 348 |
+
"You can download the backup file by clicking the link below:\n"
|
| 349 |
+
"\n"
|
| 350 |
+
"%s\n"
|
| 351 |
+
"\n"
|
| 352 |
+
"Kind Regards\n"
|
| 353 |
+
"\n"
|
| 354 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 355 |
+
msgstr ""
|
| 356 |
+
"BackUpWordPress heeft een back up van je site %s gemaakt. \n"
|
| 357 |
+
"\n"
|
| 358 |
+
"Het back up bestand is te groot om als bijlage toe te voegen bij deze mail.\n"
|
| 359 |
+
"\n"
|
| 360 |
+
"Je kunt het back up bestand downloaden door op onderstaande link te klikken:\n"
|
| 361 |
+
"\n"
|
| 362 |
+
" %s\n"
|
| 363 |
+
"\n"
|
| 364 |
+
"Vriendelijke groet De \"Happy BackUpWordPress Backup Email Robot. "
|
| 365 |
+
|
| 366 |
+
#: functions/interface.functions.php:25
|
| 367 |
+
msgid "Download"
|
| 368 |
+
msgstr "Download"
|
| 369 |
+
|
| 370 |
+
#: functions/interface.functions.php:26
|
| 371 |
+
msgid "Delete"
|
| 372 |
+
msgstr "Verwijderen"
|
| 373 |
+
|
| 374 |
+
#: functions/interface.functions.php:67 functions/interface.functions.php:79
|
| 375 |
+
msgid "BackUpWordPress is almost ready."
|
| 376 |
+
msgstr "BackUpWordPress is bijna klaar."
|
| 377 |
+
|
| 378 |
+
#: functions/interface.functions.php:67
|
| 379 |
+
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 380 |
+
msgstr "Je Back Up map kan niet gemaakt worden omdat je %s map niet beschrijfbaar is, voer %s of %s uit om de map handmatig te creëren."
|
| 381 |
+
|
| 382 |
+
#: functions/interface.functions.php:79
|
| 383 |
+
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 384 |
+
msgstr "Je Back Up map is beveiligd tegen schrijven, voer %s of %s uit of verander de permissies handmatig."
|
| 385 |
+
|
| 386 |
+
#: functions/interface.functions.php:89
|
| 387 |
+
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 388 |
+
msgstr "%s wordt uitgevoerd in %s. Neem contact op met je host en vraag hem om %s uit te schakelen"
|
| 389 |
+
|
| 390 |
+
#: functions/interface.functions.php:99
|
| 391 |
+
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 392 |
+
msgstr "Je hebt zowel %s als %s gedefinieerd voor uitsluiting, dus er is niets om te back uppen."
|
| 393 |
+
|
| 394 |
+
#: functions/interface.functions.php:109
|
| 395 |
+
msgid "The following email address's are not valid: %s."
|
| 396 |
+
msgstr "De volgende email adressen zijn niet geldig: %s."
|
| 397 |
+
|
| 398 |
+
#: functions/interface.functions.php:119
|
| 399 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 400 |
+
msgstr "De laatste back up kon niet worden verzonden. Waarschijnlijk is het bestand te groot."
|
| 401 |
+
|
| 402 |
+
#: functions/interface.functions.php:129
|
| 403 |
+
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 404 |
+
msgstr "Je aangepaste back-ups map %s bestaat niet en kan niet worden gemaakt, in plaats daarvan zullen je back-ups worden opgeslagen in %s."
|
| 405 |
+
|
| 406 |
+
#: functions/interface.functions.php:139
|
| 407 |
+
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 408 |
+
msgstr "Je aangepaste back-ups map %s is tegen schrijven beveiligd, nieuwe back-ups zullen worden opgeslagen in %s. "
|
| 409 |
+
|
| 410 |
+
#: functions/interface.functions.php:149
|
| 411 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 412 |
+
msgstr "Je hebt een aangepaste lijst van uitsluitingen gedefinieerd, maar de volgende paden zijn er niet %s, weet je zeker dat je deze correct ingevoerd hebt?"
|
| 413 |
+
|
| 414 |
+
#: functions/interface.functions.php:159
|
| 415 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 416 |
+
msgstr "BackUpWordPress heeft problemen ondervonden met je laatste back-up."
|
| 417 |
+
|
| 418 |
+
#: hm-backup/hm-backup.php:532
|
| 419 |
+
msgid "The backup file was not created"
|
| 420 |
+
msgstr "Het back-up bestand is niet gemaakt"
|
| 421 |
+
|
| 422 |
+
#: hm-backup/hm-backup.php:603
|
| 423 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 424 |
+
msgstr "De volgende bestanden zijn onleesbaar en konden niet in een back-up worden opgenomen:"
|
| 425 |
+
|
| 426 |
+
#: plugin.php:47
|
| 427 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 428 |
+
msgstr "BackUpWordPress vereist PHP versie 5.2.4 of hoger."
|
| 429 |
+
|
| 430 |
+
#: plugin.php:58
|
| 431 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 432 |
+
msgstr "BackUpWordPress vereist WordPress versie %s."
|
languages/hmbkp-ro_RO.mo
CHANGED
|
Binary file
|
languages/hmbkp-ro_RO.po
CHANGED
|
@@ -2,94 +2,153 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
#: admin.
|
| 17 |
-
|
|
|
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
-
#: admin.
|
| 21 |
-
|
|
|
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
-
#: admin.
|
| 25 |
-
#: admin.constants.php:
|
| 26 |
-
|
|
|
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
msgid "
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
msgid "
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
-
#: admin.
|
| 38 |
-
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
-
msgid "Constants"
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
-
#: admin.
|
| 44 |
-
msgid "
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
-
#: admin.settings.php:
|
| 48 |
-
msgid "
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
-
#: admin.settings.php:
|
| 52 |
-
msgid "
|
| 53 |
msgstr ""
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
msgstr ""
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
msgstr ""
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
msgstr ""
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress a detectat o problemă."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
msgstr ""
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,12 +158,44 @@ msgstr "Dimensiunea"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Acţiuni"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr ""
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
|
|
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
|
@@ -112,11 +203,13 @@ msgid "The Codex can help"
|
|
| 112 |
msgstr "Codex poate ajuta"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "Calea la folderul pe care doriţi să stocaţi fişierele copie de rezervă în, implicit la % s."
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
|
|
|
| 120 |
msgstr ""
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
|
@@ -124,35 +217,46 @@ msgstr ""
|
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "baza de date"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
|
|
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "fişiere"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr ""
|
| 158 |
|
|
@@ -161,13 +265,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
|
|
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,142 +308,164 @@ msgstr "Copii de rezervă"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "Nu utilizaţi cea mai recentă versiune stabilă de BackUpWordPress"
|
| 180 |
|
| 181 |
-
#: admin.menus.php:
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
#: admin.page.php:11
|
| 186 |
-
#: admin.settings.php:3
|
| 187 |
-
msgid "Settings"
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#: admin.
|
| 191 |
-
msgid "
|
| 192 |
-
msgstr "Aveţi nevoie pentru a remedia problemele detaliate mai sus înainte de a începe BackUpWordPress."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Dacă aveţi nevoie de ajutor Noţiuni de bază lucrurile de lucru sunteţi mai mult decât binevenit la e-mail-ne la %s şi vom face ceea ce putem pentru a ajuta."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
msgstr ""
|
| 201 |
|
| 202 |
-
#: admin.
|
| 203 |
-
msgid "
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
-
#: admin.
|
| 207 |
-
msgid "
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
-
#: admin.
|
| 211 |
-
msgid "
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
-
#:
|
| 215 |
-
msgid "
|
| 216 |
msgstr ""
|
| 217 |
|
| 218 |
-
#:
|
| 219 |
-
|
| 220 |
-
|
|
|
|
| 221 |
|
| 222 |
-
#: admin.
|
| 223 |
-
|
| 224 |
-
|
|
|
|
| 225 |
|
| 226 |
-
#: admin.
|
| 227 |
-
msgid "
|
| 228 |
-
msgstr ""
|
| 229 |
|
| 230 |
-
#: admin.
|
| 231 |
-
msgid "
|
| 232 |
msgstr ""
|
| 233 |
|
| 234 |
-
#: admin.
|
| 235 |
-
|
| 236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 237 |
|
| 238 |
-
#: admin.
|
| 239 |
-
|
|
|
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
-
#: admin.
|
| 243 |
-
|
|
|
|
| 244 |
msgstr ""
|
| 245 |
|
| 246 |
-
#: admin.
|
| 247 |
-
msgid "
|
| 248 |
-
msgstr ""
|
| 249 |
|
| 250 |
-
#: admin.
|
| 251 |
-
|
| 252 |
-
|
|
|
|
| 253 |
|
| 254 |
-
#: admin.
|
| 255 |
-
|
| 256 |
-
|
|
|
|
| 257 |
|
| 258 |
-
#:
|
| 259 |
-
msgid "The
|
| 260 |
msgstr ""
|
| 261 |
|
| 262 |
-
#:
|
| 263 |
-
msgid "
|
| 264 |
msgstr ""
|
| 265 |
|
| 266 |
-
#:
|
| 267 |
-
msgid "
|
| 268 |
-
msgstr ""
|
| 269 |
|
| 270 |
-
#:
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr ""
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
msgstr ""
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
|
|
|
| 280 |
msgstr ""
|
| 281 |
|
| 282 |
-
#:
|
| 283 |
-
|
| 284 |
-
|
|
|
|
| 285 |
|
| 286 |
-
#:
|
| 287 |
-
|
| 288 |
-
|
|
|
|
| 289 |
|
| 290 |
-
#:
|
| 291 |
-
|
|
|
|
| 292 |
msgstr ""
|
| 293 |
|
| 294 |
-
#:
|
| 295 |
-
msgid "
|
| 296 |
-
msgstr ""
|
| 297 |
|
| 298 |
-
#:
|
| 299 |
-
msgid "
|
| 300 |
-
msgstr ""
|
| 301 |
|
| 302 |
-
#:
|
| 303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 304 |
msgstr ""
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
|
| 308 |
-
|
|
|
|
| 309 |
|
| 310 |
-
#:
|
| 311 |
-
|
| 312 |
-
|
|
|
|
| 313 |
|
| 314 |
-
#:
|
| 315 |
-
|
| 316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
|
| 318 |
#: functions/backup.actions.php:12
|
| 319 |
msgid "Dumping database"
|
|
@@ -329,125 +481,64 @@ msgstr "Eliminarea backup-uri vechi"
|
|
| 329 |
|
| 330 |
#: functions/backup.functions.php:147
|
| 331 |
#: functions/backup.functions.php:157
|
|
|
|
| 332 |
msgid "Backup of %s"
|
| 333 |
msgstr "Copie de rezervă a %s"
|
| 334 |
|
| 335 |
#: functions/backup.functions.php:148
|
|
|
|
| 336 |
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 338 |
-
"
|
| 339 |
-
"The backup file should be attached to this email
|
| 340 |
-
"
|
| 341 |
-
"You can also download the backup file by clicking the link below
|
| 342 |
-
"
|
| 343 |
-
"%s
|
| 344 |
-
"
|
| 345 |
-
"Kind Regards
|
| 346 |
-
"
|
| 347 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
-
"BackUpWordpress ha completado una copia de seguridad de tu web %s.\n"
|
| 350 |
"\n"
|
| 351 |
"El archivo de copia de seguridad se encuentra adjunto a este correo electrónico.\n"
|
| 352 |
"\n"
|
| 353 |
"También puedes descargarlo desde el enlace indicado más abajo:\n"
|
| 354 |
"\n"
|
| 355 |
-
"%s\n"
|
| 356 |
"\n"
|
| 357 |
"Un saludo\n"
|
| 358 |
"\n"
|
| 359 |
"El feliz robot de BackUpWordPress Email"
|
| 360 |
|
| 361 |
#: functions/backup.functions.php:158
|
|
|
|
| 362 |
msgid ""
|
| 363 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 364 |
-
"
|
| 365 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 366 |
-
"
|
| 367 |
-
"You can download the backup file by clicking the link below
|
| 368 |
-
"
|
| 369 |
-
"%s
|
| 370 |
-
"
|
| 371 |
-
"Kind Regards
|
| 372 |
-
"
|
| 373 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 374 |
msgstr ""
|
| 375 |
-
"BackUpWordpress ha completado una copia de seguridad de tu web %s.\n"
|
| 376 |
"\n"
|
| 377 |
"Desafortunadamente el archivo de copia de seguridad creado es demasiado pesado para enviar como archivo adjunto, pero puedes descargarlo desde enlace indicado aquí:\n"
|
| 378 |
"\n"
|
| 379 |
-
"%s\n"
|
| 380 |
"\n"
|
| 381 |
"Un saludo\n"
|
| 382 |
"\n"
|
| 383 |
"El feliz robot de BackUpWordPress Email"
|
| 384 |
|
| 385 |
-
#: functions/
|
| 386 |
-
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
#: functions/interface.functions.php:26
|
| 390 |
-
msgid "Delete"
|
| 391 |
-
msgstr "Ştergere"
|
| 392 |
-
|
| 393 |
-
#: functions/interface.functions.php:67
|
| 394 |
-
#: functions/interface.functions.php:79
|
| 395 |
-
msgid "BackUpWordPress is almost ready."
|
| 396 |
-
msgstr ""
|
| 397 |
-
|
| 398 |
-
#: functions/interface.functions.php:67
|
| 399 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 400 |
-
msgstr "Imposibil de creat directorul de backup-uri, deoarece directorul %s nu este inscriptibil, a alerga %s sau %s sau pentru a crea folderul-te."
|
| 401 |
-
|
| 402 |
-
#: functions/interface.functions.php:79
|
| 403 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 404 |
-
msgstr "Directorul de backup-uri nu este inscriptibil. a alerga %s sau %s sau setaţi permisiunile-te."
|
| 405 |
-
|
| 406 |
-
#: functions/interface.functions.php:89
|
| 407 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 408 |
-
msgstr ""
|
| 409 |
-
|
| 410 |
-
#: functions/interface.functions.php:99
|
| 411 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 412 |
-
msgstr "Aveţi atât %s şi %s definite astfel încât nu există nimic de rezervă."
|
| 413 |
-
|
| 414 |
-
#: functions/interface.functions.php:109
|
| 415 |
-
msgid "The following email address's are not valid: %s."
|
| 416 |
-
msgstr ""
|
| 417 |
-
|
| 418 |
-
#: functions/interface.functions.php:119
|
| 419 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 420 |
-
msgstr ""
|
| 421 |
-
|
| 422 |
-
#: functions/interface.functions.php:129
|
| 423 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 424 |
-
msgstr "Directorul de backup-uri personalizate %s nu există şi nu pot fi create, copiile de rezervă va fi salvată la %s în schimb."
|
| 425 |
-
|
| 426 |
-
#: functions/interface.functions.php:139
|
| 427 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 428 |
-
msgstr "Directorul de backup-uri personalizate %s nu este inscriptibil, backup-uri noi va fi salvat în %s în schimb."
|
| 429 |
-
|
| 430 |
-
#: functions/interface.functions.php:149
|
| 431 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 432 |
-
msgstr "Le-aţi definit o listă particularizată exclude dar următoarele căi nu există % s, sunt sigur că le-aţi introdus corect?"
|
| 433 |
-
|
| 434 |
-
#: functions/interface.functions.php:159
|
| 435 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 436 |
-
msgstr ""
|
| 437 |
-
|
| 438 |
-
#: hm-backup/hm-backup.php:532
|
| 439 |
-
msgid "The backup file was not created"
|
| 440 |
-
msgstr ""
|
| 441 |
-
|
| 442 |
-
#: hm-backup/hm-backup.php:603
|
| 443 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 444 |
-
msgstr ""
|
| 445 |
-
|
| 446 |
-
#: plugin.php:47
|
| 447 |
-
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 448 |
msgstr ""
|
| 449 |
|
| 450 |
-
#: plugin.php:58
|
| 451 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 452 |
-
msgstr "BackUpWordPress necesită WordPress versiunea % s."
|
| 453 |
-
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:54+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:55+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: Romanian\n"
|
| 18 |
+
"X-Poedit-Country: ROMANIA\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
msgstr ""
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
| 35 |
+
#: admin.constants.php:3
|
| 36 |
+
#: admin.menus.php:76
|
| 37 |
+
msgid "Constants"
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
+
#: admin.settings.php:5
|
| 41 |
+
msgid "help panel"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
msgstr ""
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
|
|
|
|
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
msgstr ""
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr ""
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr ""
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr ""
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr ""
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr ""
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr ""
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr ""
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr ""
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr ""
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr ""
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
+
msgstr[2] ""
|
| 152 |
|
| 153 |
#: admin.backups-table.php:13
|
| 154 |
msgid "Size"
|
| 158 |
msgid "Actions"
|
| 159 |
msgstr "Acţiuni"
|
| 160 |
|
| 161 |
+
#: admin.backups-table.php:20
|
| 162 |
+
#, php-format
|
| 163 |
+
msgid "Only the most recent backup will be saved"
|
| 164 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 165 |
+
msgstr[0] ""
|
| 166 |
+
msgstr[1] ""
|
| 167 |
+
msgstr[2] ""
|
| 168 |
+
|
| 169 |
#: admin.backups-table.php:21
|
| 170 |
+
#, php-format
|
| 171 |
msgid "Total %s"
|
| 172 |
msgstr ""
|
| 173 |
|
| 174 |
+
#: admin.page.php:7
|
| 175 |
+
#: admin.menus.php:10
|
| 176 |
+
msgid "Manage Backups"
|
| 177 |
+
msgstr "Gestionaţi backup-uri"
|
| 178 |
+
|
| 179 |
+
#: admin.page.php:23
|
| 180 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 181 |
+
msgstr "Aveţi nevoie pentru a remedia problemele detaliate mai sus înainte de a începe BackUpWordPress."
|
| 182 |
+
|
| 183 |
+
#: admin.page.php:29
|
| 184 |
+
#, php-format
|
| 185 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 186 |
+
msgstr "Dacă aveţi nevoie de ajutor Noţiuni de bază lucrurile de lucru sunteţi mai mult decât binevenit la e-mail-ne la %s şi vom face ceea ce putem pentru a ajuta."
|
| 187 |
+
|
| 188 |
+
#: admin.backup-button.php:3
|
| 189 |
+
msgid "cancel"
|
| 190 |
+
msgstr ""
|
| 191 |
+
|
| 192 |
+
#: admin.backup-button.php:7
|
| 193 |
+
msgid "Back Up Now"
|
| 194 |
+
msgstr "Rezervă acum"
|
| 195 |
+
|
| 196 |
#: admin.constants.php:3
|
| 197 |
+
#, php-format
|
| 198 |
+
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."
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
#: admin.constants.php:3
|
| 203 |
msgstr "Codex poate ajuta"
|
| 204 |
|
| 205 |
#: admin.constants.php:8
|
| 206 |
+
#, php-format
|
| 207 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 208 |
msgstr "Calea la folderul pe care doriţi să stocaţi fişierele copie de rezervă în, implicit la % s."
|
| 209 |
|
| 210 |
#: admin.constants.php:11
|
| 211 |
+
#, php-format
|
| 212 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 213 |
msgstr ""
|
| 214 |
|
| 215 |
#: admin.constants.php:11
|
| 217 |
#: admin.constants.php:23
|
| 218 |
#: admin.constants.php:26
|
| 219 |
#: admin.status.php:14
|
| 220 |
+
#: admin.status.php:18
|
| 221 |
msgid "database"
|
| 222 |
msgstr "baza de date"
|
| 223 |
|
| 224 |
#: admin.constants.php:14
|
| 225 |
+
#, php-format
|
| 226 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 227 |
msgstr ""
|
| 228 |
|
| 229 |
#: admin.constants.php:14
|
| 230 |
#: admin.constants.php:23
|
| 231 |
#: admin.constants.php:26
|
| 232 |
#: admin.status.php:14
|
| 233 |
+
#: admin.status.php:22
|
| 234 |
msgid "files"
|
| 235 |
msgstr "fişiere"
|
| 236 |
|
| 237 |
#: admin.constants.php:17
|
| 238 |
+
#, php-format
|
| 239 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
#: admin.constants.php:20
|
| 243 |
+
#, php-format
|
| 244 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 245 |
+
msgstr ""
|
| 246 |
+
|
| 247 |
+
#: admin.constants.php:23
|
| 248 |
+
#: admin.constants.php:26
|
| 249 |
+
#, php-format
|
| 250 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 251 |
msgstr ""
|
| 252 |
|
| 253 |
#: admin.constants.php:29
|
| 254 |
+
#, php-format
|
| 255 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 256 |
msgstr ""
|
| 257 |
|
| 258 |
#: admin.constants.php:32
|
| 259 |
+
#, php-format
|
| 260 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 261 |
msgstr ""
|
| 262 |
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
#: admin.constants.php:38
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 270 |
msgstr ""
|
| 271 |
|
| 272 |
+
#: admin.constants.php:41
|
| 273 |
+
#, php-format
|
| 274 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 275 |
+
msgstr ""
|
| 276 |
+
|
| 277 |
+
#: admin.actions.php:70
|
| 278 |
+
msgid "You have entered an invalid number of backups."
|
| 279 |
+
msgstr ""
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:79
|
| 282 |
+
#, php-format
|
| 283 |
+
msgid "%s is an invalid email address."
|
| 284 |
+
msgstr ""
|
| 285 |
+
|
| 286 |
+
#: admin.actions.php:249
|
| 287 |
+
#: functions/interface.functions.php:89
|
| 288 |
+
#: functions/interface.functions.php:99
|
| 289 |
+
#: functions/interface.functions.php:110
|
| 290 |
+
#: functions/interface.functions.php:120
|
| 291 |
+
#: functions/interface.functions.php:130
|
| 292 |
+
#: functions/interface.functions.php:140
|
| 293 |
+
#: functions/interface.functions.php:150
|
| 294 |
+
msgid "BackUpWordPress has detected a problem."
|
| 295 |
+
msgstr "BackUpWordPress a detectat o problemă."
|
| 296 |
+
|
| 297 |
+
#: admin.actions.php:249
|
| 298 |
+
#, php-format
|
| 299 |
+
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."
|
| 300 |
+
msgstr ""
|
| 301 |
|
| 302 |
#: admin.menus.php:10
|
| 303 |
#: admin.menus.php:34
|
| 308 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 309 |
msgstr "Nu utilizaţi cea mai recentă versiune stabilă de BackUpWordPress"
|
| 310 |
|
| 311 |
+
#: admin.menus.php:65
|
| 312 |
+
#, php-format
|
| 313 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
+
#: admin.menus.php:75
|
| 317 |
+
msgid "FAQ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
+
#: admin.menus.php:79
|
| 321 |
+
msgid "For more information:"
|
| 322 |
msgstr ""
|
| 323 |
|
| 324 |
+
#: admin.menus.php:81
|
| 325 |
+
msgid "Support Forums"
|
| 326 |
msgstr ""
|
| 327 |
|
| 328 |
+
#: admin.menus.php:82
|
| 329 |
+
msgid "Help with translation"
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
+
#: plugin.php:47
|
| 333 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: plugin.php:58
|
| 337 |
+
#, php-format
|
| 338 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 339 |
+
msgstr "BackUpWordPress necesită WordPress versiunea % s."
|
| 340 |
|
| 341 |
+
#: admin.status.php:9
|
| 342 |
+
#, php-format
|
| 343 |
+
msgid "Automatic backups are %s."
|
| 344 |
+
msgstr "Copierea de rezervă sunt % s."
|
| 345 |
|
| 346 |
+
#: admin.status.php:9
|
| 347 |
+
msgid "disabled"
|
| 348 |
+
msgstr "dezactivat"
|
| 349 |
|
| 350 |
+
#: admin.status.php:14
|
| 351 |
+
msgid "&"
|
| 352 |
msgstr ""
|
| 353 |
|
| 354 |
+
#: admin.status.php:32
|
| 355 |
+
#, php-format
|
| 356 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 357 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 358 |
+
msgstr[0] ""
|
| 359 |
+
msgstr[1] ""
|
| 360 |
+
msgstr[2] ""
|
| 361 |
|
| 362 |
+
#: admin.status.php:39
|
| 363 |
+
#, php-format
|
| 364 |
+
msgid "It's currently %s"
|
| 365 |
msgstr ""
|
| 366 |
|
| 367 |
+
#: admin.status.php:47
|
| 368 |
+
#, php-format
|
| 369 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 370 |
msgstr ""
|
| 371 |
|
| 372 |
+
#: admin.status.php:47
|
| 373 |
+
msgid "Calculating Size..."
|
| 374 |
+
msgstr "Calculul dimensiunea..."
|
| 375 |
|
| 376 |
+
#: admin.status.php:50
|
| 377 |
+
#, php-format
|
| 378 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 379 |
+
msgstr "O copie de rezervă fiecare va fi trimis la % s."
|
| 380 |
|
| 381 |
+
#: admin.status.php:54
|
| 382 |
+
#, php-format
|
| 383 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 384 |
+
msgstr "Următoarele căi vor fi excluşi din copiile de rezervă % s."
|
| 385 |
|
| 386 |
+
#: hm-backup/hm-backup.php:532
|
| 387 |
+
msgid "The backup file was not created"
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
+
#: hm-backup/hm-backup.php:603
|
| 391 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: functions/interface.functions.php:25
|
| 395 |
+
msgid "Download"
|
| 396 |
+
msgstr "Download"
|
| 397 |
|
| 398 |
+
#: functions/interface.functions.php:26
|
| 399 |
+
msgid "Delete"
|
| 400 |
+
msgstr "Ştergere"
|
| 401 |
|
| 402 |
+
#: functions/interface.functions.php:48
|
| 403 |
+
msgid "Settings saved."
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
+
#: functions/interface.functions.php:67
|
| 407 |
+
#: functions/interface.functions.php:79
|
| 408 |
+
msgid "BackUpWordPress is almost ready."
|
| 409 |
msgstr ""
|
| 410 |
|
| 411 |
+
#: functions/interface.functions.php:67
|
| 412 |
+
#, php-format
|
| 413 |
+
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."
|
| 414 |
+
msgstr "Imposibil de creat directorul de backup-uri, deoarece directorul %1$s nu este inscriptibil, a alerga %2$s sau %3$s sau pentru a crea folderul-te."
|
| 415 |
|
| 416 |
+
#: functions/interface.functions.php:79
|
| 417 |
+
#, php-format
|
| 418 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 419 |
+
msgstr "Directorul de backup-uri nu este inscriptibil. a alerga %1$s sau %2$s sau setaţi permisiunile-te."
|
| 420 |
|
| 421 |
+
#: functions/interface.functions.php:89
|
| 422 |
+
#, php-format
|
| 423 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 424 |
msgstr ""
|
| 425 |
|
| 426 |
+
#: functions/interface.functions.php:89
|
| 427 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 428 |
+
msgstr "http://php.net/manual/ro/features.safe-mode.php"
|
| 429 |
|
| 430 |
+
#: functions/interface.functions.php:89
|
| 431 |
+
msgid "Safe Mode"
|
| 432 |
+
msgstr "Safe Mode"
|
| 433 |
|
| 434 |
+
#: functions/interface.functions.php:99
|
| 435 |
+
#, php-format
|
| 436 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 437 |
+
msgstr "Aveţi atât %1$s şi %2$s definite astfel încât nu există nimic de rezervă."
|
| 438 |
+
|
| 439 |
+
#: functions/interface.functions.php:110
|
| 440 |
+
#, php-format
|
| 441 |
+
msgid "The following email address is not valid: %s."
|
| 442 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 443 |
+
msgstr[0] ""
|
| 444 |
+
msgstr[1] ""
|
| 445 |
+
msgstr[2] ""
|
| 446 |
+
|
| 447 |
+
#: functions/interface.functions.php:120
|
| 448 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
+
#: functions/interface.functions.php:130
|
| 452 |
+
#, php-format
|
| 453 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 454 |
+
msgstr "Directorul de backup-uri personalizate %1$s nu există şi nu pot fi create, copiile de rezervă va fi salvată la %2$s în schimb."
|
| 455 |
|
| 456 |
+
#: functions/interface.functions.php:140
|
| 457 |
+
#, php-format
|
| 458 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 459 |
+
msgstr "Directorul de backup-uri personalizate %1$s nu este inscriptibil, backup-uri noi va fi salvat în %2$s în schimb."
|
| 460 |
|
| 461 |
+
#: functions/interface.functions.php:150
|
| 462 |
+
#, php-format
|
| 463 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 464 |
+
msgstr "Le-aţi definit o listă particularizată exclude dar următoarele căi nu există % s, sunt sigur că le-aţi introdus corect?"
|
| 465 |
+
|
| 466 |
+
#: functions/interface.functions.php:160
|
| 467 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 468 |
+
msgstr ""
|
| 469 |
|
| 470 |
#: functions/backup.actions.php:12
|
| 471 |
msgid "Dumping database"
|
| 481 |
|
| 482 |
#: functions/backup.functions.php:147
|
| 483 |
#: functions/backup.functions.php:157
|
| 484 |
+
#, php-format
|
| 485 |
msgid "Backup of %s"
|
| 486 |
msgstr "Copie de rezervă a %s"
|
| 487 |
|
| 488 |
#: functions/backup.functions.php:148
|
| 489 |
+
#, php-format
|
| 490 |
msgid ""
|
| 491 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"The backup file should be attached to this email.\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 496 |
+
"\\n"
|
| 497 |
+
"%2$s\\n"
|
| 498 |
+
"\\n"
|
| 499 |
+
"Kind Regards\\n"
|
| 500 |
+
"\\n"
|
| 501 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 502 |
msgstr ""
|
| 503 |
+
"BackUpWordpress ha completado una copia de seguridad de tu web %1$s.\n"
|
| 504 |
"\n"
|
| 505 |
"El archivo de copia de seguridad se encuentra adjunto a este correo electrónico.\n"
|
| 506 |
"\n"
|
| 507 |
"También puedes descargarlo desde el enlace indicado más abajo:\n"
|
| 508 |
"\n"
|
| 509 |
+
"%2$s\n"
|
| 510 |
"\n"
|
| 511 |
"Un saludo\n"
|
| 512 |
"\n"
|
| 513 |
"El feliz robot de BackUpWordPress Email"
|
| 514 |
|
| 515 |
#: functions/backup.functions.php:158
|
| 516 |
+
#, php-format
|
| 517 |
msgid ""
|
| 518 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 519 |
+
"\\n"
|
| 520 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 521 |
+
"\\n"
|
| 522 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 523 |
+
"\\n"
|
| 524 |
+
"%2$s\\n"
|
| 525 |
+
"\\n"
|
| 526 |
+
"Kind Regards\\n"
|
| 527 |
+
"\\n"
|
| 528 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 529 |
msgstr ""
|
| 530 |
+
"BackUpWordpress ha completado una copia de seguridad de tu web %1$s.\n"
|
| 531 |
"\n"
|
| 532 |
"Desafortunadamente el archivo de copia de seguridad creado es demasiado pesado para enviar como archivo adjunto, pero puedes descargarlo desde enlace indicado aquí:\n"
|
| 533 |
"\n"
|
| 534 |
+
"%2$s\n"
|
| 535 |
"\n"
|
| 536 |
"Un saludo\n"
|
| 537 |
"\n"
|
| 538 |
"El feliz robot de BackUpWordPress Email"
|
| 539 |
|
| 540 |
+
#: functions/core.functions.php:339
|
| 541 |
+
#, php-format
|
| 542 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 543 |
msgstr ""
|
| 544 |
|
|
|
|
|
|
|
|
|
|
|
|
languages/hmbkp-ru_RU.mo
CHANGED
|
Binary file
|
languages/hmbkp-ru_RU.po
CHANGED
|
@@ -2,94 +2,153 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
#: admin.
|
| 17 |
-
|
|
|
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
-
#: admin.
|
| 21 |
-
|
|
|
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
-
#: admin.
|
| 25 |
-
#: admin.constants.php:
|
| 26 |
-
|
|
|
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
msgid "
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
msgid "
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
-
#: admin.
|
| 38 |
-
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
-
msgid "Constants"
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
-
#: admin.
|
| 44 |
-
msgid "
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
-
#: admin.settings.php:
|
| 48 |
-
msgid "
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
-
#: admin.settings.php:
|
| 52 |
-
msgid "
|
| 53 |
msgstr ""
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
msgstr ""
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
msgstr ""
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
msgstr ""
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress обнаружил проблему."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
msgstr ""
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,12 +158,44 @@ msgstr "Размер"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Действия"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr "Всего %s"
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
|
|
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
|
@@ -112,47 +203,60 @@ msgid "The Codex can help"
|
|
| 112 |
msgstr "Подробности смотрите в Кодексе"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "Путь к папке, где вы хотите хранить ваши резервные копии. По умолчанию это %s."
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
| 120 |
-
|
|
|
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
| 123 |
#: admin.constants.php:14
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "баз данных"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
| 133 |
-
|
|
|
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "файлов"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr "Полный запрет на автоматическое резервное копирование. Однако, ручное копирование кнопкой \"Сделать копию\" будет доступно. Значение по умолчанию %s."
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
| 149 |
msgstr "Количество хранимых резервных копий. Более старые копии будут удалены автоматически после создания новой. Значение по умолчанию %s."
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr "Время запуска ежедневного резервного копирования. Значение по умолчанию %s."
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr "Попытаться отправить резервную копию на e-mail. Значением должен быть e-mail адрес. Значение по умолчанию %s."
|
| 158 |
|
|
@@ -161,13 +265,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr "Список файлов и папок, которые нужно исключить из резервной копии, разделённый запятыми. Папка с предыдущими резервными копиями исключается автоматически. "
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
|
|
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,142 +308,164 @@ msgstr "Резервные копии"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "Ваша версия BackUpWordPress устарела."
|
| 180 |
|
| 181 |
-
#: admin.menus.php:
|
| 182 |
-
|
|
|
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
-
#: admin.
|
| 186 |
-
|
| 187 |
-
msgid "Settings"
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#: admin.
|
| 191 |
-
msgid "
|
| 192 |
-
msgstr "Исправьте ошибки, приведённые выше, прежде чем BackUpWordPress сможет начать работу."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Если вам требуется помощь в том, чтобы заставить всё это работать, непременно пишите нам на %s, и мы сделаем всё, что в наших силах."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
msgstr ""
|
| 201 |
|
| 202 |
-
#: admin.
|
| 203 |
-
msgid "
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
-
#: admin.
|
| 207 |
-
msgid "
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
-
#:
|
| 211 |
-
msgid "
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
-
#:
|
| 215 |
-
|
| 216 |
-
|
|
|
|
| 217 |
|
| 218 |
-
#: admin.
|
| 219 |
-
|
| 220 |
-
|
|
|
|
| 221 |
|
| 222 |
-
#: admin.
|
| 223 |
-
msgid "
|
| 224 |
-
msgstr ""
|
| 225 |
|
| 226 |
-
#: admin.
|
| 227 |
-
msgid "
|
| 228 |
-
msgstr ""
|
| 229 |
|
| 230 |
-
#: admin.
|
| 231 |
-
|
| 232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
|
| 234 |
-
#: admin.
|
| 235 |
-
|
|
|
|
| 236 |
msgstr ""
|
| 237 |
|
| 238 |
-
#: admin.
|
| 239 |
-
|
| 240 |
-
|
|
|
|
| 241 |
|
| 242 |
-
#: admin.
|
| 243 |
-
msgid "
|
| 244 |
-
msgstr ""
|
| 245 |
|
| 246 |
-
#: admin.
|
| 247 |
-
|
| 248 |
-
|
|
|
|
| 249 |
|
| 250 |
-
#: admin.
|
| 251 |
-
|
| 252 |
-
|
|
|
|
| 253 |
|
| 254 |
-
#:
|
| 255 |
-
msgid "
|
| 256 |
msgstr ""
|
| 257 |
|
| 258 |
-
#:
|
| 259 |
-
msgid "The
|
| 260 |
msgstr ""
|
| 261 |
|
| 262 |
-
#:
|
| 263 |
-
msgid "
|
| 264 |
-
msgstr ""
|
| 265 |
|
| 266 |
-
#:
|
| 267 |
-
msgid "
|
| 268 |
-
msgstr ""
|
| 269 |
|
| 270 |
-
#:
|
| 271 |
-
msgid "
|
| 272 |
msgstr ""
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
|
| 276 |
-
|
|
|
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
| 280 |
-
|
|
|
|
| 281 |
|
| 282 |
-
#:
|
| 283 |
-
|
| 284 |
-
|
|
|
|
| 285 |
|
| 286 |
-
#:
|
| 287 |
-
|
| 288 |
-
|
|
|
|
| 289 |
|
| 290 |
-
#:
|
| 291 |
-
msgid "
|
| 292 |
-
msgstr "
|
| 293 |
|
| 294 |
-
#:
|
| 295 |
-
msgid "
|
| 296 |
-
msgstr ""
|
| 297 |
|
| 298 |
-
#:
|
| 299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
-
#:
|
| 303 |
-
|
| 304 |
-
|
|
|
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
|
| 308 |
-
|
|
|
|
| 309 |
|
| 310 |
-
#:
|
| 311 |
-
|
| 312 |
-
|
|
|
|
| 313 |
|
| 314 |
-
#:
|
| 315 |
-
msgid "
|
| 316 |
-
msgstr "
|
| 317 |
|
| 318 |
#: functions/backup.actions.php:12
|
| 319 |
msgid "Dumping database"
|
|
@@ -329,126 +481,65 @@ msgstr "Удаление старых копий"
|
|
| 329 |
|
| 330 |
#: functions/backup.functions.php:147
|
| 331 |
#: functions/backup.functions.php:157
|
|
|
|
| 332 |
msgid "Backup of %s"
|
| 333 |
msgstr "Копирование %s"
|
| 334 |
|
| 335 |
#: functions/backup.functions.php:148
|
|
|
|
| 336 |
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 338 |
-
"
|
| 339 |
-
"The backup file should be attached to this email
|
| 340 |
-
"
|
| 341 |
-
"You can also download the backup file by clicking the link below
|
| 342 |
-
"
|
| 343 |
-
"%s
|
| 344 |
-
"
|
| 345 |
-
"Kind Regards
|
| 346 |
-
"
|
| 347 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
-
"BackUpWordpress закончил резервировать ваш сайт %s.\n"
|
| 350 |
"\n"
|
| 351 |
"Файл с резервной копией должен быть прикреплён к этому письму.\n"
|
| 352 |
"\n"
|
| 353 |
"Так же вы можете скачать его по данной ссылке:\n"
|
| 354 |
-
"%s\n"
|
| 355 |
"\n"
|
| 356 |
"С наилучшими пожеланиями,\n"
|
| 357 |
"\n"
|
| 358 |
"Почовый робот BackUpWordPress."
|
| 359 |
|
| 360 |
#: functions/backup.functions.php:158
|
|
|
|
| 361 |
msgid ""
|
| 362 |
-
"BackUpWordPress has completed a backup of your site %s
|
| 363 |
-
"
|
| 364 |
-
"Unfortunately the backup file was too large to attach to this email
|
| 365 |
-
"
|
| 366 |
-
"You can download the backup file by clicking the link below
|
| 367 |
-
"
|
| 368 |
-
"%s
|
| 369 |
-
"
|
| 370 |
-
"Kind Regards
|
| 371 |
-
"
|
| 372 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 373 |
msgstr ""
|
| 374 |
-
"BackUpWordpress закончил резервировать ваш сайт %s.\n"
|
| 375 |
"\n"
|
| 376 |
"К сожалению, файл резервной копии оказался слишком велик для прикрепления его к этому письму..\n"
|
| 377 |
"\n"
|
| 378 |
" Скачать его можно по данной ссылке:\n"
|
| 379 |
"\n"
|
| 380 |
-
"%s\n"
|
| 381 |
"\n"
|
| 382 |
"С наилучшими пожеланиями,\n"
|
| 383 |
"\n"
|
| 384 |
"Почовый робот BackUpWordPress."
|
| 385 |
|
| 386 |
-
#: functions/
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
#: functions/interface.functions.php:26
|
| 391 |
-
msgid "Delete"
|
| 392 |
-
msgstr "Удалить"
|
| 393 |
-
|
| 394 |
-
#: functions/interface.functions.php:67
|
| 395 |
-
#: functions/interface.functions.php:79
|
| 396 |
-
msgid "BackUpWordPress is almost ready."
|
| 397 |
-
msgstr "BackUpWordPress почти готов."
|
| 398 |
-
|
| 399 |
-
#: functions/interface.functions.php:67
|
| 400 |
-
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
| 401 |
-
msgstr "Папка резервных копий не может быть создана, т. к. папка %sне доступна для записи. Выполните %s или %s, или создайте папку вручную."
|
| 402 |
-
|
| 403 |
-
#: functions/interface.functions.php:79
|
| 404 |
-
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
| 405 |
-
msgstr "Папка для резервных копий недоступна для записи. Выполните %s или %s, или установите права вручную."
|
| 406 |
-
|
| 407 |
-
#: functions/interface.functions.php:89
|
| 408 |
-
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
| 409 |
-
msgstr "%s выполняется в %s. Пожалуйста, свяжитесь с администрацией своего хостинга и попросите отключить %s."
|
| 410 |
-
|
| 411 |
-
#: functions/interface.functions.php:99
|
| 412 |
-
msgid "You have both %s and %s defined so there isn't anything to back up."
|
| 413 |
-
msgstr "Вы запретили резервные копии и %s, и %s, так что делать нечего."
|
| 414 |
-
|
| 415 |
-
#: functions/interface.functions.php:109
|
| 416 |
-
msgid "The following email address's are not valid: %s."
|
| 417 |
-
msgstr ""
|
| 418 |
-
|
| 419 |
-
#: functions/interface.functions.php:119
|
| 420 |
-
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 421 |
-
msgstr ""
|
| 422 |
-
|
| 423 |
-
#: functions/interface.functions.php:129
|
| 424 |
-
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
| 425 |
-
msgstr "Заданная вами папка для резервных копий %s не существует и не может быть создана, поэтому они будут сохранены в %s."
|
| 426 |
-
|
| 427 |
-
#: functions/interface.functions.php:139
|
| 428 |
-
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
| 429 |
-
msgstr "Заданная вами папка для резервных копий %s недоступна для записи, поэтому они будут сохранены в %s."
|
| 430 |
-
|
| 431 |
-
#: functions/interface.functions.php:149
|
| 432 |
-
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 433 |
-
msgstr "Вы задали список папок и файлов для исключения из резервной копии, но путь %s не существует. Вы уверены, что задали его правильно?"
|
| 434 |
-
|
| 435 |
-
#: functions/interface.functions.php:159
|
| 436 |
-
msgid "BackUpWordPress detected issues with your last backup."
|
| 437 |
-
msgstr ""
|
| 438 |
-
|
| 439 |
-
#: hm-backup/hm-backup.php:532
|
| 440 |
-
msgid "The backup file was not created"
|
| 441 |
-
msgstr ""
|
| 442 |
-
|
| 443 |
-
#: hm-backup/hm-backup.php:603
|
| 444 |
-
msgid "The following files are unreadable and couldn't be backed up: "
|
| 445 |
-
msgstr ""
|
| 446 |
-
|
| 447 |
-
#: plugin.php:47
|
| 448 |
-
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
-
#: plugin.php:58
|
| 452 |
-
msgid "BackUpWordPress requires WordPress version %s."
|
| 453 |
-
msgstr "Для работы BackUpWordPress требуется Wordpress версии %s."
|
| 454 |
-
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:46+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:56+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"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"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: Russian\n"
|
| 18 |
+
"X-Poedit-Country: RUSSIA\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
msgstr ""
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
| 35 |
+
#: admin.constants.php:3
|
| 36 |
+
#: admin.menus.php:76
|
| 37 |
+
msgid "Constants"
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
+
#: admin.settings.php:5
|
| 41 |
+
msgid "help panel"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
msgstr ""
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
|
|
|
|
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
msgstr ""
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr ""
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr ""
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr ""
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr ""
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr ""
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr ""
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr ""
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr ""
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr ""
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr ""
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
+
msgstr[2] ""
|
| 152 |
|
| 153 |
#: admin.backups-table.php:13
|
| 154 |
msgid "Size"
|
| 158 |
msgid "Actions"
|
| 159 |
msgstr "Действия"
|
| 160 |
|
| 161 |
+
#: admin.backups-table.php:20
|
| 162 |
+
#, php-format
|
| 163 |
+
msgid "Only the most recent backup will be saved"
|
| 164 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 165 |
+
msgstr[0] ""
|
| 166 |
+
msgstr[1] ""
|
| 167 |
+
msgstr[2] ""
|
| 168 |
+
|
| 169 |
#: admin.backups-table.php:21
|
| 170 |
+
#, php-format
|
| 171 |
msgid "Total %s"
|
| 172 |
msgstr "Всего %s"
|
| 173 |
|
| 174 |
+
#: admin.page.php:7
|
| 175 |
+
#: admin.menus.php:10
|
| 176 |
+
msgid "Manage Backups"
|
| 177 |
+
msgstr "Управление резервным копированием"
|
| 178 |
+
|
| 179 |
+
#: admin.page.php:23
|
| 180 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 181 |
+
msgstr "Исправьте ошибки, приведённые выше, прежде чем BackUpWordPress сможет начать работу."
|
| 182 |
+
|
| 183 |
+
#: admin.page.php:29
|
| 184 |
+
#, php-format
|
| 185 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 186 |
+
msgstr "Если вам требуется помощь в том, чтобы заставить всё это работать, непременно пишите нам на %s, и мы сделаем всё, что в наших силах."
|
| 187 |
+
|
| 188 |
+
#: admin.backup-button.php:3
|
| 189 |
+
msgid "cancel"
|
| 190 |
+
msgstr ""
|
| 191 |
+
|
| 192 |
+
#: admin.backup-button.php:7
|
| 193 |
+
msgid "Back Up Now"
|
| 194 |
+
msgstr "Сделать копию"
|
| 195 |
+
|
| 196 |
#: admin.constants.php:3
|
| 197 |
+
#, php-format
|
| 198 |
+
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."
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
#: admin.constants.php:3
|
| 203 |
msgstr "Подробности смотрите в Кодексе"
|
| 204 |
|
| 205 |
#: admin.constants.php:8
|
| 206 |
+
#, php-format
|
| 207 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 208 |
msgstr "Путь к папке, где вы хотите хранить ваши резервные копии. По умолчанию это %s."
|
| 209 |
|
| 210 |
#: admin.constants.php:11
|
| 211 |
+
#, php-format
|
| 212 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 213 |
+
msgstr "Путь к исполняемому файлу %1$s. Он будет использован для копирования %2$s, если доступен."
|
| 214 |
|
| 215 |
#: admin.constants.php:11
|
| 216 |
#: admin.constants.php:14
|
| 217 |
#: admin.constants.php:23
|
| 218 |
#: admin.constants.php:26
|
| 219 |
#: admin.status.php:14
|
| 220 |
+
#: admin.status.php:18
|
| 221 |
msgid "database"
|
| 222 |
msgstr "баз данных"
|
| 223 |
|
| 224 |
#: admin.constants.php:14
|
| 225 |
+
#, php-format
|
| 226 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 227 |
+
msgstr "Путь к исполняемому файлу %1$s. Он будет использован для сжатия %2$s и %3$s, если доступен."
|
| 228 |
|
| 229 |
#: admin.constants.php:14
|
| 230 |
#: admin.constants.php:23
|
| 231 |
#: admin.constants.php:26
|
| 232 |
#: admin.status.php:14
|
| 233 |
+
#: admin.status.php:22
|
| 234 |
msgid "files"
|
| 235 |
msgstr "файлов"
|
| 236 |
|
| 237 |
#: admin.constants.php:17
|
| 238 |
+
#, php-format
|
| 239 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 240 |
msgstr "Полный запрет на автоматическое резервное копирование. Однако, ручное копирование кнопкой \"Сделать копию\" будет доступно. Значение по умолчанию %s."
|
| 241 |
|
| 242 |
#: admin.constants.php:20
|
| 243 |
+
#, fuzzy, php-format
|
| 244 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 245 |
msgstr "Количество хранимых резервных копий. Более старые копии будут удалены автоматически после создания новой. Значение по умолчанию %s."
|
| 246 |
|
| 247 |
+
#: admin.constants.php:23
|
| 248 |
+
#: admin.constants.php:26
|
| 249 |
+
#, php-format
|
| 250 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 251 |
+
msgstr ""
|
| 252 |
+
|
| 253 |
#: admin.constants.php:29
|
| 254 |
+
#, php-format
|
| 255 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 256 |
msgstr "Время запуска ежедневного резервного копирования. Значение по умолчанию %s."
|
| 257 |
|
| 258 |
#: admin.constants.php:32
|
| 259 |
+
#, php-format
|
| 260 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 261 |
msgstr "Попытаться отправить резервную копию на e-mail. Значением должен быть e-mail адрес. Значение по умолчанию %s."
|
| 262 |
|
| 265 |
msgstr "Список файлов и папок, которые нужно исключить из резервной копии, разделённый запятыми. Папка с предыдущими резервными копиями исключается автоматически. "
|
| 266 |
|
| 267 |
#: admin.constants.php:38
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 270 |
msgstr ""
|
| 271 |
|
| 272 |
+
#: admin.constants.php:41
|
| 273 |
+
#, fuzzy, php-format
|
| 274 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 275 |
+
msgstr "Время запуска ежедневного резервного копирования. Значение по умолчанию %s."
|
| 276 |
+
|
| 277 |
+
#: admin.actions.php:70
|
| 278 |
+
msgid "You have entered an invalid number of backups."
|
| 279 |
+
msgstr ""
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:79
|
| 282 |
+
#, php-format
|
| 283 |
+
msgid "%s is an invalid email address."
|
| 284 |
+
msgstr ""
|
| 285 |
+
|
| 286 |
+
#: admin.actions.php:249
|
| 287 |
+
#: functions/interface.functions.php:89
|
| 288 |
+
#: functions/interface.functions.php:99
|
| 289 |
+
#: functions/interface.functions.php:110
|
| 290 |
+
#: functions/interface.functions.php:120
|
| 291 |
+
#: functions/interface.functions.php:130
|
| 292 |
+
#: functions/interface.functions.php:140
|
| 293 |
+
#: functions/interface.functions.php:150
|
| 294 |
+
msgid "BackUpWordPress has detected a problem."
|
| 295 |
+
msgstr "BackUpWordPress обнаружил проблему."
|
| 296 |
+
|
| 297 |
+
#: admin.actions.php:249
|
| 298 |
+
#, php-format
|
| 299 |
+
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."
|
| 300 |
+
msgstr ""
|
| 301 |
|
| 302 |
#: admin.menus.php:10
|
| 303 |
#: admin.menus.php:34
|
| 308 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 309 |
msgstr "Ваша версия BackUpWordPress устарела."
|
| 310 |
|
| 311 |
+
#: admin.menus.php:65
|
| 312 |
+
#, php-format
|
| 313 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
+
#: admin.menus.php:75
|
| 317 |
+
msgid "FAQ"
|
|
|
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
+
#: admin.menus.php:79
|
| 321 |
+
msgid "For more information:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 322 |
msgstr ""
|
| 323 |
|
| 324 |
+
#: admin.menus.php:81
|
| 325 |
+
msgid "Support Forums"
|
| 326 |
msgstr ""
|
| 327 |
|
| 328 |
+
#: admin.menus.php:82
|
| 329 |
+
msgid "Help with translation"
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
+
#: plugin.php:47
|
| 333 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: plugin.php:58
|
| 337 |
+
#, php-format
|
| 338 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 339 |
+
msgstr "Для работы BackUpWordPress требуется Wordpress версии %s."
|
| 340 |
|
| 341 |
+
#: admin.status.php:9
|
| 342 |
+
#, php-format
|
| 343 |
+
msgid "Automatic backups are %s."
|
| 344 |
+
msgstr "Автоматическое резервное копирование %s."
|
| 345 |
|
| 346 |
+
#: admin.status.php:9
|
| 347 |
+
msgid "disabled"
|
| 348 |
+
msgstr "отключено"
|
| 349 |
|
| 350 |
+
#: admin.status.php:14
|
| 351 |
+
msgid "&"
|
| 352 |
+
msgstr "и"
|
| 353 |
|
| 354 |
+
#: admin.status.php:32
|
| 355 |
+
#, php-format
|
| 356 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 357 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 358 |
+
msgstr[0] ""
|
| 359 |
+
msgstr[1] ""
|
| 360 |
+
msgstr[2] ""
|
| 361 |
|
| 362 |
+
#: admin.status.php:39
|
| 363 |
+
#, php-format
|
| 364 |
+
msgid "It's currently %s"
|
| 365 |
msgstr ""
|
| 366 |
|
| 367 |
+
#: admin.status.php:47
|
| 368 |
+
#, php-format
|
| 369 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 370 |
+
msgstr "Ваш сайт занимает %s. Резервные копии будут сжаты и займут меньше места. "
|
| 371 |
|
| 372 |
+
#: admin.status.php:47
|
| 373 |
+
msgid "Calculating Size..."
|
| 374 |
+
msgstr "Вычисление размера…"
|
| 375 |
|
| 376 |
+
#: admin.status.php:50
|
| 377 |
+
#, php-format
|
| 378 |
+
msgid "A copy of each backup will be emailed to %s."
|
| 379 |
+
msgstr "Каждая резервная копия будет отправляться на адрес %s."
|
| 380 |
|
| 381 |
+
#: admin.status.php:54
|
| 382 |
+
#, php-format
|
| 383 |
+
msgid "The following paths will be excluded from your backups %s."
|
| 384 |
+
msgstr "Эти файлы и папки будут исключены из резервных копий: %s"
|
| 385 |
|
| 386 |
+
#: hm-backup/hm-backup.php:532
|
| 387 |
+
msgid "The backup file was not created"
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
+
#: hm-backup/hm-backup.php:603
|
| 391 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: functions/interface.functions.php:25
|
| 395 |
+
msgid "Download"
|
| 396 |
+
msgstr "Скачать"
|
| 397 |
|
| 398 |
+
#: functions/interface.functions.php:26
|
| 399 |
+
msgid "Delete"
|
| 400 |
+
msgstr "Удалить"
|
| 401 |
|
| 402 |
+
#: functions/interface.functions.php:48
|
| 403 |
+
msgid "Settings saved."
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
+
#: functions/interface.functions.php:67
|
| 407 |
+
#: functions/interface.functions.php:79
|
| 408 |
+
msgid "BackUpWordPress is almost ready."
|
| 409 |
+
msgstr "BackUpWordPress почти готов."
|
| 410 |
|
| 411 |
+
#: functions/interface.functions.php:67
|
| 412 |
+
#, php-format
|
| 413 |
+
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."
|
| 414 |
+
msgstr "Папка резервных копий не может быть создана, т. к. папка %1$sне доступна для записи. Выполните %2$s или %3$s, или создайте папку вручную."
|
| 415 |
|
| 416 |
+
#: functions/interface.functions.php:79
|
| 417 |
+
#, php-format
|
| 418 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 419 |
+
msgstr "Папка для резервных копий недоступна для записи. Выполните %1$s или %2$s, или установите права вручную."
|
| 420 |
|
| 421 |
+
#: functions/interface.functions.php:89
|
| 422 |
+
#, php-format
|
| 423 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 424 |
+
msgstr "%1$s выполняется в %2$s. Пожалуйста, свяжитесь с администрацией своего хостинга и попросите отключить %3$s."
|
| 425 |
|
| 426 |
+
#: functions/interface.functions.php:89
|
| 427 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 428 |
+
msgstr "http://php.net/manual/ru/features.safe-mode.php"
|
| 429 |
|
| 430 |
+
#: functions/interface.functions.php:89
|
| 431 |
+
msgid "Safe Mode"
|
| 432 |
+
msgstr "Безопасный режим"
|
| 433 |
|
| 434 |
+
#: functions/interface.functions.php:99
|
| 435 |
+
#, php-format
|
| 436 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 437 |
+
msgstr "Вы запретили резервные копии и %1$s, и %2$s, так что делать нечего."
|
| 438 |
+
|
| 439 |
+
#: functions/interface.functions.php:110
|
| 440 |
+
#, php-format
|
| 441 |
+
msgid "The following email address is not valid: %s."
|
| 442 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 443 |
+
msgstr[0] ""
|
| 444 |
+
msgstr[1] ""
|
| 445 |
+
msgstr[2] ""
|
| 446 |
+
|
| 447 |
+
#: functions/interface.functions.php:120
|
| 448 |
+
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
+
#: functions/interface.functions.php:130
|
| 452 |
+
#, php-format
|
| 453 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 454 |
+
msgstr "Заданная вами папка для резервных копий %1$s не существует и не может быть создана, поэтому они будут сохранены в %2$s."
|
| 455 |
|
| 456 |
+
#: functions/interface.functions.php:140
|
| 457 |
+
#, php-format
|
| 458 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 459 |
+
msgstr "Заданная вами папка для резервных копий %1$s недоступна для записи, поэтому они будут сохранены в %2$s."
|
| 460 |
|
| 461 |
+
#: functions/interface.functions.php:150
|
| 462 |
+
#, php-format
|
| 463 |
+
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 464 |
+
msgstr "Вы задали список папок и файлов для исключения из резервной копии, но путь %s не существует. Вы уверены, что задали его правильно?"
|
| 465 |
|
| 466 |
+
#: functions/interface.functions.php:160
|
| 467 |
+
msgid "BackUpWordPress detected issues with your last backup."
|
| 468 |
+
msgstr ""
|
| 469 |
|
| 470 |
#: functions/backup.actions.php:12
|
| 471 |
msgid "Dumping database"
|
| 481 |
|
| 482 |
#: functions/backup.functions.php:147
|
| 483 |
#: functions/backup.functions.php:157
|
| 484 |
+
#, php-format
|
| 485 |
msgid "Backup of %s"
|
| 486 |
msgstr "Копирование %s"
|
| 487 |
|
| 488 |
#: functions/backup.functions.php:148
|
| 489 |
+
#, php-format
|
| 490 |
msgid ""
|
| 491 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"The backup file should be attached to this email.\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 496 |
+
"\\n"
|
| 497 |
+
"%2$s\\n"
|
| 498 |
+
"\\n"
|
| 499 |
+
"Kind Regards\\n"
|
| 500 |
+
"\\n"
|
| 501 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 502 |
msgstr ""
|
| 503 |
+
"BackUpWordpress закончил резервировать ваш сайт %1$s.\n"
|
| 504 |
"\n"
|
| 505 |
"Файл с резервной копией должен быть прикреплён к этому письму.\n"
|
| 506 |
"\n"
|
| 507 |
"Так же вы можете скачать его по данной ссылке:\n"
|
| 508 |
+
"%2$s\n"
|
| 509 |
"\n"
|
| 510 |
"С наилучшими пожеланиями,\n"
|
| 511 |
"\n"
|
| 512 |
"Почовый робот BackUpWordPress."
|
| 513 |
|
| 514 |
#: functions/backup.functions.php:158
|
| 515 |
+
#, php-format
|
| 516 |
msgid ""
|
| 517 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 518 |
+
"\\n"
|
| 519 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 520 |
+
"\\n"
|
| 521 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 522 |
+
"\\n"
|
| 523 |
+
"%2$s\\n"
|
| 524 |
+
"\\n"
|
| 525 |
+
"Kind Regards\\n"
|
| 526 |
+
"\\n"
|
| 527 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 528 |
msgstr ""
|
| 529 |
+
"BackUpWordpress закончил резервировать ваш сайт %1$s.\n"
|
| 530 |
"\n"
|
| 531 |
"К сожалению, файл резервной копии оказался слишком велик для прикрепления его к этому письму..\n"
|
| 532 |
"\n"
|
| 533 |
" Скачать его можно по данной ссылке:\n"
|
| 534 |
"\n"
|
| 535 |
+
"%2$s\n"
|
| 536 |
"\n"
|
| 537 |
"С наилучшими пожеланиями,\n"
|
| 538 |
"\n"
|
| 539 |
"Почовый робот BackUpWordPress."
|
| 540 |
|
| 541 |
+
#: functions/core.functions.php:339
|
| 542 |
+
#, php-format
|
| 543 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 544 |
msgstr ""
|
| 545 |
|
|
|
|
|
|
|
|
|
|
|
|
languages/hmbkp-sr_SR.mo
CHANGED
|
Binary file
|
languages/hmbkp-sr_SR.po
CHANGED
|
@@ -2,94 +2,153 @@
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
msgid "Help with translation"
|
| 18 |
-
msgstr "Pomozite sa prevođenjem"
|
| 19 |
-
|
| 20 |
-
#: admin.backup-button.php:3
|
| 21 |
-
msgid "cancel"
|
| 22 |
-
msgstr "otkaži"
|
| 23 |
|
| 24 |
-
#: admin.
|
| 25 |
-
#: admin.
|
| 26 |
-
msgid "
|
| 27 |
-
msgstr ""
|
| 28 |
|
| 29 |
-
#: admin.
|
| 30 |
-
|
|
|
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: admin.
|
| 34 |
-
msgid "FAQ"
|
| 35 |
-
msgstr "Česta pitanja"
|
| 36 |
-
|
| 37 |
#: admin.constants.php:3
|
| 38 |
#: admin.menus.php:76
|
| 39 |
-
#: admin.settings.php:5
|
| 40 |
msgid "Constants"
|
| 41 |
msgstr "Konstante"
|
| 42 |
|
| 43 |
-
#: admin.menus.php:81
|
| 44 |
-
msgid "Support Forums"
|
| 45 |
-
msgstr "Forum za podršku"
|
| 46 |
-
|
| 47 |
-
#: admin.settings.php:5
|
| 48 |
-
msgid "You can define %s in your %s to control some settings. A full list of %s can be found in the %s. Defined settings will not be editable below."
|
| 49 |
-
msgstr ""
|
| 50 |
-
|
| 51 |
#: admin.settings.php:5
|
| 52 |
msgid "help panel"
|
| 53 |
msgstr "Površina za pomoć"
|
| 54 |
|
| 55 |
-
#: admin.settings.php:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#: admin.
|
| 68 |
-
msgid "
|
| 69 |
-
msgstr "
|
| 70 |
|
| 71 |
-
#: admin.
|
| 72 |
-
msgid "
|
| 73 |
-
msgstr "
|
| 74 |
|
| 75 |
-
#: admin.
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
#: functions/interface.functions.php:109
|
| 79 |
-
#: functions/interface.functions.php:119
|
| 80 |
-
#: functions/interface.functions.php:129
|
| 81 |
-
#: functions/interface.functions.php:139
|
| 82 |
-
#: functions/interface.functions.php:149
|
| 83 |
-
msgid "BackUpWordPress has detected a problem."
|
| 84 |
-
msgstr "BackUpWordPress je detektovao problem."
|
| 85 |
|
| 86 |
-
#: admin.
|
| 87 |
-
msgid "
|
| 88 |
-
msgstr "
|
| 89 |
|
| 90 |
-
#: admin.
|
| 91 |
-
msgid "
|
| 92 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
#: admin.backups-table.php:13
|
| 95 |
msgid "Size"
|
|
@@ -99,60 +158,105 @@ msgstr "Veličina"
|
|
| 99 |
msgid "Actions"
|
| 100 |
msgstr "Akcije"
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#: admin.backups-table.php:21
|
|
|
|
| 103 |
msgid "Total %s"
|
| 104 |
msgstr "Ukupno %s"
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
#: admin.constants.php:3
|
| 107 |
-
|
| 108 |
-
|
|
|
|
| 109 |
|
| 110 |
#: admin.constants.php:3
|
| 111 |
msgid "The Codex can help"
|
| 112 |
msgstr "Kodeks može pomoći"
|
| 113 |
|
| 114 |
#: admin.constants.php:8
|
|
|
|
| 115 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 116 |
msgstr "Putanja do direktorijuma u kome bi želeli da čuvate vaše rezervne datoteke, podrazumevano %s."
|
| 117 |
|
| 118 |
#: admin.constants.php:11
|
| 119 |
-
|
| 120 |
-
|
|
|
|
| 121 |
|
| 122 |
#: admin.constants.php:11
|
| 123 |
#: admin.constants.php:14
|
| 124 |
#: admin.constants.php:23
|
| 125 |
#: admin.constants.php:26
|
| 126 |
#: admin.status.php:14
|
| 127 |
-
#: admin.status.php:
|
| 128 |
msgid "database"
|
| 129 |
msgstr "baza podataka"
|
| 130 |
|
| 131 |
#: admin.constants.php:14
|
| 132 |
-
|
| 133 |
-
|
|
|
|
| 134 |
|
| 135 |
#: admin.constants.php:14
|
| 136 |
#: admin.constants.php:23
|
| 137 |
#: admin.constants.php:26
|
| 138 |
#: admin.status.php:14
|
| 139 |
-
#: admin.status.php:
|
| 140 |
msgid "files"
|
| 141 |
msgstr "datoteke"
|
| 142 |
|
| 143 |
#: admin.constants.php:17
|
|
|
|
| 144 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 145 |
msgstr "Kompletno onemogućava automatsko kreiranje rezervnih kopija. Još uvek možete napraviti rezervnu kopiju korišćenjem dugmeta \"Napravi rezervnu kopiju\". Podrazumeva se %s."
|
| 146 |
|
| 147 |
#: admin.constants.php:20
|
| 148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
#: admin.constants.php:29
|
|
|
|
| 152 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
#: admin.constants.php:32
|
|
|
|
| 156 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 157 |
msgstr ""
|
| 158 |
|
|
@@ -161,13 +265,39 @@ msgid "Comma separated list of files or directories to exclude, the backups dire
|
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
#: admin.constants.php:38
|
| 164 |
-
|
|
|
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: admin.
|
| 168 |
-
|
| 169 |
-
msgid "
|
| 170 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
#: admin.menus.php:10
|
| 173 |
#: admin.menus.php:34
|
|
@@ -178,108 +308,38 @@ msgstr "Rezervne kopije"
|
|
| 178 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 179 |
msgstr "Ne koristite zadnju stabilnu verziju BackUpWordPress-a"
|
| 180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
#: admin.menus.php:79
|
| 182 |
msgid "For more information:"
|
| 183 |
msgstr "Za više informacija:"
|
| 184 |
|
| 185 |
-
#: admin.
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
msgstr "Podešavanja"
|
| 189 |
-
|
| 190 |
-
#: admin.page.php:23
|
| 191 |
-
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 192 |
-
msgstr "Morate srediti greške prikazane iznad pre nego što pokrenete BackUpWordPress."
|
| 193 |
-
|
| 194 |
-
#: admin.page.php:29
|
| 195 |
-
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 196 |
-
msgstr "Ukoliko vam je potrebna pomoć pri podešavanju više ste nego dobrodošli da pošaljete email na %s a mi ćemo se potruditi da vam pomognemo."
|
| 197 |
-
|
| 198 |
-
#: admin.settings.php:16
|
| 199 |
-
msgid "Automatic Backups"
|
| 200 |
-
msgstr "Automatsko pravljenje rezervnih kopija"
|
| 201 |
-
|
| 202 |
-
#: admin.settings.php:22
|
| 203 |
-
msgid "Backup my site automatically."
|
| 204 |
-
msgstr "Napravi rezervnu kopiju automatski."
|
| 205 |
-
|
| 206 |
-
#: admin.settings.php:27
|
| 207 |
-
msgid "No automatic backups."
|
| 208 |
-
msgstr "Nema automatskih rezervnih kopija."
|
| 209 |
-
|
| 210 |
-
#: admin.settings.php:36
|
| 211 |
-
msgid "Frequency of backups"
|
| 212 |
-
msgstr "Učestalost pravljenja rezervnih kopija"
|
| 213 |
-
|
| 214 |
-
#: admin.settings.php:40
|
| 215 |
-
msgid "Automatic backups will occur"
|
| 216 |
-
msgstr "Automatsko pravljenje rezervnih kopija će biti odrađeno"
|
| 217 |
-
|
| 218 |
-
#: admin.settings.php:43
|
| 219 |
-
msgid "Daily"
|
| 220 |
-
msgstr "Dnevno"
|
| 221 |
-
|
| 222 |
-
#: admin.settings.php:44
|
| 223 |
-
msgid "Weekly"
|
| 224 |
-
msgstr "Nedeljno"
|
| 225 |
-
|
| 226 |
-
#: admin.settings.php:45
|
| 227 |
-
msgid "Fortnightly"
|
| 228 |
-
msgstr "Jednom u dve nedelje"
|
| 229 |
-
|
| 230 |
-
#: admin.settings.php:46
|
| 231 |
-
msgid "Monthly"
|
| 232 |
-
msgstr "Mesečno"
|
| 233 |
-
|
| 234 |
-
#: admin.settings.php:55
|
| 235 |
-
msgid "What to Backup"
|
| 236 |
-
msgstr "Šta ulazi u rezervnu kopiju"
|
| 237 |
-
|
| 238 |
-
#: admin.settings.php:59
|
| 239 |
-
msgid "Backup my"
|
| 240 |
-
msgstr "Napravi rezervnu kopiju mojih"
|
| 241 |
-
|
| 242 |
-
#: admin.settings.php:62
|
| 243 |
-
msgid "database & files"
|
| 244 |
-
msgstr "baza podataka & datoteke"
|
| 245 |
-
|
| 246 |
-
#: admin.settings.php:63
|
| 247 |
-
msgid "database only"
|
| 248 |
-
msgstr "samo bazu podataka"
|
| 249 |
-
|
| 250 |
-
#: admin.settings.php:64
|
| 251 |
-
msgid "files only"
|
| 252 |
-
msgstr "samo datoteke"
|
| 253 |
-
|
| 254 |
-
#: admin.settings.php:72
|
| 255 |
-
msgid "Number of backups"
|
| 256 |
-
msgstr "Broj rezervnih kopija"
|
| 257 |
-
|
| 258 |
-
#: admin.settings.php:73
|
| 259 |
-
msgid "The last %s backups will be stored on the server."
|
| 260 |
-
msgstr "Zadnjih %s rezervnih kopija će biti čuvano na serveru."
|
| 261 |
-
|
| 262 |
-
#: admin.settings.php:77
|
| 263 |
-
msgid "Email backups"
|
| 264 |
-
msgstr "Posalji rezervne kopije na email"
|
| 265 |
-
|
| 266 |
-
#: admin.settings.php:78
|
| 267 |
-
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 268 |
-
msgstr "Rezervna kopija će biti poslata na ovu email adresu. Onemogućeno ukoliko ostavite prazno."
|
| 269 |
|
| 270 |
-
#: admin.
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr "
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
msgstr ""
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
|
| 280 |
-
|
|
|
|
| 281 |
|
| 282 |
#: admin.status.php:9
|
|
|
|
| 283 |
msgid "Automatic backups are %s."
|
| 284 |
msgstr "Automatske rezervne kopije su %s."
|
| 285 |
|
|
@@ -291,75 +351,44 @@ msgstr "onemogućeno"
|
|
| 291 |
msgid "&"
|
| 292 |
msgstr ""
|
| 293 |
|
| 294 |
-
#: admin.status.php:
|
| 295 |
-
|
| 296 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 297 |
|
| 298 |
-
#: admin.status.php:
|
|
|
|
| 299 |
msgid "It's currently %s"
|
| 300 |
msgstr "Trenutno je %s"
|
| 301 |
|
| 302 |
-
#: admin.status.php:
|
|
|
|
| 303 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 304 |
msgstr "Vaš sajt je %s. Rezervna kopija će biti kompresovana i trebala bi biti manja od ovoga."
|
| 305 |
|
| 306 |
-
#: admin.status.php:
|
| 307 |
msgid "Calculating Size..."
|
| 308 |
msgstr "Računanje veličine..."
|
| 309 |
|
| 310 |
-
#: admin.status.php:
|
|
|
|
| 311 |
msgid "A copy of each backup will be emailed to %s."
|
| 312 |
msgstr "Kopija svake rezervne kopije će biti poslata emailom na %s."
|
| 313 |
|
| 314 |
-
#: admin.status.php:
|
|
|
|
| 315 |
msgid "The following paths will be excluded from your backups %s."
|
| 316 |
msgstr "Sledeće putanje će biti izuzete iz vaših rezervnih kopija %s."
|
| 317 |
|
| 318 |
-
#:
|
| 319 |
-
msgid "
|
| 320 |
-
msgstr ""
|
| 321 |
-
|
| 322 |
-
#: functions/backup.actions.php:22
|
| 323 |
-
msgid "Creating zip archive"
|
| 324 |
-
msgstr "Kreiranje zip arhive"
|
| 325 |
-
|
| 326 |
-
#: functions/backup.functions.php:19
|
| 327 |
-
msgid "Removing old backups"
|
| 328 |
-
msgstr "Uklanjanje starih rezervnih kopija"
|
| 329 |
-
|
| 330 |
-
#: functions/backup.functions.php:147
|
| 331 |
-
#: functions/backup.functions.php:157
|
| 332 |
-
msgid "Backup of %s"
|
| 333 |
-
msgstr "Rezervna kopija od %s"
|
| 334 |
-
|
| 335 |
-
#: functions/backup.functions.php:148
|
| 336 |
-
msgid ""
|
| 337 |
-
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 338 |
-
"\n"
|
| 339 |
-
"The backup file should be attached to this email.\n"
|
| 340 |
-
"\n"
|
| 341 |
-
"You can also download the backup file by clicking the link below:\n"
|
| 342 |
-
"\n"
|
| 343 |
-
"%s\n"
|
| 344 |
-
"\n"
|
| 345 |
-
"Kind Regards\n"
|
| 346 |
-
"\n"
|
| 347 |
-
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 348 |
msgstr ""
|
| 349 |
|
| 350 |
-
#:
|
| 351 |
-
msgid ""
|
| 352 |
-
"BackUpWordPress has completed a backup of your site %s.\n"
|
| 353 |
-
"\n"
|
| 354 |
-
"Unfortunately the backup file was too large to attach to this email.\n"
|
| 355 |
-
"\n"
|
| 356 |
-
"You can download the backup file by clicking the link below:\n"
|
| 357 |
-
"\n"
|
| 358 |
-
"%s\n"
|
| 359 |
-
"\n"
|
| 360 |
-
"Kind Regards\n"
|
| 361 |
-
"\n"
|
| 362 |
-
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 363 |
msgstr ""
|
| 364 |
|
| 365 |
#: functions/interface.functions.php:25
|
|
@@ -370,64 +399,126 @@ msgstr ""
|
|
| 370 |
msgid "Delete"
|
| 371 |
msgstr "Obriši"
|
| 372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 373 |
#: functions/interface.functions.php:67
|
| 374 |
#: functions/interface.functions.php:79
|
| 375 |
msgid "BackUpWordPress is almost ready."
|
| 376 |
msgstr "BackUpWordPress je skoro spreman."
|
| 377 |
|
| 378 |
#: functions/interface.functions.php:67
|
| 379 |
-
|
|
|
|
| 380 |
msgstr ""
|
| 381 |
|
| 382 |
#: functions/interface.functions.php:79
|
| 383 |
-
|
|
|
|
| 384 |
msgstr ""
|
| 385 |
|
| 386 |
#: functions/interface.functions.php:89
|
| 387 |
-
|
|
|
|
| 388 |
msgstr ""
|
| 389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 390 |
#: functions/interface.functions.php:99
|
| 391 |
-
|
|
|
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
-
#: functions/interface.functions.php:
|
| 395 |
-
|
| 396 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 397 |
|
| 398 |
-
#: functions/interface.functions.php:
|
| 399 |
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
-
#: functions/interface.functions.php:
|
| 403 |
-
|
|
|
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
-
#: functions/interface.functions.php:
|
| 407 |
-
|
|
|
|
| 408 |
msgstr ""
|
| 409 |
|
| 410 |
-
#: functions/interface.functions.php:
|
|
|
|
| 411 |
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 412 |
msgstr ""
|
| 413 |
|
| 414 |
-
#: functions/interface.functions.php:
|
| 415 |
msgid "BackUpWordPress detected issues with your last backup."
|
| 416 |
msgstr ""
|
| 417 |
|
| 418 |
-
#:
|
| 419 |
-
msgid "
|
| 420 |
msgstr ""
|
| 421 |
|
| 422 |
-
#:
|
| 423 |
-
msgid "
|
| 424 |
-
msgstr ""
|
| 425 |
|
| 426 |
-
#:
|
| 427 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
-
#:
|
| 431 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 432 |
msgstr ""
|
| 433 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
# This file is distributed under the same license as the 1.6.8 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: 1.6.8\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: \n"
|
| 7 |
+
"POT-Creation-Date: 2012-08-14 14:48+0100\n"
|
| 8 |
+
"PO-Revision-Date: 2012-08-14 14:58+0100\n"
|
| 9 |
+
"Last-Translator: Flo Edelmann <florian-edelmann@online.de>\n"
|
| 10 |
+
"Language-Team: \n"
|
| 11 |
+
"Language: \n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 14 |
"Content-Transfer-Encoding: 8bit\n"
|
| 15 |
"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"
|
| 16 |
"X-Generator: GlotPress/0.1\n"
|
| 17 |
+
"X-Poedit-Language: Serbian\n"
|
| 18 |
+
"X-Poedit-Country: SERBIA\n"
|
| 19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
| 21 |
+
"X-Poedit-Basepath: ..\n"
|
| 22 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
#: admin.settings.php:3
|
| 25 |
+
#: admin.page.php:11
|
| 26 |
+
msgid "Settings"
|
| 27 |
+
msgstr "Podešavanja"
|
| 28 |
|
| 29 |
+
#: admin.settings.php:5
|
| 30 |
+
#, php-format
|
| 31 |
+
msgid "You can define %1$s in your %2$s to control some settings. A full list of %3$s can be found in the %4$s. Defined settings will not be editable below."
|
| 32 |
msgstr ""
|
| 33 |
|
| 34 |
+
#: admin.settings.php:5
|
|
|
|
|
|
|
|
|
|
| 35 |
#: admin.constants.php:3
|
| 36 |
#: admin.menus.php:76
|
|
|
|
| 37 |
msgid "Constants"
|
| 38 |
msgstr "Konstante"
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
#: admin.settings.php:5
|
| 41 |
msgid "help panel"
|
| 42 |
msgstr "Površina za pomoć"
|
| 43 |
|
| 44 |
+
#: admin.settings.php:16
|
| 45 |
+
msgid "Automatic Backups"
|
| 46 |
+
msgstr "Automatsko pravljenje rezervnih kopija"
|
| 47 |
|
| 48 |
+
#: admin.settings.php:22
|
| 49 |
+
msgid "Backup my site automatically."
|
| 50 |
+
msgstr "Napravi rezervnu kopiju automatski."
|
| 51 |
|
| 52 |
+
#: admin.settings.php:27
|
| 53 |
+
msgid "No automatic backups."
|
| 54 |
+
msgstr "Nema automatskih rezervnih kopija."
|
| 55 |
|
| 56 |
+
#: admin.settings.php:36
|
| 57 |
+
msgid "Frequency of backups"
|
| 58 |
+
msgstr "Učestalost pravljenja rezervnih kopija"
|
| 59 |
|
| 60 |
+
#: admin.settings.php:40
|
| 61 |
+
msgid "Automatic backups will occur"
|
| 62 |
+
msgstr "Automatsko pravljenje rezervnih kopija će biti odrađeno"
|
| 63 |
|
| 64 |
+
#: admin.settings.php:43
|
| 65 |
+
msgid "Daily"
|
| 66 |
+
msgstr "Dnevno"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
#: admin.settings.php:44
|
| 69 |
+
msgid "Weekly"
|
| 70 |
+
msgstr "Nedeljno"
|
| 71 |
|
| 72 |
+
#: admin.settings.php:45
|
| 73 |
+
msgid "Fortnightly"
|
| 74 |
+
msgstr "Jednom u dve nedelje"
|
| 75 |
+
|
| 76 |
+
#: admin.settings.php:46
|
| 77 |
+
msgid "Monthly"
|
| 78 |
+
msgstr "Mesečno"
|
| 79 |
+
|
| 80 |
+
#: admin.settings.php:55
|
| 81 |
+
msgid "What to Backup"
|
| 82 |
+
msgstr "Šta ulazi u rezervnu kopiju"
|
| 83 |
+
|
| 84 |
+
#: admin.settings.php:59
|
| 85 |
+
msgid "Backup my"
|
| 86 |
+
msgstr "Napravi rezervnu kopiju mojih"
|
| 87 |
+
|
| 88 |
+
#: admin.settings.php:62
|
| 89 |
+
msgid "database & files"
|
| 90 |
+
msgstr "baza podataka & datoteke"
|
| 91 |
+
|
| 92 |
+
#: admin.settings.php:63
|
| 93 |
+
msgid "database only"
|
| 94 |
+
msgstr "samo bazu podataka"
|
| 95 |
+
|
| 96 |
+
#: admin.settings.php:64
|
| 97 |
+
msgid "files only"
|
| 98 |
+
msgstr "samo datoteke"
|
| 99 |
+
|
| 100 |
+
#: admin.settings.php:72
|
| 101 |
+
msgid "Number of backups"
|
| 102 |
+
msgstr "Broj rezervnih kopija"
|
| 103 |
+
|
| 104 |
+
#: admin.settings.php:73
|
| 105 |
+
#, php-format
|
| 106 |
+
msgid "The last %s backups will be stored on the server."
|
| 107 |
+
msgstr "Zadnjih %s rezervnih kopija će biti čuvano na serveru."
|
| 108 |
+
|
| 109 |
+
#: admin.settings.php:77
|
| 110 |
+
msgid "Email backups"
|
| 111 |
+
msgstr "Posalji rezervne kopije na email"
|
| 112 |
+
|
| 113 |
+
#: admin.settings.php:78
|
| 114 |
+
msgid "A copy of the backup file will be emailed to this address. Disabled if left blank."
|
| 115 |
+
msgstr "Rezervna kopija će biti poslata na ovu email adresu. Onemogućeno ukoliko ostavite prazno."
|
| 116 |
+
|
| 117 |
+
#: admin.settings.php:82
|
| 118 |
+
msgid "Excludes"
|
| 119 |
+
msgstr "Izuzetci"
|
| 120 |
+
|
| 121 |
+
#: admin.settings.php:85
|
| 122 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
| 123 |
+
msgstr ""
|
| 124 |
+
|
| 125 |
+
#: admin.settings.php:86
|
| 126 |
+
#: admin.constants.php:8
|
| 127 |
+
#: admin.constants.php:11
|
| 128 |
+
#: admin.constants.php:14
|
| 129 |
+
#: admin.constants.php:17
|
| 130 |
+
#: admin.constants.php:20
|
| 131 |
+
#: admin.constants.php:23
|
| 132 |
+
#: admin.constants.php:26
|
| 133 |
+
#: admin.constants.php:29
|
| 134 |
+
#: admin.constants.php:32
|
| 135 |
+
#: admin.constants.php:35
|
| 136 |
+
#: admin.constants.php:38
|
| 137 |
+
#: admin.constants.php:41
|
| 138 |
+
msgid "e.g."
|
| 139 |
+
msgstr "npr"
|
| 140 |
+
|
| 141 |
+
#: admin.settings.php:94
|
| 142 |
+
msgid "Save Changes"
|
| 143 |
+
msgstr "Sačuvajte promene"
|
| 144 |
+
|
| 145 |
+
#: admin.backups-table.php:12
|
| 146 |
+
#, php-format
|
| 147 |
+
msgid "1 backup completed"
|
| 148 |
+
msgid_plural "%d backups completed"
|
| 149 |
+
msgstr[0] ""
|
| 150 |
+
msgstr[1] ""
|
| 151 |
+
msgstr[2] ""
|
| 152 |
|
| 153 |
#: admin.backups-table.php:13
|
| 154 |
msgid "Size"
|
| 158 |
msgid "Actions"
|
| 159 |
msgstr "Akcije"
|
| 160 |
|
| 161 |
+
#: admin.backups-table.php:20
|
| 162 |
+
#, php-format
|
| 163 |
+
msgid "Only the most recent backup will be saved"
|
| 164 |
+
msgid_plural "The %d most recent backups will be saved"
|
| 165 |
+
msgstr[0] ""
|
| 166 |
+
msgstr[1] ""
|
| 167 |
+
msgstr[2] ""
|
| 168 |
+
|
| 169 |
#: admin.backups-table.php:21
|
| 170 |
+
#, php-format
|
| 171 |
msgid "Total %s"
|
| 172 |
msgstr "Ukupno %s"
|
| 173 |
|
| 174 |
+
#: admin.page.php:7
|
| 175 |
+
#: admin.menus.php:10
|
| 176 |
+
msgid "Manage Backups"
|
| 177 |
+
msgstr "Rad sa rezervnim kopijama."
|
| 178 |
+
|
| 179 |
+
#: admin.page.php:23
|
| 180 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
| 181 |
+
msgstr "Morate srediti greške prikazane iznad pre nego što pokrenete BackUpWordPress."
|
| 182 |
+
|
| 183 |
+
#: admin.page.php:29
|
| 184 |
+
#, php-format
|
| 185 |
+
msgid "If you need help getting things working you are more than welcome to email us at %s and we'll do what we can to help."
|
| 186 |
+
msgstr "Ukoliko vam je potrebna pomoć pri podešavanju više ste nego dobrodošli da pošaljete email na %s a mi ćemo se potruditi da vam pomognemo."
|
| 187 |
+
|
| 188 |
+
#: admin.backup-button.php:3
|
| 189 |
+
msgid "cancel"
|
| 190 |
+
msgstr "otkaži"
|
| 191 |
+
|
| 192 |
+
#: admin.backup-button.php:7
|
| 193 |
+
msgid "Back Up Now"
|
| 194 |
+
msgstr "Napravite rezervnu kopiju"
|
| 195 |
+
|
| 196 |
#: admin.constants.php:3
|
| 197 |
+
#, php-format
|
| 198 |
+
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."
|
| 199 |
+
msgstr "Možete %1$s bilo koju od sledećih %2$s u vašem %3$s da bi kontrolisali napredna podešavanja. %4$s. Definisani %5$s će biti istaknuti."
|
| 200 |
|
| 201 |
#: admin.constants.php:3
|
| 202 |
msgid "The Codex can help"
|
| 203 |
msgstr "Kodeks može pomoći"
|
| 204 |
|
| 205 |
#: admin.constants.php:8
|
| 206 |
+
#, php-format
|
| 207 |
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
| 208 |
msgstr "Putanja do direktorijuma u kome bi želeli da čuvate vaše rezervne datoteke, podrazumevano %s."
|
| 209 |
|
| 210 |
#: admin.constants.php:11
|
| 211 |
+
#, php-format
|
| 212 |
+
msgid "The path to your %1$s executable. Will be used for the %2$s part of the back up if available."
|
| 213 |
+
msgstr "Putanja do vaše %1$s izvršne. Biće korišćena za %2$s deo rezervne kopije ukoliko je moguće."
|
| 214 |
|
| 215 |
#: admin.constants.php:11
|
| 216 |
#: admin.constants.php:14
|
| 217 |
#: admin.constants.php:23
|
| 218 |
#: admin.constants.php:26
|
| 219 |
#: admin.status.php:14
|
| 220 |
+
#: admin.status.php:18
|
| 221 |
msgid "database"
|
| 222 |
msgstr "baza podataka"
|
| 223 |
|
| 224 |
#: admin.constants.php:14
|
| 225 |
+
#, fuzzy, php-format
|
| 226 |
+
msgid "The path to your %1$s executable. Will be used to zip up your %2$s and %3$s if available."
|
| 227 |
+
msgstr "Putanja do vaše %1$s izvršne. Biće korišćena za %2$s deo rezervne kopije ukoliko je moguće."
|
| 228 |
|
| 229 |
#: admin.constants.php:14
|
| 230 |
#: admin.constants.php:23
|
| 231 |
#: admin.constants.php:26
|
| 232 |
#: admin.status.php:14
|
| 233 |
+
#: admin.status.php:22
|
| 234 |
msgid "files"
|
| 235 |
msgstr "datoteke"
|
| 236 |
|
| 237 |
#: admin.constants.php:17
|
| 238 |
+
#, php-format
|
| 239 |
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
| 240 |
msgstr "Kompletno onemogućava automatsko kreiranje rezervnih kopija. Još uvek možete napraviti rezervnu kopiju korišćenjem dugmeta \"Napravi rezervnu kopiju\". Podrazumeva se %s."
|
| 241 |
|
| 242 |
#: admin.constants.php:20
|
| 243 |
+
#, php-format
|
| 244 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Defaults to %s."
|
| 245 |
+
msgstr ""
|
| 246 |
+
|
| 247 |
+
#: admin.constants.php:23
|
| 248 |
+
#: admin.constants.php:26
|
| 249 |
+
#, php-format
|
| 250 |
+
msgid "Backup %1$s only, your %2$s won't be backed up. Defaults to %3$s."
|
| 251 |
msgstr ""
|
| 252 |
|
| 253 |
#: admin.constants.php:29
|
| 254 |
+
#, php-format
|
| 255 |
msgid "The time that the daily back up should run. Defaults to %s."
|
| 256 |
msgstr ""
|
| 257 |
|
| 258 |
#: admin.constants.php:32
|
| 259 |
+
#, php-format
|
| 260 |
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
| 261 |
msgstr ""
|
| 262 |
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
#: admin.constants.php:38
|
| 268 |
+
#, php-format
|
| 269 |
+
msgid "The capability to use when calling %1$s. Defaults to %2$s."
|
| 270 |
msgstr ""
|
| 271 |
|
| 272 |
+
#: admin.constants.php:41
|
| 273 |
+
#, php-format
|
| 274 |
+
msgid "The root directory that is backed up. Defaults to %s."
|
| 275 |
+
msgstr ""
|
| 276 |
+
|
| 277 |
+
#: admin.actions.php:70
|
| 278 |
+
msgid "You have entered an invalid number of backups."
|
| 279 |
+
msgstr "Uneli ste nepravilan broj rezervnih kopija."
|
| 280 |
+
|
| 281 |
+
#: admin.actions.php:79
|
| 282 |
+
#, php-format
|
| 283 |
+
msgid "%s is an invalid email address."
|
| 284 |
+
msgstr "%s je nepravilna email adresa."
|
| 285 |
+
|
| 286 |
+
#: admin.actions.php:249
|
| 287 |
+
#: functions/interface.functions.php:89
|
| 288 |
+
#: functions/interface.functions.php:99
|
| 289 |
+
#: functions/interface.functions.php:110
|
| 290 |
+
#: functions/interface.functions.php:120
|
| 291 |
+
#: functions/interface.functions.php:130
|
| 292 |
+
#: functions/interface.functions.php:140
|
| 293 |
+
#: functions/interface.functions.php:150
|
| 294 |
+
msgid "BackUpWordPress has detected a problem."
|
| 295 |
+
msgstr "BackUpWordPress je detektovao problem."
|
| 296 |
+
|
| 297 |
+
#: admin.actions.php:249
|
| 298 |
+
#, php-format
|
| 299 |
+
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."
|
| 300 |
+
msgstr "%1$s vraća %2$s odgovor koji može ukazivati na to da se zakazane operacije (cron jobs) ne izvršavaju pravilno. BackUpWordPress svoje zakazano pravljenje rezervnih kopija zasniva na zakazanim operacijama. Pogledajte %3$s za više detalja."
|
| 301 |
|
| 302 |
#: admin.menus.php:10
|
| 303 |
#: admin.menus.php:34
|
| 308 |
msgid "You are not using the latest stable version of BackUpWordPress"
|
| 309 |
msgstr "Ne koristite zadnju stabilnu verziju BackUpWordPress-a"
|
| 310 |
|
| 311 |
+
#: admin.menus.php:65
|
| 312 |
+
#, php-format
|
| 313 |
+
msgid "The information below is for version %1$s. View the <code>readme.txt</code> file for help specific to version %2$s."
|
| 314 |
+
msgstr ""
|
| 315 |
+
|
| 316 |
+
#: admin.menus.php:75
|
| 317 |
+
msgid "FAQ"
|
| 318 |
+
msgstr "Česta pitanja"
|
| 319 |
+
|
| 320 |
#: admin.menus.php:79
|
| 321 |
msgid "For more information:"
|
| 322 |
msgstr "Za više informacija:"
|
| 323 |
|
| 324 |
+
#: admin.menus.php:81
|
| 325 |
+
msgid "Support Forums"
|
| 326 |
+
msgstr "Forum za podršku"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 327 |
|
| 328 |
+
#: admin.menus.php:82
|
| 329 |
+
msgid "Help with translation"
|
| 330 |
+
msgstr "Pomozite sa prevođenjem"
|
| 331 |
|
| 332 |
+
#: plugin.php:47
|
| 333 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: plugin.php:58
|
| 337 |
+
#, php-format
|
| 338 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
| 339 |
+
msgstr ""
|
| 340 |
|
| 341 |
#: admin.status.php:9
|
| 342 |
+
#, php-format
|
| 343 |
msgid "Automatic backups are %s."
|
| 344 |
msgstr "Automatske rezervne kopije su %s."
|
| 345 |
|
| 351 |
msgid "&"
|
| 352 |
msgstr ""
|
| 353 |
|
| 354 |
+
#: admin.status.php:32
|
| 355 |
+
#, php-format
|
| 356 |
+
msgid "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 357 |
+
msgid_plural "Your %1$s will be automatically backed up %2$s. The next backup will occur at %3$s on %4$s and be saved to %5$s."
|
| 358 |
+
msgstr[0] ""
|
| 359 |
+
msgstr[1] ""
|
| 360 |
+
msgstr[2] ""
|
| 361 |
|
| 362 |
+
#: admin.status.php:39
|
| 363 |
+
#, php-format
|
| 364 |
msgid "It's currently %s"
|
| 365 |
msgstr "Trenutno je %s"
|
| 366 |
|
| 367 |
+
#: admin.status.php:47
|
| 368 |
+
#, php-format
|
| 369 |
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
| 370 |
msgstr "Vaš sajt je %s. Rezervna kopija će biti kompresovana i trebala bi biti manja od ovoga."
|
| 371 |
|
| 372 |
+
#: admin.status.php:47
|
| 373 |
msgid "Calculating Size..."
|
| 374 |
msgstr "Računanje veličine..."
|
| 375 |
|
| 376 |
+
#: admin.status.php:50
|
| 377 |
+
#, php-format
|
| 378 |
msgid "A copy of each backup will be emailed to %s."
|
| 379 |
msgstr "Kopija svake rezervne kopije će biti poslata emailom na %s."
|
| 380 |
|
| 381 |
+
#: admin.status.php:54
|
| 382 |
+
#, php-format
|
| 383 |
msgid "The following paths will be excluded from your backups %s."
|
| 384 |
msgstr "Sledeće putanje će biti izuzete iz vaših rezervnih kopija %s."
|
| 385 |
|
| 386 |
+
#: hm-backup/hm-backup.php:532
|
| 387 |
+
msgid "The backup file was not created"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
+
#: hm-backup/hm-backup.php:603
|
| 391 |
+
msgid "The following files are unreadable and couldn't be backed up: "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
#: functions/interface.functions.php:25
|
| 399 |
msgid "Delete"
|
| 400 |
msgstr "Obriši"
|
| 401 |
|
| 402 |
+
#: functions/interface.functions.php:48
|
| 403 |
+
msgid "Settings saved."
|
| 404 |
+
msgstr "Podešavanja sačuvana."
|
| 405 |
+
|
| 406 |
#: functions/interface.functions.php:67
|
| 407 |
#: functions/interface.functions.php:79
|
| 408 |
msgid "BackUpWordPress is almost ready."
|
| 409 |
msgstr "BackUpWordPress je skoro spreman."
|
| 410 |
|
| 411 |
#: functions/interface.functions.php:67
|
| 412 |
+
#, php-format
|
| 413 |
+
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."
|
| 414 |
msgstr ""
|
| 415 |
|
| 416 |
#: functions/interface.functions.php:79
|
| 417 |
+
#, php-format
|
| 418 |
+
msgid "Your backups directory isn't writable, run %1$s or %2$s or set the permissions yourself."
|
| 419 |
msgstr ""
|
| 420 |
|
| 421 |
#: functions/interface.functions.php:89
|
| 422 |
+
#, php-format
|
| 423 |
+
msgid "%1$s is running in %2$s. Please contact your host and ask them to disable %3$s."
|
| 424 |
msgstr ""
|
| 425 |
|
| 426 |
+
#: functions/interface.functions.php:89
|
| 427 |
+
msgid "http://php.net/manual/en/features.safe-mode.php"
|
| 428 |
+
msgstr "http://php.net/manual/sr/features.safe-mode.php"
|
| 429 |
+
|
| 430 |
+
#: functions/interface.functions.php:89
|
| 431 |
+
msgid "Safe Mode"
|
| 432 |
+
msgstr "Садржај"
|
| 433 |
+
|
| 434 |
#: functions/interface.functions.php:99
|
| 435 |
+
#, php-format
|
| 436 |
+
msgid "You have both %1$s and %2$s defined so there isn't anything to back up."
|
| 437 |
msgstr ""
|
| 438 |
|
| 439 |
+
#: functions/interface.functions.php:110
|
| 440 |
+
#, php-format
|
| 441 |
+
msgid "The following email address is not valid: %s."
|
| 442 |
+
msgid_plural "The following email addresses are not valid: %s."
|
| 443 |
+
msgstr[0] ""
|
| 444 |
+
msgstr[1] ""
|
| 445 |
+
msgstr[2] ""
|
| 446 |
|
| 447 |
+
#: functions/interface.functions.php:120
|
| 448 |
msgid "The last backup email failed to send. It's likely that the file is too large."
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
+
#: functions/interface.functions.php:130
|
| 452 |
+
#, php-format
|
| 453 |
+
msgid "Your custom backups directory %1$s doesn't exist and can't be created, your backups will be saved to %2$s instead."
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
+
#: functions/interface.functions.php:140
|
| 457 |
+
#, php-format
|
| 458 |
+
msgid "Your custom backups directory %1$s isn't writable, new backups will be saved to %2$s instead."
|
| 459 |
msgstr ""
|
| 460 |
|
| 461 |
+
#: functions/interface.functions.php:150
|
| 462 |
+
#, php-format
|
| 463 |
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
| 464 |
msgstr ""
|
| 465 |
|
| 466 |
+
#: functions/interface.functions.php:160
|
| 467 |
msgid "BackUpWordPress detected issues with your last backup."
|
| 468 |
msgstr ""
|
| 469 |
|
| 470 |
+
#: functions/backup.actions.php:12
|
| 471 |
+
msgid "Dumping database"
|
| 472 |
msgstr ""
|
| 473 |
|
| 474 |
+
#: functions/backup.actions.php:22
|
| 475 |
+
msgid "Creating zip archive"
|
| 476 |
+
msgstr "Kreiranje zip arhive"
|
| 477 |
|
| 478 |
+
#: functions/backup.functions.php:19
|
| 479 |
+
msgid "Removing old backups"
|
| 480 |
+
msgstr "Uklanjanje starih rezervnih kopija"
|
| 481 |
+
|
| 482 |
+
#: functions/backup.functions.php:147
|
| 483 |
+
#: functions/backup.functions.php:157
|
| 484 |
+
#, php-format
|
| 485 |
+
msgid "Backup of %s"
|
| 486 |
+
msgstr "Rezervna kopija od %s"
|
| 487 |
+
|
| 488 |
+
#: functions/backup.functions.php:148
|
| 489 |
+
#, php-format
|
| 490 |
+
msgid ""
|
| 491 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 492 |
+
"\\n"
|
| 493 |
+
"The backup file should be attached to this email.\\n"
|
| 494 |
+
"\\n"
|
| 495 |
+
"You can also download the backup file by clicking the link below:\\n"
|
| 496 |
+
"\\n"
|
| 497 |
+
"%2$s\\n"
|
| 498 |
+
"\\n"
|
| 499 |
+
"Kind Regards\\n"
|
| 500 |
+
"\\n"
|
| 501 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 502 |
msgstr ""
|
| 503 |
|
| 504 |
+
#: functions/backup.functions.php:158
|
| 505 |
+
#, php-format
|
| 506 |
+
msgid ""
|
| 507 |
+
"BackUpWordPress has completed a backup of your site %1$s.\\n"
|
| 508 |
+
"\\n"
|
| 509 |
+
"Unfortunately the backup file was too large to attach to this email.\\n"
|
| 510 |
+
"\\n"
|
| 511 |
+
"You can download the backup file by clicking the link below:\\n"
|
| 512 |
+
"\\n"
|
| 513 |
+
"%2$s\\n"
|
| 514 |
+
"\\n"
|
| 515 |
+
"Kind Regards\\n"
|
| 516 |
+
"\\n"
|
| 517 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
+
#: functions/core.functions.php:339
|
| 521 |
+
#, php-format
|
| 522 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
| 523 |
+
msgstr "Ova %s datoteka osigurava da drugi ljudi ne mogu skinuti vaše rezervne kopije."
|
| 524 |
+
|
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: 1.6.
|
| 9 |
Author URI: http://hmn.md/
|
| 10 |
*/
|
| 11 |
|
| 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: 1.6.9
|
| 9 |
Author URI: http://hmn.md/
|
| 10 |
*/
|
| 11 |
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot
|
| 3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
| 4 |
Requires at least: 3.1.4
|
| 5 |
-
Tested up to: 3.
|
| 6 |
-
Stable tag: 1.6.
|
| 7 |
|
| 8 |
Simple automated back ups of your WordPress powered website.
|
| 9 |
|
|
@@ -27,7 +27,7 @@ BackUpWordPress will back up your entire site including your database and all yo
|
|
| 27 |
|
| 28 |
The BackUpWordPress plugin is hosted github, if you want to help out with development or testing then head over to https://github.com/humanmade/backupwordpress/.
|
| 29 |
|
| 30 |
-
We'd also love help translating the plugin into more languages, if you can help then please contact support@
|
| 31 |
|
| 32 |
== Installation ==
|
| 33 |
|
|
@@ -91,7 +91,7 @@ General support questions should be posted in the <a href="http://wordpress.org/
|
|
| 91 |
|
| 92 |
For development issues, feature requests or anybody wishing to help out with development checkout <a href="https://github.com/humanmade/backupwordpress/">BackUpWordPress on GitHub.</a>
|
| 93 |
|
| 94 |
-
You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> or email support@
|
| 95 |
|
| 96 |
== Screenshots ==
|
| 97 |
|
|
@@ -99,6 +99,16 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
| 99 |
|
| 100 |
== Changelog ==
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
#### 1.6.8
|
| 103 |
|
| 104 |
* French translation props Christophe - http://catarina.fr.
|
|
@@ -339,8 +349,8 @@ Fix some silly 1.0 bugs
|
|
| 339 |
|
| 340 |
#### 1.0
|
| 341 |
|
| 342 |
-
1.0 represents a total rewrite & rethink of the BackUpWordPress plugin with a focus on making it "Just Work". The management and development of the plugin has been taken over by [humanmade](http://
|
| 343 |
|
| 344 |
#### Previous
|
| 345 |
|
| 346 |
-
Version 0.4.5 and previous were developed by [wpdprx](http://profiles.wordpress.org/users/wpdprx/)
|
| 2 |
Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot
|
| 3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
| 4 |
Requires at least: 3.1.4
|
| 5 |
+
Tested up to: 3.4.1
|
| 6 |
+
Stable tag: 1.6.9
|
| 7 |
|
| 8 |
Simple automated back ups of your WordPress powered website.
|
| 9 |
|
| 27 |
|
| 28 |
The BackUpWordPress plugin is hosted github, if you want to help out with development or testing then head over to https://github.com/humanmade/backupwordpress/.
|
| 29 |
|
| 30 |
+
We'd also love help translating the plugin into more languages, if you can help then please contact support@hmn.md or send us a pull request.
|
| 31 |
|
| 32 |
== Installation ==
|
| 33 |
|
| 91 |
|
| 92 |
For development issues, feature requests or anybody wishing to help out with development checkout <a href="https://github.com/humanmade/backupwordpress/">BackUpWordPress on GitHub.</a>
|
| 93 |
|
| 94 |
+
You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> or email support@hmn.md for further help/support.
|
| 95 |
|
| 96 |
== Screenshots ==
|
| 97 |
|
| 99 |
|
| 100 |
== Changelog ==
|
| 101 |
|
| 102 |
+
#### 1.6.9
|
| 103 |
+
|
| 104 |
+
* Updated and improved translations across the board - props @elektronikLexikon.
|
| 105 |
+
* German translation - props @elektronikLexikon.
|
| 106 |
+
* New Basque translation - props Unai ZC.
|
| 107 |
+
* New Dutch translation - Anno De Vries.
|
| 108 |
+
* New Italian translation.
|
| 109 |
+
* Better support for when WordPress is installed in a sub directory - props @mattheu
|
| 110 |
+
|
| 111 |
+
|
| 112 |
#### 1.6.8
|
| 113 |
|
| 114 |
* French translation props Christophe - http://catarina.fr.
|
| 349 |
|
| 350 |
#### 1.0
|
| 351 |
|
| 352 |
+
1.0 represents a total rewrite & rethink of the BackUpWordPress plugin with a focus on making it "Just Work". The management and development of the plugin has been taken over by [humanmade](http://hmn.md) the chaps behind [WP Remote](https://wpremote.com)
|
| 353 |
|
| 354 |
#### Previous
|
| 355 |
|
| 356 |
+
Version 0.4.5 and previous were developed by [wpdprx](http://profiles.wordpress.org/users/wpdprx/)
|
