Version Description
Download this release
Release Info
Developer | willmot |
Plugin | BackUpWordPress |
Version | 1.6.8 |
Comparing to | |
See all releases |
Code changes from version 1.6.7 to 1.6.8
- admin.actions.php +3 -3
- admin.backup-button.php +1 -1
- admin.constants.php +7 -4
- admin.menus.php +12 -11
- admin.settings.php +2 -2
- backupwordpress.mo +0 -0
- backupwordpress.po +471 -0
- functions/core.functions.php +1 -1
- functions/interface.functions.php +3 -3
- languages/hmbkp-es_ES.mo +0 -0
- languages/hmbkp-es_ES.po +345 -235
- languages/hmbkp-fr_FR.mo +0 -0
- languages/hmbkp-fr_FR.po +455 -0
- languages/hmbkp-lt_LT.mo +0 -0
- languages/hmbkp-lt_LT.po +455 -0
- languages/hmbkp-ro_RO.mo +0 -0
- languages/hmbkp-ro_RO.po +453 -0
- languages/hmbkp-ru_RU.mo +0 -0
- languages/hmbkp-ru_RU.po +341 -271
- languages/hmbkp-sr_SR.mo +0 -0
- languages/hmbkp-sr_SR.po +433 -0
- plugin.php +6 -2
- readme.txt +14 -3
admin.actions.php
CHANGED
@@ -75,10 +75,10 @@ function hmbkp_option_save() {
|
|
75 |
if ( isset( $_POST['hmbkp_email_address'] ) ) {
|
76 |
|
77 |
foreach( array_filter( array_map( 'trim', explode( ',', $_POST['hmbkp_email_address'] ) ) ) as $email_address )
|
78 |
-
if ( ! is_email( $email_address ) )
|
79 |
-
$
|
80 |
|
81 |
-
if (
|
82 |
update_option( 'hmbkp_email_address', $_POST['hmbkp_email_address'] );
|
83 |
|
84 |
if ( isset( $_POST['hmbkp_email_address'] ) && empty( $_POST['hmbkp_email_address'] ) )
|
75 |
if ( isset( $_POST['hmbkp_email_address'] ) ) {
|
76 |
|
77 |
foreach( array_filter( array_map( 'trim', explode( ',', $_POST['hmbkp_email_address'] ) ) ) as $email_address )
|
78 |
+
if ( ! is_email( $email_address ) && $email_error = true )
|
79 |
+
$hmbkp_errors->add( 'invalid_email', sprintf( __( '%s is an invalid email address.', 'hmbkp' ), $email_address ) );
|
80 |
|
81 |
+
if ( empty( $email_error ) )
|
82 |
update_option( 'hmbkp_email_address', $_POST['hmbkp_email_address'] );
|
83 |
|
84 |
if ( isset( $_POST['hmbkp_email_address'] ) && empty( $_POST['hmbkp_email_address'] ) )
|
admin.backup-button.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php if ( hmbkp_in_progress() ) : ?>
|
2 |
|
3 |
-
<a id="hmbkp_backup" class="add-new-h2 hmbkp_running" href="tools.php?page=<?php echo HMBKP_PLUGIN_SLUG; ?>&action=hmbkp_cancel"><?php echo hmbkp_get_status(); ?> [cancel]</a>
|
4 |
|
5 |
<?php elseif ( hmbkp_possible() ) : ?>
|
6 |
|
1 |
<?php if ( hmbkp_in_progress() ) : ?>
|
2 |
|
3 |
+
<a id="hmbkp_backup" class="add-new-h2 hmbkp_running" href="tools.php?page=<?php echo HMBKP_PLUGIN_SLUG; ?>&action=hmbkp_cancel"><?php echo hmbkp_get_status(); ?> [<?php _e( 'cancel', 'hmbkp' ); ?>]</a>
|
4 |
|
5 |
<?php elseif ( hmbkp_possible() ) : ?>
|
6 |
|
admin.constants.php
CHANGED
@@ -1,6 +1,6 @@
|
|
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</code>', '<code>wp-config.php</code>', '<a href="http://codex.wordpress.org/Editing_wp-config.php">' . __( 'The Codex can help', 'hmbkp' ) . '</a>', '<code>Constants</code>' ); ?></p>
|
4 |
|
5 |
<dl>
|
6 |
|
@@ -20,10 +20,10 @@
|
|
20 |
<dd><p><?php printf( __( 'Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s.', 'hmbkp' ), '<code>(int) 10</code>' ); ?><p class="example">e.g. <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 %s only, your %s
|
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
|
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">e.g. <code>define( 'HMBKP_DAILY_SCHEDULE_TIME', '07:30' );</code></p></dd>
|
@@ -33,10 +33,13 @@
|
|
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">e.g. <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 %s. Defaults to %s.', 'hmbkp' ), '<code>add_menu_page</code>', '<code>manage_options</code>' ); ?><p class="example">e.g. <code>define( 'HMBKP_CAPABILITY', 'edit_posts' );</code></p></dd>
|
39 |
|
|
|
|
|
|
|
40 |
</dl>
|
41 |
|
42 |
</div>
|
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' ) , '</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 |
|
20 |
<dd><p><?php printf( __( 'Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s.', 'hmbkp' ), '<code>(int) 10</code>' ); ?><p class="example">e.g. <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 %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">e.g. <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 %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">e.g. <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">e.g. <code>define( 'HMBKP_DAILY_SCHEDULE_TIME', '07:30' );</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">e.g. <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 %s. Defaults to %s.', 'hmbkp' ), '<code>add_menu_page</code>', '<code>manage_options</code>' ); ?><p class="example">e.g. <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>ABSPATH</code>' ); ?><p class="example">e.g. <code>define( 'HMBKP_ROOT', ABSPATH . 'wp/' );</code></p></dd>
|
42 |
+
|
43 |
</dl>
|
44 |
|
45 |
</div>
|
admin.menus.php
CHANGED
@@ -48,37 +48,38 @@ add_filter('plugin_action_links', 'hmbkp_plugin_action_link', 10, 2 );
|
|
48 |
function hmbkp_contextual_help() {
|
49 |
|
50 |
require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
|
51 |
-
|
52 |
if ( ! $plugin = get_transient( 'hmbkp_plugin_data' ) ) {
|
53 |
|
54 |
$plugin = plugins_api( 'plugin_information', array( 'slug' => 'backupwordpress' ) );
|
55 |
-
|
56 |
// Cache for one day
|
57 |
set_transient( 'hmbkp_plugin_data', $plugin, 86400 );
|
58 |
-
|
59 |
}
|
60 |
-
|
61 |
$warning = '';
|
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>' . __( '
|
66 |
|
67 |
ob_start();
|
68 |
require_once( HMBKP_PLUGIN_PATH . '/admin.constants.php' );
|
69 |
$constants = ob_get_clean();
|
70 |
-
|
71 |
// Pre WordPress 3.3 compat
|
72 |
if ( ! method_exists( get_current_screen(), 'add_help_tab' ) )
|
73 |
return;
|
74 |
|
75 |
-
get_current_screen()->add_help_tab( array( 'title' => 'FAQ', 'id' => 'hmbkp_faq', 'content' => $warning . $plugin->sections['faq'] ) );
|
76 |
-
get_current_screen()->add_help_tab( array( 'title' => 'Constants', 'id' => 'hmbkp_constants', 'content' => $warning . $constants ) );
|
77 |
|
78 |
get_current_screen()->set_help_sidebar(
|
79 |
-
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
80 |
-
'<p
|
81 |
-
'<p
|
|
|
82 |
);
|
83 |
|
84 |
}
|
48 |
function hmbkp_contextual_help() {
|
49 |
|
50 |
require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
|
51 |
+
|
52 |
if ( ! $plugin = get_transient( 'hmbkp_plugin_data' ) ) {
|
53 |
|
54 |
$plugin = plugins_api( 'plugin_information', array( 'slug' => 'backupwordpress' ) );
|
55 |
+
|
56 |
// Cache for one day
|
57 |
set_transient( 'hmbkp_plugin_data', $plugin, 86400 );
|
58 |
+
|
59 |
}
|
60 |
+
|
61 |
$warning = '';
|
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 readme.txt file for help specific to version %s.', 'hmbkp' ) . '</p></div>', '<code>' . $plugin->version . '</code>', '<code>' . HMBKP_VERSION . '</code>' );
|
66 |
|
67 |
ob_start();
|
68 |
require_once( HMBKP_PLUGIN_PATH . '/admin.constants.php' );
|
69 |
$constants = ob_get_clean();
|
70 |
+
|
71 |
// Pre WordPress 3.3 compat
|
72 |
if ( ! method_exists( get_current_screen(), 'add_help_tab' ) )
|
73 |
return;
|
74 |
|
75 |
+
get_current_screen()->add_help_tab( array( 'title' => __( 'FAQ', 'hmbkp' ), 'id' => 'hmbkp_faq', 'content' => $warning . $plugin->sections['faq'] ) );
|
76 |
+
get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => $warning . $constants ) );
|
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 |
);
|
84 |
|
85 |
}
|
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
|
6 |
|
7 |
<form method="post">
|
8 |
|
@@ -91,7 +91,7 @@
|
|
91 |
|
92 |
</table>
|
93 |
|
94 |
-
<p class="submit"><input type="submit" name="hmbkp_settings_submit" id="submit" class="button-primary" value="Save Changes"></p>
|
95 |
|
96 |
</form>
|
97 |
|
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 |
|
91 |
|
92 |
</table>
|
93 |
|
94 |
+
<p class="submit"><input type="submit" name="hmbkp_settings_submit" id="submit" class="button-primary" value="<?php _e( 'Save Changes', 'hmbkp' ); ?>"></p>
|
95 |
|
96 |
</form>
|
97 |
|
backupwordpress.mo
ADDED
Binary file
|
backupwordpress.po
ADDED
@@ -0,0 +1,471 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: BackUpWordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-01 15:16+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-05-01 15:16+0100\n"
|
7 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
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.actions.php:70
|
19 |
+
msgid "You have entered an invalid number of backups."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: admin.actions.php:79
|
23 |
+
#, php-format
|
24 |
+
msgid "%s is an invalid email address."
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: admin.actions.php:249
|
28 |
+
#: functions/interface.functions.php:89
|
29 |
+
#: functions/interface.functions.php:99
|
30 |
+
#: functions/interface.functions.php:109
|
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.actions.php:249
|
39 |
+
#, php-format
|
40 |
+
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."
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: admin.backup-button.php:3
|
44 |
+
msgid "cancel"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: admin.backup-button.php:7
|
48 |
+
msgid "Back Up Now"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: admin.backups-table.php:13
|
52 |
+
msgid "Size"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: admin.backups-table.php:14
|
56 |
+
msgid "Actions"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: admin.backups-table.php:21
|
60 |
+
#, php-format
|
61 |
+
msgid "Total %s"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: admin.constants.php:3
|
65 |
+
#, php-format
|
66 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: admin.constants.php:3
|
70 |
+
#: admin.menus.php:76
|
71 |
+
#: admin.settings.php:5
|
72 |
+
msgid "Constants"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin.constants.php:3
|
76 |
+
msgid "The Codex can help"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: admin.constants.php:8
|
80 |
+
#, php-format
|
81 |
+
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
82 |
+
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
|
90 |
+
#: admin.constants.php:14
|
91 |
+
#: admin.constants.php:23
|
92 |
+
#: admin.constants.php:26
|
93 |
+
#: admin.status.php:14
|
94 |
+
#: admin.status.php:17
|
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:20
|
108 |
+
msgid "files"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: admin.constants.php:17
|
112 |
+
#, php-format
|
113 |
+
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
114 |
+
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. Detaults to %s."
|
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
|
128 |
+
#, php-format
|
129 |
+
msgid "The time that the daily back up should run. Defaults to %s."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: admin.constants.php:32
|
133 |
+
#, php-format
|
134 |
+
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin.constants.php:35
|
138 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
139 |
+
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.menus.php:10
|
147 |
+
#: admin.page.php:7
|
148 |
+
msgid "Manage Backups"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: admin.menus.php:10
|
152 |
+
#: admin.menus.php:34
|
153 |
+
msgid "Backups"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: admin.menus.php:65
|
157 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
158 |
+
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
|
166 |
+
msgid "FAQ"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin.menus.php:79
|
170 |
+
msgid "For more information:"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: admin.menus.php:81
|
174 |
+
msgid "Support Forums"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: admin.menus.php:82
|
178 |
+
msgid "Help with translation"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: admin.page.php:11
|
182 |
+
#: admin.settings.php:3
|
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 |
+
#: admin.page.php:29
|
191 |
+
#, php-format
|
192 |
+
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."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: admin.settings.php:5
|
196 |
+
#, php-format
|
197 |
+
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."
|
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.settings.php:22
|
209 |
+
msgid "Backup my site automatically."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin.settings.php:27
|
213 |
+
msgid "No automatic backups."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: admin.settings.php:36
|
217 |
+
msgid "Frequency of backups"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin.settings.php:40
|
221 |
+
msgid "Automatic backups will occur"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: admin.settings.php:43
|
225 |
+
msgid "Daily"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: admin.settings.php:44
|
229 |
+
msgid "Weekly"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: admin.settings.php:45
|
233 |
+
msgid "Fortnightly"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: admin.settings.php:46
|
237 |
+
msgid "Monthly"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: admin.settings.php:55
|
241 |
+
msgid "What to Backup"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: admin.settings.php:59
|
245 |
+
msgid "Backup my"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: admin.settings.php:62
|
249 |
+
msgid "database & files"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: admin.settings.php:63
|
253 |
+
msgid "database only"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: admin.settings.php:64
|
257 |
+
msgid "files only"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: admin.settings.php:72
|
261 |
+
msgid "Number of backups"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: admin.settings.php:73
|
265 |
+
#, php-format
|
266 |
+
msgid "The last %s backups will be stored on the server."
|
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 |
+
#: admin.status.php:9
|
294 |
+
#, php-format
|
295 |
+
msgid "Automatic backups are %s."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.status.php:9
|
299 |
+
msgid "disabled"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin.status.php:14
|
303 |
+
msgid "&"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin.status.php:25
|
307 |
+
#, php-format
|
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 |
+
#: admin.status.php:25
|
312 |
+
#, php-format
|
313 |
+
msgid "It's currently %s"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin.status.php:31
|
317 |
+
#, php-format
|
318 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: admin.status.php:31
|
322 |
+
msgid "Calculating Size..."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: admin.status.php:34
|
326 |
+
#, php-format
|
327 |
+
msgid "A copy of each backup will be emailed to %s."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: admin.status.php:38
|
331 |
+
#, php-format
|
332 |
+
msgid "The following paths will be excluded from your backups %s."
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: plugin.php:47
|
336 |
+
msgid "BackUpWordPress requires PHP version 5.2.4 or greater."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: plugin.php:58
|
340 |
+
#, php-format
|
341 |
+
msgid "BackUpWordPress requires WordPress version %s."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: functions/backup.actions.php:12
|
345 |
+
msgid "Dumping database"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: functions/backup.actions.php:22
|
349 |
+
msgid "Creating zip archive"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: functions/backup.functions.php:19
|
353 |
+
msgid "Removing old backups"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: functions/backup.functions.php:147
|
357 |
+
#: functions/backup.functions.php:157
|
358 |
+
#, php-format
|
359 |
+
msgid "Backup of %s"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: functions/backup.functions.php:148
|
363 |
+
#, php-format
|
364 |
+
msgid ""
|
365 |
+
"BackUpWordPress has completed a backup of your site %s.\n"
|
366 |
+
"\n"
|
367 |
+
"The backup file should be attached to this email.\n"
|
368 |
+
"\n"
|
369 |
+
"You can also download the backup file by clicking the link below:\n"
|
370 |
+
"\n"
|
371 |
+
"%s\n"
|
372 |
+
"\n"
|
373 |
+
"Kind Regards\n"
|
374 |
+
"\n"
|
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.\n"
|
382 |
+
"\n"
|
383 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
384 |
+
"\n"
|
385 |
+
"You can download the backup file by clicking the link below:\n"
|
386 |
+
"\n"
|
387 |
+
"%s\n"
|
388 |
+
"\n"
|
389 |
+
"Kind Regards\n"
|
390 |
+
"\n"
|
391 |
+
" The Happy BackUpWordPress Backup Emailing Robot"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: functions/core.functions.php:339
|
395 |
+
#, php-format
|
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 |
+
|
functions/core.functions.php
CHANGED
@@ -336,7 +336,7 @@ function hmbkp_path() {
|
|
336 |
// Secure the directory with a .htaccess file
|
337 |
$htaccess = $path . '/.htaccess';
|
338 |
|
339 |
-
$contents[] = '# ' . __( 'This
|
340 |
$contents[] = '';
|
341 |
$contents[] = '<IfModule mod_rewrite.c>';
|
342 |
$contents[] = 'RewriteEngine On';
|
336 |
// Secure the directory with a .htaccess file
|
337 |
$htaccess = $path . '/.htaccess';
|
338 |
|
339 |
+
$contents[] = '# ' . sprintf( __( 'This %s file ensures that other people cannot download your backup files.', 'hmbkp' ), '.htaccess' );
|
340 |
$contents[] = '';
|
341 |
$contents[] = '<IfModule mod_rewrite.c>';
|
342 |
$contents[] = 'RewriteEngine On';
|
functions/interface.functions.php
CHANGED
@@ -43,11 +43,11 @@ function hmbkp_admin_notices() {
|
|
43 |
// Display notifications for any errors in the settings form.
|
44 |
if ( ! empty( $_POST['hmbkp_settings_submit'] ) ) :
|
45 |
|
46 |
-
function hmbkp_advanced_settings_saved() {
|
47 |
|
48 |
-
|
49 |
|
50 |
-
global $hmbkp_errors;
|
51 |
|
52 |
if ( ! empty( $hmbkp_errors ) && $hmbkp_errors->get_error_code() )
|
53 |
foreach( $hmbkp_errors->get_error_messages() as $hmbkp_error )
|
43 |
// Display notifications for any errors in the settings form.
|
44 |
if ( ! empty( $_POST['hmbkp_settings_submit'] ) ) :
|
45 |
|
46 |
+
function hmbkp_advanced_settings_saved() { ?>
|
47 |
|
48 |
+
<div id="setting-error-settings_updated" class="updated settings-error"><p><strong><?php _e( 'Settings saved.', 'hmbkp' ); ?></strong></p></div>
|
49 |
|
50 |
+
<?php global $hmbkp_errors;
|
51 |
|
52 |
if ( ! empty( $hmbkp_errors ) && $hmbkp_errors->get_error_code() )
|
53 |
foreach( $hmbkp_errors->get_error_messages() as $hmbkp_error )
|
languages/hmbkp-es_ES.mo
CHANGED
Binary file
|
languages/hmbkp-es_ES.po
CHANGED
@@ -1,79 +1,338 @@
|
|
1 |
-
#
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/backupwordpress\n"
|
7 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
8 |
-
"POT-Creation-Date: 2011-07-11 15:40:57+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
|
19 |
-
#: admin.
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
#:
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid "BackUpWordPress has detected a problem."
|
28 |
msgstr "BackUpWordPress ha detectado un problema."
|
29 |
|
30 |
-
#: admin.actions.php:
|
31 |
-
msgid "%s is returning a %s response which could mean cron jobs aren't getting fired properly. BackUpWordPress relies on wp-cron to run back ups
|
32 |
-
msgstr "%s esta devolviendo una respuesta %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
|
33 |
|
34 |
-
#: admin.
|
35 |
-
msgid "
|
36 |
-
|
37 |
-
msgstr[0] "una copia completada"
|
38 |
-
msgstr[1] "%s copias completadas"
|
39 |
|
40 |
-
#: admin.backups-table.php:
|
41 |
msgid "Size"
|
42 |
msgstr "Tamaño"
|
43 |
|
44 |
-
#: admin.backups-table.php:
|
45 |
msgid "Actions"
|
46 |
msgstr "Acciones"
|
47 |
|
48 |
#: admin.backups-table.php:21
|
49 |
-
msgid "Only the most recent backup will be saved"
|
50 |
-
msgid_plural "The %d most recent backups will be saved"
|
51 |
-
msgstr[0] "Se guardará sólo la copia más reciente"
|
52 |
-
msgstr[1] "Se guardarán sólo %d copias más recientes"
|
53 |
-
|
54 |
-
#: admin.backups-table.php:22
|
55 |
-
#, fuzzy
|
56 |
msgid "Total %s"
|
57 |
-
msgstr "%s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
#: functions/backup.
|
60 |
msgid "Dumping database"
|
61 |
msgstr "Guardando la base de datos"
|
62 |
|
63 |
-
#: functions/backup.
|
64 |
msgid "Creating zip archive"
|
65 |
msgstr "Creando archivo zip"
|
66 |
|
67 |
-
#: functions/backup.functions.php:
|
68 |
msgid "Removing old backups"
|
69 |
msgstr "Borrando copias antiguas"
|
70 |
|
71 |
-
#: functions/backup.functions.php:
|
72 |
-
#: functions/backup.functions.php:
|
73 |
msgid "Backup of %s"
|
74 |
msgstr "Copia de %s"
|
75 |
|
76 |
-
#: functions/backup.functions.php:
|
77 |
msgid ""
|
78 |
"BackUpWordPress has completed a backup of your site %s.\n"
|
79 |
"\n"
|
@@ -87,7 +346,7 @@ msgid ""
|
|
87 |
"\n"
|
88 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
89 |
msgstr ""
|
90 |
-
"BackUpWordpress ha completado una copia de seguridad de tu
|
91 |
"\n"
|
92 |
"El archivo de copia de seguridad se encuentra adjunto a este correo electrónico.\n"
|
93 |
"\n"
|
@@ -97,9 +356,9 @@ msgstr ""
|
|
97 |
"\n"
|
98 |
"Un saludo\n"
|
99 |
"\n"
|
100 |
-
"El feliz robot de BackUpWordPress
|
101 |
|
102 |
-
#: functions/backup.functions.php:
|
103 |
msgid ""
|
104 |
"BackUpWordPress has completed a backup of your site %s.\n"
|
105 |
"\n"
|
@@ -113,231 +372,82 @@ msgid ""
|
|
113 |
"\n"
|
114 |
" The Happy BackUpWordPress Backup Emailing Robot"
|
115 |
msgstr ""
|
116 |
-
"BackUpWordpress ha completado una copia de seguridad de tu
|
117 |
"\n"
|
118 |
-
"Desafortunadamente el archivo de copia de seguridad creado es demasiado
|
119 |
"\n"
|
120 |
"%s\n"
|
121 |
"\n"
|
122 |
"Un saludo\n"
|
123 |
"\n"
|
124 |
-
"El feliz robot de BackUpWordPress
|
125 |
|
126 |
-
#: functions/interface.functions.php:
|
127 |
msgid "Download"
|
128 |
msgstr "Descarga"
|
129 |
|
130 |
-
#: functions/interface.functions.php:
|
131 |
msgid "Delete"
|
132 |
msgstr "Borrar"
|
133 |
|
134 |
-
#: functions/interface.functions.php:
|
135 |
-
#: functions/interface.functions.php:
|
136 |
-
#, fuzzy
|
137 |
msgid "BackUpWordPress is almost ready."
|
138 |
-
msgstr "BackUpWordPress
|
139 |
|
140 |
-
#: functions/interface.functions.php:
|
141 |
msgid "The backups directory can't be created because your %s directory isn't writable, run %s or %s or create the folder yourself."
|
142 |
-
msgstr "El directorio de copias de seguridad no se pudo crear porque tu directorio %s no
|
143 |
|
144 |
-
#: functions/interface.functions.php:
|
145 |
msgid "Your backups directory isn't writable. run %s or %s or set the permissions yourself."
|
146 |
msgstr "El directorio de tus copias de seguridad no tiene permiso de escritura, ejecuta %s o %s o configura los permisos tu mismo."
|
147 |
|
148 |
-
#: functions/interface.functions.php:
|
149 |
-
#, fuzzy
|
150 |
msgid " %s is running in %s. Please contact your host and ask them to disable %s."
|
151 |
-
msgstr "%s se está ejecutando en %s. Por favor contacta con tu administrador de alojamiento para que pare el proceso %s."
|
152 |
|
153 |
-
#: functions/interface.functions.php:
|
154 |
msgid "You have both %s and %s defined so there isn't anything to back up."
|
155 |
msgstr "Tienes %s y %s definidos - no hay archivos para hacer copias de seguridad."
|
156 |
|
157 |
-
#: functions/interface.functions.php:
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: functions/interface.functions.php:
|
162 |
-
msgid "The last backup email failed to send."
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: functions/interface.functions.php:
|
166 |
msgid "Your custom backups directory %s doesn't exist and can't be created, your backups will be saved to %s instead."
|
167 |
-
msgstr "No existe
|
168 |
|
169 |
-
#: functions/interface.functions.php:
|
170 |
msgid "Your custom backups directory %s isn't writable, new backups will be saved to %s instead."
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: functions/interface.functions.php:
|
174 |
msgid "You have defined a custom exclude list but the following paths don't exist %s, are you sure you entered them correctly?"
|
175 |
msgstr "Has definido la lista de exclusión personalizada pero las rutas %s no existen; ¿estás seguro de que las escribiste correctamente?"
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
-
|
181 |
-
#: admin.status.php:5
|
182 |
-
msgid "disabled"
|
183 |
-
msgstr "desactivado"
|
184 |
-
|
185 |
-
#: admin.status.php:10
|
186 |
-
#: admin.status.php:13
|
187 |
-
#: admin.status.php:35
|
188 |
-
#: admin.advanced-options.php:13
|
189 |
-
#: admin.advanced-options.php:16
|
190 |
-
#: admin.advanced-options.php:25
|
191 |
-
#: admin.advanced-options.php:28
|
192 |
-
msgid "database"
|
193 |
-
msgstr "base de datos"
|
194 |
-
|
195 |
-
#: admin.status.php:10
|
196 |
-
msgid "&"
|
197 |
-
msgstr "&"
|
198 |
-
|
199 |
-
#: admin.status.php:10
|
200 |
-
#: admin.status.php:16
|
201 |
-
#: admin.status.php:31
|
202 |
-
#: admin.advanced-options.php:16
|
203 |
-
#: admin.advanced-options.php:25
|
204 |
-
#: admin.advanced-options.php:28
|
205 |
-
msgid "files"
|
206 |
-
msgstr "archivos"
|
207 |
-
|
208 |
-
#: admin.status.php:18
|
209 |
-
#, fuzzy
|
210 |
-
msgid "Your %s will be automatically backed up every day at %s to %s."
|
211 |
-
msgstr "La copia de tus %s se guardarán automáticamente cada día a las %s a %s."
|
212 |
-
|
213 |
-
#: admin.status.php:18
|
214 |
-
#, fuzzy
|
215 |
-
msgid "It's currently %s on the server."
|
216 |
-
msgstr "En este momento es %s en el servidor."
|
217 |
-
|
218 |
-
#: admin.status.php:22
|
219 |
-
#, fuzzy
|
220 |
-
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
221 |
-
msgstr "Tu sitio web pesa %s. Las copias de seguridad serán comprimidas y deberían pesar menos."
|
222 |
-
|
223 |
-
#: admin.status.php:22
|
224 |
-
msgid "Calculating Size..."
|
225 |
-
msgstr "Calculando el tamaño..."
|
226 |
-
|
227 |
-
#: admin.status.php:25
|
228 |
-
#, fuzzy
|
229 |
-
msgid "%s is disabled which means we have to use the slower PHP fallbacks, you could try contacting your host and asking them to enable it."
|
230 |
-
msgstr "%s está desactivado y eso significa que tenemos que utilizar procesos PHP más lentos; podrías contactar con tu servicio de alojamiento y pedirles que lo desactiven."
|
231 |
-
|
232 |
-
#: admin.status.php:31
|
233 |
-
#: admin.status.php:35
|
234 |
-
msgid "Your %s will be backed up using %s."
|
235 |
-
msgstr "Tus %s se copiarán usando %s."
|
236 |
-
|
237 |
-
#: admin.status.php:41
|
238 |
-
msgid "A copy of each backup will be emailed to %s."
|
239 |
-
msgstr "Una de copia de seguridad será enviada por correo electrónico a %s."
|
240 |
-
|
241 |
-
#: admin.status.php:45
|
242 |
-
msgid "The following paths will be excluded from your backups %s."
|
243 |
-
msgstr "Las siguientes rutas se excluirán de tu copias de seguridad %s."
|
244 |
-
|
245 |
-
#: admin.page.php:7
|
246 |
-
#: admin.menus.php:8
|
247 |
-
msgid "Manage Backups"
|
248 |
-
msgstr "Gestionar copias de seguridad"
|
249 |
-
|
250 |
-
#: admin.page.php:13
|
251 |
-
#: admin.page.php:16
|
252 |
-
msgid "Back Up Now"
|
253 |
-
msgstr "Hacer copia de seguridad ahora"
|
254 |
-
|
255 |
-
#: admin.page.php:20
|
256 |
-
#: admin.advanced-options.php:3
|
257 |
-
msgid "Advanced Options"
|
258 |
-
msgstr "Opciones avanzadas"
|
259 |
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#:
|
269 |
-
|
270 |
-
|
271 |
-
msgstr "Copias de seguridad"
|
272 |
|
273 |
-
#:
|
274 |
-
msgid "You are not using the latest stable version of BackUpWordPress"
|
275 |
-
msgstr "No estás usando la versión más reciente y estable de BackUpWordPress"
|
276 |
-
|
277 |
-
#: admin.menus.php:53
|
278 |
-
msgid " — The information below is for version %s. View the readme.txt file for help specific to version %s."
|
279 |
-
msgstr "— La información indicada abajo es para la versión %s. Lea el archivo readme.txt para ayuda especifica para la versión %s."
|
280 |
-
|
281 |
-
#: plugin.php:42
|
282 |
msgid "BackUpWordPress requires WordPress version %s."
|
283 |
msgstr "BackUpWordPress requiere la versión %s de Wordpress."
|
284 |
|
285 |
-
#: admin.advanced-options.php:5
|
286 |
-
#, fuzzy
|
287 |
-
msgid "You can %s any of the following %s in your %s to control advanced options. %s. Defined %s will be highlighted."
|
288 |
-
msgstr "Puedes %s cualquiera de los %s en tu %s para controlar opciones avanzadas. %s. %s definidos se verán destacados."
|
289 |
-
|
290 |
-
#: admin.advanced-options.php:5
|
291 |
-
msgid "The Codex can help"
|
292 |
-
msgstr "Busca ayuda en el Codex"
|
293 |
-
|
294 |
-
#: admin.advanced-options.php:10
|
295 |
-
msgid "The path to folder you would like to store your backup files in, defaults to %s."
|
296 |
-
msgstr "La ruta al directorio en el que deseas guardar tus copias de seguridad será por defecto &s."
|
297 |
-
|
298 |
-
#: admin.advanced-options.php:13
|
299 |
-
#, fuzzy
|
300 |
-
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
301 |
-
msgstr "La ruta hacia tu %s ejecutable se utilizará para la parte %s de la copia de seguridad si disponible."
|
302 |
-
|
303 |
-
#: admin.advanced-options.php:16
|
304 |
-
#, fuzzy
|
305 |
-
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
306 |
-
msgstr "La ruta hacia tu %s ejecutable se utilizará para hacer el archivo zip de tu %s y %s si está disponible."
|
307 |
-
|
308 |
-
#: admin.advanced-options.php:19
|
309 |
-
#, fuzzy
|
310 |
-
msgid "Completely disables the automatic back up. You can still back up using the \"Back Up Now\" button. Defaults to %s."
|
311 |
-
msgstr "Desactiva completamente las copias automáticas. Podrás hacer copiar de seguridad de todas maneras utilizando el botón \"Back Up Now\". Por defecto a %s."
|
312 |
-
|
313 |
-
#: admin.advanced-options.php:22
|
314 |
-
#, fuzzy
|
315 |
-
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
316 |
-
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. Por defecto a %s."
|
317 |
-
|
318 |
-
#: admin.advanced-options.php:25
|
319 |
-
#: admin.advanced-options.php:28
|
320 |
-
#, fuzzy
|
321 |
-
msgid "Backup %s only, your %s will %s be backed up. Defaults to %s."
|
322 |
-
msgstr "Solamente copias %s; tu %s será %s copiado. Por defecto a %s."
|
323 |
-
|
324 |
-
#: admin.advanced-options.php:25
|
325 |
-
#: admin.advanced-options.php:28
|
326 |
-
msgid "not"
|
327 |
-
msgstr "no"
|
328 |
-
|
329 |
-
#: admin.advanced-options.php:31
|
330 |
-
#, fuzzy
|
331 |
-
msgid "The time that the daily back up should run. Defaults to %s."
|
332 |
-
msgstr "La hora a la que se creará la copia diaria. Por defecto a %s."
|
333 |
-
|
334 |
-
#: admin.advanced-options.php:34
|
335 |
-
#, fuzzy
|
336 |
-
msgid "Attempt to email a copy of your backups. Value should be email address to send backups to. Defaults to %s."
|
337 |
-
msgstr "Intento a mandar un correo con tu copia de de seguridad a la dirección especificada. Por defecto al %s."
|
338 |
-
|
339 |
-
#: admin.advanced-options.php:37
|
340 |
-
#, fuzzy
|
341 |
-
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
342 |
-
msgstr "Listado de archivos o directorios para excluir de la copia de seguridad separados por coma."
|
343 |
-
|
1 |
+
# Translation of 1.6.8 in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-05-09 15:29+0100\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 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
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.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr "La información abajo es válida para la versión %s. Consulta el archivo readme.txt para ayuda especifica para la versión %s."
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
34 |
+
msgid "FAQ"
|
35 |
+
msgstr "Preguntas frecuentes"
|
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:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr "Guardar los cambios"
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr "El archivo %s de seguridad hace que otras personas no pueden descargar tus copias de seguridad."
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr "Configuración guardada."
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr "Has introducido un número de copias de seguridad no válido."
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr "%s no es una dirección de correo valida."
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
88 |
+
msgstr "%s esta devolviendo una respuesta %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 %s para más información."
|
89 |
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Hacer copia de seguridad ahora"
|
|
|
|
|
93 |
|
94 |
+
#: admin.backups-table.php:13
|
95 |
msgid "Size"
|
96 |
msgstr "Tamaño"
|
97 |
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr "Puedes %s cualquiera de los %s en tu %s para controlar opciones avanzadas. %s. %s establecidas verán destacadas."
|
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr "La ruta hacia tu %s ejecutable. Se utilizará para la parte %s de la copia de seguridad si está disponible."
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "base de datos"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
133 |
+
msgstr "La ruta hacia tu %s ejecutable. Se utilizará para hacer el archivo zip de tu %s y %s si está disponible."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
161 |
+
msgstr "Listado de archivos o directorios para excluir de la copia de seguridad separados por coma."
|
162 |
+
|
163 |
+
#: admin.constants.php:38
|
164 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr "Capacidad que se usa al llamar %s. Valor predeterminado es %s."
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Gestionar copias de seguridad"
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Copias de seguridad"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
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.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
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.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr "Excluir"
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr "Lista de archivos y rutas de carpetas que <strong>no</strong> deseas incluir en la copia de seguridad."
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr "por ejemplo"
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Las copias automáticas están %s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "desactivadas"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr "&"
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr "Tus %s se incluirán en la copia de seguridad automática <code>%s</code>. La siguiente copia de seguridad se producirá a las %s el %s y se guardará en %s."
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr "Actualmente son %s"
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
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:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Calculando el tamaño..."
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
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:38
|
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"
|
321 |
|
322 |
+
#: functions/backup.actions.php:22
|
323 |
msgid "Creating zip archive"
|
324 |
msgstr "Creando archivo zip"
|
325 |
|
326 |
+
#: functions/backup.functions.php:19
|
327 |
msgid "Removing old backups"
|
328 |
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.\n"
|
338 |
"\n"
|
346 |
"\n"
|
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"
|
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.\n"
|
364 |
"\n"
|
372 |
"\n"
|
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/interface.functions.php:25
|
386 |
msgid "Download"
|
387 |
msgstr "Descarga"
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/hmbkp-fr_FR.mo
ADDED
Binary file
|
languages/hmbkp-fr_FR.po
ADDED
@@ -0,0 +1,455 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 1.6.8 in French (France)
|
2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-05-08 14:39+0100\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 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
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.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr "Les informations qui suivent concernent la version %s. Lisez le fichier readme.txt pour une aide spécifique à la version %s."
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
34 |
+
msgid "FAQ"
|
35 |
+
msgstr "FAQ"
|
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:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr "Sauver les modifications"
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr "Ce fichier %s garanti qu'aucune autre personne ne peut télécharger vos sauvegardes."
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr "Modifications enregistrées"
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr "Vous avez saisi un nombre de sauvegarde invalide."
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr "%s est une adresse de courriel invalide."
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
88 |
+
msgstr "%s a renvoyé la réponse %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 %s pour plus de détails."
|
89 |
+
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Sauvegarder maintenant"
|
93 |
+
|
94 |
+
#: admin.backups-table.php:13
|
95 |
+
msgid "Size"
|
96 |
+
msgstr "Taille"
|
97 |
+
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr "Vous pouvez %s chacun des éléments suivants %s dans votre %s pour contrôler les options avancées. %s. Le %s défini sera mis en évidence."
|
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr "Chemin vers votre exécutable %s. Il sera utilisé pour réaliser la partie %s de la sauvegarde s'il est disponible."
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "base de données"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
133 |
+
msgstr "Chemin vers votre exécutable %s. Il sera utilisé pour compresser vos %s et votre %s s'il est disponible."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
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 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr "Capacité à utiliser lors de l'appel à %s. La valeur par défaut est %s."
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Gestion des sauvegardes"
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Sauvegardes"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
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.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
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.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr "Exclusions"
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr "Liste de fichiers ou de répertoires, séparés par des virgules, que vous ne voulez <strong>pas</strong> sauvegarder."
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr "exemple :"
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Les sauvegardes automatiques sont %s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "désactivé"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr "&"
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr "La sauvegarde %s sera effectuée automatiquement <code>%s</code>. La prochaine aura lieu à %s le %s et sera sauvegardé sous %s."
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr "Il est actuellement %s"
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
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:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Calcul du volume ..."
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
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:38
|
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"
|
321 |
+
|
322 |
+
#: functions/backup.actions.php:22
|
323 |
+
msgid "Creating zip archive"
|
324 |
+
msgstr "Création de l'archive ZIP"
|
325 |
+
|
326 |
+
#: functions/backup.functions.php:19
|
327 |
+
msgid "Removing old backups"
|
328 |
+
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.\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 |
+
"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.\n"
|
364 |
+
"\n"
|
365 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
366 |
+
"\n"
|
367 |
+
"You can download the backup file by clicking the link below:\n"
|
368 |
+
"\n"
|
369 |
+
"%s\n"
|
370 |
+
"\n"
|
371 |
+
"Kind Regards\n"
|
372 |
+
"\n"
|
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/interface.functions.php:25
|
388 |
+
msgid "Download"
|
389 |
+
msgstr "Téléchargement"
|
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 |
+
|
languages/hmbkp-lt_LT.mo
ADDED
Binary file
|
languages/hmbkp-lt_LT.po
ADDED
@@ -0,0 +1,455 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-05-08 14:39+0100\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 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
17 |
+
msgid "Help with translation"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: admin.backup-button.php:3
|
21 |
+
msgid "cancel"
|
22 |
+
msgstr ""
|
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 ""
|
28 |
+
|
29 |
+
#: admin.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
34 |
+
msgid "FAQ"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: admin.constants.php:3
|
38 |
+
#: admin.menus.php:76
|
39 |
+
#: admin.settings.php:5
|
40 |
+
msgid "Constants"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: admin.menus.php:81
|
44 |
+
msgid "Support Forums"
|
45 |
+
msgstr ""
|
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 ""
|
54 |
+
|
55 |
+
#: admin.settings.php:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Kurti Atsarginę kopiją Dabar"
|
93 |
+
|
94 |
+
#: admin.backups-table.php:13
|
95 |
+
msgid "Size"
|
96 |
+
msgstr "Dydis"
|
97 |
+
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin.constants.php:3
|
111 |
+
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr "Adresas į Jūsų %s yra vykdomasis. Jis bus naudojamas %s atsarginės kopijos daliai, jeigu tik tai bus įmanoma."
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "duomenų bazė"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
133 |
+
msgstr "Adresas į Jūsų %s yra vykdomasis. Jis bus naudojamas suspaudžiant Jūsų %s ir %s, jeigu tik bus įmanoma."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
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 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Valdyti Atsargines kopijas"
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Atsarginės kopijos"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
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:79
|
182 |
+
msgid "For more information:"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: admin.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: admin.page.php:23
|
191 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
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.settings.php:22
|
203 |
+
msgid "Backup my site automatically."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin.settings.php:27
|
207 |
+
msgid "No automatic backups."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin.settings.php:36
|
211 |
+
msgid "Frequency of backups"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin.settings.php:40
|
215 |
+
msgid "Automatic backups will occur"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: admin.settings.php:43
|
219 |
+
msgid "Daily"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin.settings.php:44
|
223 |
+
msgid "Weekly"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin.settings.php:45
|
227 |
+
msgid "Fortnightly"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin.settings.php:46
|
231 |
+
msgid "Monthly"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: admin.settings.php:55
|
235 |
+
msgid "What to Backup"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin.settings.php:59
|
239 |
+
msgid "Backup my"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin.settings.php:62
|
243 |
+
msgid "database & files"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin.settings.php:63
|
247 |
+
msgid "database only"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin.settings.php:64
|
251 |
+
msgid "files only"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin.settings.php:72
|
255 |
+
msgid "Number of backups"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin.settings.php:73
|
259 |
+
msgid "The last %s backups will be stored on the server."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin.settings.php:77
|
263 |
+
msgid "Email backups"
|
264 |
+
msgstr ""
|
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 ""
|
269 |
+
|
270 |
+
#: admin.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Automatinių atsarginių kopijų kūrimas yra %s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "išjungtas"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr "&"
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
303 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
304 |
+
msgstr "Jūsų tinklalapis yra %s. Atsarginės kopijos bus suspaustos ir turėtų būti mažesnės nei tai."
|
305 |
+
|
306 |
+
#: admin.status.php:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Skaičiuojamas Dydis..."
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
311 |
+
msgid "A copy of each backup will be emailed to %s."
|
312 |
+
msgstr "Kiekvienos atsarginės kopijos kopija bus išsiųsta elektroniniu paštu %s."
|
313 |
+
|
314 |
+
#: admin.status.php:38
|
315 |
+
msgid "The following paths will be excluded from your backups %s."
|
316 |
+
msgstr "Šie adresai bus išskirti iš Jūsų atsarginių kopijų %s."
|
317 |
+
|
318 |
+
#: functions/backup.actions.php:12
|
319 |
+
msgid "Dumping database"
|
320 |
+
msgstr "Duomenų bazės iškrovimas"
|
321 |
+
|
322 |
+
#: functions/backup.actions.php:22
|
323 |
+
msgid "Creating zip archive"
|
324 |
+
msgstr "Kuriamas zip archyvas"
|
325 |
+
|
326 |
+
#: functions/backup.functions.php:19
|
327 |
+
msgid "Removing old backups"
|
328 |
+
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.\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 |
+
"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.\n"
|
364 |
+
"\n"
|
365 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
366 |
+
"\n"
|
367 |
+
"You can download the backup file by clicking the link below:\n"
|
368 |
+
"\n"
|
369 |
+
"%s\n"
|
370 |
+
"\n"
|
371 |
+
"Kind Regards\n"
|
372 |
+
"\n"
|
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/interface.functions.php:25
|
388 |
+
msgid "Download"
|
389 |
+
msgstr "Parsisiųsti"
|
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 |
+
|
languages/hmbkp-ro_RO.mo
ADDED
Binary file
|
languages/hmbkp-ro_RO.po
ADDED
@@ -0,0 +1,453 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 1.6.8 in Romanian
|
2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-05-08 14:39+0100\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: 1.6.8\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
17 |
+
msgid "Help with translation"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: admin.backup-button.php:3
|
21 |
+
msgid "cancel"
|
22 |
+
msgstr ""
|
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 ""
|
28 |
+
|
29 |
+
#: admin.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
34 |
+
msgid "FAQ"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: admin.constants.php:3
|
38 |
+
#: admin.menus.php:76
|
39 |
+
#: admin.settings.php:5
|
40 |
+
msgid "Constants"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: admin.menus.php:81
|
44 |
+
msgid "Support Forums"
|
45 |
+
msgstr ""
|
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 ""
|
54 |
+
|
55 |
+
#: admin.settings.php:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Rezervă acum"
|
93 |
+
|
94 |
+
#: admin.backups-table.php:13
|
95 |
+
msgid "Size"
|
96 |
+
msgstr "Dimensiunea"
|
97 |
+
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin.constants.php:3
|
111 |
+
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr ""
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "baza de date"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: admin.constants.php:38
|
164 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Gestionaţi backup-uri"
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Copii de rezervă"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
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:79
|
182 |
+
msgid "For more information:"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: admin.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: admin.page.php:23
|
191 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
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.settings.php:22
|
203 |
+
msgid "Backup my site automatically."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin.settings.php:27
|
207 |
+
msgid "No automatic backups."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin.settings.php:36
|
211 |
+
msgid "Frequency of backups"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin.settings.php:40
|
215 |
+
msgid "Automatic backups will occur"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: admin.settings.php:43
|
219 |
+
msgid "Daily"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin.settings.php:44
|
223 |
+
msgid "Weekly"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin.settings.php:45
|
227 |
+
msgid "Fortnightly"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin.settings.php:46
|
231 |
+
msgid "Monthly"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: admin.settings.php:55
|
235 |
+
msgid "What to Backup"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin.settings.php:59
|
239 |
+
msgid "Backup my"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin.settings.php:62
|
243 |
+
msgid "database & files"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin.settings.php:63
|
247 |
+
msgid "database only"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin.settings.php:64
|
251 |
+
msgid "files only"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin.settings.php:72
|
255 |
+
msgid "Number of backups"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin.settings.php:73
|
259 |
+
msgid "The last %s backups will be stored on the server."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin.settings.php:77
|
263 |
+
msgid "Email backups"
|
264 |
+
msgstr ""
|
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 ""
|
269 |
+
|
270 |
+
#: admin.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Copierea de rezervă sunt % s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "dezactivat"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
303 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin.status.php:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Calculul dimensiunea..."
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
311 |
+
msgid "A copy of each backup will be emailed to %s."
|
312 |
+
msgstr "O copie de rezervă fiecare va fi trimis la % s."
|
313 |
+
|
314 |
+
#: admin.status.php:38
|
315 |
+
msgid "The following paths will be excluded from your backups %s."
|
316 |
+
msgstr "Următoarele căi vor fi excluşi din copiile de rezervă % s."
|
317 |
+
|
318 |
+
#: functions/backup.actions.php:12
|
319 |
+
msgid "Dumping database"
|
320 |
+
msgstr "Baza de date de dumping"
|
321 |
+
|
322 |
+
#: functions/backup.actions.php:22
|
323 |
+
msgid "Creating zip archive"
|
324 |
+
msgstr "Crearea arhiva zip"
|
325 |
+
|
326 |
+
#: functions/backup.functions.php:19
|
327 |
+
msgid "Removing old backups"
|
328 |
+
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.\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 |
+
"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.\n"
|
364 |
+
"\n"
|
365 |
+
"Unfortunately the backup file was too large to attach to this email.\n"
|
366 |
+
"\n"
|
367 |
+
"You can download the backup file by clicking the link below:\n"
|
368 |
+
"\n"
|
369 |
+
"%s\n"
|
370 |
+
"\n"
|
371 |
+
"Kind Regards\n"
|
372 |
+
"\n"
|
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/interface.functions.php:25
|
386 |
+
msgid "Download"
|
387 |
+
msgstr "Download"
|
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 |
+
|
languages/hmbkp-ru_RU.mo
CHANGED
Binary file
|
languages/hmbkp-ru_RU.po
CHANGED
@@ -1,80 +1,338 @@
|
|
1 |
-
#
|
2 |
-
# This file is distributed under the same license as the
|
3 |
-
# Valera Ryaboshapko <valera@creator.su>, 2011.
|
4 |
-
#
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
-
"
|
8 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/backupwordpress\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 |
-
"POT-Creation-Date: 2011-07-11 15:40:57+00:00\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding:
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "BackUpWordPress has detected a problem."
|
23 |
msgstr "BackUpWordPress обнаружил проблему."
|
24 |
|
25 |
-
#: admin.actions.php:
|
26 |
-
msgid ""
|
27 |
-
"%s is returning a %s response which could mean cron jobs aren't getting "
|
28 |
-
"fired properly. BackUpWordPress relies on wp-cron to run back ups in a "
|
29 |
-
"separate process."
|
30 |
msgstr ""
|
31 |
-
"&s вернул &s, что может означать неправильное удаление задания cron. "
|
32 |
-
"BackUpWordPress использует wp-cron для запуска резервного копирования "
|
33 |
-
"отдельным процессом."
|
34 |
|
35 |
-
#: admin.
|
36 |
-
msgid "
|
37 |
-
|
38 |
-
msgstr[0] "%s резервная копия готова"
|
39 |
-
msgstr[1] "%s резервные копии готовы"
|
40 |
-
msgstr[2] "%s резервных копий готово"
|
41 |
|
42 |
-
#: admin.backups-table.php:
|
43 |
msgid "Size"
|
44 |
msgstr "Размер"
|
45 |
|
46 |
-
#: admin.backups-table.php:
|
47 |
msgid "Actions"
|
48 |
msgstr "Действия"
|
49 |
|
50 |
#: admin.backups-table.php:21
|
51 |
-
msgid "Only the most recent backup will be saved"
|
52 |
-
msgid_plural "The %d most recent backups will be saved"
|
53 |
-
msgstr[0] "%d последняя копия будет сохранена"
|
54 |
-
msgstr[1] "%d последние копии будут сохранены"
|
55 |
-
msgstr[2] "%d последних копий будут сохранены"
|
56 |
-
|
57 |
-
#: admin.backups-table.php:22
|
58 |
msgid "Total %s"
|
59 |
msgstr "Всего %s"
|
60 |
|
61 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "Dumping database"
|
63 |
msgstr "Копирование базы данных"
|
64 |
|
65 |
-
#: functions/backup.
|
66 |
msgid "Creating zip archive"
|
67 |
msgstr "Создание zip-архива"
|
68 |
|
69 |
-
#: functions/backup.functions.php:
|
70 |
msgid "Removing old backups"
|
71 |
msgstr "Удаление старых копий"
|
72 |
|
73 |
-
#: functions/backup.functions.php:
|
|
|
74 |
msgid "Backup of %s"
|
75 |
msgstr "Копирование %s"
|
76 |
|
77 |
-
#: functions/backup.functions.php:
|
78 |
msgid ""
|
79 |
"BackUpWordPress has completed a backup of your site %s.\n"
|
80 |
"\n"
|
@@ -92,15 +350,14 @@ msgstr ""
|
|
92 |
"\n"
|
93 |
"Файл с резервной копией должен быть прикреплён к этому письму.\n"
|
94 |
"\n"
|
95 |
-
"Так же вы можете скачать его по данной
|
96 |
-
"\n"
|
97 |
"%s\n"
|
98 |
"\n"
|
99 |
"С наилучшими пожеланиями,\n"
|
100 |
"\n"
|
101 |
"Почовый робот BackUpWordPress."
|
102 |
|
103 |
-
#: functions/backup.functions.php:
|
104 |
msgid ""
|
105 |
"BackUpWordPress has completed a backup of your site %s.\n"
|
106 |
"\n"
|
@@ -126,259 +383,72 @@ msgstr ""
|
|
126 |
"\n"
|
127 |
"Почовый робот BackUpWordPress."
|
128 |
|
129 |
-
#: functions/interface.functions.php:
|
130 |
msgid "Download"
|
131 |
msgstr "Скачать"
|
132 |
|
133 |
-
#: functions/interface.functions.php:
|
134 |
msgid "Delete"
|
135 |
msgstr "Удалить"
|
136 |
|
137 |
-
#: functions/interface.functions.php:
|
|
|
138 |
msgid "BackUpWordPress is almost ready."
|
139 |
msgstr "BackUpWordPress почти готов."
|
140 |
|
141 |
-
#: functions/interface.functions.php:
|
142 |
-
msgid ""
|
143 |
-
"
|
144 |
-
"writable, run %s or %s or create the folder yourself."
|
145 |
-
msgstr ""
|
146 |
-
"Папка резервных копий не может быть создана, т. к. папка %s"
|
147 |
-
"не доступна для записи. Выполните %s или %s, или создайте папку вручную."
|
148 |
|
149 |
-
#: functions/interface.functions.php:
|
150 |
-
msgid ""
|
151 |
-
"
|
152 |
-
"yourself."
|
153 |
-
msgstr ""
|
154 |
-
"Папка для резервных копий недоступна для записи. Выполните %s или %s, или "
|
155 |
-
"установите права вручную."
|
156 |
|
157 |
-
#: functions/interface.functions.php:
|
158 |
-
msgid ""
|
159 |
-
"
|
160 |
-
msgstr ""
|
161 |
-
"%s выполняется в %s. Пожалуйста, свяжитесь с администрацией своего хостинга и попросите отключить %s."
|
162 |
|
163 |
-
#: functions/interface.functions.php:
|
164 |
msgid "You have both %s and %s defined so there isn't anything to back up."
|
165 |
msgstr "Вы запретили резервные копии и %s, и %s, так что делать нечего."
|
166 |
|
167 |
-
#: functions/interface.functions.php:
|
168 |
-
msgid "
|
169 |
-
msgstr "E-mail адрес %s не действителен."
|
170 |
-
|
171 |
-
#: functions/interface.functions.php:98
|
172 |
-
msgid "The last backup email failed to send."
|
173 |
-
msgstr "Предыдущий e-mail с резервной копией не был отправлен."
|
174 |
-
|
175 |
-
#: functions/interface.functions.php:108
|
176 |
-
msgid ""
|
177 |
-
"Your custom backups directory %s doesn't exist and can't be created, your "
|
178 |
-
"backups will be saved to %s instead."
|
179 |
msgstr ""
|
180 |
-
"Заданная вами папка для резервных копий %s не существует и не может быть создана, поэтому "
|
181 |
-
"они будут сохранены в %s."
|
182 |
|
183 |
-
#: functions/interface.functions.php:
|
184 |
-
msgid ""
|
185 |
-
"Your custom backups directory %s isn't writable, new backups will be saved "
|
186 |
-
"to %s instead."
|
187 |
msgstr ""
|
188 |
-
"Заданная вами папка для резервных копий %s недоступна для записи, "
|
189 |
-
"поэтому они будут сохранены в %s."
|
190 |
|
191 |
-
#: functions/interface.functions.php:
|
192 |
-
msgid ""
|
193 |
-
"
|
194 |
-
"%s, are you sure you entered them correctly?"
|
195 |
-
msgstr ""
|
196 |
-
"Вы задали список папок и файлов для исключения из резервной копии, но путь %s не существует. "
|
197 |
-
"Вы уверены, что задали его правильно?"
|
198 |
|
199 |
-
#:
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
|
203 |
-
#:
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
|
207 |
-
#:
|
208 |
-
|
209 |
-
#: admin.advanced-options.php:25 admin.advanced-options.php:28
|
210 |
-
msgid "database"
|
211 |
-
msgstr "баз данных"
|
212 |
-
|
213 |
-
#: admin.status.php:10
|
214 |
-
msgid "&"
|
215 |
-
msgstr "и"
|
216 |
-
|
217 |
-
#: admin.status.php:10 admin.status.php:16 admin.status.php:31
|
218 |
-
#: admin.advanced-options.php:16 admin.advanced-options.php:25
|
219 |
-
#: admin.advanced-options.php:28
|
220 |
-
msgid "files"
|
221 |
-
msgstr "файлов"
|
222 |
-
|
223 |
-
#: admin.status.php:18
|
224 |
-
msgid "Your %s will be automatically backed up every day at %s to %s."
|
225 |
-
msgstr "Резервное копирование ваших %s будет проходить ежедневно в %s в папку %s."
|
226 |
-
|
227 |
-
#: admin.status.php:18
|
228 |
-
msgid "It's currently %s on the server."
|
229 |
-
msgstr "На сервере сейчас %s."
|
230 |
-
|
231 |
-
#: admin.status.php:22
|
232 |
-
msgid ""
|
233 |
-
"Your site is %s. Backups will be compressed and should be smaller than this."
|
234 |
msgstr ""
|
235 |
-
"Ваш сайт занимает %s. Резервные копии будут сжаты и займут меньше места. "
|
236 |
|
237 |
-
#:
|
238 |
-
msgid "
|
239 |
-
msgstr "Вычисление размера…"
|
240 |
-
|
241 |
-
#: admin.status.php:25
|
242 |
-
msgid ""
|
243 |
-
"%s is disabled which means we have to use the slower PHP fallbacks, you "
|
244 |
-
"could try contacting your host and asking them to enable it."
|
245 |
msgstr ""
|
246 |
-
"%s отключен. Это значит, что будут использованы более медленные команды PHP. "
|
247 |
-
"Вы можете обратиться к администрации своего хостинга с просьбой включить эту функцию. "
|
248 |
-
|
249 |
-
#: admin.status.php:31 admin.status.php:35
|
250 |
-
msgid "Your %s will be backed up using %s."
|
251 |
-
msgstr "Ваши %s будут зарезервированы с помощью %s."
|
252 |
-
|
253 |
-
#: admin.status.php:41
|
254 |
-
msgid "A copy of each backup will be emailed to %s."
|
255 |
-
msgstr "Каждая резервная копия будет отправляться на адрес %s."
|
256 |
-
|
257 |
-
#: admin.status.php:45
|
258 |
-
msgid "The following paths will be excluded from your backups %s."
|
259 |
-
msgstr "Эти файлы и папки будут исключены из резервных копий: %s"
|
260 |
-
|
261 |
-
#: admin.page.php:7 admin.menus.php:8
|
262 |
-
msgid "Manage Backups"
|
263 |
-
msgstr "Управление резервным копированием"
|
264 |
-
|
265 |
-
#: admin.page.php:13 admin.page.php:16
|
266 |
-
msgid "Back Up Now"
|
267 |
-
msgstr "Сделать копию"
|
268 |
-
|
269 |
-
#: admin.page.php:20 admin.advanced-options.php:3
|
270 |
-
msgid "Advanced Options"
|
271 |
-
msgstr "Дополнительные опции"
|
272 |
|
273 |
-
#:
|
274 |
-
msgid ""
|
275 |
-
"You need to fix the issues detailed above before BackUpWordPress can start."
|
276 |
-
msgstr ""
|
277 |
-
"Исправьте ошибки, приведённые выше, прежде чем BackUpWordPress сможет начать работу."
|
278 |
-
|
279 |
-
#: admin.page.php:38
|
280 |
-
msgid ""
|
281 |
-
"If you need help getting things working you are more than welcome to email "
|
282 |
-
"us at %s and we'll do what we can to help."
|
283 |
msgstr ""
|
284 |
-
"Если вам требуется помощь в том, чтобы заставить всё это работать, непременно пишите нам на %s, "
|
285 |
-
"и мы сделаем всё, что в наших силах."
|
286 |
-
|
287 |
-
#: admin.menus.php:8 admin.menus.php:30
|
288 |
-
msgid "Backups"
|
289 |
-
msgstr "Резервные копии"
|
290 |
|
291 |
-
#:
|
292 |
-
msgid "
|
293 |
-
msgstr "Ваша версия BackUpWordPress устарела."
|
294 |
-
|
295 |
-
#: admin.menus.php:53
|
296 |
-
msgid ""
|
297 |
-
" — The information below is for version %s. View the readme.txt file "
|
298 |
-
"for help specific to version %s."
|
299 |
msgstr ""
|
300 |
-
"— Информация ниже актуальна для версии %s. Особенности версии %s смотрите в файле readme.txt"
|
301 |
|
302 |
-
#: plugin.php:
|
303 |
msgid "BackUpWordPress requires WordPress version %s."
|
304 |
msgstr "Для работы BackUpWordPress требуется Wordpress версии %s."
|
305 |
|
306 |
-
#: admin.advanced-options.php:5
|
307 |
-
msgid ""
|
308 |
-
"You can %s any of the following %s in your %s to control advanced options. "
|
309 |
-
"%s. Defined %s will be highlighted."
|
310 |
-
msgstr ""
|
311 |
-
"Вы можете %s любую из приведённых %s в вашем %s, чтобы включить дополнительный опции. "
|
312 |
-
"%s. Заданные %s будут подсвечены."
|
313 |
-
|
314 |
-
#: admin.advanced-options.php:5
|
315 |
-
msgid "The Codex can help"
|
316 |
-
msgstr "Подробности смотрите в Кодексе"
|
317 |
-
|
318 |
-
#: admin.advanced-options.php:10
|
319 |
-
msgid ""
|
320 |
-
"The path to folder you would like to store your backup files in, defaults to "
|
321 |
-
"%s."
|
322 |
-
msgstr ""
|
323 |
-
"Путь к папке, где вы хотите хранить ваши резервные копии. "
|
324 |
-
"По умолчанию это %s."
|
325 |
-
|
326 |
-
#: admin.advanced-options.php:13
|
327 |
-
msgid ""
|
328 |
-
"The path to your %s executable. Will be used for the %s part of the back up "
|
329 |
-
"if available."
|
330 |
-
msgstr ""
|
331 |
-
"Путь к исполняемому файлу %s. Он будет использован для копирования %s, "
|
332 |
-
"если доступен."
|
333 |
-
|
334 |
-
#: admin.advanced-options.php:16
|
335 |
-
msgid ""
|
336 |
-
"The path to your %s executable. Will be used to zip up your %s and %s if "
|
337 |
-
"available."
|
338 |
-
msgstr ""
|
339 |
-
"Путь к исполняемому файлу %s. Он будет использован для сжатия %s и %s, "
|
340 |
-
"если доступен."
|
341 |
-
|
342 |
-
#: admin.advanced-options.php:19
|
343 |
-
msgid ""
|
344 |
-
"Completely disables the automatic back up. You can still back up using the "
|
345 |
-
"\"Back Up Now\" button. Defaults to %s."
|
346 |
-
msgstr ""
|
347 |
-
"Полный запрет на автоматическое резервное копирование. Однако, ручное копирование "
|
348 |
-
"кнопкой \"Сделать копию\" будет доступно. Значение по умолчанию %s."
|
349 |
-
|
350 |
-
#: admin.advanced-options.php:22
|
351 |
-
msgid ""
|
352 |
-
"Number of backups to keep, older backups will be deleted automatically when "
|
353 |
-
"a new backup is completed. Detaults to %s."
|
354 |
-
msgstr ""
|
355 |
-
"Количество хранимых резервных копий. Более старые копии будут удалены автоматически "
|
356 |
-
"после создания новой. Значение по умолчанию %s."
|
357 |
-
|
358 |
-
#: admin.advanced-options.php:25 admin.advanced-options.php:28
|
359 |
-
msgid "Backup %s only, your %s will %s be backed up. Defaults to %s."
|
360 |
-
msgstr "Делать копии только %s, но не %s, которые %s будут включены в резервную копию. Значение по умолчанию %s."
|
361 |
-
|
362 |
-
#: admin.advanced-options.php:25 admin.advanced-options.php:28
|
363 |
-
msgid "not"
|
364 |
-
msgstr "не"
|
365 |
-
|
366 |
-
#: admin.advanced-options.php:31
|
367 |
-
msgid "The time that the daily back up should run. Defaults to %s."
|
368 |
-
msgstr "Время запуска ежедневного резервного копирования. Значение по умолчанию %s."
|
369 |
-
|
370 |
-
#: admin.advanced-options.php:34
|
371 |
-
msgid ""
|
372 |
-
"Attempt to email a copy of your backups. Value should be email address to "
|
373 |
-
"send backups to. Defaults to %s."
|
374 |
-
msgstr ""
|
375 |
-
"Попытаться отправить резервную копию на e-mail. Значением должен быть e-mail адрес. "
|
376 |
-
"Значение по умолчанию %s."
|
377 |
-
|
378 |
-
#: admin.advanced-options.php:37
|
379 |
-
msgid ""
|
380 |
-
"Comma separated list of files or directories to exclude, the backups "
|
381 |
-
"directory is automatically excluded."
|
382 |
-
msgstr ""
|
383 |
-
"Список файлов и папок, которые нужно исключить из резервной копии, разделённый запятыми. "
|
384 |
-
"Папка с предыдущими резервными копиями исключается автоматически. "
|
1 |
+
# Translation of 1.6.8 in Russian
|
2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-05-08 14:39+0100\n"
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: 1.6.8\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
17 |
+
msgid "Help with translation"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: admin.backup-button.php:3
|
21 |
+
msgid "cancel"
|
22 |
+
msgstr ""
|
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 ""
|
28 |
+
|
29 |
+
#: admin.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
34 |
+
msgid "FAQ"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: admin.constants.php:3
|
38 |
+
#: admin.menus.php:76
|
39 |
+
#: admin.settings.php:5
|
40 |
+
msgid "Constants"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: admin.menus.php:81
|
44 |
+
msgid "Support Forums"
|
45 |
+
msgstr ""
|
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 ""
|
54 |
+
|
55 |
+
#: admin.settings.php:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
|
|
|
|
|
|
88 |
msgstr ""
|
|
|
|
|
|
|
89 |
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Сделать копию"
|
|
|
|
|
|
|
93 |
|
94 |
+
#: admin.backups-table.php:13
|
95 |
msgid "Size"
|
96 |
msgstr "Размер"
|
97 |
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin.constants.php:3
|
111 |
+
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr "Путь к исполняемому файлу %s. Он будет использован для копирования %s, если доступен."
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "баз данных"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
133 |
+
msgstr "Путь к исполняемому файлу %s. Он будет использован для сжатия %s и %s, если доступен."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
161 |
+
msgstr "Список файлов и папок, которые нужно исключить из резервной копии, разделённый запятыми. Папка с предыдущими резервными копиями исключается автоматически. "
|
162 |
+
|
163 |
+
#: admin.constants.php:38
|
164 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Управление резервным копированием"
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Резервные копии"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
178 |
+
msgid "You are not using the latest stable version of BackUpWordPress"
|
179 |
+
msgstr "Ваша версия BackUpWordPress устарела."
|
180 |
+
|
181 |
+
#: admin.menus.php:79
|
182 |
+
msgid "For more information:"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: admin.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: admin.page.php:23
|
191 |
+
msgid "You need to fix the issues detailed above before BackUpWordPress can start."
|
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.settings.php:22
|
203 |
+
msgid "Backup my site automatically."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin.settings.php:27
|
207 |
+
msgid "No automatic backups."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin.settings.php:36
|
211 |
+
msgid "Frequency of backups"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin.settings.php:40
|
215 |
+
msgid "Automatic backups will occur"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: admin.settings.php:43
|
219 |
+
msgid "Daily"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin.settings.php:44
|
223 |
+
msgid "Weekly"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin.settings.php:45
|
227 |
+
msgid "Fortnightly"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin.settings.php:46
|
231 |
+
msgid "Monthly"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: admin.settings.php:55
|
235 |
+
msgid "What to Backup"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin.settings.php:59
|
239 |
+
msgid "Backup my"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin.settings.php:62
|
243 |
+
msgid "database & files"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin.settings.php:63
|
247 |
+
msgid "database only"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin.settings.php:64
|
251 |
+
msgid "files only"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin.settings.php:72
|
255 |
+
msgid "Number of backups"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin.settings.php:73
|
259 |
+
msgid "The last %s backups will be stored on the server."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin.settings.php:77
|
263 |
+
msgid "Email backups"
|
264 |
+
msgstr ""
|
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 ""
|
269 |
+
|
270 |
+
#: admin.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Автоматическое резервное копирование %s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "отключено"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr "и"
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
303 |
+
msgid "Your site is %s. Backups will be compressed and should be smaller than this."
|
304 |
+
msgstr "Ваш сайт занимает %s. Резервные копии будут сжаты и займут меньше места. "
|
305 |
+
|
306 |
+
#: admin.status.php:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Вычисление размера…"
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
311 |
+
msgid "A copy of each backup will be emailed to %s."
|
312 |
+
msgstr "Каждая резервная копия будет отправляться на адрес %s."
|
313 |
+
|
314 |
+
#: admin.status.php:38
|
315 |
+
msgid "The following paths will be excluded from your backups %s."
|
316 |
+
msgstr "Эти файлы и папки будут исключены из резервных копий: %s"
|
317 |
+
|
318 |
+
#: functions/backup.actions.php:12
|
319 |
msgid "Dumping database"
|
320 |
msgstr "Копирование базы данных"
|
321 |
|
322 |
+
#: functions/backup.actions.php:22
|
323 |
msgid "Creating zip archive"
|
324 |
msgstr "Создание zip-архива"
|
325 |
|
326 |
+
#: functions/backup.functions.php:19
|
327 |
msgid "Removing old backups"
|
328 |
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.\n"
|
338 |
"\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.\n"
|
363 |
"\n"
|
383 |
"\n"
|
384 |
"Почовый робот BackUpWordPress."
|
385 |
|
386 |
+
#: functions/interface.functions.php:25
|
387 |
msgid "Download"
|
388 |
msgstr "Скачать"
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/hmbkp-sr_SR.mo
ADDED
Binary file
|
languages/hmbkp-sr_SR.po
ADDED
@@ -0,0 +1,433 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of 1.6.8 in Serbian
|
2 |
+
# This file is distributed under the same license as the 1.6.8 package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-05-08 14:39+0100\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: 1.6.8\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Tom Willmot <tom@humanmade.co.uk>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: admin.menus.php:82
|
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.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 ""
|
28 |
+
|
29 |
+
#: admin.menus.php:65
|
30 |
+
msgid "The information below is for version %s. View the readme.txt file for help specific to version %s."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: admin.menus.php:75
|
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:94
|
56 |
+
msgid "Save Changes"
|
57 |
+
msgstr "Sačuvajte promene"
|
58 |
+
|
59 |
+
#: functions/core.functions.php:339
|
60 |
+
msgid "This %s file ensures that other people cannot download your backup files."
|
61 |
+
msgstr "Ova %s datoteka osigurava da drugi ljudi ne mogu skinuti vaše rezervne kopije."
|
62 |
+
|
63 |
+
#: functions/interface.functions.php:48
|
64 |
+
msgid "Settings saved."
|
65 |
+
msgstr "Podešavanja sačuvana."
|
66 |
+
|
67 |
+
#: admin.actions.php:70
|
68 |
+
msgid "You have entered an invalid number of backups."
|
69 |
+
msgstr "Uneli ste nepravilan broj rezervnih kopija."
|
70 |
+
|
71 |
+
#: admin.actions.php:79
|
72 |
+
msgid "%s is an invalid email address."
|
73 |
+
msgstr "%s je nepravilna email adresa."
|
74 |
+
|
75 |
+
#: admin.actions.php:249
|
76 |
+
#: functions/interface.functions.php:89
|
77 |
+
#: functions/interface.functions.php:99
|
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.actions.php:249
|
87 |
+
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."
|
88 |
+
msgstr "%s vraća 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 %s za više detalja."
|
89 |
+
|
90 |
+
#: admin.backup-button.php:7
|
91 |
+
msgid "Back Up Now"
|
92 |
+
msgstr "Napravite rezervnu kopiju"
|
93 |
+
|
94 |
+
#: admin.backups-table.php:13
|
95 |
+
msgid "Size"
|
96 |
+
msgstr "Veličina"
|
97 |
+
|
98 |
+
#: admin.backups-table.php:14
|
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 |
+
msgid "You can %s any of the following %s in your %s to control advanced settings. %s. Defined %s will be highlighted."
|
108 |
+
msgstr "Možete %s bilo koju od sledećih %s u vašem %s da bi kontrolisali napredna podešavanja. %s. Definisani %s će biti istaknuti."
|
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 |
+
msgid "The path to your %s executable. Will be used for the %s part of the back up if available."
|
120 |
+
msgstr "Putanja do vaše %s izvršne. Biće korišćena za %s deo rezervne kopije ukoliko je moguće."
|
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:17
|
128 |
+
msgid "database"
|
129 |
+
msgstr "baza podataka"
|
130 |
+
|
131 |
+
#: admin.constants.php:14
|
132 |
+
msgid "The path to your %s executable. Will be used to zip up your %s and %s if available."
|
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:20
|
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 |
+
msgid "Number of backups to keep, older backups will be deleted automatically when a new backup is completed. Detaults to %s."
|
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 |
+
|
159 |
+
#: admin.constants.php:35
|
160 |
+
msgid "Comma separated list of files or directories to exclude, the backups directory is automatically excluded."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: admin.constants.php:38
|
164 |
+
msgid "The capability to use when calling %s. Defaults to %s."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin.menus.php:10
|
168 |
+
#: admin.page.php:7
|
169 |
+
msgid "Manage Backups"
|
170 |
+
msgstr "Rad sa rezervnim kopijama."
|
171 |
+
|
172 |
+
#: admin.menus.php:10
|
173 |
+
#: admin.menus.php:34
|
174 |
+
msgid "Backups"
|
175 |
+
msgstr "Rezervne kopije"
|
176 |
+
|
177 |
+
#: admin.menus.php:65
|
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.page.php:11
|
186 |
+
#: admin.settings.php:3
|
187 |
+
msgid "Settings"
|
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.settings.php:82
|
271 |
+
msgid "Excludes"
|
272 |
+
msgstr "Izuzetci"
|
273 |
+
|
274 |
+
#: admin.settings.php:85
|
275 |
+
msgid "A comma separated list of file and directory paths that you do <strong>not</strong> want to backup."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin.settings.php:86
|
279 |
+
msgid "e.g."
|
280 |
+
msgstr "npr"
|
281 |
+
|
282 |
+
#: admin.status.php:9
|
283 |
+
msgid "Automatic backups are %s."
|
284 |
+
msgstr "Automatske rezervne kopije su %s."
|
285 |
+
|
286 |
+
#: admin.status.php:9
|
287 |
+
msgid "disabled"
|
288 |
+
msgstr "onemogućeno"
|
289 |
+
|
290 |
+
#: admin.status.php:14
|
291 |
+
msgid "&"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin.status.php:25
|
295 |
+
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."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.status.php:25
|
299 |
+
msgid "It's currently %s"
|
300 |
+
msgstr "Trenutno je %s"
|
301 |
+
|
302 |
+
#: admin.status.php:31
|
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:31
|
307 |
+
msgid "Calculating Size..."
|
308 |
+
msgstr "Računanje veličine..."
|
309 |
+
|
310 |
+
#: admin.status.php:34
|
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:38
|
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 |
+
#: functions/backup.actions.php:12
|
319 |
+
msgid "Dumping database"
|
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 |
+
#: functions/backup.functions.php:158
|
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
|
366 |
+
msgid "Download"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: functions/interface.functions.php:26
|
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 |
+
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
433 |
+
|
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 |
|
@@ -107,6 +107,9 @@ function hmbkp_setup_hm_backup() {
|
|
107 |
if ( defined( 'HMBKP_ZIP_PATH' ) )
|
108 |
$hm_backup->zip_command_path = HMBKP_ZIP_PATH;
|
109 |
|
|
|
|
|
|
|
110 |
$hm_backup->excludes = hmbkp_valid_custom_excludes();
|
111 |
|
112 |
}
|
@@ -117,7 +120,8 @@ require_once( HMBKP_PLUGIN_PATH . '/admin.menus.php' );
|
|
117 |
require_once( HMBKP_PLUGIN_PATH . '/admin.actions.php' );
|
118 |
|
119 |
// Load hm-backup
|
120 |
-
|
|
|
121 |
|
122 |
// Load the core functions
|
123 |
require_once( HMBKP_PLUGIN_PATH . '/functions/backup.actions.php' );
|
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.8
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
107 |
if ( defined( 'HMBKP_ZIP_PATH' ) )
|
108 |
$hm_backup->zip_command_path = HMBKP_ZIP_PATH;
|
109 |
|
110 |
+
if ( defined( 'HMBKP_ROOT' ) )
|
111 |
+
$hm_backup->root = HMBKP_ROOT;
|
112 |
+
|
113 |
$hm_backup->excludes = hmbkp_valid_custom_excludes();
|
114 |
|
115 |
}
|
120 |
require_once( HMBKP_PLUGIN_PATH . '/admin.actions.php' );
|
121 |
|
122 |
// Load hm-backup
|
123 |
+
if ( ! class_exists( 'HM_Backup' ) )
|
124 |
+
require_once( HMBKP_PLUGIN_PATH . '/hm-backup/hm-backup.php' );
|
125 |
|
126 |
// Load the core functions
|
127 |
require_once( HMBKP_PLUGIN_PATH . '/functions/backup.actions.php' );
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== BackUpWordPress ===
|
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
|
5 |
-
Tested up to: 3.3
|
6 |
-
Stable tag: 1.6.
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
@@ -99,6 +99,17 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
#### 1.6.7
|
103 |
|
104 |
* Fix issue with backups being listed in reverse chronological order.
|
1 |
=== BackUpWordPress ===
|
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.3.2
|
6 |
+
Stable tag: 1.6.8
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
#### 1.6.8
|
103 |
+
|
104 |
+
* French translation props Christophe - http://catarina.fr.
|
105 |
+
* Updated Spanish Translation props DD666 - https://github.com/radinamatic.
|
106 |
+
* Serbian translation props StefanRistic - https://github.com/StefanRistic.
|
107 |
+
* Lithuanian translation props Vincent G - http://www.Host1Free.com.
|
108 |
+
* Romanian translation.
|
109 |
+
* Fix conflict with WP Remote.
|
110 |
+
* Fix a minor issue where invalid email address's were still stored.
|
111 |
+
* The root path that is backed up can now be controlled by defining `HMBKP_ROOT`.
|
112 |
+
|
113 |
#### 1.6.7
|
114 |
|
115 |
* Fix issue with backups being listed in reverse chronological order.
|