From caa28d236e8b21eff046e5a302ef9268ac6def01 Mon Sep 17 00:00:00 2001 From: phuochoit Date: Tue, 5 Nov 2024 21:51:59 +0700 Subject: [PATCH 1/9] fix: error msg login with user --- class/class-mainwp-connect.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/class/class-mainwp-connect.php b/class/class-mainwp-connect.php index 0a8a9ba6..d9eb5a88 100644 --- a/class/class-mainwp-connect.php +++ b/class/class-mainwp-connect.php @@ -110,9 +110,9 @@ public function register_site() { // phpcs:ignore -- NOSONAR - Current complexit MainWP_Helper::instance()->error( esc_html__( 'cURL Extension not enabled on the child site server. Please contact your host support and have them enabled it for you.', 'mainwp-child' ) ); } - // Check if the user exists and if yes, check if it's Administartor user. + // Check if the user exists and if yes, check if it's administrator user. if ( empty( $_POST['user'] ) || ! $this->login( wp_unslash( $_POST['user'] ) ) ) { - MainWP_Helper::instance()->error( esc_html__( 'Unexisting administrator user. Please verify that it is an existing administrator.', 'mainwp-child' ) ); + MainWP_Helper::instance()->error( esc_html__( 'Administrator user does not exist. Please verify that the user is an existing administrator.', 'mainwp-child' ) ); } if ( ! MainWP_Helper::is_admin() ) { MainWP_Helper::instance()->error( esc_html__( 'User is not an administrator. Please use an administrator user to establish the connection.', 'mainwp-child' ) ); From 288b919df427019406f833018f4807ac09824fa6 Mon Sep 17 00:00:00 2001 From: thanghv Date: Wed, 20 Nov 2024 00:38:32 +0700 Subject: [PATCH 2/9] Fixed: backwpup save settings error Fixed: jetpack get status error Updated: connection settings Added: cli command for setting --- class/class-mainwp-child-back-wp-up.php | 23 +- class/class-mainwp-child-callable.php | 12 +- class/class-mainwp-child-ithemes-security.php | 14 +- class/class-mainwp-child-jetpack-protect.php | 24 +- .../class-mainwp-child-server-information.php | 38 +- class/class-mainwp-child-stats.php | 6 + class/class-mainwp-child-wp-cli-command.php | 86 +++ class/class-mainwp-child.php | 105 ++-- class/class-mainwp-connect.php | 253 ++++++++- class/class-mainwp-helper.php | 16 + class/class-mainwp-pages.php | 527 ++++++++++++------ class/class-mainwp-wordpress-seo.php | 11 - images/mainwp-icon-orange.png | Bin 1713 -> 0 bytes images/mainwp-icon.png | Bin 4517 -> 9632 bytes images/mainwp-logo-alt.png | Bin 0 -> 15400 bytes images/mainwp-logo.png | Bin 0 -> 15170 bytes images/mainwpicon.png | Bin 1522 -> 0 bytes mainwp-child.php | 2 +- readme.txt | 2 +- 19 files changed, 838 insertions(+), 281 deletions(-) create mode 100644 class/class-mainwp-child-wp-cli-command.php delete mode 100644 images/mainwp-icon-orange.png create mode 100644 images/mainwp-logo-alt.png create mode 100644 images/mainwp-logo.png delete mode 100644 images/mainwpicon.png diff --git a/class/class-mainwp-child-back-wp-up.php b/class/class-mainwp-child-back-wp-up.php index d134d3ba..6cc49847 100644 --- a/class/class-mainwp-child-back-wp-up.php +++ b/class/class-mainwp-child-back-wp-up.php @@ -1111,6 +1111,16 @@ protected function verify_nonce_without_session( $nonce, $action = - 1 ) { //php return $result; } + /** + * MainWP BackWPup WP Die ajax handler. + * + * @param string $message Error message container. + * @return string Error message. + */ + public static function mainwp_backwpup_wp_die_ajax_handler() { + return '__return_true'; + } + /** * BackWPup Ajax Working. * @@ -1131,16 +1141,6 @@ protected function ajax_working() { $this->wp_list_table_dependency(); - /** - * MainWP BackWPup WP Die ajax handler. - * - * @param string $message Error message container. - * @return string Error message. - */ - function mainwp_backwpup_wp_die_ajax_handler() { - return 'mainwp_backwpup_wp_die_ajax_handler'; - } - // We do this in order to not die when using wp_die. if ( ! defined( 'DOING_AJAX' ) ) { @@ -1153,7 +1153,7 @@ function mainwp_backwpup_wp_die_ajax_handler() { define( 'DOING_AJAX', true ); } - add_filter( 'wp_die_ajax_handler', 'mainwp_backwpup_wp_die_ajax_handler' ); + add_filter( 'wp_die_ajax_handler', array( __CLASS__ , 'mainwp_backwpup_wp_die_ajax_handler' ) ); remove_filter( 'wp_die_ajax_handler', '_ajax_wp_die_handler' ); ob_start(); @@ -1792,6 +1792,7 @@ protected function insert_or_update_jobs() { // phpcs:ignore -- NOSONAR - comple } } + // this assign not work with filter_input - INPUT_POST. foreach ( $settings['value'] as $key => $val ) { $_POST[ $key ] = $val; } diff --git a/class/class-mainwp-child-callable.php b/class/class-mainwp-child-callable.php index bcc9cb2f..e499f33b 100644 --- a/class/class-mainwp-child-callable.php +++ b/class/class-mainwp-child-callable.php @@ -1059,7 +1059,8 @@ public function disconnect() { */ global $mainWPChild; - $mainWPChild->deactivation( false ); + $mainWPChild->delete_connection_data(); + MainWP_Helper::write( array( 'result' => 'success' ) ); } @@ -1087,6 +1088,15 @@ public function deactivate() { if ( is_plugin_active( $mainWPChild->plugin_slug ) ) { MainWP_Helper::instance()->error( 'Plugin still active' ); } + + /** + * MainWP Child instance. + * + * @global object + */ + global $mainWPChild; + + $mainWPChild->delete_connection_data(); $information['deactivated'] = true; MainWP_Helper::write( $information ); } diff --git a/class/class-mainwp-child-ithemes-security.php b/class/class-mainwp-child-ithemes-security.php index b6032da4..c716df0e 100644 --- a/class/class-mainwp-child-ithemes-security.php +++ b/class/class-mainwp-child-ithemes-security.php @@ -117,15 +117,19 @@ public function sync_others_data( $information, $data = array() ) { //phpcs:igno $response = rest_do_request( $request ); $scans = rest_get_server()->response_to_data( $response, true ); + if ( is_array( $scans ) && count( $scans ) > 0 ) { $scan = current( $scans ); - $information['syncIThemeData']['scan_info'] = array( - 'time' => $scan['time'], - 'description' => $scan['description'], - 'status' => $scan['status'], - ); + if( is_array($scan ) && isset( $scan['time'] ) ){ // to fix error: "you cannot view site scans". + $information['syncIThemeData']['scan_info'] = array( + 'time' => $scan['time'], + 'description' => $scan['description'], + 'status' => $scan['status'], + ); + } } + if ( class_exists( '\iThemesSecurity\Ban_Users\Database_Repository' ) ) { try{ $repository = \ITSEC_Modules::get_container()->get( \iThemesSecurity\Ban_Users\Database_Repository::class ); diff --git a/class/class-mainwp-child-jetpack-protect.php b/class/class-mainwp-child-jetpack-protect.php index 53986721..5b64cfdd 100644 --- a/class/class-mainwp-child-jetpack-protect.php +++ b/class/class-mainwp-child-jetpack-protect.php @@ -258,11 +258,25 @@ public function set_connect_disconnect() { * @return array $return scan result. */ public function get_scan_status() { - MainWP_Helper::instance()->check_classes_exists( '\Automattic\Jetpack\Protect\Status' ); - MainWP_Helper::instance()->check_methods( '\Automattic\Jetpack\Protect\Status', 'get_status' ); - return array( - 'status' => \Automattic\Jetpack\Protect\Status::get_status(), - ); + $version_error = false; + try { + MainWP_Helper::instance()->check_classes_exists( '\Automattic\Jetpack\Protect\Status' ); + MainWP_Helper::instance()->check_methods( '\Automattic\Jetpack\Protect\Status', 'get_status' ); + return array( + 'status' => \Automattic\Jetpack\Protect\Status::get_status(), + ); + } catch ( MainWP_Exception $e ) { + $version_error = true; + } + + if ( $version_error ) { + MainWP_Helper::instance()->check_classes_exists( '\Automattic\Jetpack\Protect_Status\Status' ); + MainWP_Helper::instance()->check_methods( '\Automattic\Jetpack\Protect_Status\Status', 'get_status' ); + return array( + 'status' => \Automattic\Jetpack\Protect_Status\Status::get_status(), + ); + } + return array(); } /** diff --git a/class/class-mainwp-child-server-information.php b/class/class-mainwp-child-server-information.php index 64135d43..95a370a8 100644 --- a/class/class-mainwp-child-server-information.php +++ b/class/class-mainwp-child-server-information.php @@ -1278,28 +1278,24 @@ public static function render_connection_details() { ); // phpcs:disable WordPress.Security.EscapeOutput ?> -
-

-
-
- -
- - - - - - - - - +

+

+
+ + - -
-
+ + + + + + + +
validate_register( false, 'generate' ); + } + if ( $exit_done ) { MainWP_Helper::write( $information ); } diff --git a/class/class-mainwp-child-wp-cli-command.php b/class/class-mainwp-child-wp-cli-command.php new file mode 100644 index 00000000..3198c63d --- /dev/null +++ b/class/class-mainwp-child-wp-cli-command.php @@ -0,0 +1,86 @@ +] []. + * + * ## Synopsis [--disable-pwd-auth] [] []. + * + * @param array $args Function arguments. + * @param array $assoc_args Function associate arguments. + */ + public function settings( $args, $assoc_args ) { + + if ( isset( $assoc_args['disable-pwd-auth'] ) ) { + if ( empty( $args ) || empty( $args[0] ) ) { + \WP_CLI::error( 'Please enter the username to apply this setting. A valid username is required to proceed.' ); + return true; + } else { + $user_name = $args[0]; + $user = get_user_by( 'login', $user_name ); + + if ( ! $user || empty( $user->ID ) ) { + \WP_CLI::error( 'The username you entered does not match any account. Please verify the username and try again.' ); + return true; + } + + $disabled = ! isset( $args[1] ) || '1' === $args[1] ? true : false; + + update_user_option( $user->ID, 'mainwp_child_user_enable_passwd_auth_connect', $disabled ? 0 : 1 ); + \WP_CLI::success( 'Your changes have been saved successfully!' ); + return true; + } + } + + \WP_CLI::error( 'Invalid arguments. Please try again, or contact support if the issue persists.' ); + } +} diff --git a/class/class-mainwp-child.php b/class/class-mainwp-child.php index 22373100..59d25132 100644 --- a/class/class-mainwp-child.php +++ b/class/class-mainwp-child.php @@ -30,7 +30,7 @@ class MainWP_Child { * * @var string MainWP Child plugin version. */ - public static $version = '5.2'; // NOSONAR - not IP. + public static $version = '5.3-RC1'; // NOSONAR - not IP. /** * Private variable containing the latest MainWP Child update version. @@ -72,6 +72,7 @@ public function __construct( $plugin_file ) { $this->plugin_slug = plugin_basename( $plugin_file ); add_action( 'template_redirect', array( $this, 'template_redirect' ) ); + add_action( 'activated_plugin', array( $this, 'hook_activated_plugin' ) ); add_action( 'init', array( &$this, 'init_check_login' ), 1 ); add_action( 'init', array( &$this, 'parse_init' ), 9999 ); add_action( 'init', array( &$this, 'localization' ), 33 ); @@ -104,6 +105,10 @@ public function __construct( $plugin_file ) { MainWP_Child_Themes_Check::instance(); MainWP_Utility::instance()->run_saved_snippets(); + if ( defined( 'WP_CLI' ) && WP_CLI ) { + MainWP_Child_WP_CLI_Command::init(); + } + /** * Initiate Branding Options. */ @@ -255,6 +260,22 @@ public function template_redirect() { MainWP_Utility::instance()->send_maintenance_alert(); } + /** + * Method hook_activated_plugin() + * + * @param mixed $plugin + * @return void + */ + public function hook_activated_plugin( $plugin ) { + if ( $plugin === plugin_basename( MAINWP_CHILD_FILE ) && ( ! defined( 'DOING_CRON' ) || ! DOING_CRON ) ) { + $branding = MainWP_Child_Branding::instance()->is_branding(); + if ( ! $branding ) { + wp_safe_redirect( 'options-general.php?page=mainwp_child_tab' ); + exit(); + } + } + } + /** * Method parse_init() * @@ -352,6 +373,20 @@ public function admin_init() { MainWP_Clone::instance()->init_ajax(); } MainWP_Child_Actions::get_instance()->init_hooks(); + + if ( empty( get_option( 'mainwp_child_pubkey' ) ) ) { + $ttl_pubkey = (int) get_option( 'mainwp_child_ttl_active_unconnected_site', 20 ); + if ( ! empty( $ttl_pubkey ) ) { + $lasttime_active = get_option( 'mainwp_child_lasttime_not_connected' ); + if ( empty( $lasttime_active ) ) { + MainWP_Helper::update_option( 'mainwp_child_lasttime_not_connected', time() ); + } elseif ( $lasttime_active < time() - $ttl_pubkey * MINUTE_IN_SECONDS ) { + include_once ABSPATH . '/wp-admin/includes/plugin.php'; // NOSONAR -- WP compatible. + delete_option( 'mainwp_child_lasttime_not_connected' ); + deactivate_plugins( $this->plugin_slug, true ); + } + } + } } /** @@ -395,74 +430,72 @@ private function parse_init_extensions() { MainWP_Custom_Post_Type::instance(); } + + /** + * Method activation() + * + * Activate the MainWP Child plugin and delete unwanted data. + * + * @uses \MainWP\Child\MainWP_Helper::update_option() + */ + public function activation() { + delete_option( 'mainwp_child_lasttime_not_connected' ); // delete if existed. + } + /** * Method deactivation() * - * Deactivate the MainWP Child plugin and delete unwanted data. + * Deactivate the MainWP Child plugin. * * @param bool $deact Whether or not to deactivate pugin. Default: true. */ public function deactivation( $deact = true ) { + delete_option( 'mainwp_child_lasttime_not_connected' ); // delete if existed. + $mu_plugin_enabled = apply_filters( 'mainwp_child_mu_plugin_enabled', false ); if ( $mu_plugin_enabled ) { return; } - $to_delete = array( - 'mainwp_child_pubkey', - 'mainwp_child_nonce', - 'mainwp_security', - 'mainwp_child_server', - 'mainwp_child_connected_admin', - ); - $to_delete[] = 'mainwp_ext_snippets_enabled'; - $to_delete[] = 'mainwp_ext_code_snippets'; - $to_delete[] = 'mainwp_child_openssl_sign_algo'; - - foreach ( $to_delete as $delete ) { - if ( get_option( $delete ) ) { - delete_option( $delete ); - wp_cache_delete( $delete, 'options' ); - } - } - if ( $deact ) { do_action( 'mainwp_child_deactivation' ); } } /** - * Method activation() + * Method delete_connection_data() * - * Activate the MainWP Child plugin and delete unwanted data. + * Delete connection data. * - * @uses \MainWP\Child\MainWP_Helper::update_option() + * @param bool $check_must_use Check must use before delete data. */ - public function activation() { - $mu_plugin_enabled = apply_filters( 'mainwp_child_mu_plugin_enabled', false ); - if ( $mu_plugin_enabled ) { - return; + public function delete_connection_data( $check_must_use = true ) { + + if ( $check_must_use ) { + $mu_plugin_enabled = apply_filters( 'mainwp_child_mu_plugin_enabled', false ); + if ( $mu_plugin_enabled ) { + return; + } } - $to_delete = array( + $to_delete = array( 'mainwp_child_pubkey', 'mainwp_child_nonce', + 'mainwp_security', + 'mainwp_child_server', 'mainwp_child_connected_admin', - 'mainwp_child_openssl_sign_algo', ); + $to_delete[] = 'mainwp_ext_snippets_enabled'; + $to_delete[] = 'mainwp_ext_code_snippets'; + $to_delete[] = 'mainwp_child_openssl_sign_algo'; + foreach ( $to_delete as $delete ) { if ( get_option( $delete ) ) { delete_option( $delete ); + wp_cache_delete( $delete, 'options' ); } } - - MainWP_Helper::update_option( 'mainwp_child_activated_once', true ); - - $to_delete = array( 'mainwp_ext_snippets_enabled', 'mainwp_ext_code_snippets' ); - foreach ( $to_delete as $delete ) { - delete_option( $delete ); - } } /** diff --git a/class/class-mainwp-connect.php b/class/class-mainwp-connect.php index 0a8a9ba6..c2526345 100644 --- a/class/class-mainwp-connect.php +++ b/class/class-mainwp-connect.php @@ -23,6 +23,8 @@ class MainWP_Connect { //phpcs:ignore -- NOSONAR - multi methods. */ public static $instance = null; + private $connect_user = null; + /** * Private variable to hold the max history value. * @@ -110,6 +112,14 @@ public function register_site() { // phpcs:ignore -- NOSONAR - Current complexit MainWP_Helper::instance()->error( esc_html__( 'cURL Extension not enabled on the child site server. Please contact your host support and have them enabled it for you.', 'mainwp-child' ) ); } + if ( ! empty( $_POST['user'] ) && ! $this->is_verified_register( wp_unslash( $_POST['user'] ) ) ) { + if ( isset( $_POST['regverify'] ) ) { + MainWP_Helper::instance()->error( esc_html__( 'Failed to reconnect to the site. Please remove the site and add it again.', 'mainwp-child' ), 'reconnect_failed' ); + } else { + MainWP_Helper::instance()->error( esc_html__( 'Unable to connect to the site. Please verify that your Admin Username and Password are correct and try again.', 'mainwp-child' ) ); + } + } + // Check if the user exists and if yes, check if it's Administartor user. if ( empty( $_POST['user'] ) || ! $this->login( wp_unslash( $_POST['user'] ) ) ) { MainWP_Helper::instance()->error( esc_html__( 'Unexisting administrator user. Please verify that it is an existing administrator.', 'mainwp-child' ) ); @@ -129,14 +139,239 @@ public function register_site() { // phpcs:ignore -- NOSONAR - Current complexit MainWP_Helper::update_option( 'mainwp_child_connected_admin', $current_user->user_login, 'yes' ); + // register success. + $new_verify = $this->may_be_generate_register_verify(); + if ( ! empty( $new_verify ) ) { + $information['regverify'] = $new_verify; // get reg verify value. + } + $information['register'] = 'OK'; $information['uniqueId'] = MainWP_Helper::get_site_unique_id(); $information['user'] = isset( $_POST['user'] ) ? sanitize_text_field( wp_unslash( $_POST['user'] ) ) : ''; - // phpcs:enable + + // phpcs:enable WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized MainWP_Child_Stats::get_instance()->get_site_stats( $information ); // get stats and exit. } + /** + * Method validate_register(). + * + * @param string $key_value Key & value. + * @param string $act Action. + * @param string $user_name. + * + * @return mixed + */ + public function validate_register( $key_value, $act = 'verify', $user_name = false ) { // phpcs:ignore -- NOSONAR - Current complexity is the only way to achieve desired results, pull request solutions appreciated. + + $user_id = 0; + + if ( ! empty( $user_name ) ) { + $user = get_user_by( 'login', $user_name ); + $user_id = $user ? $user->ID : false; + } else { + $user = $this->get_connected_user(); + $user_id = $user ? $user->ID : false; + } + + if ( empty( $user_id ) ) { + return false; + } + + $_values = get_user_option( 'mainwp_child_user_verified_registers', $user_id ); + + $saved_values = ! empty( $_values ) ? json_decode( $_values, true ) : array(); + + if ( ! is_array( $saved_values ) ) { + $saved_values = array(); + } + + $verify_key = ''; + $verify_secrect = ''; + + if ( ! empty( $key_value ) && false !== strpos( $key_value, '-' ) ) { + list( $verify_key, $verify_secrect ) = explode( '-', $key_value ); + } + + $gen_verify = ''; + + if ( 'verify' === $act ) { + $found_secure = ''; + $hash_key = hash_hmac( 'sha256', $verify_key, 'register-verify' ); + foreach ( $saved_values as $info ) { + if ( is_array( $info ) && ! empty( $info['hash_key'] ) && $hash_key === $info['hash_key'] ) { + $found_secure = $info['secure']; + break; + } + } + return ! empty( $found_secure ) && hash_equals( $found_secure, $verify_secrect ); + } elseif ( 'generate' === $act ) { + $gen_values = $this->generate_verify_hash(); + $saved_values[] = array( + 'hash_key' => $gen_values['hash_key'], + 'secure' => $gen_values['secure'], + 'date' => gmdate( 'Y-m-d H:i:s' ), + ); + $gen_verify = $gen_values['key'] . '-' . $gen_values['secure']; + } elseif ( 'remove' === $act ) { + if ( ! empty( $saved_values ) ) { + array_pop( $saved_values ); + } + } else { + return false; + } + + if ( 5 < count( $saved_values ) ) { + array_shift( $saved_values ); + } + + update_user_option( $user_id, 'mainwp_child_user_verified_registers', wp_json_encode( $saved_values ) ); + + if ( ! empty( $gen_verify ) ) { + return $gen_verify; + } + } + + /** + * Method is_verified_register(). + * + * @param string $user_name User name. + * + * @return bool + */ + public function is_verified_register( $user_name ) { // phpcs:ignore -- NOSONAR - Current complexity is the only way to achieve desired results, pull request solutions appreciated. + + if ( ! $this->is_enabled_user_passwd_auth( $user_name ) ) { + return true; // not enable passwd auth, then return true. + } + + $user_pwd = isset( $_POST['userpwd'] ) ? trim( rawurldecode( $_POST['userpwd'] ) ) : ''; //phpcs:ignore -- NOSONAR - ok. + $reg_verify = isset( $_POST['regverify'] ) ? sanitize_text_field(wp_unslash( $_POST['regverify'] )) : ''; //phpcs:ignore -- NOSONAR - ok. + + $is_valid_pwd = -1; + + if ( ! empty( $user_pwd ) ) { + $is_valid_pwd = $this->is_valid_user_pwd( $user_name, $user_pwd ); + return $is_valid_pwd ? true : false; + } + + $is_dash_version_older_than_ver53 = empty( $_POST['mainwpver'] ) || version_compare( $_POST['mainwpver'], '5.3', '<' ) ? true : false; + + if ( empty( $reg_verify ) && $this->is_never_verify_register( $user_name ) && $is_dash_version_older_than_ver53 ) { + // set it is valid one time. + return true; + } + + $is_valid_regis = $this->validate_register( $reg_verify, 'verify', $user_name ); + + return $is_valid_regis ? true : false; + } + + + /** + * Method is_enabled_user_passwd_auth(). + * + * @param string $user_name User name. + * + * @return bool + */ + public function is_enabled_user_passwd_auth( $user_name ) { + $user = get_user_by( 'login', $user_name ); + if ( ! $user ) { + return true; + } + $enable_pwd_auth_connect = get_user_option( 'mainwp_child_user_enable_passwd_auth_connect', $user->ID ); + if ( false === $enable_pwd_auth_connect || '1' === $enable_pwd_auth_connect ) { + return true; + } + return false; + } + + /** + * Method may_be_generate_register_verify(). + * + * @return string + */ + private function may_be_generate_register_verify() { // phpcs:ignore -- NOSONAR - Current complexity is the only way to achieve desired results, pull request solutions appreciated. + + $is_dash_version_older_than_ver53 = empty( $_POST['mainwpver'] ) || version_compare( $_POST['mainwpver'], '5.3', '<' ) ? true : false; + + if ( $is_dash_version_older_than_ver53 ) { + return false; // not genereate verify registers for dashboard version before 5.2. + } + + $reg_verify = isset( $_POST['regverify'] ) ? sanitize_text_field(wp_unslash( $_POST['regverify'] )) : ''; //phpcs:ignore -- NOSONAR - ok. + + if ( empty( $reg_verify ) ) { + return $this->validate_register( false, 'generate' ); + } + + $is_valid_regis = $this->validate_register( $reg_verify ); + + if ( $is_valid_regis ) { // do not need to generate. + return false; + } + + // generate a new one, in case connection was validated. + return $this->validate_register( $reg_verify, 'generate' ); + } + + /** + * Method is_valid_user_pwd() + * + * Parse inistial authentication. + * + * @param string $username Admin login name. + * @param string $pwd Admin password. + * + * @return bool ture|false. + */ + public function is_valid_user_pwd( $username, $pwd ) { // phpcs:ignore -- NOSONAR - Current complexity is the only way to achieve desired results, pull request solutions appreciated. + $user = get_user_by( 'login', $username ); + if ( $user && ! empty( $user->user_pass ) ) { + return wp_check_password( $pwd, $user->user_pass, $user->ID ); + } + return false; + } + + + /** + * Method generate_verify_hash() + * + * Generates a random hash to be used when generating the key and secret. + * + * @return array Returns. + */ + private function generate_verify_hash() { + $key = MainWP_Helper::rand_str_key(); + return array( + 'key' => $key, + 'secure' => MainWP_Helper::rand_str_key(), + 'hash_key' => hash_hmac( 'sha256', $key, 'register-verify' ), + ); + } + + /** + * Method is_never_verify_register() + * + * @param string $username Admin login name. + * + * @return bool ture|false. + */ + public function is_never_verify_register( $user_name ) { // phpcs:ignore -- NOSONAR - Current complexity is the only way to achieve desired results, pull request solutions appreciated. + $user = get_user_by( 'login', $user_name ); + if ( $user && ! empty( $user->ID ) ) { + $_values = get_user_option( 'mainwp_child_user_verified_registers', $user->ID ); + $saved_values = ! empty( $_values ) ? json_decode( $_values, true ) : array(); + if ( ! is_array( $saved_values ) ) { + $saved_values = array(); + } + return empty( $saved_values ) ? true : false; + } + return false; + } + /** * Method parse_init_auth() * @@ -827,12 +1062,22 @@ public function login( $username, $doAction = false ) { // phpcs:ignore -- NOSON $this->check_compatible_connect_info(); } + $this->connect_user = $user; + return $logged_in; } return false; } + /** + * Method get_connected_user() + */ + + public function get_connected_user() { + return $this->connect_user; + } + /** * Method check_other_auth() * @@ -906,12 +1151,12 @@ public function get_max_history() { */ public function check_compatible_connect_info() { global $current_user; - $connect_user = isset( $_POST['user'] ) ? wp_unslash( $_POST['user'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput,InputNotSanitized,WordPress.Security.NonceVerification - if ( ! empty( $connect_user ) && $current_user->user_login === $connect_user ) { + $con_username = isset( $_POST['user'] ) ? wp_unslash( $_POST['user'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput,InputNotSanitized,WordPress.Security.NonceVerification + if ( ! empty( $con_username ) && $current_user->user_login === $con_username ) { $connected_admin = get_option( 'mainwp_child_connected_admin', '' ); if ( empty( $connected_admin ) ) { // to comparable. - MainWP_Helper::update_option( 'mainwp_child_connected_admin', $connect_user, 'yes' ); + MainWP_Helper::update_option( 'mainwp_child_connected_admin', $con_username, 'yes' ); } } } diff --git a/class/class-mainwp-helper.php b/class/class-mainwp-helper.php index ea98a842..8d5c53e8 100644 --- a/class/class-mainwp-helper.php +++ b/class/class-mainwp-helper.php @@ -537,6 +537,22 @@ public static function rand_string( $length ) { return \wp_generate_password( $length, false ); } + /** + * Method rand_str_key() + * + * Generates a random string to be used when generating the consumer key and secret. + * + * @return string Returns. + */ + public static function rand_str_key() { + + if ( ! function_exists( 'openssl_random_pseudo_bytes' ) ) { + return sha1( wp_rand() ); // NOSONAR - safe for keys. + } + + return bin2hex( openssl_random_pseudo_bytes( 20 ) ); // @codingStandardsIgnoreLine + } + /** * Method return_bytes() * diff --git a/class/class-mainwp-pages.php b/class/class-mainwp-pages.php index c4b14c99..5b5a6788 100644 --- a/class/class-mainwp-pages.php +++ b/class/class-mainwp-pages.php @@ -82,8 +82,8 @@ public static function get_instance() { * Initiate actions and filters. */ public function init() { + add_action( 'admin_init', array( &$this, 'admin_init' ) ); add_action( 'admin_menu', array( &$this, 'admin_menu' ) ); - add_action( 'admin_head', array( &$this, 'admin_head' ) ); add_action( 'admin_notices', array( &$this, 'admin_notice' ) ); add_filter( 'plugin_row_meta', array( &$this, 'plugin_row_meta' ), 10, 2 ); } @@ -104,19 +104,72 @@ public function admin_notice() { $child_name = ( '' === $branding_opts['branding_preserve_title'] ) ? 'MainWP Child' : $branding_opts['branding_preserve_title']; $dashboard_name = ( '' === $branding_opts['branding_preserve_title'] ) ? 'MainWP Dashboard' : $branding_opts['branding_preserve_title'] . ' Dashboard'; - $msg = '
'; - $msg .= '

' . esc_html__( 'Attention! ', 'mainwp-child' ) . $child_name . esc_html__( ' plugin is activated but not connected.', 'mainwp-child' ) . '

'; - $msg .= '

' . esc_html__( 'Please add this site to your ', 'mainwp-child' ) . $dashboard_name . ' ' . esc_html__( 'NOW or deactivate the ', 'mainwp-child' ) . $child_name . esc_html__( ' plugin until you are ready to connect this site to your Dashboard in order to avoid unexpected security issues. ', 'mainwp-child' ); - $msg .= sprintf( esc_html__( 'If you are not sure how to do it, please review this %1$shelp document%2$s.', 'mainwp-child' ), '', '' ) . '

'; + $msg = '
'; if ( ! MainWP_Child_Branding::instance()->is_branding() ) { - $msg .= '

' . esc_html__( 'You can also turn on the unique security ID option in ', 'mainwp-child' ) . $child_name . sprintf( esc_html__( ' %1$ssettings%2$s if you would like extra security and additional time to add this site to your Dashboard. ', 'maiwnip-child' ), '', '' ); - $msg .= sprintf( esc_html__( 'Find out more in this %1$shelp document%2$s how to do it.', 'mainwp-child' ), '', '' ) . '

'; + $msg .= '
'; + $msg .= 'MainWP Icon'; + $msg .= '
'; + } + $msg .= '
' . esc_html( $child_name ) . esc_html__( ' Plugin is Actived', 'mainwp-child' ) . '
'; + $msg .= '
' . esc_html__( 'This site is now ready for connection. Please proceed with the connection process from your ', 'mainwp-child' ) . esc_html( $dashboard_name ) . ' ' . esc_html__( 'to start managing the site. ', 'mainwp-child' ) . '
'; + $msg .= '
' . sprintf( esc_html__( 'If you need assistance, refer to our %1$sdocumentation%2$s.', 'mainwp-child' ), '', '' ) . '
'; + if ( ! MainWP_Child_Branding::instance()->is_branding() ) { + $msg .= '
' . esc_html__( 'For additional security options, visit the ', 'mainwp-child' ) . esc_html( $child_name ) . sprintf( esc_html__( ' %1$splugin settings%2$s. ', 'maiwnip-child' ), '', '' ) . '
'; + $msg .= '
'; } $msg .= '
'; - echo wp_kses_post( $msg ); + echo $msg; //phpcs:ignore -- NOSONAR - ok + } + + if ( isset( $_GET['page'] ) && 'mainwp_child_tab' === $_GET['page'] && isset( $_GET['message'] ) ) { + + $message = ''; + + if ( '1' === wp_unslash( $_GET['message'] ) ) { + $message = __( 'Disconnected the Site from Dashboard.', 'mainwp-child' ); + } elseif ( '2' === wp_unslash( $_GET['message'] ) ) { + $message = __( 'Settings have been saved successfully.', 'mainwp-child' ); + } + + if ( ! empty( $message ) ) { + ?> +
+
+

+
+ delete_connection_data( false ); + delete_option( 'mainwp_child_lasttime_not_connected' ); // reset. + wp_safe_redirect( 'options-general.php?page=mainwp_child_tab&message=1' ); } + + // phpcs:disable WordPress.Security.NonceVerification + if ( isset( $_POST['submit'] ) && isset( $_POST['nonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'child-settings' ) ) { + if ( isset( $_POST['requireUniqueSecurityId'] ) ) { + MainWP_Helper::update_option( 'mainwp_child_uniqueId', MainWP_Helper::rand_string( 12 ) ); + } else { + MainWP_Helper::update_option( 'mainwp_child_uniqueId', '' ); + } + MainWP_Helper::update_option( 'mainwp_child_ttl_active_unconnected_site', ! empty( $_POST['mainwp_child_active_time_for_unconnected_site'] ) ? intval( $_POST['mainwp_child_active_time_for_unconnected_site'] ) : 0 ); + update_user_option( get_current_user_id(), 'mainwp_child_user_enable_passwd_auth_connect', ! empty( $_POST['mainwp_child_user_enable_pwd_auth_connect'] ) ? 1 : 0 ); + wp_safe_redirect( 'options-general.php?page=mainwp_child_tab&message=2' ); + } + // phpcs:enable } + /** * Add and remove Admin Menu Items dependant upon Branding settings. * @@ -256,7 +309,7 @@ public function plugin_row_meta( $plugin_meta, $plugin_file ) { */ global $mainWPChild; - if ( $mainWPChild->plugin_slug !== $plugin_file ) { + if ( ! $mainWPChild || $mainWPChild->plugin_slug !== $plugin_file ) { return $plugin_meta; } return apply_filters( 'mainwp_child_plugin_row_meta', $plugin_meta, $plugin_file, $mainWPChild->plugin_slug ); @@ -385,118 +438,172 @@ public static function render_header( $shownPage, $subpage = true, &$show_clone_ ?> -
-

-

-
- - - - - - - - - - - - - - - -
-
-
+ + /* Hide default HTML checkbox */ + .mainwp-toggle input { + opacity: 0; + width: 0; + height: 0; + } + + /* The slider */ + .mainwp-slider { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.05); + -webkit-transition: .4s; + transition: .4s; + border-radius: 11px; + } + + .mainwp-slider:before { + position: absolute; + content: ""; + height: 21px; + width: 21px; + background: #fff linear-gradient(transparent, rgba(0, 0, 0, 0.05)); + box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset; + -webkit-transition: .4s; + transition: .4s; + border-radius: 11px; + } + + .mainwp-toggle input:checked + .mainwp-slider { + background: #7fb100; + } + + .mainwp-toggle input:checked + .mainwp-slider:before { + -webkit-transform: translateX(28px); + -ms-transform: translateX(28px); + transform: translateX(28px); + } + + .mainwp-button { + background-color: #7fb100; + border: none; + color: #ffffff !important; + border-radius: 15px; + padding: 0.78571429em 1.5em 0.78571429em; + cursor: pointer; + font-weight: bolder; + font-size:1em; + } + + .mainwp-basic-button { + background-color: #4682b4; + border: none; + color: #ffffff !important; + border-radius: 15px; + padding: 0.78571429em 1.5em 0.78571429em; + cursor: pointer; + font-weight: bolder; + font-size:1em; + } + .mainwp-basic-button:disabled { + background-color: #4682b4; + opacity: 0.45; + } + + .mainwp-number-field { + margin: 0; + outline: none; + -webkit-appearance: none; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + line-height: 1.21428571em !important; + padding: 0.67857143em 1em !important; + font-size: 1em !important; + background: #fff; + border: 1px solid rgba(34, 36, 38, 0.15) !important; + color: rgba(0, 0, 0, 0.87); + border-radius: 0.28571429rem !important; + } + + + +
+

+
+
+ + + + + + + + + + + + + + + + + +
+
+
+
+ -
- -
+
+
- - get_branding_title(); + if ( '' === $branding_title ) { + $branding_title = 'MainWP'; + } else { + $branding_title = stripslashes( $branding_title ); } - // phpcs:enable + + $uniqueId = MainWP_Helper::get_site_unique_id(); + $time_limit = get_option( 'mainwp_child_ttl_active_unconnected_site', 20 ); + + $enable_pwd_auth_connect = get_user_option( 'mainwp_child_user_enable_passwd_auth_connect' ); + + if ( false === $enable_pwd_auth_connect ) { + $enable_pwd_auth_connect = 1; + update_user_option( get_current_user_id(), 'mainwp_child_user_enable_passwd_auth_connect', 1 ); + } + ?> -
-

-
-
-
-
- - /> - -
-
- ' . esc_html__( 'Your unique security ID is:', 'mainwp-child' ) . ' ' . esc_html( get_option( 'mainwp_child_uniqueId' ) ) . ''; - } - ?> -
-

- -

- -
+

+

+
+
+
+

+
+
+

+

+

+

+

+

+ is_branding() ) { + esc_html_e( 'If you have additional questions, please refer to this Knowledge Base article or contact ' . $branding_title . ' Support.', 'mainwp-child' ); + } else { + printf( esc_html__( 'If you have additional questions, please %srefer to this Knowledge Base article%s or %scontact MainWP Support%s.', 'mainwp-child' ), '', '', '', '' ); + } + ?> +

+ + + + + + + +
+ +
+ +
+

+
+
+

+ + + + + + + + +
+ +
+ +
+ + + + + + + + +
' . esc_html( get_option( 'mainwp_child_uniqueId' ) ) . ''; ?>
+
-
- +
+

+
+
+

+ + + + + + + +
+ + +
+ +
+ +
+

+ +

+ + +
+
+

+
+
+
+

+

+ type="submit" name="submit" id="submit" class="mainwp-basic-button" value=""> +

+ +
import_error = __( 'Settings could not be imported.', 'mainwp-child' ); - add_action( 'mainwp_child_deactivation', array( $this, 'child_deactivation' ) ); - } - - /** - * Empty options upon MainWP Child plugin deactivation. - */ - public function child_deactivation() { - $dell_all = array(); - foreach ( $dell_all as $opt ) { - delete_option( $opt ); - } } /** diff --git a/images/mainwp-icon-orange.png b/images/mainwp-icon-orange.png deleted file mode 100644 index 64b040778b1c57ff8201c45a183f5af4e042dbec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1713 zcmV;i22S~jP)YQ5^joUJl?N9&O!|ji~g7LBFoH{dgi`yc~ zz=)zS6%=_6c|)P4FYasSD{W~h7w{w}?ft&{o!@uf=Ta~Sa-`^CmECN4yVOxa1FVw( zo|YuZfm<4iqWbZFy+*}U{nI?~*ST9=HJ9)9&MK3dX*12JfftJxEG#cfechx}KgS88 z9hcQ|g76Xp5=eEoJDkUk*L0k%dNAO5V&Ia3WWxvLc^~FjbvwuWyq*_CA{Ydo2T2%@ z6QfY#eP}u;kX6#4V(7Xf*V+yqt!}^2?extJ_?@!c!aeJAe?Y)x;{-6YE{XyelIMdu zIR_tvC=n7kTkZho^8kh5VKO8rrIrEDq1_d=pR^BpxEX;Fbj_|($4R%JOBE$4sAZV= zfDdfNWstJ@VC*4pKQtWP0UoytXay5lmPimN6%gQr6Z=ly*?zUD-yhzKT#v}#UFIm< zRp$6P3>rKf`VGFLP{2^vBLL1DgFDvM0>059)Ru`er=Jth^op1FmFIn(W!6%0z-ty- z65m~)TY;d-(nO#{IPx+I_78Q#cz;_AK%nzB@PY)COvHG{dB9kC^Rq3B--`jZCbDqg z*+n0rPm4rRl1~BjpWp8XPuD#(1&@qw6UV{XaX+|6tTP=Ga{D+~l4)N8s#k4MsE-ie|Z@fjI24Y||EcXNkQmRFNY7hz_ji z;1UHMH1kq{P0o%Hn1GjHmC6a9&SEkDxB&TS`Vxkws8UQFRrIDbMe8uQguuoOEYTWc z%)U0w4mxW(sMTud?QF%gQ^`hn2*Ji6=<>NV3UV0=M9|xd<2Q9yV3RDMv!nyhXraHk z9vC$nr$7{$QDG`q&a|<>B51UUpr2n5UYKN}b<=xHfK-!jxl=)crdzwVZpX(4^SdEQ=n2b3hj*u5AjqB5Ee!BuWboAGFfB8 zjKrkm0i!cP-_47lFWd-O#pPIE{BpoNk@D{Z*c1(;8H3K7{L~maXzTsZ*HeMl>253eZ zOs}bmV6p09YMKWxFU^{_7xzuF)rzFi{9K$pl4b^8Pyi}JGTb}!IWQVMHZg3Iv?Asm z2CG}oh_9ah>3T;kKG(_B8*)P$(@1A4o;~Lh)4-UP1p)6E_(unWb$u$~WCBgyu3zaJ zEkgp%NJm&DBcm>+QKAtH7`1aDUG8eUs1!7FT$&;yaORdqUWAItzuAOK8GG??WmEsw@2|9U1+y=FaMa5I zj-gjxSe9YqMQO1hN|Tcy5rE(V$00asjtxO&nXF*$8>gV@!gnAt>LBP;!fDfYtHb%~ z&Wf8?!?uiZM#rE>L{nc}l%AB9pkj*nDPs_6^gPbh&cGtz;`;tIVcx6>q!5eFH4xr{+a5mOPPm-jJ zihKamMjbQq;3!MJBw8N!xDOw?*!XSL!vXITe>)LcnrVa;c60uwqV&yXy}A@XWr%Z= zQ8P{GJdZ`jh0k4>4GlNjoxlB3``;h;ACHdoxn!FJ{4c-&n6A=kv1(9$00000NkvXX Hu0mjfaO@&j diff --git a/images/mainwp-icon.png b/images/mainwp-icon.png index 1e2a266f019629f75509fe9a4332838da95b85c2..f2e20dff23ad87696c7c629f94fa87fded611733 100644 GIT binary patch literal 9632 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 D)G2eB diff --git a/images/mainwp-logo-alt.png b/images/mainwp-logo-alt.png new file mode 100644 index 0000000000000000000000000000000000000000..0294ea40128c380c70549f9d199f53ec5af6bb63 GIT binary patch literal 15400 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 literal 0 HcmV?d00001 diff --git a/images/mainwp-logo.png b/images/mainwp-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b9c4c95809c76fc3d00bd97267c2324a27bba5 GIT binary patch literal 15170 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 literal 0 HcmV?d00001 diff --git a/images/mainwpicon.png b/images/mainwpicon.png deleted file mode 100644 index 22d27143fd0a835945108bff016886d1f4dfcf77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1522 zcmbVMeQXnD7(XzKkEF8UpdupYZMq?A?`!=!R+g^4V-1##wrm3-aNOP6qq|*ymwNJRrcPHrSbGXYKkmvKHmXodbf+6jR? zYlVspF2ohGbACR*LgG9XbG=MOfU&Sp?kq4TLZ}1+r_f+TC=1F�m}Z5~>_Oh9PiB zMG07;$4-^F3PHOlaiBqu=orL^fJRi0;@KvXDGS696oC;8Mll^~B5;gA5ODZ`RBIAj zO1K@=uq}0Gh5U*VB49Wi4(r3XUX*+=YOz@292llkHFR=$P@yBbpq!RqaBwms@gap5 zgJ7JIUM8+otdQ#I;}C?9%k_jfC=Vw}O&J`aLoljGU_pq-HKZ*oZth<|^UkrhEj{z*^gRB^qg%Q zL;)PiF2O&=I&MZNJR8F>oU+8DworKvGmaTZJkMglEp})a%l@B?!KyQGyfyyQDv2Yt z|Kj44##c8_Mu!Wk^CGE(VfFX<0AOUg(_!;Qeq^Hs{ukyYpX|I+b|kovXYz!F%%_?6 zL0x|P!H=8!mLwO98vj%Jn2r9X;#*gp1#i^8(%R?DY1WPkObqncQ%-D*%=3F&r_W;y zuIQD)GjjBpE2(Lz`7t^-4fw%r}{(GZk zcHMkncaL+|iJOIWou@DMpFMs(EeSb(Ho$I5{nEEQxA*nk8$42t=2q(Ymg0@NsiWH$ zwVjxn5zBXI>!ahnp0O)T(aI4A-QHgL@bm+_FY2YHighETyx8qygY)0*?hZ3!-b%^J zs&3XM&xvl|y3<_}JCv38$>Ay89X@)SaaL)@08b~mnpUrV_0fCP#E2RDlC15iMGJ(~ z(7EmAwM7|iYc*-fMApdn?;V-2zon``*t1Un9-Qi~r5Z9TYkobTG3^;>oOE>ZmG-7B z%{^7$wAMbT(k_@bGZ`Lvr{=EJvSJEZG$C4@*(imMqkn(ax@U0f#2V+~t`EDe-LKNT z*85`bhFiaN4DQ%De{cUKPs*Y6br&jk%{bCwTe?`Ozo`45f8xDAPD29?i&}c>e~vL)!MmA458~!RmvG5F zcKLUi9aTGC<|Y-r)6rS&%H7#ETExQV?ykDgpRzaVNnZjN8p=Df$@OOM*t!EspXsLS hujpX@_=g!?z@}A=_1or*yB+@vJIT3@w!Ecl{sA|HH46X$ diff --git a/mainwp-child.php b/mainwp-child.php index 331bae16..f07342c3 100644 --- a/mainwp-child.php +++ b/mainwp-child.php @@ -12,7 +12,7 @@ * Author: MainWP * Author URI: https://mainwp.com * Text Domain: mainwp-child - * Version: 5.2 + * Version: 5.3-RC1 * Requires at least: 5.4 * Requires PHP: 7.4 */ diff --git a/readme.txt b/readme.txt index ff7203f0..2ffaa0c5 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Plugin URI: https://mainwp.com Requires at least: 6.2 Tested up to: 6.6.1 Requires PHP: 7.4 -Stable tag: 5.2 +Stable tag: 5.3-RC1 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-3.0.html From 5988e49f14eecb1158782e7751754dfc4c167ae8 Mon Sep 17 00:00:00 2001 From: codefactor-io Date: Wed, 20 Nov 2024 12:46:58 +0000 Subject: [PATCH 3/9] [CodeFactor] Apply fixes to commit 288b919 [ci skip] [skip ci] --- class/class-mainwp-child-stats.php | 1 - class/class-mainwp-child-wp-cli-command.php | 4 ++-- class/class-mainwp-connect.php | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/class/class-mainwp-child-stats.php b/class/class-mainwp-child-stats.php index 537f97e0..c726c5b0 100644 --- a/class/class-mainwp-child-stats.php +++ b/class/class-mainwp-child-stats.php @@ -320,7 +320,6 @@ public function get_site_stats( $information = array(), $exit_done = true ) { // } } - // still generate if regverify the connect user disabled pw auth. if ( ! empty( $_POST['sync_regverify'] ) ) { $information['regverify_info'] = MainWP_Connect::instance()->validate_register( false, 'generate' ); diff --git a/class/class-mainwp-child-wp-cli-command.php b/class/class-mainwp-child-wp-cli-command.php index 3198c63d..35b58a04 100644 --- a/class/class-mainwp-child-wp-cli-command.php +++ b/class/class-mainwp-child-wp-cli-command.php @@ -63,7 +63,7 @@ public function settings( $args, $assoc_args ) { if ( isset( $assoc_args['disable-pwd-auth'] ) ) { if ( empty( $args ) || empty( $args[0] ) ) { \WP_CLI::error( 'Please enter the username to apply this setting. A valid username is required to proceed.' ); - return true; + return true; } else { $user_name = $args[0]; $user = get_user_by( 'login', $user_name ); @@ -77,7 +77,7 @@ public function settings( $args, $assoc_args ) { update_user_option( $user->ID, 'mainwp_child_user_enable_passwd_auth_connect', $disabled ? 0 : 1 ); \WP_CLI::success( 'Your changes have been saved successfully!' ); - return true; + return true; } } diff --git a/class/class-mainwp-connect.php b/class/class-mainwp-connect.php index c2526345..6ae107a4 100644 --- a/class/class-mainwp-connect.php +++ b/class/class-mainwp-connect.php @@ -1073,7 +1073,6 @@ public function login( $username, $doAction = false ) { // phpcs:ignore -- NOSON /** * Method get_connected_user() */ - public function get_connected_user() { return $this->connect_user; } From 16f3de567bfba1bf2dee203671937d6c230c6e29 Mon Sep 17 00:00:00 2001 From: thanghv Date: Wed, 20 Nov 2024 19:57:42 +0700 Subject: [PATCH 4/9] Fixed: codefactor issue --- class/class-mainwp-child.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/class-mainwp-child.php b/class/class-mainwp-child.php index 30779acd..4b9427cf 100644 --- a/class/class-mainwp-child.php +++ b/class/class-mainwp-child.php @@ -263,7 +263,7 @@ public function template_redirect() { /** * Method hook_activated_plugin() * - * @param mixed $plugin + * @param mixed $plugin plugin. * @return void */ public function hook_activated_plugin( $plugin ) { From 17a19efce5445ad6c32d1a4c4713a5c84e33d9ee Mon Sep 17 00:00:00 2001 From: thanghv Date: Mon, 25 Nov 2024 16:21:10 +0700 Subject: [PATCH 5/9] Fixed: error deactive plugin some cases --- class/class-mainwp-child-install.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/class/class-mainwp-child-install.php b/class/class-mainwp-child-install.php index 41e89c87..4b4e26f3 100644 --- a/class/class-mainwp-child-install.php +++ b/class/class-mainwp-child-install.php @@ -85,10 +85,11 @@ public function plugin_action() { //phpcs:ignore -- NOSONAR - complex. $action_items = array(); - if ( 'activate' === $action ) { - include_once ABSPATH . '/wp-admin/includes/plugin.php'; // NOSONAR -- WP compatible. - include_once ABSPATH . '/wp-admin/includes/misc.php'; // NOSONAR -- WP compatible. + include_once ABSPATH . '/wp-admin/includes/plugin.php'; // NOSONAR -- WP compatible. + include_once ABSPATH . 'wp-admin/includes/file.php'; // NOSONAR -- WP compatible get_home_path(). + include_once ABSPATH . 'wp-admin/includes/misc.php'; // NOSONAR -- WP compatible extract_from_markers(). + if ( 'activate' === $action ) { foreach ( $plugins as $plugin ) { if ( $plugin !== $mainWPChild->plugin_slug ) { $thePlugin = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin ); From 032cb7ee6d703810aebb60b7757957f5bf8df9dd Mon Sep 17 00:00:00 2001 From: thanghv Date: Mon, 25 Nov 2024 22:47:49 +0700 Subject: [PATCH 6/9] Merged --- class/class-mainwp-child.php | 2 +- mainwp-child.php | 2 +- readme.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/class/class-mainwp-child.php b/class/class-mainwp-child.php index 4b9427cf..17843ac2 100644 --- a/class/class-mainwp-child.php +++ b/class/class-mainwp-child.php @@ -30,7 +30,7 @@ class MainWP_Child { * * @var string MainWP Child plugin version. */ - public static $version = '5.3-RC1'; // NOSONAR - not IP. + public static $version = '5.3-RC2'; // NOSONAR - not IP. /** * Private variable containing the latest MainWP Child update version. diff --git a/mainwp-child.php b/mainwp-child.php index f07342c3..bb4b296e 100644 --- a/mainwp-child.php +++ b/mainwp-child.php @@ -12,7 +12,7 @@ * Author: MainWP * Author URI: https://mainwp.com * Text Domain: mainwp-child - * Version: 5.3-RC1 + * Version: 5.3-RC2 * Requires at least: 5.4 * Requires PHP: 7.4 */ diff --git a/readme.txt b/readme.txt index 8db46473..81f9eba2 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Plugin URI: https://mainwp.com Requires at least: 6.2 Tested up to: 6.7 Requires PHP: 7.4 -Stable tag: 5.3-RC1 +Stable tag: 5.3-RC2 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-3.0.html From c56e34ddd39802e4c9ebccd4a653526ad544266a Mon Sep 17 00:00:00 2001 From: thanghv Date: Tue, 26 Nov 2024 01:05:23 +0700 Subject: [PATCH 7/9] Fixed: typo --- class/class-mainwp-pages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/class-mainwp-pages.php b/class/class-mainwp-pages.php index 0fb5a7f5..e4dc4020 100644 --- a/class/class-mainwp-pages.php +++ b/class/class-mainwp-pages.php @@ -110,7 +110,7 @@ public function admin_notice() { //phpcs:ignore -- NOSONAR -complexity. $msg .= 'MainWP Icon'; $msg .= '

'; } - $msg .= '
' . esc_html( $child_name ) . esc_html__( ' Plugin is Actived', 'mainwp-child' ) . '
'; + $msg .= '
' . esc_html( $child_name ) . esc_html__( ' Plugin is Activated', 'mainwp-child' ) . '
'; $msg .= '
' . esc_html__( 'This site is now ready for connection. Please proceed with the connection process from your ', 'mainwp-child' ) . esc_html( $dashboard_name ) . ' ' . esc_html__( 'to start managing the site. ', 'mainwp-child' ) . '
'; $msg .= '
' . sprintf( esc_html__( 'If you need assistance, refer to our %1$sdocumentation%2$s.', 'mainwp-child' ), '', '' ) . '
'; if ( ! MainWP_Child_Branding::instance()->is_branding() ) { From a7d5a8c1151a2372dd718fcc6941bddbc4ab1368 Mon Sep 17 00:00:00 2001 From: thanghv Date: Tue, 26 Nov 2024 22:44:33 +0700 Subject: [PATCH 8/9] Updated: version number and readme --- class/class-mainwp-child.php | 2 +- mainwp-child.php | 2 +- readme.txt | 25 +++++++++++-------------- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/class/class-mainwp-child.php b/class/class-mainwp-child.php index 17843ac2..e8218221 100644 --- a/class/class-mainwp-child.php +++ b/class/class-mainwp-child.php @@ -30,7 +30,7 @@ class MainWP_Child { * * @var string MainWP Child plugin version. */ - public static $version = '5.3-RC2'; // NOSONAR - not IP. + public static $version = '5.3'; // NOSONAR - not IP. /** * Private variable containing the latest MainWP Child update version. diff --git a/mainwp-child.php b/mainwp-child.php index bb4b296e..b019413d 100644 --- a/mainwp-child.php +++ b/mainwp-child.php @@ -12,7 +12,7 @@ * Author: MainWP * Author URI: https://mainwp.com * Text Domain: mainwp-child - * Version: 5.3-RC2 + * Version: 5.3 * Requires at least: 5.4 * Requires PHP: 7.4 */ diff --git a/readme.txt b/readme.txt index 81f9eba2..9921e542 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Plugin URI: https://mainwp.com Requires at least: 6.2 Tested up to: 6.7 Requires PHP: 7.4 -Stable tag: 5.3-RC2 +Stable tag: 5.3 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -111,20 +111,17 @@ We have an extensive FAQ with more questions and answers [here](https://mainwp.c == Changelog == += 5.3 - 11-26-2024 = -= 5.2.1 - 11-20-2024 = +* Security Enhancement: Enhanced the pre-connection process with additional security features to address recommendations from a security company. [Read more](https://mainwp.com/addressing-misguided-security-reports-why-mainwp-is-updating-its-connection-process/) +* Added: Password authorization requirement when connecting a site to enhance security. +* Added: "Clear Connection Data" button to unlock a site for a new connection. +* Added: Automatic deactivation of the MainWP Child plugin after a preset period if the site is not connected to a dashboard. +* Added: Translations for French (fr_FR), Spanish (es_ES), German (de_DE), and Portuguese (pt_BR). +* Updated: Plugin settings page design for improved consistency with the MainWP Dashboard plugin. +* Updated: Resetting of the `pubkey` value to ensure it remains intact when the plugin is deactivated. +* Updated: Compatibility with the latest WP Rocket plugin settings. -* Added: After activating the MainWP plugin, users are now redirected to the MainWP Settings page for a smoother onboarding experience. -* Updated: The Unique Security ID option is now enabled by default to enhance security for all MainWP installations. - -= 5.2 - 8-28-2024 = - -* Fixed: Issue with inserting multiple galleries in a post. -* Fixed: Problem with cloning sites on specific hosting environments. -* Fixed: Issue causing the post featured image to be removed after editing. -* Updated: System requirements checks to ensure they are current and relevant. -* Removed: Irrelevant system requirements checks for a streamlined setup process. - -[See Video Changelog](https://www.youtube.com/watch?v=GrA_faZKcfQ) +[See Video Changelog](https://youtu.be/DF0vC1RiCVI) [See changelog for all versions.](https://mainwp.com/mainwp-child-changelog.txt) From 7d246b77b621e02758012d6b95cacc6bae395019 Mon Sep 17 00:00:00 2001 From: thanghv Date: Tue, 26 Nov 2024 22:59:01 +0700 Subject: [PATCH 9/9] Updated: language files --- languages/mainwp-child-bs_BA.mo | Bin 8334 -> 0 bytes languages/mainwp-child-bs_BA.po | 411 -- languages/mainwp-child-de_DE.mo | Bin 3087 -> 85170 bytes languages/mainwp-child-de_DE.po | 5072 ++++++++++++++++++++---- languages/mainwp-child-es_ES.mo | Bin 0 -> 85531 bytes languages/mainwp-child-es_ES.po | 3956 +++++++++++++++++++ languages/mainwp-child-fr_FR.mo | Bin 12631 -> 87116 bytes languages/mainwp-child-fr_FR.po | 6383 +++++++++++++++++++++---------- languages/mainwp-child-hr_HR.mo | Bin 8378 -> 0 bytes languages/mainwp-child-hr_HR.po | 411 -- languages/mainwp-child-pt_BR.mo | Bin 0 -> 83655 bytes languages/mainwp-child-pt_BR.po | 3923 +++++++++++++++++++ languages/mainwp-child-sr_CS.mo | Bin 8334 -> 0 bytes languages/mainwp-child-sr_CS.po | 411 -- languages/mainwp-child-sr_RS.mo | Bin 8334 -> 0 bytes languages/mainwp-child-sr_RS.po | 411 -- 16 files changed, 16451 insertions(+), 4527 deletions(-) delete mode 100644 languages/mainwp-child-bs_BA.mo delete mode 100644 languages/mainwp-child-bs_BA.po create mode 100644 languages/mainwp-child-es_ES.mo create mode 100644 languages/mainwp-child-es_ES.po delete mode 100644 languages/mainwp-child-hr_HR.mo delete mode 100644 languages/mainwp-child-hr_HR.po create mode 100644 languages/mainwp-child-pt_BR.mo create mode 100644 languages/mainwp-child-pt_BR.po delete mode 100644 languages/mainwp-child-sr_CS.mo delete mode 100644 languages/mainwp-child-sr_CS.po delete mode 100644 languages/mainwp-child-sr_RS.mo delete mode 100644 languages/mainwp-child-sr_RS.po diff --git a/languages/mainwp-child-bs_BA.mo b/languages/mainwp-child-bs_BA.mo deleted file mode 100644 index 28ca35c551bdcb55fdedccbc6b3f8eee1ff8f8ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8334 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 RTy5>^F6qSET1l!?{{aL$!-N0; diff --git a/languages/mainwp-child-bs_BA.po b/languages/mainwp-child-bs_BA.po deleted file mode 100644 index d2e1c217..00000000 --- a/languages/mainwp-child-bs_BA.po +++ /dev/null @@ -1,411 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: MainWP Child v0.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-11-15 14:06:16+0000\n" -"Last-Translator: admin \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Bosnian\n" -"X-Poedit-Country: BOSNIA AND HERZEGOWINA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:132 -#: class/MainWPChild.class.php:154 -#@ mainwp-child -msgid "MainWP Settings" -msgstr "MainWP Podešavanje" - -#: class/MainWPChild.class.php:158 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Podešavanje konekcije" - -#: class/MainWPChild.class.php:166 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Zahtev za jedinstveni sigurnosni ključ" - -#: class/MainWPChild.class.php:169 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Vaš jedinstveni sigurnosni ključ je:" - -#: class/MainWPChild.class.php:173 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your
Main Dashboard. The Unique Security ID will need to match when being added to
the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "Jedinstveni sigurnosni ključ obezbeđuje dodatnu zaštitu između sajta i kontrolne table.
Jedinstveni sigurnosni ključ se mora poklapati prilikom dodavanja sajta u kontrolnu tablu.
Ova dodatna sigrnosna opcija, u većini slučajeva nije potrebna." - -#: class/MainWPChild.class.php:179 -#@ mainwp-child -msgid "Save Changes" -msgstr "Sačuvaj Promene" - -#: class/MainWPChild.class.php:424 -#@ mainwp-child -msgid "Authentication failed. Reinstall MainWP plugin please" -msgstr "Autentifikacija neuspešna. Molimo, reinstalirajte MainWP." - -#: class/MainWPChild.class.php:433 -#: class/MainWPChild.class.php:787 -#@ mainwp-child -msgid "No such user" -msgstr "Nepostojeći korisnik" - -#: class/MainWPChild.class.php:438 -#: class/MainWPChild.class.php:791 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "Korisnik nema administratorske privilegije." - -#: class/MainWPChild.class.php:528 -#@ mainwp-child -msgid "Bad request." -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:699 -#: class/MainWPChild.class.php:704 -#: class/MainWPChild.class.php:736 -#: class/MainWPChild.class.php:741 -#: class/MainWPChild.class.php:746 -#@ mainwp-child -msgid "Bad request" -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:761 -#@ mainwp-child -msgid "Invalid request" -msgstr "Nevažeći zahtev." - -#: class/MainWPChild.class.php:767 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Javni ključ je već podešen, resetujte MainWP na sajtu i pokušajte ponovo." - -#: class/MainWPChild.class.php:774 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ je potreban za ovaj sajt - Molimo, unesite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:778 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ koji ste uneli se ne poklapa sa ključem na sajtu - Molimo, ispravite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:1036 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Administratorska šifra nije mogla biti promenjena." - -#: class/MainWPChild.class.php:1058 -#@ mainwp-child -msgid "Undefined error" -msgstr "Nedefinisana greška" - -#: class/MainWPChild.class.php:1072 -#, php-format -#@ default -msgid "Username: %s" -msgstr "Korisnično ime: %s" - -#: class/MainWPChild.class.php:1073 -#, php-format -#@ default -msgid "Password: %s" -msgstr "Lozinka: %s" - -#: class/MainWPChild.class.php:1076 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "[%s] Vaše korisničko ime i lozinka" - -#: class/MainWPChild.class.php:2326 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Saj već poseduje link - Molimo, deaktivirajte, pa ponovo aktivirajte MainWP" - -#: class/MainWPChild.class.php:2433 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "WordPress sistemska greška: " - -#: class/MainWPClone.class.php:70 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Datoteka nije mogla biti uploadovana." - -#: class/MainWPClone.class.php:75 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Datoteka je prazna. Molimo, uplodujte validnu datoteku. Do ove greške moglo je doći ako je upload zabranjen u Vašoj php.ini datoteci ili ako je post_max_size definisan kao manji od upload_max_filesize u php.ini datoteci." - -#: class/MainWPClone.class.php:84 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Kloniranje ili Vratite prethodno stanje" - -#: class/MainWPClone.class.php:88 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno isključeno - da biste omogućili kloniranje, vratite se na Kontrolni sajt i uključite kloniranje na stranici Kloniranje." - -#: class/MainWPClone.class.php:94 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Direktorium u kome se nalazi Vaš sadržaj nije upisiv. Molimo, podesite ovlašćenja na 0755. " - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click " -msgstr "Proces kloniranja uspešno završen! Potrebno je da kliknete " - -#: class/MainWPClone.class.php:98 -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "here" -msgstr "ovde" - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "da biste se logovali i opet podesili linkove." - -#: class/MainWPClone.class.php:103 -#@ mainwp-child -msgid "Upload successful." -msgstr "Upload uspešan." - -#: class/MainWPClone.class.php:103 -#: class/MainWPClone.class.php:153 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Klonira/Vrati Sajt" - -#: class/MainWPClone.class.php:114 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno uključeno, ali nema sajtova sa ovlašćenjem za kloniranje. Da biste omogućili sajtu da bude kloniran, vratite se na Kontrolni sajt i odaberite selktujte sajtove na stranici Kloniranje." - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Display by:" -msgstr "Prikaži po:" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Site Name" -msgstr "Naziv Sajta" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Clone Options" -msgstr "Opcije za kloniranje" - -#: class/MainWPClone.class.php:139 -#@ mainwp-child -msgid "Clone Website" -msgstr "Kloniraj sajt" - -#: class/MainWPClone.class.php:148 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Vrati/Kloniraj sa Backup datotekom" - -#: class/MainWPClone.class.php:150 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Uploadujte backup datoteku u .zip formatu. (Maksimalna veličina datoteke za Vaš server je: " - -#: class/MainWPClone.class.php:151 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Ako image Kompletan Backup kreiran uz pomoć MainWP plugina, možete ga uploadovati ovde." - -#: class/MainWPClone.class.php:152 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Backup samo baze podataka neće raditi." - -#: class/MainWPClone.class.php:662 -#: class/MainWPClone.class.php:699 -#@ mainwp-child -msgid "No site given" -msgstr "Nema datog sajta" - -#: class/MainWPClone.class.php:667 -#: class/MainWPClone.class.php:704 -#@ mainwp-child -msgid "Site not found" -msgstr "Sajt nije pronađen" - -#: class/MainWPClone.class.php:679 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Kreiranje backup datoteke na sajtu neuspešan" - -#: class/MainWPClone.class.php:715 -#@ mainwp-child -msgid "Invalid response" -msgstr "Nevažeći odgovor" - -#: class/MainWPClone.class.php:731 -#@ mainwp-child -msgid "No download link given" -msgstr "Link za preuzimanje nije dat" - -#: class/MainWPClone.class.php:803 -#: class/MainWPClone.class.php:832 -#@ mainwp-child -msgid "No download file found" -msgstr "Datoteka za preuzimanje nije pronađena" - -#: class/MainWPClone.class.php:838 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Backup datoteka nije pronađena" - -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Process kloniranja uspešno završen! Proverite i ponovo sačuvajte perma-linkove " - -#: class/MainWPCloneInstall.class.php:79 -#: class/MainWPCloneInstall.class.php:80 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Nije kompletan backup." - -#: class/MainWPCloneInstall.class.php:81 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Backup baze podataka nije pronađen." - -#: class/MainWPCloneInstall.class.php:118 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Nije moguće prošitati konfiguracionu datoteku iz backup-a" - -#: class/MainWPCloneInstall.class.php:130 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Nevažeći host baze podataka ili korisničko ime i lozinka." - -#: class/MainWPCloneInstall.class.php:133 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Pogrešan naziv baze podataka" - -#: class/MainWPCloneInstall.class.php:239 -#@ mainwp-child -msgid "Error importing database" -msgstr "Greška pri unosu baze podataka" - -#: class/MainWPCloneInstall.class.php:244 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Greška: neočekivan kraj baze podataka" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "Glavna strana" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "Arhiva" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "Pretraži" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "Glavan strana bloga" - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Kreiranje direktorijuma nemoguće " - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Da li je direktorijum upisiv od strane servera?" - -#: class/MainWPHelper.class.php:376 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Nešto nije u redu u komunikaciji za sajtom. Molimo proverite da li ima grešaka na sajtu. Do ove greške moglo je doći ako ste pokušali klonirati sajt veći nego što je dozvoljeno u podešavanjima servera." - -#: class/MainWPHelper.class.php:380 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "Child Plugin je isključen ili je sigurnosni ključ pogrešan. Molimo, sinhronizujte sa Vašnom glavnom instalacijom." - -#: class/MainWPClone.class.php:15 -#@ mainwp-child -msgid "MainWP Clone" -msgstr "MainWP Kloniranje" - -#: class/MainWPClone.class.php:221 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Ovo je veliki sajt (%dMB), kloniranje verovatno neće uspeti." - -#: class/MainWPClone.class.php:222 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Nastavi u svakom slučaju?" - -#: class/MainWPClone.class.php:223 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Kreiranje backupa na %s očekivana veličina %dMB (očekivano vreme trajanja %d sekundi)" - -#: class/MainWPClone.class.php:224 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Backup kreiran na %s puna veličina za download: %dMB" - -#: class/MainWPClone.class.php:225 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Preuzimanje backupa" - -#: class/MainWPClone.class.php:226 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Backup preuzet" - -#: class/MainWPClone.class.php:227 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Raspakivanje backupa i ažuriranje baze podataka u toku, ovo može potrajati. Molimo, budite strpljivi." - -#: class/MainWPClone.class.php:228 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Kloniranje uspešno završeno!" - diff --git a/languages/mainwp-child-de_DE.mo b/languages/mainwp-child-de_DE.mo index d692ae48e16bb5603b72348d3312b8619e10f397..b60131fc001ac2b08065f95923def2e2a3bda0bb 100644 GIT binary patch literal 85170 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 literal 3087 zcmbuAO^6&t6vqp*(YVHs#P1lj)ZDaZca}splkCc5GMk-bKRVkp*+dc2GhH*&PES{- zx_ZBiC&7yt@DMKs#DjteqC!wGBC>c8FDeG~A`0dr!d~J*Q1Sn|Yi4(qKR@mqIM47mj{n{G-+lvGjQzP~oq2ry3-)c`&;VoifaBnHum;`;*1@fyZ~PLZ z`Dej9z?Z>0!3*Fn@O|(x@GFq!t%0=uZ}47l0LBh*H+VCc18IB|4@_a>Ae~bnQXFSNisKbyziId(cq{y?;O*cy#{LPqj{JTJ!_b@mJ=0K#v_Jj9X8d>0Kr z0V$r(LAvknKsx_>kk(%@{%uH(?t42(@!Ss5z7HAhH9QJZ+^0dRduZ$zL8{lQAjSC_ zNOgW2r2IbusV`T}_+`T@hQEUp*H%nM3D{1<2MqUsG;V=(ZUIE-Y!<|aoiY@LXFxjt z1;cY7<@E+g>)r#Yjvt%x&p?X*Ymnw$1`!hb#rW4iy3ea1I~Z#v!`65yQA&iGANG}K zXsMP92ZziMKNv@DI1Zb@ij9VdG%v|eV}UWPQrlIr*x*);wy&{Oq69nSHabbfN^Q~T zu#)UXfzX22=B8kzyYLAactWvW6t>%<@k-y}G?b4+ZCAH@zF?V`mqa7ce%RvK_;rTT zrJ>sute+uI&9YKbvGmCU*=o^lo*%pQKzKQJL}+)>UFH>pshVy>u*quG=94nk={JW> zO4(u4qKlI8T8y~a%utcdh$YRv1cu~-PKbF^CZU(h<@hO~b8L2Eg3Zpb*+?ii%V0Uy zqRZ?_n-_yXE>d~0CK6%lD=+y??j%tpl};TMyIR`haNMTg)6x^^@X6_^^-(vyT2te+ zhVcti9r00R!AR)-{|n8NjEC6Ib?>rDtew0aojW0{LPR}5zUD+iHJ3y z7P>9HzFGBA@Hr7Dfo9I}sVqFF(H3432<8a2AQblQ`eDyNLp1$XLPe2%XT|OfSHh<3 zeV?J*G<&2$^u8;pWkUwNF~@I(ZrX=tf+L%YF51#TgYr2k5u3(@m^n$Sg)D@}Pq+at zFAcvI1=986UW?XZ3b{qCpG}&V%Co6B=~nA65VMth4ljUJ@vIX<#mJ|?r(Hjsw|S}U z2OeJ-&W-HPjSSke)|^=IX@+$e*HPdj!}-0|@IGsJgy-{xk^P0e`NxOxH#l9HF0b#F z&kYZnH^{0kM_8!QcSBKtQx5P(_DYV`suR}e`aHVyrchQnY)B8+UErg2Uk};=iXK=K zQg!1352MtK$3_nD?CV&_9~tBM1A`~6BO;`(m8!r?&J5VDl#Lw|ekgc$Fh@4fBIHhTw35(0;mBgmVZ|ACNI(Td zJ&xA}NvOb0>iS=jl#nLIdi9cC(U4-lnF`M)FNsv@-7HR<=0K^Kjn@%BK0Sq^;!_QI zdaL+ZS<%@Ax7<2z;J+$W4mDaD@jy)IRTQl6QJGk8uv4ulhD`;rHiCug4D}*}j6aQ1 z;Mbrf>gd~b%_28mtG*&_)GX`R|JE!ET9Nev8r!H9`jh0buVU8{t#UVNO0*Svo6n\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: German\n" -"X-Poedit-Country: GERMANY\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:251 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Verbindungseinstellungen" - -#: class/MainWPChild.class.php:259 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Eine eindeutige Sicherheits-ID" - -#: class/MainWPChild.class.php:262 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Ihre eindeutige Sicherheits-ID ist:" - -#: class/MainWPChild.class.php:266 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your
Main Dashboard. The Unique Security ID will need to match when being added to
the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "Die eindeutige Sicherheits-ID bringt zusätzlichen Schutz zwischen dem Client und Ihrem
MainWP Dashboard. Die eindeutige Sicherheits-ID muß übereinstimmen, wenn sie im MainWP Dashboard aufgenommen wird.
Dies ist eine zusätzliche Sicherheit und ist in den meisten Fällen nicht erforderlich." - -#: class/MainWPChild.class.php:272 -#@ mainwp-child -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: class/MainWPChild.class.php:531 -#@ mainwp-child -msgid "Authentication failed. Reinstall MainWP plugin please" -msgstr "Authentifizierung fehlgeschlagen. Installieren Sie bitte das MainWP Plugin erneut." - -#: class/MainWPChild.class.php:540 -#: class/MainWPChild.class.php:1103 -#@ mainwp-child -msgid "No such user" -msgstr "Keine solche Benutzer" - -#: class/MainWPChild.class.php:545 -#: class/MainWPChild.class.php:1107 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "Benutzer ist kein Administrator" - -#: class/MainWPChild.class.php:658 -#@ mainwp-child -msgid "Bad request." -msgstr "Fehlerhafte Anforderung." - -#: class/MainWPChild.class.php:884 -#: class/MainWPChild.class.php:909 -#: class/MainWPChild.class.php:962 -#: class/MainWPChild.class.php:988 -#: class/MainWPChild.class.php:995 -#@ mainwp-child -msgid "Bad request" -msgstr "Fehlerhafte Anforderung" - -#: class/MainWPChild.class.php:1077 -#@ mainwp-child -msgid "Invalid request" -msgstr "Ungültige Anforderung" - -#: class/MainWPChild.class.php:1083 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Öffentlicher Schlüssel bereits festgelegt, setzen Sie die MainWP Plugin auf Ihrer Website erneut auf und versuchen Sie es noch einmal" - -#: class/MainWPChild.class.php:1090 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Dieser Client erfordert eine eindeutige Sicherheits-ID. Bitte geben Sie diese ein bevor eine Verbindung hergestellt werden kann." - -#: class/MainWPChild.class.php:1094 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "Die eindeutige Sicherheits-ID die Sie eingegeben haben, entspricht nicht der Client Security ID. Bitte verbessern Sie dies bevor eine Verbindung hergestellt werden kann." - -#: class/MainWPChild.class.php:1359 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Das Admin-Passwort kann nicht geändern werden." - -#: class/MainWPChild.class.php:1381 -#@ mainwp-child -msgid "Undefined error" -msgstr "Undefinierter Fehler" - -#: class/MainWPChild.class.php:1395 -#, php-format -#@ default -msgid "Username: %s" -msgstr "Benutzername: %s" - -#: class/MainWPChild.class.php:1396 -#, php-format -#@ default -msgid "Password: %s" -msgstr "Passwort: %s" - -#: class/MainWPChild.class.php:1399 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "[%s] Dein Benutzername und Passwort" - -#: class/MainWPChild.class.php:2828 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Diese Website enthält bereits diesen Link" - -#: class/MainWPChild.class.php:2950 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "Wordpress-Dateisystem-Fehler:" - -#: class/MainWPChildServerInformation.class.php:12 -#@ mainwp -msgid "Server Configuration" -msgstr "Server-Konfiguration" - -#: class/MainWPChildServerInformation.class.php:13 -#@ mainwp -msgid "Suggested Value" -msgstr "Empfohlener Wert" - -#: class/MainWPChildServerInformation.class.php:14 -#: class/MainWPChildServerInformation.class.php:56 -#@ mainwp -msgid "Value" -msgstr "Wert" - -#: class/MainWPChildServerInformation.class.php:15 -#: class/MainWPChildServerInformation.class.php:41 -#@ mainwp -msgid "Status" -msgstr "Status" - -#: class/MainWPChildServerInformation.class.php:37 -#@ mainwp -msgid "Directory name" -msgstr "Verzeichnisname" - -#: class/MainWPChildServerInformation.class.php:38 -#@ mainwp -msgid "Path" -msgstr "Pfad" - -#: class/MainWPChildServerInformation.class.php:39 -#@ mainwp -msgid "Check" -msgstr "Überprüfen" - -#: class/MainWPChildServerInformation.class.php:40 -#@ mainwp -msgid "Result" -msgstr "Ergebnis" - -#: class/MainWPChildServerInformation.class.php:55 -#@ mainwp -msgid "Server Info" -msgstr "Server Info" - -#: class/MainWPChildServerInformation.class.php:60 -#@ mainwp -msgid "WordPress Root Directory" -msgstr "WordPress Root-Verzeichnis" - -#: class/MainWPChildServerInformation.class.php:61 -#@ mainwp -msgid "Server Name" -msgstr "Server Name" - -#: class/MainWPChildServerInformation.class.php:62 -#@ mainwp -msgid "Server Sofware" -msgstr "Server Sofware" - -#: class/MainWPChildServerInformation.class.php:63 -#@ mainwp -msgid "Operating System" -msgstr "Betriebssystem" - -#: class/MainWPChildServerInformation.class.php:64 -#@ mainwp -msgid "Architecture" -msgstr "Architektur" - -#: class/MainWPChildServerInformation.class.php:65 -#@ mainwp -msgid "Server IP" -msgstr "Server IP" - -#: class/MainWPChildServerInformation.class.php:66 -#@ mainwp -msgid "Server Protocol" -msgstr "Server-Protokoll" - -#: class/MainWPChildServerInformation.class.php:67 -#@ mainwp -msgid "HTTP Host" -msgstr "HTTP-Host" - -#: class/MainWPChildServerInformation.class.php:68 -#@ mainwp -msgid "Server Admin" -msgstr "Server Admin" - -#: class/MainWPChildServerInformation.class.php:69 -#@ mainwp -msgid "Server Port" -msgstr "Server Port" - -#: class/MainWPChildServerInformation.class.php:70 -#@ mainwp -msgid "Getaway Interface" -msgstr "Getaway Schnittstelle" - -#: class/MainWPChildServerInformation.class.php:71 -#@ mainwp -msgid "Memory Usage" -msgstr "Speicher Benutzung" - -#: class/MainWPChildServerInformation.class.php:72 -#@ mainwp -msgid "HTTPS" -msgstr "HTTPS" - -#: class/MainWPChildServerInformation.class.php:73 -#@ mainwp -msgid "User Agent" -msgstr "User Agent" - -#: class/MainWPChildServerInformation.class.php:74 -#@ mainwp -msgid "Complete URL" -msgstr "Komplette URL" - -#: class/MainWPChildServerInformation.class.php:75 -#@ mainwp -msgid "Request Method" -msgstr "Anfrage Methode" - -#: class/MainWPChildServerInformation.class.php:76 -#@ mainwp -msgid "Request Time" -msgstr "Antwort Zeit" - -#: class/MainWPChildServerInformation.class.php:77 -#@ mainwp -msgid "Query String" -msgstr "Übergabe String" - -#: class/MainWPChildServerInformation.class.php:78 -#@ mainwp -msgid "Accept Content" -msgstr "Inhalt akzeptieren" - -#: class/MainWPChildServerInformation.class.php:79 -#@ mainwp -msgid "Accept-Charset Content" -msgstr "Inhaltszeichen akzeptieren" - -#: class/MainWPChildServerInformation.class.php:80 -#@ mainwp -msgid "Currently Executing Script Pathname" -msgstr "Aktuell ausgeführte Skript Pfadname" - -#: class/MainWPChildServerInformation.class.php:81 -#@ mainwp -msgid "Server Signature" -msgstr "Signature Server" - -#: class/MainWPChildServerInformation.class.php:82 -#@ mainwp -msgid "Currently Executing Script" -msgstr "Aktuell ausgeführte Skripte" - -#: class/MainWPChildServerInformation.class.php:83 -#@ mainwp -msgid "Path Translated" -msgstr "Pfad Übersetzt" - -#: class/MainWPChildServerInformation.class.php:84 -#@ mainwp -msgid "Current Script Path" -msgstr "Aktuelles Skript Pfad" - -#: class/MainWPChildServerInformation.class.php:85 -#@ mainwp -msgid "Current Page URI" -msgstr "Aktuelle Seiten URI" - -#: class/MainWPChildServerInformation.class.php:86 -#@ mainwp -msgid "Remote Address" -msgstr "Entfernte Adresse" - -#: class/MainWPChildServerInformation.class.php:87 -#@ mainwp -msgid "Remote Host" -msgstr "Entfernter Host" - -#: class/MainWPChildServerInformation.class.php:88 -#@ mainwp -msgid "Remote Port" -msgstr "Entfernter Port" - -#: class/MainWPChildServerInformation.class.php:89 -#@ mainwp -msgid "PHP Safe Mode" -msgstr "PHP Safe Mode" - -#: class/MainWPChildServerInformation.class.php:90 -#@ mainwp -msgid "PHP Allow URL fopen" -msgstr "PHP erlaubt URL fopen" - -#: class/MainWPChildServerInformation.class.php:91 -#@ mainwp -msgid "PHP Exif Support" -msgstr "PHP unterstützt Exif" - -#: class/MainWPChildServerInformation.class.php:92 -#@ mainwp -msgid "PHP IPTC Support" -msgstr "PHP unterstützt IPTC" - -#: class/MainWPChildServerInformation.class.php:93 -#@ mainwp -msgid "PHP XML Support" -msgstr "PHP unterstützt XML" - -#: class/MainWPChildServerInformation.class.php:94 -#@ mainwp -msgid "SQL Mode" -msgstr "SQL Mode" - -#: class/MainWPChildServerInformation.class.php:109 -#@ mainwp -msgid "Next due" -msgstr "Weiter durch" - -#: class/MainWPChildServerInformation.class.php:110 -#@ mainwp -msgid "Schedule" -msgstr "Zeitplan" - -#: class/MainWPChildServerInformation.class.php:111 -#@ mainwp -msgid "Hook" -msgstr "Haken" - -#: class/MainWPChildServerInformation.class.php:245 -#@ default -msgid " MB" -msgstr " MB" - -#: class/MainWPChildServerInformation.class.php:246 -#: class/MainWPChildServerInformation.class.php:336 -#: class/MainWPChildServerInformation.class.php:371 -#: class/MainWPChildServerInformation.class.php:400 -#@ default -#@ mainwp -msgid "N/A" -msgstr "N/A" - -#: class/MainWPChildServerInformation.class.php:255 -#: class/MainWPChildServerInformation.class.php:269 -#: class/MainWPChildServerInformation.class.php:358 -#@ default -#@ mainwp -msgid "ON" -msgstr "AN" - -#: class/MainWPChildServerInformation.class.php:256 -#: class/MainWPChildServerInformation.class.php:270 -#: class/MainWPChildServerInformation.class.php:361 -#@ default -#@ mainwp -msgid "OFF" -msgstr "AUS" - -#: class/MainWPChildServerInformation.class.php:264 -#@ default -msgid "NOT SET" -msgstr "Nicht Eingestellt" - -#: class/MainWPChildServerInformation.class.php:275 -#: class/MainWPChildServerInformation.class.php:281 -#: class/MainWPChildServerInformation.class.php:287 -#@ default -msgid "YES" -msgstr "Ja" - -#: class/MainWPChildServerInformation.class.php:276 -#: class/MainWPChildServerInformation.class.php:282 -#: class/MainWPChildServerInformation.class.php:288 -#@ default -msgid "NO" -msgstr "Nein" - -#: class/MainWPClone.class.php:80 -#: class/MainWPClone.class.php:192 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Datei konnte nicht hochgeladen werden." - -#: class/MainWPClone.class.php:85 -#: class/MainWPClone.class.php:197 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Die Datei ist leer. Bitte laden Sie etwas mit Inhalt. Dieser Upload-Fehler könnte auch verursacht werden durhc eine Einstellung in der php.ini oder durch einstellung von post_max_size als kleiner als upload_max_filesize in der php.ini." - -#: class/MainWPClone.class.php:94 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Klonen oder wiederherstellen" - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Klonen ist derzeit aus - Zum aktivieren des Klones, auf der MainWP Dashboards auf Klonen gehen" - -#: class/MainWPClone.class.php:106 -#: class/MainWPClone.class.php:211 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Das Inhalte Verzeichnis ist nicht beschreibbar. Bitte die Berechtigung setzen auf 0755." - -#: class/MainWPClone.class.php:110 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click " -msgstr "Klonen erfolgreich abgeschlossen! Sie müssen nun Klicken" - -#: class/MainWPClone.class.php:110 -#: class/MainWPClone.class.php:215 -#: class/MainWPClone.class.php:1333 -#: class/MainWPClone.class.php:1362 -#@ mainwp-child -msgid "here" -msgstr "hier" - -#: class/MainWPClone.class.php:110 -#: class/MainWPClone.class.php:215 -#: class/MainWPClone.class.php:1362 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "sich erneut anmelden, um den Admin und erneut speichern des Permalinks." - -#: class/MainWPClone.class.php:115 -#: class/MainWPClone.class.php:220 -#@ mainwp-child -msgid "Upload successful." -msgstr "Hochladen erfolgreich." - -#: class/MainWPClone.class.php:115 -#: class/MainWPClone.class.php:165 -#: class/MainWPClone.class.php:390 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Klonen / Wiederherstellen Webseite" - -#: class/MainWPClone.class.php:126 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Klonen ist derzeit erlaubt, aber keine Seite hat es erlaubt. " - -#: class/MainWPClone.class.php:134 -#@ mainwp-child -msgid "Display by:" -msgstr "Anzeige von:" - -#: class/MainWPClone.class.php:134 -#@ mainwp-child -msgid "Site Name" -msgstr "Seitenname" - -#: class/MainWPClone.class.php:134 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:134 -#@ mainwp-child -msgid "Clone Options" -msgstr "Einstellung Klonen" - -#: class/MainWPClone.class.php:151 -#@ mainwp-child -msgid "Clone Website" -msgstr "Webseite Klonen" - -#: class/MainWPClone.class.php:160 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Wiederherstellen/Klonen von Datensicherung" - -#: class/MainWPClone.class.php:162 -#: class/MainWPClone.class.php:229 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Hochladen der Datensicherungsdatei im .zip Format (Maximale Dateigröße Server-Einstellungen:" - -#: class/MainWPClone.class.php:163 -#: class/MainWPClone.class.php:230 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Wenn Sie eine vollständige Sicherung von Ihrem Netzwerk-Dashboard erstellt haben, können Sie es von hier Hochladen um es wiederherzustellen." - -#: class/MainWPClone.class.php:164 -#: class/MainWPClone.class.php:231 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Eine einziges Datenbank-Backup wird nicht funktionieren." - -#: class/MainWPClone.class.php:468 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Dies ist eine große Seite (%dMB), der Klon-Prozess wird mehr als wahrscheinlich scheitern." - -#: class/MainWPClone.class.php:469 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Trotzdem fortfahren?" - -#: class/MainWPClone.class.php:470 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Erstellen von Backup auf %s erwarteten Größe: %dMB (geschätzte Zeit: %d in Sekunden)" - -#: class/MainWPClone.class.php:471 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Backup erstellt auf %s Gesamtgröße zum Download: %dMB" - -#: class/MainWPClone.class.php:472 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Herunterladen der Datensicherung" - -#: class/MainWPClone.class.php:473 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Datensicherung heruntergeladen" - -#: class/MainWPClone.class.php:474 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Auspacken der Datensicherung und Aktualisierung Ihre Datenbank. Dies könnte eine Weile dauern. Bitte haben Sie Geduld." - -#: class/MainWPClone.class.php:475 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Klonen erfolgreich abgeschlossen!" - -#: class/MainWPClone.class.php:1019 -#: class/MainWPClone.class.php:1056 -#@ mainwp-child -msgid "No site given" -msgstr "Kein Seite angegeben" - -#: class/MainWPClone.class.php:1024 -#: class/MainWPClone.class.php:1061 -#@ mainwp-child -msgid "Site not found" -msgstr "Seite nicht gefunden" - -#: class/MainWPClone.class.php:1036 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Konnte Datensicherungsdatei nicht auf dem Client erstellen" - -#: class/MainWPClone.class.php:1072 -#@ mainwp-child -msgid "Invalid response" -msgstr "Ungültige Antwort" - -#: class/MainWPClone.class.php:1088 -#@ mainwp-child -msgid "No download link given" -msgstr "Keinen Download-Link angegeben" - -#: class/MainWPClone.class.php:1163 -#: class/MainWPClone.class.php:1189 -#@ mainwp-child -msgid "No download file found" -msgstr "Keine Download-Datei gefunden" - -#: class/MainWPClone.class.php:1195 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Datensicherungsdatei nicht gefunden" - -#: class/MainWPClone.class.php:1333 -#@ mainwp-child -msgid "Restore process completed successfully! Check and re-save permalinks " -msgstr "Wiederherstellungs-Vorgang erfolgreich abgeschlossen! Überprüfen und Permalinks erneut speichern" - -#: class/MainWPClone.class.php:1333 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Klonen erfolgreich abgeschlossen! Überprüfen und Permalinks erneut speichern" - -#: class/MainWPClone.class.php:205 -#: class/MainWPClone.class.php:1357 -#@ mainwp-child -msgid "Restore" -msgstr "Wiederherstellen" - -#: class/MainWPClone.class.php:1359 -#@ mainwp-child -msgid "Be sure to use a FULL backup created by your Network dashboard, if critical folders are excluded it may result in a not working installation." -msgstr "Achten Sie darauf, eine vollständige Sicherung von Ihrem MainWP Dashboard zu erstellen." - -#: class/MainWPClone.class.php:1360 -#@ mainwp-child -msgid "Start Restore" -msgstr "Wiederherstellung starten" - -#: class/MainWPClone.class.php:1360 -#@ mainwp-child -msgid "CAUTION: this will overwrite your existing site." -msgstr "ACHTUNG: dies wird Ihre bestehende Seite überschreiben." - -#: class/MainWPClone.class.php:215 -#: class/MainWPClone.class.php:1362 -#@ mainwp-child -msgid "Restore process completed successfully! You will now need to click " -msgstr "Wiederherstellungsvorgang erfolgreich abgeschlossen! Sie müssen nun klicken" - -#: class/MainWPClone.class.php:1366 -#@ mainwp-child -msgid "Restore process completed successfully!" -msgstr "Wiederherstellungsvorgang erfolgreich abgeschlossen!" - -#: class/MainWPCloneInstall.class.php:84 -#: class/MainWPCloneInstall.class.php:85 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Keine gesamte Datensicherung." - -#: class/MainWPCloneInstall.class.php:86 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Datenbank-Sicherung nicht gefunden." - -#: class/MainWPCloneInstall.class.php:123 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Kann Konfigurationsdatei nicht lesen aus der Datensicherung" - -#: class/MainWPCloneInstall.class.php:138 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Ungültige Datenbank-Host oder Benutzer / Passwort." - -#: class/MainWPCloneInstall.class.php:141 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Ungültiger Datenbanknamen" - -#: class/MainWPCloneInstall.class.php:276 -#: class/MainWPCloneInstall.class.php:380 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Fehler: unerwartetes Ende der Datei für die Datenbank" - -#: class/MainWPCloneInstall.class.php:375 -#@ mainwp-child -msgid "Error importing database" -msgstr "Fehler beim Importieren der Datenbank" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "Home Page" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "Archivieren" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "Suchen" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "Blog Startseite" - -#: class/MainWPHelper.class.php:258 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Verzeichnis kann nicht erstellt" - -#: class/MainWPHelper.class.php:258 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Ist das übergeordnete Verzeichnis durch den Server beschreibbar?" - -#: class/MainWPHelper.class.php:450 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Etwas ist schiefgelaufen, während der Verbindung zum Client. Bitte überprüfen Sie, ob es einen Fehler von der Client Webseite ist." - -#: class/MainWPHelper.class.php:454 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "MainWP Clhild Plugin ist deaktiviert oder der Sicherheitsschlüssel ist falsch." - -#: class/MainWPChildBranding.class.php:447 -#@ default -msgid "Error: send mail failed." -msgstr "Fehler: E-Mail senden gescheitert." - -#: class/MainWPChildBranding.class.php:485 -#@ default -msgid "Submit" -msgstr "Senden" - -#: class/MainWPClone.class.php:17 -#@ mainwp-child -msgid " Clone" -msgstr "Klon" - -#: class/MainWPClone.class.php:25 -#@ mainwp-child -msgid " Restore" -msgstr " Wiederherstellen" - -#: class/MainWPClone.class.php:160 -#: class/MainWPClone.class.php:205 -#@ mainwp-child -msgid "Option 1:" -msgstr "Option 1:" - -#: class/MainWPClone.class.php:220 -#: class/MainWPClone.class.php:232 -#@ mainwp-child -msgid "Restore Website" -msgstr "Wiederherstellen Webseite" - -#: class/MainWPClone.class.php:274 -#@ mainwp-child -msgid "Option 2:" -msgstr "Option 2:" - -#: class/MainWPClone.class.php:274 -#@ mainwp-child -msgid "Restore/Clone From Server" -msgstr "Wiederherstellen / Klonen vom Server" - -#: class/MainWPClone.class.php:275 -#@ mainwp-child -msgid "If you have uploaded a FULL backup to your server (via FTP or other means) you can use this section to locate the zip file and select it. A database only backup will not work." -msgstr "Wenn Sie eine vollständige Sicherung auf den Server hochgeladen haben (via FTP oder andere Mittel) können Sie diesen Abschnitt verwenden um die ZIP-Datei auszuwählen. Nur ein Datenbank Backup wird nicht funktionieren." - -#: class/MainWPClone.class.php:278 -#@ mainwp-child -msgid "Root directory is not readable. Please contact with site administrator to correct." -msgstr "Root-Verzeichnis ist nicht lesbar. Bitte Administrator kontaktieren zum korrigieren." - -#: class/MainWPClone.class.php:294 -#@ mainwp -msgid "Current Directory: " -msgstr "Aktuelles Verzeichnis: " - -#: class/MainWPClone.class.php:296 -#@ mainwp -msgid "Site Root" -msgstr "Site Root" - -#: class/MainWPClone.class.php:297 -#@ mainwp -msgid "Backup" -msgstr "Sicherungskopie" - -#: class/MainWPClone.class.php:299 -#@ mainwp -msgid "Uploads Folder" -msgstr "Uploads Ordner" - -#: class/MainWPClone.class.php:300 -#@ mainwp -msgid "Content Folder" -msgstr "Inhalts Ordner" - -#: class/MainWPClone.class.php:313 -#@ mainwp -msgid "Quick Jump:" -msgstr "Quick Jump:" - -#: class/MainWPClone.class.php:343 -#@ mainwp-child -msgid "Select File" -msgstr "Wählen Sie Datei" - -#: class/MainWPClone.class.php:348 -#@ mainwp -msgid "Parent Folder" -msgstr "Parent Folder" - -#: class/MainWPChildServerInformation.class.php:468 -#@ mainwp -msgid "Time" -msgstr "Zeit" - -#: class/MainWPChildServerInformation.class.php:469 -#@ mainwp -msgid "Error" -msgstr "Fehler" - -#: class/MainWPChildServerInformation.class.php:483 -#@ mainwp -msgid "Error logging disabled." -msgstr "Fehlerprotokollierung deaktiviert." - -#: class/MainWPChildServerInformation.class.php:501 -#@ mainwp -msgid "No errors found... Yet." -msgstr "Keine Fehler gefunden ... zurzeit." - +msgid "" +msgstr "" +"Project-Id-Version: MainWP Child\n" +"POT-Creation-Date: 2024-11-20 19:22+0100\n" +"PO-Revision-Date: 2024-11-20 19:24+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-Flags-xgettext: --add-comments=translators:\n" +"X-Poedit-WPHeader: mainwp-child.php\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.min.js\n" +"X-Poedit-SearchPathExcluded-1: libs/phpseclib/vendor\n" + +#: class/class-mainwp-backup.php:192 +msgid "Another backup process is running. Please, try again later." +msgstr "" +"Es läuft ein anderer Sicherungsprozess. Bitte versuchen Sie es später noch " +"einmal." + +#: class/class-mainwp-child-actions.php:353 +#, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" +msgid "Installed %1$s: %2$s %3$s" +msgstr "Installiert %1$s: %2$s %3$s" + +#: class/class-mainwp-child-actions.php:368 +#, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" +msgid "Updated %1$s: %2$s %3$s" +msgstr "Aktualisierte %1$s: %2$s %3$s" + +#: class/class-mainwp-child-actions.php:463 +#: class/class-mainwp-child-actions.php:490 +#: class/class-mainwp-child-actions.php:587 +msgid "network wide" +msgstr "netzwerkweit" + +#: class/class-mainwp-child-actions.php:471 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin activated %2$s" +msgstr "\"%1$s\" Plugin aktiviert %2$s" + +#: class/class-mainwp-child-actions.php:494 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin deactivated %2$s" +msgstr "\"%1$s\" Plugin deaktiviert %2$s" + +#: class/class-mainwp-child-actions.php:513 +#, php-format +msgid "\"%s\" theme activated" +msgstr "\"%s\" Thema aktiviert" + +#: class/class-mainwp-child-actions.php:544 +#, php-format +msgid "\"%s\" theme deleted" +msgstr "\"%s\" Thema gelöscht" + +#: class/class-mainwp-child-actions.php:590 +#, php-format +msgid "\"%s\" plugin deleted" +msgstr "\"%s\" Plugin gelöscht" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:622 +#: class/class-mainwp-child-actions.php:650 +#, php-format +msgid "WordPress auto-updated to %s" +msgstr "WordPress wird automatisch auf %s aktualisiert" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:653 +#, php-format +msgid "WordPress updated to %s" +msgstr "WordPress aktualisiert auf %s" + +# @ default +# @ mainwp +#: class/class-mainwp-child-actions.php:893 +#: class/class-mainwp-child-server-information-base.php:513 +#: class/class-mainwp-child-server-information-base.php:662 +msgid "N/A" +msgstr "N/A" + +#: class/class-mainwp-child-back-up-buddy.php:356 +msgid "Please install the BackupBuddy plugin on the child site." +msgstr "Bitte installieren Sie das BackupBuddy-Plugin auf der Child-Site." + +#: class/class-mainwp-child-back-up-buddy.php:541 +#: class/class-mainwp-child-back-up-wordpress.php:594 +#: class/class-mainwp-child-bulk-settings-manager.php:279 +msgid "Invalid data. Please check and try again." +msgstr "Ungültige Daten. Bitte überprüfen Sie und versuchen Sie es erneut." + +#: class/class-mainwp-child-back-up-buddy.php:720 +msgid "Remote destination settings were not reset." +msgstr "Die Einstellungen des entfernten Ziels wurden nicht zurückgesetzt." + +#: class/class-mainwp-child-back-up-buddy.php:729 +msgid "Plugin settings have been reset to defaults." +msgstr "Die Plugin-Einstellungen wurden auf die Standardwerte zurückgesetzt." + +#: class/class-mainwp-child-back-up-buddy.php:768 +msgid "Never" +msgstr "Niemals" + +#: class/class-mainwp-child-back-up-buddy.php:773 +#: class/class-mainwp-child-updraft-plus-backups.php:398 +#: class/class-mainwp-child-updraft-plus-backups.php:3848 +msgid "Unknown" +msgstr "Unbekannt" + +#: class/class-mainwp-child-back-up-buddy.php:830 +msgid "" +"Only run for main site or standalone. Multisite subsites do not allow " +"schedules" +msgstr "" +"Läuft nur für die Hauptsite oder die eigenständige Site. Multisite " +"Unterseiten erlauben keine Zeitpläne" + +#: class/class-mainwp-child-back-up-buddy.php:836 +msgid "Error: not found the backup schedule or invalid data" +msgstr "" +"Fehler: Der Sicherungsplan wurde nicht gefunden oder die Daten sind ungültig" + +#: class/class-mainwp-child-back-up-buddy.php:839 +msgid "" +"Note: If there is no site activity there may be delays between steps in the " +"backup. Access the site or use a 3rd party service, such as a free pinging " +"service, to generate site activity." +msgstr "" +"Hinweis: Wenn es keine Site-Aktivität gibt, kann es zu Verzögerungen " +"zwischen den einzelnen Schritten der Sicherung kommen. Greifen Sie auf die " +"Website zu oder verwenden Sie einen Drittanbieterdienst, wie z. B. einen " +"kostenlosen Ping-Dienst, um Website-Aktivität zu erzeugen." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:864 +msgid "Invalid schedule data" +msgstr "Ungültige Anforderung" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:904 +msgid "Invalid profile data" +msgstr "Ungültige Anforderung" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "Backup Status" +msgstr "Status" + +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "View Details" +msgstr "Details anzeigen" + +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +msgid "View Backup Log" +msgstr "Sicherungsprotokoll anzeigen" + +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +#: class/class-mainwp-child-updraft-plus-backups.php:3416 +msgid "View Log" +msgstr "Protokoll ansehen" + +#: class/class-mainwp-child-back-up-buddy.php:1755 +#: class/class-mainwp-child-back-up-buddy.php:1980 +msgid "Unable to access fileoptions data file." +msgstr "Der Zugriff auf die Datei fileoptions ist nicht möglich." + +#: class/class-mainwp-child-back-up-buddy.php:1778 +msgid "Backup Process Technical Details" +msgstr "Technische Details des Sicherungsprozesses" + +#: class/class-mainwp-child-back-up-buddy.php:1863 +msgid "Empty schedule ids" +msgstr "Leere Zeitplan-IDs" + +#: class/class-mainwp-child-back-up-buddy.php:2040 +msgid "Integrity Test" +msgstr "Integritätstest" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2041 +#: class/class-mainwp-child-back-up-wordpress.php:903 +#: class/class-mainwp-child-ithemes-security.php:949 +#: class/class-mainwp-child-ithemes-security.php:958 +#: class/class-mainwp-child-server-information.php:428 +msgid "Status" +msgstr "Status" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2152 +msgid "Backup Steps" +msgstr "Sicherungskopie" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2153 +#: class/class-mainwp-child-server-information.php:1078 +msgid "Time" +msgstr "Zeit" + +#: class/class-mainwp-child-back-up-buddy.php:2154 +msgid "Attempts" +msgstr "Versuche" + +#: class/class-mainwp-child-back-up-buddy.php:2158 +msgid "No step statistics were found for this backup." +msgstr "Für diese Sicherung wurde keine Schrittstatistik gefunden." + +#: class/class-mainwp-child-back-up-buddy.php:2298 +#: class/class-mainwp-child-back-up-buddy.php:2328 +msgid "" +"Fatal Error #4344443: Backup failure. Please see any errors listed in the " +"Status Log for details." +msgstr "" +"Fataler Fehler #4344443: Sicherung fehlgeschlagen. Bitte sehen Sie sich die " +"im Statusprotokoll aufgeführten Fehler an." + +#: class/class-mainwp-child-back-up-buddy.php:2570 +msgid "Nothing has been logged." +msgstr "Es wurde nichts protokolliert." + +#: class/class-mainwp-child-back-up-buddy.php:2700 +msgid "Malware Scan URL" +msgstr "Malware-Scan-URL" + +#: class/class-mainwp-child-back-up-buddy.php:2710 +msgid "" +"ERROR: You are currently running your site locally. Your site must be " +"internet accessible to scan." +msgstr "" +"ERROR: Sie führen Ihre Website derzeit lokal aus. Zum Scannen muss Ihre " +"Website über das Internet zugänglich sein." + +#: class/class-mainwp-child-back-up-buddy.php:2744 +msgid "ERROR #24452. Unable to load Malware Scan results. Details:" +msgstr "" +"ERROR #24452. Ergebnisse des Malware-Scans können nicht geladen werden. " +"Einzelheiten:" + +#: class/class-mainwp-child-back-up-buddy.php:2754 +msgid "An error was encountered attempting to scan this site." +msgstr "Beim Versuch, diese Seite zu scannen, ist ein Fehler aufgetreten." + +#: class/class-mainwp-child-back-up-buddy.php:2755 +msgid "" +"An internet connection is required and this site must be accessible on the " +"public internet." +msgstr "" +"Eine Internetverbindung ist erforderlich und die Seite muss über das " +"öffentliche Internet zugänglich sein." + +#: class/class-mainwp-child-back-up-buddy.php:2788 +#: class/class-mainwp-child-back-up-buddy.php:2813 +#: class/class-mainwp-child-back-up-buddy.php:2830 +#: class/class-mainwp-child-back-up-buddy.php:2839 +#: class/class-mainwp-child-back-up-buddy.php:2848 +#: class/class-mainwp-child-back-up-buddy.php:2857 +#: class/class-mainwp-child-back-up-buddy.php:2866 +#: class/class-mainwp-child-back-up-buddy.php:2881 +#: class/class-mainwp-child-back-up-buddy.php:2890 +#: class/class-mainwp-child-back-up-buddy.php:2899 +#: class/class-mainwp-child-back-up-buddy.php:2908 +#: class/class-mainwp-child-back-up-buddy.php:2917 +#: class/class-mainwp-child-back-up-buddy.php:2932 +#: class/class-mainwp-child-back-up-buddy.php:2946 +#: class/class-mainwp-child-back-up-buddy.php:2960 +#: class/class-mainwp-child-back-up-buddy.php:2974 +#: class/class-mainwp-child-back-up-buddy.php:2988 +msgid "none" +msgstr "keine" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "Warning: Possible Malware Detected!" +msgstr "Warnung: Mögliche Malware entdeckt!" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "See details below." +msgstr "Einzelheiten siehe unten." + +#: class/class-mainwp-child-back-up-buddy.php:2804 +#: class/class-mainwp-child-back-up-buddy.php:2822 +#: class/class-mainwp-child-back-up-buddy.php:2925 +#: class/class-mainwp-child-back-up-buddy.php:2939 +#: class/class-mainwp-child-back-up-buddy.php:2953 +#: class/class-mainwp-child-back-up-buddy.php:2967 +#: class/class-mainwp-child-back-up-buddy.php:2981 +msgid "Click to toggle" +msgstr "Zum Aus-/Einklappen klicken" + +#: class/class-mainwp-child-back-up-buddy.php:2805 +msgid "Malware Detection" +msgstr "Malware-Erkennung" + +#: class/class-mainwp-child-back-up-buddy.php:2807 +msgid "Malware" +msgstr "Malware" + +#: class/class-mainwp-child-back-up-buddy.php:2823 +msgid "Web server details" +msgstr "Angaben zum Webserver" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:2825 +msgid "Site" +msgstr "Seite" + +#: class/class-mainwp-child-back-up-buddy.php:2834 +msgid "Hostname" +msgstr "Hostname" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2843 +msgid "IP Address" +msgstr "IP-Adresse" + +#: class/class-mainwp-child-back-up-buddy.php:2852 +msgid "System details" +msgstr "Einzelheiten zum System" + +#: class/class-mainwp-child-back-up-buddy.php:2861 +msgid "Information" +msgstr "Information" + +#: class/class-mainwp-child-back-up-buddy.php:2874 +msgid "Web application" +msgstr "Web-App" + +#: class/class-mainwp-child-back-up-buddy.php:2876 +msgid "Details" +msgstr "Details" + +#: class/class-mainwp-child-back-up-buddy.php:2885 +msgid "Versions" +msgstr "Versionen" + +#: class/class-mainwp-child-back-up-buddy.php:2894 +msgid "Notices" +msgstr "Hinweise" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2903 +msgid "Errors" +msgstr "Fehler" + +#: class/class-mainwp-child-back-up-buddy.php:2912 +msgid "Warnings" +msgstr "Warnungen" + +#: class/class-mainwp-child-back-up-buddy.php:2926 +msgid "Links" +msgstr "Links" + +#: class/class-mainwp-child-back-up-buddy.php:2940 +msgid "Local Javascript" +msgstr "Lokales Javascript" + +#: class/class-mainwp-child-back-up-buddy.php:2954 +msgid "External Javascript" +msgstr "Externes Javascript" + +#: class/class-mainwp-child-back-up-buddy.php:2968 +msgid "Iframes Included" +msgstr "Inklusive Iframes" + +#: class/class-mainwp-child-back-up-buddy.php:2982 +msgid " Blacklisting Status" +msgstr " Status der schwarzen Liste" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3027 +msgid "Database Backup" +msgstr "Datenbank-Sicherung" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:3028 +msgid "Full Backup" +msgstr "Vollständiges Backup" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:3029 +msgid "Plugins Backup" +msgstr "Sicherungskopie" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:3030 +msgid "Themes Backup" +msgstr "Sicherungskopie" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "Verifying everything is up to date before Snapshot" +msgstr "Überprüfung vor der Momentaufnahme, ob alles aktuell ist" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "" +"Please wait while we verify your backup is completely up to date before we " +"create the Snapshot. This may take a few minutes..." +msgstr "" +"Bitte warten Sie, während wir überprüfen, ob Ihr Backup vollständig aktuell " +"ist, bevor wir den Snapshot erstellen. Dies kann ein paar Minuten dauern..." + +#: class/class-mainwp-child-back-up-buddy.php:3265 +msgid "" +"Live File Backup paused. It may take a moment for current processes to " +"finish." +msgstr "" +"Live File Backup pausiert. Es kann einen Moment dauern, bis die laufenden " +"Prozesse beendet sind." + +#: class/class-mainwp-child-back-up-buddy.php:3268 +msgid "Unpaused but not running now." +msgstr "Unpausiert, aber noch nicht in Betrieb." + +#: class/class-mainwp-child-back-up-buddy.php:3277 +msgid "Live File Backup has resumed." +msgstr "Die Live-Dateisicherung wurde wieder aufgenommen." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3284 +msgid "Live Database Backup paused." +msgstr "Datenbank-Sicherung nicht gefunden." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3290 +msgid "Live Database Backup resumed." +msgstr "Datenbank-Sicherung nicht gefunden." + +#: class/class-mainwp-child-back-up-buddy.php:3646 +msgid "" +"An unknown server error occurred. Please try to license your products again " +"at another time." +msgstr "" +"Ein unbekannter Serverfehler ist aufgetreten. Bitte versuche, deine Produkte " +"zu einem anderen Zeitpunkt erneut zu lizenzieren." + +#: class/class-mainwp-child-back-up-buddy.php:3667 +msgid "Your product subscription has expired" +msgstr "Ihr Produkt-Abonnement ist abgelaufen" + +#: class/class-mainwp-child-back-up-buddy.php:3674 +msgid "Successfully licensed %l." +msgstr "Erfolgreich lizenziert %l." + +#: class/class-mainwp-child-back-up-buddy.php:3680 +#: class/class-mainwp-child-back-up-buddy.php:3687 +#, php-format +msgid "Unable to license %1$s. Reason: %2$s" +msgstr "%1$s kann nicht lizenziert werden. Grund: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3731 +msgid "" +"An unknown server error occurred. Please try to remove licenses from your " +"products again at another time." +msgstr "" +"Ein unbekannter Serverfehler ist aufgetreten. Versuche bitte, Lizenzen zu " +"einem anderen Zeitpunkt erneut von deinen Produkten zu entfernen." + +#: class/class-mainwp-child-back-up-buddy.php:3753 +msgid "Unknown server error." +msgstr "Unbekannter Serverfehler." + +#: class/class-mainwp-child-back-up-buddy.php:3758 +msgid "Successfully removed license from %l." +msgid_plural "Successfully removed licenses from %l." +msgstr[0] "Erfolgreiche Entfernung der Lizenz von %l." +msgstr[1] "Erfolgreiche Entfernung der Lizenzen von %l." + +#: class/class-mainwp-child-back-up-buddy.php:3764 +#, php-format +msgid "Unable to remove license from %1$s. Reason: %2$s" +msgstr "Die Lizenz von %1$s kann nicht entfernt werden. Grund: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3791 +msgid "" +"Incorrect password. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Falsches Kennwort. Bitte stelle sicher, dass du deine iThemes Mitgliedschaft " +"Benutzernamen und Passwort-Details angeben." + +#: class/class-mainwp-child-back-up-buddy.php:3795 +msgid "" +"Invalid username. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Ungültiger Benutzername. Bitte stelle sicher, dass du deine iThemes " +"Mitgliedschaft Benutzernamen und Passwort-Details angibst." + +#: class/class-mainwp-child-back-up-buddy.php:3798 +#, php-format +msgid "" +"The licensing server reports that the %1$s (%2$s) product is unknown. Please " +"contact support for assistance." +msgstr "" +"Der Lizenzierungsserver meldet, dass das Produkt %1$s (%2$s) unbekannt ist. " +"Bitte wende dich an den Support, um Unterstützung zu erhalten." + +#: class/class-mainwp-child-back-up-buddy.php:3801 +#, php-format +msgid "" +"%1$s could not be licensed since the membership account is out of available " +"licenses for this product. You can unlicense the product on other sites or " +"upgrade your membership to one with a higher number of licenses in order to " +"increase the amount of available licenses." +msgstr "" +"%1$s konnte nicht lizenziert werden, da das Mitgliedskonto nicht mehr über " +"verfügbare Lizenzen für dieses Produkt verfügt. Sie können das Produkt auf " +"anderen Websites nicht mehr lizenzieren oder Ihre Mitgliedschaft auf eine " +"mit einer höheren Anzahl von Lizenzen aufrüsten, um die Anzahl der " +"verfügbaren Lizenzen zu erhöhen." + +#: class/class-mainwp-child-back-up-buddy.php:3804 +#, php-format +msgid "" +"%1$s could not be licensed due to an internal error. Please try to license " +"%2$s again at a later time. If this problem continues, please contact " +"iThemes support." +msgstr "" +"%1$s konnte aufgrund eines internen Fehlers nicht lizenziert werden. Bitte " +"versuchen Sie, %2$s zu einem späteren Zeitpunkt erneut zu lizenzieren. Wenn " +"dieses Problem weiterhin besteht, kontaktieren Sie bitte den iThemes Support." + +#: class/class-mainwp-child-back-up-buddy.php:3812 +#, php-format +msgid "" +"An unknown error relating to the %1$s product occurred. Please contact " +"iThemes support. Error details: %2$s" +msgstr "" +"Ein unbekannter Fehler in Bezug auf das Produkt %1$s ist aufgetreten. Bitte " +"wende dich an den iThemes-Support. Fehlerdetails: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3814 +#, php-format +msgid "" +"An unknown error occurred. Please contact iThemes support. Error details: %s" +msgstr "" +"Ein unbekannter Fehler ist aufgetreten. Bitte wende dich an den iThemes-" +"Support. Fehlerdetails: %s" + +#: class/class-mainwp-child-back-up-wordpress.php:492 +msgid "Error while trying to trigger the schedule" +msgstr "Fehler beim Versuch, den Zeitplan auszulösen" + +#: class/class-mainwp-child-back-up-wordpress.php:639 +#: class/class-mainwp-child-back-up-wordpress.php:899 +msgid "Size" +msgstr "Größe" + +#: class/class-mainwp-child-back-up-wordpress.php:640 +#: class/class-mainwp-child-back-up-wordpress.php:902 +msgid "Type" +msgstr "Typ" + +#: class/class-mainwp-child-back-up-wordpress.php:641 +#: class/class-mainwp-child-updraft-plus-backups.php:3055 +msgid "Actions" +msgstr "Aktionen" + +#: class/class-mainwp-child-back-up-wordpress.php:657 +msgid "This is where your backups will appear once you have some." +msgstr "Hier werden Ihre Sicherungskopien erscheinen, sobald Sie welche haben." + +#: class/class-mainwp-child-back-up-wordpress.php:678 +#: class/class-mainwp-child-back-up-wordpress.php:683 +msgid "Backups will be compressed and should be smaller than this." +msgstr "" +"Die Backups werden komprimiert und sollten kleiner sein als dieser Wert." + +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "this shouldn't take long…" +msgstr "das sollte nicht lange dauern.." + +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "calculating the size of your backup…" +msgstr "berechnung der Größe Ihres Backups.." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-wordpress.php:713 +#: class/class-mainwp-child-back-up-wordpress.php:719 +#: class/class-mainwp-child-server-information.php:381 +msgid "Download" +msgstr "Download" + +#: class/class-mainwp-child-back-up-wordpress.php:724 +#: class/class-mainwp-child-updraft-plus-backups.php:2136 +#: class/class-mainwp-child-updraft-plus-backups.php:2182 +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete" +msgstr "Löschen" + +# @ mainwp +#: class/class-mainwp-child-back-up-wordpress.php:761 +msgid "Currently Excluded" +msgstr "Aktuell ausgeführte Skripte" + +#: class/class-mainwp-child-back-up-wordpress.php:762 +msgid "" +"We automatically detect and ignore common VCS folders and other backup plugin folders." +msgstr "" +"Wir erkennen und ignorieren automatisch gängige VCS-Ordner und andere Backup-Plugin-Ordner." + +#: class/class-mainwp-child-back-up-wordpress.php:766 +msgid "Your Site" +msgstr "Ihre Website" + +#: class/class-mainwp-child-back-up-wordpress.php:767 +msgid "" +"Here's a directory listing of all files on your site, you can browse through " +"and exclude files or folders that you don't want included in your backup." +msgstr "" +"Hier finden Sie eine Verzeichnisliste aller Dateien auf Ihrer Website. Sie " +"können Dateien oder Ordner, die Sie nicht in Ihr Backup aufnehmen möchten, " +"durchblättern und ausschließen." + +#: class/class-mainwp-child-back-up-wordpress.php:797 +msgid "Done" +msgstr "Erledigt" + +#: class/class-mainwp-child-back-up-wordpress.php:842 +msgid "Default rule" +msgstr "Standardeinstellungen" + +#: class/class-mainwp-child-back-up-wordpress.php:844 +msgid "Defined in wp-config.php" +msgstr "Definiert in wp-config.php" + +#: class/class-mainwp-child-back-up-wordpress.php:846 +msgid "Stop excluding" +msgstr "Nicht mehr ausgrenzen" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-wordpress.php:898 +msgid "Name" +msgstr "Name" + +#: class/class-mainwp-child-back-up-wordpress.php:901 +msgid "Permissions" +msgstr "Berechtigungen" + +#: class/class-mainwp-child-back-up-wordpress.php:946 +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Refresh" +msgstr "Aktualisieren" + +#: class/class-mainwp-child-back-up-wordpress.php:956 +#: class/class-mainwp-child-back-up-wordpress.php:1065 +msgid "Symlink" +msgstr "Symlink" + +# @ mainwp +#: class/class-mainwp-child-back-up-wordpress.php:958 +#: class/class-mainwp-child-back-up-wordpress.php:1068 +msgid "Folder" +msgstr "Ordner" + +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Recalculate the size of this directory" +msgstr "Neuberechnung der Größe dieses Verzeichnisses" + +#: class/class-mainwp-child-back-up-wordpress.php:1070 +msgid "File" +msgstr "Datei" + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable files won't be backed up." +msgstr "Unlesbare Dateien werden nicht gesichert." + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable" +msgstr "Unleserlich" + +#: class/class-mainwp-child-back-up-wordpress.php:1078 +msgid "Excluded" +msgstr "Ausgeschlossen" + +#: class/class-mainwp-child-back-up-wordpress.php:1088 +msgid "Exclude →" +msgstr "→ ausschließen" + +#: class/class-mainwp-child-back-up-wordpress.php:1125 +#: class/class-mainwp-child-back-up-wordpress.php:1160 +msgid "Empty exclude directory path." +msgstr "Leerer exclude-Verzeichnispfad." + +# @ mainwp +#: class/class-mainwp-child-back-up-wordpress.php:1261 +#: class/class-mainwp-child-back-up-wordpress.php:1320 +msgid "Schedule data" +msgstr "Zeitplan" + +#: class/class-mainwp-child-back-wp-up.php:197 +msgid "Please install BackWPup plugin on child website" +msgstr "" +"Bitte installieren Sie das BackWPup-Plugin auf der untergeordneten Website" + +#: class/class-mainwp-child-back-wp-up.php:205 +msgid "Missing action." +msgstr "Fehlende Maßnahmen." + +#: class/class-mainwp-child-back-wp-up.php:282 +msgid "Wrong action." +msgstr "Falsche Aktion." + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:381 +msgid "Database backup" +msgstr "DB-Backup" + +#: class/class-mainwp-child-back-wp-up.php:382 +msgid "File backup" +msgstr "Datei Backup" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:383 +msgid "WordPress XML export" +msgstr "WP XML-Export" + +#: class/class-mainwp-child-back-wp-up.php:384 +msgid "Installed plugins list" +msgstr "Plugin Liste" + +#: class/class-mainwp-child-back-wp-up.php:385 +msgid "Check database tables" +msgstr "DB-Tabellen prüfen" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-timecapsule.php:1912 +msgid "Setting" +msgstr "Einstellung" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-ithemes-security.php:947 +#: class/class-mainwp-child-ithemes-security.php:956 +#: class/class-mainwp-child-server-information.php:427 +#: class/class-mainwp-child-timecapsule.php:1912 +#: class/class-mainwp-child-wordfence.php:3209 +msgid "Value" +msgstr "Wert" + +#: class/class-mainwp-child-back-wp-up.php:567 +#: class/class-mainwp-child-timecapsule.php:1913 +msgid "WordPress version" +msgstr "WordPress Version" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "BackWPup version" +msgstr "BackWPup Version" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "Get pro." +msgstr "Pro-Version kaufen." + +#: class/class-mainwp-child-back-wp-up.php:571 +msgid "BackWPup Pro version" +msgstr "BackWPup PRO Version" + +#: class/class-mainwp-child-back-wp-up.php:574 +#: class/class-mainwp-child-timecapsule.php:1924 +msgid "PHP version" +msgstr "PHP-Version" + +#: class/class-mainwp-child-back-wp-up.php:575 +#: class/class-mainwp-child-timecapsule.php:1925 +msgid "MySQL version" +msgstr "MySQL version" + +#: class/class-mainwp-child-back-wp-up.php:578 +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1929 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "cURL version" +msgstr "cURL Version" + +#: class/class-mainwp-child-back-wp-up.php:579 +#: class/class-mainwp-child-timecapsule.php:1930 +msgid "cURL SSL version" +msgstr "cURL SSL-Version" + +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "unavailable" +msgstr "nicht verfügbar" + +#: class/class-mainwp-child-back-wp-up.php:583 +msgid "WP-Cron url:" +msgstr "WP-Cron Url:" + +#: class/class-mainwp-child-back-wp-up.php:585 +msgid "Server self connect:" +msgstr "Server self connect:" + +#: class/class-mainwp-child-back-wp-up.php:589 +#: class/class-mainwp-child-server-information-base.php:708 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "Der HTTP-Antworttest ergibt einen Fehler \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:591 +#: class/class-mainwp-child-server-information-base.php:712 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "Der HTTP-Antworttest erhält einen falschen http-Status (%s)" + +#: class/class-mainwp-child-back-wp-up.php:595 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "" +"Der HTTP-Antwort-Header von BackWPup gibt einen falschen Wert zurück: \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:599 +#: class/class-mainwp-child-server-information-base.php:720 +msgid "Response Test O.K." +msgstr "Antwort Test O.K." + +#: class/class-mainwp-child-back-wp-up.php:605 +msgid "Temp folder:" +msgstr "Temp-Ordner:" + +#: class/class-mainwp-child-back-wp-up.php:607 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "Temp Ordner %s nicht vorhanden" + +#: class/class-mainwp-child-back-wp-up.php:609 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "Temp Ordner %s nicht beschreibbar" + +#: class/class-mainwp-child-back-wp-up.php:615 +msgid "Log folder:" +msgstr "Log-Ordner:" + +#: class/class-mainwp-child-back-wp-up.php:620 +#, php-format +msgid "Logs folder %s not exist." +msgstr "Logs Ordner %s nicht vorhanden." + +#: class/class-mainwp-child-back-wp-up.php:622 +#, php-format +msgid "Log folder %s is not writable." +msgstr "Protokollordner %s nicht beschreibbar" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:627 +#: class/class-mainwp-child-timecapsule.php:1936 +msgid "Server" +msgstr "Server" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:628 +#: class/class-mainwp-child-server-information.php:750 +#: class/class-mainwp-child-timecapsule.php:1937 +msgid "Operating System" +msgstr "Betriebssystem" + +#: class/class-mainwp-child-back-wp-up.php:629 +#: class/class-mainwp-child-timecapsule.php:1938 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:630 +#: class/class-mainwp-child-timecapsule.php:1945 +msgid "Current PHP user" +msgstr "Aktueller PHP Benutzter" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:640 +msgid "On" +msgstr "An" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:637 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Off" +msgstr "Aus" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:632 +msgid "Safe Mode" +msgstr "Abgesicherter Modus" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "Maximum execution time" +msgstr "Max. Skriptausführung" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "seconds" +msgstr "Sekunden" + +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:637 +msgid "Alternative WP Cron" +msgstr "WP Cron Alternative" + +#: class/class-mainwp-child-back-wp-up.php:640 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Disabled WP Cron" +msgstr "WP Cron deaktiviert" + +#: class/class-mainwp-child-back-wp-up.php:645 +#: class/class-mainwp-child-back-wp-up.php:647 +#: class/class-mainwp-child-timecapsule.php:1949 +#: class/class-mainwp-child-timecapsule.php:1951 +msgid "CHMOD Dir" +msgstr "CHMOD Rechte" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:651 +#: class/class-mainwp-child-timecapsule.php:1955 +msgid "Server Time" +msgstr "Serverzeit" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:652 +#: class/class-mainwp-child-timecapsule.php:1956 +msgid "Blog Time" +msgstr "Blog Zeit" + +#: class/class-mainwp-child-back-wp-up.php:653 +msgid "Blog Timezone" +msgstr "Zeitzone" + +# @ default +#: class/class-mainwp-child-back-wp-up.php:654 +msgid "Blog Time offset" +msgstr "Server Zeitverschiebung" + +#: class/class-mainwp-child-back-wp-up.php:654 +#, php-format +msgid "%s hours" +msgstr "%s Stunden" + +#: class/class-mainwp-child-back-wp-up.php:655 +#: class/class-mainwp-child-timecapsule.php:1957 +msgid "Blog language" +msgstr "Blog Sprache" + +#: class/class-mainwp-child-back-wp-up.php:656 +#: class/class-mainwp-child-timecapsule.php:1958 +msgid "MySQL Client encoding" +msgstr "MySQL Client Zeichensatz" + +#: class/class-mainwp-child-back-wp-up.php:659 +#: class/class-mainwp-child-timecapsule.php:1961 +msgid "Blog charset" +msgstr "Blog Zeichensatz" + +#: class/class-mainwp-child-back-wp-up.php:660 +#: class/class-mainwp-child-timecapsule.php:1962 +msgid "PHP Memory limit" +msgstr "PHP Speicherbegrenzung" + +#: class/class-mainwp-child-back-wp-up.php:661 +#: class/class-mainwp-child-timecapsule.php:1963 +msgid "WP memory limit" +msgstr "WordPress Memory Limit" + +#: class/class-mainwp-child-back-wp-up.php:662 +#: class/class-mainwp-child-timecapsule.php:1964 +msgid "WP maximum memory limit" +msgstr "Max. WP-Speicher" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:663 +#: class/class-mainwp-child-timecapsule.php:1965 +msgid "Memory in use" +msgstr "Verwendeter Speicher" + +#: class/class-mainwp-child-back-wp-up.php:668 +#: class/class-mainwp-child-timecapsule.php:1971 +msgid "Disabled PHP Functions:" +msgstr "Deaktivierte PHP Funktionen:" + +#: class/class-mainwp-child-back-wp-up.php:673 +#: class/class-mainwp-child-timecapsule.php:1977 +msgid "Loaded PHP Extensions:" +msgstr "Geladene PHP Erweiterungen:" + +#: class/class-mainwp-child-back-wp-up.php:699 +#: class/class-mainwp-child-back-wp-up.php:806 +msgid "Missing logfile." +msgstr "Fehlende Logdatei." + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:711 +msgid "Directory not writable:" +msgstr "Verzeichnisname" + +#: class/class-mainwp-child-back-wp-up.php:714 +msgid "Not file:" +msgstr "Nicht die Datei:" + +#: class/class-mainwp-child-back-wp-up.php:737 +msgid "Missing job_id." +msgstr "Fehlende job_id." + +#: class/class-mainwp-child-back-wp-up.php:744 +msgid "Cannot delete job" +msgstr "Auftrag kann nicht gelöscht werden" + +#: class/class-mainwp-child-back-wp-up.php:761 +msgid "Missing backupfile." +msgstr "Fehlende Sicherungsdatei." + +#: class/class-mainwp-child-back-wp-up.php:765 +msgid "Missing dest." +msgstr "Fehlende Dest." + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:777 +msgid "Invalid dest class." +msgstr "Ungültige dest Klasse." + +#: class/class-mainwp-child-back-wp-up.php:814 +msgid "Log file doesn't exists" +msgstr "Logdatei existiert nicht" + +#: class/class-mainwp-child-back-wp-up.php:854 +msgid "Missing type." +msgstr "Fehlender Typ." + +#: class/class-mainwp-child-back-wp-up.php:858 +msgid "Missing website id." +msgstr "Fehlende Website-ID." + +#: class/class-mainwp-child-back-wp-up.php:909 +#: class/class-mainwp-child-back-wp-up.php:952 +#, php-format +msgid "%1$s at %2$s" +msgstr "%1$s um %2$s" + +#: class/class-mainwp-child-back-wp-up.php:943 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s um %2$s durch WP-Cron" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:945 +msgid "Not scheduled!" +msgstr "Zeitplan deaktiviert!" + +#: class/class-mainwp-child-back-wp-up.php:948 +#: class/class-mainwp-child-server-information.php:627 +msgid "Inactive" +msgstr "Inaktiv" + +#: class/class-mainwp-child-back-wp-up.php:954 +#, php-format +msgid "Runtime: %d seconds" +msgstr "Laufzeit: %d Sekunden" + +#: class/class-mainwp-child-back-wp-up.php:957 +msgid "not yet" +msgstr "noch nicht" + +#: class/class-mainwp-child-back-wp-up.php:1135 +msgid "Missing logfile or logpos." +msgstr "Fehlende Protokolldatei oder Logpos." + +#: class/class-mainwp-child-back-wp-up.php:1185 +#: class/class-mainwp-child-back-wp-up.php:1582 +#: class/class-mainwp-child-back-wp-up.php:1770 +msgid "Missing job_id" +msgstr "Fehlende job_id" + +#: class/class-mainwp-child-back-wp-up.php:1323 +msgid "Missing email address." +msgstr "Die E-Mail-Adresse fehlt." + +#: class/class-mainwp-child-back-wp-up.php:1386 +msgid "BackWPup archive sending TEST Message" +msgstr "Testnachricht senden" + +#: class/class-mainwp-child-back-wp-up.php:1389 +msgid "" +"If this message reaches your inbox, sending backup archives via email should " +"work for you." +msgstr "" +"Wenn diese Nachricht Ihren Posteingang erreicht, sollte der Versand von " +"Sicherungsarchiven per E-Mail funktionieren." + +# @ default +#: class/class-mainwp-child-back-wp-up.php:1401 +msgid "Error while sending email!" +msgstr "Fehler beim Senden der E-Mail!" + +#: class/class-mainwp-child-back-wp-up.php:1403 +msgid "Email sent." +msgstr "Email gesendet" + +#: class/class-mainwp-child-back-wp-up.php:1578 +#: class/class-mainwp-child-back-wp-up.php:1762 +#: class/class-mainwp-child-back-wp-up.php:1884 +msgid "Missing array settings" +msgstr "Fehlende Array-Einstellungen" + +#: class/class-mainwp-child-back-wp-up.php:1609 +msgid "Missing new job_id" +msgstr "Fehlende neue job_id" + +#: class/class-mainwp-child-back-wp-up.php:1766 +msgid "Missing tab" +msgstr "Fehlende Registerkarte" + +#: class/class-mainwp-child-back-wp-up.php:1774 +#: class/class-mainwp-child-back-wp-up.php:1888 +msgid "Install BackWPup on child website" +msgstr "BackWPup auf der untergeordneten Website installieren" + +#: class/class-mainwp-child-back-wp-up.php:1805 +#, php-format +msgid "Changes for job %s saved." +msgstr "Änderungen für Auftrag %s gespeichert." + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Jobs overview" +msgstr "Auftragsnübersicht" + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Run now" +msgstr "Jetzt starten" + +#: class/class-mainwp-child-back-wp-up.php:1824 +msgid "Cannot save jobs: " +msgstr "Aufträge können nicht gespeichert werden: " + +#: class/class-mainwp-child-back-wp-up.php:1892 +msgid "" +"You try to use pro version settings in non pro plugin version. Please " +"install pro version on child and try again." +msgstr "" +"Sie versuchen, die Einstellungen der Pro-Version in einer Nicht-Pro-Plugin-" +"Version zu verwenden. Bitte installieren Sie die Pro-Version auf dem Kind " +"und versuchen Sie es erneut." + +#: class/class-mainwp-child-back-wp-up.php:1915 +msgid "Cannot save settings: " +msgstr "Die Einstellungen können nicht gespeichert werden: " + +#: class/class-mainwp-child-branding-render.php:136 +msgid "Subject:" +msgstr "Betreff:" + +#: class/class-mainwp-child-branding-render.php:141 +msgid "From:" +msgstr "Von:" + +#: class/class-mainwp-child-branding-render.php:146 +msgid "Your message:" +msgstr "Ihre Nachricht:" + +# @ default +#: class/class-mainwp-child-branding-render.php:167 +msgid "Submit" +msgstr "Senden" + +#: class/class-mainwp-child-branding-render.php:196 +msgid "Message has been submitted successfully." +msgstr "Die Nachricht wurde erfolgreich übermittelt." + +# @ default +#: class/class-mainwp-child-branding-render.php:199 +msgid "Sending email failed!" +msgstr "Fehler: E-Mail senden gescheitert." + +#: class/class-mainwp-child-branding.php:89 +msgid "Contact Support" +msgstr "Support kontaktieren" + +#: class/class-mainwp-child-callable.php:182 +msgid "" +"Required version has not been detected. Please, make sure that you are using " +"the latest version of the MainWP Child plugin on your site." +msgstr "" +"Die erforderliche Version wurde nicht erkannt. Bitte stellen Sie sicher, " +"dass Sie die neueste Version des MainWP Child-Plugins auf Ihrer Website " +"verwenden." + +#: class/class-mainwp-child-callable.php:888 +#, php-format +msgid "PHP Version %s is unsupported." +msgstr "Die PHP-Version %s wird nicht unterstützt." + +#: class/class-mainwp-child-install.php:374 +msgid "" +"Plugin or theme not specified, or missing required data. Please reload the " +"page and try again." +msgstr "" +"Plugin oder Theme nicht angegeben, oder erforderliche Daten fehlen. Bitte " +"laden Sie die Seite neu und versuchen Sie es erneut." + +#: class/class-mainwp-child-ithemes-security.php:426 +msgid "" +"You must change WordPress permalinks to a setting other " +"than \"Plain\" in order to use \"Hide Backend\" feature." +msgstr "" +"Sie müssen die WordPress-Permalinks auf eine andere " +"Einstellung als \"Einfach\" ändern, um die Funktion \"Backend ausblenden\" " +"nutzen zu können." + +#: class/class-mainwp-child-ithemes-security.php:531 +msgid "Not Updated" +msgstr "Deinen Plan aktualisiert" + +#: class/class-mainwp-child-ithemes-security.php:588 +#, php-format +msgctxt "%1$s is the input name. %2$s is the error message." +msgid "" +"The directory supplied in %1$s cannot be used as a valid directory. %2$s" +msgstr "" +"Das in %1$s gelieferte Verzeichnis kann nicht als gültiges Verzeichnis " +"verwendet werden. %2$s" + +#: class/class-mainwp-child-ithemes-security.php:593 +#, php-format +msgid "" +"The directory supplied in %1$s is not writable. Please select a directory " +"that can be written to." +msgstr "" +"Das übermittelte Verzeichnis in %1$s ist nicht beschreibbar. Bitte wähle ein " +"beschreibbares Verzeichnis aus." + +# @ mainwp +#: class/class-mainwp-child-ithemes-security.php:737 +msgid "Your IP Address" +msgstr "Ihre IP-Adresse" + +#: class/class-mainwp-child-ithemes-security.php:738 +msgid "is whitelisted for" +msgstr "ist auf der Whitelist für" + +#: class/class-mainwp-child-ithemes-security.php:796 +#, php-format +msgid "" +"The backup request returned an unexpected response. It returned a response " +"of type %1$s." +msgstr "" +"Die Backup-Anforderung hat eine unerwartete Antwort zurückgegeben. Es wurde " +"eine Antwort vom Typ %1$s zurückgegeben." + +#: class/class-mainwp-child-ithemes-security.php:839 +msgid "The WordPress salts were successfully regenerated." +msgstr "Die WordPress Salze wurden erfolgreich regeneriert." + +#: class/class-mainwp-child-ithemes-security.php:928 +msgid "WARNING" +msgstr "WARNUNG" + +#: class/class-mainwp-child-ithemes-security.php:931 +#: class/class-mainwp-child-updraft-plus-backups.php:2142 +#: class/class-mainwp-child-updraft-plus-backups.php:2189 +#: class/class-mainwp-child-updraft-plus-backups.php:2193 +msgid "OK" +msgstr "OK" + +#: class/class-mainwp-child-ithemes-security.php:941 +msgid "Reload File Permissions Details" +msgstr "Details der Datei-Zugriffsrechte neu laden" + +#: class/class-mainwp-child-ithemes-security.php:945 +#: class/class-mainwp-child-ithemes-security.php:954 +msgid "Relative Path" +msgstr "Relativer Pfad" + +#: class/class-mainwp-child-ithemes-security.php:946 +#: class/class-mainwp-child-ithemes-security.php:955 +msgid "Suggestion" +msgstr "Vorschlag" + +# @ mainwp +#: class/class-mainwp-child-ithemes-security.php:948 +#: class/class-mainwp-child-ithemes-security.php:957 +msgid "Result" +msgstr "Ergebnis" + +#: class/class-mainwp-child-ithemes-security.php:1055 +msgid "Admin user already changes." +msgstr "Admin-Benutzer bereits geändert." + +#: class/class-mainwp-child-ithemes-security.php:1066 +msgid "Admin user ID already changes." +msgstr "Die Admin-Benutzer-ID hat sich bereits geändert." + +#: class/class-mainwp-child-ithemes-security.php:1247 +#, php-format +msgid "" +"The database table prefix was successfully changed to %1$s." +msgstr "" +"Der Datenbanktabellen Präfix wurde erfolgreich geändert in %1$s." + +#: class/class-mainwp-child-ithemes-security.php:1522 +msgid "The selected lockouts have been cleared." +msgstr "Die ausgewählten Sperren wurden aufgehoben." + +#. translators: 1: user display name, 2: user login +#: class/class-mainwp-child-ithemes-security.php:1696 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: class/class-mainwp-child-jetpack-protect.php:164 +msgid "Please install Jetpack Protect plugin on child website" +msgstr "" +"Bitte installieren Sie das Plugin Jetpack Protect auf der untergeordneten " +"Website" + +#: class/class-mainwp-child-jetpack-protect.php:244 +msgid "Failed to disconnect the site as it appears already disconnected." +msgstr "" +"Die Verbindung zur Website konnte nicht getrennt werden, da sie bereits " +"getrennt zu sein scheint." + +#: class/class-mainwp-child-jetpack-scan.php:107 +msgid "Please install Jetpack Protect or Jetpact Scan plugin on child website" +msgstr "" +"Bitte installieren Sie das Jetpack Protect oder Jetpact Scan Plugin auf der " +"untergeordneten Website" + +#: class/class-mainwp-child-links-checker.php:635 +msgid "An unexpected error occurred!" +msgstr "Ein unerwarteter Fehler ist aufgetreten!" + +# @ default +#: class/class-mainwp-child-links-checker.php:715 +#: class/class-mainwp-child-links-checker.php:801 +msgid "Error: link_id is not specified." +msgstr "Fehler: E-Mail senden gescheitert." + +# @ default +#: class/class-mainwp-child-links-checker.php:758 +msgid "Error: link_id not specified." +msgstr "Fehler: E-Mail senden gescheitert." + +#: class/class-mainwp-child-links-checker.php:791 +msgid "This link was manually marked as working by the user." +msgstr "Dieser Link wurde vom Benutzer manuell als funktionsfähig markiert." + +#: class/class-mainwp-child-misc.php:461 +msgid "Cannot get user_id" +msgstr "Kann user_id nicht erhalten" + +#: class/class-mainwp-child-misc.php:471 +msgid "Cannot destroy sessions" +msgstr "Sitzungen können nicht zerstört werden" + +# @ mainwp-child +#: class/class-mainwp-child-misc.php:474 +msgid "Invalid action" +msgstr "Ungültige Aktion" + +#: class/class-mainwp-child-misc.php:477 +msgid "Missing action" +msgstr "Fehlende Maßnahmen" + +#: class/class-mainwp-child-pagespeed.php:443 +msgid "The API is busy checking other pages, please try again later." +msgstr "" +"Die API überprüft gerade andere Seiten. Versuchen Sie es später erneut." + +#: class/class-mainwp-child-posts.php:549 +msgid "Post" +msgstr "Beitrag" + +#: class/class-mainwp-child-posts.php:800 +#, php-format +msgid "This content is currently locked. %s is currently editing." +msgstr "Dieser Inhalt ist derzeit gesperrt. %s bearbeitet gerade." + +#: class/class-mainwp-child-server-information-base.php:212 +msgid "No functions disabled" +msgstr "Keine Funktionen deaktiviert" + +# @ default +# @ mainwp +#: class/class-mainwp-child-server-information-base.php:532 +#: class/class-mainwp-child-server-information-base.php:566 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "ON" +msgstr "AN" + +# @ default +# @ mainwp +#: class/class-mainwp-child-server-information-base.php:534 +#: class/class-mainwp-child-server-information-base.php:568 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "OFF" +msgstr "AUS" + +# @ default +#: class/class-mainwp-child-server-information-base.php:556 +msgid "NOT SET" +msgstr "Nicht Eingestellt" + +# @ default +#: class/class-mainwp-child-server-information-base.php:578 +#: class/class-mainwp-child-server-information-base.php:590 +#: class/class-mainwp-child-server-information-base.php:602 +msgid "YES" +msgstr "Ja" + +# @ default +#: class/class-mainwp-child-server-information-base.php:580 +#: class/class-mainwp-child-server-information-base.php:592 +#: class/class-mainwp-child-server-information-base.php:604 +msgid "NO" +msgstr "Nein" + +#: class/class-mainwp-child-server-information-base.php:716 +#, php-format +msgid "Not expected HTTP response body: %s" +msgstr "Nicht erwarteter HTTP-Antwortkörper: %s" + +#: class/class-mainwp-child-server-information.php:379 +msgid "Please include this information when requesting support:" +msgstr "Füge diese Informationen in Deine Support Anfrage ein:" + +#: class/class-mainwp-child-server-information.php:381 +msgid "Hide" +msgstr "Verstecken" + +#: class/class-mainwp-child-server-information.php:384 +msgid "Get system report" +msgstr "Systembericht abrufen" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:390 +#: class/class-mainwp-pages.php:592 +msgid "Server Information" +msgstr "Serverinformation" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:392 +msgid "Cron Schedules" +msgstr "Cron-Zeitpläne" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:394 +msgid "Error Log" +msgstr "Fehlerprotokoll" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:425 +msgid "Server configuration" +msgstr "Server-Konfiguration" + +#: class/class-mainwp-child-server-information.php:426 +msgid "Required value" +msgstr "Erforderlicher Wert" + +#: class/class-mainwp-child-server-information.php:467 +msgid "Version" +msgstr "Version" + +#: class/class-mainwp-child-server-information.php:474 +msgid "WordPress" +msgstr "WordPress" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:481 +msgid "FileSystem Method" +msgstr "Anfrage Methode" + +#: class/class-mainwp-child-server-information.php:518 +msgid "PHP SETTINGS" +msgstr "PHP-EINSTELLUNGEN" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:523 +msgid "PHP Safe Mode Disabled" +msgstr "PHP Safe Mode" + +#: class/class-mainwp-child-server-information.php:566 +#, php-format +msgid "" +"Your host needs to update OpenSSL to at least version 1.1.0 which is already " +"over 4 years old and contains patches for over 60 vulnerabilities.%1$sThese " +"range from Denial of Service to Remote Code Execution. %2$sClick here for " +"more information.%3$s" +msgstr "" +"Ihr Host muss OpenSSL mindestens auf Version 1.1.0 aktualisieren, die " +"bereits über 4 Jahre alt ist und Patches für über 60 Sicherheitslücken " +"enthält%1$s, die von Denial of Service bis hin zu Remote Code Execution " +"reichen. %2$sKlicken Sie hier für weitere Informationen.%3$s" + +#: class/class-mainwp-child-server-information.php:582 +msgid "MySQL SETTINGS" +msgstr "MySQL-Einstellungen" + +#: class/class-mainwp-child-server-information.php:586 +msgid "BACKUP ARCHIVE INFORMATION" +msgstr "ARCHIVINFORMATIONEN SICHERN" + +#: class/class-mainwp-child-server-information.php:610 +msgid "WordPress PLUGINS" +msgstr "WordPress PLUGINS" + +#: class/class-mainwp-child-server-information.php:627 +msgid "Active" +msgstr "Aktiv" + +#: class/class-mainwp-child-server-information.php:650 +msgid "PHP INFORMATION" +msgstr "PHP-INFORMATIONEN" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:654 +msgid "PHP Allow URL fopen" +msgstr "PHP erlaubt URL fopen" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:659 +msgid "PHP Exif Support" +msgstr "PHP unterstützt Exif" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:664 +msgid "PHP IPTC Support" +msgstr "PHP unterstützt IPTC" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:669 +msgid "PHP XML Support" +msgstr "PHP unterstützt XML" + +#: class/class-mainwp-child-server-information.php:674 +msgid "PHP Disabled Functions" +msgstr "Deaktivierte PHP-Funktionen" + +#: class/class-mainwp-child-server-information.php:679 +msgid "PHP Loaded Extensions" +msgstr "PHP-geladene Erweiterungen" + +#: class/class-mainwp-child-server-information.php:684 +msgid "MySQL INFORMATION" +msgstr "MySQL-INFORMATIONEN" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:688 +msgid "MySQL Mode" +msgstr "SQL Mode" + +#: class/class-mainwp-child-server-information.php:693 +msgid "MySQL Client Encoding" +msgstr "MySQL-Client-Kodierung" + +#: class/class-mainwp-child-server-information.php:731 +msgid "SERVER INFORMATION" +msgstr "SERVER-INFORMATIONEN" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:735 +msgid "WordPress Root Directory" +msgstr "WordPress Root-Verzeichnis" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:740 +msgid "Server Name" +msgstr "Server Name" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:745 +msgid "Server Software" +msgstr "Server Software" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:755 +msgid "Architecture" +msgstr "Architektur" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:760 +msgid "Server IP" +msgstr "Server IP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:765 +msgid "Server Protocol" +msgstr "Server-Protokoll" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:770 +msgid "HTTP Host" +msgstr "HTTP-Host" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:775 +msgid "HTTPS" +msgstr "HTTPS" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:780 +msgid "Server self connect" +msgstr "Verbindung zum Server selbst" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:785 +msgid "User Agent" +msgstr "User Agent" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:790 +msgid "Server Port" +msgstr "Server Port" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:795 +msgid "Gateway Interface" +msgstr "Getaway Schnittstelle" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:800 +msgid "Memory Usage" +msgstr "Speicher Benutzung" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:805 +msgid "Complete URL" +msgstr "Komplette URL" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:810 +msgid "Request Time" +msgstr "Antwort Zeit" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:815 +msgid "Accept Content" +msgstr "Inhalt akzeptieren" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:820 +msgid "Accept-Charset Content" +msgstr "Inhaltszeichen akzeptieren" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:825 +msgid "Currently Executing Script Pathname" +msgstr "Aktuell ausgeführte Skript Pfadname" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:830 +msgid "Current Page URI" +msgstr "Aktuelle Seiten URI" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:835 +msgid "Remote Address" +msgstr "Entfernte Adresse" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:840 +msgid "Remote Host" +msgstr "Entfernter Host" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:845 +msgid "Remote Port" +msgstr "Entfernter Port" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:891 +msgid "Next due" +msgstr "Weiter durch" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:892 +msgid "Schedule" +msgstr "Zeitplan" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:893 +msgid "Hook" +msgstr "Haken" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:1079 +msgid "Error" +msgstr "Fehler" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:1103 +msgid "Error logging disabled." +msgstr "Fehlerprotokollierung deaktiviert." + +# @ mainwp +#: class/class-mainwp-child-server-information.php:1248 +msgid "Site URL" +msgstr "Seiten URL" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:1253 +msgid "Administrator name" +msgstr "Administrator Name" + +#: class/class-mainwp-child-server-information.php:1255 +msgid "" +"This is your Administrator username, however, you can use any existing " +"Administrator username." +msgstr "" +"Dies ist Ihr Administrator-Benutzername, Sie können aber auch einen " +"beliebigen anderen Administrator-Benutzernamen verwenden." + +#: class/class-mainwp-child-server-information.php:1258 +msgid "Friendly site name" +msgstr "Website-Kurzname" + +#: class/class-mainwp-child-server-information.php:1260 +msgid "" +"For the friendly site name, you can use any name, this is just a suggestion." +msgstr "" +"Für den freundlichen Namen der Website können Sie jeden beliebigen Namen " +"verwenden, dies ist nur ein Vorschlag." + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:1263 +msgid "Child unique security id" +msgstr "Eine eindeutige Sicherheits-ID" + +#: class/class-mainwp-child-server-information.php:1264 +msgid "Leave the field blank" +msgstr "Lassen Sie das Feld leer" + +#: class/class-mainwp-child-server-information.php:1265 +#, php-format +msgid "" +"Child unique security id is not required, however, since you have enabled " +"it, you need to add it to your %s dashboard." +msgstr "" +"Die Eindeutige Sicherheits-ID der Child-Website ist nicht erforderlich, da " +"Sie sie jedoch aktiviert haben, müssen Sie sie auch zu Ihrem %s Dashboard " +"hinzufügen." + +#: class/class-mainwp-child-server-information.php:1268 +msgid "Verify certificate" +msgstr "Zertifikat überprüfen" + +#: class/class-mainwp-child-server-information.php:1269 +msgid "Yes" +msgstr "Ja" + +#: class/class-mainwp-child-server-information.php:1270 +msgid "" +"If there is an issue with SSL certificate on this site, try to set this " +"option to No." +msgstr "" +"Wenn es ein Problem mit dem SSL-Zertifikat auf dieser Website gibt, " +"versuchen Sie, diese Option auf Nein zu setzen." + +#: class/class-mainwp-child-server-information.php:1273 +msgid "SSL version" +msgstr "SSL-Version" + +#: class/class-mainwp-child-server-information.php:1274 +#: class/class-mainwp-child-server-information.php:1275 +msgid "Auto Detect" +msgstr "Automatisch erkennen" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:1282 +msgid "Connection details" +msgstr "Verbindungseinstellungen" + +#: class/class-mainwp-child-server-information.php:1283 +#, php-format +msgid "" +"If you are trying to connect this child site to your %s Dashboard, you can " +"use following details to do that. Please note that these are only suggested " +"values." +msgstr "" +"Wenn Sie versuchen, diese Child-Website mit Ihrem %s Dashboard zu verbinden, " +"können Sie dafür die folgenden Details verwenden. Bitte beachten Sie, dass " +"es sich hierbei nur um Vorschlagswerte handelt." + +#: class/class-mainwp-child-staging.php:186 +msgid "Please install WP Staging plugin on child website" +msgstr "" +"Bitte installieren Sie das WP Staging-Plugin auf der untergeordneten Website" + +#: class/class-mainwp-child-stats.php:96 +msgid "" +"Hint: Go to the child site, deactivate and reactivate the MainWP Child " +"plugin and try again." +msgstr "" +"Tipp: Gehen Sie zur Child-Site, deaktivieren und reaktivieren Sie das MainWP " +"Child-Plugin und versuchen Sie es erneut." + +# @ mainwp-child +#: class/class-mainwp-child-stats.php:97 +msgid "" +"This site already contains a link. Please deactivate and reactivate the " +"MainWP plugin." +msgstr "Diese Website enthält bereits diesen Link" + +#: class/class-mainwp-child-timecapsule.php:1914 +msgid "WP Time Capsule version" +msgstr "WP Time Capsule Version" + +#: class/class-mainwp-child-timecapsule.php:1940 +msgid "Function Disabled" +msgstr "Funktion deaktiviert" + +# @ mainwp-child +#: class/class-mainwp-child-updates.php:150 +#: class/class-mainwp-child-updates.php:291 +#: class/class-mainwp-child-updates.php:460 +#: class/class-mainwp-child-updates.php:539 +#: class/class-mainwp-child-updates.php:649 class/class-mainwp-clone.php:134 +msgid "Invalid request!" +msgstr "Ungültige Anfrage!" + +#: class/class-mainwp-child-updates.php:1167 +msgid "Another update is currently in progress." +msgstr "Ein weiteres Update läuft derzeit." + +#: class/class-mainwp-child-updraft-plus-backups.php:361 +msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com" +msgstr "" +"Beim Versuch, eine Verbindung zu UpdraftPlus.com herzustellen, ist ein " +"unbekannter Fehler aufgetreten" + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "This site is connected to UpdraftPlus Vault." +msgstr "Diese Seite ist mit UpdraftPlus Vault verbunden." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Well done - there's nothing more needed to set up." +msgstr "Gut gemacht - es ist nichts weiter nötig, um es einzurichten." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Vault owner" +msgstr "Vault Besitzer" + +#: class/class-mainwp-child-updraft-plus-backups.php:396 +msgid "Quota:" +msgstr "Quoten:" + +#: class/class-mainwp-child-updraft-plus-backups.php:406 +msgid "Disconnect" +msgstr "Trennen" + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "UpdraftPlus.com has responded with 'Access Denied'." +msgstr "UpdraftPlus.com hat mit \"Zugriff verweigert\" geantwortet." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +#, php-format +msgid "It appears that your web server's IP Address (%s) is blocked." +msgstr "Es scheint, dass die IP-Adresse Ihres Webservers (%s) blockiert ist." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "" +"This most likely means that you share a webserver with a hacked website that " +"has been used in previous attacks." +msgstr "" +"Dies bedeutet höchstwahrscheinlich, dass Sie einen Webserver mit einer " +"gehackten Website teilen, die bereits bei früheren Angriffen verwendet wurde." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "To remove the block, please go here." +msgstr "Um den Block zu entfernen, gehen Sie bitte hier her." + +#: class/class-mainwp-child-updraft-plus-backups.php:454 +#, php-format +msgid "" +"UpdraftPlus.Com returned a response which we could not understand (data: %s)" +msgstr "" +"UpdraftPlus.com hat eine Antwort zurückgegeben, die wir nicht verstehen " +"konnten (Daten: %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:476 +msgid "You do not currently have any UpdraftPlus Vault quota" +msgstr "Sie haben derzeit kein UpdraftPlus Vault Kontingent" + +#: class/class-mainwp-child-updraft-plus-backups.php:478 +#: class/class-mainwp-child-updraft-plus-backups.php:494 +msgid "UpdraftPlus.Com returned a response, but we could not understand it" +msgstr "" +"UpdraftPlus.com hat eine Antwort zurückgegeben, die wir jedoch nicht " +"verstehen konnten" + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"Your email address was valid, but your password was not recognised by " +"UpdraftPlus.Com." +msgstr "" +"Ihre E-Mail Adresse war gültig, aber Ihr Passwort wurde von UpdraftPlus.com " +"nicht erkannt." + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"If you have forgotten your password, then go here to change your password on " +"updraftplus.com." +msgstr "" +"Wenn Sie Ihr Passwort vergessen haben, gehen Sie hier, um Ihr Passwort auf " +"updraftplus.com zu ändern." + +#: class/class-mainwp-child-updraft-plus-backups.php:486 +msgid "You entered an email address that was not recognised by UpdraftPlus.Com" +msgstr "" +"Sie haben eine E-Mail-Adresse eingegeben, die von UpdraftPlus.com nicht " +"erkannt wurde" + +#: class/class-mainwp-child-updraft-plus-backups.php:490 +msgid "Your email address and password were not recognised by UpdraftPlus.Com" +msgstr "" +"Ihre E-Mail Adresse und Ihr Passwort konnten von UpdraftPlus.com nicht " +"verifiziert werden" + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +#, php-format +msgid "Failure: No %s was given." +msgstr "Fehler: Es wurde kein %s angegeben." + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +msgid "user" +msgstr "Benutzer" + +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +msgid "host" +msgstr "Host" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +msgid "database name" +msgstr "Name der Datenbank" + +#: class/class-mainwp-child-updraft-plus-backups.php:1022 +msgid "database connection attempt failed" +msgstr "Verbindungsversuch zur Datenbank fehlgeschlagen" + +#: class/class-mainwp-child-updraft-plus-backups.php:1030 +msgid "" +"Connection failed: check your access details, that the database server is " +"up, and that the network connection is not firewalled." +msgstr "" +"Verbindung fehlgeschlagen: Überprüfen Sie Ihre Zugangsdaten, ob der " +"Datenbankserver aktiv ist und ob die Netzwerkverbindung nicht durch eine " +"Firewall geschützt ist." + +#: class/class-mainwp-child-updraft-plus-backups.php:1050 +#, php-format +msgid "%s table(s) found." +msgstr "%s Tabelle(n) gefunden." + +#: class/class-mainwp-child-updraft-plus-backups.php:1058 +#, php-format +msgid "%1$s total table(s) found; %2$s with the indicated prefix." +msgstr "%1$s Tabelle(n) insgesamt gefunden; %2$s mit dem angegebenen Präfix." + +#: class/class-mainwp-child-updraft-plus-backups.php:1065 +msgid "Messages:" +msgstr "Nachrichten:" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1078 +msgid "Connection succeeded." +msgstr "Verbindung erfolgreich." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1080 +msgid "Connection failed." +msgstr "Verbindung fehlgeschlagen." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +#: class/class-mainwp-child-updraft-plus-backups.php:1132 +msgid "Start backup" +msgstr "Sicherung starten" + +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +msgid "" +"OK. You should soon see activity in the \"Last log message\" field below." +msgstr "" +"OK. Sie sollten bald Aktivität im Feld \"Letzte Protokollmeldung\" unten " +"sehen." + +#: class/class-mainwp-child-updraft-plus-backups.php:1187 +msgid "Nothing yet logged" +msgstr "Noch nichts gemeldet" + +#: class/class-mainwp-child-updraft-plus-backups.php:1220 +#, php-format +msgid "incremental backup; base backup: %s" +msgstr "Inkrementelle Sicherung; Grundsicherung: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:1232 +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:3891 +#, php-format +msgid "Warning: %s" +msgstr "Warnung: %s" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1248 +msgid "Download log file" +msgstr "Protokolldatei herunterladen" + +#: class/class-mainwp-child-updraft-plus-backups.php:1252 +msgid "No backup has been completed." +msgstr "Es wurde noch keine Sicherung durchgeführt." + +#: class/class-mainwp-child-updraft-plus-backups.php:1307 +#: class/class-mainwp-child-updraft-plus-backups.php:1392 +msgid "At the same time as the files backup" +msgstr "Zur selben Zeit, wie die Dateien gesichert werden" + +#: class/class-mainwp-child-updraft-plus-backups.php:1315 +#: class/class-mainwp-child-updraft-plus-backups.php:1383 +#: class/class-mainwp-child-updraft-plus-backups.php:1401 +msgid "Nothing currently scheduled" +msgstr "Derzeit nichts geplant" + +#: class/class-mainwp-child-updraft-plus-backups.php:1411 +msgid "Files" +msgstr "Dateien" + +#: class/class-mainwp-child-updraft-plus-backups.php:1412 +#: class/class-mainwp-child-updraft-plus-backups.php:1976 +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +msgid "Database" +msgstr "Datenbank" + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:1413 +msgid "Time now" +msgstr "Heute" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:1484 +msgid "Backup set not found" +msgstr "Sicherungsatz wurde nicht gefunden" + +#: class/class-mainwp-child-updraft-plus-backups.php:1575 +msgid "The backup set has been removed." +msgstr "Das Backup-Set wurde entfernt." + +#: class/class-mainwp-child-updraft-plus-backups.php:1576 +#, php-format +msgid "Local archives deleted: %d" +msgstr "Lokale Archive gelöscht: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1577 +#, php-format +msgid "Remote archives deleted: %d" +msgstr "Entfernte Archive gelöscht: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1656 +msgid "Existing Backups" +msgstr "Bestehende Sicherungen" + +#: class/class-mainwp-child-updraft-plus-backups.php:1873 +#, php-format +msgid "" +"The backup archive for this file could not be found. The remote storage " +"method in use (%s) does not allow us to retrieve files. To perform any " +"restoration using UpdraftPlus, you will need to obtain a copy of this file " +"and place it inside UpdraftPlus's working folder" +msgstr "" +"Das Sicherungsarchiv für diese Datei wurde nicht gefunden. Die verwendete " +"Remote Speichermethode (%s) ermöglicht das Abrufen von Dateien nicht. Um " +"eine Wiederherstellung mit UpdraftPlus durchführen zu können, müssen Sie " +"eine Kopie dieser Datei anfordern und sie im Arbeitsordner von UpdraftPlus " +"ablegen" + +#: class/class-mainwp-child-updraft-plus-backups.php:1928 +msgid "No such backup set exists" +msgstr "Es ist kein solcher Sicherungssatz vorhanden" + +#: class/class-mainwp-child-updraft-plus-backups.php:1947 +#, php-format +msgid "" +"The PHP setup on this webserver allows only %s seconds for PHP to run, and " +"does not allow this limit to be raised. If you have a lot of data to import, " +"and if the restore operation times out, then you will need to ask your web " +"hosting company for ways to raise this limit (or attempt the restoration " +"piece-by-piece)." +msgstr "" +"Das PHP Setup auf diesem Webserver lässt nur %s Sekunden für die Ausführung " +"von PHP zu und lässt nicht zu, dass dieses Limit angehoben wird. Wenn Sie " +"viele Daten importieren müssen und der Wiederherstellungsvorgang abläuft, " +"müssen Sie Ihr Webhosting Unternehmen nach Möglichkeiten fragen, dieses " +"Limit zu erhöhen (oder die Wiederherstellung Stück für Stück versuchen)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"This backup set was not known by UpdraftPlus to be created by the current " +"WordPress installation, but was found in remote storage." +msgstr "" +"UpdraftPlus wusste nicht, dass dieses Backup-Set von der aktuellen WordPress-" +"Installation erstellt wurde, aber es wurde in einem entfernten Speicher " +"gefunden." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"You should make sure that this really is a backup set intended for use on " +"this website, before you restore (rather than a backup set of an unrelated " +"website that was using the same storage location)." +msgstr "" +"Sie sollten sich vor der Wiederherstellung vergewissern, dass es sich " +"wirklich um einen Sicherungssatz handelt, der für die Verwendung auf dieser " +"Website bestimmt ist (und nicht um einen Sicherungssatz einer anderen " +"Website, die denselben Speicherort verwendet)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1966 +msgid "" +"Only the WordPress database can be restored; you will need to deal with the " +"external database manually." +msgstr "" +"Es kann nur die WordPress Datenbank wiederhergestellt werden. Sie müssen die " +"externe Datenbank manuell bearbeiten." + +#: class/class-mainwp-child-updraft-plus-backups.php:1982 +#: class/class-mainwp-child-updraft-plus-backups.php:3300 +#, php-format +msgid "Backup created by unknown source (%s) - cannot be restored." +msgstr "" +"Sicherung von unbekannter Quelle erstellt (%s) - kann nicht " +"wiederhergestellt werden." + +#: class/class-mainwp-child-updraft-plus-backups.php:2020 +#, php-format +msgid "File not found (you need to upload it): %s" +msgstr "Datei nicht gefunden (muss hochgeladen werden): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2022 +#, php-format +msgid "File was found, but is zero-sized (you need to re-upload it): %s" +msgstr "" +"Datei wurde gefunden, hat jedoch die Größe Null (muss erneut hochgeladen " +"werden): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2026 +#, php-format +msgid "" +"File (%1$s) was found, but has a different size (%2$s) from what was " +"expected (%3$s) - it may be corrupt." +msgstr "" +"Die Datei (%1$s) wurde gefunden, hat aber eine andere Größe (%2$s) als " +"erwartet (%3$s) - sie könnte beschädigt sein." + +#: class/class-mainwp-child-updraft-plus-backups.php:2048 +#, php-format +msgid "" +"This multi-archive backup set appears to have the following archives " +"missing: %s" +msgstr "" +"In diesem Sicherungsset mit mehreren Archiven fehlen anscheinend die " +"folgenden Archive: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2053 +msgid "" +"The backup archive files have been successfully processed. Now press Restore " +"again to proceed." +msgstr "" +"Die Sicherungs-Archivdateien wurden erfolgreich verarbeitet. Drücken Sie " +"jetzt erneut auf Wiederherstellen, um fortzufahren." + +#: class/class-mainwp-child-updraft-plus-backups.php:2055 +msgid "" +"The backup archive files have been processed, but with some warnings. If all " +"is well, then now press Restore again to proceed. Otherwise, cancel and " +"correct any problems first." +msgstr "" +"Die Sicherungs-Archivdateien wurden verarbeitet, jedoch mit einigen " +"Warnungen. Wenn alles in Ordnung ist, drücken Sie jetzt erneut auf " +"Wiederherstellen, um fortzufahren. Andernfalls brechen Sie zuerst alle " +"Probleme ab und beheben Sie sie." + +#: class/class-mainwp-child-updraft-plus-backups.php:2057 +msgid "" +"The backup archive files have been processed, but with some errors. You will " +"need to cancel and correct any problems before retrying." +msgstr "" +"Die Sicherungs-Archivdateien wurden verarbeitet, jedoch mit einigen Fehlern. " +"Sie müssen alle Probleme abbrechen und korrigieren, bevor Sie es erneut " +"versuchen." + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:2085 +msgid "Remove old directories" +msgstr "Alte Verzeichnisse entfernen" + +#: class/class-mainwp-child-updraft-plus-backups.php:2088 +msgid "Old directories successfully removed." +msgstr "Alte Verzeichnisse wurden erfolgreich entfernt." + +#: class/class-mainwp-child-updraft-plus-backups.php:2089 +msgid "Now press Restore again to proceed." +msgstr "Drücken Sie nun erneut auf Wiederherstellen, um fortzufahren." + +#: class/class-mainwp-child-updraft-plus-backups.php:2092 +msgid "" +"Old directory removal failed for some reason. You may want to do this " +"manually." +msgstr "" +"Die Entfernung des alten Verzeichnisses ist aus irgendeinem Grund " +"fehlgeschlagen. Vielleicht möchten Sie dies manuell tun." + +#: class/class-mainwp-child-updraft-plus-backups.php:2139 +#: class/class-mainwp-child-updraft-plus-backups.php:2187 +#: class/class-mainwp-child-updraft-plus-backups.php:2196 +msgid "Failed" +msgstr "Fehlgeschlagen" + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "Error: %s" +msgstr "Fehler: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +msgid "" +"Decryption failed. The database file is encrypted, but you have no " +"encryption key entered." +msgstr "" +"Entschlüsselung fehlgeschlagen. Die Datenbankdatei ist verschlüsselt, aber " +"Sie haben keinen Verschlüsselungscode eingegeben." + +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +msgid "Decryption failed. The database file is encrypted." +msgstr "Entschlüsselung fehlgeschlagen. Die Datenbankdatei ist verschlüsselt." + +#: class/class-mainwp-child-updraft-plus-backups.php:2293 +msgid "Failed to write out the decrypted database to the filesystem." +msgstr "" +"Es ist nicht gelungen, die entschlüsselte Datenbank in das Dateisystem zu " +"schreiben." + +#: class/class-mainwp-child-updraft-plus-backups.php:2299 +#: class/class-mainwp-child-updraft-plus-backups.php:2548 +msgid "" +"Decryption failed. The most likely cause is that you used the wrong key." +msgstr "" +"Entschlüsselung fehlgeschlagen. Die wahrscheinlichste Ursache ist, dass Sie " +"den falschen Schlüssel verwendet haben." + +#: class/class-mainwp-child-updraft-plus-backups.php:2307 +#: class/class-mainwp-child-updraft-plus-backups.php:2555 +#, php-format +msgid "" +"The database is too small to be a valid WordPress database (size: %s Kb)." +msgstr "" +"Die Datenbank ist zu klein, um eine gültige WordPress Datenbank zu sein " +"(Größe: %s Kb)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2316 +#: class/class-mainwp-child-updraft-plus-backups.php:2563 +msgid "Failed to open database file." +msgstr "Die Datenbankdatei konnte nicht geöffnet werden." + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +msgid "Backup of:" +msgstr "Sicherung von:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +#, php-format +msgid "(version: %s)" +msgstr "(Version: %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:2645 +#: class/class-mainwp-child-updraft-plus-backups.php:2664 +msgid "" +"This backup set is from a different site - this is not a restoration, but a " +"migration. You need the Migrator add-on in order to make this work." +msgstr "" +"Dieses Backup-Set stammt von einer anderen Website - es handelt sich nicht " +"um eine Wiederherstellung, sondern um eine Migration. Sie benötigen das " +"Migrator-Add-on, damit dies funktioniert." + +#: class/class-mainwp-child-updraft-plus-backups.php:2388 +#: class/class-mainwp-child-updraft-plus-backups.php:2677 +#, php-format +msgid "" +"You are importing from a newer version of WordPress (%1$s) into an older one " +"(%2$s). There are no guarantees that WordPress can handle this." +msgstr "" +"Sie importieren von einer neueren Version von WordPress (%1$s) in eine " +"ältere Version (%2$s). Es gibt keine Garantie, dass WordPress damit umgehen " +"kann." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"The site in this backup was running on a webserver with version %1$s of " +"%2$s. " +msgstr "" +"Die Website in diesem Backup lief auf einem Webserver mit Version %1$s von " +"%2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"This is significantly newer than the server which you are now restoring onto " +"(version %s)." +msgstr "" +"Dies ist wesentlich neuer als der Server, auf dem Sie jetzt wiederherstellen " +"(Version %s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"You should only proceed if you cannot update the current server and are " +"confident (or willing to risk) that your plugins/themes/etc. are compatible " +"with the older %s version." +msgstr "" +"Sie sollten nur fortfahren, wenn Sie den aktuellen Server nicht " +"aktualisieren können und sicher sind (oder das Risiko eingehen), dass Ihre " +"Plugins/Themes/etc. mit der älteren %s Version kompatibel sind." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"Any support requests to do with %s should be raised with your web hosting " +"company." +msgstr "" +"Alle Support Anfragen zu %s sollten bei Ihrem Webhosting Unternehmen " +"eingehen." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:2401 +#: class/class-mainwp-child-updraft-plus-backups.php:2690 +msgid "Backup label:" +msgstr "Sicherung Beschriftung:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "" +"You are running on WordPress multisite - but your backup is not of a " +"multisite site." +msgstr "" +"Sie arbeiten mit WordPress Multisite - aber Ihre Sicherung ist nicht von " +"einer Multisite Seite." + +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"both the multisite and migrator add-ons." +msgstr "" +"Um eine normale WordPress-Site in eine Multisite-Installation zu " +"importieren, sind sowohl die Multisite- als auch die Migrator-Add-ons " +"erforderlich." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "Warning:" +msgstr "Warnung:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"Your backup is of a WordPress multisite install; but this site is not. Only " +"the first site of the network will be accessible." +msgstr "" +"Ihre Sicherungskopie stammt von einer WordPress Multisite Installation; aber " +"diese Seite nicht. Nur der erste Standort des Netzwerks ist zugänglich." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"If you want to restore a multisite backup, you should first set up your " +"WordPress installation as a multisite." +msgstr "" +"Wenn Sie ein Multisite-Backup wiederherstellen möchten, sollten Sie Ihre " +"WordPress-Installation zunächst als Multisite einrichten." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:2426 +#: class/class-mainwp-child-updraft-plus-backups.php:2710 +msgid "Site information:" +msgstr "Seiten-Informationen:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2459 +#: class/class-mainwp-child-updraft-plus-backups.php:2892 +#, php-format +msgid "This database backup is missing core WordPress tables: %s" +msgstr "Bei dieser Datenbanksicherung fehlen die WordPress Kerntabellen: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2464 +#: class/class-mainwp-child-updraft-plus-backups.php:2900 +msgid "" +"UpdraftPlus was unable to find the table prefix when scanning the database " +"backup." +msgstr "" +"UpdraftPlus konnte das Tabellenpräfix beim Scannen der Datenbanksicherung " +"nicht finden." + +#: class/class-mainwp-child-updraft-plus-backups.php:2627 +#, php-format +msgid "" +"The website address in the backup set (%1$s) is slightly different from that " +"of the site now (%2$s). This is not expected to be a problem for restoring " +"the site, as long as visits to the former address still reach the site." +msgstr "" +"Die Adresse der Website im Sicherungssatz (%1$s) unterscheidet sich " +"geringfügig von der aktuellen Adresse (%2$s). Dies dürfte für die " +"Wiederherstellung der Website kein Problem darstellen, solange die Besucher " +"der alten Adresse die Website weiterhin erreichen." + +#: class/class-mainwp-child-updraft-plus-backups.php:2632 +#, php-format +msgid "" +"This backup set is of this site, but at the time of the backup you were " +"using %1$s, whereas the site now uses %2$s." +msgstr "" +"Dieses Backup-Set ist von dieser Website, aber zum Zeitpunkt des Backups " +"haben Sie %1$s verwendet, während die Website jetzt %2$s verwendet." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#, php-format +msgid "" +"This restoration will work if you still have an SSL certificate (i.e. can " +"use https) to access the site. Otherwise, you will want to use %s to search/" +"replace the site address so that the site can be visited without https." +msgstr "" +"Diese Wiederherstellung funktioniert, wenn Sie noch über ein SSL Zertifikat " +"verfügen (d.h. https verwenden können), um auf die Seite zuzugreifen. " +"Andernfalls möchten Sie %s verwenden, um die Seite Adresse zu suchen/zu " +"ersetzen, damit die Seite ohne https besucht werden kann." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +msgid "the migrator add-on" +msgstr "das Migrator Addon" + +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +#, php-format +msgid "" +"As long as your web hosting allows http (i.e. non-SSL access) or will " +"forward requests to https (which is almost always the case), this is no " +"problem. If that is not yet set up, then you should set it up, or use %s so " +"that the non-https links are automatically replaced." +msgstr "" +"Solange Ihr Webhosting HTTP (d.H. Nicht-SSL-Zugriff) zulässt oder " +"Anforderungen an https weiterleitet (was fast immer der Fall ist), ist dies " +"kein Problem. Wenn dies noch nicht eingerichtet ist, sollten Sie es " +"einrichten oder %s verwenden, damit die Nicht-https-Links automatisch " +"ersetzt werden." + +#: class/class-mainwp-child-updraft-plus-backups.php:2648 +msgid "" +"You can search and replace your database (for migrating a website to a new " +"location/URL) with the Migrator add-on - follow this link for more " +"information" +msgstr "" +"Mit dem Migrator Addon können Sie Ihre Datenbank durchsuchen und ersetzen " +"(um eine Website an einen neuen Speicherort/eine neue URL zu migrieren). " +"Weitere Informationen finden Sie unter diesem Link" + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "" +"You are using the %1$s webserver, but do not seem to have the %2$s module " +"loaded." +msgstr "" +"Sie verwenden den %1$s-Webserver, scheinen aber das %2$s-Modul nicht geladen " +"zu haben." + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "You should enable %1$s to make any pretty permalinks (e.g. %2$s) work" +msgstr "" +"Sie sollten %1$s aktivieren, damit alle hübschen Permalinks (z. B. %2$s) " +"funktionieren" + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "It will be imported as a new site." +msgstr "Es wird als neue Website importiert." + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "Please read this link for important information on this process." +msgstr "" +"Bitte lesen Sie diesen Link für wichtige Informationen zu diesem Prozess." + +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#, php-format +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"%s." +msgstr "" +"Zum Importieren einer normalen WordPress Seite in eine Installation mit " +"mehreren Standorten sind %s erforderlich." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "" +"The database backup uses MySQL features not available in the old MySQL " +"version (%s) that this site is running on." +msgstr "" +"Die Datenbanksicherung verwendet MySQL Funktionen, die in der alten MySQL " +"Version (%s), auf der diese Seite ausgeführt wird, nicht verfügbar sind." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +msgid "You must upgrade MySQL to be able to use this database." +msgstr "" +"Sie müssen MySQL aktualisieren, um diese Datenbank verwenden zu können." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the character set (%s) which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"the character sets (%s) which you are trying to import." +msgstr[0] "" +"Der Datenbankserver, auf dem diese WordPress Seite ausgeführt wird, " +"unterstützt den Zeichensatz (%s), den Sie importieren möchten, nicht." +msgstr[1] "" +"Der Datenbankserver, auf dem diese WordPress Seite ausgeführt wird, " +"unterstützt die Zeichensätze (%s), die Sie importieren möchten, nicht." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "" +"You can choose another suitable character set instead and continue with the " +"restoration at your own risk." +msgstr "" +"Sie können stattdessen einen anderen geeigneten Zeichensatz wählen und die " +"Wiederherstellung auf eigene Gefahr fortsetzen." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "Go here for more information." +msgstr "Gehe hier her für mehr Informationen." + +#: class/class-mainwp-child-updraft-plus-backups.php:2797 +msgid "Your chosen character set to use instead:" +msgstr "Ihr gewählter Zeichensatz, der stattdessen verwendet werden soll:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the collation (%s) used in the database which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"multiple collations (%s) used in the database which you are trying to import." +msgstr[0] "" +"Der Datenbankserver, auf dem diese WordPress Seite ausgeführt wird, " +"unterstützt die in der Datenbank, die Sie importieren möchten, verwendete " +"Sortierung (%s) nicht." +msgstr[1] "" +"Der Datenbankserver, auf dem diese WordPress Seite ausgeführt wird, " +"unterstützt nicht mehrere Kollatierungen (%s), die in der Datenbank " +"verwendet werden, die Sie importieren möchten." + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +msgid "" +"You can choose another suitable collation instead and continue with the " +"restoration (at your own risk)." +msgstr "" +"Sie können stattdessen eine andere geeignete Sammlung auswählen und die " +"Wiederherstellung fortsetzen (auf eigenes Risiko)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2846 +msgid "Your chosen replacement collation" +msgstr "Die von Ihnen gewählte Ersatzsortierung" + +#: class/class-mainwp-child-updraft-plus-backups.php:2895 +#, php-format +msgid "This database backup has the following WordPress tables excluded: %s" +msgstr "" +"Folgende WordPress Tabellen wurden in dieser Sicherung nicht gesichert: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your web server's PHP installation has these functions disabled: %s." +msgstr "" +"Bei der PHP Installation Ihres Webservers sind folgende Funktionen " +"deaktiviert: %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your hosting company must enable these functions before %s can work." +msgstr "" +"Ihr Hosting Unternehmen muss diese Funktionen aktivieren, bevor %s " +"funktionieren kann." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +msgid "restoration" +msgstr "restaurierung" + +#: class/class-mainwp-child-updraft-plus-backups.php:2959 +msgid "" +"The database file appears to have been compressed twice - probably the " +"website you downloaded it from had a mis-configured webserver." +msgstr "" +"Die Datenbankdatei scheint zweimal komprimiert worden zu sein - " +"wahrscheinlich hatte die Website, von der Sie sie heruntergeladen haben, " +"einen falsch konfigurierten Webserver." + +#: class/class-mainwp-child-updraft-plus-backups.php:2966 +#: class/class-mainwp-child-updraft-plus-backups.php:2990 +msgid "The attempt to undo the double-compression failed." +msgstr "" +"Der Versuch, die doppelte Komprimierung rückgängig zu machen, schlug fehl." + +#: class/class-mainwp-child-updraft-plus-backups.php:2992 +msgid "The attempt to undo the double-compression succeeded." +msgstr "" +"Der Versuch, die doppelte Komprimierung rückgängig zu machen, war " +"erfolgreich." + +#: class/class-mainwp-child-updraft-plus-backups.php:3038 +msgid "You have not yet made any backups." +msgstr "Sie haben noch keine Sicherungen erstellt." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3053 +msgid "Backup date" +msgstr "Sicherung Datum" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3054 +msgid "Backup data (click to download)" +msgstr "Sicherungsdaten (klicken zum Herunterladen)" + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:3088 +msgid "remote site" +msgstr "Zielseite" + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:3089 +#, php-format +msgid "Remote storage: %s" +msgstr "Remote Speicher: %s" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +msgid "Go to Restore" +msgstr "Zu Wiederherstellen gehen" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +#: class/class-mainwp-clone-page.php:266 class/class-mainwp-clone-page.php:1236 +msgid "Restore" +msgstr "Wiederherstellen" + +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete this backup set" +msgstr "Dieses Sicherungsset löschen" + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "" +"If you are seeing more backups than you expect, then it is probably because " +"the deletion of old backup sets does not happen until a fresh backup " +"completes." +msgstr "" +"Wenn Sie mehr Sicherungen sehen als erwartet, liegt dies wahrscheinlich " +"daran, dass alte Sicherungssätze erst nach Abschluss einer neuen Sicherung " +"gelöscht werden." + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "(Not finished)" +msgstr "(nicht abgeschlossen)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3229 +#: class/class-mainwp-child-updraft-plus-backups.php:3299 +msgid "unknown source" +msgstr "unbekannte Quelle" + +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +#, php-format +msgid "Database (created by %s)" +msgstr "Datenbank (erstellt von %s)" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3237 +msgid "External database" +msgstr "Externe Datenbank" + +#: class/class-mainwp-child-updraft-plus-backups.php:3297 +#, php-format +msgid "Backup created by: %s." +msgstr "Sicherung erstellt von: %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files and database WordPress backup (created by %s)" +msgstr "Dateien und Datenbank WordPress Sicherung (erstellt von %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files backup (created by %s)" +msgstr "Dateisicherung (erstellt von %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3332 +msgid "Press here to download" +msgstr "Zum Herunterladen hier drücken" + +#: class/class-mainwp-child-updraft-plus-backups.php:3338 +#, php-format +msgid "(%d archive(s) in set)." +msgstr "(%d Archiv(e) im Satz)." + +#: class/class-mainwp-child-updraft-plus-backups.php:3341 +msgid "" +"You appear to be missing one or more archives from this multi-archive set." +msgstr "" +"Sie scheinen ein oder mehrere Archive aus diesem Multiarchivsatz zu " +"vermissen." + +#: class/class-mainwp-child-updraft-plus-backups.php:3708 +msgid "The backup apparently succeeded and is now complete" +msgstr "Die Sicherung ist abgeschlossen und nun komplett" + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:3752 +msgid "Backup begun" +msgstr "Sicherung wurde gestartet" + +#: class/class-mainwp-child-updraft-plus-backups.php:3756 +msgid "Creating file backup zips" +msgstr "Datei Sicherung wird erstellt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3770 +msgid "Created file backup zips" +msgstr "Datei Sicherung Zips erstellt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3774 +msgid "Uploading files to remote storage" +msgstr "Dateien werden in den Remote Speicher hochgeladen" + +#: class/class-mainwp-child-updraft-plus-backups.php:3781 +#, php-format +msgid "(%1$s%%, file %2$s of %3$s)" +msgstr "(%1$s%%, Datei %2$s von %3$s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3786 +msgid "Pruning old backup sets" +msgstr "Bereinigen alter Backup Sätze" + +#: class/class-mainwp-child-updraft-plus-backups.php:3790 +msgid "Waiting until scheduled time to retry because of errors" +msgstr "Warten auf die geplante Wiederholung aufgrund von Fehlern" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3794 +msgid "Backup finished" +msgstr "Sicherung wurde fertiggestellt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3809 +msgid "Created database backup" +msgstr "Datenbanksicherung wurde erstellt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3821 +msgid "Creating database backup" +msgstr "Datenbank Sicherung wird erstellt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3823 +#, php-format +msgid "table: %s" +msgstr "Tabelle: %s" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3837 +msgid "Encrypting database" +msgstr "Datenbank wird verschlüsselt" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3846 +msgid "Encrypted database" +msgstr "Datenbank wurde verschlüsselt" + +#: class/class-mainwp-child-updraft-plus-backups.php:3867 +#, php-format +msgid "next resumption: %1$d (after %2$ss)" +msgstr "nächste Wiederaufnahme: %1$d (nach %2$ss)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3868 +#, php-format +msgid "last activity: %ss ago" +msgstr "letzte Aktivität: vor %ss" + +#: class/class-mainwp-child-updraft-plus-backups.php:3879 +#, php-format +msgid "Job ID: %s" +msgstr "Job ID: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3882 +msgid "show log" +msgstr "Protokoll anzeigen" + +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "" +"Note: the progress bar below is based on stages, NOT time. Do not stop the " +"backup simply because it seems to have remained in the same place for a " +"while - that is normal." +msgstr "" +"Hinweis: Der Fortschrittsbalken unten basiert auf Stufen und nicht auf der " +"verwendeten Zeit. Stoppe die Sicherung nicht ab, nur weil sich der " +"Fortschrittsbalken scheinbar nicht bewegt- das ist normal." + +# @ mainwp +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "delete schedule" +msgstr "Zeitplan" + +#: class/class-mainwp-child-updraft-plus-backups.php:3941 +msgid "Job deleted" +msgstr "Der Auftrag wurde gelöscht" + +#: class/class-mainwp-child-updraft-plus-backups.php:3953 +msgid "Could not find that job - perhaps it has already finished?" +msgstr "" +"Ich konnte diese Stelle nicht finden - vielleicht ist sie bereits beendet?" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:4008 +msgid "Error: unexpected file read fail" +msgstr "Fehler: Unerwarteter Datei Lesefehler" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:4015 +#: class/class-mainwp-child-updraft-plus-backups.php:4018 +msgid "The log file could not be read." +msgstr "Die Protokilldatei konnte nicht gelesen werden." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:4047 +msgid "Download failed" +msgstr "Download fehlgeschlagen" + +#: class/class-mainwp-child-updraft-plus-backups.php:4065 +msgid "File ready." +msgstr "Datei bereit." + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:4077 +msgid "Download in progress" +msgstr "Download in Bearbeitung" + +#: class/class-mainwp-child-updraft-plus-backups.php:4080 +msgid "No local copy present." +msgstr "Es sind keine lokalen Kopien vorhanden." + +#: class/class-mainwp-child-users.php:392 +msgid "ERROR: Please enter a username." +msgstr "FEHLER: Bitte geben Sie einen Benutzernamen ein." + +#: class/class-mainwp-child-users.php:400 +msgid "ERROR: Please enter a password." +msgstr "Fehler: Bitte gib ein Passwort ein." + +#: class/class-mainwp-child-users.php:404 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "" +"FEHLER: Passwörter dürfen das Zeichen „\\“ nicht enthalten." + +#: class/class-mainwp-child-users.php:408 +msgid "" +"ERROR: Please enter the same password in both password " +"fields." +msgstr "" +"FEHLER: Bitte in beide Passwortfelder dasselbe Passwort " +"eingeben." + +#: class/class-mainwp-child-users.php:421 +msgid "ERROR: Sorry, that username is not allowed." +msgstr "Fehler: ist, dass Benutzernamen nicht erlaubt." + +#: class/class-mainwp-child-users.php:427 +msgid "ERROR: Please enter an email address." +msgstr "FEHLER: Bitte eine E-Mail-Adresse eingeben." + +#: class/class-mainwp-child-users.php:429 +msgid "ERROR: The email address isn’t correct." +msgstr "FEHLER: Diese eMail Adresse ist ungültig." + +#: class/class-mainwp-child-users.php:431 +msgid "" +"ERROR: This email is already registered, please choose " +"another one." +msgstr "" +"FEHLER: Diese E-Mail Adresse wurde bereits registriert. " +"Bitte wählen Sie eine andere." + +#: class/class-mainwp-child-users.php:537 +msgid "Administrator password could not be changed." +msgstr "Das Administrator-Passwort konnte nicht geändert werden." + +# @ mainwp-child +#: class/class-mainwp-child-users.php:585 +msgid "Undefined error!" +msgstr "Undefinierter Fehler!" + +# @ default +#: class/class-mainwp-child-users.php:598 +#, php-format +msgid "Username: %s" +msgstr "Benutzername: %s" + +# @ default +#: class/class-mainwp-child-users.php:599 +#, php-format +msgid "Password: %s" +msgstr "Passwort: %s" + +# @ default +#: class/class-mainwp-child-users.php:602 +#, php-format +msgid "[%s] Your username and password" +msgstr "[%s] Dein Benutzername und Passwort" + +#: class/class-mainwp-child-wordfence.php:549 +msgid "Please install the Wordfence plugin on the child site." +msgstr "Bitte installieren Sie das Wordfence-Plugin auf der Child-Site." + +#: class/class-mainwp-child-wordfence.php:1855 +#: class/class-mainwp-child-wordfence.php:1860 +msgid "An error occurred: " +msgstr "Ein unbekannter Fehler trat auf: " + +# @ mainwp-child +#: class/class-mainwp-child-wordfence.php:1857 +msgid "Invalid response: " +msgstr "Ungültige Antwort: " + +#: class/class-mainwp-child-wordfence.php:1884 +msgid "An error occurred: Invalid options format received." +msgstr "Es ist ein Fehler aufgetreten: Ungültiges Optionsformat empfangen." + +#: class/class-mainwp-child-wordfence.php:2400 +#, php-format +msgid "An error occurred while saving the configuration: %s" +msgstr "Beim Speichern der Konfiguration ist ein Fehler aufgetreten: %s" + +#: class/class-mainwp-child-wordfence.php:2408 +#, php-format +msgid "Errors occurred while saving the configuration: %s" +msgstr "Beim Speichern der Konfiguration sind Fehler aufgetreten: %s" + +#: class/class-mainwp-child-wordfence.php:2413 +msgid "Errors occurred while saving the configuration." +msgstr "Beim Speichern der Konfiguration sind Fehler aufgetreten." + +#: class/class-mainwp-child-wordfence.php:2421 +msgid "An error occurred while saving the configuration." +msgstr "Beim Speichern der Konfiguration ist ein Fehler aufgetreten." + +#: class/class-mainwp-child-wordfence.php:2431 +msgid "No configuration changes were provided to save." +msgstr "Es wurden keine Konfigurationsänderungen zum Speichern vorgenommen." + +#: class/class-mainwp-child-wordfence.php:3196 +msgid "IP Detection" +msgstr "IP-Erkennung" + +#: class/class-mainwp-child-wordfence.php:3197 +msgid "Methods of detecting a visitor's IP address." +msgstr "Methoden zur Ermittlung der Benutzer IP." + +#: class/class-mainwp-child-wordfence.php:3208 +msgid "IPs" +msgstr "IP-Adressen" + +#: class/class-mainwp-child-wordfence.php:3210 +msgid "Used" +msgstr "Benutzt" + +#: class/class-mainwp-child-wordfence.php:3276 +msgid "WordPress Settings" +msgstr "WordPress Einstellungen" + +#: class/class-mainwp-child-wordfence.php:3277 +msgid "WordPress version and internal settings/constants." +msgstr "WordPress-Version und interne Einstellungen und Konstanten." + +#: class/class-mainwp-child-wordfence.php:3495 +msgid "WordPress Plugins" +msgstr "WordPress Plugins" + +#: class/class-mainwp-child-wordfence.php:3496 +msgid "Status of installed plugins." +msgstr "Status der installierten Plugins." + +#: class/class-mainwp-child-wordfence.php:3531 +msgid "Must-Use WordPress Plugins" +msgstr "Unverzichtbare WordPress-Plugins" + +#: class/class-mainwp-child-wordfence.php:3532 +msgid "" +"WordPress \"mu-plugins\" that are always active, incluing those provided by " +"hosts." +msgstr "" +"WordPress „MU-Plugins\", die immer aktiv sind, einschließlich der von den " +"Hosting-Anbietern bereitgestellten." + +#: class/class-mainwp-child-wordfence.php:3569 +msgid "Themes" +msgstr "Themes" + +#: class/class-mainwp-child-wordfence.php:3570 +msgid "Status of installed themes." +msgstr "Status der installierten Themes." + +#: class/class-mainwp-child-wordfence.php:3608 +msgid "Cron Jobs" +msgstr "Cronjobs" + +#: class/class-mainwp-child-wordfence.php:3609 +msgid "List of WordPress cron jobs scheduled by WordPress, plugins, or themes." +msgstr "" +"WordPress Cron-Jobs die von WordPress, Plugins oder Themes geplant werden." + +#: class/class-mainwp-child-wordfence.php:3662 +msgid "Database Tables" +msgstr "Datenbank Tabellen" + +#: class/class-mainwp-child-wordfence.php:3663 +msgid "Database table names, sizes, timestamps, and other metadata." +msgstr "Namen von Datenbanktabellen, Größe, Zeitstempel und andere Metadaten." + +#: class/class-mainwp-child-wordfence.php:3713 +msgid "Log Files" +msgstr "Log Dateien" + +#: class/class-mainwp-child-wordfence.php:3714 +msgid "PHP error logs generated by your site, if enabled by your host." +msgstr "" +"PHP-Fehlerprotokolle die von der Website generiert werden, sofern der Hoster " +"dies zulässt." + +#: class/class-mainwp-child-wp-rocket.php:426 +msgid "Please install WP Rocket plugin on child website" +msgstr "" +"Bitte installieren Sie das WP Rocket Plugin auf der untergeordneten Website" + +#: class/class-mainwp-child-wp-seopress.php:91 +msgid "" +"Settings could not be exported. Missing function `seopress_return_settings`" +msgstr "" +"Einstellungen konnten nicht exportiert werden. Fehlende Funktion " +"`seopress_return_settings`" + +#: class/class-mainwp-child-wp-seopress.php:98 +msgid "Export completed" +msgstr "Export beendet." + +#: class/class-mainwp-child-wp-seopress.php:112 +msgid "" +"Settings could not be imported. Missing function " +"`seopress_do_import_settings`" +msgstr "" +"Einstellungen konnten nicht importiert werden. Fehlende Funktion " +"`seopress_do_import_settings`" + +#: class/class-mainwp-child-wp-seopress.php:120 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: class/class-mainwp-child-wp-seopress.php:134 +msgid "" +"Settings could not be saved. Missing function `seopress_mainwp_save_settings`" +msgstr "" +"Die Einstellungen konnten nicht gespeichert werden. Fehlende Funktion " +"`seopress_mainwp_save_settings`" + +#: class/class-mainwp-child-wp-seopress.php:143 +msgid "Settings could not be saved. Missing option name." +msgstr "" +"Die Einstellungen konnten nicht gespeichert werden. Der Name der Option " +"fehlt." + +#: class/class-mainwp-child-wp-seopress.php:148 +#: class/class-mainwp-child-wp-seopress.php:173 +#: class/class-mainwp-child-wp-seopress.php:208 +msgid "SEOPress Pro plugin is not active on child site." +msgstr "Das SEOPress Pro Plugin ist auf der untergeordneten Seite nicht aktiv." + +# @ mainwp-child +#: class/class-mainwp-child-wp-seopress.php:158 +#: class/class-mainwp-child-wp-seopress.php:191 +#: class/class-mainwp-child-wp-seopress.php:239 +msgid "Save successful" +msgstr "Hochladen erfolgreich." + +#: class/class-mainwp-child-wp-seopress.php:178 +msgid "" +"Settings could not be saved. Missing function `seopress_save_pro_licence`" +msgstr "" +"Die Einstellungen konnten nicht gespeichert werden. Fehlende Funktion " +"`seopress_save_pro_licence`" + +#: class/class-mainwp-child-wp-seopress.php:213 +msgid "" +"Licence could not be reset. Missing function `seopress_reset_pro_licence`" +msgstr "" +"Die Lizenz konnte nicht zurückgesetzt werden. Fehlende Funktion " +"`seopress_reset_pro_licence`" + +# @ mainwp-child +#: class/class-mainwp-child-wp-seopress.php:219 +msgid "Reset successful" +msgstr "Hochladen erfolgreich." + +#: class/class-mainwp-child-wp-seopress.php:233 +msgid "" +"Action could not be executed. Missing function `seopress_flush_rewrite_rules`" +msgstr "" +"Aktion konnte nicht ausgeführt werden. Fehlende Funktion " +"`seopress_flush_rewrite_rules`" + +#: class/class-mainwp-child.php:512 class/class-mainwp-pages.php:586 +msgid "Settings" +msgstr "Einstellungen" + +#: class/class-mainwp-client-report-base.php:878 +msgid "Guest" +msgstr "Gast" + +#: class/class-mainwp-client-report-base.php:905 +msgid "Scan complete. Congratulations, no new problems found." +msgstr "" +"Scan abgeschlossen. Herzlichen Glückwunsch, keine neuen Probleme gefunden." + +#: class/class-mainwp-client-report-base.php:966 +#: class/class-mainwp-client-report-base.php:975 +msgid "Site Blacklisted" +msgstr "Website auf der schwarzen Liste" + +#: class/class-mainwp-client-report-base.php:969 +msgid "Site With Warnings" +msgstr "Website mit Warnhinweisen" + +#: class/class-mainwp-client-report-base.php:973 +msgid "Verified Clear" +msgstr "Verifiziert sauber" + +#: class/class-mainwp-client-report-base.php:975 +msgid "Trusted" +msgstr "Vertrauenswürdig" + +#: class/class-mainwp-client-report-base.php:995 +msgid "Delete all post revisions" +msgstr "Alle Beitragsrevisionen löschen" + +#: class/class-mainwp-client-report-base.php:996 +msgid "Delete all post revisions, except for the last:" +msgstr "Löschen Sie alle Beitragsrevisionen, außer der letzten:" + +#: class/class-mainwp-client-report-base.php:997 +msgid "Delete all auto draft posts" +msgstr "Alle automatischen Beitragsentwürfe löschen" + +#: class/class-mainwp-client-report-base.php:998 +msgid "Delete trash posts" +msgstr "Löschen von Papierkorbeinträgen" + +#: class/class-mainwp-client-report-base.php:999 +msgid "Delete spam comments" +msgstr "Spam-Kommentare löschen" + +#: class/class-mainwp-client-report-base.php:1000 +msgid "Delete pending comments" +msgstr "Ausstehende Kommentare löschen" + +#: class/class-mainwp-client-report-base.php:1001 +msgid "Delete trash comments" +msgstr "Löschen von Papierkorbkommentaren" + +#: class/class-mainwp-client-report-base.php:1002 +msgid "Delete tags with 0 posts associated" +msgstr "Tags mit 0 Beiträgen löschen" + +#: class/class-mainwp-client-report-base.php:1003 +msgid "Delete categories with 0 posts associated" +msgstr "Kategorien mit 0 Beiträgen löschen" + +#: class/class-mainwp-client-report-base.php:1004 +msgid "Optimize database tables" +msgstr "Datenbanktabellen optimieren" + +#: class/class-mainwp-client-report.php:148 +msgid "No MainWP Child Reports plugin installed." +msgstr "Kein MainWP Child Reports Plugin installiert." + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:161 +#: class/class-mainwp-clone-install.php:164 +msgid "This is not a full backup." +msgstr "Vollständige Sicherung erforderlich" + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:167 +msgid "Database backup is missing." +msgstr "Datenbank-Sicherung nicht gefunden." + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:223 +msgid "Cant read configuration file from the backup." +msgstr "Kann Konfigurationsdatei nicht lesen aus der Datensicherung" + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:390 +msgid "Error: unexpected end of file for database." +msgstr "Fehler: unerwartetes Ende der Datei für die Datenbank" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:102 class/class-mainwp-clone-page.php:253 +msgid "File could not be uploaded." +msgstr "Datei konnte nicht hochgeladen werden." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:105 class/class-mainwp-clone-page.php:256 +msgid "" +"File is empty. Please upload something more substantial. This error could " +"also be caused by uploads being disabled in your php.ini or by post_max_size " +"being defined as smaller than upload_max_filesize in php.ini." +msgstr "" +"Die Datei ist leer. Bitte laden Sie etwas mit Inhalt. Dieser Upload-Fehler " +"könnte auch verursacht werden durhc eine Einstellung in der php.ini oder " +"durch einstellung von post_max_size als kleiner als upload_max_filesize in " +"der php.ini." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:116 +msgid "" +"Cloning is currently off - To turn on return to your main dashboard and turn " +"cloning on on the Clone page." +msgstr "" +"Klonen ist derzeit aus - Zum aktivieren des Klones, auf der MainWP " +"Dashboards auf Klonen gehen" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:129 class/class-mainwp-clone-page.php:279 +msgid "Your content directory is not writable. Please set 0755 permission to " +msgstr "" +"Das Inhalte Verzeichnis ist nicht beschreibbar. Bitte die Berechtigung " +"setzen auf 0755." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:134 +msgid "Cloning process completed successfully! You will now need to click " +msgstr "Klonen erfolgreich abgeschlossen! Sie müssen nun Klicken" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:135 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1209 +#: class/class-mainwp-clone-page.php:1247 +msgid "here" +msgstr "hier" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:136 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1247 +msgid " to re-login to the admin and re-save permalinks." +msgstr "" +"sich erneut anmelden, um den Admin und erneut speichern des Permalinks." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:160 class/class-mainwp-clone-page.php:288 +msgid "Upload successful." +msgstr "Hochladen erfolgreich." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:162 +msgid "Clone/Restore website" +msgstr "Klonen / Wiederherstellen Webseite" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:174 +msgid "" +"Cloning is currently on but no sites have been allowed, to allow sites " +"return to your main dashboard and turn cloning on on the Clone page." +msgstr "Klonen ist derzeit erlaubt, aber keine Seite hat es erlaubt. " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "Display by:" +msgstr "Anzeige von:" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "Site Name" +msgstr "Seitenname" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "URL" +msgstr "URL" + +#: class/class-mainwp-clone-page.php:181 +msgid "Select Source for clone" +msgstr "Quelle für den Klon auswählen" + +#: class/class-mainwp-clone-page.php:196 +msgid "The site selected above will replace this site's files and database" +msgstr "" +"Die oben ausgewählte Website ersetzt die Dateien und die Datenbank dieser " +"Website" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:200 +msgid "Clone website" +msgstr "Webseite Klonen" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:212 class/class-mainwp-clone-page.php:266 +msgid "Option 1:" +msgstr "Option 1:" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:212 +msgid "Restore/Clone from backup" +msgstr "Wiederherstellen/Klonen von Datensicherung" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:214 class/class-mainwp-clone-page.php:299 +msgid "" +"Upload backup in .zip format (Maximum filesize for your server settings: " +msgstr "" +"Hochladen der Datensicherungsdatei im .zip Format (Maximale Dateigröße " +"Server-Einstellungen:" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:215 +msgid "" +"If you have a FULL backup created by the default MainWP Backup system you " +"may restore it by uploading here. Backups created by 3rd party plugins will " +"not work." +msgstr "" +"Wenn Sie eine vollständige Sicherung von Ihrem Netzwerk-Dashboard erstellt " +"haben, können Sie es von hier Hochladen um es wiederherzustellen." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:217 class/class-mainwp-clone-page.php:310 +msgid "A database only backup will not work." +msgstr "Eine einziges Datenbank-Backup wird nicht funktionieren." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:222 class/class-mainwp-clone-page.php:499 +msgid "Clone/Restore Website" +msgstr "Klonen / Wiederherstellen Webseite" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:283 class/class-mainwp-clone-page.php:1246 +msgid "Restore process completed successfully! You will now need to click " +msgstr "" +"Wiederherstellungsvorgang erfolgreich abgeschlossen! Sie müssen nun klicken" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:290 class/class-mainwp-clone-page.php:314 +msgid "Restore Website" +msgstr "Wiederherstellen Webseite" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:305 +msgid "" +"If you have a FULL backup created by basic MainWP Backup system you may " +"restore it by uploading here. Backups created by 3rd party plugins will not " +"work." +msgstr "" +"Wenn Sie eine vollständige Sicherung von Ihrem Netzwerk-Dashboard erstellt " +"haben, können Sie es von hier Hochladen um es wiederherzustellen." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:371 +msgid "Option 2:" +msgstr "Option 2:" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:371 +msgid "Restore/Clone From Server" +msgstr "Wiederherstellen / Klonen vom Server" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:373 +msgid "" +"If you have uploaded a FULL backup to your server (via FTP or other means) " +"you can use this section to locate the zip file and select it. A database " +"only backup will not work." +msgstr "" +"Wenn Sie eine vollständige Sicherung auf den Server hochgeladen haben (via " +"FTP oder andere Mittel) können Sie diesen Abschnitt verwenden um die ZIP-" +"Datei auszuwählen. Nur ein Datenbank Backup wird nicht funktionieren." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:376 +msgid "" +"Root directory is not readable. Please contact with site administrator to " +"correct." +msgstr "" +"Root-Verzeichnis ist nicht lesbar. Bitte Administrator kontaktieren zum " +"korrigieren." + +#: class/class-mainwp-clone-page.php:395 +#, php-format +msgid "%1$sCurrent Directory:%2$s %3$s" +msgstr "%1$sAktuelles Verzeichnis:%2$s %3$s" + +# @ mainwp +#: class/class-mainwp-clone-page.php:397 +msgid "Site Root" +msgstr "Site Root" + +# @ mainwp +#: class/class-mainwp-clone-page.php:398 +msgid "Backup" +msgstr "Sicherungskopie" + +# @ mainwp +#: class/class-mainwp-clone-page.php:401 +msgid "Uploads Folder" +msgstr "Uploads Ordner" + +# @ mainwp +#: class/class-mainwp-clone-page.php:403 +msgid "Content Folder" +msgstr "Inhalts Ordner" + +# @ mainwp +#: class/class-mainwp-clone-page.php:417 +msgid "Quick Jump:" +msgstr "Quick Jump:" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:457 +msgid "Select File" +msgstr "Wählen Sie Datei" + +# @ mainwp +#: class/class-mainwp-clone-page.php:462 +msgid "Parent Folder" +msgstr "Parent Folder" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:603 +#, php-format +msgid "" +"This is a large site (%dMB), the restore process will more than likely fail." +msgstr "" +"Dies ist eine große Seite (%dMB), der Klon-Prozess wird mehr als " +"wahrscheinlich scheitern." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:604 +msgid "Continue Anyway?" +msgstr "Trotzdem fortfahren?" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:605 +#, php-format +msgid "" +"Creating backup on %1$s expected size: %2$dMB (estimated time: %3$d seconds)" +msgstr "" +"Erstellen von Backup auf %s erwarteten Größe: %dMB (geschätzte Zeit: %d in " +"Sekunden)" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:606 +#, php-format +msgid "Backup created on %1$s total size to download: %2$dMB" +msgstr "Backup erstellt auf %s Gesamtgröße zum Download: %dMB" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:607 +msgid "Downloading backup" +msgstr "Herunterladen der Datensicherung" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:608 +msgid "Backup downloaded" +msgstr "Datensicherung heruntergeladen" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:609 +msgid "" +"Extracting backup and updating your database, this might take a while. " +"Please be patient." +msgstr "" +"Auspacken der Datensicherung und Aktualisierung Ihre Datenbank. Dies könnte " +"eine Weile dauern. Bitte haben Sie Geduld." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:610 +msgid "Cloning process completed successfully!" +msgstr "Klonen erfolgreich abgeschlossen!" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1204 +msgid "Restore process completed successfully! Check and re-save permalinks " +msgstr "" +"Wiederherstellungs-Vorgang erfolgreich abgeschlossen! Überprüfen und " +"Permalinks erneut speichern" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1206 +msgid "Cloning process completed successfully! Check and re-save permalinks " +msgstr "" +"Klonen erfolgreich abgeschlossen! Überprüfen und Permalinks erneut speichern" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1240 +msgid "" +"Be sure to use a FULL backup created by your Network dashboard, if critical " +"folders are excluded it may result in a not working installation." +msgstr "" +"Achten Sie darauf, eine vollständige Sicherung von Ihrem MainWP Dashboard zu " +"erstellen." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1243 +msgid "Start Restore" +msgstr "Wiederherstellung starten" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1244 +msgid "CAUTION: this will overwrite your existing site." +msgstr "ACHTUNG: dies wird Ihre bestehende Seite überschreiben." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1252 +msgid "Restore process completed successfully!" +msgstr "Wiederherstellungsvorgang erfolgreich abgeschlossen!" + +# @ mainwp-child +#: class/class-mainwp-clone.php:145 +msgid "Double request!" +msgstr "Doppelte Anfrage!" + +# @ mainwp-child +#: class/class-mainwp-clone.php:434 class/class-mainwp-clone.php:510 +msgid "No site given" +msgstr "Kein Seite angegeben" + +# @ mainwp-child +#: class/class-mainwp-clone.php:443 class/class-mainwp-clone.php:517 +#: class/class-mainwp-clone.php:583 +msgid "Site not found" +msgstr "Seite nicht gefunden" + +# @ mainwp-child +#: class/class-mainwp-clone.php:478 +msgid "Could not create backupfile on child" +msgstr "Konnte Datensicherungsdatei nicht auf dem Client erstellen" + +# @ mainwp-child +#: class/class-mainwp-clone.php:538 +msgid "Invalid response" +msgstr "Ungültige Antwort" + +# @ mainwp-child +#: class/class-mainwp-clone.php:573 +msgid "No download link given" +msgstr "Keinen Download-Link angegeben" + +# @ mainwp-child +#: class/class-mainwp-clone.php:695 class/class-mainwp-clone.php:810 +msgid "No download file found" +msgstr "Keine Download-Datei gefunden" + +# @ mainwp-child +#: class/class-mainwp-clone.php:818 +msgid "Backup file not found" +msgstr "Datensicherungsdatei nicht gefunden" + +#: class/class-mainwp-connect.php:89 +#, php-format +msgid "" +"Public key could not be set. Please make sure that the OpenSSL library has " +"been configured correctly on your MainWP Dashboard. For additional help, " +"please check this %1$shelp document%2$s." +msgstr "" +"Der öffentliche Schlüssel konnte nicht gesetzt werden. Bitte vergewissern " +"Sie sich, dass die OpenSSL-Bibliothek in Ihrem MainWP-Dashboard korrekt " +"konfiguriert wurde. Weitere Hilfe finden Sie in diesem %1$sHilfe-" +"Dokument%2$s." + +# @ mainwp-child +#: class/class-mainwp-connect.php:97 +msgid "" +"Public key already set. Please deactivate & reactivate the MainWP Child " +"plugin on the child site and try again." +msgstr "" +"Öffentlicher Schlüssel bereits festgelegt, setzen Sie die MainWP Plugin auf " +"Ihrer Website erneut auf und versuchen Sie es noch einmal" + +# @ mainwp-child +#: class/class-mainwp-connect.php:104 +msgid "" +"This child site is set to require a unique security ID. Please enter it " +"before the connection can be established." +msgstr "" +"Dieser Client erfordert eine eindeutige Sicherheits-ID. Bitte geben Sie " +"diese ein bevor eine Verbindung hergestellt werden kann." + +# @ mainwp-child +#: class/class-mainwp-connect.php:106 +msgid "" +"The unique security ID mismatch! Please correct it before the connection can " +"be established." +msgstr "" +"Die eindeutige Sicherheits-ID die Sie eingegeben haben, entspricht nicht der " +"Client Security ID. Bitte verbessern Sie dies bevor eine Verbindung " +"hergestellt werden kann." + +#: class/class-mainwp-connect.php:112 +msgid "" +"OpenSSL library is required on the child site to set up a secure connection." +msgstr "" +"Die OpenSSL-Bibliothek ist auf der untergeordneten Website erforderlich, um " +"eine sichere Verbindung herzustellen." + +#: class/class-mainwp-connect.php:117 +msgid "" +"cURL Extension not enabled on the child site server. Please contact your " +"host support and have them enabled it for you." +msgstr "" +"die cURL-Erweiterung ist auf dem Child-Site-Server nicht aktiviert. Bitte " +"wenden Sie sich an den Support Ihres Hosts und lassen Sie sie für Sie " +"aktivieren." + +#: class/class-mainwp-connect.php:122 +msgid "" +"Failed to reconnect to the site. Please remove the site and add it again." +msgstr "" +"Die Verbindung zur Website konnte nicht wiederhergestellt werden. Bitte " +"entfernen Sie die Website und fügen Sie sie erneut hinzu." + +#: class/class-mainwp-connect.php:124 +msgid "" +"Unable to connect to the site. Please verify that your Admin Username and " +"Password are correct and try again." +msgstr "" +"Die Verbindung zur Website kann nicht hergestellt werden. Bitte überprüfen " +"Sie, ob Ihr Admin-Benutzername und Passwort korrekt sind und versuchen Sie " +"es erneut." + +#: class/class-mainwp-connect.php:130 +msgid "" +"Administrator user does not exist. Please verify that the user is an " +"existing administrator." +msgstr "" +"Der Benutzer Administrator existiert nicht. Bitte prüfen Sie, ob der " +"Benutzer ein vorhandener Administrator ist." + +#: class/class-mainwp-connect.php:133 +msgid "" +"User is not an administrator. Please use an administrator user to establish " +"the connection." +msgstr "" +"Der Benutzer ist kein Administrator. Bitte verwenden Sie einen Administrator-" +"Benutzer, um die Verbindung herzustellen." + +# @ mainwp-child +#: class/class-mainwp-connect.php:399 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this child site and try again." +msgstr "" +"Öffentlicher Schlüssel bereits festgelegt, setzen Sie die MainWP Plugin auf " +"Ihrer Website erneut auf und versuchen Sie es noch einmal" + +# @ mainwp-child +#: class/class-mainwp-connect.php:408 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this site and try again." +msgstr "" +"Öffentlicher Schlüssel bereits festgelegt, setzen Sie die MainWP Plugin auf " +"Ihrer Website erneut auf und versuchen Sie es noch einmal" + +#: class/class-mainwp-connect.php:436 class/class-mainwp-connect.php:969 +msgid "" +"Unexisting administrator user. Please verify that it is an existing " +"administrator." +msgstr "" +"Nicht vorhandener Administrator-Benutzer. Bitte überprüfen Sie, ob es sich " +"um einen vorhandenen Administrator handelt." + +#: class/class-mainwp-connect.php:440 class/class-mainwp-connect.php:972 +msgid "" +"User not administrator. Please use an administrator user to establish the " +"connection." +msgstr "" +"Benutzer ist kein Administrator. Bitte verwenden Sie einen Administrator-" +"Benutzer, um die Verbindung herzustellen." + +#: class/class-mainwp-connect.php:614 +msgid "" +"To use OPENSSL_ALGO_SHA1 OpenSSL signature algorithm. Please deactivate & " +"reactivate the MainWP Child plugin on the child site and try again." +msgstr "" +"Zur Verwendung des OpenSSL-Signaturalgorithmus OPENSSL_ALGO_SHA1. Bitte " +"deaktivieren und reaktivieren Sie das MainWP Child-Plugin auf der Child-Site " +"und versuchen Sie es erneut." + +#: class/class-mainwp-connect.php:948 +msgid "" +"Authentication failed! Please deactivate and re-activate the MainWP Child " +"plugin on this site." +msgstr "" +"Authentifizierung fehlgeschlagen! Bitte deaktivieren Sie das MainWP Child-" +"Plugin auf dieser Website und aktivieren Sie es erneut." + +#: class/class-mainwp-custom-post-type.php:187 +msgid "Missing data" +msgstr "Fehlende Daten" + +#: class/class-mainwp-custom-post-type.php:198 +msgid "Cannot decode data" +msgstr "Daten können nicht dekodiert werden" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "Missing" +msgstr "Fehlend" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "inside post data" +msgstr "innenpfostendaten" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "Please install" +msgstr "Bitte installieren Sie" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "on child and try again" +msgstr "auf Kind und versuchen Sie es erneut" + +#: class/class-mainwp-custom-post-type.php:340 +msgid "" +"Cannot get old post. Probably is deleted now. Please try again for create " +"new post" +msgstr "" +"Alter Beitrag kann nicht geladen werden. Vermutlich wurde er gelöscht. Bitte " +"versuche, einen neuen Beitrag zu erstellen" + +#: class/class-mainwp-custom-post-type.php:345 +msgid "" +"This post is inside trash on child website. Please try publish it manually " +"and try again." +msgstr "" +"Dieser Beitrag befindet sich im Papierkorb der Kinderwebsite. Bitte " +"veröffentlichen Sie ihn manuell und versuchen Sie es erneut." + +#: class/class-mainwp-custom-post-type.php:354 +msgid "Cannot delete old post meta values" +msgstr "Alte Post-Meta-Werte können nicht gelöscht werden" + +#: class/class-mainwp-custom-post-type.php:375 +msgid "Error when insert new post:" +msgstr "Fehler beim Einfügen eines neuen Beitrags:" + +#: class/class-mainwp-custom-post-type.php:520 +msgid "Missing taxonomy" +msgstr "Fehlende Taxonomie" + +#: class/class-mainwp-custom-post-type.php:545 +msgid "Error when adding taxonomy to post" +msgstr "Fehler beim Hinzufügen einer Taxonomie zu einem Beitrag" + +#: class/class-mainwp-custom-post-type.php:619 +msgid "Product SKU must be unique" +msgstr "Artikelnummer muss eindeutig sein" + +#: class/class-mainwp-custom-post-type.php:641 +msgid "Cannot add featured image" +msgstr "Kann kein Featured Image hinzufügen" + +#: class/class-mainwp-custom-post-type.php:653 +msgid "Error when adding post meta" +msgstr "Fehler beim Hinzufügen von Post-Meta" + +#: class/class-mainwp-custom-post-type.php:682 +msgid "Cannot add product image" +msgstr "Produktbild kann nicht hinzugefügt werden" + +#: class/class-mainwp-helper.php:134 +msgid "Unable to connect to the filesystem." +msgstr "Verbindung zum Dateisystem nicht möglich." + +# @ mainwp-child +#: class/class-mainwp-helper.php:295 +msgid "Unable to create directory " +msgstr "Verzeichnis kann nicht erstellt" + +# @ mainwp-child +#: class/class-mainwp-helper.php:295 +msgid " Is its parent directory writable by the server?" +msgstr "Ist das übergeordnete Verzeichnis durch den Server beschreibbar?" + +# @ mainwp-child +#: class/class-mainwp-helper.php:414 +msgid "WordPress Filesystem error: " +msgstr "WordPress-Dateisystem-Fehler: " + +#: class/class-mainwp-pages.php:113 +msgid " Plugin is Active" +msgstr " Plugin ist aktiv" + +#: class/class-mainwp-pages.php:114 +msgid "" +"This site is now ready for connection. Please proceed with the connection " +"process from your " +msgstr "" +"Diese Seite ist jetzt bereit für die Verbindung. Bitte fahren Sie mit dem " +"Verbindungsprozess von Ihrem" + +#: class/class-mainwp-pages.php:114 +msgid "to start managing the site. " +msgstr "um mit der Verwaltung der Website zu beginnen." + +#: class/class-mainwp-pages.php:115 +#, php-format +msgid "If you need assistance, refer to our %1$sdocumentation%2$s." +msgstr "" +"Wenn Sie Hilfe benötigen, lesen Sie bitte unsere %1$sDokumentation%2$s." + +#: class/class-mainwp-pages.php:117 +msgid "For additional security options, visit the " +msgstr "Weitere Sicherheitsoptionen finden Sie auf der Seite" + +#: class/class-mainwp-pages.php:117 +#, php-format +msgid " %1$splugin settings%2$s. " +msgstr " %1$sPlugin-Einstellungen%2$s." + +#: class/class-mainwp-pages.php:129 +msgid "Disconnected the Site from Dashboard." +msgstr "Trennen Sie die Website vom Dashboard." + +#: class/class-mainwp-pages.php:131 +msgid "Settings have been saved successfully." +msgstr "Die Einstellungen wurden erfolgreich gespeichert." + +#: class/class-mainwp-pages.php:139 +msgid "Dismiss this notice." +msgstr "Diesen Hinweis ausblenden." + +# @ mainwp-child +#: class/class-mainwp-pages.php:589 +msgid "Restore / Clone" +msgstr "Wiederherstellen/Klonen von Datensicherung" + +# @ mainwp-child +#: class/class-mainwp-pages.php:595 +msgid "Connection Details" +msgstr "Verbindungsdetails" + +# @ mainwp-child +#: class/class-mainwp-pages.php:668 +msgid "Connection Security Settings" +msgstr "Verbindungseinstellungen" + +#: class/class-mainwp-pages.php:669 +msgid "Configure the plugin to best suit your security and connection needs." +msgstr "" +"Konfigurieren Sie das Plugin so, dass es Ihren Sicherheits- und " +"Verbindungsanforderungen am besten entspricht." + +#: class/class-mainwp-pages.php:673 +msgid "Password Authentication - Initial Connection Security" +msgstr "Passwort-Authentifizierung - Sicherheit der ersten Verbindung" + +#: class/class-mainwp-pages.php:676 +msgid "" +" requests that you connect using an admin account and password for the " +"initial setup. Rest assured, your password is never stored by your Dashboard " +"and never sent to " +msgstr "" +" verlangt, dass Sie sich mit einem Administratorkonto und einem Passwort für " +"die Ersteinrichtung verbinden. Seien Sie versichert, dass Ihr Passwort " +"niemals von Ihrem Dashboard gespeichert und niemals an" + +#: class/class-mainwp-pages.php:677 +msgid "Dedicated " +msgstr "Dedizierte" + +#: class/class-mainwp-pages.php:678 +msgid "" +"For further security, we recommend creating a dedicated admin account " +"specifically for " +msgstr "" +"Aus Sicherheitsgründen empfehlen wir die Einrichtung eines eigenen " +"Administratorkontos speziell für" + +#: class/class-mainwp-pages.php:679 +msgid "Disabling Password Security" +msgstr "Deaktivieren der Passwortsicherheit" + +#: class/class-mainwp-pages.php:680 +msgid "" +"If you prefer not to use password security, you can disable it by unchecking " +"the box below. Make sure this child site is ready to connect before turning " +"off this feature." +msgstr "" +"Wenn Sie es vorziehen, die Passwortsicherheit nicht zu verwenden, können Sie " +"diese Funktion deaktivieren, indem Sie das Kontrollkästchen unten abwählen. " +"Vergewissern Sie sich, dass die untergeordnete Website bereit für die " +"Verbindung ist, bevor Sie diese Funktion deaktivieren." + +#: class/class-mainwp-pages.php:684 +msgid "" +"If you have additional questions, please refer to this Knowledge Base " +"article or contact " +msgstr "" +"Wenn Sie weitere Fragen haben, lesen Sie bitte diesen Knowledge Base-Artikel " +"oder wenden Sie sich an" + +#: class/class-mainwp-pages.php:686 +#, php-format +msgid "" +"If you have additional questions, please %srefer to this Knowledge Base " +"article%s or %scontact MainWP Support%s." +msgstr "" +"Wenn Sie weitere Fragen haben, lesen Sie bitte %sdiesen Knowledge Base " +"Artikel%s oder %skontaktieren Sie den MainWP Support%s." + +#: class/class-mainwp-pages.php:693 +msgid "Require Password Authentication" +msgstr "Passwort-Authentifizierung erforderlich" + +#: class/class-mainwp-pages.php:698 +msgid "" +"Enable this option to require password authentication on initial site " +"connection." +msgstr "" +"Aktivieren Sie diese Option, um bei der ersten Verbindung mit der Website " +"eine Passwortauthentifizierung zu verlangen." + +# @ mainwp-child +#: class/class-mainwp-pages.php:705 +msgid "Unique Security ID" +msgstr "Eine eindeutige Sicherheits-ID" + +#: class/class-mainwp-pages.php:708 +#, php-format +msgid "" +"Add an extra layer of security for connecting this site to your %s Dashboard." +msgstr "" +"Fügen Sie eine zusätzliche Sicherheitsebene für die Verbindung dieser " +"Website mit Ihrem %s Dashboard hinzu." + +# @ mainwp-child +#: class/class-mainwp-pages.php:713 +msgid "Require Unique Secuirty ID" +msgstr "Eine eindeutige Sicherheits-ID" + +#: class/class-mainwp-pages.php:718 +msgid "" +"Enable this option for an added layer of protection when connecting this " +"site." +msgstr "" +"Aktivieren Sie diese Option, um einen zusätzlichen Schutz bei der Verbindung " +"mit dieser Website zu gewährleisten." + +# @ mainwp-child +#: class/class-mainwp-pages.php:729 +msgid "Your unique security ID is:" +msgstr "Ihre eindeutige Sicherheits-ID ist:" + +# @ mainwp-child +#: class/class-mainwp-pages.php:737 +msgid "Connection Timeout" +msgstr "Verbindungseinstellungen" + +#: class/class-mainwp-pages.php:740 +msgid "" +"Define how long the plugin will remain active if no connection is " +"established. After this period, the plugin will automatically deactivate for " +"security." +msgstr "" +"Legen Sie fest, wie lange das Plugin aktiv bleiben soll, wenn keine " +"Verbindung hergestellt wird. Nach diesem Zeitraum wird das Plugin aus " +"Sicherheitsgründen automatisch deaktiviert." + +# @ mainwp-child +#: class/class-mainwp-pages.php:744 +msgid "Set Connection Timeout" +msgstr "Verbindungseinstellungen" + +#: class/class-mainwp-pages.php:747 +msgid "" +"Specify how long the plugin should stay active if a connection isn't " +"established. Enter a value in minutes." +msgstr "" +"Geben Sie an, wie lange das Plugin aktiv bleiben soll, wenn keine Verbindung " +"hergestellt wird. Geben Sie einen Wert in Minuten ein." + +# @ mainwp-child +#: class/class-mainwp-pages.php:757 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: class/class-mainwp-pages.php:763 +msgid "Site Connection Management" +msgstr "Verwaltung von Standortverbindungen" + +#: class/class-mainwp-pages.php:766 +msgid "Are you sure you want to Disconnect Site from your " +msgstr "" +"Sind Sie sicher, dass Sie die Website von Ihrem Computer trennen möchten?" + +#: class/class-mainwp-pages.php:767 +#, php-format +msgid "Click this button to disconnect this site from your %s Dashboard." +msgstr "" +"Klicken Sie auf diese Schaltfläche, um diese Website von Ihrem %s Dashboard " +"zu trennen." + +# @ mainwp-child +#: class/class-mainwp-pages.php:769 +msgid "Clear Connection Data" +msgstr "Verbindungsdaten löschen" + +# @ mainwp-child +#: class/class-mainwp-utility.php:592 +msgid "" +"Something went wrong while contacting the child site. Please check if there " +"is an error on the child site. This error could also be caused by trying to " +"clone or restore a site to large for your server settings." +msgstr "" +"Etwas ist schiefgelaufen, während der Verbindung zum Client. Bitte " +"überprüfen Sie, ob es einen Fehler von der Client Webseite ist." + +# @ mainwp-child +#: class/class-mainwp-utility.php:594 +msgid "" +"Child plugin is disabled or the security key is incorrect. Please resync " +"with your main installation." +msgstr "" +"MainWP Clhild Plugin ist deaktiviert oder der Sicherheitsschlüssel ist " +"falsch." + +# @ mainwp-child +#: class/class-mainwp-wordpress-seo.php:73 +msgid "Settings could not be imported." +msgstr "Einstellungen konnten nicht importiert werden." + +# @ mainwp +#: class/class-mainwp-wordpress-seo.php:228 +msgid "Upload failed." +msgstr "Hochladen fehlgeschlagen." + +#: class/class-mainwp-wordpress-seo.php:242 +msgid "Post is set to noindex." +msgstr "Der Beitrag ist auf 'noindex' gesetzt." + +#: class/class-mainwp-wordpress-seo.php:246 +msgid "Focus keyword not set." +msgstr "Fokus-Schlüsselwort wurde nicht gesetzt." + +#. Plugin Name of the plugin/theme +msgid "MainWP Child" +msgstr "Fernwartung" + +#. Plugin URI of the plugin/theme +msgid "https://mainwp.com/" +msgstr "https://mainwp.com/" + +#. Description of the plugin/theme +msgid "" +"Provides a secure connection between your MainWP Dashboard and your " +"WordPress sites. MainWP allows you to manage WP sites from one central " +"location. Plugin documentation and options can be found here https://kb." +"mainwp.com/." +msgstr "" +"Bietet eine sichere Verbindung zwischen Ihrem MainWP Dashboard und Ihren " +"WordPress-Sites. MainWP ermöglicht es Ihnen, WP-Sites von einem zentralen " +"Ort aus zu verwalten. Plugin-Dokumentation und Optionen finden Sie hier " +"https://kb.mainwp.com/." + +#. Author of the plugin/theme +msgid "MainWP" +msgstr "Haupt WP" + +#. Author URI of the plugin/theme +msgid "https://mainwp.com" +msgstr "https://mainwp.com" + +# @ mainwp-child +#~ msgid "" +#~ "The Unique Security ID adds additional protection between the Child " +#~ "plugin and your
Main Dashboard. The Unique Security ID will need to " +#~ "match when being added to
the Main Dashboard. This is additional " +#~ "security and should not be needed in most situations." +#~ msgstr "" +#~ "Die eindeutige Sicherheits-ID bringt zusätzlichen Schutz zwischen dem " +#~ "Client und Ihrem
MainWP Dashboard. Die eindeutige Sicherheits-ID muß " +#~ "übereinstimmen, wenn sie im MainWP Dashboard aufgenommen wird.
Dies " +#~ "ist eine zusätzliche Sicherheit und ist in den meisten Fällen nicht " +#~ "erforderlich." + +# @ mainwp-child +#~ msgid "Authentication failed. Reinstall MainWP plugin please" +#~ msgstr "" +#~ "Authentifizierung fehlgeschlagen. Installieren Sie bitte das MainWP " +#~ "Plugin erneut." + +# @ mainwp-child +#~ msgid "No such user" +#~ msgstr "Keine solche Benutzer" + +# @ mainwp-child +#~ msgid "User is not an administrator" +#~ msgstr "Benutzer ist kein Administrator" + +# @ mainwp-child +#~ msgid "Bad request." +#~ msgstr "Fehlerhafte Anforderung." + +# @ mainwp-child +#~ msgid "Could not change the admin password." +#~ msgstr "Das Admin-Passwort kann nicht geändern werden." + +# @ mainwp +#~ msgid "Suggested Value" +#~ msgstr "Empfohlener Wert" + +# @ mainwp +#~ msgid "Path" +#~ msgstr "Pfad" + +# @ mainwp +#~ msgid "Check" +#~ msgstr "Überprüfen" + +# @ mainwp +#~ msgid "Server Admin" +#~ msgstr "Server Admin" + +# @ mainwp +#~ msgid "Query String" +#~ msgstr "Übergabe String" + +# @ mainwp +#~ msgid "Server Signature" +#~ msgstr "Signature Server" + +# @ mainwp +#~ msgid "Path Translated" +#~ msgstr "Pfad Übersetzt" + +# @ mainwp +#~ msgid "Current Script Path" +#~ msgstr "Aktuelles Skript Pfad" + +# @ default +#~ msgid " MB" +#~ msgstr " MB" + +# @ mainwp-child +#~ msgid "Clone or Restore" +#~ msgstr "Klonen oder wiederherstellen" + +# @ mainwp-child +#~ msgid "Clone Options" +#~ msgstr "Einstellung Klonen" + +# @ mainwp-child +#~ msgid "Invalid database host or user/password." +#~ msgstr "Ungültige Datenbank-Host oder Benutzer / Passwort." + +# @ default +#~ msgid "Home Page" +#~ msgstr "Home Page" + +# @ default +#~ msgid "Archive" +#~ msgstr "Archivieren" + +# @ default +#~ msgid "Search" +#~ msgstr "Suchen" + +# @ mainwp-child +#~ msgid " Clone" +#~ msgstr "Klon" + +# @ mainwp +#~ msgid "Current Directory: " +#~ msgstr "Aktuelles Verzeichnis: " + +# @ mainwp +#~ msgid "No errors found... Yet." +#~ msgstr "Keine Fehler gefunden ... zurzeit." diff --git a/languages/mainwp-child-es_ES.mo b/languages/mainwp-child-es_ES.mo new file mode 100644 index 0000000000000000000000000000000000000000..de10a9b89700d10a62cbbdbe6dea0685f98b1ea2 GIT binary patch literal 85531 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 folders and other backup plugin folders." +msgstr "" +"Detectamos e ignoramos automáticamente las carpetas VCS comunes y otras carpetas de plugins de copia de " +"seguridad." + +#: class/class-mainwp-child-back-up-wordpress.php:766 +msgid "Your Site" +msgstr "Tú sitio web" + +#: class/class-mainwp-child-back-up-wordpress.php:767 +msgid "" +"Here's a directory listing of all files on your site, you can browse through " +"and exclude files or folders that you don't want included in your backup." +msgstr "" +"Aquí tienes un listado de directorios de todos los archivos de tu sitio, " +"puedes navegar a través de ellos y excluir archivos o carpetas que no " +"quieras incluir en tu copia de seguridad." + +#: class/class-mainwp-child-back-up-wordpress.php:797 +msgid "Done" +msgstr "Hecho" + +#: class/class-mainwp-child-back-up-wordpress.php:842 +msgid "Default rule" +msgstr "Regla predeterminada" + +#: class/class-mainwp-child-back-up-wordpress.php:844 +msgid "Defined in wp-config.php" +msgstr "Definido en wp-config.php" + +#: class/class-mainwp-child-back-up-wordpress.php:846 +msgid "Stop excluding" +msgstr "Dejar de excluir" + +#: class/class-mainwp-child-back-up-wordpress.php:898 +msgid "Name" +msgstr "Nombre" + +#: class/class-mainwp-child-back-up-wordpress.php:901 +msgid "Permissions" +msgstr "Permisos" + +#: class/class-mainwp-child-back-up-wordpress.php:946 +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Refresh" +msgstr "Refrescar" + +#: class/class-mainwp-child-back-up-wordpress.php:956 +#: class/class-mainwp-child-back-up-wordpress.php:1065 +msgid "Symlink" +msgstr "Enlace simbólico" + +#: class/class-mainwp-child-back-up-wordpress.php:958 +#: class/class-mainwp-child-back-up-wordpress.php:1068 +msgid "Folder" +msgstr "Carpeta" + +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Recalculate the size of this directory" +msgstr "Recalcular el tamaño de este directorio" + +#: class/class-mainwp-child-back-up-wordpress.php:1070 +msgid "File" +msgstr "Archivo" + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable files won't be backed up." +msgstr "Los archivos ilegibles no se copiarán." + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable" +msgstr "Ilegible" + +#: class/class-mainwp-child-back-up-wordpress.php:1078 +msgid "Excluded" +msgstr "Excluido" + +#: class/class-mainwp-child-back-up-wordpress.php:1088 +msgid "Exclude →" +msgstr "Excluir →" + +#: class/class-mainwp-child-back-up-wordpress.php:1125 +#: class/class-mainwp-child-back-up-wordpress.php:1160 +msgid "Empty exclude directory path." +msgstr "Ruta de directorio de exclusión vacía." + +#: class/class-mainwp-child-back-up-wordpress.php:1261 +#: class/class-mainwp-child-back-up-wordpress.php:1320 +msgid "Schedule data" +msgstr "Datos del programa" + +#: class/class-mainwp-child-back-wp-up.php:197 +msgid "Please install BackWPup plugin on child website" +msgstr "Por favor, instale el plugin BackWPup en el sitio web del niño" + +#: class/class-mainwp-child-back-wp-up.php:205 +msgid "Missing action." +msgstr "Acción perdida." + +#: class/class-mainwp-child-back-wp-up.php:282 +msgid "Wrong action." +msgstr "Acción equivocada." + +#: class/class-mainwp-child-back-wp-up.php:381 +msgid "Database backup" +msgstr "Copia de seguridad de la base de datos" + +#: class/class-mainwp-child-back-wp-up.php:382 +msgid "File backup" +msgstr "Copia de seguridad de archivos" + +#: class/class-mainwp-child-back-wp-up.php:383 +msgid "WordPress XML export" +msgstr "Exportación XML de WordPress" + +#: class/class-mainwp-child-back-wp-up.php:384 +msgid "Installed plugins list" +msgstr "Lista de plugins instalados" + +#: class/class-mainwp-child-back-wp-up.php:385 +msgid "Check database tables" +msgstr "Comprobar las tablas de la base de datos" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-timecapsule.php:1912 +msgid "Setting" +msgstr "Configuración" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-ithemes-security.php:947 +#: class/class-mainwp-child-ithemes-security.php:956 +#: class/class-mainwp-child-server-information.php:427 +#: class/class-mainwp-child-timecapsule.php:1912 +#: class/class-mainwp-child-wordfence.php:3209 +msgid "Value" +msgstr "Valor" + +#: class/class-mainwp-child-back-wp-up.php:567 +#: class/class-mainwp-child-timecapsule.php:1913 +msgid "WordPress version" +msgstr "Versión de WordPress" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "BackWPup version" +msgstr "Versión de BackWPup" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "Get pro." +msgstr "Hazte profesional." + +#: class/class-mainwp-child-back-wp-up.php:571 +msgid "BackWPup Pro version" +msgstr "BackWPup versión Pro" + +#: class/class-mainwp-child-back-wp-up.php:574 +#: class/class-mainwp-child-timecapsule.php:1924 +msgid "PHP version" +msgstr "Versión de PHP" + +#: class/class-mainwp-child-back-wp-up.php:575 +#: class/class-mainwp-child-timecapsule.php:1925 +msgid "MySQL version" +msgstr "Versión de MySQL" + +#: class/class-mainwp-child-back-wp-up.php:578 +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1929 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "cURL version" +msgstr "versión cURL" + +#: class/class-mainwp-child-back-wp-up.php:579 +#: class/class-mainwp-child-timecapsule.php:1930 +msgid "cURL SSL version" +msgstr "versión de cURL SSL" + +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "unavailable" +msgstr "no disponible" + +#: class/class-mainwp-child-back-wp-up.php:583 +msgid "WP-Cron url:" +msgstr "URL de WP-Cron:" + +#: class/class-mainwp-child-back-wp-up.php:585 +msgid "Server self connect:" +msgstr "Autoconexión del servidor:" + +#: class/class-mainwp-child-back-wp-up.php:589 +#: class/class-mainwp-child-server-information-base.php:708 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "La prueba de respuesta HTTP obtiene un error \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:591 +#: class/class-mainwp-child-server-information-base.php:712 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "La prueba de respuesta HTTP obtiene un estado http falso (%s)" + +#: class/class-mainwp-child-back-wp-up.php:595 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "" +"El encabezado de respuesta HTTP BackWPup devuelve un valor falso: \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:599 +#: class/class-mainwp-child-server-information-base.php:720 +msgid "Response Test O.K." +msgstr "Prueba de respuesta O.K." + +#: class/class-mainwp-child-back-wp-up.php:605 +msgid "Temp folder:" +msgstr "Carpeta temporal:" + +#: class/class-mainwp-child-back-wp-up.php:607 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "La carpeta temporal %s no existe." + +#: class/class-mainwp-child-back-wp-up.php:609 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "La carpeta temporal %s no tiene permisos de escritura." + +#: class/class-mainwp-child-back-wp-up.php:615 +msgid "Log folder:" +msgstr "Carpeta de registro:" + +#: class/class-mainwp-child-back-wp-up.php:620 +#, php-format +msgid "Logs folder %s not exist." +msgstr "La carpeta Logs %s no existe." + +#: class/class-mainwp-child-back-wp-up.php:622 +#, php-format +msgid "Log folder %s is not writable." +msgstr "La carpeta de registro %s no tiene permisos de escritura." + +#: class/class-mainwp-child-back-wp-up.php:627 +#: class/class-mainwp-child-timecapsule.php:1936 +msgid "Server" +msgstr "Servidor" + +#: class/class-mainwp-child-back-wp-up.php:628 +#: class/class-mainwp-child-server-information.php:750 +#: class/class-mainwp-child-timecapsule.php:1937 +msgid "Operating System" +msgstr "Sistema Operativo" + +#: class/class-mainwp-child-back-wp-up.php:629 +#: class/class-mainwp-child-timecapsule.php:1938 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +#: class/class-mainwp-child-back-wp-up.php:630 +#: class/class-mainwp-child-timecapsule.php:1945 +msgid "Current PHP user" +msgstr "Usuario PHP actual" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:640 +msgid "On" +msgstr "Activado" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:637 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Off" +msgstr "Apagado" + +#: class/class-mainwp-child-back-wp-up.php:632 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "Maximum execution time" +msgstr "Tiempo máximo de ejecución" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "seconds" +msgstr "segundos" + +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:637 +msgid "Alternative WP Cron" +msgstr "Cron WP alternativo" + +#: class/class-mainwp-child-back-wp-up.php:640 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Disabled WP Cron" +msgstr "Desactivado WP Cron" + +#: class/class-mainwp-child-back-wp-up.php:645 +#: class/class-mainwp-child-back-wp-up.php:647 +#: class/class-mainwp-child-timecapsule.php:1949 +#: class/class-mainwp-child-timecapsule.php:1951 +msgid "CHMOD Dir" +msgstr "CHMOD Dir" + +#: class/class-mainwp-child-back-wp-up.php:651 +#: class/class-mainwp-child-timecapsule.php:1955 +msgid "Server Time" +msgstr "Hora del Servidor" + +#: class/class-mainwp-child-back-wp-up.php:652 +#: class/class-mainwp-child-timecapsule.php:1956 +msgid "Blog Time" +msgstr "Hora del blog" + +#: class/class-mainwp-child-back-wp-up.php:653 +msgid "Blog Timezone" +msgstr "Zona horaria del blog" + +#: class/class-mainwp-child-back-wp-up.php:654 +msgid "Blog Time offset" +msgstr "Blog Time offset" + +#: class/class-mainwp-child-back-wp-up.php:654 +#, php-format +msgid "%s hours" +msgstr "%s horas" + +#: class/class-mainwp-child-back-wp-up.php:655 +#: class/class-mainwp-child-timecapsule.php:1957 +msgid "Blog language" +msgstr "Idioma del blog" + +#: class/class-mainwp-child-back-wp-up.php:656 +#: class/class-mainwp-child-timecapsule.php:1958 +msgid "MySQL Client encoding" +msgstr "Codificación del cliente MySQL" + +#: class/class-mainwp-child-back-wp-up.php:659 +#: class/class-mainwp-child-timecapsule.php:1961 +msgid "Blog charset" +msgstr "Conjunto de caracteres del blog" + +#: class/class-mainwp-child-back-wp-up.php:660 +#: class/class-mainwp-child-timecapsule.php:1962 +msgid "PHP Memory limit" +msgstr "Límite de memoria de PHP" + +#: class/class-mainwp-child-back-wp-up.php:661 +#: class/class-mainwp-child-timecapsule.php:1963 +msgid "WP memory limit" +msgstr "Límite de memoria de WP" + +#: class/class-mainwp-child-back-wp-up.php:662 +#: class/class-mainwp-child-timecapsule.php:1964 +msgid "WP maximum memory limit" +msgstr "Límite máximo de memoria de WP" + +#: class/class-mainwp-child-back-wp-up.php:663 +#: class/class-mainwp-child-timecapsule.php:1965 +msgid "Memory in use" +msgstr "Memoria en uso" + +#: class/class-mainwp-child-back-wp-up.php:668 +#: class/class-mainwp-child-timecapsule.php:1971 +msgid "Disabled PHP Functions:" +msgstr "Funciones PHP deshabilitadas:" + +#: class/class-mainwp-child-back-wp-up.php:673 +#: class/class-mainwp-child-timecapsule.php:1977 +msgid "Loaded PHP Extensions:" +msgstr "Extensiones PHP cargadas:" + +#: class/class-mainwp-child-back-wp-up.php:699 +#: class/class-mainwp-child-back-wp-up.php:806 +msgid "Missing logfile." +msgstr "Falta el archivo de registro." + +#: class/class-mainwp-child-back-wp-up.php:711 +msgid "Directory not writable:" +msgstr "Directorio no escribible:" + +#: class/class-mainwp-child-back-wp-up.php:714 +msgid "Not file:" +msgstr "No archivar:" + +#: class/class-mainwp-child-back-wp-up.php:737 +msgid "Missing job_id." +msgstr "Falta job_id." + +#: class/class-mainwp-child-back-wp-up.php:744 +msgid "Cannot delete job" +msgstr "No se puede eliminar el trabajo" + +#: class/class-mainwp-child-back-wp-up.php:761 +msgid "Missing backupfile." +msgstr "Falta el archivo de copia de seguridad." + +#: class/class-mainwp-child-back-wp-up.php:765 +msgid "Missing dest." +msgstr "Falta dest." + +#: class/class-mainwp-child-back-wp-up.php:777 +msgid "Invalid dest class." +msgstr "Clase dest no válida." + +#: class/class-mainwp-child-back-wp-up.php:814 +msgid "Log file doesn't exists" +msgstr "El archivo de registro no existe" + +#: class/class-mainwp-child-back-wp-up.php:854 +msgid "Missing type." +msgstr "Tipo perdido." + +#: class/class-mainwp-child-back-wp-up.php:858 +msgid "Missing website id." +msgstr "Falta el identificador del sitio web." + +#: class/class-mainwp-child-back-wp-up.php:909 +#: class/class-mainwp-child-back-wp-up.php:952 +#, php-format +msgid "%1$s at %2$s" +msgstr "%1$s en %2$s" + +#: class/class-mainwp-child-back-wp-up.php:943 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s a %2$s por WP-Cron" + +#: class/class-mainwp-child-back-wp-up.php:945 +msgid "Not scheduled!" +msgstr "¡No programada!" + +#: class/class-mainwp-child-back-wp-up.php:948 +#: class/class-mainwp-child-server-information.php:627 +msgid "Inactive" +msgstr "Inactivo" + +#: class/class-mainwp-child-back-wp-up.php:954 +#, php-format +msgid "Runtime: %d seconds" +msgstr "Tiempo de ejecución: %d segundos" + +#: class/class-mainwp-child-back-wp-up.php:957 +msgid "not yet" +msgstr "todavía no" + +#: class/class-mainwp-child-back-wp-up.php:1135 +msgid "Missing logfile or logpos." +msgstr "Falta logfile o logpos." + +#: class/class-mainwp-child-back-wp-up.php:1185 +#: class/class-mainwp-child-back-wp-up.php:1582 +#: class/class-mainwp-child-back-wp-up.php:1770 +msgid "Missing job_id" +msgstr "Falta job_id" + +#: class/class-mainwp-child-back-wp-up.php:1323 +msgid "Missing email address." +msgstr "Falta la Adreça de Correu electrònic." + +#: class/class-mainwp-child-back-wp-up.php:1386 +msgid "BackWPup archive sending TEST Message" +msgstr "Archivo BackWPup enviando mensaje de PRUEBA" + +#: class/class-mainwp-child-back-wp-up.php:1389 +msgid "" +"If this message reaches your inbox, sending backup archives via email should " +"work for you." +msgstr "" +"Si este mensaje llega a tu bandeja de entrada, el envío de archivos de copia " +"de seguridad por correo electrónico debería funcionarte." + +#: class/class-mainwp-child-back-wp-up.php:1401 +msgid "Error while sending email!" +msgstr "Error al enviar correo electrónico" + +#: class/class-mainwp-child-back-wp-up.php:1403 +msgid "Email sent." +msgstr "Email enviado." + +#: class/class-mainwp-child-back-wp-up.php:1578 +#: class/class-mainwp-child-back-wp-up.php:1762 +#: class/class-mainwp-child-back-wp-up.php:1884 +msgid "Missing array settings" +msgstr "Falta la configuración de la matriz" + +#: class/class-mainwp-child-back-wp-up.php:1609 +msgid "Missing new job_id" +msgstr "Falta nuevo job_id" + +#: class/class-mainwp-child-back-wp-up.php:1766 +msgid "Missing tab" +msgstr "Ficha que falta" + +#: class/class-mainwp-child-back-wp-up.php:1774 +#: class/class-mainwp-child-back-wp-up.php:1888 +msgid "Install BackWPup on child website" +msgstr "Instalar BackWPup en el sitio web del niño" + +#: class/class-mainwp-child-back-wp-up.php:1805 +#, php-format +msgid "Changes for job %s saved." +msgstr "Cambios para el trabajo %s guardados." + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Jobs overview" +msgstr "Resumen de empleos" + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Run now" +msgstr "Ejecutar ahora" + +#: class/class-mainwp-child-back-wp-up.php:1824 +msgid "Cannot save jobs: " +msgstr "No se pueden salvar puestos de trabajo:" + +#: class/class-mainwp-child-back-wp-up.php:1892 +msgid "" +"You try to use pro version settings in non pro plugin version. Please " +"install pro version on child and try again." +msgstr "" +"Usted intenta utilizar la configuración de la versión pro en una versión no " +"pro del plugin. Por favor, instale la versión pro en el niño y vuelva a " +"intentarlo." + +#: class/class-mainwp-child-back-wp-up.php:1915 +msgid "Cannot save settings: " +msgstr "No se puede guardar la configuración:" + +#: class/class-mainwp-child-branding-render.php:136 +msgid "Subject:" +msgstr "Tema:" + +#: class/class-mainwp-child-branding-render.php:141 +msgid "From:" +msgstr "De:" + +#: class/class-mainwp-child-branding-render.php:146 +msgid "Your message:" +msgstr "Tu mensaje:" + +#: class/class-mainwp-child-branding-render.php:167 +msgid "Submit" +msgstr "Enviar" + +#: class/class-mainwp-child-branding-render.php:196 +msgid "Message has been submitted successfully." +msgstr "El mensaje se ha enviado correctamente." + +#: class/class-mainwp-child-branding-render.php:199 +msgid "Sending email failed!" +msgstr "Error en el envío del correo electrónico" + +#: class/class-mainwp-child-branding.php:89 +msgid "Contact Support" +msgstr "Contactar Soporte" + +#: class/class-mainwp-child-callable.php:182 +msgid "" +"Required version has not been detected. Please, make sure that you are using " +"the latest version of the MainWP Child plugin on your site." +msgstr "" +"No se ha detectado la versión requerida. Por favor, asegúrese de que está " +"utilizando la última versión del plugin MainWP Child en su sitio." + +#: class/class-mainwp-child-callable.php:888 +#, php-format +msgid "PHP Version %s is unsupported." +msgstr "La versión %s de PHP no es compatible." + +#: class/class-mainwp-child-install.php:374 +msgid "" +"Plugin or theme not specified, or missing required data. Please reload the " +"page and try again." +msgstr "" +"Plugin o tema no especificado, o faltan datos requeridos. Vuelva a cargar la " +"página e inténtelo de nuevo." + +#: class/class-mainwp-child-ithemes-security.php:426 +msgid "" +"You must change WordPress permalinks to a setting other " +"than \"Plain\" in order to use \"Hide Backend\" feature." +msgstr "" +"Debe cambiar los permalinks de WordPress a una " +"configuración distinta de \"Plain\" para poder utilizar la función \"Hide " +"Backend\"." + +#: class/class-mainwp-child-ithemes-security.php:531 +msgid "Not Updated" +msgstr "No actualizado" + +#: class/class-mainwp-child-ithemes-security.php:588 +#, php-format +msgctxt "%1$s is the input name. %2$s is the error message." +msgid "" +"The directory supplied in %1$s cannot be used as a valid directory. %2$s" +msgstr "" +"El directorio suministrado en %1$s no puede utilizarse como directorio " +"válido. %2$s" + +#: class/class-mainwp-child-ithemes-security.php:593 +#, php-format +msgid "" +"The directory supplied in %1$s is not writable. Please select a directory " +"that can be written to." +msgstr "" +"El directorio suministrado en %1$s no es escribible. Por favor, seleccione " +"un directorio en el que se pueda escribir." + +#: class/class-mainwp-child-ithemes-security.php:737 +msgid "Your IP Address" +msgstr "Su dirección IP" + +#: class/class-mainwp-child-ithemes-security.php:738 +msgid "is whitelisted for" +msgstr "está en la lista blanca para" + +#: class/class-mainwp-child-ithemes-security.php:796 +#, php-format +msgid "" +"The backup request returned an unexpected response. It returned a response " +"of type %1$s." +msgstr "" +"La solicitud de copia de seguridad devolvió una respuesta inesperada. " +"Devolvió una respuesta de tipo %1$s." + +#: class/class-mainwp-child-ithemes-security.php:839 +msgid "The WordPress salts were successfully regenerated." +msgstr "Las sales de WordPress fueron regeneradas con éxito." + +#: class/class-mainwp-child-ithemes-security.php:928 +msgid "WARNING" +msgstr "ADVERTENCIA" + +#: class/class-mainwp-child-ithemes-security.php:931 +#: class/class-mainwp-child-updraft-plus-backups.php:2142 +#: class/class-mainwp-child-updraft-plus-backups.php:2189 +#: class/class-mainwp-child-updraft-plus-backups.php:2193 +msgid "OK" +msgstr "OK" + +#: class/class-mainwp-child-ithemes-security.php:941 +msgid "Reload File Permissions Details" +msgstr "Recargar los detalles de los permisos de archivo" + +#: class/class-mainwp-child-ithemes-security.php:945 +#: class/class-mainwp-child-ithemes-security.php:954 +msgid "Relative Path" +msgstr "Sendero Relativo" + +#: class/class-mainwp-child-ithemes-security.php:946 +#: class/class-mainwp-child-ithemes-security.php:955 +msgid "Suggestion" +msgstr "Sugerencia" + +#: class/class-mainwp-child-ithemes-security.php:948 +#: class/class-mainwp-child-ithemes-security.php:957 +msgid "Result" +msgstr "Resultado" + +#: class/class-mainwp-child-ithemes-security.php:1055 +msgid "Admin user already changes." +msgstr "El usuario administrador ya ha cambiado." + +#: class/class-mainwp-child-ithemes-security.php:1066 +msgid "Admin user ID already changes." +msgstr "El ID de usuario del administrador ya ha cambiado." + +#: class/class-mainwp-child-ithemes-security.php:1247 +#, php-format +msgid "" +"The database table prefix was successfully changed to %1$s." +msgstr "" +"El prefijo de la tabla de la base de datos se ha cambiado correctamente a " +"%1$s." + +#: class/class-mainwp-child-ithemes-security.php:1522 +msgid "The selected lockouts have been cleared." +msgstr "Se han borrado los bloqueos seleccionados." + +#. translators: 1: user display name, 2: user login +#: class/class-mainwp-child-ithemes-security.php:1696 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: class/class-mainwp-child-jetpack-protect.php:164 +msgid "Please install Jetpack Protect plugin on child website" +msgstr "Por favor, instale el plugin Jetpack Protect en su sitio web" + +#: class/class-mainwp-child-jetpack-protect.php:244 +msgid "Failed to disconnect the site as it appears already disconnected." +msgstr "" +"No se ha podido desconectar el sitio porque parece que ya está desconectado." + +#: class/class-mainwp-child-jetpack-scan.php:107 +msgid "Please install Jetpack Protect or Jetpact Scan plugin on child website" +msgstr "Instale el plugin Jetpack Protect o Jetpact Scan en su sitio web" + +#: class/class-mainwp-child-links-checker.php:635 +msgid "An unexpected error occurred!" +msgstr "¡Atención, se ha producido un error inesperado!" + +#: class/class-mainwp-child-links-checker.php:715 +#: class/class-mainwp-child-links-checker.php:801 +msgid "Error: link_id is not specified." +msgstr "Error: no se ha especificado link_id." + +#: class/class-mainwp-child-links-checker.php:758 +msgid "Error: link_id not specified." +msgstr "Error: link_id no especificado." + +#: class/class-mainwp-child-links-checker.php:791 +msgid "This link was manually marked as working by the user." +msgstr "" +"Este enlace ha sido marcado manualmente como funcionando por el usuario." + +#: class/class-mainwp-child-misc.php:461 +msgid "Cannot get user_id" +msgstr "No se puede obtener user_id" + +#: class/class-mainwp-child-misc.php:471 +msgid "Cannot destroy sessions" +msgstr "No se pueden destruir sesiones" + +#: class/class-mainwp-child-misc.php:474 +msgid "Invalid action" +msgstr "Acción no válida" + +#: class/class-mainwp-child-misc.php:477 +msgid "Missing action" +msgstr "Desaparición" + +#: class/class-mainwp-child-pagespeed.php:443 +msgid "The API is busy checking other pages, please try again later." +msgstr "" +"La API está ocupada comprobando otras páginas, por favor inténtelo más tarde." + +#: class/class-mainwp-child-posts.php:549 +msgid "Post" +msgstr "Entrada" + +#: class/class-mainwp-child-posts.php:800 +#, php-format +msgid "This content is currently locked. %s is currently editing." +msgstr "Este contenido está bloqueado. %s está editando." + +#: class/class-mainwp-child-server-information-base.php:212 +msgid "No functions disabled" +msgstr "Ninguna función desactivada" + +#: class/class-mainwp-child-server-information-base.php:532 +#: class/class-mainwp-child-server-information-base.php:566 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "ON" +msgstr "ON" + +#: class/class-mainwp-child-server-information-base.php:534 +#: class/class-mainwp-child-server-information-base.php:568 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "OFF" +msgstr "OFF" + +#: class/class-mainwp-child-server-information-base.php:556 +msgid "NOT SET" +msgstr "NO ESTABLECIDO" + +#: class/class-mainwp-child-server-information-base.php:578 +#: class/class-mainwp-child-server-information-base.php:590 +#: class/class-mainwp-child-server-information-base.php:602 +msgid "YES" +msgstr "SÍ" + +#: class/class-mainwp-child-server-information-base.php:580 +#: class/class-mainwp-child-server-information-base.php:592 +#: class/class-mainwp-child-server-information-base.php:604 +msgid "NO" +msgstr "NO" + +#: class/class-mainwp-child-server-information-base.php:716 +#, php-format +msgid "Not expected HTTP response body: %s" +msgstr "Cuerpo de la respuesta HTTP no esperado: %s" + +#: class/class-mainwp-child-server-information.php:379 +msgid "Please include this information when requesting support:" +msgstr "Por favor, incluya esta información al momento de solicitar la ayuda:" + +#: class/class-mainwp-child-server-information.php:381 +msgid "Hide" +msgstr "Ocultar" + +#: class/class-mainwp-child-server-information.php:384 +msgid "Get system report" +msgstr "Obtener informe del sistema" + +#: class/class-mainwp-child-server-information.php:390 +#: class/class-mainwp-pages.php:592 +msgid "Server Information" +msgstr "Información del servidor" + +#: class/class-mainwp-child-server-information.php:392 +msgid "Cron Schedules" +msgstr "Cronogramas" + +#: class/class-mainwp-child-server-information.php:394 +msgid "Error Log" +msgstr "Registro de Errores" + +#: class/class-mainwp-child-server-information.php:425 +msgid "Server configuration" +msgstr "Configuración del servidor de Red" + +#: class/class-mainwp-child-server-information.php:426 +msgid "Required value" +msgstr "Requiere un valor" + +#: class/class-mainwp-child-server-information.php:467 +msgid "Version" +msgstr "Versión" + +#: class/class-mainwp-child-server-information.php:474 +msgid "WordPress" +msgstr "WordPress" + +#: class/class-mainwp-child-server-information.php:481 +msgid "FileSystem Method" +msgstr "Método FileSystem" + +#: class/class-mainwp-child-server-information.php:518 +msgid "PHP SETTINGS" +msgstr "CONFIGURACIÓN DE PHP" + +#: class/class-mainwp-child-server-information.php:523 +msgid "PHP Safe Mode Disabled" +msgstr "Modo seguro de PHP desactivado" + +#: class/class-mainwp-child-server-information.php:566 +#, php-format +msgid "" +"Your host needs to update OpenSSL to at least version 1.1.0 which is already " +"over 4 years old and contains patches for over 60 vulnerabilities.%1$sThese " +"range from Denial of Service to Remote Code Execution. %2$sClick here for " +"more information.%3$s" +msgstr "" +"Su host necesita actualizar OpenSSL al menos a la versión 1.1.0 que ya tiene " +"más de 4 años y contiene parches para más de 60 vulnerabilidades.%1$sEstas " +"van desde Denegación de Servicio hasta Ejecución Remota de Código. %2$sHaga " +"clic aquí para obtener más información%3$s" + +#: class/class-mainwp-child-server-information.php:582 +msgid "MySQL SETTINGS" +msgstr "CONFIGURACIÓN MySQL" + +#: class/class-mainwp-child-server-information.php:586 +msgid "BACKUP ARCHIVE INFORMATION" +msgstr "INFORMACIÓN DEL ARCHIVO DE COPIA DE SEGURIDAD" + +#: class/class-mainwp-child-server-information.php:610 +msgid "WordPress PLUGINS" +msgstr "Plugins de WordPress" + +#: class/class-mainwp-child-server-information.php:627 +msgid "Active" +msgstr "Activo" + +#: class/class-mainwp-child-server-information.php:650 +msgid "PHP INFORMATION" +msgstr "INFORMACIÓN PHP" + +#: class/class-mainwp-child-server-information.php:654 +msgid "PHP Allow URL fopen" +msgstr "PHP Allow URL fopen" + +#: class/class-mainwp-child-server-information.php:659 +msgid "PHP Exif Support" +msgstr "Soporte PHP Exif" + +#: class/class-mainwp-child-server-information.php:664 +msgid "PHP IPTC Support" +msgstr "Soporte PHP IPTC" + +#: class/class-mainwp-child-server-information.php:669 +msgid "PHP XML Support" +msgstr "Soporte PHP XML" + +#: class/class-mainwp-child-server-information.php:674 +msgid "PHP Disabled Functions" +msgstr "Funciones deshabilitadas de PHP" + +#: class/class-mainwp-child-server-information.php:679 +msgid "PHP Loaded Extensions" +msgstr "Extensiones cargadas en PHP" + +#: class/class-mainwp-child-server-information.php:684 +msgid "MySQL INFORMATION" +msgstr "INFORMACIÓN MySQL" + +#: class/class-mainwp-child-server-information.php:688 +msgid "MySQL Mode" +msgstr "Modo MySQL" + +#: class/class-mainwp-child-server-information.php:693 +msgid "MySQL Client Encoding" +msgstr "Codificación del cliente MySQL" + +#: class/class-mainwp-child-server-information.php:731 +msgid "SERVER INFORMATION" +msgstr "INFORMACIÓN DEL SERVIDOR" + +#: class/class-mainwp-child-server-information.php:735 +msgid "WordPress Root Directory" +msgstr "Directorio raíz de WordPress" + +#: class/class-mainwp-child-server-information.php:740 +msgid "Server Name" +msgstr "Nombre del Servidor" + +#: class/class-mainwp-child-server-information.php:745 +msgid "Server Software" +msgstr "Software del Servidor" + +#: class/class-mainwp-child-server-information.php:755 +msgid "Architecture" +msgstr "Arquitectura" + +#: class/class-mainwp-child-server-information.php:760 +msgid "Server IP" +msgstr "Dirección IP del servidor" + +#: class/class-mainwp-child-server-information.php:765 +msgid "Server Protocol" +msgstr "Protocolo de servidor" + +#: class/class-mainwp-child-server-information.php:770 +msgid "HTTP Host" +msgstr "Host HTTP" + +#: class/class-mainwp-child-server-information.php:775 +msgid "HTTPS" +msgstr "HTTPS" + +#: class/class-mainwp-child-server-information.php:780 +msgid "Server self connect" +msgstr "Autoconexión del servidor" + +#: class/class-mainwp-child-server-information.php:785 +msgid "User Agent" +msgstr "Agente de usuario" + +#: class/class-mainwp-child-server-information.php:790 +msgid "Server Port" +msgstr "Puerto del servidor" + +#: class/class-mainwp-child-server-information.php:795 +msgid "Gateway Interface" +msgstr "Interfaz de puerta de enlace" + +#: class/class-mainwp-child-server-information.php:800 +msgid "Memory Usage" +msgstr "Uso de memoria" + +#: class/class-mainwp-child-server-information.php:805 +msgid "Complete URL" +msgstr "URL completa" + +#: class/class-mainwp-child-server-information.php:810 +msgid "Request Time" +msgstr "Fecha de solicitud" + +#: class/class-mainwp-child-server-information.php:815 +msgid "Accept Content" +msgstr "Aceptar contenido" + +#: class/class-mainwp-child-server-information.php:820 +msgid "Accept-Charset Content" +msgstr "Contenido de Accept-Charset" + +#: class/class-mainwp-child-server-information.php:825 +msgid "Currently Executing Script Pathname" +msgstr "Nombre de ruta del script actualmente en ejecución" + +#: class/class-mainwp-child-server-information.php:830 +msgid "Current Page URI" +msgstr "URI de la página actual" + +#: class/class-mainwp-child-server-information.php:835 +msgid "Remote Address" +msgstr "Dirección remota" + +#: class/class-mainwp-child-server-information.php:840 +msgid "Remote Host" +msgstr "Nombre del servidor remoto:" + +#: class/class-mainwp-child-server-information.php:845 +msgid "Remote Port" +msgstr "Puerto Remoto" + +#: class/class-mainwp-child-server-information.php:891 +msgid "Next due" +msgstr "Siguiente vencimiento" + +#: class/class-mainwp-child-server-information.php:892 +msgid "Schedule" +msgstr "Programar" + +#: class/class-mainwp-child-server-information.php:893 +msgid "Hook" +msgstr "Gancho" + +#: class/class-mainwp-child-server-information.php:1079 +msgid "Error" +msgstr "Error" + +#: class/class-mainwp-child-server-information.php:1103 +msgid "Error logging disabled." +msgstr "Registro de errores desactivado." + +#: class/class-mainwp-child-server-information.php:1248 +msgid "Site URL" +msgstr "URL del sitio" + +#: class/class-mainwp-child-server-information.php:1253 +msgid "Administrator name" +msgstr "Nombre del administrador" + +#: class/class-mainwp-child-server-information.php:1255 +msgid "" +"This is your Administrator username, however, you can use any existing " +"Administrator username." +msgstr "" +"Este es su nombre de usuario de administrador, sin embargo, puede utilizar " +"cualquier nombre de usuario de administrador existente." + +#: class/class-mainwp-child-server-information.php:1258 +msgid "Friendly site name" +msgstr "Nombre amigable del sitio" + +#: class/class-mainwp-child-server-information.php:1260 +msgid "" +"For the friendly site name, you can use any name, this is just a suggestion." +msgstr "" +"Para el nombre del sitio amigable, puede utilizar cualquier nombre, esto es " +"sólo una sugerencia." + +#: class/class-mainwp-child-server-information.php:1263 +msgid "Child unique security id" +msgstr "Identificador único de seguridad infantil" + +#: class/class-mainwp-child-server-information.php:1264 +msgid "Leave the field blank" +msgstr "Deje el campo en blanco" + +#: class/class-mainwp-child-server-information.php:1265 +#, php-format +msgid "" +"Child unique security id is not required, however, since you have enabled " +"it, you need to add it to your %s dashboard." +msgstr "" +"El identificador único de seguridad infantil no es necesario, sin embargo, " +"ya que lo ha activado, debe añadirlo a su panel %s." + +#: class/class-mainwp-child-server-information.php:1268 +msgid "Verify certificate" +msgstr "Verificar certificado" + +#: class/class-mainwp-child-server-information.php:1269 +msgid "Yes" +msgstr "Sí" + +#: class/class-mainwp-child-server-information.php:1270 +msgid "" +"If there is an issue with SSL certificate on this site, try to set this " +"option to No." +msgstr "" +"Si hay un problema con el certificado SSL en este sitio, intente establecer " +"esta opción en No." + +#: class/class-mainwp-child-server-information.php:1273 +msgid "SSL version" +msgstr "Versión SSL" + +#: class/class-mainwp-child-server-information.php:1274 +#: class/class-mainwp-child-server-information.php:1275 +msgid "Auto Detect" +msgstr "Autodetectar" + +#: class/class-mainwp-child-server-information.php:1282 +msgid "Connection details" +msgstr "Detalles de la conexión" + +#: class/class-mainwp-child-server-information.php:1283 +#, php-format +msgid "" +"If you are trying to connect this child site to your %s Dashboard, you can " +"use following details to do that. Please note that these are only suggested " +"values." +msgstr "" +"Si está intentando conectar este sitio hijo a su Panel de Control %s, puede " +"utilizar los siguientes detalles para hacerlo. Tenga en cuenta que estos son " +"sólo valores sugeridos." + +#: class/class-mainwp-child-staging.php:186 +msgid "Please install WP Staging plugin on child website" +msgstr "Por favor, instale WP Staging plugin en el sitio web del niño" + +#: class/class-mainwp-child-stats.php:96 +msgid "" +"Hint: Go to the child site, deactivate and reactivate the MainWP Child " +"plugin and try again." +msgstr "" +"Sugerencia: Vaya al sitio hijo, desactive y reactive el plugin MainWP Child " +"e inténtelo de nuevo." + +#: class/class-mainwp-child-stats.php:97 +msgid "" +"This site already contains a link. Please deactivate and reactivate the " +"MainWP plugin." +msgstr "" +"Este sitio ya contiene un enlace. Por favor, desactive y vuelva a activar el " +"plugin MainWP." + +#: class/class-mainwp-child-timecapsule.php:1914 +msgid "WP Time Capsule version" +msgstr "Versión WP Time Capsule" + +#: class/class-mainwp-child-timecapsule.php:1940 +msgid "Function Disabled" +msgstr "Función desactivada" + +#: class/class-mainwp-child-updates.php:150 +#: class/class-mainwp-child-updates.php:291 +#: class/class-mainwp-child-updates.php:460 +#: class/class-mainwp-child-updates.php:539 +#: class/class-mainwp-child-updates.php:649 class/class-mainwp-clone.php:134 +msgid "Invalid request!" +msgstr "¡Solicitud no válida!" + +#: class/class-mainwp-child-updates.php:1167 +msgid "Another update is currently in progress." +msgstr "Ya hay otra actualización en progreso." + +#: class/class-mainwp-child-updraft-plus-backups.php:361 +msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com" +msgstr "" +"Se ha producido un error desconocido al intentar conectarse a UpdraftPlus.Com" + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "This site is connected to UpdraftPlus Vault." +msgstr "Este sitio está conectado a UpdraftPlus Vault." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Well done - there's nothing more needed to set up." +msgstr "Bien hecho, no hace falta configurar nada más." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Vault owner" +msgstr "Propietario de la cámara acorazada" + +#: class/class-mainwp-child-updraft-plus-backups.php:396 +msgid "Quota:" +msgstr "Cuota:" + +#: class/class-mainwp-child-updraft-plus-backups.php:406 +msgid "Disconnect" +msgstr "Desconectar" + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "UpdraftPlus.com has responded with 'Access Denied'." +msgstr "UpdraftPlus.com ha respondido con \"Acceso denegado\"." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +#, php-format +msgid "It appears that your web server's IP Address (%s) is blocked." +msgstr "Parece que la dirección IP de tu servidor web ( %s) está bloqueada." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "" +"This most likely means that you share a webserver with a hacked website that " +"has been used in previous attacks." +msgstr "" +"Lo más probable es que comparta un servidor web con un sitio web pirateado " +"que ha sido utilizado en ataques anteriores." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "To remove the block, please go here." +msgstr "Para eliminar el bloqueo, vaya aquí." + +#: class/class-mainwp-child-updraft-plus-backups.php:454 +#, php-format +msgid "" +"UpdraftPlus.Com returned a response which we could not understand (data: %s)" +msgstr "" +"UpdraftPlus.Com devolvió una respuesta que no pudimos entender (datos: %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:476 +msgid "You do not currently have any UpdraftPlus Vault quota" +msgstr "Actualmente no tienes ninguna cuota de UpdraftPlus Vault" + +#: class/class-mainwp-child-updraft-plus-backups.php:478 +#: class/class-mainwp-child-updraft-plus-backups.php:494 +msgid "UpdraftPlus.Com returned a response, but we could not understand it" +msgstr "UpdraftPlus.Com devolvió una respuesta, pero no pudimos entenderla" + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"Your email address was valid, but your password was not recognised by " +"UpdraftPlus.Com." +msgstr "" +"Tu dirección de correo electrónico era válida, pero UpdraftPlus.Com no ha " +"reconocido tu contraseña." + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"If you have forgotten your password, then go here to change your password on " +"updraftplus.com." +msgstr "" +"Si ha olvidado su contraseña, vaya aquí para cambiarla en updraftplus.com." + +#: class/class-mainwp-child-updraft-plus-backups.php:486 +msgid "You entered an email address that was not recognised by UpdraftPlus.Com" +msgstr "" +"Ha introducido una dirección de correo electrónico no reconocida por " +"UpdraftPlus.Com" + +#: class/class-mainwp-child-updraft-plus-backups.php:490 +msgid "Your email address and password were not recognised by UpdraftPlus.Com" +msgstr "" +"UpdraftPlus.Com no ha reconocido su dirección de correo electrónico ni su " +"contraseña" + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +#, php-format +msgid "Failure: No %s was given." +msgstr "Fallo: No se ha dado %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +msgid "user" +msgstr "usuario" + +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +msgid "host" +msgstr "servidor" + +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +msgid "database name" +msgstr "nombre de la base de datos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1022 +msgid "database connection attempt failed" +msgstr "error en el intento de conexión de la base de datos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1030 +msgid "" +"Connection failed: check your access details, that the database server is " +"up, and that the network connection is not firewalled." +msgstr "" +"Fallo de conexión: compruebe sus datos de acceso, que el servidor de la base " +"de datos está activo y que la conexión de red no tiene cortafuegos." + +#: class/class-mainwp-child-updraft-plus-backups.php:1050 +#, php-format +msgid "%s table(s) found." +msgstr "%s tabla(s) encontrada(s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1058 +#, php-format +msgid "%1$s total table(s) found; %2$s with the indicated prefix." +msgstr "%1$s tabla(s) total(es) encontrada(s); %2$s con el prefijo indicado." + +#: class/class-mainwp-child-updraft-plus-backups.php:1065 +msgid "Messages:" +msgstr "Mensajes:" + +#: class/class-mainwp-child-updraft-plus-backups.php:1078 +msgid "Connection succeeded." +msgstr "Conexión exitosa." + +#: class/class-mainwp-child-updraft-plus-backups.php:1080 +msgid "Connection failed." +msgstr "Conexión fallida." + +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +#: class/class-mainwp-child-updraft-plus-backups.php:1132 +msgid "Start backup" +msgstr "Iniciar copia de seguridad" + +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +msgid "" +"OK. You should soon see activity in the \"Last log message\" field below." +msgstr "" +"OK. Pronto debería ver actividad en el campo \"Último mensaje de registro\"." + +#: class/class-mainwp-child-updraft-plus-backups.php:1187 +msgid "Nothing yet logged" +msgstr "Aún no se ha registrado nada" + +#: class/class-mainwp-child-updraft-plus-backups.php:1220 +#, php-format +msgid "incremental backup; base backup: %s" +msgstr "respaldo incremental; respaldo base: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:1232 +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:3891 +#, php-format +msgid "Warning: %s" +msgstr "Advertencia: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:1248 +msgid "Download log file" +msgstr "Descargar archivo de registro" + +#: class/class-mainwp-child-updraft-plus-backups.php:1252 +msgid "No backup has been completed." +msgstr "No se ha realizado ninguna copia de seguridad." + +#: class/class-mainwp-child-updraft-plus-backups.php:1307 +#: class/class-mainwp-child-updraft-plus-backups.php:1392 +msgid "At the same time as the files backup" +msgstr "Al mismo tiempo que la copia de seguridad de los archivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1315 +#: class/class-mainwp-child-updraft-plus-backups.php:1383 +#: class/class-mainwp-child-updraft-plus-backups.php:1401 +msgid "Nothing currently scheduled" +msgstr "Actualmente no hay nada programado" + +#: class/class-mainwp-child-updraft-plus-backups.php:1411 +msgid "Files" +msgstr "Archivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1412 +#: class/class-mainwp-child-updraft-plus-backups.php:1976 +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +msgid "Database" +msgstr "Base de datos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1413 +msgid "Time now" +msgstr "Tiempo ahora" + +#: class/class-mainwp-child-updraft-plus-backups.php:1484 +msgid "Backup set not found" +msgstr "Juego de copias de seguridad no encontrado" + +#: class/class-mainwp-child-updraft-plus-backups.php:1575 +msgid "The backup set has been removed." +msgstr "Se ha eliminado el conjunto de copias de seguridad." + +#: class/class-mainwp-child-updraft-plus-backups.php:1576 +#, php-format +msgid "Local archives deleted: %d" +msgstr "Archivos locales borrados: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1577 +#, php-format +msgid "Remote archives deleted: %d" +msgstr "Archivos remotos eliminados: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1656 +msgid "Existing Backups" +msgstr "Copias de seguridad existentes" + +#: class/class-mainwp-child-updraft-plus-backups.php:1873 +#, php-format +msgid "" +"The backup archive for this file could not be found. The remote storage " +"method in use (%s) does not allow us to retrieve files. To perform any " +"restoration using UpdraftPlus, you will need to obtain a copy of this file " +"and place it inside UpdraftPlus's working folder" +msgstr "" +"No se pudo encontrar el archivo de respaldo para este archivo. El método de " +"almacenamiento remoto en uso ( %s) no nos permite recuperar archivos. Para " +"realizar cualquier restauración con UpdraftPlus, deberás obtener una copia " +"de este archivo y colocarlo dentro de la carpeta de trabajo de UpdraftPlus" + +#: class/class-mainwp-child-updraft-plus-backups.php:1928 +msgid "No such backup set exists" +msgstr "No existe tal copia de seguridad" + +#: class/class-mainwp-child-updraft-plus-backups.php:1947 +#, php-format +msgid "" +"The PHP setup on this webserver allows only %s seconds for PHP to run, and " +"does not allow this limit to be raised. If you have a lot of data to import, " +"and if the restore operation times out, then you will need to ask your web " +"hosting company for ways to raise this limit (or attempt the restoration " +"piece-by-piece)." +msgstr "" +"La configuración de PHP en este servidor web sólo permite %s segundos para " +"que PHP se ejecute, y no permite aumentar este límite. Si tienes muchos " +"datos que importar, y si la operación de restauración se demora, entonces " +"necesitarás preguntar a tu compañía de alojamiento web por formas de " +"aumentar este límite (o intentar la restauración pieza por pieza)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"This backup set was not known by UpdraftPlus to be created by the current " +"WordPress installation, but was found in remote storage." +msgstr "" +"UpdraftPlus no sabía que este conjunto de copias de seguridad había sido " +"creado por la instalación actual de WordPress, pero lo encontró en un " +"almacenamiento remoto." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"You should make sure that this really is a backup set intended for use on " +"this website, before you restore (rather than a backup set of an unrelated " +"website that was using the same storage location)." +msgstr "" +"Antes de restaurar, asegúrese de que se trata realmente de una copia de " +"seguridad destinada a este sitio web (en lugar de una copia de seguridad de " +"un sitio web no relacionado que utilizaba la misma ubicación de " +"almacenamiento)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1966 +msgid "" +"Only the WordPress database can be restored; you will need to deal with the " +"external database manually." +msgstr "" +"Sólo se puede restaurar la base de datos de WordPress; tendrá que ocuparse " +"manualmente de la base de datos externa." + +#: class/class-mainwp-child-updraft-plus-backups.php:1982 +#: class/class-mainwp-child-updraft-plus-backups.php:3300 +#, php-format +msgid "Backup created by unknown source (%s) - cannot be restored." +msgstr "" +"Copia de seguridad creada por una fuente desconocida (%s) - y no podrá ser " +"restaurada." + +#: class/class-mainwp-child-updraft-plus-backups.php:2020 +#, php-format +msgid "File not found (you need to upload it): %s" +msgstr "Archivo no encontrado (necesitas subirlo): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2022 +#, php-format +msgid "File was found, but is zero-sized (you need to re-upload it): %s" +msgstr "" +"Se ha encontrado el archivo, pero su tamaño es cero (debe volver a " +"cargarlo): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2026 +#, php-format +msgid "" +"File (%1$s) was found, but has a different size (%2$s) from what was " +"expected (%3$s) - it may be corrupt." +msgstr "" +"Se encontró el archivo (%1$s), pero tiene un tamaño (%2$s) diferente al " +"esperado (%3$s) - puede estar corrupto." + +#: class/class-mainwp-child-updraft-plus-backups.php:2048 +#, php-format +msgid "" +"This multi-archive backup set appears to have the following archives " +"missing: %s" +msgstr "" +"Este conjunto de copias de seguridad multiarchivo parece tener los " +"siguientes archivos perdidos: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2053 +msgid "" +"The backup archive files have been successfully processed. Now press Restore " +"again to proceed." +msgstr "" +"Los archivos de copia de seguridad se han procesado correctamente. Ahora " +"pulse Restaurar de nuevo para continuar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2055 +msgid "" +"The backup archive files have been processed, but with some warnings. If all " +"is well, then now press Restore again to proceed. Otherwise, cancel and " +"correct any problems first." +msgstr "" +"Los archivos de copia de seguridad han sido procesados, pero con algunas " +"advertencias. Si todo está bien, pulse Restaurar de nuevo para continuar. De " +"lo contrario, cancele y corrija primero cualquier problema." + +#: class/class-mainwp-child-updraft-plus-backups.php:2057 +msgid "" +"The backup archive files have been processed, but with some errors. You will " +"need to cancel and correct any problems before retrying." +msgstr "" +"Se han procesado los archivos de copia de seguridad, pero con algunos " +"errores. Deberá cancelar y corregir los problemas antes de volver a " +"intentarlo." + +#: class/class-mainwp-child-updraft-plus-backups.php:2085 +msgid "Remove old directories" +msgstr "Eliminar directorios antiguos" + +#: class/class-mainwp-child-updraft-plus-backups.php:2088 +msgid "Old directories successfully removed." +msgstr "Directorios antiguos eliminados correctamente." + +#: class/class-mainwp-child-updraft-plus-backups.php:2089 +msgid "Now press Restore again to proceed." +msgstr "Ahora pulse Restaurar de nuevo para continuar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2092 +msgid "" +"Old directory removal failed for some reason. You may want to do this " +"manually." +msgstr "" +"La eliminación del directorio antiguo falló por alguna razón. Es posible que " +"desee hacerlo manualmente." + +#: class/class-mainwp-child-updraft-plus-backups.php:2139 +#: class/class-mainwp-child-updraft-plus-backups.php:2187 +#: class/class-mainwp-child-updraft-plus-backups.php:2196 +msgid "Failed" +msgstr "Fallido" + +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "Error: %s" +msgstr "Error: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +msgid "" +"Decryption failed. The database file is encrypted, but you have no " +"encryption key entered." +msgstr "" +"Error de descifrado. El archivo de base de datos está cifrado, pero no se ha " +"introducido la clave de cifrado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +msgid "Decryption failed. The database file is encrypted." +msgstr "Error de descifrado. El archivo de base de datos está encriptado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2293 +msgid "Failed to write out the decrypted database to the filesystem." +msgstr "" +"Error al escribir la base de datos descifrada en el sistema de archivos." + +#: class/class-mainwp-child-updraft-plus-backups.php:2299 +#: class/class-mainwp-child-updraft-plus-backups.php:2548 +msgid "" +"Decryption failed. The most likely cause is that you used the wrong key." +msgstr "" +"La desencriptación ha fallado. La causa más probable es que hayas utilizado " +"una clave incorrecta." + +#: class/class-mainwp-child-updraft-plus-backups.php:2307 +#: class/class-mainwp-child-updraft-plus-backups.php:2555 +#, php-format +msgid "" +"The database is too small to be a valid WordPress database (size: %s Kb)." +msgstr "" +"La base de datos es demasiado pequeña para ser una base de datos de " +"WordPress válida (tamaño: %s Kb)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2316 +#: class/class-mainwp-child-updraft-plus-backups.php:2563 +msgid "Failed to open database file." +msgstr "Error al abrir el archivo de base de datos." + +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +msgid "Backup of:" +msgstr "Copia de seguridad de:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +#, php-format +msgid "(version: %s)" +msgstr "(versión: %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:2645 +#: class/class-mainwp-child-updraft-plus-backups.php:2664 +msgid "" +"This backup set is from a different site - this is not a restoration, but a " +"migration. You need the Migrator add-on in order to make this work." +msgstr "" +"Este conjunto de copias de seguridad es de un sitio diferente - esto no es " +"una restauración, sino una migración. Necesita el complemento Migrator para " +"que esto funcione." + +#: class/class-mainwp-child-updraft-plus-backups.php:2388 +#: class/class-mainwp-child-updraft-plus-backups.php:2677 +#, php-format +msgid "" +"You are importing from a newer version of WordPress (%1$s) into an older one " +"(%2$s). There are no guarantees that WordPress can handle this." +msgstr "" +"Está importando desde una versión más reciente de WordPress (%1$s) a una más " +"antigua (%2$s). No hay garantías de que WordPress pueda manejar esto." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"The site in this backup was running on a webserver with version %1$s of " +"%2$s. " +msgstr "" +"El sitio en esta copia de seguridad se ejecutaba en un servidor web con la " +"versión %1$s de %2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"This is significantly newer than the server which you are now restoring onto " +"(version %s)." +msgstr "" +"Es bastante más reciente que el servidor en el que está restaurando ahora " +"(versión %s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"You should only proceed if you cannot update the current server and are " +"confident (or willing to risk) that your plugins/themes/etc. are compatible " +"with the older %s version." +msgstr "" +"Sólo debe proceder si no puede actualizar el servidor actual y está seguro " +"(o dispuesto a arriesgarse) de que sus plugins/temas/etc. son compatibles " +"con la versión %s anterior." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"Any support requests to do with %s should be raised with your web hosting " +"company." +msgstr "" +"Cualquier solicitud de asistencia relacionada con %s debe dirigirse a su " +"empresa de alojamiento web." + +#: class/class-mainwp-child-updraft-plus-backups.php:2401 +#: class/class-mainwp-child-updraft-plus-backups.php:2690 +msgid "Backup label:" +msgstr "Etiqueta de respaldo:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "" +"You are running on WordPress multisite - but your backup is not of a " +"multisite site." +msgstr "" +"Usted está ejecutando en WordPress multisitio - pero su copia de seguridad " +"no es de un sitio multisitio." + +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"both the multisite and migrator add-ons." +msgstr "" +"Para importar un sitio WordPress normal a una instalación multisitio se " +"necesitan los complementos multisitio y migrador." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "Warning:" +msgstr "Advertencia:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"Your backup is of a WordPress multisite install; but this site is not. Only " +"the first site of the network will be accessible." +msgstr "" +"Tu copia de seguridad es de una instalación multisitio de WordPress; pero " +"este sitio no lo es. Solo el primer sitio de la red será accesible." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"If you want to restore a multisite backup, you should first set up your " +"WordPress installation as a multisite." +msgstr "" +"Si desea restaurar una copia de seguridad de un multisitio, primero debe " +"configurar su instalación de WordPress como multisitio." + +#: class/class-mainwp-child-updraft-plus-backups.php:2426 +#: class/class-mainwp-child-updraft-plus-backups.php:2710 +msgid "Site information:" +msgstr "Información sobre el sitio:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2459 +#: class/class-mainwp-child-updraft-plus-backups.php:2892 +#, php-format +msgid "This database backup is missing core WordPress tables: %s" +msgstr "" +"A esta copia de seguridad de la base de datos le faltan las tablas " +"principales de WordPress: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2464 +#: class/class-mainwp-child-updraft-plus-backups.php:2900 +msgid "" +"UpdraftPlus was unable to find the table prefix when scanning the database " +"backup." +msgstr "" +"UpdraftPlus no pudo encontrar el prefijo de la tabla al escanear la copia de " +"seguridad de la base de datos." + +#: class/class-mainwp-child-updraft-plus-backups.php:2627 +#, php-format +msgid "" +"The website address in the backup set (%1$s) is slightly different from that " +"of the site now (%2$s). This is not expected to be a problem for restoring " +"the site, as long as visits to the former address still reach the site." +msgstr "" +"La dirección del sitio web en la copia de seguridad (%1$s) es ligeramente " +"diferente a la del sitio actual (%2$s). No se espera que esto suponga un " +"problema para restaurar el sitio, siempre y cuando las visitas a la " +"dirección anterior sigan llegando al sitio." + +#: class/class-mainwp-child-updraft-plus-backups.php:2632 +#, php-format +msgid "" +"This backup set is of this site, but at the time of the backup you were " +"using %1$s, whereas the site now uses %2$s." +msgstr "" +"Este conjunto de copias de seguridad es de este sitio, pero en el momento de " +"la copia de seguridad estaba utilizando %1$s, mientras que el sitio ahora " +"utiliza %2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#, php-format +msgid "" +"This restoration will work if you still have an SSL certificate (i.e. can " +"use https) to access the site. Otherwise, you will want to use %s to search/" +"replace the site address so that the site can be visited without https." +msgstr "" +"Esta restauración funcionará si todavía dispone de un certificado SSL (es " +"decir, puede utilizar https) para acceder al sitio. De lo contrario, querrá " +"usar %s para buscar/reemplazar la dirección del sitio para que el sitio " +"pueda ser visitado sin https." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +msgid "the migrator add-on" +msgstr "el complemento migratorio" + +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +#, php-format +msgid "" +"As long as your web hosting allows http (i.e. non-SSL access) or will " +"forward requests to https (which is almost always the case), this is no " +"problem. If that is not yet set up, then you should set it up, or use %s so " +"that the non-https links are automatically replaced." +msgstr "" +"Mientras su alojamiento web permita http (es decir, acceso no SSL) o reenvíe " +"las peticiones a https (que es casi siempre el caso), no hay problema. Si " +"aún no está configurado, debería hacerlo, o utilizar %s para que los enlaces " +"no https se sustituyan automáticamente." + +#: class/class-mainwp-child-updraft-plus-backups.php:2648 +msgid "" +"You can search and replace your database (for migrating a website to a new " +"location/URL) with the Migrator add-on - follow this link for more " +"information" +msgstr "" +"Puedes buscar y reemplazar en tu base de datos (para la migración de un " +"sitio web a una nueva localización/URL) con el plugin Migrator - sigue este " +"enlace para más información" + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "" +"You are using the %1$s webserver, but do not seem to have the %2$s module " +"loaded." +msgstr "" +"Está utilizando el servidor web %1$s, pero no parece tener cargado el módulo " +"%2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "You should enable %1$s to make any pretty permalinks (e.g. %2$s) work" +msgstr "" +"Debe activar %1$s para que funcionen los enlaces permanentes bonitos (por " +"ejemplo, %2$s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "It will be imported as a new site." +msgstr "Se importará como un sitio nuevo." + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "Please read this link for important information on this process." +msgstr "" +"Lea este enlace para obtener información importante sobre este proceso." + +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#, php-format +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"%s." +msgstr "" +"Para importar un sitio WordPress normal a una instalación multisitio se " +"requiere %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "" +"The database backup uses MySQL features not available in the old MySQL " +"version (%s) that this site is running on." +msgstr "" +"La copia de seguridad de la base de datos utiliza funciones de MySQL no " +"disponibles en la versión antigua de MySQL (%s) con la que funciona este " +"sitio." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +msgid "You must upgrade MySQL to be able to use this database." +msgstr "Debe actualizar MySQL para poder utilizar esta base de datos." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the character set (%s) which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"the character sets (%s) which you are trying to import." +msgstr[0] "" +"El servidor de base de datos en el que se ejecuta este sitio de WordPress no " +"es compatible con el conjunto de caracteres (%s) que está intentando " +"importar." +msgstr[1] "" +"El servidor de base de datos en el que se ejecuta este sitio de WordPress no " +"admite los conjuntos de caracteres (%s) que está intentando importar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "" +"You can choose another suitable character set instead and continue with the " +"restoration at your own risk." +msgstr "" +"Puede elegir otro juego de caracteres adecuado en su lugar y continuar con " +"la restauración por su cuenta y riesgo." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "Go here for more information." +msgstr "Más información aquí." + +#: class/class-mainwp-child-updraft-plus-backups.php:2797 +msgid "Your chosen character set to use instead:" +msgstr "El juego de caracteres que elijas para utilizar en su lugar:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the collation (%s) used in the database which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"multiple collations (%s) used in the database which you are trying to import." +msgstr[0] "" +"El servidor de bases de datos en el que se ejecuta este sitio de WordPress " +"no admite la intercalación (%s) utilizada en la base de datos que está " +"intentando importar." +msgstr[1] "" +"El servidor de base de datos en el que se ejecuta este sitio de WordPress no " +"admite múltiples colaciones (%s) utilizadas en la base de datos que está " +"intentando importar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +msgid "" +"You can choose another suitable collation instead and continue with the " +"restoration (at your own risk)." +msgstr "" +"Puede elegir otra compaginación adecuada en su lugar y continuar con la " +"restauración (bajo su propia responsabilidad)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2846 +msgid "Your chosen replacement collation" +msgstr "Su cotejo de sustitución elegido" + +#: class/class-mainwp-child-updraft-plus-backups.php:2895 +#, php-format +msgid "This database backup has the following WordPress tables excluded: %s" +msgstr "" +"Esta copia de seguridad de la base de datos tiene las siguientes tablas de " +"WordPress excluidas: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your web server's PHP installation has these functions disabled: %s." +msgstr "" +"La instalación PHP de su servidor web tiene estas funciones desactivadas: %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your hosting company must enable these functions before %s can work." +msgstr "" +"Su empresa de alojamiento debe habilitar estas funciones para que %s pueda " +"funcionar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +msgid "restoration" +msgstr "restauración" + +#: class/class-mainwp-child-updraft-plus-backups.php:2959 +msgid "" +"The database file appears to have been compressed twice - probably the " +"website you downloaded it from had a mis-configured webserver." +msgstr "" +"El archivo de la base de datos parece haber sido comprimido dos veces - " +"probablemente el sitio web del que lo descargaste tenía un servidor web mal " +"configurado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2966 +#: class/class-mainwp-child-updraft-plus-backups.php:2990 +msgid "The attempt to undo the double-compression failed." +msgstr "El intento de deshacer la doble compresión fracasó." + +#: class/class-mainwp-child-updraft-plus-backups.php:2992 +msgid "The attempt to undo the double-compression succeeded." +msgstr "El intento de deshacer la doble compresión tuvo éxito." + +#: class/class-mainwp-child-updraft-plus-backups.php:3038 +msgid "You have not yet made any backups." +msgstr "Todavía no has hecho ninguna copia de seguridad." + +#: class/class-mainwp-child-updraft-plus-backups.php:3053 +msgid "Backup date" +msgstr "Fecha de copia de seguridad" + +#: class/class-mainwp-child-updraft-plus-backups.php:3054 +msgid "Backup data (click to download)" +msgstr "Copia de seguridad de datos (haga clic para descargar)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3088 +msgid "remote site" +msgstr "sitio remoto" + +#: class/class-mainwp-child-updraft-plus-backups.php:3089 +#, php-format +msgid "Remote storage: %s" +msgstr "Almacenamiento remoto: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +msgid "Go to Restore" +msgstr "Ir a Restaurar" + +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +#: class/class-mainwp-clone-page.php:266 class/class-mainwp-clone-page.php:1236 +msgid "Restore" +msgstr "Restaurar" + +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete this backup set" +msgstr "Eliminar este conjunto de copias de seguridad" + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "" +"If you are seeing more backups than you expect, then it is probably because " +"the deletion of old backup sets does not happen until a fresh backup " +"completes." +msgstr "" +"Si ves más copias de seguridad de las que esperas, probablemente se deba a " +"que la eliminación de los conjuntos de copias de seguridad antiguos no se " +"produce hasta que se completa una copia de seguridad nueva." + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "(Not finished)" +msgstr "(Sin terminar)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3229 +#: class/class-mainwp-child-updraft-plus-backups.php:3299 +msgid "unknown source" +msgstr "fuente desconocida" + +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +#, php-format +msgid "Database (created by %s)" +msgstr "Base de datos (creada por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3237 +msgid "External database" +msgstr "Base de datos externa" + +#: class/class-mainwp-child-updraft-plus-backups.php:3297 +#, php-format +msgid "Backup created by: %s." +msgstr "Copia de seguridad creada por: %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files and database WordPress backup (created by %s)" +msgstr "Respaldo de archivos y base de datos (creado por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files backup (created by %s)" +msgstr "Copia de seguridad de archivos (creada por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3332 +msgid "Press here to download" +msgstr "Pulse aquí para descargar" + +#: class/class-mainwp-child-updraft-plus-backups.php:3338 +#, php-format +msgid "(%d archive(s) in set)." +msgstr "(%d archivo(s) en conjunto)." + +#: class/class-mainwp-child-updraft-plus-backups.php:3341 +msgid "" +"You appear to be missing one or more archives from this multi-archive set." +msgstr "Parece que le faltan uno o más archivos de este conjunto multiarchivo." + +#: class/class-mainwp-child-updraft-plus-backups.php:3708 +msgid "The backup apparently succeeded and is now complete" +msgstr "La copia de seguridad aparentemente tuvo éxito y ahora está completa" + +#: class/class-mainwp-child-updraft-plus-backups.php:3752 +msgid "Backup begun" +msgstr "Copia de seguridad iniciada" + +#: class/class-mainwp-child-updraft-plus-backups.php:3756 +msgid "Creating file backup zips" +msgstr "Creación de zips de copia de seguridad de archivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3770 +msgid "Created file backup zips" +msgstr "Creados zips de copia de seguridad de archivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3774 +msgid "Uploading files to remote storage" +msgstr "Cargar archivos en un almacenamiento remoto" + +#: class/class-mainwp-child-updraft-plus-backups.php:3781 +#, php-format +msgid "(%1$s%%, file %2$s of %3$s)" +msgstr "(%1$s%%, expediente %2$s de %3$s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3786 +msgid "Pruning old backup sets" +msgstr "Poda de conjuntos de copias de seguridad antiguos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3790 +msgid "Waiting until scheduled time to retry because of errors" +msgstr "Esperar hasta la hora programada para reintentar debido a errores" + +#: class/class-mainwp-child-updraft-plus-backups.php:3794 +msgid "Backup finished" +msgstr "Copia de seguridad finalizada" + +#: class/class-mainwp-child-updraft-plus-backups.php:3809 +msgid "Created database backup" +msgstr "Copia de seguridad de la base de datos creada" + +#: class/class-mainwp-child-updraft-plus-backups.php:3821 +msgid "Creating database backup" +msgstr "Crear copia de seguridad de la base de datos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3823 +#, php-format +msgid "table: %s" +msgstr "tabla: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3837 +msgid "Encrypting database" +msgstr "Cifrado de la base de datos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3846 +msgid "Encrypted database" +msgstr "Base de datos cifrada" + +#: class/class-mainwp-child-updraft-plus-backups.php:3867 +#, php-format +msgid "next resumption: %1$d (after %2$ss)" +msgstr "próxima reanudación: %1$d (después de %2$ss)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3868 +#, php-format +msgid "last activity: %ss ago" +msgstr "última actividad: hace %ss" + +#: class/class-mainwp-child-updraft-plus-backups.php:3879 +#, php-format +msgid "Job ID: %s" +msgstr "ID del puesto: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3882 +msgid "show log" +msgstr "mostrar registro" + +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "" +"Note: the progress bar below is based on stages, NOT time. Do not stop the " +"backup simply because it seems to have remained in the same place for a " +"while - that is normal." +msgstr "" +"Nota: la barra de progreso que aparece a continuación se basa en etapas, NO " +"en tiempo. No detenga la copia de seguridad simplemente porque parezca que " +"se ha quedado en el mismo sitio durante un rato: es normal." + +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "delete schedule" +msgstr "borrar horario" + +#: class/class-mainwp-child-updraft-plus-backups.php:3941 +msgid "Job deleted" +msgstr "Trabajo eliminado" + +#: class/class-mainwp-child-updraft-plus-backups.php:3953 +msgid "Could not find that job - perhaps it has already finished?" +msgstr "No he podido encontrar ese trabajo, ¿quizás ya ha terminado?" + +#: class/class-mainwp-child-updraft-plus-backups.php:4008 +msgid "Error: unexpected file read fail" +msgstr "Error: fallo inesperado en la lectura del archivo" + +#: class/class-mainwp-child-updraft-plus-backups.php:4015 +#: class/class-mainwp-child-updraft-plus-backups.php:4018 +msgid "The log file could not be read." +msgstr "No se ha podido leer el archivo de registro." + +#: class/class-mainwp-child-updraft-plus-backups.php:4047 +msgid "Download failed" +msgstr "Descarga fallida" + +#: class/class-mainwp-child-updraft-plus-backups.php:4065 +msgid "File ready." +msgstr "Archivo listo." + +#: class/class-mainwp-child-updraft-plus-backups.php:4077 +msgid "Download in progress" +msgstr "Descarga en progreso" + +#: class/class-mainwp-child-updraft-plus-backups.php:4080 +msgid "No local copy present." +msgstr "No hay copia local." + +#: class/class-mainwp-child-users.php:392 +msgid "ERROR: Please enter a username." +msgstr "ERROR: Por favor, introduce un nombre de usuario." + +#: class/class-mainwp-child-users.php:400 +msgid "ERROR: Please enter a password." +msgstr "ERROR: Por favor, introduce una contraseña." + +#: class/class-mainwp-child-users.php:404 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "" +"ERROR: La contraseña no puede contener el carácter \"\\\"." + +#: class/class-mainwp-child-users.php:408 +msgid "" +"ERROR: Please enter the same password in both password " +"fields." +msgstr "" +"ERROR: Por favor, introduce la misma contraseña en los dos " +"campos." + +#: class/class-mainwp-child-users.php:421 +msgid "ERROR: Sorry, that username is not allowed." +msgstr "" +"ERROR: Lo sentimos, ese nombre de Usuario no está permitido." + +#: class/class-mainwp-child-users.php:427 +msgid "ERROR: Please enter an email address." +msgstr "" +"ERROR: Por favor captura una dirección de correo " +"electrónico." + +#: class/class-mainwp-child-users.php:429 +msgid "ERROR: The email address isn’t correct." +msgstr "ERROR: El correo electrónico no es inválido." + +#: class/class-mainwp-child-users.php:431 +msgid "" +"ERROR: This email is already registered, please choose " +"another one." +msgstr "" +"ERROR: La dirección de correo electrónico ya está " +"registrada. Por favor, elige otra." + +#: class/class-mainwp-child-users.php:537 +msgid "Administrator password could not be changed." +msgstr "No se ha podido cambiar la contraseña del administrador." + +#: class/class-mainwp-child-users.php:585 +msgid "Undefined error!" +msgstr "Error indefinido" + +#: class/class-mainwp-child-users.php:598 +#, php-format +msgid "Username: %s" +msgstr "Nombre de usuario: %s" + +#: class/class-mainwp-child-users.php:599 +#, php-format +msgid "Password: %s" +msgstr "Contraseña: %s" + +#: class/class-mainwp-child-users.php:602 +#, php-format +msgid "[%s] Your username and password" +msgstr "[%s] Tu nombre de usuario y contraseña" + +#: class/class-mainwp-child-wordfence.php:549 +msgid "Please install the Wordfence plugin on the child site." +msgstr "Por favor, instale el plugin Wordfence en el sitio hijo." + +#: class/class-mainwp-child-wordfence.php:1855 +#: class/class-mainwp-child-wordfence.php:1860 +msgid "An error occurred: " +msgstr "Ocurrió un error: " + +#: class/class-mainwp-child-wordfence.php:1857 +msgid "Invalid response: " +msgstr "Respuesta no válida: " + +#: class/class-mainwp-child-wordfence.php:1884 +msgid "An error occurred: Invalid options format received." +msgstr "Se ha producido un error: Formato de opciones no válido recibido." + +#: class/class-mainwp-child-wordfence.php:2400 +#, php-format +msgid "An error occurred while saving the configuration: %s" +msgstr "Se ha producido un error al guardar la configuración: %s" + +#: class/class-mainwp-child-wordfence.php:2408 +#, php-format +msgid "Errors occurred while saving the configuration: %s" +msgstr "Se han producido errores al guardar la configuración: %s" + +#: class/class-mainwp-child-wordfence.php:2413 +msgid "Errors occurred while saving the configuration." +msgstr "Se han producido errores al guardar la configuración." + +#: class/class-mainwp-child-wordfence.php:2421 +msgid "An error occurred while saving the configuration." +msgstr "Se ha producido un error al guardar la configuración." + +#: class/class-mainwp-child-wordfence.php:2431 +msgid "No configuration changes were provided to save." +msgstr "No se proporcionaron cambios de configuración para guardar." + +#: class/class-mainwp-child-wordfence.php:3196 +msgid "IP Detection" +msgstr "Detección IP" + +#: class/class-mainwp-child-wordfence.php:3197 +msgid "Methods of detecting a visitor's IP address." +msgstr "Métodos para detectar la dirección IP de un visitante." + +#: class/class-mainwp-child-wordfence.php:3208 +msgid "IPs" +msgstr "IPs" + +#: class/class-mainwp-child-wordfence.php:3210 +msgid "Used" +msgstr "Usado" + +#: class/class-mainwp-child-wordfence.php:3276 +msgid "WordPress Settings" +msgstr "Ajustes de WordPress" + +#: class/class-mainwp-child-wordfence.php:3277 +msgid "WordPress version and internal settings/constants." +msgstr "Versión de WordPress y ajustes/constantes internos." + +#: class/class-mainwp-child-wordfence.php:3495 +msgid "WordPress Plugins" +msgstr "Plugins de WordPress" + +#: class/class-mainwp-child-wordfence.php:3496 +msgid "Status of installed plugins." +msgstr "Estado de los plugins instalados." + +#: class/class-mainwp-child-wordfence.php:3531 +msgid "Must-Use WordPress Plugins" +msgstr "Plugins de WordPress imprescindibles" + +#: class/class-mainwp-child-wordfence.php:3532 +msgid "" +"WordPress \"mu-plugins\" that are always active, incluing those provided by " +"hosts." +msgstr "" +"Los \"mu-plugins\" de WordPress que siempre están activos, incluidos los " +"proporcionados por los hosts." + +#: class/class-mainwp-child-wordfence.php:3569 +msgid "Themes" +msgstr "Temas" + +#: class/class-mainwp-child-wordfence.php:3570 +msgid "Status of installed themes." +msgstr "Estado de los temas instalados." + +#: class/class-mainwp-child-wordfence.php:3608 +msgid "Cron Jobs" +msgstr "Tareas Cron" + +#: class/class-mainwp-child-wordfence.php:3609 +msgid "List of WordPress cron jobs scheduled by WordPress, plugins, or themes." +msgstr "" +"Lista de tareas cron de WordPress programadas por WordPress, plugins o temas." + +#: class/class-mainwp-child-wordfence.php:3662 +msgid "Database Tables" +msgstr "Tablas de la base de datos" + +#: class/class-mainwp-child-wordfence.php:3663 +msgid "Database table names, sizes, timestamps, and other metadata." +msgstr "" +"Nombres de tablas de bases de datos, tamaños, marcas de tiempo y otros " +"metadatos." + +#: class/class-mainwp-child-wordfence.php:3713 +msgid "Log Files" +msgstr "Archivos de registro" + +#: class/class-mainwp-child-wordfence.php:3714 +msgid "PHP error logs generated by your site, if enabled by your host." +msgstr "" +"Registros de errores PHP generados por su sitio, si su host lo permite." + +#: class/class-mainwp-child-wp-rocket.php:426 +msgid "Please install WP Rocket plugin on child website" +msgstr "Por favor, instale el plugin WP Rocket en su sitio web" + +#: class/class-mainwp-child-wp-seopress.php:91 +msgid "" +"Settings could not be exported. Missing function `seopress_return_settings`" +msgstr "" +"No se ha podido exportar la configuración. Falta la función " +"`seopress_return_settings`" + +#: class/class-mainwp-child-wp-seopress.php:98 +msgid "Export completed" +msgstr "Exportación completada" + +#: class/class-mainwp-child-wp-seopress.php:112 +msgid "" +"Settings could not be imported. Missing function " +"`seopress_do_import_settings`" +msgstr "" +"No se ha podido importar la configuración. Falta la función " +"`seopress_do_import_settings`" + +#: class/class-mainwp-child-wp-seopress.php:120 +msgid "Import completed" +msgstr "Importación completada" + +#: class/class-mainwp-child-wp-seopress.php:134 +msgid "" +"Settings could not be saved. Missing function `seopress_mainwp_save_settings`" +msgstr "" +"No se ha podido guardar la configuración. Falta la función " +"`seopress_mainwp_save_settings`" + +#: class/class-mainwp-child-wp-seopress.php:143 +msgid "Settings could not be saved. Missing option name." +msgstr "" +"No se ha podido guardar la configuración. Falta el nombre de la opción." + +#: class/class-mainwp-child-wp-seopress.php:148 +#: class/class-mainwp-child-wp-seopress.php:173 +#: class/class-mainwp-child-wp-seopress.php:208 +msgid "SEOPress Pro plugin is not active on child site." +msgstr "El plugin SEOPress Pro no está activo en el sitio infantil." + +#: class/class-mainwp-child-wp-seopress.php:158 +#: class/class-mainwp-child-wp-seopress.php:191 +#: class/class-mainwp-child-wp-seopress.php:239 +msgid "Save successful" +msgstr "Guardado con éxito" + +#: class/class-mainwp-child-wp-seopress.php:178 +msgid "" +"Settings could not be saved. Missing function `seopress_save_pro_licence`" +msgstr "" +"No se ha podido guardar la configuración. Falta la función " +"`seopress_save_pro_licence`" + +#: class/class-mainwp-child-wp-seopress.php:213 +msgid "" +"Licence could not be reset. Missing function `seopress_reset_pro_licence`" +msgstr "" +"No se ha podido restablecer la licencia. Falta la función " +"`seopress_reset_pro_licence`" + +#: class/class-mainwp-child-wp-seopress.php:219 +msgid "Reset successful" +msgstr "Reinicio correcto" + +#: class/class-mainwp-child-wp-seopress.php:233 +msgid "" +"Action could not be executed. Missing function `seopress_flush_rewrite_rules`" +msgstr "" +"No se ha podido ejecutar la acción. Falta la función " +"`seopress_flush_rewrite_rules`" + +#: class/class-mainwp-child.php:512 class/class-mainwp-pages.php:586 +msgid "Settings" +msgstr "Ajustes" + +#: class/class-mainwp-client-report-base.php:878 +msgid "Guest" +msgstr "Invitado" + +#: class/class-mainwp-client-report-base.php:905 +msgid "Scan complete. Congratulations, no new problems found." +msgstr "" +"Escaneo completado. Enhorabuena, no se han encontrado nuevos problemas." + +#: class/class-mainwp-client-report-base.php:966 +#: class/class-mainwp-client-report-base.php:975 +msgid "Site Blacklisted" +msgstr "Sitio en la lista negra" + +#: class/class-mainwp-client-report-base.php:969 +msgid "Site With Warnings" +msgstr "Sitio con advertencias" + +#: class/class-mainwp-client-report-base.php:973 +msgid "Verified Clear" +msgstr "Limpieza verificada" + +#: class/class-mainwp-client-report-base.php:975 +msgid "Trusted" +msgstr "Confianza" + +#: class/class-mainwp-client-report-base.php:995 +msgid "Delete all post revisions" +msgstr "Borrar todas las revisiones" + +#: class/class-mainwp-client-report-base.php:996 +msgid "Delete all post revisions, except for the last:" +msgstr "Borra todas las revisiones de los mensajes, excepto la última:" + +#: class/class-mainwp-client-report-base.php:997 +msgid "Delete all auto draft posts" +msgstr "Borrar todos los borradores automáticos" + +#: class/class-mainwp-client-report-base.php:998 +msgid "Delete trash posts" +msgstr "Borrar mensajes basura" + +#: class/class-mainwp-client-report-base.php:999 +msgid "Delete spam comments" +msgstr "Eliminar comentarios spam" + +#: class/class-mainwp-client-report-base.php:1000 +msgid "Delete pending comments" +msgstr "Eliminar comentarios pendientes" + +#: class/class-mainwp-client-report-base.php:1001 +msgid "Delete trash comments" +msgstr "Borrar comentarios basura" + +#: class/class-mainwp-client-report-base.php:1002 +msgid "Delete tags with 0 posts associated" +msgstr "Eliminar etiquetas con 0 mensajes asociados" + +#: class/class-mainwp-client-report-base.php:1003 +msgid "Delete categories with 0 posts associated" +msgstr "Eliminar categorías con 0 mensajes asociados" + +#: class/class-mainwp-client-report-base.php:1004 +msgid "Optimize database tables" +msgstr "Optimizar las tablas de la base de datos" + +#: class/class-mainwp-client-report.php:148 +msgid "No MainWP Child Reports plugin installed." +msgstr "No está instalado el plugin MainWP Child Reports." + +#: class/class-mainwp-clone-install.php:161 +#: class/class-mainwp-clone-install.php:164 +msgid "This is not a full backup." +msgstr "No se trata de una copia de seguridad completa." + +#: class/class-mainwp-clone-install.php:167 +msgid "Database backup is missing." +msgstr "Falta la copia de seguridad de la base de datos." + +#: class/class-mainwp-clone-install.php:223 +msgid "Cant read configuration file from the backup." +msgstr "No se puede leer el archivo de configuración de la copia de seguridad." + +#: class/class-mainwp-clone-install.php:390 +msgid "Error: unexpected end of file for database." +msgstr "Error: fin de archivo inesperado para la base de datos." + +#: class/class-mainwp-clone-page.php:102 class/class-mainwp-clone-page.php:253 +msgid "File could not be uploaded." +msgstr "No se ha podido cargar el archivo." + +#: class/class-mainwp-clone-page.php:105 class/class-mainwp-clone-page.php:256 +msgid "" +"File is empty. Please upload something more substantial. This error could " +"also be caused by uploads being disabled in your php.ini or by post_max_size " +"being defined as smaller than upload_max_filesize in php.ini." +msgstr "" +"El archivo está vacío. Por favor sube algo con más sustancia. Este error " +"podría ser causado también si las subidas de archivos están desactivadas en " +"tu php.ini o si el post_max_size está definido como más pequeño que el " +"upload_max_filesize en el php.ini." + +#: class/class-mainwp-clone-page.php:116 +msgid "" +"Cloning is currently off - To turn on return to your main dashboard and turn " +"cloning on on the Clone page." +msgstr "" +"La clonación está desactivada. Para activarla, vuelve al panel principal y " +"activa la clonación en la página Clonar." + +#: class/class-mainwp-clone-page.php:129 class/class-mainwp-clone-page.php:279 +msgid "Your content directory is not writable. Please set 0755 permission to " +msgstr "" +"Su directorio de contenido no tiene permisos de escritura. Por favor, " +"establezca el permiso 0755 en" + +#: class/class-mainwp-clone-page.php:134 +msgid "Cloning process completed successfully! You will now need to click " +msgstr "" +"El proceso de clonación se ha completado con éxito Ahora deberá hacer clic en" + +#: class/class-mainwp-clone-page.php:135 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1209 +#: class/class-mainwp-clone-page.php:1247 +msgid "here" +msgstr "aquí" + +#: class/class-mainwp-clone-page.php:136 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1247 +msgid " to re-login to the admin and re-save permalinks." +msgstr "" +" para volver a iniciar sesión en el admin y volver a guardar permalinks." + +#: class/class-mainwp-clone-page.php:160 class/class-mainwp-clone-page.php:288 +msgid "Upload successful." +msgstr "Subida correcta." + +#: class/class-mainwp-clone-page.php:162 +msgid "Clone/Restore website" +msgstr "Clonar/Restaurar sitio web" + +#: class/class-mainwp-clone-page.php:174 +msgid "" +"Cloning is currently on but no sites have been allowed, to allow sites " +"return to your main dashboard and turn cloning on on the Clone page." +msgstr "" +"La clonación está actualmente activada pero no se han permitido sitios, para " +"permitir sitios vuelva a su panel principal y active la clonación en la " +"página Clonar." + +#: class/class-mainwp-clone-page.php:180 +msgid "Display by:" +msgstr "Mostrar por:" + +#: class/class-mainwp-clone-page.php:180 +msgid "Site Name" +msgstr "Nombre del sitio" + +#: class/class-mainwp-clone-page.php:180 +msgid "URL" +msgstr "URL" + +#: class/class-mainwp-clone-page.php:181 +msgid "Select Source for clone" +msgstr "Seleccionar fuente para clonar" + +#: class/class-mainwp-clone-page.php:196 +msgid "The site selected above will replace this site's files and database" +msgstr "" +"El sitio seleccionado arriba reemplazará los archivos y la base de datos de " +"este sitio" + +#: class/class-mainwp-clone-page.php:200 +msgid "Clone website" +msgstr "Clonar sitio web" + +#: class/class-mainwp-clone-page.php:212 class/class-mainwp-clone-page.php:266 +msgid "Option 1:" +msgstr "Opción 1:" + +#: class/class-mainwp-clone-page.php:212 +msgid "Restore/Clone from backup" +msgstr "Restaurar/Clonar desde copia de seguridad" + +#: class/class-mainwp-clone-page.php:214 class/class-mainwp-clone-page.php:299 +msgid "" +"Upload backup in .zip format (Maximum filesize for your server settings: " +msgstr "" +"Cargue la copia de seguridad en formato .zip (tamaño máximo de archivo según " +"la configuración de su servidor:" + +#: class/class-mainwp-clone-page.php:215 +msgid "" +"If you have a FULL backup created by the default MainWP Backup system you " +"may restore it by uploading here. Backups created by 3rd party plugins will " +"not work." +msgstr "" +"Si tiene una copia de seguridad COMPLETA creada por el sistema de copia de " +"seguridad predeterminado de MainWP, puede restaurarla subiéndola aquí. Las " +"copias de seguridad creadas por plugins de terceros no funcionarán." + +#: class/class-mainwp-clone-page.php:217 class/class-mainwp-clone-page.php:310 +msgid "A database only backup will not work." +msgstr "Una copia de seguridad sólo de la base de datos no funcionará." + +#: class/class-mainwp-clone-page.php:222 class/class-mainwp-clone-page.php:499 +msgid "Clone/Restore Website" +msgstr "Clonar/Restaurar sitio web" + +#: class/class-mainwp-clone-page.php:283 class/class-mainwp-clone-page.php:1246 +msgid "Restore process completed successfully! You will now need to click " +msgstr "" +"El proceso de restauración se ha completado correctamente Ahora deberá hacer " +"clic en" + +#: class/class-mainwp-clone-page.php:290 class/class-mainwp-clone-page.php:314 +msgid "Restore Website" +msgstr "Restaurar el sitio web" + +#: class/class-mainwp-clone-page.php:305 +msgid "" +"If you have a FULL backup created by basic MainWP Backup system you may " +"restore it by uploading here. Backups created by 3rd party plugins will not " +"work." +msgstr "" +"Si tiene una copia de seguridad COMPLETA creada por el sistema básico de " +"MainWP Backup puede restaurarla subiéndola aquí. Las copias de seguridad " +"creadas por plugins de terceros no funcionarán." + +#: class/class-mainwp-clone-page.php:371 +msgid "Option 2:" +msgstr "Opción 2:" + +#: class/class-mainwp-clone-page.php:371 +msgid "Restore/Clone From Server" +msgstr "Restaurar/Clonar desde el servidor" + +#: class/class-mainwp-clone-page.php:373 +msgid "" +"If you have uploaded a FULL backup to your server (via FTP or other means) " +"you can use this section to locate the zip file and select it. A database " +"only backup will not work." +msgstr "" +"Si ha cargado una copia de seguridad COMPLETA en su servidor (a través de " +"FTP u otros medios) puede utilizar esta sección para localizar el archivo " +"zip y seleccionarlo. Una copia de seguridad sólo de la base de datos no " +"funcionará." + +#: class/class-mainwp-clone-page.php:376 +msgid "" +"Root directory is not readable. Please contact with site administrator to " +"correct." +msgstr "" +"El directorio raíz no es legible. Póngase en contacto con el administrador " +"del sitio para corregirlo." + +#: class/class-mainwp-clone-page.php:395 +#, php-format +msgid "%1$sCurrent Directory:%2$s %3$s" +msgstr "%1$sDirectorio actual:%2$s %3$s" + +#: class/class-mainwp-clone-page.php:397 +msgid "Site Root" +msgstr "Raiz del sitio" + +#: class/class-mainwp-clone-page.php:398 +msgid "Backup" +msgstr "Copia de seguridad" + +#: class/class-mainwp-clone-page.php:401 +msgid "Uploads Folder" +msgstr "Carpeta de subidas" + +#: class/class-mainwp-clone-page.php:403 +msgid "Content Folder" +msgstr "Carpeta de contenidos" + +#: class/class-mainwp-clone-page.php:417 +msgid "Quick Jump:" +msgstr "Salto rápido:" + +#: class/class-mainwp-clone-page.php:457 +msgid "Select File" +msgstr "Seleccionar Archivo" + +#: class/class-mainwp-clone-page.php:462 +msgid "Parent Folder" +msgstr "Carpeta padre" + +#: class/class-mainwp-clone-page.php:603 +#, php-format +msgid "" +"This is a large site (%dMB), the restore process will more than likely fail." +msgstr "" +"Se trata de un sitio de gran tamaño (%dMB), lo más probable es que el " +"proceso de restauración falle." + +#: class/class-mainwp-clone-page.php:604 +msgid "Continue Anyway?" +msgstr "¿Continuar de todos modos?" + +#: class/class-mainwp-clone-page.php:605 +#, php-format +msgid "" +"Creating backup on %1$s expected size: %2$dMB (estimated time: %3$d seconds)" +msgstr "" +"Creando copia de seguridad en %1$s tamaño esperado: %2$dMB (tiempo estimado: " +"%3$d segundos)" + +#: class/class-mainwp-clone-page.php:606 +#, php-format +msgid "Backup created on %1$s total size to download: %2$dMB" +msgstr "Copia de seguridad creada el %1$s tamaño total para descargar: %2$dMB" + +#: class/class-mainwp-clone-page.php:607 +msgid "Downloading backup" +msgstr "Descarga de la copia de seguridad" + +#: class/class-mainwp-clone-page.php:608 +msgid "Backup downloaded" +msgstr "Copia de seguridad descargada" + +#: class/class-mainwp-clone-page.php:609 +msgid "" +"Extracting backup and updating your database, this might take a while. " +"Please be patient." +msgstr "" +"Extraer la copia de seguridad y actualizar su base de datos, esto puede " +"tomar un tiempo. Por favor, sea paciente." + +#: class/class-mainwp-clone-page.php:610 +msgid "Cloning process completed successfully!" +msgstr "El proceso de clonación se ha completado con éxito" + +#: class/class-mainwp-clone-page.php:1204 +msgid "Restore process completed successfully! Check and re-save permalinks " +msgstr "" +"El proceso de restauración se ha completado correctamente Comprobar y volver " +"a guardar los enlaces permanentes" + +#: class/class-mainwp-clone-page.php:1206 +msgid "Cloning process completed successfully! Check and re-save permalinks " +msgstr "" +"El proceso de clonación se ha completado con éxito Comprobar y volver a " +"guardar los enlaces permanentes" + +#: class/class-mainwp-clone-page.php:1240 +msgid "" +"Be sure to use a FULL backup created by your Network dashboard, if critical " +"folders are excluded it may result in a not working installation." +msgstr "" +"Asegúrese de utilizar una copia de seguridad COMPLETA creada por su panel de " +"control de red, si se excluyen carpetas críticas puede resultar en una " +"instalación que no funcione." + +#: class/class-mainwp-clone-page.php:1243 +msgid "Start Restore" +msgstr "Iniciar restauración" + +#: class/class-mainwp-clone-page.php:1244 +msgid "CAUTION: this will overwrite your existing site." +msgstr "ATENCIÓN: esto sobrescribirá su sitio existente." + +#: class/class-mainwp-clone-page.php:1252 +msgid "Restore process completed successfully!" +msgstr "El proceso de restauración se ha completado correctamente" + +#: class/class-mainwp-clone.php:145 +msgid "Double request!" +msgstr "¡Doble petición!" + +#: class/class-mainwp-clone.php:434 class/class-mainwp-clone.php:510 +msgid "No site given" +msgstr "No se indica el lugar" + +#: class/class-mainwp-clone.php:443 class/class-mainwp-clone.php:517 +#: class/class-mainwp-clone.php:583 +msgid "Site not found" +msgstr "Sitio no encontrado" + +#: class/class-mainwp-clone.php:478 +msgid "Could not create backupfile on child" +msgstr "No se ha podido crear el archivo de copia de seguridad en el hijo" + +#: class/class-mainwp-clone.php:538 +msgid "Invalid response" +msgstr "Respuesta no válida" + +#: class/class-mainwp-clone.php:573 +msgid "No download link given" +msgstr "No hay enlace de descarga" + +#: class/class-mainwp-clone.php:695 class/class-mainwp-clone.php:810 +msgid "No download file found" +msgstr "No se ha encontrado ningún archivo de descarga" + +#: class/class-mainwp-clone.php:818 +msgid "Backup file not found" +msgstr "Archivo de copia de seguridad no encontrado" + +#: class/class-mainwp-connect.php:89 +#, php-format +msgid "" +"Public key could not be set. Please make sure that the OpenSSL library has " +"been configured correctly on your MainWP Dashboard. For additional help, " +"please check this %1$shelp document%2$s." +msgstr "" +"No se ha podido establecer la clave pública. Por favor, asegúrese de que la " +"biblioteca OpenSSL se ha configurado correctamente en su MainWP Dashboard. " +"Para obtener ayuda adicional, consulte este documento de %1$sayuda%2$s." + +#: class/class-mainwp-connect.php:97 +msgid "" +"Public key already set. Please deactivate & reactivate the MainWP Child " +"plugin on the child site and try again." +msgstr "" +"La clave pública ya está configurada. Desactive y vuelva a activar el plugin " +"MainWP Child en el sitio hijo e inténtelo de nuevo." + +#: class/class-mainwp-connect.php:104 +msgid "" +"This child site is set to require a unique security ID. Please enter it " +"before the connection can be established." +msgstr "" +"Este sitio hijo está configurado para requerir un ID de seguridad único. Por " +"favor, introdúzcalo antes de establecer la conexión." + +#: class/class-mainwp-connect.php:106 +msgid "" +"The unique security ID mismatch! Please correct it before the connection can " +"be established." +msgstr "" +"El identificador único de seguridad no coincide Por favor, corríjalo antes " +"de establecer la conexión." + +#: class/class-mainwp-connect.php:112 +msgid "" +"OpenSSL library is required on the child site to set up a secure connection." +msgstr "" +"La biblioteca OpenSSL es necesaria en el sitio hijo para establecer una " +"conexión segura." + +#: class/class-mainwp-connect.php:117 +msgid "" +"cURL Extension not enabled on the child site server. Please contact your " +"host support and have them enabled it for you." +msgstr "" +"la extensión cURL no está habilitada en el servidor del sitio hijo. Póngase " +"en contacto con el servicio de asistencia de su host para que se la " +"habiliten." + +#: class/class-mainwp-connect.php:122 +msgid "" +"Failed to reconnect to the site. Please remove the site and add it again." +msgstr "" +"Ha fallado la reconexión al sitio. Por favor, elimine el sitio y añádalo de " +"nuevo." + +#: class/class-mainwp-connect.php:124 +msgid "" +"Unable to connect to the site. Please verify that your Admin Username and " +"Password are correct and try again." +msgstr "" +"No se puede conectar al sitio. Compruebe que su nombre de usuario y " +"contraseña de administrador son correctos e inténtelo de nuevo." + +#: class/class-mainwp-connect.php:130 +msgid "" +"Administrator user does not exist. Please verify that the user is an " +"existing administrator." +msgstr "" +"Usuario administrador no existente. Compruebe que se trata de un " +"administrador existente." + +#: class/class-mainwp-connect.php:133 +msgid "" +"User is not an administrator. Please use an administrator user to establish " +"the connection." +msgstr "" +"El usuario no es un administrador. Por favor, utilice un usuario " +"administrador para establecer la conexión." + +#: class/class-mainwp-connect.php:399 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this child site and try again." +msgstr "" +"Error de autenticación Desactive y vuelva a activar el plugin MainWP Child " +"en este sitio hijo e inténtelo de nuevo." + +#: class/class-mainwp-connect.php:408 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this site and try again." +msgstr "" +"Error de autenticación Por favor, desactive y vuelva a activar el plugin " +"MainWP Child en este sitio e inténtelo de nuevo." + +#: class/class-mainwp-connect.php:436 class/class-mainwp-connect.php:969 +msgid "" +"Unexisting administrator user. Please verify that it is an existing " +"administrator." +msgstr "" +"Usuario administrador no existente. Compruebe que se trata de un " +"administrador existente." + +#: class/class-mainwp-connect.php:440 class/class-mainwp-connect.php:972 +msgid "" +"User not administrator. Please use an administrator user to establish the " +"connection." +msgstr "" +"Usuario no administrador. Por favor, utilice un usuario administrador para " +"establecer la conexión." + +#: class/class-mainwp-connect.php:614 +msgid "" +"To use OPENSSL_ALGO_SHA1 OpenSSL signature algorithm. Please deactivate & " +"reactivate the MainWP Child plugin on the child site and try again." +msgstr "" +"Para utilizar el algoritmo de firma OPENSSL_ALGO_SHA1 OpenSSL. Desactive y " +"vuelva a activar el plugin MainWP Child en el sitio hijo e inténtelo de " +"nuevo." + +#: class/class-mainwp-connect.php:948 +msgid "" +"Authentication failed! Please deactivate and re-activate the MainWP Child " +"plugin on this site." +msgstr "" +"Error de autenticación Por favor, desactive y vuelva a activar el plugin " +"MainWP Child en este sitio." + +#: class/class-mainwp-custom-post-type.php:187 +msgid "Missing data" +msgstr "Faltan dados" + +#: class/class-mainwp-custom-post-type.php:198 +msgid "Cannot decode data" +msgstr "No se pueden descodificar los datos" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "Missing" +msgstr "Perdido" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "inside post data" +msgstr "datos del puesto interior" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "Please install" +msgstr "Por favor, instale" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "on child and try again" +msgstr "en niño e inténtalo de nuevo" + +#: class/class-mainwp-custom-post-type.php:340 +msgid "" +"Cannot get old post. Probably is deleted now. Please try again for create " +"new post" +msgstr "" +"No se puede obtener post antiguo. Probablemente ya está borrado. Por favor, " +"inténtelo de nuevo para crear un nuevo mensaje" + +#: class/class-mainwp-custom-post-type.php:345 +msgid "" +"This post is inside trash on child website. Please try publish it manually " +"and try again." +msgstr "" +"Este post está dentro de la basura en el sitio web del niño. Por favor, " +"intente publicarlo manualmente y vuelva a intentarlo." + +#: class/class-mainwp-custom-post-type.php:354 +msgid "Cannot delete old post meta values" +msgstr "No se pueden eliminar los valores meta antiguos" + +#: class/class-mainwp-custom-post-type.php:375 +msgid "Error when insert new post:" +msgstr "Error al insertar nuevo post:" + +#: class/class-mainwp-custom-post-type.php:520 +msgid "Missing taxonomy" +msgstr "Falta taxonomía" + +#: class/class-mainwp-custom-post-type.php:545 +msgid "Error when adding taxonomy to post" +msgstr "Error al añadir taxonomía a la entrada" + +#: class/class-mainwp-custom-post-type.php:619 +msgid "Product SKU must be unique" +msgstr "La SKU del producto debe ser única" + +#: class/class-mainwp-custom-post-type.php:641 +msgid "Cannot add featured image" +msgstr "No se puede añadir una imagen destacada" + +#: class/class-mainwp-custom-post-type.php:653 +msgid "Error when adding post meta" +msgstr "Error al añadir post meta" + +#: class/class-mainwp-custom-post-type.php:682 +msgid "Cannot add product image" +msgstr "No se puede añadir la imagen del producto" + +#: class/class-mainwp-helper.php:134 +msgid "Unable to connect to the filesystem." +msgstr "No se puede conectar al sistema de archivos." + +#: class/class-mainwp-helper.php:295 +msgid "Unable to create directory " +msgstr "No se ha podido crear el directorio " + +#: class/class-mainwp-helper.php:295 +msgid " Is its parent directory writable by the server?" +msgstr " ¿El servidor puede escribir en su directorio principal?" + +#: class/class-mainwp-helper.php:414 +msgid "WordPress Filesystem error: " +msgstr "Error en el sistema de archivos de WordPress:" + +#: class/class-mainwp-pages.php:113 +msgid " Plugin is Active" +msgstr " El plugin está activo" + +#: class/class-mainwp-pages.php:114 +msgid "" +"This site is now ready for connection. Please proceed with the connection " +"process from your " +msgstr "" +"Este sitio ya está listo para la conexión. Por favor proceda con el proceso " +"de conexión desde su" + +#: class/class-mainwp-pages.php:114 +msgid "to start managing the site. " +msgstr "para empezar a gestionar el sitio." + +#: class/class-mainwp-pages.php:115 +#, php-format +msgid "If you need assistance, refer to our %1$sdocumentation%2$s." +msgstr "Si necesita ayuda, consulte nuestra %1$sdocumentación%2$s." + +#: class/class-mainwp-pages.php:117 +msgid "For additional security options, visit the " +msgstr "Para más opciones de seguridad, visite la página" + +#: class/class-mainwp-pages.php:117 +#, php-format +msgid " %1$splugin settings%2$s. " +msgstr "\"%1$s\" plugin desactivado %2$s" + +#: class/class-mainwp-pages.php:129 +msgid "Disconnected the Site from Dashboard." +msgstr "Desconectado el Sitio del Tablero." + +#: class/class-mainwp-pages.php:131 +msgid "Settings have been saved successfully." +msgstr "El mensaje se ha enviado correctamente." + +#: class/class-mainwp-pages.php:139 +msgid "Dismiss this notice." +msgstr "Descartar este aviso." + +#: class/class-mainwp-pages.php:589 +msgid "Restore / Clone" +msgstr "Restaurar / Clonar" + +#: class/class-mainwp-pages.php:595 +msgid "Connection Details" +msgstr "Detalles de la conexión" + +#: class/class-mainwp-pages.php:668 +msgid "Connection Security Settings" +msgstr "Ajustes de conexión" + +#: class/class-mainwp-pages.php:669 +msgid "Configure the plugin to best suit your security and connection needs." +msgstr "" +"Configure el plugin para que se adapte mejor a sus necesidades de seguridad " +"y conexión." + +#: class/class-mainwp-pages.php:673 +msgid "Password Authentication - Initial Connection Security" +msgstr "Autenticación de contraseña - Seguridad de la conexión inicial" + +#: class/class-mainwp-pages.php:676 +msgid "" +" requests that you connect using an admin account and password for the " +"initial setup. Rest assured, your password is never stored by your Dashboard " +"and never sent to " +msgstr "" +" solicita que se conecte utilizando una cuenta y una contraseña de " +"administrador para la configuración inicial. Tenga la seguridad de que su " +"contraseña nunca es almacenada por su Dashboard y nunca se envía a" + +#: class/class-mainwp-pages.php:677 +msgid "Dedicated " +msgstr "Dedicado" + +#: class/class-mainwp-pages.php:678 +msgid "" +"For further security, we recommend creating a dedicated admin account " +"specifically for " +msgstr "" +"Para mayor seguridad, recomendamos crear una cuenta de administrador " +"específica para" + +#: class/class-mainwp-pages.php:679 +msgid "Disabling Password Security" +msgstr "Desactivar la seguridad de contraseñas" + +#: class/class-mainwp-pages.php:680 +msgid "" +"If you prefer not to use password security, you can disable it by unchecking " +"the box below. Make sure this child site is ready to connect before turning " +"off this feature." +msgstr "" +"Si prefiere no utilizar la seguridad por contraseña, puede desactivarla " +"desmarcando la casilla de abajo. Asegúrese de que este sitio infantil está " +"listo para conectarse antes de desactivar esta función." + +#: class/class-mainwp-pages.php:684 +msgid "" +"If you have additional questions, please refer to this Knowledge Base " +"article or contact " +msgstr "" +"Si tiene más preguntas, consulte este artículo de la Base de conocimientos o " +"póngase en contacto con" + +#: class/class-mainwp-pages.php:686 +#, php-format +msgid "" +"If you have additional questions, please %srefer to this Knowledge Base " +"article%s or %scontact MainWP Support%s." +msgstr "" +"Si tiene más preguntas, por favor %sconsulte este artículo de la Base de " +"Conocimientos%s o %scontacte con el Soporte de MainWP%s." + +#: class/class-mainwp-pages.php:693 +msgid "Require Password Authentication" +msgstr "Requerir autenticación de contraseña" + +#: class/class-mainwp-pages.php:698 +msgid "" +"Enable this option to require password authentication on initial site " +"connection." +msgstr "" +"Active esta opción para requerir la autenticación de contraseña en la " +"conexión inicial del sitio." + +#: class/class-mainwp-pages.php:705 +msgid "Unique Security ID" +msgstr "Identificación única de seguridad" + +#: class/class-mainwp-pages.php:708 +#, php-format +msgid "" +"Add an extra layer of security for connecting this site to your %s Dashboard." +msgstr "" +"Añade una capa extra de seguridad para conectar este sitio a tu %s Dashboard." + +#: class/class-mainwp-pages.php:713 +msgid "Require Unique Secuirty ID" +msgstr "Exigir un identificador de seguridad único" + +#: class/class-mainwp-pages.php:718 +msgid "" +"Enable this option for an added layer of protection when connecting this " +"site." +msgstr "" +"Habilite esta opción para una capa adicional de protección al conectarse a " +"este sitio." + +#: class/class-mainwp-pages.php:729 +msgid "Your unique security ID is:" +msgstr "Tu identificador de seguridad único es:" + +#: class/class-mainwp-pages.php:737 +msgid "Connection Timeout" +msgstr "Detalles de la conexión" + +#: class/class-mainwp-pages.php:740 +msgid "" +"Define how long the plugin will remain active if no connection is " +"established. After this period, the plugin will automatically deactivate for " +"security." +msgstr "" +"Define cuánto tiempo permanecerá activo el plugin si no se establece ninguna " +"conexión. Tras este periodo, el complemento se desactivará automáticamente " +"por seguridad." + +#: class/class-mainwp-pages.php:744 +msgid "Set Connection Timeout" +msgstr "Detalles de la conexión" + +#: class/class-mainwp-pages.php:747 +msgid "" +"Specify how long the plugin should stay active if a connection isn't " +"established. Enter a value in minutes." +msgstr "" +"Especifique cuánto tiempo debe permanecer activo el complemento si no se " +"establece una conexión. Introduzca un valor en minutos." + +#: class/class-mainwp-pages.php:757 +msgid "Save Settings" +msgstr "Guardar configuraciones" + +#: class/class-mainwp-pages.php:763 +msgid "Site Connection Management" +msgstr "Gestión de la conexión de sitios" + +#: class/class-mainwp-pages.php:766 +msgid "Are you sure you want to Disconnect Site from your " +msgstr "¿Está seguro de que desea Desconectar Sitio de su" + +#: class/class-mainwp-pages.php:767 +#, php-format +msgid "Click this button to disconnect this site from your %s Dashboard." +msgstr "Haga clic en este botón para desconectar este sitio de su Panel %s." + +#: class/class-mainwp-pages.php:769 +msgid "Clear Connection Data" +msgstr "Detalles de la conexión" + +#: class/class-mainwp-utility.php:592 +msgid "" +"Something went wrong while contacting the child site. Please check if there " +"is an error on the child site. This error could also be caused by trying to " +"clone or restore a site to large for your server settings." +msgstr "" +"Algo ha ido mal al contactar con el sitio hijo. Por favor, compruebe si hay " +"un error en el sitio hijo. Este error también podría ser causado por tratar " +"de clonar o restaurar un sitio a grande para la configuración de su servidor." + +#: class/class-mainwp-utility.php:594 +msgid "" +"Child plugin is disabled or the security key is incorrect. Please resync " +"with your main installation." +msgstr "" +"El plugin infantil está deshabilitado o la clave de seguridad es incorrecta. " +"Vuelva a sincronizarlo con la instalación principal." + +#: class/class-mainwp-wordpress-seo.php:73 +msgid "Settings could not be imported." +msgstr "Los ajustes no se pudieron importar." + +#: class/class-mainwp-wordpress-seo.php:228 +msgid "Upload failed." +msgstr "Subida fallida." + +#: class/class-mainwp-wordpress-seo.php:242 +msgid "Post is set to noindex." +msgstr "El mensaje se establece en noindex." + +#: class/class-mainwp-wordpress-seo.php:246 +msgid "Focus keyword not set." +msgstr "Palabra clave de enfoque no establecida." + +#. Plugin Name of the plugin/theme +msgid "MainWP Child" +msgstr "MainWP Niño" + +#. Plugin URI of the plugin/theme +msgid "https://mainwp.com/" +msgstr "https://mainwp.com/" + +#. Description of the plugin/theme +msgid "" +"Provides a secure connection between your MainWP Dashboard and your " +"WordPress sites. MainWP allows you to manage WP sites from one central " +"location. Plugin documentation and options can be found here https://kb." +"mainwp.com/." +msgstr "" +"Proporciona una conexión segura entre su MainWP Dashboard y sus sitios " +"WordPress. MainWP le permite administrar sitios WP desde una ubicación " +"central. La documentación y las opciones del plugin se pueden encontrar aquí " +"https://kb.mainwp.com/." + +#. Author of the plugin/theme +msgid "MainWP" +msgstr "MainWP" + +#. Author URI of the plugin/theme +msgid "https://mainwp.com" +msgstr "https://mainwp.com" + +#~ msgid "Every Five Seconds" +#~ msgstr "Cada cinco segundos" + +#~ msgid "Attention! " +#~ msgstr "¡Atención!" + +#~ msgid " plugin is activated but not connected." +#~ msgstr " el plugin está activado pero no conectado." + +#~ msgid "Please add this site to your " +#~ msgstr "Añada este sitio a su" + +#~ msgid "NOW or deactivate the " +#~ msgstr "AHORA o desactivar el" + +#~ msgid "" +#~ " plugin until you are ready to connect this site to your Dashboard in " +#~ "order to avoid unexpected security issues. " +#~ msgstr "" +#~ " hasta que esté listo para conectar este sitio a su Dashboard para evitar " +#~ "problemas de seguridad inesperados." + +#, php-format +#~ msgid "" +#~ "If you are not sure how to do it, please review this %1$shelp " +#~ "document%2$s." +#~ msgstr "" +#~ "Si no está seguro de cómo hacerlo, consulte este %1$sdocumento de " +#~ "ayuda%2$s." + +#~ msgid "You can also turn on the unique security ID option in " +#~ msgstr "También puede activar la opción de ID de seguridad único en" + +#, php-format +#~ msgid "" +#~ " %1$ssettings%2$s if you would like extra security and additional time to " +#~ "add this site to your Dashboard. " +#~ msgstr "" +#~ " %1$ssettings%2$s si desea seguridad extra y tiempo adicional para añadir " +#~ "este sitio a su Dashboard." + +#, php-format +#~ msgid "Find out more in this %1$shelp document%2$s how to do it." +#~ msgstr "Descubra en este documento de %1$sayuda%2$s cómo hacerlo." + +#~ msgid "Server information" +#~ msgstr "Información del servidor" + +#~ msgid "" +#~ "The unique security ID adds additional protection between the child " +#~ "plugin and your Dashboard. The unique security ID will need to match when " +#~ "being added to the Dashboard. This is additional security and should not " +#~ "be needed in most situations." +#~ msgstr "" +#~ "El identificador de seguridad único añade protección adicional entre el " +#~ "plugin hijo y su panel de control. El ID de seguridad único deberá " +#~ "coincidir cuando se añada al panel de control. Esto es seguridad " +#~ "adicional y no debería ser necesario en la mayoría de las situaciones." + +#~ msgid "Save changes" +#~ msgstr "Guardar cambios" diff --git a/languages/mainwp-child-fr_FR.mo b/languages/mainwp-child-fr_FR.mo index 7c147af722d95d4387b01f0bc862dd38173ac947..6ad42c943921c46262f7a2f97b9f506842c5814d 100644 GIT binary patch literal 87116 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 ARR910 literal 12631 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 diff --git a/languages/mainwp-child-fr_FR.po b/languages/mainwp-child-fr_FR.po index a5c3542c..be320671 100644 --- a/languages/mainwp-child-fr_FR.po +++ b/languages/mainwp-child-fr_FR.po @@ -1,2035 +1,4348 @@ -msgid "" -msgstr "" -"Project-Id-Version: MainWP Child v2.0.16\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2015-05-16 21:14:58+0000\n" -"Last-Translator: freewebpixel \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: French\n" -"X-Poedit-Country: FRANCE\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:383 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Réglages de connexion" - -#: class/MainWPChild.class.php:386 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your Main Dashboard. The Unique Security ID will need to match when being added to the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "L'Unique ID de sécurité ajoute une protection supplémentaire entre l'extension client et votre tableau de bord principal. L'Unique ID de sécurité devra correspondre lorsqu'elle est ajoutée au tableau de bord principal. Ceci est une sécurité supplémentaire et ne devrait pas être nécessaire dans la plupart des situations." - -#: class/MainWPChild.class.php:391 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Exiger une ID Unique de sécurité" - -#: class/MainWPChild.class.php:396 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Votre ID Unique de sécurité est :" - -#: class/MainWPChild.class.php:400 -#@ mainwp-child -msgid "Save Changes" -msgstr "Sauver les changements" - -#: class/MainWPChild.class.php:789 -#@ mainwp-child -msgid "Authentication failed! Please deactivate and re-activate the MainWP Child plugin on this site." -msgstr "L'authentification a échoué ! Merci de désactiver et réactiver l'extension MainWP client sur ce site." - -#: class/MainWPChild.class.php:798 -#: class/MainWPChild.class.php:1431 -#@ mainwp-child -msgid "No such user" -msgstr "Utilisateur non trouvé" - -#: class/MainWPChild.class.php:803 -#: class/MainWPChild.class.php:1435 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "L'utilisateur n'est pas administrateur" - -#: class/MainWPChild.class.php:954 -#@ mainwp-child -msgid "Bad request." -msgstr "Requête incorrecte." - -#: class/MainWPChild.class.php:1205 -#: class/MainWPChild.class.php:1232 -#: class/MainWPChild.class.php:1285 -#: class/MainWPChild.class.php:1314 -#: class/MainWPChild.class.php:1321 -#@ mainwp-child -msgid "Bad request" -msgstr "Requête incorrecte" - -#: class/MainWPChild.class.php:1403 -#@ mainwp-child -msgid "Invalid request" -msgstr "Requête invalide" - -#: class/MainWPChild.class.php:1411 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Clé publique déjà définie, réinitialiser l'extension MainWP sur votre site et essayez à nouveau." - -#: class/MainWPChild.class.php:1418 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Ce site client est défini pour exiger un ID Unique de sécurité - Merci d'entrer avant la connexion pour qu'elle soit établie." - -#: class/MainWPChild.class.php:1422 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "L'ID Unique de sécurité ue vous avez saisie ne correspond pas l'ID Unique de sécurité client - Merci de corriger avant la connexion pour qu'elle soit établie." - -#: class/MainWPChild.class.php:1696 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Impossible de changer le mot de passe admin." - -#: class/MainWPChild.class.php:1718 -#@ mainwp-child -msgid "Undefined error" -msgstr "Erreur non définie" - -#: class/MainWPChild.class.php:1732 -#, php-format -#@ default -msgid "Username: %s" -msgstr "" - -#: class/MainWPChild.class.php:1733 -#, php-format -#@ default -msgid "Password: %s" -msgstr "" - -#: class/MainWPChild.class.php:1736 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "" - -#: class/MainWPChild.class.php:3528 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Ce site contient déjà un lien - Merci d'activer et désactiver l'extension MainWP." - -#: class/MainWPChild.class.php:3616 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "Erreur du système de fichiers WordPress : " - -#: class/MainWPChild.class.php:4151 -#, php-format -#@ mainwp-child -msgid "PHP Version %s is unsupported." -msgstr "La version PHP %s n'est pas supportée." - -#: class/MainWPChildBackUpWordPress.class.php:201 -#@ mainwp-child -msgid "Not found schedules." -msgstr "Pas trouvé d'horaires." - -#: class/MainWPChildBackUpWordPress.class.php:250 -#@ mainwp-child -msgid "Error data." -msgstr "Erreur de data. " - -#: class/MainWPChildBackUpWordPress.class.php:280 -#: class/MainWPChildBackUpWordPress.class.php:475 -#@ mainwp-backupwordpress-extension -#@ backupwordpress -msgid "Size" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:281 -#: class/MainWPChildBackUpWordPress.class.php:477 -#@ mainwp-backupwordpress-extension -#@ backupwordpress -msgid "Type" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:282 -#: class/MainWPChildUpdraftplusBackups.class.php:1856 -#@ mainwp-backupwordpress-extension -#@ updraftplus -msgid "Actions" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:307 -#@ mainwp-backupwordpress-extension -msgid "This is where your backups will appear once you have some." -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:325 -#@ mainwp-backupwordpress-extension -msgid "Backups will be compressed and should be smaller than this." -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:329 -#@ mainwp-backupwordpress-extension -msgid "this shouldn't take long…" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:329 -#@ mainwp-backupwordpress-extension -msgid "calculating the size of your backup…" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:358 -#@ backupwordpress -msgid "Download" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:361 -#: class/MainWPChildUpdraftplusBackups.class.php:1501 -#: class/MainWPChildUpdraftplusBackups.class.php:1534 -#: class/MainWPChildUpdraftplusBackups.class.php:1988 -#@ backupwordpress -#@ updraftplus -msgid "Delete" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:381 -#@ backupwordpress -msgid "Currently Excluded" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:384 -#@ backupwordpress -msgid "We automatically detect and ignore common VCS folders and other backup plugin folders." -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:419 -#@ backupwordpress -msgid "Default rule" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:423 -#@ backupwordpress -msgid "Defined in wp-config.php" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:427 -#@ backupwordpress -msgid "Stop excluding" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:443 -#@ backupwordpress -msgid "Directory Listing" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:445 -#@ backupwordpress -msgid "Here's a directory listing of all files on your site, you can browse through and exclude files or folders that you don't want included in your backup." -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:474 -#@ backupwordpress -msgid "Name" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:476 -#@ backupwordpress -msgid "Permissions" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:478 -#: class/MainWPChildServerInformation.class.php:293 -#@ backupwordpress -#@ mainwp -msgid "Status" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:539 -#: class/MainWPChildBackUpWordPress.class.php:656 -#@ backupwordpress -msgid "Refresh" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:556 -#: class/MainWPChildBackUpWordPress.class.php:681 -#@ backupwordpress -msgid "Symlink" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:560 -#: class/MainWPChildBackUpWordPress.class.php:685 -#@ backupwordpress -msgid "Folder" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:654 -#@ backupwordpress -msgid "Recalculate the size of this directory" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:689 -#@ backupwordpress -msgid "File" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:700 -#@ backupwordpress -msgid "Unreadable files won't be backed up." -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:700 -#@ backupwordpress -msgid "Unreadable" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:704 -#@ backupwordpress -msgid "Excluded" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:718 -#@ backupwordpress -msgid "Exclude →" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:734 -#@ backupwordpress -msgid "Done" -msgstr "" - -#: class/MainWPChildBackUpWordPress.class.php:758 -#: class/MainWPChildBackUpWordPress.class.php:785 -#@ default -msgid "Error: Empty exclude directory path." -msgstr "" - -#: class/MainWPChildBranding.class.php:612 -#@ default -msgid "Error: send mail failed." -msgstr "" - -#: class/MainWPChildBranding.class.php:650 -#@ default -msgid "Submit" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:360 -#@ it-l10n-better-wp-security -msgid "Your IP Address" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:361 -#@ it-l10n-better-wp-security -msgid "is whitelisted for" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:401 -#@ mainwp-child -msgid "Admin user already changes." -msgstr "Utilisateur Admin déjà changé." - -#: class/MainWPChildIThemesSecurity.class.php:407 -#@ mainwp-child -msgid "Admin user ID already changes." -msgstr " ID d'utilisateur Admin déjà changée." - -#: class/MainWPChildIThemesSecurity.class.php:567 -#@ it-l10n-better-wp-security -msgid "You must allow this plugin to write to the wp-config.php file on the" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:568 -#@ it-l10n-better-wp-security -msgid "Settings" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:569 -#@ it-l10n-better-wp-security -msgid "page to use this feature." -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:604 -#@ it-l10n-better-wp-security -msgid "Settings Updated" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:617 -#@ it-l10n-better-wp-security -msgid "Error: Could not rename table" -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:617 -#@ it-l10n-better-wp-security -msgid "You may have to rename the table manually." -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:647 -#@ it-l10n-better-wp-security -msgid "Could not update prefix references in options table." -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:667 -#@ it-l10n-better-wp-security -msgid "Could not update prefix references in usermeta table." -msgstr "" - -#: class/MainWPChildIThemesSecurity.class.php:895 -#@ it-l10n-better-wp-security -msgid "The selected lockouts have been cleared." -msgstr "" - -#: class/MainWPChildLinksChecker.class.php:328 -#@ default -msgid "An unexpected error occurred!" -msgstr "" - -#: class/MainWPChildLinksChecker.class.php:402 -#: class/MainWPChildLinksChecker.class.php:435 -#: class/MainWPChildLinksChecker.class.php:469 -#@ default -msgid "Error : link_id not specified" -msgstr "" - -#: class/MainWPChildLinksChecker.class.php:459 -#@ default -msgid "This link was manually marked as working by the user." -msgstr "" - -#: class/MainWPChildServerInformation.class.php:156 -#@ default -msgid "Plugin Conflicts" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:159 -#@ default -msgid "Server Information" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:161 -#@ default -msgid "Cron Schedules" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:163 -#@ default -msgid "Error Log" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:290 -#@ mainwp-child -msgid "Server Configuration" -msgstr "Configuration serveur" - -#: class/MainWPChildServerInformation.class.php:291 -#@ mainwp -msgid "Required Value" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:292 -#@ mainwp -msgid "Value" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:298 -#@ mainwp -msgid "MAINWP CHILD" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:302 -#@ mainwp-child -msgid "WORDPRESS" -msgstr "WordPress" - -#: class/MainWPChildServerInformation.class.php:304 -#@ mainwp-child -msgid "PHP SETTINGS" -msgstr "Réglages PHP" - -#: class/MainWPChildServerInformation.class.php:310 -#@ mainwp-child -msgid "MISC" -msgstr "Divers" - -#: class/MainWPChildServerInformation.class.php:313 -#@ mainwp-child -msgid "MySQL SETTINGS" -msgstr "Réglages MySQL" - -#: class/MainWPChildServerInformation.class.php:315 -#@ mainwp-child -msgid "BACKUP ARCHIVE INFORMATION" -msgstr "Information sur l'archive de sauvegarde" - -#: class/MainWPChildServerInformation.class.php:322 -#@ mainwp -msgid "SERVER INFORMATION" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:323 -#@ mainwp -msgid "WordPress Root Directory" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:324 -#@ mainwp -msgid "Server Name" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:325 -#@ mainwp -msgid "Server Sofware" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:326 -#@ mainwp -msgid "Operating System" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:327 -#@ mainwp -msgid "Architecture" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:328 -#@ mainwp -msgid "Server IP" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:329 -#@ mainwp -msgid "Server Protocol" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:330 -#@ mainwp -msgid "HTTP Host" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:331 -#@ mainwp -msgid "Server Admin" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:332 -#@ mainwp -msgid "Server Port" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:333 -#@ mainwp -msgid "Getaway Interface" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:334 -#@ mainwp -msgid "Memory Usage" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:335 -#@ mainwp -msgid "HTTPS" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:336 -#@ mainwp -msgid "User Agent" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:337 -#@ mainwp -msgid "Complete URL" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:338 -#@ mainwp -msgid "Request Method" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:339 -#@ mainwp -msgid "Request Time" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:340 -#@ mainwp -msgid "Query String" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:341 -#@ mainwp -msgid "Accept Content" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:342 -#@ mainwp -msgid "Accept-Charset Content" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:343 -#@ mainwp -msgid "Currently Executing Script Pathname" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:344 -#@ mainwp -msgid "Server Signature" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:345 -#@ mainwp -msgid "Currently Executing Script" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:346 -#@ mainwp -msgid "Path Translated" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:347 -#@ mainwp -msgid "Current Script Path" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:348 -#@ mainwp -msgid "Current Page URI" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:349 -#@ mainwp -msgid "Remote Address" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:350 -#@ mainwp -msgid "Remote Host" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:351 -#@ mainwp -msgid "Remote Port" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:352 -#@ mainwp -msgid "PHP INFORMATION" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:353 -#@ mainwp -msgid "PHP Safe Mode Disabled" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:354 -#@ mainwp -msgid "PHP Allow URL fopen" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:355 -#@ mainwp -msgid "PHP Exif Support" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:356 -#@ mainwp -msgid "PHP IPTC Support" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:357 -#@ mainwp -msgid "PHP XML Support" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:358 -#@ mainwp -msgid "PHP Disabled Functions" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:359 -#@ mainwp -msgid "PHP Loaded Extensions" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:360 -#@ mainwp -msgid "MySQL INFORMATION" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:361 -#@ mainwp -msgid "MySQL Mode" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:362 -#@ mainwp -msgid "MySQL Client Encoding" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:384 -#@ mainwp -msgid "No functions disabled" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:425 -#@ mainwp -msgid "Next due" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:426 -#@ mainwp -msgid "Schedule" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:427 -#@ mainwp -msgid "Hook" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:608 -#@ default -msgid " MB" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:609 -#: class/MainWPChildServerInformation.class.php:699 -#: class/MainWPChildServerInformation.class.php:734 -#: class/MainWPChildServerInformation.class.php:763 -#@ default -#@ mainwp -msgid "N/A" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:618 -#: class/MainWPChildServerInformation.class.php:632 -#: class/MainWPChildServerInformation.class.php:721 -#@ default -#@ mainwp -msgid "ON" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:619 -#: class/MainWPChildServerInformation.class.php:633 -#: class/MainWPChildServerInformation.class.php:724 -#@ default -#@ mainwp -msgid "OFF" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:627 -#@ default -msgid "NOT SET" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:638 -#: class/MainWPChildServerInformation.class.php:644 -#: class/MainWPChildServerInformation.class.php:650 -#@ default -msgid "YES" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:639 -#: class/MainWPChildServerInformation.class.php:645 -#: class/MainWPChildServerInformation.class.php:651 -#@ default -msgid "NO" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:831 -#@ mainwp -msgid "Time" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:832 -#: class/MainWPChildUpdraftplusBackups.class.php:1283 -#@ mainwp -#@ updraftplus -msgid "Error" -msgstr "" - -#: class/MainWPChildServerInformation.class.php:846 -#@ mainwp -msgid "Error logging disabled." -msgstr "" - -#: class/MainWPChildServerInformation.class.php:864 -#@ mainwp -msgid "MainWP is unable to find your error logs, please contact your host for server error logs." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:272 -#: class/MainWPChildUpdraftplusBackups.class.php:275 -#: class/MainWPChildUpdraftplusBackups.class.php:278 -#, php-format -#@ updraftplus -msgid "Failure: No %s was given." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:272 -#@ updraftplus -msgid "user" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:275 -#@ updraftplus -msgid "host" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:278 -#@ updraftplus -msgid "database name" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:289 -#@ updraftplus -msgid "database connection attempt failed" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:297 -#@ updraftplus -msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:316 -#, php-format -#@ updraftplus -msgid "%s table(s) found." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:322 -#, php-format -#@ updraftplus -msgid "%s total table(s) found; %s with the indicated prefix." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:329 -#@ updraftplus -msgid "Messages:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:340 -#@ updraftplus -msgid "Connection succeeded." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:342 -#@ updraftplus -msgid "Connection failed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:360 -#: class/MainWPChildUpdraftplusBackups.class.php:368 -#@ updraftplus -msgid "Start backup" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:360 -#@ updraftplus -msgid "OK. You should soon see activity in the \"Last log message\" field below." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:429 -#@ updraftplus -msgid "Nothing yet logged" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:454 -#, php-format -#@ updraftplus -msgid "incremental backup; base backup: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:466 -#: class/MainWPChildUpdraftplusBackups.class.php:1659 -#: class/MainWPChildUpdraftplusBackups.class.php:1667 -#: class/MainWPChildUpdraftplusBackups.class.php:2488 -#, php-format -#@ updraftplus -msgid "Warning: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:482 -#@ updraftplus -msgid "Download log file" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:487 -#@ updraftplus -msgid "No backup has been completed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:518 -#: class/MainWPChildUpdraftplusBackups.class.php:582 -#@ updraftplus -msgid "At the same time as the files backup" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:526 -#: class/MainWPChildUpdraftplusBackups.class.php:577 -#: class/MainWPChildUpdraftplusBackups.class.php:590 -#@ updraftplus -msgid "Nothing currently scheduled" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:599 -#@ updraftplus -msgid "Files" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:601 -#: class/MainWPChildUpdraftplusBackups.class.php:1003 -#: class/MainWPChildUpdraftplusBackups.class.php:1366 -#: class/MainWPChildUpdraftplusBackups.class.php:2010 -#@ updraftplus -msgid "Database" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:603 -#@ updraftplus -msgid "Time now" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:634 -#@ updraftplus -msgid "Backup set not found" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:722 -#@ updraftplus -msgid "The backup set has been removed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:723 -#, php-format -#@ updraftplus -msgid "Local archives deleted: %d" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:724 -#, php-format -#@ updraftplus -msgid "Remote archives deleted: %d" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:778 -#@ updraftplus -msgid "Existing Backups" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:933 -#, php-format -#@ updraftplus -msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:958 -#@ updraftplus -msgid "No such backup set exists" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:980 -#, php-format -#@ updraftplus -msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:984 -#@ updraftplus -msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was found in remote storage." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:984 -#@ updraftplus -msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website that was using the same storage location)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:995 -#@ updraftplus -msgid "Only the WordPress database can be restored; you will need to deal with the external database manually." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1008 -#: class/MainWPChildUpdraftplusBackups.class.php:2054 -#, php-format -#@ updraftplus -msgid "Backup created by unknown source (%s) - cannot be restored." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1029 -#, php-format -#@ updraftplus -msgid "File not found (you need to upload it): %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1031 -#, php-format -#@ updraftplus -msgid "File was found, but is zero-sized (you need to re-upload it): %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1036 -#, php-format -#@ updraftplus -msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1051 -#, php-format -#@ updraftplus -msgid "This multi-archive backup set appears to have the following archives missing: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1056 -#@ updraftplus -msgid "The backup archive files have been successfully processed. Now press Restore again to proceed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1058 -#@ updraftplus -msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1060 -#@ updraftplus -msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1082 -#@ mainwp-child -msgid "Restore successful!" -msgstr "La restauration est réussie !" - -#: class/MainWPChildUpdraftplusBackups.class.php:1096 -#@ mainwp-child -msgid "Restore failed..." -msgstr "La restauration a échouée…" - -#: class/MainWPChildUpdraftplusBackups.class.php:1122 -#@ updraftplus -msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1123 -#@ updraftplus -msgid "Backup does not exist in the backup history" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1143 -#@ updraftplus -msgid "Why am I seeing this?" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1162 -#@ updraftplus -msgid "UpdraftPlus Restoration: Progress" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1163 -#@ updraftplus -msgid "Follow this link to download the log file for this restoration (needed for any support requests)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1207 -#@ updraftplus -msgid "ABORT: Could not find the information on which entities to restore." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1208 -#@ updraftplus -msgid "If making a request for support, please include this information:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1235 -#@ updraftplus -msgid "Final checks" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1262 -#@ updraftplus -msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1273 -#, php-format -#@ updraftplus -msgid "Looking for %s archive: file name: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1279 -#@ updraftplus -msgid "File is not locally present - needs retrieving from remote storage" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1285 -#: class/MainWPChildUpdraftplusBackups.class.php:1299 -#: class/MainWPChildUpdraftplusBackups.class.php:1507 -#: class/MainWPChildUpdraftplusBackups.class.php:1541 -#: class/MainWPChildUpdraftplusBackups.class.php:1545 -#@ updraftplus -msgid "OK" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1296 -#@ updraftplus -msgid "Archive is expected to be size:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1301 -#: class/MainWPChildUpdraftplusBackups.class.php:1331 -#@ updraftplus -msgid "Error:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1301 -#@ updraftplus -msgid "file is size:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1304 -#@ updraftplus -msgid "The backup records do not contain information about the proper size of this file." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1307 -#: class/MainWPChildUpdraftplusBackups.class.php:1308 -#@ updraftplus -msgid "Could not find one of the files for restoration" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1354 -#@ mainwp-child -msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup" -msgstr "Il ne faut supprimer aucune archive après décompression, car il n'y a pas de stockage dans le Cloud pour cette sauvegarde" - -#: class/MainWPChildUpdraftplusBackups.class.php:1378 -#@ updraftplus -msgid "Error message" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1386 -#@ updraftplus -msgid "Error data:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1388 -#@ updraftplus -msgid "Please consult this FAQ for help on what to do about it." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1424 -#, php-format -#@ mainwp-child -msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly" -msgstr "Répertoire du thème (%s) non trouvé, mais la version en minuscule existe ; mise à jour de l'option de base de données en conséquence" - -#: class/MainWPChildUpdraftplusBackups.class.php:1433 -#@ mainwp-child -msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme" -msgstr "Le thème actuel n'a pas été trouvé ; pour éviter l'arrêt du site de chargement, votre thème a été réassigné en thème par défaut" - -#: class/MainWPChildUpdraftplusBackups.class.php:1457 -#@ updraftplus -msgid "Delete Old Directories" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1463 -#@ updraftplus -msgid "Remove old directories" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1466 -#@ updraftplus -msgid "Old directories successfully removed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1467 -#@ updraftplus -msgid "Now press Restore again to proceed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1470 -#@ updraftplus -msgid "Old directory removal failed for some reason. You may want to do this manually." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1504 -#: class/MainWPChildUpdraftplusBackups.class.php:1539 -#: class/MainWPChildUpdraftplusBackups.class.php:1548 -#@ updraftplus -msgid "Failed" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1589 -#: class/MainWPChildUpdraftplusBackups.class.php:1591 -#: class/MainWPChildUpdraftplusBackups.class.php:1698 -#: class/MainWPChildUpdraftplusBackups.class.php:1703 -#, php-format -#@ updraftplus -msgid "Error: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1589 -#@ updraftplus -msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1591 -#@ updraftplus -msgid "Decryption failed. The database file is encrypted." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1601 -#@ updraftplus -msgid "Failed to write out the decrypted database to the filesystem." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1606 -#@ updraftplus -msgid "Decryption failed. The most likely cause is that you used the wrong key." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1613 -#, php-format -#@ updraftplus -msgid "The database is too small to be a valid WordPress database (size: %s Kb)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1621 -#@ updraftplus -msgid "Failed to open database file." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1655 -#@ updraftplus -msgid "Backup of:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1655 -#, php-format -#@ updraftplus -msgid "(version: %s)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1659 -#: class/MainWPChildUpdraftplusBackups.class.php:1667 -#@ updraftplus -msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1675 -#, php-format -#@ updraftplus -msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1682 -#, php-format -#@ updraftplus -msgid "The site in this backup was running on a webserver with version %s of %s. " -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1682 -#, php-format -#@ updraftplus -msgid "This is significantly newer than the server which you are now restoring onto (version %s)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1682 -#, php-format -#@ updraftplus -msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1682 -#, php-format -#@ updraftplus -msgid "Any support requests to do with %s should be raised with your web hosting company." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1690 -#@ updraftplus -msgid "Backup label:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1698 -#@ updraftplus -msgid "You are running on WordPress multisite - but your backup is not of a multisite site." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1703 -#@ updraftplus -msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1707 -#@ updraftplus -msgid "Warning:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1707 -#@ updraftplus -msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1707 -#@ updraftplus -msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1713 -#@ updraftplus -msgid "Site information:" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1748 -#, php-format -#@ updraftplus -msgid "This database backup is missing core WordPress tables: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1753 -#@ updraftplus -msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1768 -#, php-format -#@ updraftplus -msgid "Your web server's PHP installation has these functions disabled: %s." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1768 -#, php-format -#@ updraftplus -msgid "Your hosting company must enable these functions before %s can work." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1768 -#@ updraftplus -msgid "restoration" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1788 -#@ updraftplus -msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1795 -#: class/MainWPChildUpdraftplusBackups.class.php:1817 -#@ updraftplus -msgid "The attempt to undo the double-compression failed." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1819 -#@ updraftplus -msgid "The attempt to undo the double-compression succeeded." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1838 -#@ updraftplus -msgid "You have not yet made any backups." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1854 -#@ updraftplus -msgid "Backup date" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1855 -#@ updraftplus -msgid "Backup data (click to download)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1974 -#@ updraftplus -msgid "(backup set imported from remote storage)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1977 -#@ updraftplus -msgid "After pressing this button, you will be given the option to choose which components you wish to restore" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1979 -#: class/MainWPClone.class.php:218 -#: class/MainWPClone.class.php:1406 -#@ updraftplus -#@ mainwp-child -msgid "Restore" -msgstr "Restaurer" - -#: class/MainWPChildUpdraftplusBackups.class.php:1988 -#@ updraftplus -msgid "Delete this backup set" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1994 -#@ updraftplus -msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:1994 -#@ updraftplus -msgid "(Not finished)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2004 -#: class/MainWPChildUpdraftplusBackups.class.php:2053 -#@ updraftplus -msgid "unknown source" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2010 -#, php-format -#@ updraftplus -msgid "Database (created by %s)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2012 -#@ updraftplus -msgid "External database" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2051 -#, php-format -#@ updraftplus -msgid "Backup created by: %s." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2057 -#, php-format -#@ updraftplus -msgid "Files and database WordPress backup (created by %s)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2057 -#, php-format -#@ updraftplus -msgid "Files backup (created by %s)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2080 -#@ updraftplus -msgid "Press here to download" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2086 -#, php-format -#@ updraftplus -msgid "(%d archive(s) in set)." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2089 -#@ updraftplus -msgid "You appear to be missing one or more archives from this multi-archive set." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2136 -#@ updraftplus -msgid "View Log" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2325 -#@ updraftplus -msgid "The backup apparently succeeded and is now complete" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2354 -#@ updraftplus -msgid "Backup begun" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2359 -#@ updraftplus -msgid "Creating file backup zips" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2372 -#@ updraftplus -msgid "Created file backup zips" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2378 -#@ updraftplus -msgid "Uploading files to remote storage" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2385 -#, php-format -#@ updraftplus -msgid "(%s%%, file %s of %s)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2390 -#@ updraftplus -msgid "Pruning old backup sets" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2394 -#@ updraftplus -msgid "Waiting until scheduled time to retry because of errors" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2399 -#@ updraftplus -msgid "Backup finished" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2413 -#@ updraftplus -msgid "Created database backup" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2424 -#@ updraftplus -msgid "Creating database backup" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2426 -#, php-format -#@ updraftplus -msgid "table: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2439 -#@ updraftplus -msgid "Encrypting database" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2447 -#@ updraftplus -msgid "Encrypted database" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2449 -#@ updraftplus -msgid "Unknown" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2466 -#, php-format -#@ updraftplus -msgid "next resumption: %d (after %ss)" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2467 -#, php-format -#@ updraftplus -msgid "last activity: %ss ago" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2478 -#, php-format -#@ updraftplus -msgid "Job ID: %s" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2481 -#@ updraftplus -msgid "show log" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2483 -#@ updraftplus -msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2483 -#@ updraftplus -msgid "delete schedule" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2522 -#@ updraftplus -msgid "Job deleted" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2529 -#@ updraftplus -msgid "Could not find that job - perhaps it has already finished?" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2562 -#@ updraftplus -msgid "Error: unexpected file read fail" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2569 -#: class/MainWPChildUpdraftplusBackups.class.php:2573 -#@ updraftplus -msgid "The log file could not be read." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2590 -#@ updraftplus -msgid "Download failed" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2608 -#@ updraftplus -msgid "File ready." -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2618 -#@ updraftplus -msgid "Download in progress" -msgstr "" - -#: class/MainWPChildUpdraftplusBackups.class.php:2621 -#@ updraftplus -msgid "No local copy present." -msgstr "" - -#: class/MainWPClone.class.php:18 -#@ mainwp-child -msgid " Clone" -msgstr "Cloner" - -#: class/MainWPClone.class.php:27 -#@ mainwp-child -msgid " Restore" -msgstr "Restaurer" - -#: class/MainWPClone.class.php:92 -#: class/MainWPClone.class.php:205 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Le fichier ne peut pas être téléchargé." - -#: class/MainWPClone.class.php:97 -#: class/MainWPClone.class.php:210 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Le fichier est vide. Merci de télécharger quelque chose de plus substantiel. Cette erreur peut aussi être causée par les téléchargements désactivés dans votre fichier php.ini ou par post_max_size étant défini comme plus petit que upload_max_filesize dans php.ini." - -#: class/MainWPClone.class.php:106 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Cloner ou restaurer" - -#: class/MainWPClone.class.php:110 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Le clonage est actuellement désactivé - Pour activer retournez à votre tableau de bord principale et activez le clonage sur la page Migration/clonage." - -#: class/MainWPClone.class.php:118 -#: class/MainWPClone.class.php:224 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Votre répertoire de contenu n'est pas accessible en écriture. Merci de mettre les droits 0755 pour " - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click " -msgstr "Processus de clonage réussi ! Vous devrez maintenant cliquez sur " - -#: class/MainWPClone.class.php:122 -#: class/MainWPClone.class.php:228 -#: class/MainWPClone.class.php:1382 -#: class/MainWPClone.class.php:1411 -#@ mainwp-child -msgid "here" -msgstr "ici" - -#: class/MainWPClone.class.php:122 -#: class/MainWPClone.class.php:228 -#: class/MainWPClone.class.php:1411 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "de re-connexion à l'admin et réenregistrer les permaliens WiordPress." - -#: class/MainWPClone.class.php:127 -#: class/MainWPClone.class.php:233 -#@ mainwp-child -msgid "Upload successful." -msgstr "Téléchargement réussi." - -#: class/MainWPClone.class.php:127 -#: class/MainWPClone.class.php:178 -#: class/MainWPClone.class.php:404 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Cloner/restaurer le site web" - -#: class/MainWPClone.class.php:138 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Le clonage est actuellement actif, mais aucun sites n'ont été autorisés, pour autoriser des sites retournez à votre tableau de bord principal et activez sur le clonage sur la page Migration/clonage." - -#: class/MainWPClone.class.php:146 -#@ mainwp-child -msgid "Display by:" -msgstr "Afficher par :" - -#: class/MainWPClone.class.php:146 -#@ mainwp-child -msgid "Site Name" -msgstr "Nom du site" - -#: class/MainWPClone.class.php:146 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:146 -#@ mainwp-child -msgid "Clone Options" -msgstr "Options de clonage" - -#: class/MainWPClone.class.php:163 -#@ mainwp-child -msgid "Clone Website" -msgstr "Cloner le site web" - -#: class/MainWPClone.class.php:173 -#: class/MainWPClone.class.php:218 -#@ mainwp-child -msgid "Option 1:" -msgstr "Option 1 :" - -#: class/MainWPClone.class.php:173 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Restaurer / cloner depuis sauvegarde" - -#: class/MainWPClone.class.php:175 -#: class/MainWPClone.class.php:242 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Télécharger la sauvegarde au format .zip (taille maximum selon les paramètres de serveur) : " - -#: class/MainWPClone.class.php:176 -#: class/MainWPClone.class.php:243 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Si vous avez une sauvegarde complète créée par votre tableau de bord Réseau, vous pouvez restaurer en téléchargeant ici." - -#: class/MainWPClone.class.php:177 -#: class/MainWPClone.class.php:244 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Une base de données de sauvegarde ne fonctionnera pas." - -#: class/MainWPClone.class.php:228 -#: class/MainWPClone.class.php:1411 -#@ mainwp-child -msgid "Restore process completed successfully! You will now need to click " -msgstr "Processus de restauration terminé avec succès ! Vous devrez maintenant cliquez sur " - -#: class/MainWPClone.class.php:233 -#: class/MainWPClone.class.php:245 -#@ mainwp-child -msgid "Restore Website" -msgstr "Restaurer le site web" - -#: class/MainWPClone.class.php:289 -#@ mainwp-child -msgid "Option 2:" -msgstr "Option 2 :" - -#: class/MainWPClone.class.php:289 -#@ mainwp-child -msgid "Restore/Clone From Server" -msgstr "Restaurer/cloner depuis le serveur" - -#: class/MainWPClone.class.php:290 -#@ mainwp-child -msgid "If you have uploaded a FULL backup to your server (via FTP or other means) you can use this section to locate the zip file and select it. A database only backup will not work." -msgstr "Si vous avez téléchargé une sauvegarde complète de votre serveur (via FTP ou d'autres moyens), vous pouvez utiliser cette section pour localiser le fichier zip et le sélectionner. Une sauvegarde de base de données seule ne fonctionnera pas." - -#: class/MainWPClone.class.php:293 -#@ mainwp-child -msgid "Root directory is not readable. Please contact with site administrator to correct." -msgstr "Le répertoire racine n'est pas lisible. Merci de contacter l'administrateur du site pour correctif." - -#: class/MainWPClone.class.php:309 -#@ mainwp -msgid "Current Directory: " -msgstr "" - -#: class/MainWPClone.class.php:311 -#@ mainwp -msgid "Site Root" -msgstr "" - -#: class/MainWPClone.class.php:312 -#: class/MainWPStreamConnectorBackups.class.php:38 -#@ mainwp -#@ default -msgid "Backup" -msgstr "" - -#: class/MainWPClone.class.php:314 -#@ mainwp -msgid "Uploads Folder" -msgstr "" - -#: class/MainWPClone.class.php:315 -#@ mainwp -msgid "Content Folder" -msgstr "" - -#: class/MainWPClone.class.php:328 -#@ mainwp -msgid "Quick Jump:" -msgstr "" - -#: class/MainWPClone.class.php:357 -#@ mainwp-child -msgid "Select File" -msgstr "Sélectionner fichier" - -#: class/MainWPClone.class.php:362 -#@ mainwp -msgid "Parent Folder" -msgstr "" - -#: class/MainWPClone.class.php:482 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Ceci est un gros site (%d MB), le processus de restauration sera plus que probablement sûr." - -#: class/MainWPClone.class.php:483 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Continuer ?" - -#: class/MainWPClone.class.php:484 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Création de la sauvegarde de %s, taille attendue : %d MB (temps estimé : %d secondes)" - -#: class/MainWPClone.class.php:485 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Sauvegarde créée sur la taille totale de %s à télécharger :%d MB" - -#: class/MainWPClone.class.php:486 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Téléchargement sauvegarde" - -#: class/MainWPClone.class.php:487 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Sauvegarde téléchargée" - -#: class/MainWPClone.class.php:488 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Extraction de sauvegarde et de mise à jour de votre base de données, cela pourrait prendre un certain temps. Merci d'être patient." - -#: class/MainWPClone.class.php:489 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Processus de clonage terminé avec succès !" - -#: class/MainWPClone.class.php:1031 -#: class/MainWPClone.class.php:1069 -#@ mainwp-child -msgid "No site given" -msgstr "Pas de site donné" - -#: class/MainWPClone.class.php:1036 -#: class/MainWPClone.class.php:1074 -#: class/MainWPClone.class.php:1110 -#@ mainwp-child -msgid "Site not found" -msgstr "Site non trouvé" - -#: class/MainWPClone.class.php:1049 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Impossible de créer le fichier de sauvegarde sur site client" - -#: class/MainWPClone.class.php:1085 -#@ mainwp-child -msgid "Invalid response" -msgstr "Réponse invalide" - -#: class/MainWPClone.class.php:1101 -#@ mainwp-child -msgid "No download link given" -msgstr "Aucun lien de téléchargement donné" - -#: class/MainWPClone.class.php:1204 -#: class/MainWPClone.class.php:1239 -#@ mainwp-child -msgid "No download file found" -msgstr "Aucun fichier de téléchargement trouvé" - -#: class/MainWPClone.class.php:1245 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Fichier de sauvegarde non trouvé" - -#: class/MainWPClone.class.php:1382 -#@ mainwp-child -msgid "Restore process completed successfully! Check and re-save permalinks " -msgstr "Processus de restauration terminé avec succès ! Vérifiez et re-enregistrer les permaliens WordPress " - -#: class/MainWPClone.class.php:1382 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Processus de clonage réussi ! Vérifiez et re-enregistrer permaliens WordPress " - -#: class/MainWPClone.class.php:1408 -#@ mainwp-child -msgid "Be sure to use a FULL backup created by your Network dashboard, if critical folders are excluded it may result in a not working installation." -msgstr "Veillez à utiliser une sauvegarde complète créée par votre tableau de bord Réseau, si les dossiers critiques sont exclus, il peut en résulter une installation non fonctionnelle." - -#: class/MainWPClone.class.php:1409 -#@ mainwp-child -msgid "Start Restore" -msgstr "Démarrer la restauration" - -#: class/MainWPClone.class.php:1409 -#@ mainwp-child -msgid "CAUTION: this will overwrite your existing site." -msgstr "ATTENTION : cette action écrasera votre site existant." - -#: class/MainWPClone.class.php:1415 -#@ mainwp-child -msgid "Restore process completed successfully!" -msgstr "Processus de restauration terminé avec succès !" - -#: class/MainWPCloneInstall.class.php:106 -#: class/MainWPCloneInstall.class.php:107 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Ce n'est pas une sauvegarde complète." - -#: class/MainWPCloneInstall.class.php:108 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Sauvegarde de base de données introuvable." - -#: class/MainWPCloneInstall.class.php:154 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Impossible de lire le fichier de configuration de la sauvegarde" - -#: class/MainWPCloneInstall.class.php:169 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Hôte de base de données non valide ou l'utilisateur / mot de passe." - -#: class/MainWPCloneInstall.class.php:172 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Nom de base de données non valide" - -#: class/MainWPCloneInstall.class.php:315 -#: class/MainWPCloneInstall.class.php:420 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Erreur : fin de fichier inattendue pour la base de données" - -#: class/MainWPCloneInstall.class.php:415 -#@ mainwp-child -msgid "Error importing database" -msgstr "Erreur d'importation de la base de données" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "" - -#: class/MainWPHelper.class.php:484 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Impossible de créer le répertoire " - -#: class/MainWPHelper.class.php:484 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Le répertoire parent est-il inscriptible sur le serveur ?" - -#: class/MainWPHelper.class.php:678 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Quelque chose à dysfonctionné lors de la connexion avec le site client. Merci de vérifier si il y a une erreur sur le site client. Cette erreur peut aussi être causée par un essai de clonage ou de restauration d'un site trop important pour vos paramètres serveur." - -#: class/MainWPHelper.class.php:682 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "L'extension MainWP client est désactivée ou la clé de sécurité est incorrecte. Merci de resynchroniser avec votre installation principale." - -#: class/MainWPStreamConnectorBackups.class.php:28 -#: class/MainWPStreamConnectorBackups.class.php:49 -#@ default -#@ mainwp-child -msgid "MainWP Backups" -msgstr "Sauvegardes MainWP" - -#: class/MainWPStreamConnectorSucuri.class.php:28 -#: class/MainWPStreamConnectorSucuri.class.php:49 -#@ default -msgid "MainWP Sucuri" -msgstr "" - -#: class/MainWPStreamConnectorSucuri.class.php:38 -#@ default -msgid "Scan" -msgstr "" - -#: class/MainWPStreamConnectorSucuri.class.php:71 -#@ mainwp-child -msgid "Sucuri scan success" -msgstr "L'analyse Sucuri est réussie" - -#: class/MainWPStreamConnectorSucuri.class.php:74 -#@ mainwp-child -msgid "Sucuri scan failed" -msgstr "L'analyse Sucuri a échouée" - -#: class/MainWPWordpressSEO.class.php:59 -#: class/MainWPWordpressSEO.class.php:111 -#: class/MainWPWordpressSEO.class.php:116 -#: class/MainWPWordpressSEO.class.php:122 -#: class/MainWPWordpressSEO.class.php:128 -#@ wordpress-seo -msgid "Settings could not be imported:" -msgstr "" - -#: class/MainWPWordpressSEO.class.php:122 -#, php-format -#@ wordpress-seo -msgid "Unzipping failed with error \"%s\"." -msgstr "" - -#: class/MainWPWordpressSEO.class.php:128 -#@ wordpress-seo -msgid "Upload failed." -msgstr "" - +msgid "" +msgstr "" +"Project-Id-Version: MainWP Child\n" +"POT-Creation-Date: 2024-11-20 19:20+0100\n" +"PO-Revision-Date: 2024-11-20 19:22+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-Flags-xgettext: --add-comments=translators:\n" +"X-Poedit-WPHeader: mainwp-child.php\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.min.js\n" +"X-Poedit-SearchPathExcluded-1: libs/phpseclib/vendor\n" + +#: class/class-mainwp-backup.php:192 +msgid "Another backup process is running. Please, try again later." +msgstr "" +"Un autre processus de sauvegarde est en cours d’exécution. Réessayer plus " +"tard." + +#: class/class-mainwp-child-actions.php:353 +#, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" +msgid "Installed %1$s: %2$s %3$s" +msgstr "Installé %1$s : %2$s %3$s" + +#: class/class-mainwp-child-actions.php:368 +#, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" +msgid "Updated %1$s: %2$s %3$s" +msgstr "Mise à jour %1$s : %2$s %3$s" + +#: class/class-mainwp-child-actions.php:463 +#: class/class-mainwp-child-actions.php:490 +#: class/class-mainwp-child-actions.php:587 +msgid "network wide" +msgstr "réseau entier" + +#: class/class-mainwp-child-actions.php:471 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin activated %2$s" +msgstr "Extension « %1$s » activée %2$s" + +#: class/class-mainwp-child-actions.php:494 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin deactivated %2$s" +msgstr "Extension « %1$s » desactivée %2$s" + +#: class/class-mainwp-child-actions.php:513 +#, php-format +msgid "\"%s\" theme activated" +msgstr "Thème \"%s\" activé" + +#: class/class-mainwp-child-actions.php:544 +#, php-format +msgid "\"%s\" theme deleted" +msgstr "Thème \"%s\" supprimé" + +#: class/class-mainwp-child-actions.php:590 +#, php-format +msgid "\"%s\" plugin deleted" +msgstr "L’extension « %s » a été supprimée" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:622 +#: class/class-mainwp-child-actions.php:650 +#, php-format +msgid "WordPress auto-updated to %s" +msgstr "WordPress mis à jour automatiquement pour %s" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:653 +#, php-format +msgid "WordPress updated to %s" +msgstr "WordPress mis à jour vers %s" + +# @ default +# @ mainwp +#: class/class-mainwp-child-actions.php:893 +#: class/class-mainwp-child-server-information-base.php:513 +#: class/class-mainwp-child-server-information-base.php:662 +msgid "N/A" +msgstr "N/A" + +#: class/class-mainwp-child-back-up-buddy.php:356 +msgid "Please install the BackupBuddy plugin on the child site." +msgstr "Veuillez installer l'extension BackupBuddy sur le site client." + +#: class/class-mainwp-child-back-up-buddy.php:541 +#: class/class-mainwp-child-back-up-wordpress.php:594 +#: class/class-mainwp-child-bulk-settings-manager.php:279 +msgid "Invalid data. Please check and try again." +msgstr "Données non valides. Vérifier et essayer à nouveau." + +#: class/class-mainwp-child-back-up-buddy.php:720 +msgid "Remote destination settings were not reset." +msgstr "Les paramètres de destination distante n'ont pas été réinitialisés." + +#: class/class-mainwp-child-back-up-buddy.php:729 +msgid "Plugin settings have been reset to defaults." +msgstr "Le réglages ont été réinitialisées aux valeurs par défaut." + +#: class/class-mainwp-child-back-up-buddy.php:768 +msgid "Never" +msgstr "Jamais" + +# @ updraftplus +#: class/class-mainwp-child-back-up-buddy.php:773 +#: class/class-mainwp-child-updraft-plus-backups.php:398 +#: class/class-mainwp-child-updraft-plus-backups.php:3848 +msgid "Unknown" +msgstr "Inconnu" + +#: class/class-mainwp-child-back-up-buddy.php:830 +msgid "" +"Only run for main site or standalone. Multisite subsites do not allow " +"schedules" +msgstr "" +"Ne s'applique qu'au site principal ou au site autonome. Les sous-sites " +"multisites ne permettent pas d'établir des calendriers" + +#: class/class-mainwp-child-back-up-buddy.php:836 +msgid "Error: not found the backup schedule or invalid data" +msgstr "" +"Erreur : le plan de sauvegarde n'a pas été trouvé ou les données ne sont pas " +"valides" + +#: class/class-mainwp-child-back-up-buddy.php:839 +msgid "" +"Note: If there is no site activity there may be delays between steps in the " +"backup. Access the site or use a 3rd party service, such as a free pinging " +"service, to generate site activity." +msgstr "" +"Remarque: S'il n'y a pas d'activité sur le site, il peut y avoir des retards " +"entre les étapes de la sauvegarde. Accédez au site ou utilisez un service " +"tiers, tel qu'un service de ping gratuit, pour générer une activité sur le " +"site." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:864 +msgid "Invalid schedule data" +msgstr "Requête invalide" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:904 +msgid "Invalid profile data" +msgstr "Requête invalide" + +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "Backup Status" +msgstr "État de la sauvegarde" + +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "View Details" +msgstr "Voir les détails" + +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +msgid "View Backup Log" +msgstr "Afficher le journal des sauvegardes" + +# @ updraftplus +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +#: class/class-mainwp-child-updraft-plus-backups.php:3416 +msgid "View Log" +msgstr "Afficher le journal" + +#: class/class-mainwp-child-back-up-buddy.php:1755 +#: class/class-mainwp-child-back-up-buddy.php:1980 +msgid "Unable to access fileoptions data file." +msgstr "Impossible d'accéder au fichier de données fileoptions." + +#: class/class-mainwp-child-back-up-buddy.php:1778 +msgid "Backup Process Technical Details" +msgstr "Processus de sauvegarde Détails techniques" + +#: class/class-mainwp-child-back-up-buddy.php:1863 +msgid "Empty schedule ids" +msgstr "Identifiants d'horaires vides" + +#: class/class-mainwp-child-back-up-buddy.php:2040 +msgid "Integrity Test" +msgstr "Essai d'intégrité" + +# @ backupwordpress +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2041 +#: class/class-mainwp-child-back-up-wordpress.php:903 +#: class/class-mainwp-child-ithemes-security.php:949 +#: class/class-mainwp-child-ithemes-security.php:958 +#: class/class-mainwp-child-server-information.php:428 +msgid "Status" +msgstr "Statut" + +#: class/class-mainwp-child-back-up-buddy.php:2152 +msgid "Backup Steps" +msgstr "Etapes Sauvegarde" + +# @ mainwp +#: class/class-mainwp-child-back-up-buddy.php:2153 +#: class/class-mainwp-child-server-information.php:1078 +msgid "Time" +msgstr "Heure" + +#: class/class-mainwp-child-back-up-buddy.php:2154 +msgid "Attempts" +msgstr "Tentatives" + +#: class/class-mainwp-child-back-up-buddy.php:2158 +msgid "No step statistics were found for this backup." +msgstr "Aucune statistique d'étape n'a été trouvée pour cette sauvegarde." + +#: class/class-mainwp-child-back-up-buddy.php:2298 +#: class/class-mainwp-child-back-up-buddy.php:2328 +msgid "" +"Fatal Error #4344443: Backup failure. Please see any errors listed in the " +"Status Log for details." +msgstr "" +"Erreur irrécupérable N°4344443 : échec de la sauvegarde. Consulter les " +"erreurs répertoriées dans le journal d'état pour plus de détails." + +#: class/class-mainwp-child-back-up-buddy.php:2570 +msgid "Nothing has been logged." +msgstr "Rien n’est encore connecté." + +#: class/class-mainwp-child-back-up-buddy.php:2700 +msgid "Malware Scan URL" +msgstr "URL de scan Malware" + +#: class/class-mainwp-child-back-up-buddy.php:2710 +msgid "" +"ERROR: You are currently running your site locally. Your site must be " +"internet accessible to scan." +msgstr "" +"ERREUR: Vous utilisez actuellement votre site localement. Votre site doit " +"être accessible sur Internet pour numériser." + +#: class/class-mainwp-child-back-up-buddy.php:2744 +msgid "ERROR #24452. Unable to load Malware Scan results. Details:" +msgstr "" +"ERREUR # 24452. Impossible de charger les résultats de l'analyse des " +"programmes malveillants. Détails:" + +#: class/class-mainwp-child-back-up-buddy.php:2754 +msgid "An error was encountered attempting to scan this site." +msgstr "Une erreur s'est produite lors de la tentative d'analyse de ce site." + +#: class/class-mainwp-child-back-up-buddy.php:2755 +msgid "" +"An internet connection is required and this site must be accessible on the " +"public internet." +msgstr "" +"Une connexion Internet est requise et ce site doit être accessible sur " +"Internet." + +#: class/class-mainwp-child-back-up-buddy.php:2788 +#: class/class-mainwp-child-back-up-buddy.php:2813 +#: class/class-mainwp-child-back-up-buddy.php:2830 +#: class/class-mainwp-child-back-up-buddy.php:2839 +#: class/class-mainwp-child-back-up-buddy.php:2848 +#: class/class-mainwp-child-back-up-buddy.php:2857 +#: class/class-mainwp-child-back-up-buddy.php:2866 +#: class/class-mainwp-child-back-up-buddy.php:2881 +#: class/class-mainwp-child-back-up-buddy.php:2890 +#: class/class-mainwp-child-back-up-buddy.php:2899 +#: class/class-mainwp-child-back-up-buddy.php:2908 +#: class/class-mainwp-child-back-up-buddy.php:2917 +#: class/class-mainwp-child-back-up-buddy.php:2932 +#: class/class-mainwp-child-back-up-buddy.php:2946 +#: class/class-mainwp-child-back-up-buddy.php:2960 +#: class/class-mainwp-child-back-up-buddy.php:2974 +#: class/class-mainwp-child-back-up-buddy.php:2988 +msgid "none" +msgstr "aucune" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "Warning: Possible Malware Detected!" +msgstr "Attention : un fichier malicieux à été détecté !" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "See details below." +msgstr "Voir les détails ci-dessous." + +#: class/class-mainwp-child-back-up-buddy.php:2804 +#: class/class-mainwp-child-back-up-buddy.php:2822 +#: class/class-mainwp-child-back-up-buddy.php:2925 +#: class/class-mainwp-child-back-up-buddy.php:2939 +#: class/class-mainwp-child-back-up-buddy.php:2953 +#: class/class-mainwp-child-back-up-buddy.php:2967 +#: class/class-mainwp-child-back-up-buddy.php:2981 +msgid "Click to toggle" +msgstr "Cliquez ici pour basculer" + +#: class/class-mainwp-child-back-up-buddy.php:2805 +msgid "Malware Detection" +msgstr "Virus/Malware détecté" + +#: class/class-mainwp-child-back-up-buddy.php:2807 +msgid "Malware" +msgstr "Malware" + +#: class/class-mainwp-child-back-up-buddy.php:2823 +msgid "Web server details" +msgstr "Détails du serveur web" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:2825 +msgid "Site" +msgstr "Site" + +#: class/class-mainwp-child-back-up-buddy.php:2834 +msgid "Hostname" +msgstr "Nom d'hôte" + +#: class/class-mainwp-child-back-up-buddy.php:2843 +msgid "IP Address" +msgstr "Adresse IP" + +#: class/class-mainwp-child-back-up-buddy.php:2852 +msgid "System details" +msgstr "Détails du système" + +#: class/class-mainwp-child-back-up-buddy.php:2861 +msgid "Information" +msgstr "Information" + +#: class/class-mainwp-child-back-up-buddy.php:2874 +msgid "Web application" +msgstr "Application Web" + +#: class/class-mainwp-child-back-up-buddy.php:2876 +msgid "Details" +msgstr "Détails" + +#: class/class-mainwp-child-back-up-buddy.php:2885 +msgid "Versions" +msgstr "Versions" + +#: class/class-mainwp-child-back-up-buddy.php:2894 +msgid "Notices" +msgstr "Notifications" + +#: class/class-mainwp-child-back-up-buddy.php:2903 +msgid "Errors" +msgstr "Erreurs" + +#: class/class-mainwp-child-back-up-buddy.php:2912 +msgid "Warnings" +msgstr "Avertissements" + +#: class/class-mainwp-child-back-up-buddy.php:2926 +msgid "Links" +msgstr "Liens" + +#: class/class-mainwp-child-back-up-buddy.php:2940 +msgid "Local Javascript" +msgstr "Javascript Local" + +#: class/class-mainwp-child-back-up-buddy.php:2954 +msgid "External Javascript" +msgstr "Javascript externe" + +#: class/class-mainwp-child-back-up-buddy.php:2968 +msgid "Iframes Included" +msgstr "Iframes Inclus" + +#: class/class-mainwp-child-back-up-buddy.php:2982 +msgid " Blacklisting Status" +msgstr " État de liste noire" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3027 +msgid "Database Backup" +msgstr "Sauvegarde des bases de données" + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3028 +msgid "Full Backup" +msgstr "Sauvegarde complète" + +# @ default +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3029 +msgid "Plugins Backup" +msgstr "Sauvegarde Plugins" + +#: class/class-mainwp-child-back-up-buddy.php:3030 +msgid "Themes Backup" +msgstr "Sauvegarde de thèmes" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "Verifying everything is up to date before Snapshot" +msgstr "Vérification de tout est à jour avant l'instantané" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "" +"Please wait while we verify your backup is completely up to date before we " +"create the Snapshot. This may take a few minutes..." +msgstr "" +"Patienter pendant que nous vérifions que la sauvegarde est complètement à " +"jour avant de créer l’instantané. Cela peut prendre quelques minutes…" + +#: class/class-mainwp-child-back-up-buddy.php:3265 +msgid "" +"Live File Backup paused. It may take a moment for current processes to " +"finish." +msgstr "" +"Live File Backup mis en veille. Cela peut prendre un moment pour que les " +"processus en cours se terminent." + +#: class/class-mainwp-child-back-up-buddy.php:3268 +msgid "Unpaused but not running now." +msgstr "Non interrompu mais ne fonctionne pas maintenant." + +#: class/class-mainwp-child-back-up-buddy.php:3277 +msgid "Live File Backup has resumed." +msgstr "La sauvegarde de fichiers en direct a repris." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3284 +msgid "Live Database Backup paused." +msgstr "Sauvegarde de base de données Live en pause." + +# @ mainwp-child +#: class/class-mainwp-child-back-up-buddy.php:3290 +msgid "Live Database Backup resumed." +msgstr "La sauvegarde de la base de données a repris." + +#: class/class-mainwp-child-back-up-buddy.php:3646 +msgid "" +"An unknown server error occurred. Please try to license your products again " +"at another time." +msgstr "" +"Une erreur de serveur inconnue s'est produite. Veuillez essayer de " +"reconfigurer vos produits à un autre moment." + +#: class/class-mainwp-child-back-up-buddy.php:3667 +msgid "Your product subscription has expired" +msgstr "Votre abonnement au produit a expiré" + +#: class/class-mainwp-child-back-up-buddy.php:3674 +msgid "Successfully licensed %l." +msgstr "Enregistrement réussi %l." + +#: class/class-mainwp-child-back-up-buddy.php:3680 +#: class/class-mainwp-child-back-up-buddy.php:3687 +#, php-format +msgid "Unable to license %1$s. Reason: %2$s" +msgstr "Impossible d'accorder une licence à %1$s. Raison: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3731 +msgid "" +"An unknown server error occurred. Please try to remove licenses from your " +"products again at another time." +msgstr "" +"Une erreur de serveur inconnue s'est produite. Veuillez essayer de retirer " +"les licences de vos produits à un autre moment." + +#: class/class-mainwp-child-back-up-buddy.php:3753 +msgid "Unknown server error." +msgstr "Erreur de serveur inconnue." + +#: class/class-mainwp-child-back-up-buddy.php:3758 +msgid "Successfully removed license from %l." +msgid_plural "Successfully removed licenses from %l." +msgstr[0] "Licence supprimée avec succès à partir de% l." +msgstr[1] "Licences supprimées avec succès à partir de% l." + +#: class/class-mainwp-child-back-up-buddy.php:3764 +#, php-format +msgid "Unable to remove license from %1$s. Reason: %2$s" +msgstr "Impossible de supprimer la licence de %1$s. Raison: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3791 +msgid "" +"Incorrect password. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Mot de passe incorrect. S'il vous plaît assurez-vous que vous fournissez " +"votre nom d'utilisateur et mot de passe iThemes adhésion." + +#: class/class-mainwp-child-back-up-buddy.php:3795 +msgid "" +"Invalid username. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Nom d'utilisateur invalide. S'il vous plaît assurez-vous que vous fournissez " +"votre nom d'utilisateur et mot de passe iThemes adhésion." + +#: class/class-mainwp-child-back-up-buddy.php:3798 +#, php-format +msgid "" +"The licensing server reports that the %1$s (%2$s) product is unknown. Please " +"contact support for assistance." +msgstr "" +"Le serveur de licences signale que le produit %1$s (%2$s) est inconnu. " +"Veuillez contacter le support pour obtenir de l'aide." + +#: class/class-mainwp-child-back-up-buddy.php:3801 +#, php-format +msgid "" +"%1$s could not be licensed since the membership account is out of available " +"licenses for this product. You can unlicense the product on other sites or " +"upgrade your membership to one with a higher number of licenses in order to " +"increase the amount of available licenses." +msgstr "" +"%1$s n'a pas pu être concédé sous licence, car le compte d'adhésion ne " +"dispose plus de licences disponibles pour ce produit. Vous pouvez obtenir la " +"licence du produit sur d'autres sites ou mettre à niveau votre abonnement " +"avec un nombre de licences plus élevé afin d'augmenter le nombre de licences " +"disponibles." + +#: class/class-mainwp-child-back-up-buddy.php:3804 +#, php-format +msgid "" +"%1$s could not be licensed due to an internal error. Please try to license " +"%2$s again at a later time. If this problem continues, please contact " +"iThemes support." +msgstr "" +"%1$s n’a pas pu être activé sous licence en raison d’une erreur interne. " +"Veuillez réessayer d’obtenir une licence %2$s ultérieurement. Si ce problème " +"persiste, veuillez contacter le support iThemes." + +#: class/class-mainwp-child-back-up-buddy.php:3812 +#, php-format +msgid "" +"An unknown error relating to the %1$s product occurred. Please contact " +"iThemes support. Error details: %2$s" +msgstr "" +"Une erreur inconnue relative au produit %1$s s'est produite. Veuillez " +"contacter le support iThemes. Détails de l'erreur: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3814 +#, php-format +msgid "" +"An unknown error occurred. Please contact iThemes support. Error details: %s" +msgstr "" +"Une erreur inconnue est survenue. Veuillez contacter le support iThemes. " +"Détails de l'erreur: %s" + +#: class/class-mainwp-child-back-up-wordpress.php:492 +msgid "Error while trying to trigger the schedule" +msgstr "Erreur lors de la tentative de déclenchement de la planification" + +# @ mainwp-backupwordpress-extension +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:639 +#: class/class-mainwp-child-back-up-wordpress.php:899 +msgid "Size" +msgstr "Taille" + +# @ mainwp-backupwordpress-extension +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:640 +#: class/class-mainwp-child-back-up-wordpress.php:902 +msgid "Type" +msgstr "Type" + +# @ mainwp-backupwordpress-extension +# @ updraftplus +#: class/class-mainwp-child-back-up-wordpress.php:641 +#: class/class-mainwp-child-updraft-plus-backups.php:3055 +msgid "Actions" +msgstr "Actions" + +# @ mainwp-backupwordpress-extension +#: class/class-mainwp-child-back-up-wordpress.php:657 +msgid "This is where your backups will appear once you have some." +msgstr "" +"Vos sauvegardes apparaîtront à cet endroit à chaque fois qu'elles seront " +"prêtes à être téléchargées." + +# @ mainwp-backupwordpress-extension +#: class/class-mainwp-child-back-up-wordpress.php:678 +#: class/class-mainwp-child-back-up-wordpress.php:683 +msgid "Backups will be compressed and should be smaller than this." +msgstr "" +"Les sauvegardes seront compressées et leur taille devraient être plus " +"petites que la plupart d'entre elles." + +# @ mainwp-backupwordpress-extension +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "this shouldn't take long…" +msgstr "Ce champ ne doit pas être vide." + +# @ mainwp-backupwordpress-extension +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "calculating the size of your backup…" +msgstr "Ajuster la taille de votre logo" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:713 +#: class/class-mainwp-child-back-up-wordpress.php:719 +#: class/class-mainwp-child-server-information.php:381 +msgid "Download" +msgstr "Télécharger" + +# @ backupwordpress +# @ updraftplus +#: class/class-mainwp-child-back-up-wordpress.php:724 +#: class/class-mainwp-child-updraft-plus-backups.php:2136 +#: class/class-mainwp-child-updraft-plus-backups.php:2182 +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete" +msgstr "Supprimer" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:761 +msgid "Currently Excluded" +msgstr "Exclu des résultats de recherche" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:762 +msgid "" +"We automatically detect and ignore common VCS folders and other backup plugin folders." +msgstr "" +"Nous détectons et ignorons automatiquement les dossiers VCS courants et les autres dossiers " +"de plugins de sauvegarde." + +#: class/class-mainwp-child-back-up-wordpress.php:766 +msgid "Your Site" +msgstr "Votre site" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:767 +msgid "" +"Here's a directory listing of all files on your site, you can browse through " +"and exclude files or folders that you don't want included in your backup." +msgstr "" +"Dans l'arborescence de votre site, vous pouvez parcourir et exclure les " +"dossiers et les fichiers que vous ne souhaitez pas inclure dans votre " +"sauvegarde." + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:797 +msgid "Done" +msgstr "Terminé" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:842 +msgid "Default rule" +msgstr "Selon la règle par défaut de WC" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:844 +msgid "Defined in wp-config.php" +msgstr "Votre clé de licence est définie dans le fichier wp-config.php" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:846 +msgid "Stop excluding" +msgstr "Arrêter le cycle de facturation" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:898 +msgid "Name" +msgstr "Nom" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:901 +msgid "Permissions" +msgstr "Permissions" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:946 +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Refresh" +msgstr "Actualiser" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:956 +#: class/class-mainwp-child-back-up-wordpress.php:1065 +msgid "Symlink" +msgstr "Symlink" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:958 +#: class/class-mainwp-child-back-up-wordpress.php:1068 +msgid "Folder" +msgstr "Dossier" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Recalculate the size of this directory" +msgstr "Vérifier la taille du répertoire" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1070 +msgid "File" +msgstr "Fichier" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable files won't be backed up." +msgstr "Les fichiers sont sauvegardés" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable" +msgstr "En lecture en seule" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1078 +msgid "Excluded" +msgstr "Exclu" + +# @ backupwordpress +#: class/class-mainwp-child-back-up-wordpress.php:1088 +msgid "Exclude →" +msgstr "Voir l’oeuvre →" + +#: class/class-mainwp-child-back-up-wordpress.php:1125 +#: class/class-mainwp-child-back-up-wordpress.php:1160 +msgid "Empty exclude directory path." +msgstr "Chemin du répertoire d’exclusion vide." + +#: class/class-mainwp-child-back-up-wordpress.php:1261 +#: class/class-mainwp-child-back-up-wordpress.php:1320 +msgid "Schedule data" +msgstr "Planifier les données" + +#: class/class-mainwp-child-back-wp-up.php:197 +msgid "Please install BackWPup plugin on child website" +msgstr "Veuillez installer le plugin BackWPup sur le site de l'enfant" + +#: class/class-mainwp-child-back-wp-up.php:205 +msgid "Missing action." +msgstr "Action manquante." + +#: class/class-mainwp-child-back-wp-up.php:282 +msgid "Wrong action." +msgstr "Mauvaise action." + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:381 +msgid "Database backup" +msgstr "Sauvegarde de la base de données" + +#: class/class-mainwp-child-back-wp-up.php:382 +msgid "File backup" +msgstr "Sauvegarde de fichiers" + +#: class/class-mainwp-child-back-wp-up.php:383 +msgid "WordPress XML export" +msgstr "Exportation XML WordPress" + +#: class/class-mainwp-child-back-wp-up.php:384 +msgid "Installed plugins list" +msgstr "Liste des plugins installés" + +#: class/class-mainwp-child-back-wp-up.php:385 +msgid "Check database tables" +msgstr "Vérifier les tables de la base de données" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-timecapsule.php:1912 +msgid "Setting" +msgstr "Paramètre" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-ithemes-security.php:947 +#: class/class-mainwp-child-ithemes-security.php:956 +#: class/class-mainwp-child-server-information.php:427 +#: class/class-mainwp-child-timecapsule.php:1912 +#: class/class-mainwp-child-wordfence.php:3209 +msgid "Value" +msgstr "Valeur" + +#: class/class-mainwp-child-back-wp-up.php:567 +#: class/class-mainwp-child-timecapsule.php:1913 +msgid "WordPress version" +msgstr "Version de WordPress" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "BackWPup version" +msgstr "Version BackWPup" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "Get pro." +msgstr "Obtenir la version payante." + +#: class/class-mainwp-child-back-wp-up.php:571 +msgid "BackWPup Pro version" +msgstr "Version BackWPup Pro" + +#: class/class-mainwp-child-back-wp-up.php:574 +#: class/class-mainwp-child-timecapsule.php:1924 +msgid "PHP version" +msgstr "Version PHP" + +#: class/class-mainwp-child-back-wp-up.php:575 +#: class/class-mainwp-child-timecapsule.php:1925 +msgid "MySQL version" +msgstr "Version MySQL" + +#: class/class-mainwp-child-back-wp-up.php:578 +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1929 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "cURL version" +msgstr "version de cURL" + +#: class/class-mainwp-child-back-wp-up.php:579 +#: class/class-mainwp-child-timecapsule.php:1930 +msgid "cURL SSL version" +msgstr "Version cURL SSL" + +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "unavailable" +msgstr "indisponible" + +#: class/class-mainwp-child-back-wp-up.php:583 +msgid "WP-Cron url:" +msgstr "WP-Cron url :" + +#: class/class-mainwp-child-back-wp-up.php:585 +msgid "Server self connect:" +msgstr "Autoconnexion du serveur :" + +#: class/class-mainwp-child-back-wp-up.php:589 +#: class/class-mainwp-child-server-information-base.php:708 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "Le test de réponse HTTP obtient une erreur « %s »" + +#: class/class-mainwp-child-back-wp-up.php:591 +#: class/class-mainwp-child-server-information-base.php:712 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "La réponse HTTP de test est un état http inconnu (%s)" + +#: class/class-mainwp-child-back-wp-up.php:595 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "L'en-tête de réponse HTTP BackWPup renvoie la valeur false: « %s »" + +#: class/class-mainwp-child-back-wp-up.php:599 +#: class/class-mainwp-child-server-information-base.php:720 +msgid "Response Test O.K." +msgstr "Test de réponse O.K." + +#: class/class-mainwp-child-back-wp-up.php:605 +msgid "Temp folder:" +msgstr "Dossier temporaire :" + +#: class/class-mainwp-child-back-wp-up.php:607 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "Le dossier temporaire %s n'existe pas." + +#: class/class-mainwp-child-back-wp-up.php:609 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "Le dossier temporaire %s n'est pas accessible en écriture." + +#: class/class-mainwp-child-back-wp-up.php:615 +msgid "Log folder:" +msgstr "Dossier de logs :" + +#: class/class-mainwp-child-back-wp-up.php:620 +#, php-format +msgid "Logs folder %s not exist." +msgstr "Dossier logs %s n'existe pas." + +#: class/class-mainwp-child-back-wp-up.php:622 +#, php-format +msgid "Log folder %s is not writable." +msgstr "Le dossier du journal %s n'est pas accessible en écriture." + +#: class/class-mainwp-child-back-wp-up.php:627 +#: class/class-mainwp-child-timecapsule.php:1936 +msgid "Server" +msgstr "Serveur" + +# @ mainwp +#: class/class-mainwp-child-back-wp-up.php:628 +#: class/class-mainwp-child-server-information.php:750 +#: class/class-mainwp-child-timecapsule.php:1937 +msgid "Operating System" +msgstr "Système d'exploitation" + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:629 +#: class/class-mainwp-child-timecapsule.php:1938 +msgid "PHP SAPI" +msgstr "SAPI PHP" + +#: class/class-mainwp-child-back-wp-up.php:630 +#: class/class-mainwp-child-timecapsule.php:1945 +msgid "Current PHP user" +msgstr "Utilisateur actuel de PHP" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:640 +msgid "On" +msgstr "Activé" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:637 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Off" +msgstr "Désactivé" + +#: class/class-mainwp-child-back-wp-up.php:632 +msgid "Safe Mode" +msgstr "Mode sans échec" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "Maximum execution time" +msgstr "Temps d’exécution maximum" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "seconds" +msgstr "secondes" + +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:637 +msgid "Alternative WP Cron" +msgstr "Cron WP alternatif" + +#: class/class-mainwp-child-back-wp-up.php:640 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Disabled WP Cron" +msgstr "WP Cron désactivé" + +#: class/class-mainwp-child-back-wp-up.php:645 +#: class/class-mainwp-child-back-wp-up.php:647 +#: class/class-mainwp-child-timecapsule.php:1949 +#: class/class-mainwp-child-timecapsule.php:1951 +msgid "CHMOD Dir" +msgstr "CHMOD Dir" + +#: class/class-mainwp-child-back-wp-up.php:651 +#: class/class-mainwp-child-timecapsule.php:1955 +msgid "Server Time" +msgstr "Heure du serveur" + +#: class/class-mainwp-child-back-wp-up.php:652 +#: class/class-mainwp-child-timecapsule.php:1956 +msgid "Blog Time" +msgstr "Heure du site" + +#: class/class-mainwp-child-back-wp-up.php:653 +msgid "Blog Timezone" +msgstr "Fuseau horaire du site" + +#: class/class-mainwp-child-back-wp-up.php:654 +msgid "Blog Time offset" +msgstr "Décalage horaire du site" + +#: class/class-mainwp-child-back-wp-up.php:654 +#, php-format +msgid "%s hours" +msgstr "%s heures" + +#: class/class-mainwp-child-back-wp-up.php:655 +#: class/class-mainwp-child-timecapsule.php:1957 +msgid "Blog language" +msgstr "Langue du site" + +#: class/class-mainwp-child-back-wp-up.php:656 +#: class/class-mainwp-child-timecapsule.php:1958 +msgid "MySQL Client encoding" +msgstr "Codage du client MySQL" + +#: class/class-mainwp-child-back-wp-up.php:659 +#: class/class-mainwp-child-timecapsule.php:1961 +msgid "Blog charset" +msgstr "Jeu de caractères du blog" + +#: class/class-mainwp-child-back-wp-up.php:660 +#: class/class-mainwp-child-timecapsule.php:1962 +msgid "PHP Memory limit" +msgstr "Limite de mémoire PHP" + +#: class/class-mainwp-child-back-wp-up.php:661 +#: class/class-mainwp-child-timecapsule.php:1963 +msgid "WP memory limit" +msgstr "Limite mémoire WP" + +#: class/class-mainwp-child-back-wp-up.php:662 +#: class/class-mainwp-child-timecapsule.php:1964 +msgid "WP maximum memory limit" +msgstr "Limite de mémoire maximale WP" + +#: class/class-mainwp-child-back-wp-up.php:663 +#: class/class-mainwp-child-timecapsule.php:1965 +msgid "Memory in use" +msgstr "Mémoire utilisée" + +#: class/class-mainwp-child-back-wp-up.php:668 +#: class/class-mainwp-child-timecapsule.php:1971 +msgid "Disabled PHP Functions:" +msgstr "Fonctions PHP désactivées :" + +#: class/class-mainwp-child-back-wp-up.php:673 +#: class/class-mainwp-child-timecapsule.php:1977 +msgid "Loaded PHP Extensions:" +msgstr "Extensions PHP chargées :" + +#: class/class-mainwp-child-back-wp-up.php:699 +#: class/class-mainwp-child-back-wp-up.php:806 +msgid "Missing logfile." +msgstr "Fichier journal manquant." + +#: class/class-mainwp-child-back-wp-up.php:711 +msgid "Directory not writable:" +msgstr "Répertoire non inscriptible :" + +#: class/class-mainwp-child-back-wp-up.php:714 +msgid "Not file:" +msgstr "Fichier incorrect :" + +#: class/class-mainwp-child-back-wp-up.php:737 +msgid "Missing job_id." +msgstr "Numéro d'identification du poste manquant." + +#: class/class-mainwp-child-back-wp-up.php:744 +msgid "Cannot delete job" +msgstr "Impossible de supprimer la tâche" + +#: class/class-mainwp-child-back-wp-up.php:761 +msgid "Missing backupfile." +msgstr "Fichier de sauvegarde manquant." + +#: class/class-mainwp-child-back-wp-up.php:765 +msgid "Missing dest." +msgstr "Destination manquante" + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:777 +msgid "Invalid dest class." +msgstr "Requête invalide" + +#: class/class-mainwp-child-back-wp-up.php:814 +msgid "Log file doesn't exists" +msgstr "Le fichier journal n'existe pas" + +#: class/class-mainwp-child-back-wp-up.php:854 +msgid "Missing type." +msgstr "Type manquant." + +#: class/class-mainwp-child-back-wp-up.php:858 +msgid "Missing website id." +msgstr "Identifiant de site web manquant." + +#: class/class-mainwp-child-back-wp-up.php:909 +#: class/class-mainwp-child-back-wp-up.php:952 +#, php-format +msgid "%1$s at %2$s" +msgstr "%1$s à %2$s" + +#: class/class-mainwp-child-back-wp-up.php:943 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s à %2$s par WP-Cron" + +# @ mainwp-child +#: class/class-mainwp-child-back-wp-up.php:945 +msgid "Not scheduled!" +msgstr "Aucune planification !" + +#: class/class-mainwp-child-back-wp-up.php:948 +#: class/class-mainwp-child-server-information.php:627 +msgid "Inactive" +msgstr "Inactif" + +#: class/class-mainwp-child-back-wp-up.php:954 +#, php-format +msgid "Runtime: %d seconds" +msgstr "Temps d'exécution : %d secondes" + +#: class/class-mainwp-child-back-wp-up.php:957 +msgid "not yet" +msgstr "pas encore" + +#: class/class-mainwp-child-back-wp-up.php:1135 +msgid "Missing logfile or logpos." +msgstr "Fichier log ou logpos manquant." + +#: class/class-mainwp-child-back-wp-up.php:1185 +#: class/class-mainwp-child-back-wp-up.php:1582 +#: class/class-mainwp-child-back-wp-up.php:1770 +msgid "Missing job_id" +msgstr "ID de tâche manquant" + +#: class/class-mainwp-child-back-wp-up.php:1323 +msgid "Missing email address." +msgstr "Adresse de courriel manquante." + +#: class/class-mainwp-child-back-wp-up.php:1386 +msgid "BackWPup archive sending TEST Message" +msgstr "Message TEST BackWPup" + +#: class/class-mainwp-child-back-wp-up.php:1389 +msgid "" +"If this message reaches your inbox, sending backup archives via email should " +"work for you." +msgstr "" +"Si ce message arrive dans votre boîte de réception, l'envoi d'archives de " +"sauvegarde par email devrait fonctionner pour vous." + +#: class/class-mainwp-child-back-wp-up.php:1401 +msgid "Error while sending email!" +msgstr "Erreur lors de l'envoi d'email !" + +#: class/class-mainwp-child-back-wp-up.php:1403 +msgid "Email sent." +msgstr "Email envoyé." + +#: class/class-mainwp-child-back-wp-up.php:1578 +#: class/class-mainwp-child-back-wp-up.php:1762 +#: class/class-mainwp-child-back-wp-up.php:1884 +msgid "Missing array settings" +msgstr "Paramètres de tableau manquants" + +#: class/class-mainwp-child-back-wp-up.php:1609 +msgid "Missing new job_id" +msgstr "Nouveau job_id manquant" + +#: class/class-mainwp-child-back-wp-up.php:1766 +msgid "Missing tab" +msgstr "Onglet manquant" + +#: class/class-mainwp-child-back-wp-up.php:1774 +#: class/class-mainwp-child-back-wp-up.php:1888 +msgid "Install BackWPup on child website" +msgstr "Installer BackWPup sur le site de l'enfant" + +#: class/class-mainwp-child-back-wp-up.php:1805 +#, php-format +msgid "Changes for job %s saved." +msgstr "Modifications pour la tâche %s enregistrées." + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Jobs overview" +msgstr "Vue d’ensemble des tâches" + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Run now" +msgstr "Exécuter maintenant" + +#: class/class-mainwp-child-back-wp-up.php:1824 +msgid "Cannot save jobs: " +msgstr "Impossible de sauvegarder les tâches : " + +#: class/class-mainwp-child-back-wp-up.php:1892 +msgid "" +"You try to use pro version settings in non pro plugin version. Please " +"install pro version on child and try again." +msgstr "" +"Vous essayez d'utiliser les paramètres de la version pro dans une version " +"non pro du plugin. Veuillez installer la version pro sur l'enfant et " +"réessayer." + +#: class/class-mainwp-child-back-wp-up.php:1915 +msgid "Cannot save settings: " +msgstr "Impossible de sauvegarder les réglages : " + +#: class/class-mainwp-child-branding-render.php:136 +msgid "Subject:" +msgstr "Sujet:" + +#: class/class-mainwp-child-branding-render.php:141 +msgid "From:" +msgstr "De:" + +#: class/class-mainwp-child-branding-render.php:146 +msgid "Your message:" +msgstr "Votre message:" + +# @ default +#: class/class-mainwp-child-branding-render.php:167 +msgid "Submit" +msgstr "Envoyer" + +#: class/class-mainwp-child-branding-render.php:196 +msgid "Message has been submitted successfully." +msgstr "Le message a bien été envoyé." + +#: class/class-mainwp-child-branding-render.php:199 +msgid "Sending email failed!" +msgstr "L’envoi d’e-mail a échoué !" + +#: class/class-mainwp-child-branding.php:89 +msgid "Contact Support" +msgstr "Contacter le support" + +#: class/class-mainwp-child-callable.php:182 +msgid "" +"Required version has not been detected. Please, make sure that you are using " +"the latest version of the MainWP Child plugin on your site." +msgstr "" +"La version nécessaire n’a pas été détectée. Assurez-vous que vous utilisez " +"la dernière version de l’extension MainWP Child sur votre site." + +# @ mainwp-child +#: class/class-mainwp-child-callable.php:888 +#, php-format +msgid "PHP Version %s is unsupported." +msgstr "La version PHP %s n'est pas supportée." + +#: class/class-mainwp-child-install.php:374 +msgid "" +"Plugin or theme not specified, or missing required data. Please reload the " +"page and try again." +msgstr "" +"Extension ou thème non spécifié, ou données nécessaires manquantes. " +"Recharger la page et réessayer." + +#: class/class-mainwp-child-ithemes-security.php:426 +msgid "" +"You must change WordPress permalinks to a setting other " +"than \"Plain\" in order to use \"Hide Backend\" feature." +msgstr "" +"Vous devez changer les permaliens WordPress à un réglage " +"autre que « Complet » pour utiliser la fonction « Masquer l’administration »." + +#: class/class-mainwp-child-ithemes-security.php:531 +msgid "Not Updated" +msgstr "Pas mis à jour" + +#: class/class-mainwp-child-ithemes-security.php:588 +#, php-format +msgctxt "%1$s is the input name. %2$s is the error message." +msgid "" +"The directory supplied in %1$s cannot be used as a valid directory. %2$s" +msgstr "" +"Le répertoire fourni dans %1$s ne peut pas être utilisé comme répertoire " +"valide. %2$s" + +#: class/class-mainwp-child-ithemes-security.php:593 +#, php-format +msgid "" +"The directory supplied in %1$s is not writable. Please select a directory " +"that can be written to." +msgstr "" +"Le répertoire fourni dans %1$s n'est pas accessible en écriture. Veuillez " +"sélectionner un répertoire dans lequel vous pouvez écrire." + +# @ it-l10n-better-wp-security +#: class/class-mainwp-child-ithemes-security.php:737 +msgid "Your IP Address" +msgstr "Votre adresse IP est bloquée!" + +# @ it-l10n-better-wp-security +#: class/class-mainwp-child-ithemes-security.php:738 +msgid "is whitelisted for" +msgstr "" +"Assurez-vous que vous avez mis sur liste blanche l’extension et le type MIME " +"dans les paramètres des médias et que le type MIME ajouté dans l’entrée " +"extension soit correct." + +#: class/class-mainwp-child-ithemes-security.php:796 +#, php-format +msgid "" +"The backup request returned an unexpected response. It returned a response " +"of type %1$s." +msgstr "" +"La demande de sauvegarde a retourné une réponse inattendue. Il renvoie une " +"réponse de type %1$s." + +#: class/class-mainwp-child-ithemes-security.php:839 +msgid "The WordPress salts were successfully regenerated." +msgstr "Les salages de WordPress ont été régénérés avec succès." + +#: class/class-mainwp-child-ithemes-security.php:928 +msgid "WARNING" +msgstr "AVERTISSEMENT" + +# @ updraftplus +#: class/class-mainwp-child-ithemes-security.php:931 +#: class/class-mainwp-child-updraft-plus-backups.php:2142 +#: class/class-mainwp-child-updraft-plus-backups.php:2189 +#: class/class-mainwp-child-updraft-plus-backups.php:2193 +msgid "OK" +msgstr "OK" + +#: class/class-mainwp-child-ithemes-security.php:941 +msgid "Reload File Permissions Details" +msgstr "Recharger les détails des autorisations de fichier" + +#: class/class-mainwp-child-ithemes-security.php:945 +#: class/class-mainwp-child-ithemes-security.php:954 +msgid "Relative Path" +msgstr "Chemin relatif" + +#: class/class-mainwp-child-ithemes-security.php:946 +#: class/class-mainwp-child-ithemes-security.php:955 +msgid "Suggestion" +msgstr "Suggestion" + +#: class/class-mainwp-child-ithemes-security.php:948 +#: class/class-mainwp-child-ithemes-security.php:957 +msgid "Result" +msgstr "Résultat" + +# @ mainwp-child +#: class/class-mainwp-child-ithemes-security.php:1055 +msgid "Admin user already changes." +msgstr "Utilisateur Admin déjà changé." + +# @ mainwp-child +#: class/class-mainwp-child-ithemes-security.php:1066 +msgid "Admin user ID already changes." +msgstr " ID d'utilisateur Admin déjà changée." + +#: class/class-mainwp-child-ithemes-security.php:1247 +#, php-format +msgid "" +"The database table prefix was successfully changed to %1$s." +msgstr "" +"Le préfixe de la table de base de données a été modifié avec succès en " +"%1$s." + +# @ it-l10n-better-wp-security +#: class/class-mainwp-child-ithemes-security.php:1522 +msgid "The selected lockouts have been cleared." +msgstr "Aucun répertoire n’a été sélectionné !" + +#. translators: 1: user display name, 2: user login +#: class/class-mainwp-child-ithemes-security.php:1696 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: class/class-mainwp-child-jetpack-protect.php:164 +msgid "Please install Jetpack Protect plugin on child website" +msgstr "" +"Veuillez installer le plugin Jetpack Protect sur le site web de l'enfant" + +#: class/class-mainwp-child-jetpack-protect.php:244 +msgid "Failed to disconnect the site as it appears already disconnected." +msgstr "La déconnexion du site a échoué car il semble déjà déconnecté." + +#: class/class-mainwp-child-jetpack-scan.php:107 +msgid "Please install Jetpack Protect or Jetpact Scan plugin on child website" +msgstr "" +"Veuillez installer le plugin Jetpack Protect ou Jetpact Scan sur le site web " +"de l'enfant" + +# @ default +#: class/class-mainwp-child-links-checker.php:635 +msgid "An unexpected error occurred!" +msgstr "Une erreur inattendue est apparue !" + +#: class/class-mainwp-child-links-checker.php:715 +#: class/class-mainwp-child-links-checker.php:801 +msgid "Error: link_id is not specified." +msgstr "Erreur : link_id n’est pas spécifié." + +#: class/class-mainwp-child-links-checker.php:758 +msgid "Error: link_id not specified." +msgstr "Erreur : link_id non spécifié." + +# @ default +#: class/class-mainwp-child-links-checker.php:791 +msgid "This link was manually marked as working by the user." +msgstr "" +"Ce lien a été marqué manuellement par l'utilisateur comme fonctionnant." + +#: class/class-mainwp-child-misc.php:461 +msgid "Cannot get user_id" +msgstr "Impossible d'obtenir l'identifiant de l'utilisateur" + +#: class/class-mainwp-child-misc.php:471 +msgid "Cannot destroy sessions" +msgstr "Impossible de détruire les sessions" + +# @ mainwp-child +#: class/class-mainwp-child-misc.php:474 +msgid "Invalid action" +msgstr "Action non valide" + +#: class/class-mainwp-child-misc.php:477 +msgid "Missing action" +msgstr "Action manquante" + +#: class/class-mainwp-child-pagespeed.php:443 +msgid "The API is busy checking other pages, please try again later." +msgstr "" +"L’API est occupée à vérifier d’autres pages, veuillez réessayer plus tard." + +#: class/class-mainwp-child-posts.php:549 +msgid "Post" +msgstr "Article" + +#: class/class-mainwp-child-posts.php:800 +#, php-format +msgid "This content is currently locked. %s is currently editing." +msgstr "" +"Ce contenu est actuellement verrouillé. % s est en cours de modification." + +# @ mainwp +#: class/class-mainwp-child-server-information-base.php:212 +msgid "No functions disabled" +msgstr "Pas de fonctions désactivées" + +# @ default +# @ mainwp +#: class/class-mainwp-child-server-information-base.php:532 +#: class/class-mainwp-child-server-information-base.php:566 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "ON" +msgstr "ON" + +# @ default +# @ mainwp +#: class/class-mainwp-child-server-information-base.php:534 +#: class/class-mainwp-child-server-information-base.php:568 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "OFF" +msgstr "OFF" + +# @ default +#: class/class-mainwp-child-server-information-base.php:556 +msgid "NOT SET" +msgstr "PAS RÉGLER" + +# @ default +#: class/class-mainwp-child-server-information-base.php:578 +#: class/class-mainwp-child-server-information-base.php:590 +#: class/class-mainwp-child-server-information-base.php:602 +msgid "YES" +msgstr "OUI" + +# @ default +#: class/class-mainwp-child-server-information-base.php:580 +#: class/class-mainwp-child-server-information-base.php:592 +#: class/class-mainwp-child-server-information-base.php:604 +msgid "NO" +msgstr "NON" + +#: class/class-mainwp-child-server-information-base.php:716 +#, php-format +msgid "Not expected HTTP response body: %s" +msgstr "Corps de réponse HTTP non attendu : %s" + +#: class/class-mainwp-child-server-information.php:379 +msgid "Please include this information when requesting support:" +msgstr "Merci d'inclure cette information dans la demande de support :" + +#: class/class-mainwp-child-server-information.php:381 +msgid "Hide" +msgstr "Cacher" + +#: class/class-mainwp-child-server-information.php:384 +msgid "Get system report" +msgstr "Obtenir le rapport système" + +# @ default +#: class/class-mainwp-child-server-information.php:390 +#: class/class-mainwp-pages.php:592 +msgid "Server Information" +msgstr "Informations sur le serveur" + +# @ default +#: class/class-mainwp-child-server-information.php:392 +msgid "Cron Schedules" +msgstr "WP Crontrol" + +# @ default +#: class/class-mainwp-child-server-information.php:394 +msgid "Error Log" +msgstr "Log des erreurs" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:425 +msgid "Server configuration" +msgstr "Configuration serveur" + +#: class/class-mainwp-child-server-information.php:426 +msgid "Required value" +msgstr "Valeur requise" + +#: class/class-mainwp-child-server-information.php:467 +msgid "Version" +msgstr "Version" + +#: class/class-mainwp-child-server-information.php:474 +msgid "WordPress" +msgstr "WordPress" + +#: class/class-mainwp-child-server-information.php:481 +msgid "FileSystem Method" +msgstr "FileSystem, méthode" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:518 +msgid "PHP SETTINGS" +msgstr "Réglages PHP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:523 +msgid "PHP Safe Mode Disabled" +msgstr "PHP safe_mode est activé" + +#: class/class-mainwp-child-server-information.php:566 +#, php-format +msgid "" +"Your host needs to update OpenSSL to at least version 1.1.0 which is already " +"over 4 years old and contains patches for over 60 vulnerabilities.%1$sThese " +"range from Denial of Service to Remote Code Execution. %2$sClick here for " +"more information.%3$s" +msgstr "" +"Votre hébergeur doit mettre à jour OpenSSL vers au moins la version 1.1.0 " +"qui a déjà plus de 4 ans et contient des correctifs pour plus de 60 " +"vulnérabilités. %1$sCelles-ci vont du déni de service à l’exécution de code " +"à distance. %2$sCliquer ici pour plus d’informations.%3$s" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:582 +msgid "MySQL SETTINGS" +msgstr "Réglages MySQL" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:586 +msgid "BACKUP ARCHIVE INFORMATION" +msgstr "Information sur l'archive de sauvegarde" + +#: class/class-mainwp-child-server-information.php:610 +msgid "WordPress PLUGINS" +msgstr "PLUGINS WordPress" + +#: class/class-mainwp-child-server-information.php:627 +msgid "Active" +msgstr "Actif" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:650 +msgid "PHP INFORMATION" +msgstr "Informations de PHP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:654 +msgid "PHP Allow URL fopen" +msgstr "Permettre URL fopen dans le PHP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:659 +msgid "PHP Exif Support" +msgstr "Support de PHP Exif" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:664 +msgid "PHP IPTC Support" +msgstr "Prise en charge de PHP IPTC" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:669 +msgid "PHP XML Support" +msgstr "Prise en charge de PHP XML" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:674 +msgid "PHP Disabled Functions" +msgstr "Fonctions PHP désactivées" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:679 +msgid "PHP Loaded Extensions" +msgstr "Extensions chargées PHP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:684 +msgid "MySQL INFORMATION" +msgstr "MySQL" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:688 +msgid "MySQL Mode" +msgstr "MySQL Mode" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:693 +msgid "MySQL Client Encoding" +msgstr "Encodage du client MySQL" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:731 +msgid "SERVER INFORMATION" +msgstr "Information mise à jour" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:735 +msgid "WordPress Root Directory" +msgstr "Répertoire racine WordPress" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:740 +msgid "Server Name" +msgstr "Nom du serveur" + +#: class/class-mainwp-child-server-information.php:745 +msgid "Server Software" +msgstr "Logiciel serveur" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:755 +msgid "Architecture" +msgstr "Architecture" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:760 +msgid "Server IP" +msgstr "Serveur IP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:765 +msgid "Server Protocol" +msgstr "Protocole du serveur" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:770 +msgid "HTTP Host" +msgstr "Hôte HTTP" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:775 +msgid "HTTPS" +msgstr "HTTPS" + +#: class/class-mainwp-child-server-information.php:780 +msgid "Server self connect" +msgstr "Connexion automatique au serveur" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:785 +msgid "User Agent" +msgstr "Agent utilisateur" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:790 +msgid "Server Port" +msgstr "Port du serveur" + +#: class/class-mainwp-child-server-information.php:795 +msgid "Gateway Interface" +msgstr "Interface de transport" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:800 +msgid "Memory Usage" +msgstr "Utilisation de la mémoire" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:805 +msgid "Complete URL" +msgstr "URL site" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:810 +msgid "Request Time" +msgstr "Durée de la requête" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:815 +msgid "Accept Content" +msgstr "Accepter le contenu" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:820 +msgid "Accept-Charset Content" +msgstr "Accepter le contenu du jeu de caractères" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:825 +msgid "Currently Executing Script Pathname" +msgstr "Chemin d’accès de script en cours d’exécution" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:830 +msgid "Current Page URI" +msgstr "Actuellement en gestion" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:835 +msgid "Remote Address" +msgstr "Adresse distante" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:840 +msgid "Remote Host" +msgstr "Hôte Distant" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:845 +msgid "Remote Port" +msgstr "Port lointain" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:891 +msgid "Next due" +msgstr " Prochain paiement est dû %s." + +# @ mainwp +#: class/class-mainwp-child-server-information.php:892 +msgid "Schedule" +msgstr "Planifier" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:893 +msgid "Hook" +msgstr "Crochet" + +# @ mainwp +# @ updraftplus +#: class/class-mainwp-child-server-information.php:1079 +msgid "Error" +msgstr "Erreur d'analyse" + +# @ mainwp +#: class/class-mainwp-child-server-information.php:1103 +msgid "Error logging disabled." +msgstr "Journalisation des erreurs désactivée." + +#: class/class-mainwp-child-server-information.php:1248 +msgid "Site URL" +msgstr "URL du site" + +#: class/class-mainwp-child-server-information.php:1253 +msgid "Administrator name" +msgstr "Nom de l'administrateur" + +#: class/class-mainwp-child-server-information.php:1255 +msgid "" +"This is your Administrator username, however, you can use any existing " +"Administrator username." +msgstr "" +"Il s’agit de votre nom utilisateur de l’administrateur, cependant, vous " +"pouvez utiliser n’importe quel nom utilisateur d’administrateur existant." + +#: class/class-mainwp-child-server-information.php:1258 +msgid "Friendly site name" +msgstr "Nom de site convivial" + +#: class/class-mainwp-child-server-information.php:1260 +msgid "" +"For the friendly site name, you can use any name, this is just a suggestion." +msgstr "" +"Pour le nom du site convivial, vous pouvez utiliser n’importe quel nom, ce " +"n’est qu’une suggestion." + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:1263 +msgid "Child unique security id" +msgstr "ID de sécurité unique du client" + +#: class/class-mainwp-child-server-information.php:1264 +msgid "Leave the field blank" +msgstr "Laisser le champ vide" + +#: class/class-mainwp-child-server-information.php:1265 +#, php-format +msgid "" +"Child unique security id is not required, however, since you have enabled " +"it, you need to add it to your %s dashboard." +msgstr "" +"L’ID de sécurité unique de l’enfant n’est pas nécessaire, cependant, puisque " +"vous l’avez activé, vous devez l’ajouter à votre tableau de bord %s." + +#: class/class-mainwp-child-server-information.php:1268 +msgid "Verify certificate" +msgstr "Vérifier le certificat" + +#: class/class-mainwp-child-server-information.php:1269 +msgid "Yes" +msgstr "Oui" + +#: class/class-mainwp-child-server-information.php:1270 +msgid "" +"If there is an issue with SSL certificate on this site, try to set this " +"option to No." +msgstr "" +"S’il y a un problème avec le certificat SSL sur ce site, essayez avec cette " +"option sur Non." + +#: class/class-mainwp-child-server-information.php:1273 +msgid "SSL version" +msgstr "Version SSL" + +#: class/class-mainwp-child-server-information.php:1274 +#: class/class-mainwp-child-server-information.php:1275 +msgid "Auto Detect" +msgstr "Détection Automatique" + +# @ mainwp-child +#: class/class-mainwp-child-server-information.php:1282 +msgid "Connection details" +msgstr "Détails de connexion" + +#: class/class-mainwp-child-server-information.php:1283 +#, php-format +msgid "" +"If you are trying to connect this child site to your %s Dashboard, you can " +"use following details to do that. Please note that these are only suggested " +"values." +msgstr "" +"Si vous essayez de connecter ce site client à votre tableau de bord %s, vous " +"pouvez utiliser les détails suivants pour le faire. Notez que ce ne sont que " +"des valeurs suggérées." + +#: class/class-mainwp-child-staging.php:186 +msgid "Please install WP Staging plugin on child website" +msgstr "Veuillez installer l’extension WP Staging sur le site client" + +# @ mainwp-child +#: class/class-mainwp-child-stats.php:96 +msgid "" +"Hint: Go to the child site, deactivate and reactivate the MainWP Child " +"plugin and try again." +msgstr "" +"L'authentification a échoué ! Merci de désactiver et réactiver l'extension " +"MainWP client sur ce site." + +# @ mainwp-child +#: class/class-mainwp-child-stats.php:97 +msgid "" +"This site already contains a link. Please deactivate and reactivate the " +"MainWP plugin." +msgstr "" +"Ce site contient déjà un lien. Veuillez désactiver et réactiver l’extension " +"MainWP." + +#: class/class-mainwp-child-timecapsule.php:1914 +msgid "WP Time Capsule version" +msgstr "Version de WP Time Capsule" + +#: class/class-mainwp-child-timecapsule.php:1940 +msgid "Function Disabled" +msgstr "Fonction désactivée" + +# @ mainwp-child +#: class/class-mainwp-child-updates.php:150 +#: class/class-mainwp-child-updates.php:291 +#: class/class-mainwp-child-updates.php:460 +#: class/class-mainwp-child-updates.php:539 +#: class/class-mainwp-child-updates.php:649 class/class-mainwp-clone.php:134 +msgid "Invalid request!" +msgstr "Demande invalide !" + +#: class/class-mainwp-child-updates.php:1167 +msgid "Another update is currently in progress." +msgstr "Une autre mise à jour est actuellement en cours." + +#: class/class-mainwp-child-updraft-plus-backups.php:361 +msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com" +msgstr "" +"Une erreur inconnue s'est produite lors de la tentative de connexion à " +"UpdraftPlus.com" + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "This site is connected to UpdraftPlus Vault." +msgstr "Ce site est connecté à UpdraftPlus Vault." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Well done - there's nothing more needed to set up." +msgstr "Bien joué - il n'y a rien de plus à installer." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Vault owner" +msgstr "Propriétaire de la Chambre-forte UpdraftPlus" + +#: class/class-mainwp-child-updraft-plus-backups.php:396 +msgid "Quota:" +msgstr "Quota :" + +#: class/class-mainwp-child-updraft-plus-backups.php:406 +msgid "Disconnect" +msgstr "Déconnecter" + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "UpdraftPlus.com has responded with 'Access Denied'." +msgstr "UpdraftPlus.com a répondu par 'Accès refusé'." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +#, php-format +msgid "It appears that your web server's IP Address (%s) is blocked." +msgstr "Il semble que l'adresse IP de votre serveur web ( %s ) est bloquée." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "" +"This most likely means that you share a webserver with a hacked website that " +"has been used in previous attacks." +msgstr "" +"Cela signifie très probablement que vous partagez un serveur Web avec un " +"site Web piraté qui a été utilisé lors d'attaques précédentes." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "To remove the block, please go here." +msgstr "Pour retirer le bloc, cliquez ici." + +#: class/class-mainwp-child-updraft-plus-backups.php:454 +#, php-format +msgid "" +"UpdraftPlus.Com returned a response which we could not understand (data: %s)" +msgstr "" +"UpdraftPlus.Com a retourné une réponse que nous ne pouvions pas comprendre " +"(données : %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:476 +msgid "You do not currently have any UpdraftPlus Vault quota" +msgstr "Vous ne disposez pas actuellement d'un quota UpdraftPlus Vault" + +#: class/class-mainwp-child-updraft-plus-backups.php:478 +#: class/class-mainwp-child-updraft-plus-backups.php:494 +msgid "UpdraftPlus.Com returned a response, but we could not understand it" +msgstr "" +"UpdraftPlus.Com a renvoyé une réponse, mais nous n'avons pas pu la comprendre" + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"Your email address was valid, but your password was not recognised by " +"UpdraftPlus.Com." +msgstr "" +"Votre adresse courriel était valide, mais votre mot de passe n'a pas été " +"reconnu par UpdraftPlus.com." + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"If you have forgotten your password, then go here to change your password on " +"updraftplus.com." +msgstr "" +"En cas d'oubli de mot de passe, rendez vous ici pour le changer sur " +"updraftplus.com." + +#: class/class-mainwp-child-updraft-plus-backups.php:486 +msgid "You entered an email address that was not recognised by UpdraftPlus.Com" +msgstr "" +"Vous avez entré une adresse courriel qui n'a pas été reconnue par " +"UpdraftPlus.com" + +#: class/class-mainwp-child-updraft-plus-backups.php:490 +msgid "Your email address and password were not recognised by UpdraftPlus.Com" +msgstr "" +"Votre adresse courriel et votre mot de passe n'ont pas été reconnus par " +"UpdraftPlus.com" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:993 +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +#, php-format +msgid "Failure: No %s was given." +msgstr "Échec : Aucun %s n'a été fourni." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:993 +msgid "user" +msgstr "utilisateur" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +msgid "host" +msgstr "hôte" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +msgid "database name" +msgstr "nom de la base de données" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1022 +msgid "database connection attempt failed" +msgstr "la tentative de connexion à la base de données a échoué" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1030 +msgid "" +"Connection failed: check your access details, that the database server is " +"up, and that the network connection is not firewalled." +msgstr "" +"Echec de connexion : vérifiez vos données d'accès, que le serveur de base de " +"données est bien en marche et que la connexion réseau n'est pas protégée par " +"un pare-feu." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1050 +#, php-format +msgid "%s table(s) found." +msgstr "%s table(s) trouvée(s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1058 +#, php-format +msgid "%1$s total table(s) found; %2$s with the indicated prefix." +msgstr "%1$s(s) table(s) totale(s) trouvée(s) ; %2$s avec le préfixe indiqué." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1065 +msgid "Messages:" +msgstr "Messages :" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1078 +msgid "Connection succeeded." +msgstr "Connexion réussie." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1080 +msgid "Connection failed." +msgstr "Connexion échouée." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +#: class/class-mainwp-child-updraft-plus-backups.php:1132 +msgid "Start backup" +msgstr "Démarrer la sauvegarde" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +msgid "" +"OK. You should soon see activity in the \"Last log message\" field below." +msgstr "" +"OK. Vous devriez bientôt voir l'activité dans le champ \"Dernier message " +"journal\" ci-dessous." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1187 +msgid "Nothing yet logged" +msgstr "Rien n'a encore été enregistré" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1220 +#, php-format +msgid "incremental backup; base backup: %s" +msgstr "sauvegarde incrémentielle ; sauvegarde de base : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1232 +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:3891 +#, php-format +msgid "Warning: %s" +msgstr "Avertissements : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1248 +msgid "Download log file" +msgstr "Télécharge le journal" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1252 +msgid "No backup has been completed." +msgstr "Aucune sauvegarde n'a été effectuée." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1307 +#: class/class-mainwp-child-updraft-plus-backups.php:1392 +msgid "At the same time as the files backup" +msgstr "En même temps que la sauvegarde des fichiers" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1315 +#: class/class-mainwp-child-updraft-plus-backups.php:1383 +#: class/class-mainwp-child-updraft-plus-backups.php:1401 +msgid "Nothing currently scheduled" +msgstr "Rien de prévu pour le moment" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1411 +msgid "Files" +msgstr "Fichiers" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1412 +#: class/class-mainwp-child-updraft-plus-backups.php:1976 +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +msgid "Database" +msgstr "Base de données" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1413 +msgid "Time now" +msgstr "Maintenant" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1484 +msgid "Backup set not found" +msgstr "La sauvegarde avec ID %s introuvable " + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1575 +msgid "The backup set has been removed." +msgstr "Le jeu de sauvegarde a été supprimé." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1576 +#, php-format +msgid "Local archives deleted: %d" +msgstr "Archives locales supprimées : %d" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1577 +#, php-format +msgid "Remote archives deleted: %d" +msgstr "Importer vers un emplacement distant ( à %d%% )" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1656 +msgid "Existing Backups" +msgstr "Sauvegardes existantes" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1873 +#, php-format +msgid "" +"The backup archive for this file could not be found. The remote storage " +"method in use (%s) does not allow us to retrieve files. To perform any " +"restoration using UpdraftPlus, you will need to obtain a copy of this file " +"and place it inside UpdraftPlus's working folder" +msgstr "" +"L'archive de sauvegarde n'a pas été trouvée. La méthode de stockage distant " +"(%s) ne nous permet pas de rechercher les fichiers manquants. Pour lancer " +"une restauration avec UpdraftPlus, vous devrez placer une copie de cette " +"archive dans le répertoire de travail d'UpdraftPlus" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1928 +msgid "No such backup set exists" +msgstr "Ce lot de sauvegarde n'existe pas" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1947 +#, php-format +msgid "" +"The PHP setup on this webserver allows only %s seconds for PHP to run, and " +"does not allow this limit to be raised. If you have a lot of data to import, " +"and if the restore operation times out, then you will need to ask your web " +"hosting company for ways to raise this limit (or attempt the restoration " +"piece-by-piece)." +msgstr "" +"La configuration PHP sur ce serveur web n'autorise que des %s de secondes " +"pour PHP, et ne permet pas d'augmenter cette limite. Si vous avez beaucoup " +"de données à importer, et si l'opération de restauration est terminée, vous " +"devrez demander à votre hébergeur de trouver des moyens d'augmenter cette " +"limite (ou de tenter la restauration pièce par pièce)." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"This backup set was not known by UpdraftPlus to be created by the current " +"WordPress installation, but was found in remote storage." +msgstr "" +"Ce jeu de sauvegarde n'était pas connu par UpdraftPlus pour être créé par " +"l'installation actuelle de WordPress, mais a été trouvé dans un stockage " +"distant." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"You should make sure that this really is a backup set intended for use on " +"this website, before you restore (rather than a backup set of an unrelated " +"website that was using the same storage location)." +msgstr "" +"Vous devez vous assurer qu'il s'agit bien d'un jeu de sauvegarde destiné à " +"être utilisé sur ce site web, avant de le restaurer (plutôt qu'un jeu de " +"sauvegarde d'un site web non apparenté qui utilisait le même emplacement de " +"stockage)." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1966 +msgid "" +"Only the WordPress database can be restored; you will need to deal with the " +"external database manually." +msgstr "" +"Seule la base de données WordPress peut être restaurée ; vous devrez traiter " +"manuellement avec la base de données externe." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:1982 +#: class/class-mainwp-child-updraft-plus-backups.php:3300 +#, php-format +msgid "Backup created by unknown source (%s) - cannot be restored." +msgstr "" +"Sauvegarde créée par une source inconnue (%s) - ne peut pas être restaurée." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2020 +#, php-format +msgid "File not found (you need to upload it): %s" +msgstr "Fichier introuvable (vous devez le télécharger) : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2022 +#, php-format +msgid "File was found, but is zero-sized (you need to re-upload it): %s" +msgstr "" +"Le fichier a été trouvé, mais il est de taille zéro (vous avez besoin de le " +"recharger) : %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2026 +#, php-format +msgid "" +"File (%1$s) was found, but has a different size (%2$s) from what was " +"expected (%3$s) - it may be corrupt." +msgstr "" +"Le fichier (%1$s) a été trouvé, mais a une taille (%2$s) différente de ce " +"qui était attendu (%3$s) - Il peut être corrompu." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2048 +#, php-format +msgid "" +"This multi-archive backup set appears to have the following archives " +"missing: %s" +msgstr "" +"Ce jeu de sauvegarde multi-archives semble avoir les archives suivantes " +"manquantes : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2053 +msgid "" +"The backup archive files have been successfully processed. Now press Restore " +"again to proceed." +msgstr "" +"Les fichiers d'archive de sauvegarde ont bien été traités. Appuyer de " +"nouveau sur Restaurer pour continuer." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2055 +msgid "" +"The backup archive files have been processed, but with some warnings. If all " +"is well, then now press Restore again to proceed. Otherwise, cancel and " +"correct any problems first." +msgstr "" +"Les fichiers d'archive de sauvegarde ont été traités, mais avec quelques " +"avertissements. Si tout va bien, appuyez de nouveau sur Restaurer pour " +"continuer. Sinon, annulez et corrigez d'abord tous les problèmes." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2057 +msgid "" +"The backup archive files have been processed, but with some errors. You will " +"need to cancel and correct any problems before retrying." +msgstr "" +"Les fichiers archive de sauvegarde ont été traités, mais avec quelques " +"erreurs. Vous devrez annuler et corriger tout problème avant de réessayer." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2085 +msgid "Remove old directories" +msgstr "Supprimer les anciens répertoires" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2088 +msgid "Old directories successfully removed." +msgstr "Anciens répertoires correctement supprimés." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2089 +msgid "Now press Restore again to proceed." +msgstr "Appuyez à nouveau sur Restaurer pour continuer." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2092 +msgid "" +"Old directory removal failed for some reason. You may want to do this " +"manually." +msgstr "" +"La suppression de l'ancien répertoire a échoué pour une raison quelconque. " +"Vous pouvez le faire manuellement." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2139 +#: class/class-mainwp-child-updraft-plus-backups.php:2187 +#: class/class-mainwp-child-updraft-plus-backups.php:2196 +msgid "Failed" +msgstr "Echec" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "Error: %s" +msgstr "Erreur: %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +msgid "" +"Decryption failed. The database file is encrypted, but you have no " +"encryption key entered." +msgstr "" +"Le décryptage a échoué. Le fichier de la base de données est crypté, mais " +"aucune clé de cryptage n'a été saisie." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +msgid "Decryption failed. The database file is encrypted." +msgstr "Le décryptage a échoué. Le fichier de la base de données est crypté." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2293 +msgid "Failed to write out the decrypted database to the filesystem." +msgstr "" +"Échec de l'écriture de la base de données déchiffrée sur le système de " +"fichiers." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2299 +#: class/class-mainwp-child-updraft-plus-backups.php:2548 +msgid "" +"Decryption failed. The most likely cause is that you used the wrong key." +msgstr "" +"Le décryptage a échoué. La cause la plus probable est que vous avez utilisé " +"la mauvaise clé." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2307 +#: class/class-mainwp-child-updraft-plus-backups.php:2555 +#, php-format +msgid "" +"The database is too small to be a valid WordPress database (size: %s Kb)." +msgstr "" +"La base de données est trop petite pour être une base de données WordPress " +"valide (taille : %s Kb)." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2316 +#: class/class-mainwp-child-updraft-plus-backups.php:2563 +msgid "Failed to open database file." +msgstr "Échec d'ouverture du fichier de base de données." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +msgid "Backup of:" +msgstr "Sauvegarde de :" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +#, php-format +msgid "(version: %s)" +msgstr "( version : %s )" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:2645 +#: class/class-mainwp-child-updraft-plus-backups.php:2664 +msgid "" +"This backup set is from a different site - this is not a restoration, but a " +"migration. You need the Migrator add-on in order to make this work." +msgstr "" +"Ce jeu de sauvegarde provient d'un site différent - il ne s'agit pas d'une " +"restauration, mais d'une migration. Vous avez besoin de l'add-on Migrator " +"pour que cela fonctionne." + +#: class/class-mainwp-child-updraft-plus-backups.php:2388 +#: class/class-mainwp-child-updraft-plus-backups.php:2677 +#, php-format +msgid "" +"You are importing from a newer version of WordPress (%1$s) into an older one " +"(%2$s). There are no guarantees that WordPress can handle this." +msgstr "" +"Vous importez à partir d’une version récente de WordPress (%1$s) dans une " +"version ancienne (%2$s). Il n’y a aucune garantie que WordPress puisse gérer " +"cela." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"The site in this backup was running on a webserver with version %1$s of " +"%2$s. " +msgstr "" +"Le site de cette sauvegarde s’exécutait sur un serveur Web avec la version " +"%1$s de %2$s. " + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"This is significantly newer than the server which you are now restoring onto " +"(version %s)." +msgstr "" +"C'est significativement plus récent que le serveur sur lequel vous êtes en " +"train de restaurer (version %s)." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"You should only proceed if you cannot update the current server and are " +"confident (or willing to risk) that your plugins/themes/etc. are compatible " +"with the older %s version." +msgstr "" +"Vous ne devriez procéder que si vous ne pouvez pas mettre à jour le serveur " +"actuel et que vous êtes sûr (ou prêt à risquer) que vos plugins/thèmes/etc. " +"sont compatibles avec l'ancienne version %s." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"Any support requests to do with %s should be raised with your web hosting " +"company." +msgstr "" +"Toute demande d'assistance en rapport avec %s doit être soulevée auprès de " +"votre hébergeur." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2401 +#: class/class-mainwp-child-updraft-plus-backups.php:2690 +msgid "Backup label:" +msgstr "Sauvegarde" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "" +"You are running on WordPress multisite - but your backup is not of a " +"multisite site." +msgstr "" +"Vous êtes en cours d'exécution sur WordPress multisite - mais votre " +"sauvegarde n'est pas d'un site multisite." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"both the multisite and migrator add-ons." +msgstr "" +"L'importation d'un site WordPress ordinaire dans une installation multisite " +"nécessite les modules complémentaires multisite et migrateur." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "Warning:" +msgstr "Attention:" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"Your backup is of a WordPress multisite install; but this site is not. Only " +"the first site of the network will be accessible." +msgstr "" +"Votre sauvegarde est d'une installation multisite WordPress ; mais ce site " +"ne l'est pas. Seul le premier site du réseau sera accessible." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"If you want to restore a multisite backup, you should first set up your " +"WordPress installation as a multisite." +msgstr "" +"Si vous souhaitez restaurer une sauvegarde multisite, vous devez d'abord " +"configurer votre installation WordPress en tant que multisite." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2426 +#: class/class-mainwp-child-updraft-plus-backups.php:2710 +msgid "Site information:" +msgstr "Informations sur le site :" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2459 +#: class/class-mainwp-child-updraft-plus-backups.php:2892 +#, php-format +msgid "This database backup is missing core WordPress tables: %s" +msgstr "" +"Cette sauvegarde de base de données est manquante dans les tables " +"WordPress : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2464 +#: class/class-mainwp-child-updraft-plus-backups.php:2900 +msgid "" +"UpdraftPlus was unable to find the table prefix when scanning the database " +"backup." +msgstr "" +"UpdraftPlus n'a pas pu trouver le préfixe de la table lors de la " +"numérisation de la sauvegarde de la base de données." + +#: class/class-mainwp-child-updraft-plus-backups.php:2627 +#, php-format +msgid "" +"The website address in the backup set (%1$s) is slightly different from that " +"of the site now (%2$s). This is not expected to be a problem for restoring " +"the site, as long as visits to the former address still reach the site." +msgstr "" +"L’adresse du site dans le jeu de sauvegarde (%1$s) est légèrement différente " +"de celle du site actuel (%2$s). Cela ne devrait pas être un problème pour la " +"restauration du site, tant que les visites à l’ancienne adresse atteignent " +"toujours le site." + +#: class/class-mainwp-child-updraft-plus-backups.php:2632 +#, php-format +msgid "" +"This backup set is of this site, but at the time of the backup you were " +"using %1$s, whereas the site now uses %2$s." +msgstr "" +"Cet ensemble de sauvegarde provient de ce site, mais au moment de la " +"sauvegarde vous utilisiez %1$s, alors que le site utilise maintenant %2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#, php-format +msgid "" +"This restoration will work if you still have an SSL certificate (i.e. can " +"use https) to access the site. Otherwise, you will want to use %s to search/" +"replace the site address so that the site can be visited without https." +msgstr "" +"Cette restauration fonctionnera si vous avez toujours un certificat SSL " +"(c'est-à-dire que vous pouvez utiliser https) pour accéder au site. Sinon, " +"vous voudrez utiliser %s pour rechercher/remplacer l'adresse du site afin " +"que le site puisse être visité sans https." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +msgid "the migrator add-on" +msgstr "l'ajout migrator" + +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +#, php-format +msgid "" +"As long as your web hosting allows http (i.e. non-SSL access) or will " +"forward requests to https (which is almost always the case), this is no " +"problem. If that is not yet set up, then you should set it up, or use %s so " +"that the non-https links are automatically replaced." +msgstr "" +"Tant que votre hébergement web permet http (i.e. accès non-SSL) ou " +"transmettra les demandes à https (ce qui est presque toujours le cas), ce " +"n'est pas un problème. Si ce n'est pas encore configuré, alors vous devriez " +"le configurer, ou utiliser %s pour que les liens non-https soient " +"automatiquement remplacés." + +#: class/class-mainwp-child-updraft-plus-backups.php:2648 +msgid "" +"You can search and replace your database (for migrating a website to a new " +"location/URL) with the Migrator add-on - follow this link for more " +"information" +msgstr "" +"Vous pouvez rechercher et remplacer votre base de données (pour migrer un " +"site Web vers un nouvel endroit/URL) avec le module complémentaire Migrator " +"- suivez ce lien pour plus d'informations" + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "" +"You are using the %1$s webserver, but do not seem to have the %2$s module " +"loaded." +msgstr "" +"Vous utilisez le serveur %1$s, mais le module %2$s ne semble pas chargé." + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "You should enable %1$s to make any pretty permalinks (e.g. %2$s) work" +msgstr "" +"Vous devez autorise %1$s à faire fonctionner tous les permaliens améliorés " +"(ex. : %2$s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "It will be imported as a new site." +msgstr "Il sera importé en tant que nouveau site." + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "Please read this link for important information on this process." +msgstr "" +"Veuillez lire ce lien pour des informations importantes sur ce processus." + +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#, php-format +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"%s." +msgstr "" +"Importer un site WordPress ordinaire dans une installation multisite " +"nécessite %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "" +"The database backup uses MySQL features not available in the old MySQL " +"version (%s) that this site is running on." +msgstr "" +"La sauvegarde de la base de données utilise des fonctionnalités MySQL non " +"disponibles dans l'ancienne version de MySQL (%s) sur laquelle ce site " +"fonctionne." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +msgid "You must upgrade MySQL to be able to use this database." +msgstr "" +"Vous devez mettre à jour MySQL pour pouvoir utiliser cette base de données." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the character set (%s) which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"the character sets (%s) which you are trying to import." +msgstr[0] "" +"Le serveur de base de données sur lequel tourne ce site WordPress ne " +"supporte pas le jeu de caractères (%s) que vous essayez d'importer." +msgstr[1] "" +"Le serveur de base de données sur lequel fonctionne ce site WordPress ne " +"supporte pas les jeux de caractères (%s) que vous essayez d'importer." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "" +"You can choose another suitable character set instead and continue with the " +"restoration at your own risk." +msgstr "" +"Vous pouvez choisir un autre jeu de caractères approprié et poursuivre la " +"restauration à vos risques et périls." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "Go here for more information." +msgstr "Cliquez ici pour plus d'informations." + +#: class/class-mainwp-child-updraft-plus-backups.php:2797 +msgid "Your chosen character set to use instead:" +msgstr "Le jeu de caractères que vous avez choisi d'utiliser à la place :" + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the collation (%s) used in the database which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"multiple collations (%s) used in the database which you are trying to import." +msgstr[0] "" +"Le serveur de base de données sur lequel fonctionne ce site WordPress ne " +"supporte pas la collation (%s) utilisée dans la base de données que vous " +"essayez d'importer." +msgstr[1] "" +"Le serveur de base de données sur lequel ce site WordPress fonctionne ne " +"supporte pas les collations multiples (%s) utilisées dans la base de données " +"que vous essayez d'importer." + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +msgid "" +"You can choose another suitable collation instead and continue with the " +"restoration (at your own risk)." +msgstr "" +"Vous pouvez choisir une autre collation appropriée et poursuivre la " +"restauration (à vos risques et périls)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2846 +msgid "Your chosen replacement collation" +msgstr "L'ensemble de remplacement que vous avez choisi" + +#: class/class-mainwp-child-updraft-plus-backups.php:2895 +#, php-format +msgid "This database backup has the following WordPress tables excluded: %s" +msgstr "" +"Cette sauvegarde de base de données exclut les tables WordPress suivantes : " +"%s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your web server's PHP installation has these functions disabled: %s." +msgstr "" +"L'installation de PHP de votre serveur web a les fonctions suivantes " +"désactivées : %s." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your hosting company must enable these functions before %s can work." +msgstr "" +"Votre hébergeur doit activer ces fonctions avant que %s puisse fonctionner." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +msgid "restoration" +msgstr "restauration" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2959 +msgid "" +"The database file appears to have been compressed twice - probably the " +"website you downloaded it from had a mis-configured webserver." +msgstr "" +"Le fichier base de données semble avoir été compressé deux fois - " +"probablement que le site Web à partir duquel vous l'avez téléchargé avait un " +"serveur Web mal configuré." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2966 +#: class/class-mainwp-child-updraft-plus-backups.php:2990 +msgid "The attempt to undo the double-compression failed." +msgstr "La tentative d'annuler la double compression a échoué." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:2992 +msgid "The attempt to undo the double-compression succeeded." +msgstr "La tentative de défaire la double compression a réussi." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3038 +msgid "You have not yet made any backups." +msgstr "Vous n'avez pas encore fait de vente." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3053 +msgid "Backup date" +msgstr "Date de sauvegarde" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3054 +msgid "Backup data (click to download)" +msgstr "Sauvegarde des données (cliquez pour télécharger)" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3088 +msgid "remote site" +msgstr "site distant" + +#: class/class-mainwp-child-updraft-plus-backups.php:3089 +#, php-format +msgid "Remote storage: %s" +msgstr "Stockage à distance : %s" + +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +msgid "Go to Restore" +msgstr "Aller à la restauration" + +# @ updraftplus +# @ mainwp-child +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +#: class/class-mainwp-clone-page.php:266 class/class-mainwp-clone-page.php:1236 +msgid "Restore" +msgstr "Restaurer" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete this backup set" +msgstr "Supprimer ce jeu de sauvegarde" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "" +"If you are seeing more backups than you expect, then it is probably because " +"the deletion of old backup sets does not happen until a fresh backup " +"completes." +msgstr "" +"Si vous voyez plus de sauvegardes que prévu, c'est probablement parce que la " +"suppression des anciens jeux de sauvegarde n'a lieu que lorsqu'une nouvelle " +"sauvegarde est terminée." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "(Not finished)" +msgstr "(Incomplète)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3229 +#: class/class-mainwp-child-updraft-plus-backups.php:3299 +msgid "unknown source" +msgstr "source inconnue" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +#, php-format +msgid "Database (created by %s)" +msgstr "Base de données (créée par %s)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3237 +msgid "External database" +msgstr "Base de données externe" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3297 +#, php-format +msgid "Backup created by: %s." +msgstr "Sauvegarde créée par : %s." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files and database WordPress backup (created by %s)" +msgstr "" +"Sauvegarde des fichiers et de la base de données WordPress (créée par %s)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files backup (created by %s)" +msgstr "Sauvegarde des fichiers (créée par %s)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3332 +msgid "Press here to download" +msgstr "Télécharger" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3338 +#, php-format +msgid "(%d archive(s) in set)." +msgstr "(%d archive(s) in set)." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3341 +msgid "" +"You appear to be missing one or more archives from this multi-archive set." +msgstr "" +"Il semble vous manquer une ou plusieurs archives de cet ensemble d'archives " +"multiples." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3708 +msgid "The backup apparently succeeded and is now complete" +msgstr "La sauvegarde a réussie. Elle est maintenant terminée" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3752 +msgid "Backup begun" +msgstr "Sauvegarde commencée" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3756 +msgid "Creating file backup zips" +msgstr "Essai de création d'un fichier robots.txt" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3770 +msgid "Created file backup zips" +msgstr "Zips de sauvegarde de fichiers créés" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3774 +msgid "Uploading files to remote storage" +msgstr "Téléchargement vers des serveurs externes.." + +#: class/class-mainwp-child-updraft-plus-backups.php:3781 +#, php-format +msgid "(%1$s%%, file %2$s of %3$s)" +msgstr "(%1$s%%, fichier %2$s de %3$s)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3786 +msgid "Pruning old backup sets" +msgstr "L'élagage des anciens jeux de sauvegarde" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3790 +msgid "Waiting until scheduled time to retry because of errors" +msgstr "Attendre jusqu'au moment prévu pour réessayer en raison d'erreurs" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3794 +msgid "Backup finished" +msgstr "Sauvegarde terminée" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3809 +msgid "Created database backup" +msgstr "Création d'une sauvegarde de la base de données" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3821 +msgid "Creating database backup" +msgstr "Création d'une sauvegarde de la base de données" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3823 +#, php-format +msgid "table: %s" +msgstr "table : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3837 +msgid "Encrypting database" +msgstr "Chiffrement de la base de données" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3846 +msgid "Encrypted database" +msgstr "Base de données cryptée" + +#: class/class-mainwp-child-updraft-plus-backups.php:3867 +#, php-format +msgid "next resumption: %1$d (after %2$ss)" +msgstr "prochaine reprise : %1$d (après %2$s s)" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3868 +#, php-format +msgid "last activity: %ss ago" +msgstr "dernière activité : il y a %ss" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3879 +#, php-format +msgid "Job ID: %s" +msgstr "Job ID : %s" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3882 +msgid "show log" +msgstr "afficher le journal" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "" +"Note: the progress bar below is based on stages, NOT time. Do not stop the " +"backup simply because it seems to have remained in the same place for a " +"while - that is normal." +msgstr "" +"Note : la barre de progression ci-dessous est basée sur les étapes et NON " +"sur le temps. N'arrêtez pas la sauvegarde simplement parce qu'elle semble " +"être restée au même endroit pendant un certain temps - c'est normal." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "delete schedule" +msgstr "Supprimer le calendrier?" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3941 +msgid "Job deleted" +msgstr "Le job a été supprimé" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:3953 +msgid "Could not find that job - perhaps it has already finished?" +msgstr "Job non trouvé - peut-être est-il déjà terminé ?" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4008 +msgid "Error: unexpected file read fail" +msgstr "Erreur : échec inattendu de lecture d'un fichier" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4015 +#: class/class-mainwp-child-updraft-plus-backups.php:4018 +msgid "The log file could not be read." +msgstr "Le fichier journal n'a pas pu être lu." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4047 +msgid "Download failed" +msgstr "Le téléchargement a échoué" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4065 +msgid "File ready." +msgstr "Dossier prêt." + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4077 +msgid "Download in progress" +msgstr "Téléchargement en cours" + +# @ updraftplus +#: class/class-mainwp-child-updraft-plus-backups.php:4080 +msgid "No local copy present." +msgstr "Aucune copie locale n'est présente." + +#: class/class-mainwp-child-users.php:392 +msgid "ERROR: Please enter a username." +msgstr "ERREUR: SVP entrer un nom d'utilisateur." + +#: class/class-mainwp-child-users.php:400 +msgid "ERROR: Please enter a password." +msgstr "ERREUR : Veuillez saisir votre mot de passe." + +#: class/class-mainwp-child-users.php:404 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "" +"Erreur: mot de passe ne peut pas contenir le caractère \"\\" +"\"." + +#: class/class-mainwp-child-users.php:408 +msgid "" +"ERROR: Please enter the same password in both password " +"fields." +msgstr "" +"ERREUR : les deux mots de passe ne sont pas identiques." + +#: class/class-mainwp-child-users.php:421 +msgid "ERROR: Sorry, that username is not allowed." +msgstr "" +"ERREUR : Désolé, mais ce nom d’utilisateur n’est pas " +"autorisé." + +#: class/class-mainwp-child-users.php:427 +msgid "ERROR: Please enter an email address." +msgstr "ERREUR : veuillez saisir une adresse de messagerie." + +#: class/class-mainwp-child-users.php:429 +msgid "ERROR: The email address isn’t correct." +msgstr "Votre adresse courriel est invalide." + +#: class/class-mainwp-child-users.php:431 +msgid "" +"ERROR: This email is already registered, please choose " +"another one." +msgstr "" +"Erreur : cet e-mail est déjà enregistré, veuillez en " +"choisir un autre." + +#: class/class-mainwp-child-users.php:537 +msgid "Administrator password could not be changed." +msgstr "Le mot de passe de l'administrateur n'a pas pu être modifié." + +# @ mainwp-child +#: class/class-mainwp-child-users.php:585 +msgid "Undefined error!" +msgstr "Erreur non définie !" + +# @ default +#: class/class-mainwp-child-users.php:598 +#, php-format +msgid "Username: %s" +msgstr "Nom d’utilisateur : %s" + +# @ default +#: class/class-mainwp-child-users.php:599 +#, php-format +msgid "Password: %s" +msgstr "Mot de passe: %s" + +# @ default +#: class/class-mainwp-child-users.php:602 +#, php-format +msgid "[%s] Your username and password" +msgstr "[%s] Votre nom d’utilisateur et mot de passe" + +#: class/class-mainwp-child-wordfence.php:549 +msgid "Please install the Wordfence plugin on the child site." +msgstr "Veuillez installer l'extension Wordfence sur le site client." + +#: class/class-mainwp-child-wordfence.php:1855 +#: class/class-mainwp-child-wordfence.php:1860 +msgid "An error occurred: " +msgstr "Une erreur est survenue : " + +# @ mainwp-child +#: class/class-mainwp-child-wordfence.php:1857 +msgid "Invalid response: " +msgstr "Réponse non valide : " + +#: class/class-mainwp-child-wordfence.php:1884 +msgid "An error occurred: Invalid options format received." +msgstr "Une erreur est survenue: Réception d’un format non valide des options." + +#: class/class-mainwp-child-wordfence.php:2400 +#, php-format +msgid "An error occurred while saving the configuration: %s" +msgstr "" +"Une erreur s’est produite lors de l’enregistrement de la configuration : %s" + +#: class/class-mainwp-child-wordfence.php:2408 +#, php-format +msgid "Errors occurred while saving the configuration: %s" +msgstr "" +"Des erreurs se sont produites lors de l’enregistrement de la configuration : " +"%s" + +#: class/class-mainwp-child-wordfence.php:2413 +msgid "Errors occurred while saving the configuration." +msgstr "" +"Des erreurs se sont produites lors de l’enregistrement de la configuration." + +#: class/class-mainwp-child-wordfence.php:2421 +msgid "An error occurred while saving the configuration." +msgstr "" +"Une erreur s'est produite lors de l'enregistrement de la configuration." + +#: class/class-mainwp-child-wordfence.php:2431 +msgid "No configuration changes were provided to save." +msgstr "" +"Aucune modification de configuration n’a été fournie pour l’enregistrement." + +#: class/class-mainwp-child-wordfence.php:3196 +msgid "IP Detection" +msgstr "Détection IP" + +#: class/class-mainwp-child-wordfence.php:3197 +msgid "Methods of detecting a visitor's IP address." +msgstr "Méthodes de détection de l’adresse IP d’un visiteur." + +#: class/class-mainwp-child-wordfence.php:3208 +msgid "IPs" +msgstr "IPs" + +#: class/class-mainwp-child-wordfence.php:3210 +msgid "Used" +msgstr "Utilisé" + +#: class/class-mainwp-child-wordfence.php:3276 +msgid "WordPress Settings" +msgstr "Réglages WordPress" + +#: class/class-mainwp-child-wordfence.php:3277 +msgid "WordPress version and internal settings/constants." +msgstr "Version WordPress et paramètres / constantes internes." + +#: class/class-mainwp-child-wordfence.php:3495 +msgid "WordPress Plugins" +msgstr "Extensions WordPress" + +#: class/class-mainwp-child-wordfence.php:3496 +msgid "Status of installed plugins." +msgstr "État des extensions installées." + +#: class/class-mainwp-child-wordfence.php:3531 +msgid "Must-Use WordPress Plugins" +msgstr "Extensiions WordPress indispensables" + +#: class/class-mainwp-child-wordfence.php:3532 +msgid "" +"WordPress \"mu-plugins\" that are always active, incluing those provided by " +"hosts." +msgstr "" +"Des extension « mu-plugins » WordPress toujours actives, y compris celles " +"fournies par les hébergeurs." + +#: class/class-mainwp-child-wordfence.php:3569 +msgid "Themes" +msgstr "Thèmes" + +#: class/class-mainwp-child-wordfence.php:3570 +msgid "Status of installed themes." +msgstr "État des thèmes installés." + +#: class/class-mainwp-child-wordfence.php:3608 +msgid "Cron Jobs" +msgstr "Tâches Cron" + +#: class/class-mainwp-child-wordfence.php:3609 +msgid "List of WordPress cron jobs scheduled by WordPress, plugins, or themes." +msgstr "" +"Liste des tâches de WordPress cron programmés par WordPress, extensions ou " +"thèmes." + +#: class/class-mainwp-child-wordfence.php:3662 +msgid "Database Tables" +msgstr "Tables de la base de données" + +#: class/class-mainwp-child-wordfence.php:3663 +msgid "Database table names, sizes, timestamps, and other metadata." +msgstr "" +"Noms de table de base de données, tailles, timestamps et autres métadonnées." + +#: class/class-mainwp-child-wordfence.php:3713 +msgid "Log Files" +msgstr "Fichiers journaux" + +#: class/class-mainwp-child-wordfence.php:3714 +msgid "PHP error logs generated by your site, if enabled by your host." +msgstr "" +"Journaux d’erreurs PHP générés par votre site, si activé par votre hôte." + +#: class/class-mainwp-child-wp-rocket.php:426 +msgid "Please install WP Rocket plugin on child website" +msgstr "Merci d'installer l'extension WP Rocket sur le site web client" + +#: class/class-mainwp-child-wp-seopress.php:91 +msgid "" +"Settings could not be exported. Missing function `seopress_return_settings`" +msgstr "" +"Les paramètres n'ont pas pu être exportés. Fonction manquante " +"`seopress_return_settings`" + +#: class/class-mainwp-child-wp-seopress.php:98 +msgid "Export completed" +msgstr "Exportation terminée" + +#: class/class-mainwp-child-wp-seopress.php:112 +msgid "" +"Settings could not be imported. Missing function " +"`seopress_do_import_settings`" +msgstr "" +"Les paramètres n'ont pas pu être importés. Fonction manquante " +"`seopress_do_import_settings`" + +#: class/class-mainwp-child-wp-seopress.php:120 +msgid "Import completed" +msgstr "Importation terminée" + +#: class/class-mainwp-child-wp-seopress.php:134 +msgid "" +"Settings could not be saved. Missing function `seopress_mainwp_save_settings`" +msgstr "" +"Les paramètres n'ont pas pu être sauvegardés. Fonction manquante " +"`seopress_mainwp_save_settings`" + +#: class/class-mainwp-child-wp-seopress.php:143 +msgid "Settings could not be saved. Missing option name." +msgstr "Les paramètres n'ont pas pu être enregistrés. Nom d'option manquant." + +#: class/class-mainwp-child-wp-seopress.php:148 +#: class/class-mainwp-child-wp-seopress.php:173 +#: class/class-mainwp-child-wp-seopress.php:208 +msgid "SEOPress Pro plugin is not active on child site." +msgstr "Le plugin SEOPress Pro n'est pas actif sur le site de l'enfant." + +# @ mainwp-child +#: class/class-mainwp-child-wp-seopress.php:158 +#: class/class-mainwp-child-wp-seopress.php:191 +#: class/class-mainwp-child-wp-seopress.php:239 +msgid "Save successful" +msgstr "Enregistrement réussi" + +#: class/class-mainwp-child-wp-seopress.php:178 +msgid "" +"Settings could not be saved. Missing function `seopress_save_pro_licence`" +msgstr "" +"Les paramètres n'ont pas pu être sauvegardés. Fonction manquante " +"`seopress_save_pro_licence`" + +#: class/class-mainwp-child-wp-seopress.php:213 +msgid "" +"Licence could not be reset. Missing function `seopress_reset_pro_licence`" +msgstr "" +"La licence n'a pas pu être réinitialisée. Fonction manquante " +"`seopress_reset_pro_licence`" + +# @ mainwp-child +#: class/class-mainwp-child-wp-seopress.php:219 +msgid "Reset successful" +msgstr "Reset successful" + +#: class/class-mainwp-child-wp-seopress.php:233 +msgid "" +"Action could not be executed. Missing function `seopress_flush_rewrite_rules`" +msgstr "" +"L'action n'a pas pu être exécutée. Fonction manquante " +"`seopress_flush_rewrite_rules`" + +# @ it-l10n-better-wp-security +#: class/class-mainwp-child.php:512 class/class-mainwp-pages.php:586 +msgid "Settings" +msgstr "Paramètres" + +#: class/class-mainwp-client-report-base.php:878 +msgid "Guest" +msgstr "Invité" + +#: class/class-mainwp-client-report-base.php:905 +msgid "Scan complete. Congratulations, no new problems found." +msgstr "Analyse terminée. Félicitations, aucun nouveau problème trouvé." + +#: class/class-mainwp-client-report-base.php:966 +#: class/class-mainwp-client-report-base.php:975 +msgid "Site Blacklisted" +msgstr "Site sur la liste noire" + +#: class/class-mainwp-client-report-base.php:969 +msgid "Site With Warnings" +msgstr "Site avec des avertissements" + +#: class/class-mainwp-client-report-base.php:973 +msgid "Verified Clear" +msgstr "Vérifié comme sûr" + +#: class/class-mainwp-client-report-base.php:975 +msgid "Trusted" +msgstr "Approuvé" + +#: class/class-mainwp-client-report-base.php:995 +msgid "Delete all post revisions" +msgstr "Supprimer toutes les révisions de publication" + +#: class/class-mainwp-client-report-base.php:996 +msgid "Delete all post revisions, except for the last:" +msgstr "Supprimez toutes les révisions de publication, sauf la dernière :" + +#: class/class-mainwp-client-report-base.php:997 +msgid "Delete all auto draft posts" +msgstr "Supprimer tous les brouillons de publication automatiques" + +#: class/class-mainwp-client-report-base.php:998 +msgid "Delete trash posts" +msgstr "Supprimer les publications mises à la corbeille" + +#: class/class-mainwp-client-report-base.php:999 +msgid "Delete spam comments" +msgstr "Supprimer les commentaires indésirables" + +#: class/class-mainwp-client-report-base.php:1000 +msgid "Delete pending comments" +msgstr "Supprimer les commentaires en attente" + +#: class/class-mainwp-client-report-base.php:1001 +msgid "Delete trash comments" +msgstr "Supprimer les commentaires mis à la corbeille" + +#: class/class-mainwp-client-report-base.php:1002 +msgid "Delete tags with 0 posts associated" +msgstr "Supprimer les étiquettes avec 0 publication associée" + +#: class/class-mainwp-client-report-base.php:1003 +msgid "Delete categories with 0 posts associated" +msgstr "Supprimer les catégories avec 0 publication associée" + +#: class/class-mainwp-client-report-base.php:1004 +msgid "Optimize database tables" +msgstr "Optimiser les tables de la base de données" + +#: class/class-mainwp-client-report.php:148 +msgid "No MainWP Child Reports plugin installed." +msgstr "Aucun extension MainWP Child Reports installée." + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:161 +#: class/class-mainwp-clone-install.php:164 +msgid "This is not a full backup." +msgstr "Aucune sauvegarde complète n'a encore été effectuée" + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:167 +msgid "Database backup is missing." +msgstr "La sauvegarde de la base de données est manquante." + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:223 +msgid "Cant read configuration file from the backup." +msgstr "" +"Impossible de lire le fichier de configuration à partir de la sauvegarde." + +# @ mainwp-child +#: class/class-mainwp-clone-install.php:390 +msgid "Error: unexpected end of file for database." +msgstr "Erreur : fin de fichier de la base de données inattendue." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:102 class/class-mainwp-clone-page.php:253 +msgid "File could not be uploaded." +msgstr "Le fichier ne peut pas être téléchargé." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:105 class/class-mainwp-clone-page.php:256 +msgid "" +"File is empty. Please upload something more substantial. This error could " +"also be caused by uploads being disabled in your php.ini or by post_max_size " +"being defined as smaller than upload_max_filesize in php.ini." +msgstr "" +"Le fichier est vide. Merci de télécharger quelque chose de plus substantiel. " +"Cette erreur peut aussi être causée par les téléchargements désactivés dans " +"votre fichier php.ini ou par post_max_size étant défini comme plus petit que " +"upload_max_filesize dans php.ini." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:116 +msgid "" +"Cloning is currently off - To turn on return to your main dashboard and turn " +"cloning on on the Clone page." +msgstr "" +"La duplication est actuellement désactivée - Pour l’activer aller au tableau " +"de bord principal et l’activer sur la page Dupliquer." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:129 class/class-mainwp-clone-page.php:279 +msgid "Your content directory is not writable. Please set 0755 permission to " +msgstr "" +"Votre répertoire de contenu n'est pas accessible en écriture. Merci de " +"mettre les droits 0755 pour " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:134 +msgid "Cloning process completed successfully! You will now need to click " +msgstr "Processus de clonage réussi ! Vous devrez maintenant cliquez sur " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:135 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1209 +#: class/class-mainwp-clone-page.php:1247 +msgid "here" +msgstr "ici" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:136 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1247 +msgid " to re-login to the admin and re-save permalinks." +msgstr "de re-connexion à l'admin et réenregistrer les permaliens WiordPress." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:160 class/class-mainwp-clone-page.php:288 +msgid "Upload successful." +msgstr "Téléchargement réussi." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:162 +msgid "Clone/Restore website" +msgstr "Dupliquer/restaurer le site" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:174 +msgid "" +"Cloning is currently on but no sites have been allowed, to allow sites " +"return to your main dashboard and turn cloning on on the Clone page." +msgstr "" +"La duplication est actuellement activée, mais aucun site n’a été autorisé, " +"pour permettre aux sites aller au tableau de bord principal et l’activer sur " +"la page Duplication." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "Display by:" +msgstr "Afficher par :" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "Site Name" +msgstr "Nom du site" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:180 +msgid "URL" +msgstr "URL" + +#: class/class-mainwp-clone-page.php:181 +msgid "Select Source for clone" +msgstr "Choisir la source pour la duplication" + +#: class/class-mainwp-clone-page.php:196 +msgid "The site selected above will replace this site's files and database" +msgstr "" +"Le site sélectionné ci-dessus remplacera les fichiers et la base de données " +"de ce site" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:200 +msgid "Clone website" +msgstr "Dupliquer le site" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:212 class/class-mainwp-clone-page.php:266 +msgid "Option 1:" +msgstr "Option 1 :" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:212 +msgid "Restore/Clone from backup" +msgstr "Restaurer/dupliquer depuis une sauvegarde" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:214 class/class-mainwp-clone-page.php:299 +msgid "" +"Upload backup in .zip format (Maximum filesize for your server settings: " +msgstr "" +"Télécharger la sauvegarde au format .zip (taille maximum selon les " +"paramètres de serveur) : " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:215 +msgid "" +"If you have a FULL backup created by the default MainWP Backup system you " +"may restore it by uploading here. Backups created by 3rd party plugins will " +"not work." +msgstr "" +"Si vous avez une sauvegarde complète créée par votre tableau de bord Réseau, " +"vous pouvez restaurer en téléchargeant ici." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:217 class/class-mainwp-clone-page.php:310 +msgid "A database only backup will not work." +msgstr "Une base de données de sauvegarde ne fonctionnera pas." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:222 class/class-mainwp-clone-page.php:499 +msgid "Clone/Restore Website" +msgstr "Cloner/restaurer le site web" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:283 class/class-mainwp-clone-page.php:1246 +msgid "Restore process completed successfully! You will now need to click " +msgstr "" +"Processus de restauration terminé avec succès ! Vous devrez maintenant " +"cliquez sur " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:290 class/class-mainwp-clone-page.php:314 +msgid "Restore Website" +msgstr "Restaurer le site web" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:305 +msgid "" +"If you have a FULL backup created by basic MainWP Backup system you may " +"restore it by uploading here. Backups created by 3rd party plugins will not " +"work." +msgstr "" +"Si vous avez une sauvegarde complète créée par votre tableau de bord Réseau, " +"vous pouvez restaurer en téléchargeant ici." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:371 +msgid "Option 2:" +msgstr "Option 2 :" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:371 +msgid "Restore/Clone From Server" +msgstr "Restaurer/cloner depuis le serveur" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:373 +msgid "" +"If you have uploaded a FULL backup to your server (via FTP or other means) " +"you can use this section to locate the zip file and select it. A database " +"only backup will not work." +msgstr "" +"Si vous avez téléchargé une sauvegarde complète de votre serveur (via FTP ou " +"d'autres moyens), vous pouvez utiliser cette section pour localiser le " +"fichier zip et le sélectionner. Une sauvegarde de base de données seule ne " +"fonctionnera pas." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:376 +msgid "" +"Root directory is not readable. Please contact with site administrator to " +"correct." +msgstr "" +"Le répertoire racine n'est pas lisible. Merci de contacter l'administrateur " +"du site pour correctif." + +#: class/class-mainwp-clone-page.php:395 +#, php-format +msgid "%1$sCurrent Directory:%2$s %3$s" +msgstr "%1$sRépertoire actuel :%2$s %3$s" + +# @ mainwp +#: class/class-mainwp-clone-page.php:397 +msgid "Site Root" +msgstr "Le chemin racine de ce site est :" + +# @ mainwp +# @ default +#: class/class-mainwp-clone-page.php:398 +msgid "Backup" +msgstr "Sauvegarde" + +# @ mainwp +#: class/class-mainwp-clone-page.php:401 +msgid "Uploads Folder" +msgstr "Dossier de téléchargements séparé" + +# @ mainwp +#: class/class-mainwp-clone-page.php:403 +msgid "Content Folder" +msgstr "le dossier \"wp-content\" est à l'emplacement par défaut" + +# @ mainwp +#: class/class-mainwp-clone-page.php:417 +msgid "Quick Jump:" +msgstr "Sauter vers : " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:457 +msgid "Select File" +msgstr "Sélectionner fichier" + +# @ mainwp +#: class/class-mainwp-clone-page.php:462 +msgid "Parent Folder" +msgstr "ID numérique unique pour le dossier parent." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:603 +#, php-format +msgid "" +"This is a large site (%dMB), the restore process will more than likely fail." +msgstr "" +"Ceci est un gros site (%d MB), le processus de restauration sera plus que " +"probablement sûr." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:604 +msgid "Continue Anyway?" +msgstr "Continuer ?" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:605 +#, php-format +msgid "" +"Creating backup on %1$s expected size: %2$dMB (estimated time: %3$d seconds)" +msgstr "" +"Création d’une sauvegarde le %1$s, taille attendue de : %2$d Mo (durée " +"estimée : %3$d secondes)" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:606 +#, php-format +msgid "Backup created on %1$s total size to download: %2$dMB" +msgstr "Sauvegarde créée le %s, taille totale à télécharger :%d Mo" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:607 +msgid "Downloading backup" +msgstr "Téléchargement sauvegarde" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:608 +msgid "Backup downloaded" +msgstr "Sauvegarde téléchargée" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:609 +msgid "" +"Extracting backup and updating your database, this might take a while. " +"Please be patient." +msgstr "" +"Extraction de sauvegarde et de mise à jour de votre base de données, cela " +"pourrait prendre un certain temps. Merci d'être patient." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:610 +msgid "Cloning process completed successfully!" +msgstr "Processus de clonage terminé avec succès !" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1204 +msgid "Restore process completed successfully! Check and re-save permalinks " +msgstr "" +"Processus de restauration terminé avec succès ! Vérifiez et re-enregistrer " +"les permaliens WordPress " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1206 +msgid "Cloning process completed successfully! Check and re-save permalinks " +msgstr "" +"Processus de clonage réussi ! Vérifiez et re-enregistrer permaliens " +"WordPress " + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1240 +msgid "" +"Be sure to use a FULL backup created by your Network dashboard, if critical " +"folders are excluded it may result in a not working installation." +msgstr "" +"Veillez à utiliser une sauvegarde complète créée par votre tableau de bord " +"Réseau, si les dossiers critiques sont exclus, il peut en résulter une " +"installation non fonctionnelle." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1243 +msgid "Start Restore" +msgstr "Démarrer la restauration" + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1244 +msgid "CAUTION: this will overwrite your existing site." +msgstr "ATTENTION : cette action écrasera votre site existant." + +# @ mainwp-child +#: class/class-mainwp-clone-page.php:1252 +msgid "Restore process completed successfully!" +msgstr "Processus de restauration terminé avec succès !" + +# @ mainwp-child +#: class/class-mainwp-clone.php:145 +msgid "Double request!" +msgstr "Requête invalide!" + +# @ mainwp-child +#: class/class-mainwp-clone.php:434 class/class-mainwp-clone.php:510 +msgid "No site given" +msgstr "Pas de site donné" + +# @ mainwp-child +#: class/class-mainwp-clone.php:443 class/class-mainwp-clone.php:517 +#: class/class-mainwp-clone.php:583 +msgid "Site not found" +msgstr "Site non trouvé" + +# @ mainwp-child +#: class/class-mainwp-clone.php:478 +msgid "Could not create backupfile on child" +msgstr "Impossible de créer le fichier de sauvegarde sur site client" + +# @ mainwp-child +#: class/class-mainwp-clone.php:538 +msgid "Invalid response" +msgstr "Réponse invalide" + +# @ mainwp-child +#: class/class-mainwp-clone.php:573 +msgid "No download link given" +msgstr "Aucun lien de téléchargement donné" + +# @ mainwp-child +#: class/class-mainwp-clone.php:695 class/class-mainwp-clone.php:810 +msgid "No download file found" +msgstr "Aucun fichier de téléchargement trouvé" + +# @ mainwp-child +#: class/class-mainwp-clone.php:818 +msgid "Backup file not found" +msgstr "Fichier de sauvegarde non trouvé" + +#: class/class-mainwp-connect.php:89 +#, php-format +msgid "" +"Public key could not be set. Please make sure that the OpenSSL library has " +"been configured correctly on your MainWP Dashboard. For additional help, " +"please check this %1$shelp document%2$s." +msgstr "" +"Impossible de définir la clé publique. Assurez-vous que la bibliothèque " +"OpenSSL est correctement configurée sur le tableau de bord MainWP. Pour " +"obtenir de l’aide supplémentaire, consultez ce %1$sdocument d’aide%2$s." + +# @ mainwp-child +#: class/class-mainwp-connect.php:97 +msgid "" +"Public key already set. Please deactivate & reactivate the MainWP Child " +"plugin on the child site and try again." +msgstr "" +"Clé publique déjà définie. Désactiver et réactiver l’extension MainWP client " +"et réessayer." + +# @ mainwp-child +#: class/class-mainwp-connect.php:104 +msgid "" +"This child site is set to require a unique security ID. Please enter it " +"before the connection can be established." +msgstr "" +"Site client configuré pour exiger un ID de sécurité unique. Veuillez le " +"saisir afin que la connexion puisse être établie." + +# @ mainwp-child +#: class/class-mainwp-connect.php:106 +msgid "" +"The unique security ID mismatch! Please correct it before the connection can " +"be established." +msgstr "" +"Inadéquation des ID uniques de sécurité ! Corriger avant que la connexion " +"puisse être établie." + +#: class/class-mainwp-connect.php:112 +msgid "" +"OpenSSL library is required on the child site to set up a secure connection." +msgstr "" +"La bibliothèque OpenSSL est nécessaire sur le site client pour configurer " +"une connexion sécurisée." + +#: class/class-mainwp-connect.php:117 +msgid "" +"cURL Extension not enabled on the child site server. Please contact your " +"host support and have them enabled it for you." +msgstr "" +"l'extension cURL n'est pas activée sur le serveur du site enfant. Veuillez " +"contacter le support de votre hébergeur pour qu'il l'active pour vous." + +#: class/class-mainwp-connect.php:122 +msgid "" +"Failed to reconnect to the site. Please remove the site and add it again." +msgstr "" +"Échec de la reconnexion au site. Veuillez supprimer le site et l'ajouter à " +"nouveau." + +#: class/class-mainwp-connect.php:124 +msgid "" +"Unable to connect to the site. Please verify that your Admin Username and " +"Password are correct and try again." +msgstr "" +"Impossible de se connecter au site. Veuillez vérifier que votre nom " +"d'utilisateur et votre mot de passe d'administrateur sont corrects et " +"réessayez." + +#: class/class-mainwp-connect.php:130 +msgid "" +"Administrator user does not exist. Please verify that the user is an " +"existing administrator." +msgstr "" +"L'utilisateur administrateur n'existe pas. Veuillez vérifier que " +"l'utilisateur est un administrateur existant." + +#: class/class-mainwp-connect.php:133 +msgid "" +"User is not an administrator. Please use an administrator user to establish " +"the connection." +msgstr "" +"L’utilisateur/utilisatrice n’est pas un administrateur/administratrice. " +"Veuillez utiliser un utilisateur/utilisatrice administrateur/administratrice " +"pour établir la connexion." + +# @ mainwp-child +#: class/class-mainwp-connect.php:399 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this child site and try again." +msgstr "" +"Échec de l’authentification ! Désactiver et réactiver l’extension MainWP " +"client sur ce site et réessayer." + +# @ mainwp-child +#: class/class-mainwp-connect.php:408 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this site and try again." +msgstr "" +"Échec de l’authentification ! Désactiver et réactiver l’extension MainWP " +"Child sur ce site et réessayer." + +#: class/class-mainwp-connect.php:436 class/class-mainwp-connect.php:969 +msgid "" +"Unexisting administrator user. Please verify that it is an existing " +"administrator." +msgstr "" +"Il s’agit de votre nom d’utilisateur/utilisatrice de l’administrateur/" +"administratrice, cependant, vous pouvez utiliser n’importe quel nom " +"utilisateur/utilisatrice d’administrateur/administratrice existant." + +#: class/class-mainwp-connect.php:440 class/class-mainwp-connect.php:972 +msgid "" +"User not administrator. Please use an administrator user to establish the " +"connection." +msgstr "" +"Utilisateur/utilisatrice et non administrateur/administratrice. Veuillez " +"utiliser un utilisateur/utilisatrice administrateur/administratrice pour " +"établir la connexion." + +# @ mainwp-child +#: class/class-mainwp-connect.php:614 +msgid "" +"To use OPENSSL_ALGO_SHA1 OpenSSL signature algorithm. Please deactivate & " +"reactivate the MainWP Child plugin on the child site and try again." +msgstr "" +"L'authentification a échoué ! Merci de désactiver et réactiver l'extension " +"MainWP client sur ce site." + +# @ mainwp-child +#: class/class-mainwp-connect.php:948 +msgid "" +"Authentication failed! Please deactivate and re-activate the MainWP Child " +"plugin on this site." +msgstr "" +"L'authentification a échoué ! Merci de désactiver et réactiver l'extension " +"MainWP client sur ce site." + +#: class/class-mainwp-custom-post-type.php:187 +msgid "Missing data" +msgstr "Donnée manquante" + +#: class/class-mainwp-custom-post-type.php:198 +msgid "Cannot decode data" +msgstr "Impossible de décoder les données" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "Missing" +msgstr "Manquant" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "inside post data" +msgstr "données internes du poste" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "Please install" +msgstr "Veuillez installer" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "on child and try again" +msgstr "sur le site client et essayer à nouveau" + +#: class/class-mainwp-custom-post-type.php:340 +msgid "" +"Cannot get old post. Probably is deleted now. Please try again for create " +"new post" +msgstr "" +"Impossible d'obtenir l'ancien message. Il a probablement été supprimé. " +"Veuillez réessayer pour créer un nouveau message" + +#: class/class-mainwp-custom-post-type.php:345 +msgid "" +"This post is inside trash on child website. Please try publish it manually " +"and try again." +msgstr "" +"Cet article est une poubelle sur le site de l'enfant. Veuillez essayer de le " +"publier manuellement et réessayer." + +#: class/class-mainwp-custom-post-type.php:354 +msgid "Cannot delete old post meta values" +msgstr "Impossible de supprimer les anciennes méta-valeurs de l'article" + +#: class/class-mainwp-custom-post-type.php:375 +msgid "Error when insert new post:" +msgstr "Erreur lors de la publication du nouvel article :" + +#: class/class-mainwp-custom-post-type.php:520 +msgid "Missing taxonomy" +msgstr "Taxonomie manquante" + +#: class/class-mainwp-custom-post-type.php:545 +msgid "Error when adding taxonomy to post" +msgstr "Erreur lors de l'ajout d'une taxonomie à un message" + +#: class/class-mainwp-custom-post-type.php:619 +msgid "Product SKU must be unique" +msgstr "La référence (code UGS) du produit doit être unique" + +#: class/class-mainwp-custom-post-type.php:641 +msgid "Cannot add featured image" +msgstr "Impossible d'ajouter une image vedette" + +#: class/class-mainwp-custom-post-type.php:653 +msgid "Error when adding post meta" +msgstr "Erreur lors de l'ajout des méta de l'article" + +#: class/class-mainwp-custom-post-type.php:682 +msgid "Cannot add product image" +msgstr "Impossible d'ajouter une image de produit" + +#: class/class-mainwp-helper.php:134 +msgid "Unable to connect to the filesystem." +msgstr "Impossible de se connecter au système de fichiers." + +# @ mainwp-child +#: class/class-mainwp-helper.php:295 +msgid "Unable to create directory " +msgstr "Impossible de créer le répertoire " + +# @ mainwp-child +#: class/class-mainwp-helper.php:295 +msgid " Is its parent directory writable by the server?" +msgstr "Le répertoire parent est-il inscriptible sur le serveur ?" + +# @ mainwp-child +#: class/class-mainwp-helper.php:414 +msgid "WordPress Filesystem error: " +msgstr "Erreur du système de fichiers WordPress : " + +#: class/class-mainwp-pages.php:113 +msgid " Plugin is Active" +msgstr " Le plugin est actif" + +#: class/class-mainwp-pages.php:114 +msgid "" +"This site is now ready for connection. Please proceed with the connection " +"process from your " +msgstr "" +"Ce site est maintenant prêt à être connecté. Veuillez poursuivre la " +"procédure de connexion à partir de votre" + +#: class/class-mainwp-pages.php:114 +msgid "to start managing the site. " +msgstr "pour commencer à gérer le site." + +#: class/class-mainwp-pages.php:115 +#, php-format +msgid "If you need assistance, refer to our %1$sdocumentation%2$s." +msgstr "Si vous avez besoin d'aide, consultez notre %1$sdocumentation%2$s." + +#: class/class-mainwp-pages.php:117 +msgid "For additional security options, visit the " +msgstr "Pour des options de sécurité supplémentaires, consultez la page" + +#: class/class-mainwp-pages.php:117 +#, php-format +msgid " %1$splugin settings%2$s. " +msgstr " %1$sparamètres du plugin%2$s." + +#: class/class-mainwp-pages.php:129 +msgid "Disconnected the Site from Dashboard." +msgstr "Déconnexion du site du tableau de bord." + +#: class/class-mainwp-pages.php:131 +msgid "Settings have been saved successfully." +msgstr "Les paramètres ont été enregistrés avec succès." + +#: class/class-mainwp-pages.php:139 +msgid "Dismiss this notice." +msgstr "Ignorer cet avertissement." + +# @ mainwp-child +#: class/class-mainwp-pages.php:589 +msgid "Restore / Clone" +msgstr "Restaurer / cloner depuis sauvegarde" + +# @ mainwp-child +#: class/class-mainwp-pages.php:595 +msgid "Connection Details" +msgstr "Détails de la connexion" + +# @ mainwp-child +#: class/class-mainwp-pages.php:668 +msgid "Connection Security Settings" +msgstr "Réglages de connexion" + +#: class/class-mainwp-pages.php:669 +msgid "Configure the plugin to best suit your security and connection needs." +msgstr "" +"Configurez le plugin pour qu'il réponde au mieux à vos besoins en matière de " +"sécurité et de connexion." + +#: class/class-mainwp-pages.php:673 +msgid "Password Authentication - Initial Connection Security" +msgstr "Authentification par mot de passe - Sécurité de la connexion initiale" + +#: class/class-mainwp-pages.php:676 +msgid "" +" requests that you connect using an admin account and password for the " +"initial setup. Rest assured, your password is never stored by your Dashboard " +"and never sent to " +msgstr "" +" demande que vous vous connectiez en utilisant un compte et un mot de passe " +"d'administrateur pour la configuration initiale. Soyez assuré que votre mot " +"de passe n'est jamais stocké par votre tableau de bord et qu'il n'est jamais " +"envoyé à" + +#: class/class-mainwp-pages.php:677 +msgid "Dedicated " +msgstr "Dédié" + +#: class/class-mainwp-pages.php:678 +msgid "" +"For further security, we recommend creating a dedicated admin account " +"specifically for " +msgstr "" +"Pour plus de sécurité, nous recommandons de créer un compte d'administrateur " +"dédié spécifiquement pour" + +#: class/class-mainwp-pages.php:679 +msgid "Disabling Password Security" +msgstr "Désactivation de la sécurité des mots de passe" + +#: class/class-mainwp-pages.php:680 +msgid "" +"If you prefer not to use password security, you can disable it by unchecking " +"the box below. Make sure this child site is ready to connect before turning " +"off this feature." +msgstr "" +"Si vous préférez ne pas utiliser la sécurité par mot de passe, vous pouvez " +"la désactiver en décochant la case ci-dessous. Assurez-vous que le site pour " +"enfants est prêt à se connecter avant de désactiver cette fonction." + +#: class/class-mainwp-pages.php:684 +msgid "" +"If you have additional questions, please refer to this Knowledge Base " +"article or contact " +msgstr "" +"Si vous avez des questions supplémentaires, veuillez vous référer à cet " +"article de la base de connaissances ou contacter" + +#: class/class-mainwp-pages.php:686 +#, php-format +msgid "" +"If you have additional questions, please %srefer to this Knowledge Base " +"article%s or %scontact MainWP Support%s." +msgstr "" +"Si vous avez d'autres questions, veuillez %sconsulter cet article de la base " +"de connaissances%s ou %scontacter le support MainWP%s." + +#: class/class-mainwp-pages.php:693 +msgid "Require Password Authentication" +msgstr "Exiger l'authentification par mot de passe" + +#: class/class-mainwp-pages.php:698 +msgid "" +"Enable this option to require password authentication on initial site " +"connection." +msgstr "" +"Activez cette option pour exiger l'authentification par mot de passe lors de " +"la connexion initiale au site." + +# @ mainwp-child +#: class/class-mainwp-pages.php:705 +msgid "Unique Security ID" +msgstr "ID unique de sécurité client" + +#: class/class-mainwp-pages.php:708 +#, php-format +msgid "" +"Add an extra layer of security for connecting this site to your %s Dashboard." +msgstr "" +"Ajoutez une couche de sécurité supplémentaire en connectant ce site à votre " +"tableau de bord %s." + +# @ mainwp-child +#: class/class-mainwp-pages.php:713 +msgid "Require Unique Secuirty ID" +msgstr "Exiger une ID Unique de sécurité" + +#: class/class-mainwp-pages.php:718 +msgid "" +"Enable this option for an added layer of protection when connecting this " +"site." +msgstr "" +"Activez cette option pour renforcer la protection lors de la connexion à ce " +"site." + +# @ mainwp-child +#: class/class-mainwp-pages.php:729 +msgid "Your unique security ID is:" +msgstr "L’ID unique de sécurité est :" + +# @ mainwp-child +#: class/class-mainwp-pages.php:737 +msgid "Connection Timeout" +msgstr "Délai de connection dépassé" + +#: class/class-mainwp-pages.php:740 +msgid "" +"Define how long the plugin will remain active if no connection is " +"established. After this period, the plugin will automatically deactivate for " +"security." +msgstr "" +"Définissez la durée pendant laquelle le plugin restera actif si aucune " +"connexion n'est établie. Après cette période, le plugin sera automatiquement " +"désactivé pour des raisons de sécurité." + +# @ mainwp-child +#: class/class-mainwp-pages.php:744 +msgid "Set Connection Timeout" +msgstr "Réglages de connexion" + +#: class/class-mainwp-pages.php:747 +msgid "" +"Specify how long the plugin should stay active if a connection isn't " +"established. Enter a value in minutes." +msgstr "" +"Indiquez la durée pendant laquelle le plugin doit rester actif si une " +"connexion n'est pas établie. Entrez une valeur en minutes." + +# @ mainwp-child +#: class/class-mainwp-pages.php:757 +msgid "Save Settings" +msgstr "Enregistrer les paramètres" + +#: class/class-mainwp-pages.php:763 +msgid "Site Connection Management" +msgstr "Gestion de la connexion au site" + +#: class/class-mainwp-pages.php:766 +msgid "Are you sure you want to Disconnect Site from your " +msgstr "Êtes-vous sûr de vouloir déconnecter le site de votre" + +#: class/class-mainwp-pages.php:767 +#, php-format +msgid "Click this button to disconnect this site from your %s Dashboard." +msgstr "" +"Cliquez sur ce bouton pour déconnecter ce site de votre tableau de bord %s." + +# @ mainwp-child +#: class/class-mainwp-pages.php:769 +msgid "Clear Connection Data" +msgstr "Effacer les données de connexion" + +# @ mainwp-child +#: class/class-mainwp-utility.php:592 +msgid "" +"Something went wrong while contacting the child site. Please check if there " +"is an error on the child site. This error could also be caused by trying to " +"clone or restore a site to large for your server settings." +msgstr "" +"Quelque chose à dysfonctionné lors de la connexion avec le site client. " +"Merci de vérifier si il y a une erreur sur le site client. Cette erreur peut " +"aussi être causée par un essai de clonage ou de restauration d'un site trop " +"important pour vos paramètres serveur." + +# @ mainwp-child +#: class/class-mainwp-utility.php:594 +msgid "" +"Child plugin is disabled or the security key is incorrect. Please resync " +"with your main installation." +msgstr "" +"L'extension MainWP client est désactivée ou la clé de sécurité est " +"incorrecte. Merci de resynchroniser avec votre installation principale." + +# @ mainwp-child +#: class/class-mainwp-wordpress-seo.php:73 +msgid "Settings could not be imported." +msgstr "Les paramètres n’ont pas pu être importés." + +# @ wordpress-seo +#: class/class-mainwp-wordpress-seo.php:228 +msgid "Upload failed." +msgstr "Échec du téléversement." + +#: class/class-mainwp-wordpress-seo.php:242 +msgid "Post is set to noindex." +msgstr "Publication définie sur noindex." + +#: class/class-mainwp-wordpress-seo.php:246 +msgid "Focus keyword not set." +msgstr "Mot-clé principal non défini." + +#. Plugin Name of the plugin/theme +msgid "MainWP Child" +msgstr "MainWP - Client" + +#. Plugin URI of the plugin/theme +msgid "https://mainwp.com/" +msgstr "https://mainwp.com" + +#. Description of the plugin/theme +msgid "" +"Provides a secure connection between your MainWP Dashboard and your " +"WordPress sites. MainWP allows you to manage WP sites from one central " +"location. Plugin documentation and options can be found here https://kb." +"mainwp.com/." +msgstr "" +"Fournit une connexion sécurisée entre le tableau de bord MainWP et les sites " +"clients. MainWP permet de gérer les sites WP à partir d’un emplacement " +"central. La documentation et les options de l’extension peuvent être " +"trouvées ici : https://kb.mainwp.com/." + +# @ default +# @ mainwp-child +#. Author of the plugin/theme +msgid "MainWP" +msgstr "MainWP" + +#. Author URI of the plugin/theme +msgid "https://mainwp.com" +msgstr "https://mainwp.com" + +# @ mainwp-child +#~ msgid "" +#~ "The Unique Security ID adds additional protection between the Child " +#~ "plugin and your Main Dashboard. The Unique Security ID will need to match " +#~ "when being added to the Main Dashboard. This is additional security and " +#~ "should not be needed in most situations." +#~ msgstr "" +#~ "L'Unique ID de sécurité ajoute une protection supplémentaire entre " +#~ "l'extension client et votre tableau de bord principal. L'Unique ID de " +#~ "sécurité devra correspondre lorsqu'elle est ajoutée au tableau de bord " +#~ "principal. Ceci est une sécurité supplémentaire et ne devrait pas être " +#~ "nécessaire dans la plupart des situations." + +# @ mainwp-child +#~ msgid "No such user" +#~ msgstr "Utilisateur non trouvé" + +# @ mainwp-child +#~ msgid "User is not an administrator" +#~ msgstr "L'utilisateur n'est pas administrateur" + +# @ mainwp-child +#~ msgid "Bad request." +#~ msgstr "Requête incorrecte." + +# @ mainwp-child +#~ msgid "Could not change the admin password." +#~ msgstr "Impossible de changer le mot de passe admin." + +# @ mainwp-child +#~ msgid "Error data." +#~ msgstr "Erreur de data. " + +# @ mainwp-child +#~ msgid "WORDPRESS" +#~ msgstr "WordPress" + +# @ mainwp-child +#~ msgid "MISC" +#~ msgstr "Divers" + +# @ mainwp-child +#~ msgid "Restore failed..." +#~ msgstr "La restauration a échouée…" + +# @ mainwp-child +#~ msgid "" +#~ "Will not delete any archives after unpacking them, because there was no " +#~ "cloud storage for this backup" +#~ msgstr "" +#~ "Il ne faut supprimer aucune archive après décompression, car il n'y a pas " +#~ "de stockage dans le Cloud pour cette sauvegarde" + +# @ mainwp-child +#, php-format +#~ msgid "" +#~ "Theme directory (%s) not found, but lower-case version exists; updating " +#~ "database option accordingly" +#~ msgstr "" +#~ "Répertoire du thème (%s) non trouvé, mais la version en minuscule " +#~ "existe ; mise à jour de l'option de base de données en conséquence" + +# @ mainwp-child +#~ msgid "" +#~ "The current theme was not found; to prevent this stopping the site from " +#~ "loading, your theme has been reverted to the default theme" +#~ msgstr "" +#~ "Le thème actuel n'a pas été trouvé ; pour éviter l'arrêt du site de " +#~ "chargement, votre thème a été réassigné en thème par défaut" + +# @ mainwp-child +#~ msgid " Clone" +#~ msgstr "Cloner" + +# @ mainwp-child +#~ msgid "Clone or Restore" +#~ msgstr "Cloner ou restaurer" + +# @ mainwp-child +#~ msgid "Clone Options" +#~ msgstr "Options de clonage" + +# @ mainwp-child +#~ msgid "Invalid database host or user/password." +#~ msgstr "Hôte de base de données non valide ou l'utilisateur / mot de passe." + +# @ mainwp-child +#~ msgid "Invalid database name" +#~ msgstr "Nom de base de données non valide" + +# @ mainwp-child +#~ msgid "Error importing database" +#~ msgstr "Erreur d'importation de la base de données" + +# @ mainwp-child +#~ msgid "Sucuri scan success" +#~ msgstr "L'analyse Sucuri est réussie" + +# @ mainwp-child +#~ msgid "Sucuri scan failed" +#~ msgstr "L'analyse Sucuri a échouée" diff --git a/languages/mainwp-child-hr_HR.mo b/languages/mainwp-child-hr_HR.mo deleted file mode 100644 index 6f34b67ade21f332b4232477f585255b5fdd1360..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8378 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 IlIqm|0F`Ua&j0`b diff --git a/languages/mainwp-child-hr_HR.po b/languages/mainwp-child-hr_HR.po deleted file mode 100644 index 1e46547c..00000000 --- a/languages/mainwp-child-hr_HR.po +++ /dev/null @@ -1,411 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: MainWP Child v0.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-11-15 14:04:59+0000\n" -"Last-Translator: admin \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Croatian\n" -"X-Poedit-Country: CROATIA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:132 -#: class/MainWPChild.class.php:154 -#@ mainwp-child -msgid "MainWP Settings" -msgstr "MainWP Podešavanje" - -#: class/MainWPChild.class.php:158 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Podešavanje konekcije" - -#: class/MainWPChild.class.php:166 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Zahtev za jedinstveni sigurnosni ključ" - -#: class/MainWPChild.class.php:169 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Vaš jedinstveni sigurnosni ključ je:" - -#: class/MainWPChild.class.php:173 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your
Main Dashboard. The Unique Security ID will need to match when being added to
the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "Jedinstveni sigurnosni ključ obezbeđuje dodatnu zaštitu između sajta i kontrolne table.
Jedinstveni sigurnosni ključ se mora poklapati prilikom dodavanja sajta u kontrolnu tablu.
Ova dodatna sigrnosna opcija, u većini slučajeva nije potrebna." - -#: class/MainWPChild.class.php:179 -#@ mainwp-child -msgid "Save Changes" -msgstr "Sačuvaj Promene" - -#: class/MainWPChild.class.php:424 -#@ mainwp-child -msgid "Authentication failed. Reinstall MainWP plugin please" -msgstr "Autentifikacija neuspešna. Molimo, reinstalirajte MainWP." - -#: class/MainWPChild.class.php:433 -#: class/MainWPChild.class.php:787 -#@ mainwp-child -msgid "No such user" -msgstr "Nepostojeći korisnik" - -#: class/MainWPChild.class.php:438 -#: class/MainWPChild.class.php:791 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "Korisnik nema administratorske privilegije." - -#: class/MainWPChild.class.php:528 -#@ mainwp-child -msgid "Bad request." -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:699 -#: class/MainWPChild.class.php:704 -#: class/MainWPChild.class.php:736 -#: class/MainWPChild.class.php:741 -#: class/MainWPChild.class.php:746 -#@ mainwp-child -msgid "Bad request" -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:761 -#@ mainwp-child -msgid "Invalid request" -msgstr "Nevažeći zahtev." - -#: class/MainWPChild.class.php:767 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Javni ključ je već podešen, resetujte MainWP na sajtu i pokušajte ponovo." - -#: class/MainWPChild.class.php:774 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ je potreban za ovaj sajt - Molimo, unesite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:778 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ koji ste uneli se ne poklapa sa ključem na sajtu - Molimo, ispravite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:1036 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Administratorska šifra nije mogla biti promenjena." - -#: class/MainWPChild.class.php:1058 -#@ mainwp-child -msgid "Undefined error" -msgstr "Nedefinisana greška" - -#: class/MainWPChild.class.php:1072 -#, php-format -#@ default -msgid "Username: %s" -msgstr "Korisnično ime: %s" - -#: class/MainWPChild.class.php:1073 -#, php-format -#@ default -msgid "Password: %s" -msgstr "Lozinka: %s" - -#: class/MainWPChild.class.php:1076 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "[%s] Vaše korisničko ime i lozinka" - -#: class/MainWPChild.class.php:2326 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Saj već poseduje link - Molimo, deaktivirajte, pa ponovo aktivirajte MainWP" - -#: class/MainWPChild.class.php:2433 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "WordPress sistemska greška: " - -#: class/MainWPClone.class.php:70 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Datoteka nije mogla biti uploadovana." - -#: class/MainWPClone.class.php:75 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Datoteka je prazna. Molimo, uplodujte validnu datoteku. Do ove greške moglo je doći ako je upload zabranjen u Vašoj php.ini datoteci ili ako je post_max_size definisan kao manji od upload_max_filesize u php.ini datoteci." - -#: class/MainWPClone.class.php:84 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Kloniranje ili Vratite prethodno stanje" - -#: class/MainWPClone.class.php:88 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno isključeno - da biste omogućili kloniranje, vratite se na Kontrolni sajt i uključite kloniranje na stranici Kloniranje." - -#: class/MainWPClone.class.php:94 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Direktorium u kome se nalazi Vaš sadržaj nije upisiv. Molimo, podesite ovlašćenja na 0755. " - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click " -msgstr "Proces kloniranja uspešno završen! Potrebno je da kliknete " - -#: class/MainWPClone.class.php:98 -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "here" -msgstr "ovde" - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "da biste se logovali i opet podesili linkove." - -#: class/MainWPClone.class.php:103 -#@ mainwp-child -msgid "Upload successful." -msgstr "Upload uspešan." - -#: class/MainWPClone.class.php:103 -#: class/MainWPClone.class.php:153 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Klonira/Vrati Sajt" - -#: class/MainWPClone.class.php:114 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno uključeno, ali nema sajtova sa ovlašćenjem za kloniranje. Da biste omogućili sajtu da bude kloniran, vratite se na Kontrolni sajt i odaberite selktujte sajtove na stranici Kloniranje." - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Display by:" -msgstr "Prikaži po:" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Site Name" -msgstr "Naziv Sajta" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Clone Options" -msgstr "Opcije za kloniranje" - -#: class/MainWPClone.class.php:139 -#@ mainwp-child -msgid "Clone Website" -msgstr "Kloniraj sajt" - -#: class/MainWPClone.class.php:148 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Vrati/Kloniraj sa Backup datotekom" - -#: class/MainWPClone.class.php:150 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Uploadujte backup datoteku u .zip formatu. (Maksimalna veličina datoteke za Vaš server je: " - -#: class/MainWPClone.class.php:151 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Ako image Kompletan Backup kreiran uz pomoć MainWP plugina, možete ga uploadovati ovde." - -#: class/MainWPClone.class.php:152 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Backup samo baze podataka neće raditi." - -#: class/MainWPClone.class.php:662 -#: class/MainWPClone.class.php:699 -#@ mainwp-child -msgid "No site given" -msgstr "Nema datog sajta" - -#: class/MainWPClone.class.php:667 -#: class/MainWPClone.class.php:704 -#@ mainwp-child -msgid "Site not found" -msgstr "Sajt nije pronađen" - -#: class/MainWPClone.class.php:679 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Kreiranje backup datoteke na sajtu neuspešan" - -#: class/MainWPClone.class.php:715 -#@ mainwp-child -msgid "Invalid response" -msgstr "Nevažeći odgovor" - -#: class/MainWPClone.class.php:731 -#@ mainwp-child -msgid "No download link given" -msgstr "Link za preuzimanje nije dat" - -#: class/MainWPClone.class.php:803 -#: class/MainWPClone.class.php:832 -#@ mainwp-child -msgid "No download file found" -msgstr "Datoteka za preuzimanje nije pronađena" - -#: class/MainWPClone.class.php:838 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Backup datoteka nije pronađena" - -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Process kloniranja uspešno završen! Proverite i ponovo sačuvajte perma-linkove " - -#: class/MainWPCloneInstall.class.php:79 -#: class/MainWPCloneInstall.class.php:80 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Nije kompletan backup." - -#: class/MainWPCloneInstall.class.php:81 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Backup baze podataka nije pronađen." - -#: class/MainWPCloneInstall.class.php:118 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Nije moguće prošitati konfiguracionu datoteku iz backup-a" - -#: class/MainWPCloneInstall.class.php:130 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Nevažeći host baze podataka ili korisničko ime i lozinka." - -#: class/MainWPCloneInstall.class.php:133 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Pogrešan naziv baze podataka" - -#: class/MainWPCloneInstall.class.php:239 -#@ mainwp-child -msgid "Error importing database" -msgstr "Greška pri unosu baze podataka" - -#: class/MainWPCloneInstall.class.php:244 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Greška: neočekivan kraj baze podataka" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "Glavna strana" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "Arhiva" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "Pretraži" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "Glavan strana bloga" - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Kreiranje direktorijuma nemoguće " - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Da li je direktorijum upisiv od strane servera?" - -#: class/MainWPHelper.class.php:376 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Nešto nije u redu u komunikaciji za sajtom. Molimo proverite da li ima grešaka na sajtu. Do ove greške moglo je doći ako ste pokušali klonirati sajt veći nego što je dozvoljeno u podešavanjima servera." - -#: class/MainWPHelper.class.php:380 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "Child Plugin je isključen ili je sigurnosni ključ pogrešan. Molimo, sinhronizujte sa Vašnom glavnom instalacijom." - -#: class/MainWPClone.class.php:15 -#@ mainwp-child -msgid "MainWP Clone" -msgstr "MainWP Kloniranje" - -#: class/MainWPClone.class.php:221 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Ovo je veliki sajt (%dMB), kloniranje verovatno neće uspeti." - -#: class/MainWPClone.class.php:222 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Nastavi u svakom slučaju?" - -#: class/MainWPClone.class.php:223 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Kreiranje backupa na %s očekivana veličina %dMB (očekivano vreme trajanja %d sekundi)" - -#: class/MainWPClone.class.php:224 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Backup kreiran na %s puna veličina za download: %dMB" - -#: class/MainWPClone.class.php:225 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Preuzimanje backupa" - -#: class/MainWPClone.class.php:226 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Backup preuzet" - -#: class/MainWPClone.class.php:227 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Raspakivanje backupa i ažuriranje baze podataka u toku, ovo može potrajati. Molimo, budite strpljivi." - -#: class/MainWPClone.class.php:228 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Kloniranje uspešno završeno!" - diff --git a/languages/mainwp-child-pt_BR.mo b/languages/mainwp-child-pt_BR.mo new file mode 100644 index 0000000000000000000000000000000000000000..e869f602698fffcd74e97f1c3895299709c4f38f GIT binary patch literal 83655 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 literal 0 HcmV?d00001 diff --git a/languages/mainwp-child-pt_BR.po b/languages/mainwp-child-pt_BR.po new file mode 100644 index 00000000..733ea864 --- /dev/null +++ b/languages/mainwp-child-pt_BR.po @@ -0,0 +1,3923 @@ +msgid "" +msgstr "" +"Project-Id-Version: MainWP Child\n" +"POT-Creation-Date: 2024-11-20 19:18+0100\n" +"PO-Revision-Date: 2024-11-20 19:18+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-Flags-xgettext: --add-comments=translators:\n" +"X-Poedit-WPHeader: mainwp-child.php\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" +"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" +"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.min.js\n" +"X-Poedit-SearchPathExcluded-1: libs/phpseclib/vendor\n" + +#: class/class-mainwp-backup.php:192 +msgid "Another backup process is running. Please, try again later." +msgstr "" +"Outro processo de backup está em execução. Por favor, tente novamente mais " +"tarde." + +#: class/class-mainwp-child-actions.php:353 +#, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" +msgid "Installed %1$s: %2$s %3$s" +msgstr "Instalado %1$s: %2$s %3$s" + +#: class/class-mainwp-child-actions.php:368 +#, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" +msgid "Updated %1$s: %2$s %3$s" +msgstr "Atualizado %1$s: %2$s %3$s" + +#: class/class-mainwp-child-actions.php:463 +#: class/class-mainwp-child-actions.php:490 +#: class/class-mainwp-child-actions.php:587 +msgid "network wide" +msgstr "rede ampla" + +#: class/class-mainwp-child-actions.php:471 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin activated %2$s" +msgstr "\"%1$s\" plug-in ativado %2$s" + +#: class/class-mainwp-child-actions.php:494 +#, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" +msgid "\"%1$s\" plugin deactivated %2$s" +msgstr "\"%1$s\" plug-in desativado %2$s" + +#: class/class-mainwp-child-actions.php:513 +#, php-format +msgid "\"%s\" theme activated" +msgstr "\"%s\" tema ativado" + +#: class/class-mainwp-child-actions.php:544 +#, php-format +msgid "\"%s\" theme deleted" +msgstr "\"%s\" tema excluído" + +#: class/class-mainwp-child-actions.php:590 +#, php-format +msgid "\"%s\" plugin deleted" +msgstr "\"%s\" plug-in excluído" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:622 +#: class/class-mainwp-child-actions.php:650 +#, php-format +msgid "WordPress auto-updated to %s" +msgstr "Atualização automática do WordPress para %s" + +#. translators: Placeholder refers to a version number (e.g. "4.2"). +#: class/class-mainwp-child-actions.php:653 +#, php-format +msgid "WordPress updated to %s" +msgstr "WordPress atualizado para %s" + +#: class/class-mainwp-child-actions.php:893 +#: class/class-mainwp-child-server-information-base.php:513 +#: class/class-mainwp-child-server-information-base.php:662 +msgid "N/A" +msgstr "N/D" + +#: class/class-mainwp-child-back-up-buddy.php:356 +msgid "Please install the BackupBuddy plugin on the child site." +msgstr "Instale o plug-in BackupBuddy no site filho." + +#: class/class-mainwp-child-back-up-buddy.php:541 +#: class/class-mainwp-child-back-up-wordpress.php:594 +#: class/class-mainwp-child-bulk-settings-manager.php:279 +msgid "Invalid data. Please check and try again." +msgstr "Dados inválidos. Verifique e tente novamente." + +#: class/class-mainwp-child-back-up-buddy.php:720 +msgid "Remote destination settings were not reset." +msgstr "As configurações de destino remoto não foram redefinidas." + +#: class/class-mainwp-child-back-up-buddy.php:729 +msgid "Plugin settings have been reset to defaults." +msgstr "As configurações do plug-in foram redefinidas para os padrões." + +#: class/class-mainwp-child-back-up-buddy.php:768 +msgid "Never" +msgstr "Nunca" + +#: class/class-mainwp-child-back-up-buddy.php:773 +#: class/class-mainwp-child-updraft-plus-backups.php:398 +#: class/class-mainwp-child-updraft-plus-backups.php:3848 +msgid "Unknown" +msgstr "Desconhecido" + +#: class/class-mainwp-child-back-up-buddy.php:830 +msgid "" +"Only run for main site or standalone. Multisite subsites do not allow " +"schedules" +msgstr "" +"Executar somente para o site principal ou autônomo. Os subsites de vários " +"sites não permitem agendamentos" + +#: class/class-mainwp-child-back-up-buddy.php:836 +msgid "Error: not found the backup schedule or invalid data" +msgstr "Erro: não foi encontrado o agendamento de backup ou dados inválidos" + +#: class/class-mainwp-child-back-up-buddy.php:839 +msgid "" +"Note: If there is no site activity there may be delays between steps in the " +"backup. Access the site or use a 3rd party service, such as a free pinging " +"service, to generate site activity." +msgstr "" +"Observação: se não houver atividade no site, poderá haver atrasos entre as " +"etapas do backup. Acesse o site ou use um serviço de terceiros, como um " +"serviço de ping gratuito, para gerar atividade no site." + +#: class/class-mainwp-child-back-up-buddy.php:864 +msgid "Invalid schedule data" +msgstr "Dados de programação inválidos" + +#: class/class-mainwp-child-back-up-buddy.php:904 +msgid "Invalid profile data" +msgstr "Dados de perfil inválidos" + +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "Backup Status" +msgstr "Status do Backup" + +#: class/class-mainwp-child-back-up-buddy.php:1676 +msgid "View Details" +msgstr "Ver Detalhes" + +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +msgid "View Backup Log" +msgstr "Ver Log do Backup" + +#: class/class-mainwp-child-back-up-buddy.php:1680 +#: class/class-mainwp-child-back-up-buddy.php:1782 +#: class/class-mainwp-child-updraft-plus-backups.php:3416 +msgid "View Log" +msgstr "Ver registo" + +#: class/class-mainwp-child-back-up-buddy.php:1755 +#: class/class-mainwp-child-back-up-buddy.php:1980 +msgid "Unable to access fileoptions data file." +msgstr "Não foi possível acessar o arquivo de dados fileoptions." + +#: class/class-mainwp-child-back-up-buddy.php:1778 +msgid "Backup Process Technical Details" +msgstr "Detalhes técnicos do processo de backup" + +#: class/class-mainwp-child-back-up-buddy.php:1863 +msgid "Empty schedule ids" +msgstr "Esvaziar IDs do agendamento" + +#: class/class-mainwp-child-back-up-buddy.php:2040 +msgid "Integrity Test" +msgstr "Teste de Integridade" + +#: class/class-mainwp-child-back-up-buddy.php:2041 +#: class/class-mainwp-child-back-up-wordpress.php:903 +#: class/class-mainwp-child-ithemes-security.php:949 +#: class/class-mainwp-child-ithemes-security.php:958 +#: class/class-mainwp-child-server-information.php:428 +msgid "Status" +msgstr "Status" + +#: class/class-mainwp-child-back-up-buddy.php:2152 +msgid "Backup Steps" +msgstr "Etapas do Backup" + +#: class/class-mainwp-child-back-up-buddy.php:2153 +#: class/class-mainwp-child-server-information.php:1078 +msgid "Time" +msgstr "Tempo" + +#: class/class-mainwp-child-back-up-buddy.php:2154 +msgid "Attempts" +msgstr "Tentativas" + +#: class/class-mainwp-child-back-up-buddy.php:2158 +msgid "No step statistics were found for this backup." +msgstr "Não foram encontradas estatísticas de etapas para esse backup." + +#: class/class-mainwp-child-back-up-buddy.php:2298 +#: class/class-mainwp-child-back-up-buddy.php:2328 +msgid "" +"Fatal Error #4344443: Backup failure. Please see any errors listed in the " +"Status Log for details." +msgstr "" +"Fatal Error #4344443: Falha no backup. Consulte os erros listados no " +"registro de status para obter detalhes." + +#: class/class-mainwp-child-back-up-buddy.php:2570 +msgid "Nothing has been logged." +msgstr "Nada foi registrado." + +#: class/class-mainwp-child-back-up-buddy.php:2700 +msgid "Malware Scan URL" +msgstr "URL da varredura de malware" + +#: class/class-mainwp-child-back-up-buddy.php:2710 +msgid "" +"ERROR: You are currently running your site locally. Your site must be " +"internet accessible to scan." +msgstr "" +"ERRO: No momento, você está executando seu site localmente. Seu site deve " +"estar acessível pela Internet para ser verificado." + +#: class/class-mainwp-child-back-up-buddy.php:2744 +msgid "ERROR #24452. Unable to load Malware Scan results. Details:" +msgstr "" +"ERRO #24452. Não foi possível carregar os resultados da varredura de " +"malware. Detalhes:" + +#: class/class-mainwp-child-back-up-buddy.php:2754 +msgid "An error was encountered attempting to scan this site." +msgstr "Foi encontrado um erro ao tentar verificar este site." + +#: class/class-mainwp-child-back-up-buddy.php:2755 +msgid "" +"An internet connection is required and this site must be accessible on the " +"public internet." +msgstr "" +"É necessária uma conexão com a Internet e esse site deve estar acessível na " +"Internet pública." + +#: class/class-mainwp-child-back-up-buddy.php:2788 +#: class/class-mainwp-child-back-up-buddy.php:2813 +#: class/class-mainwp-child-back-up-buddy.php:2830 +#: class/class-mainwp-child-back-up-buddy.php:2839 +#: class/class-mainwp-child-back-up-buddy.php:2848 +#: class/class-mainwp-child-back-up-buddy.php:2857 +#: class/class-mainwp-child-back-up-buddy.php:2866 +#: class/class-mainwp-child-back-up-buddy.php:2881 +#: class/class-mainwp-child-back-up-buddy.php:2890 +#: class/class-mainwp-child-back-up-buddy.php:2899 +#: class/class-mainwp-child-back-up-buddy.php:2908 +#: class/class-mainwp-child-back-up-buddy.php:2917 +#: class/class-mainwp-child-back-up-buddy.php:2932 +#: class/class-mainwp-child-back-up-buddy.php:2946 +#: class/class-mainwp-child-back-up-buddy.php:2960 +#: class/class-mainwp-child-back-up-buddy.php:2974 +#: class/class-mainwp-child-back-up-buddy.php:2988 +msgid "none" +msgstr "nenhum" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "Warning: Possible Malware Detected!" +msgstr "Aviso: Possível malware detectado!" + +#: class/class-mainwp-child-back-up-buddy.php:2796 +msgid "See details below." +msgstr "Veja detalhes abaixo." + +#: class/class-mainwp-child-back-up-buddy.php:2804 +#: class/class-mainwp-child-back-up-buddy.php:2822 +#: class/class-mainwp-child-back-up-buddy.php:2925 +#: class/class-mainwp-child-back-up-buddy.php:2939 +#: class/class-mainwp-child-back-up-buddy.php:2953 +#: class/class-mainwp-child-back-up-buddy.php:2967 +#: class/class-mainwp-child-back-up-buddy.php:2981 +msgid "Click to toggle" +msgstr "Clique para alternar" + +#: class/class-mainwp-child-back-up-buddy.php:2805 +msgid "Malware Detection" +msgstr "Detecção de Malware" + +#: class/class-mainwp-child-back-up-buddy.php:2807 +msgid "Malware" +msgstr "Malware" + +#: class/class-mainwp-child-back-up-buddy.php:2823 +msgid "Web server details" +msgstr "Detalhes do Servidor Web" + +#: class/class-mainwp-child-back-up-buddy.php:2825 +msgid "Site" +msgstr "Site" + +#: class/class-mainwp-child-back-up-buddy.php:2834 +msgid "Hostname" +msgstr "Hostname" + +#: class/class-mainwp-child-back-up-buddy.php:2843 +msgid "IP Address" +msgstr "Endereço IP" + +#: class/class-mainwp-child-back-up-buddy.php:2852 +msgid "System details" +msgstr "Detalhes do Sistema" + +#: class/class-mainwp-child-back-up-buddy.php:2861 +msgid "Information" +msgstr "Informação" + +#: class/class-mainwp-child-back-up-buddy.php:2874 +msgid "Web application" +msgstr "Aplicação Web" + +#: class/class-mainwp-child-back-up-buddy.php:2876 +msgid "Details" +msgstr "Detalhes" + +#: class/class-mainwp-child-back-up-buddy.php:2885 +msgid "Versions" +msgstr "Versões" + +#: class/class-mainwp-child-back-up-buddy.php:2894 +msgid "Notices" +msgstr "Avisos" + +#: class/class-mainwp-child-back-up-buddy.php:2903 +msgid "Errors" +msgstr "Erros" + +#: class/class-mainwp-child-back-up-buddy.php:2912 +msgid "Warnings" +msgstr "Avisos" + +#: class/class-mainwp-child-back-up-buddy.php:2926 +msgid "Links" +msgstr "Links" + +#: class/class-mainwp-child-back-up-buddy.php:2940 +msgid "Local Javascript" +msgstr "JavaScript Local" + +#: class/class-mainwp-child-back-up-buddy.php:2954 +msgid "External Javascript" +msgstr "JavaScript Externo" + +#: class/class-mainwp-child-back-up-buddy.php:2968 +msgid "Iframes Included" +msgstr "Iframes Inclusos" + +#: class/class-mainwp-child-back-up-buddy.php:2982 +msgid " Blacklisting Status" +msgstr " Status da lista negra" + +#: class/class-mainwp-child-back-up-buddy.php:3027 +msgid "Database Backup" +msgstr "Gestão do banco de dados" + +#: class/class-mainwp-child-back-up-buddy.php:3028 +msgid "Full Backup" +msgstr "Backup Completo" + +#: class/class-mainwp-child-back-up-buddy.php:3029 +msgid "Plugins Backup" +msgstr "Backup de Plugins" + +#: class/class-mainwp-child-back-up-buddy.php:3030 +msgid "Themes Backup" +msgstr "Backup de Temas" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "Verifying everything is up to date before Snapshot" +msgstr "Verificação de que tudo está atualizado antes do Snapshot" + +#: class/class-mainwp-child-back-up-buddy.php:3258 +msgid "" +"Please wait while we verify your backup is completely up to date before we " +"create the Snapshot. This may take a few minutes..." +msgstr "" +"Aguarde enquanto verificamos se o seu backup está completamente atualizado " +"antes de criarmos o instantâneo. Isso pode levar alguns minutos..." + +#: class/class-mainwp-child-back-up-buddy.php:3265 +msgid "" +"Live File Backup paused. It may take a moment for current processes to " +"finish." +msgstr "" +"O Live File Backup foi pausado. Pode demorar um pouco para que os processos " +"atuais sejam concluídos." + +#: class/class-mainwp-child-back-up-buddy.php:3268 +msgid "Unpaused but not running now." +msgstr "Não foi pausado, mas não está sendo executado agora." + +#: class/class-mainwp-child-back-up-buddy.php:3277 +msgid "Live File Backup has resumed." +msgstr "O Live File Backup foi retomado." + +#: class/class-mainwp-child-back-up-buddy.php:3284 +msgid "Live Database Backup paused." +msgstr "Backup do banco de dados em tempo real pausado." + +#: class/class-mainwp-child-back-up-buddy.php:3290 +msgid "Live Database Backup resumed." +msgstr "O Live Database Backup foi retomado." + +#: class/class-mainwp-child-back-up-buddy.php:3646 +msgid "" +"An unknown server error occurred. Please try to license your products again " +"at another time." +msgstr "" +"Ocorreu um erro de servidor desconhecido. Por favor, tente licenciar seus " +"produtos novamente em outro momento." + +#: class/class-mainwp-child-back-up-buddy.php:3667 +msgid "Your product subscription has expired" +msgstr "Sua assinatura de produto expirou" + +#: class/class-mainwp-child-back-up-buddy.php:3674 +msgid "Successfully licensed %l." +msgstr "Licenciado com sucesso %l." + +#: class/class-mainwp-child-back-up-buddy.php:3680 +#: class/class-mainwp-child-back-up-buddy.php:3687 +#, php-format +msgid "Unable to license %1$s. Reason: %2$s" +msgstr "Não é possível licenciar %1$s. Razão: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3731 +msgid "" +"An unknown server error occurred. Please try to remove licenses from your " +"products again at another time." +msgstr "" +"Ocorreu um erro de servidor desconhecido. Por favor, tente remover licenças " +"de seus produtos novamente em outro momento." + +#: class/class-mainwp-child-back-up-buddy.php:3753 +msgid "Unknown server error." +msgstr "Erro desconhecido de servidor." + +#: class/class-mainwp-child-back-up-buddy.php:3758 +msgid "Successfully removed license from %l." +msgid_plural "Successfully removed licenses from %l." +msgstr[0] "Removido com êxito a licença de %l." +msgstr[1] "Licenças removidas com êxito de% l." + +#: class/class-mainwp-child-back-up-buddy.php:3764 +#, php-format +msgid "Unable to remove license from %1$s. Reason: %2$s" +msgstr "Não é possível remover a licença de %1$s. Razão: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3791 +msgid "" +"Incorrect password. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Senha incorreta. Certifique-se de que você está fornecendo seu nome de " +"usuário e detalhes de senha da associação iThemes." + +#: class/class-mainwp-child-back-up-buddy.php:3795 +msgid "" +"Invalid username. Please make sure that you are supplying your iThemes " +"membership username and password details." +msgstr "" +"Nome de usuário inválido. Certifique-se de que você está fornecendo seu nome " +"de usuário e detalhes de senha da associação iThemes." + +#: class/class-mainwp-child-back-up-buddy.php:3798 +#, php-format +msgid "" +"The licensing server reports that the %1$s (%2$s) product is unknown. Please " +"contact support for assistance." +msgstr "" +"O servidor de licenciamento informa que o produto %1$s (%2$s) é " +"desconhecido. Entre em contato com o suporte para obter assistência." + +#: class/class-mainwp-child-back-up-buddy.php:3801 +#, php-format +msgid "" +"%1$s could not be licensed since the membership account is out of available " +"licenses for this product. You can unlicense the product on other sites or " +"upgrade your membership to one with a higher number of licenses in order to " +"increase the amount of available licenses." +msgstr "" +"%1$s não poderia ser licenciado, uma vez que a conta de associação está fora " +"das licenças disponíveis para este produto. Você pode deslicenciar o produto " +"em outros sites ou atualizar sua adesão a um com um número maior de " +"licenças, a fim de aumentar a quantidade de licenças disponíveis." + +#: class/class-mainwp-child-back-up-buddy.php:3804 +#, php-format +msgid "" +"%1$s could not be licensed due to an internal error. Please try to license " +"%2$s again at a later time. If this problem continues, please contact " +"iThemes support." +msgstr "" +"não foi possível licenciar %1$s devido a um erro interno. Por favor, tente " +"licenciar %2$s novamente em um momento posterior. Se o problema persistir, " +"entre em contato com o suporte da iThemes." + +#: class/class-mainwp-child-back-up-buddy.php:3812 +#, php-format +msgid "" +"An unknown error relating to the %1$s product occurred. Please contact " +"iThemes support. Error details: %2$s" +msgstr "" +"Ocorreu um erro desconhecido relacionado ao produto %1$s. Entre em contato " +"com o suporte do iThemes. Detalhes de erro: %2$s" + +#: class/class-mainwp-child-back-up-buddy.php:3814 +#, php-format +msgid "" +"An unknown error occurred. Please contact iThemes support. Error details: %s" +msgstr "" +"Ocorreu um erro desconhecido. Entre em contato com o suporte do iThemes. " +"Detalhes de erro: %s" + +#: class/class-mainwp-child-back-up-wordpress.php:492 +msgid "Error while trying to trigger the schedule" +msgstr "Erro ao tentar acionar a programação" + +#: class/class-mainwp-child-back-up-wordpress.php:639 +#: class/class-mainwp-child-back-up-wordpress.php:899 +msgid "Size" +msgstr "Tamanho" + +#: class/class-mainwp-child-back-up-wordpress.php:640 +#: class/class-mainwp-child-back-up-wordpress.php:902 +msgid "Type" +msgstr "Tipo" + +#: class/class-mainwp-child-back-up-wordpress.php:641 +#: class/class-mainwp-child-updraft-plus-backups.php:3055 +msgid "Actions" +msgstr "Ações" + +#: class/class-mainwp-child-back-up-wordpress.php:657 +msgid "This is where your backups will appear once you have some." +msgstr "É aqui que seus backups aparecerão quando você os tiver." + +#: class/class-mainwp-child-back-up-wordpress.php:678 +#: class/class-mainwp-child-back-up-wordpress.php:683 +msgid "Backups will be compressed and should be smaller than this." +msgstr "Os backups serão compactados e deverão ficar menores que isso." + +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "this shouldn't take long…" +msgstr "isso não deve demorar muito…" + +#: class/class-mainwp-child-back-up-wordpress.php:687 +msgid "calculating the size of your backup…" +msgstr "calcular o tamanho de seu backup…" + +#: class/class-mainwp-child-back-up-wordpress.php:713 +#: class/class-mainwp-child-back-up-wordpress.php:719 +#: class/class-mainwp-child-server-information.php:381 +msgid "Download" +msgstr "Download" + +#: class/class-mainwp-child-back-up-wordpress.php:724 +#: class/class-mainwp-child-updraft-plus-backups.php:2136 +#: class/class-mainwp-child-updraft-plus-backups.php:2182 +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete" +msgstr "Excluir" + +#: class/class-mainwp-child-back-up-wordpress.php:761 +msgid "Currently Excluded" +msgstr "Atualmente excluído" + +#: class/class-mainwp-child-back-up-wordpress.php:762 +msgid "" +"We automatically detect and ignore common VCS folders and other backup plugin folders." +msgstr "" +"Detectamos e ignoramos automaticamente as pastas VCS comuns e outras pastas de plug-ins de backup." + +#: class/class-mainwp-child-back-up-wordpress.php:766 +msgid "Your Site" +msgstr "Seu Site" + +#: class/class-mainwp-child-back-up-wordpress.php:767 +msgid "" +"Here's a directory listing of all files on your site, you can browse through " +"and exclude files or folders that you don't want included in your backup." +msgstr "" +"Aqui está uma lista de pastas com todos os arquivos em seu site, você pode " +"explorar e excluir os arquivos e/ou pastas que você não deseja incluir no " +"seu backup." + +#: class/class-mainwp-child-back-up-wordpress.php:797 +msgid "Done" +msgstr "Feito" + +#: class/class-mainwp-child-back-up-wordpress.php:842 +msgid "Default rule" +msgstr "Regra padrão" + +#: class/class-mainwp-child-back-up-wordpress.php:844 +msgid "Defined in wp-config.php" +msgstr "Definido em wp-config.php" + +#: class/class-mainwp-child-back-up-wordpress.php:846 +msgid "Stop excluding" +msgstr "Parar exclusão" + +#: class/class-mainwp-child-back-up-wordpress.php:898 +msgid "Name" +msgstr "Nome" + +#: class/class-mainwp-child-back-up-wordpress.php:901 +msgid "Permissions" +msgstr "Permissões" + +#: class/class-mainwp-child-back-up-wordpress.php:946 +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Refresh" +msgstr "Atualizar" + +#: class/class-mainwp-child-back-up-wordpress.php:956 +#: class/class-mainwp-child-back-up-wordpress.php:1065 +msgid "Symlink" +msgstr "Simlink" + +#: class/class-mainwp-child-back-up-wordpress.php:958 +#: class/class-mainwp-child-back-up-wordpress.php:1068 +msgid "Folder" +msgstr "Pasta" + +#: class/class-mainwp-child-back-up-wordpress.php:1050 +msgid "Recalculate the size of this directory" +msgstr "Recalcular o tamanho desse diretório" + +#: class/class-mainwp-child-back-up-wordpress.php:1070 +msgid "File" +msgstr "Arquivo" + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable files won't be backed up." +msgstr "Arquivos ilegíveis não serão backupeados." + +#: class/class-mainwp-child-back-up-wordpress.php:1076 +msgid "Unreadable" +msgstr "Nenhum item ilegível encontrado" + +#: class/class-mainwp-child-back-up-wordpress.php:1078 +msgid "Excluded" +msgstr "Excluído" + +#: class/class-mainwp-child-back-up-wordpress.php:1088 +msgid "Exclude →" +msgstr "Excluir →" + +#: class/class-mainwp-child-back-up-wordpress.php:1125 +#: class/class-mainwp-child-back-up-wordpress.php:1160 +msgid "Empty exclude directory path." +msgstr "Caminho do diretório de exclusão vazio." + +#: class/class-mainwp-child-back-up-wordpress.php:1261 +#: class/class-mainwp-child-back-up-wordpress.php:1320 +msgid "Schedule data" +msgstr "Dados da programação" + +#: class/class-mainwp-child-back-wp-up.php:197 +msgid "Please install BackWPup plugin on child website" +msgstr "Instale o plugin BackWPup no site filho" + +#: class/class-mainwp-child-back-wp-up.php:205 +msgid "Missing action." +msgstr "Ação ausente." + +#: class/class-mainwp-child-back-wp-up.php:282 +msgid "Wrong action." +msgstr "Ação incorreta." + +#: class/class-mainwp-child-back-wp-up.php:381 +msgid "Database backup" +msgstr "Backup do banco de dados" + +#: class/class-mainwp-child-back-wp-up.php:382 +msgid "File backup" +msgstr "Backup de arquivos" + +#: class/class-mainwp-child-back-wp-up.php:383 +msgid "WordPress XML export" +msgstr "Exportação de XML do WordPress" + +#: class/class-mainwp-child-back-wp-up.php:384 +msgid "Installed plugins list" +msgstr "Lista de plug-ins instalados" + +#: class/class-mainwp-child-back-wp-up.php:385 +msgid "Check database tables" +msgstr "Verificar as tabelas do banco de dados" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-timecapsule.php:1912 +msgid "Setting" +msgstr "Configuração" + +#: class/class-mainwp-child-back-wp-up.php:565 +#: class/class-mainwp-child-back-wp-up.php:566 +#: class/class-mainwp-child-ithemes-security.php:947 +#: class/class-mainwp-child-ithemes-security.php:956 +#: class/class-mainwp-child-server-information.php:427 +#: class/class-mainwp-child-timecapsule.php:1912 +#: class/class-mainwp-child-wordfence.php:3209 +msgid "Value" +msgstr "Valor" + +#: class/class-mainwp-child-back-wp-up.php:567 +#: class/class-mainwp-child-timecapsule.php:1913 +msgid "WordPress version" +msgstr "Versão do WordPress" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "BackWPup version" +msgstr "Versão do BackWPup" + +#: class/class-mainwp-child-back-wp-up.php:569 +msgid "Get pro." +msgstr "Seja profissional." + +#: class/class-mainwp-child-back-wp-up.php:571 +msgid "BackWPup Pro version" +msgstr "Versão Pro do BackWPup" + +#: class/class-mainwp-child-back-wp-up.php:574 +#: class/class-mainwp-child-timecapsule.php:1924 +msgid "PHP version" +msgstr "Versão do PHP" + +#: class/class-mainwp-child-back-wp-up.php:575 +#: class/class-mainwp-child-timecapsule.php:1925 +msgid "MySQL version" +msgstr "Versão do MySQL" + +#: class/class-mainwp-child-back-wp-up.php:578 +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1929 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "cURL version" +msgstr "versão do cURL" + +#: class/class-mainwp-child-back-wp-up.php:579 +#: class/class-mainwp-child-timecapsule.php:1930 +msgid "cURL SSL version" +msgstr "Versão do cURL SSL" + +#: class/class-mainwp-child-back-wp-up.php:581 +#: class/class-mainwp-child-timecapsule.php:1932 +msgid "unavailable" +msgstr "indisponível" + +#: class/class-mainwp-child-back-wp-up.php:583 +msgid "WP-Cron url:" +msgstr "URL WP-Cron:" + +#: class/class-mainwp-child-back-wp-up.php:585 +msgid "Server self connect:" +msgstr "Auto conexão do servidor:" + +#: class/class-mainwp-child-back-wp-up.php:589 +#: class/class-mainwp-child-server-information-base.php:708 +#, php-format +msgid "The HTTP response test get an error \"%s\"" +msgstr "O teste de resposta HTTP obtém um erro \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:591 +#: class/class-mainwp-child-server-information-base.php:712 +#, php-format +msgid "The HTTP response test get a false http status (%s)" +msgstr "O teste de resposta HTTP obtém um status http falso (%s)" + +#: class/class-mainwp-child-back-wp-up.php:595 +#, php-format +msgid "The BackWPup HTTP response header returns a false value: \"%s\"" +msgstr "" +"O cabeçalho de resposta HTTP do BackWPup retorna um valor falso: \"%s\"" + +#: class/class-mainwp-child-back-wp-up.php:599 +#: class/class-mainwp-child-server-information-base.php:720 +msgid "Response Test O.K." +msgstr "Teste de resposta O.K." + +#: class/class-mainwp-child-back-wp-up.php:605 +msgid "Temp folder:" +msgstr "Pasta temporária:" + +#: class/class-mainwp-child-back-wp-up.php:607 +#, php-format +msgid "Temp folder %s doesn't exist." +msgstr "Pasta temporária %s não existe." + +#: class/class-mainwp-child-back-wp-up.php:609 +#, php-format +msgid "Temporary folder %s is not writable." +msgstr "A pasta temporária %s não pode ser gravada." + +#: class/class-mainwp-child-back-wp-up.php:615 +msgid "Log folder:" +msgstr "Pasta de log:" + +#: class/class-mainwp-child-back-wp-up.php:620 +#, php-format +msgid "Logs folder %s not exist." +msgstr "A pasta de registros %s não existe." + +#: class/class-mainwp-child-back-wp-up.php:622 +#, php-format +msgid "Log folder %s is not writable." +msgstr "A pasta de registro %s não pode ser gravada." + +#: class/class-mainwp-child-back-wp-up.php:627 +#: class/class-mainwp-child-timecapsule.php:1936 +msgid "Server" +msgstr "Servidor" + +#: class/class-mainwp-child-back-wp-up.php:628 +#: class/class-mainwp-child-server-information.php:750 +#: class/class-mainwp-child-timecapsule.php:1937 +msgid "Operating System" +msgstr "Sistema Operacional" + +#: class/class-mainwp-child-back-wp-up.php:629 +#: class/class-mainwp-child-timecapsule.php:1938 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +#: class/class-mainwp-child-back-wp-up.php:630 +#: class/class-mainwp-child-timecapsule.php:1945 +msgid "Current PHP user" +msgstr "Usuário atual do PHP" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:640 +msgid "On" +msgstr "Ativar" + +#: class/class-mainwp-child-back-wp-up.php:631 +#: class/class-mainwp-child-back-wp-up.php:637 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Off" +msgstr "Desligado" + +#: class/class-mainwp-child-back-wp-up.php:632 +msgid "Safe Mode" +msgstr "Modo de segurança" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "Maximum execution time" +msgstr "Tempo máximo de execução" + +#: class/class-mainwp-child-back-wp-up.php:633 +#: class/class-mainwp-child-timecapsule.php:1946 +msgid "seconds" +msgstr "segundos" + +#: class/class-mainwp-child-back-wp-up.php:635 +#: class/class-mainwp-child-back-wp-up.php:637 +msgid "Alternative WP Cron" +msgstr "WP Cron alternativo" + +#: class/class-mainwp-child-back-wp-up.php:640 +#: class/class-mainwp-child-back-wp-up.php:642 +msgid "Disabled WP Cron" +msgstr "Desabilitar WP Cron" + +#: class/class-mainwp-child-back-wp-up.php:645 +#: class/class-mainwp-child-back-wp-up.php:647 +#: class/class-mainwp-child-timecapsule.php:1949 +#: class/class-mainwp-child-timecapsule.php:1951 +msgid "CHMOD Dir" +msgstr "Dir. CHMOD" + +#: class/class-mainwp-child-back-wp-up.php:651 +#: class/class-mainwp-child-timecapsule.php:1955 +msgid "Server Time" +msgstr "Horário do servidor" + +#: class/class-mainwp-child-back-wp-up.php:652 +#: class/class-mainwp-child-timecapsule.php:1956 +msgid "Blog Time" +msgstr "Horário do Blog" + +#: class/class-mainwp-child-back-wp-up.php:653 +msgid "Blog Timezone" +msgstr "Fuso Horário do Blog" + +#: class/class-mainwp-child-back-wp-up.php:654 +msgid "Blog Time offset" +msgstr "Deslocamento de tempo de Blog" + +#: class/class-mainwp-child-back-wp-up.php:654 +#, php-format +msgid "%s hours" +msgstr "%s horas" + +#: class/class-mainwp-child-back-wp-up.php:655 +#: class/class-mainwp-child-timecapsule.php:1957 +msgid "Blog language" +msgstr "Idioma do blog" + +#: class/class-mainwp-child-back-wp-up.php:656 +#: class/class-mainwp-child-timecapsule.php:1958 +msgid "MySQL Client encoding" +msgstr "Codificação do cliente MySQL" + +#: class/class-mainwp-child-back-wp-up.php:659 +#: class/class-mainwp-child-timecapsule.php:1961 +msgid "Blog charset" +msgstr "Charset do blog" + +#: class/class-mainwp-child-back-wp-up.php:660 +#: class/class-mainwp-child-timecapsule.php:1962 +msgid "PHP Memory limit" +msgstr "Limite de memória do PHP" + +#: class/class-mainwp-child-back-wp-up.php:661 +#: class/class-mainwp-child-timecapsule.php:1963 +msgid "WP memory limit" +msgstr "Limite de memória do WordPress" + +#: class/class-mainwp-child-back-wp-up.php:662 +#: class/class-mainwp-child-timecapsule.php:1964 +msgid "WP maximum memory limit" +msgstr "Limite máximo de memória do WP" + +#: class/class-mainwp-child-back-wp-up.php:663 +#: class/class-mainwp-child-timecapsule.php:1965 +msgid "Memory in use" +msgstr "Memória em uso" + +#: class/class-mainwp-child-back-wp-up.php:668 +#: class/class-mainwp-child-timecapsule.php:1971 +msgid "Disabled PHP Functions:" +msgstr "Funções do PHP Desabilitadas:" + +#: class/class-mainwp-child-back-wp-up.php:673 +#: class/class-mainwp-child-timecapsule.php:1977 +msgid "Loaded PHP Extensions:" +msgstr "Extensões do PHP Carregadas:" + +#: class/class-mainwp-child-back-wp-up.php:699 +#: class/class-mainwp-child-back-wp-up.php:806 +msgid "Missing logfile." +msgstr "Arquivo de registro ausente." + +#: class/class-mainwp-child-back-wp-up.php:711 +msgid "Directory not writable:" +msgstr "Diretório não é gravável:" + +#: class/class-mainwp-child-back-wp-up.php:714 +msgid "Not file:" +msgstr "Não é arquivo:" + +#: class/class-mainwp-child-back-wp-up.php:737 +msgid "Missing job_id." +msgstr "Falta job_id." + +#: class/class-mainwp-child-back-wp-up.php:744 +msgid "Cannot delete job" +msgstr "Não é possível excluir o trabalho" + +#: class/class-mainwp-child-back-wp-up.php:761 +msgid "Missing backupfile." +msgstr "Arquivo de backup ausente." + +#: class/class-mainwp-child-back-wp-up.php:765 +msgid "Missing dest." +msgstr "Falta dest." + +#: class/class-mainwp-child-back-wp-up.php:777 +msgid "Invalid dest class." +msgstr "Classe de destino inválida." + +#: class/class-mainwp-child-back-wp-up.php:814 +msgid "Log file doesn't exists" +msgstr "O arquivo de registro não existe" + +#: class/class-mainwp-child-back-wp-up.php:854 +msgid "Missing type." +msgstr "Tipo ausente." + +#: class/class-mainwp-child-back-wp-up.php:858 +msgid "Missing website id." +msgstr "ID do site ausente." + +#: class/class-mainwp-child-back-wp-up.php:909 +#: class/class-mainwp-child-back-wp-up.php:952 +#, php-format +msgid "%1$s at %2$s" +msgstr "%1$s em %2$s" + +#: class/class-mainwp-child-back-wp-up.php:943 +#, php-format +msgid "%1$s at %2$s by WP-Cron" +msgstr "%1$s às %2$s pelo WP-Cron" + +#: class/class-mainwp-child-back-wp-up.php:945 +msgid "Not scheduled!" +msgstr "Não programado!" + +#: class/class-mainwp-child-back-wp-up.php:948 +#: class/class-mainwp-child-server-information.php:627 +msgid "Inactive" +msgstr "Inativo" + +#: class/class-mainwp-child-back-wp-up.php:954 +#, php-format +msgid "Runtime: %d seconds" +msgstr "Tempo de execução: %d segundos" + +#: class/class-mainwp-child-back-wp-up.php:957 +msgid "not yet" +msgstr "ainda não" + +#: class/class-mainwp-child-back-wp-up.php:1135 +msgid "Missing logfile or logpos." +msgstr "Arquivo de registro ou logpos ausentes." + +#: class/class-mainwp-child-back-wp-up.php:1185 +#: class/class-mainwp-child-back-wp-up.php:1582 +#: class/class-mainwp-child-back-wp-up.php:1770 +msgid "Missing job_id" +msgstr "Job_id ausente" + +#: class/class-mainwp-child-back-wp-up.php:1323 +msgid "Missing email address." +msgstr "E-mail Ausente." + +#: class/class-mainwp-child-back-wp-up.php:1386 +msgid "BackWPup archive sending TEST Message" +msgstr "Arquivo BackWPup enviando mensagem de TESTE" + +#: class/class-mainwp-child-back-wp-up.php:1389 +msgid "" +"If this message reaches your inbox, sending backup archives via email should " +"work for you." +msgstr "" +"Se esta mensagem chegar à sua caixa de entrada, o envio de arquivos de " +"backup por e-mail deverá funcionar para você." + +#: class/class-mainwp-child-back-wp-up.php:1401 +msgid "Error while sending email!" +msgstr "Erro durante o envio de e-mail!" + +#: class/class-mainwp-child-back-wp-up.php:1403 +msgid "Email sent." +msgstr "E-mail enviado." + +#: class/class-mainwp-child-back-wp-up.php:1578 +#: class/class-mainwp-child-back-wp-up.php:1762 +#: class/class-mainwp-child-back-wp-up.php:1884 +msgid "Missing array settings" +msgstr "Configurações de matriz ausentes" + +#: class/class-mainwp-child-back-wp-up.php:1609 +msgid "Missing new job_id" +msgstr "Novo job_id ausente" + +#: class/class-mainwp-child-back-wp-up.php:1766 +msgid "Missing tab" +msgstr "Aba faltando" + +#: class/class-mainwp-child-back-wp-up.php:1774 +#: class/class-mainwp-child-back-wp-up.php:1888 +msgid "Install BackWPup on child website" +msgstr "Instalar o BackWPup no site filho" + +#: class/class-mainwp-child-back-wp-up.php:1805 +#, php-format +msgid "Changes for job %s saved." +msgstr "Alterações no trabalho %s salvos." + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Jobs overview" +msgstr "Visão geral dos empregos" + +#: class/class-mainwp-child-back-wp-up.php:1805 +msgid "Run now" +msgstr "Executar agora" + +#: class/class-mainwp-child-back-wp-up.php:1824 +msgid "Cannot save jobs: " +msgstr "Não é possível salvar trabalhos: " + +#: class/class-mainwp-child-back-wp-up.php:1892 +msgid "" +"You try to use pro version settings in non pro plugin version. Please " +"install pro version on child and try again." +msgstr "" +"Você tentou usar as configurações da versão Pro numa versão do plugin que " +"não é Pro. Instale a versão Pro no filho e tente novamente." + +#: class/class-mainwp-child-back-wp-up.php:1915 +msgid "Cannot save settings: " +msgstr "Não é possível salvar as configurações: " + +#: class/class-mainwp-child-branding-render.php:136 +msgid "Subject:" +msgstr "Assunto:" + +#: class/class-mainwp-child-branding-render.php:141 +msgid "From:" +msgstr "De:" + +#: class/class-mainwp-child-branding-render.php:146 +msgid "Your message:" +msgstr "Sua mensagem:" + +#: class/class-mainwp-child-branding-render.php:167 +msgid "Submit" +msgstr "Enviar" + +#: class/class-mainwp-child-branding-render.php:196 +msgid "Message has been submitted successfully." +msgstr "A mensagem foi enviada com sucesso." + +#: class/class-mainwp-child-branding-render.php:199 +msgid "Sending email failed!" +msgstr "O envio de e-mail falhou!" + +#: class/class-mainwp-child-branding.php:89 +msgid "Contact Support" +msgstr "Contatar Suporte" + +#: class/class-mainwp-child-callable.php:182 +msgid "" +"Required version has not been detected. Please, make sure that you are using " +"the latest version of the MainWP Child plugin on your site." +msgstr "" +"A versão necessária não foi detectada. Certifique-se de que esteja usando a " +"versão mais recente do plug-in MainWP Child em seu site." + +#: class/class-mainwp-child-callable.php:888 +#, php-format +msgid "PHP Version %s is unsupported." +msgstr "Versão %s do PHP não suportada." + +#: class/class-mainwp-child-install.php:374 +msgid "" +"Plugin or theme not specified, or missing required data. Please reload the " +"page and try again." +msgstr "" +"Plugin ou tema não especificado ou dados necessários ausentes. Recarregue a " +"página e tente novamente." + +#: class/class-mainwp-child-ithemes-security.php:426 +msgid "" +"You must change WordPress permalinks to a setting other " +"than \"Plain\" in order to use \"Hide Backend\" feature." +msgstr "" +"Você deve alterar os permalinks do WordPress para uma " +"configuração diferente de \"Plain\" para poder usar o recurso \"Hide " +"Backend\"." + +#: class/class-mainwp-child-ithemes-security.php:531 +msgid "Not Updated" +msgstr "Não Atualizado" + +#: class/class-mainwp-child-ithemes-security.php:588 +#, php-format +msgctxt "%1$s is the input name. %2$s is the error message." +msgid "" +"The directory supplied in %1$s cannot be used as a valid directory. %2$s" +msgstr "" +"O diretório fornecido em %1$s não pode ser usado como um diretório válido. " +"%2$s" + +#: class/class-mainwp-child-ithemes-security.php:593 +#, php-format +msgid "" +"The directory supplied in %1$s is not writable. Please select a directory " +"that can be written to." +msgstr "" +"O diretório fornecido em %1$s não é gravável. Por favor, selecione um " +"diretório para o que possa ser escrito." + +#: class/class-mainwp-child-ithemes-security.php:737 +msgid "Your IP Address" +msgstr "Seu endereço de IP" + +#: class/class-mainwp-child-ithemes-security.php:738 +msgid "is whitelisted for" +msgstr "está na lista branca por" + +#: class/class-mainwp-child-ithemes-security.php:796 +#, php-format +msgid "" +"The backup request returned an unexpected response. It returned a response " +"of type %1$s." +msgstr "" +"O pedido de backup retornou uma resposta inesperada. Ele retornou uma " +"resposta do tipo %1$s ." + +#: class/class-mainwp-child-ithemes-security.php:839 +msgid "The WordPress salts were successfully regenerated." +msgstr "Os sais do WordPress foram regenerados com sucesso." + +#: class/class-mainwp-child-ithemes-security.php:928 +msgid "WARNING" +msgstr "ATENÇÃO" + +#: class/class-mainwp-child-ithemes-security.php:931 +#: class/class-mainwp-child-updraft-plus-backups.php:2142 +#: class/class-mainwp-child-updraft-plus-backups.php:2189 +#: class/class-mainwp-child-updraft-plus-backups.php:2193 +msgid "OK" +msgstr "OK" + +#: class/class-mainwp-child-ithemes-security.php:941 +msgid "Reload File Permissions Details" +msgstr "Detalhes das permissões de arquivo de recarga" + +#: class/class-mainwp-child-ithemes-security.php:945 +#: class/class-mainwp-child-ithemes-security.php:954 +msgid "Relative Path" +msgstr "Caminho Relativo" + +#: class/class-mainwp-child-ithemes-security.php:946 +#: class/class-mainwp-child-ithemes-security.php:955 +msgid "Suggestion" +msgstr "Sugestão" + +#: class/class-mainwp-child-ithemes-security.php:948 +#: class/class-mainwp-child-ithemes-security.php:957 +msgid "Result" +msgstr "Resultado" + +#: class/class-mainwp-child-ithemes-security.php:1055 +msgid "Admin user already changes." +msgstr "O usuário administrador já foi alterado." + +#: class/class-mainwp-child-ithemes-security.php:1066 +msgid "Admin user ID already changes." +msgstr "O ID do usuário administrador já foi alterado." + +#: class/class-mainwp-child-ithemes-security.php:1247 +#, php-format +msgid "" +"The database table prefix was successfully changed to %1$s." +msgstr "" +"O prefixo da tabela de banco de dados foi alterado com sucesso para " +"%1$s ." + +#: class/class-mainwp-child-ithemes-security.php:1522 +msgid "The selected lockouts have been cleared." +msgstr "Os bloqueios selecionados foram apagados." + +#. translators: 1: user display name, 2: user login +#: class/class-mainwp-child-ithemes-security.php:1696 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: class/class-mainwp-child-jetpack-protect.php:164 +msgid "Please install Jetpack Protect plugin on child website" +msgstr "Instale o plug-in Jetpack Protect no site filho" + +#: class/class-mainwp-child-jetpack-protect.php:244 +msgid "Failed to disconnect the site as it appears already disconnected." +msgstr "Falha ao desconectar o site, pois parece que ele já está desconectado." + +#: class/class-mainwp-child-jetpack-scan.php:107 +msgid "Please install Jetpack Protect or Jetpact Scan plugin on child website" +msgstr "Instale o plug-in Jetpack Protect ou Jetpact Scan no site filho" + +#: class/class-mainwp-child-links-checker.php:635 +msgid "An unexpected error occurred!" +msgstr "Ocorreu um erro inesperado!" + +#: class/class-mainwp-child-links-checker.php:715 +#: class/class-mainwp-child-links-checker.php:801 +msgid "Error: link_id is not specified." +msgstr "Erro: link_id não foi especificado." + +#: class/class-mainwp-child-links-checker.php:758 +msgid "Error: link_id not specified." +msgstr "Erro: link_id não especificado." + +#: class/class-mainwp-child-links-checker.php:791 +msgid "This link was manually marked as working by the user." +msgstr "Esse link foi marcado manualmente como funcionando pelo usuário." + +#: class/class-mainwp-child-misc.php:461 +msgid "Cannot get user_id" +msgstr "Não é possível obter user_id" + +#: class/class-mainwp-child-misc.php:471 +msgid "Cannot destroy sessions" +msgstr "Não é possível destruir sessões" + +#: class/class-mainwp-child-misc.php:474 +msgid "Invalid action" +msgstr "Ação inválida" + +#: class/class-mainwp-child-misc.php:477 +msgid "Missing action" +msgstr "Ação ausente" + +#: class/class-mainwp-child-pagespeed.php:443 +msgid "The API is busy checking other pages, please try again later." +msgstr "" +"A API está ocupada verificando outras páginas, tente novamente mais tarde." + +#: class/class-mainwp-child-posts.php:549 +msgid "Post" +msgstr "Post" + +#: class/class-mainwp-child-posts.php:800 +#, php-format +msgid "This content is currently locked. %s is currently editing." +msgstr "Este conteúdo está bloqueado no momento. %s está editando no momento." + +#: class/class-mainwp-child-server-information-base.php:212 +msgid "No functions disabled" +msgstr "Nenhuma função desativada" + +#: class/class-mainwp-child-server-information-base.php:532 +#: class/class-mainwp-child-server-information-base.php:566 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "ON" +msgstr "Ligado" + +#: class/class-mainwp-child-server-information-base.php:534 +#: class/class-mainwp-child-server-information-base.php:568 +#: class/class-mainwp-child-server-information-base.php:690 +msgid "OFF" +msgstr "OFF" + +#: class/class-mainwp-child-server-information-base.php:556 +msgid "NOT SET" +msgstr "NÃO DEFINIDO" + +#: class/class-mainwp-child-server-information-base.php:578 +#: class/class-mainwp-child-server-information-base.php:590 +#: class/class-mainwp-child-server-information-base.php:602 +msgid "YES" +msgstr "SIM" + +#: class/class-mainwp-child-server-information-base.php:580 +#: class/class-mainwp-child-server-information-base.php:592 +#: class/class-mainwp-child-server-information-base.php:604 +msgid "NO" +msgstr "NÃO" + +#: class/class-mainwp-child-server-information-base.php:716 +#, php-format +msgid "Not expected HTTP response body: %s" +msgstr "Corpo da resposta HTTP não esperado: %s" + +#: class/class-mainwp-child-server-information.php:379 +msgid "Please include this information when requesting support:" +msgstr "Por favor, inclua essas informações ao solicitar suporte:" + +#: class/class-mainwp-child-server-information.php:381 +msgid "Hide" +msgstr "Ocultar" + +#: class/class-mainwp-child-server-information.php:384 +msgid "Get system report" +msgstr "Obter Relatório do Sistema" + +#: class/class-mainwp-child-server-information.php:390 +#: class/class-mainwp-pages.php:592 +msgid "Server Information" +msgstr "Informações do Servidor" + +#: class/class-mainwp-child-server-information.php:392 +msgid "Cron Schedules" +msgstr "Agendamentos do Cron" + +#: class/class-mainwp-child-server-information.php:394 +msgid "Error Log" +msgstr "Log de Erro" + +#: class/class-mainwp-child-server-information.php:425 +msgid "Server configuration" +msgstr "Configuração do servidor" + +#: class/class-mainwp-child-server-information.php:426 +msgid "Required value" +msgstr "Valor obrigatório" + +#: class/class-mainwp-child-server-information.php:467 +msgid "Version" +msgstr "Versão" + +#: class/class-mainwp-child-server-information.php:474 +msgid "WordPress" +msgstr "WordPress" + +#: class/class-mainwp-child-server-information.php:481 +msgid "FileSystem Method" +msgstr "Método FileSystem" + +#: class/class-mainwp-child-server-information.php:518 +msgid "PHP SETTINGS" +msgstr "CONFIGURAÇÕES DO PHP" + +#: class/class-mainwp-child-server-information.php:523 +msgid "PHP Safe Mode Disabled" +msgstr "Modo de segurança do PHP desativado" + +#: class/class-mainwp-child-server-information.php:566 +#, php-format +msgid "" +"Your host needs to update OpenSSL to at least version 1.1.0 which is already " +"over 4 years old and contains patches for over 60 vulnerabilities.%1$sThese " +"range from Denial of Service to Remote Code Execution. %2$sClick here for " +"more information.%3$s" +msgstr "" +"Seu host precisa atualizar o OpenSSL para, pelo menos, a versão 1.1.0, que " +"já tem mais de 4 anos e contém correções para mais de 60 vulnerabilidades." +"%1$sElas variam de negação de serviço a execução remota de código. " +"%2$sClique aqui para obter mais informações.%3$s" + +#: class/class-mainwp-child-server-information.php:582 +msgid "MySQL SETTINGS" +msgstr "CONFIGURAÇÕES DO MySQL" + +#: class/class-mainwp-child-server-information.php:586 +msgid "BACKUP ARCHIVE INFORMATION" +msgstr "INFORMAÇÕES DO ARQUIVO DE BACKUP" + +#: class/class-mainwp-child-server-information.php:610 +msgid "WordPress PLUGINS" +msgstr "PLUGINS do WordPress" + +#: class/class-mainwp-child-server-information.php:627 +msgid "Active" +msgstr "Ativo" + +#: class/class-mainwp-child-server-information.php:650 +msgid "PHP INFORMATION" +msgstr "INFORMAÇÕES SOBRE PHP" + +#: class/class-mainwp-child-server-information.php:654 +msgid "PHP Allow URL fopen" +msgstr "PHP permite URL fopen" + +#: class/class-mainwp-child-server-information.php:659 +msgid "PHP Exif Support" +msgstr "PHP: Suporte a Exif" + +#: class/class-mainwp-child-server-information.php:664 +msgid "PHP IPTC Support" +msgstr "PHP: Suporte a IPTC" + +#: class/class-mainwp-child-server-information.php:669 +msgid "PHP XML Support" +msgstr "PHP: Suporte a XML" + +#: class/class-mainwp-child-server-information.php:674 +msgid "PHP Disabled Functions" +msgstr "Funções Desabilitadas PHP" + +#: class/class-mainwp-child-server-information.php:679 +msgid "PHP Loaded Extensions" +msgstr "Extensões PHP Carregadas" + +#: class/class-mainwp-child-server-information.php:684 +msgid "MySQL INFORMATION" +msgstr "INFORMAÇÃO DO MySQL" + +#: class/class-mainwp-child-server-information.php:688 +msgid "MySQL Mode" +msgstr "Modo do MySQL" + +#: class/class-mainwp-child-server-information.php:693 +msgid "MySQL Client Encoding" +msgstr "Codificação do Cliente MySQL" + +#: class/class-mainwp-child-server-information.php:731 +msgid "SERVER INFORMATION" +msgstr "INFORMAÇÕES DO SERVIDOR" + +#: class/class-mainwp-child-server-information.php:735 +msgid "WordPress Root Directory" +msgstr "Diretório raiz do WordPress" + +#: class/class-mainwp-child-server-information.php:740 +msgid "Server Name" +msgstr "Nome do Servidor" + +#: class/class-mainwp-child-server-information.php:745 +msgid "Server Software" +msgstr "Software do Servidor" + +#: class/class-mainwp-child-server-information.php:755 +msgid "Architecture" +msgstr "Arquitetura" + +#: class/class-mainwp-child-server-information.php:760 +msgid "Server IP" +msgstr "IP do Servidor" + +#: class/class-mainwp-child-server-information.php:765 +msgid "Server Protocol" +msgstr "Protocolo do Servidor" + +#: class/class-mainwp-child-server-information.php:770 +msgid "HTTP Host" +msgstr "Servidor HTTP" + +#: class/class-mainwp-child-server-information.php:775 +msgid "HTTPS" +msgstr "HTTPS" + +#: class/class-mainwp-child-server-information.php:780 +msgid "Server self connect" +msgstr "Conexão automática do servidor" + +#: class/class-mainwp-child-server-information.php:785 +msgid "User Agent" +msgstr "Agente de usuário" + +#: class/class-mainwp-child-server-information.php:790 +msgid "Server Port" +msgstr "Porta do servidor" + +#: class/class-mainwp-child-server-information.php:795 +msgid "Gateway Interface" +msgstr "Interface de Gateway" + +#: class/class-mainwp-child-server-information.php:800 +msgid "Memory Usage" +msgstr "Uso de memória" + +#: class/class-mainwp-child-server-information.php:805 +msgid "Complete URL" +msgstr "URL Completa" + +#: class/class-mainwp-child-server-information.php:810 +msgid "Request Time" +msgstr "Request Time" + +#: class/class-mainwp-child-server-information.php:815 +msgid "Accept Content" +msgstr "Aceitar Conteúdo" + +#: class/class-mainwp-child-server-information.php:820 +msgid "Accept-Charset Content" +msgstr "Conteúdo Accept-Charset" + +#: class/class-mainwp-child-server-information.php:825 +msgid "Currently Executing Script Pathname" +msgstr "Atualmente executando o caminho do roteiro" + +#: class/class-mainwp-child-server-information.php:830 +msgid "Current Page URI" +msgstr "URL da página atual" + +#: class/class-mainwp-child-server-information.php:835 +msgid "Remote Address" +msgstr "Endereço Remoto" + +#: class/class-mainwp-child-server-information.php:840 +msgid "Remote Host" +msgstr "Servidor Remoto" + +#: class/class-mainwp-child-server-information.php:845 +msgid "Remote Port" +msgstr "Porta Remota" + +#: class/class-mainwp-child-server-information.php:891 +msgid "Next due" +msgstr "Próxima data" + +#: class/class-mainwp-child-server-information.php:892 +msgid "Schedule" +msgstr "Cronograma" + +#: class/class-mainwp-child-server-information.php:893 +msgid "Hook" +msgstr "Gancho" + +#: class/class-mainwp-child-server-information.php:1079 +msgid "Error" +msgstr "Erro" + +#: class/class-mainwp-child-server-information.php:1103 +msgid "Error logging disabled." +msgstr "Registro de erros desativado." + +#: class/class-mainwp-child-server-information.php:1248 +msgid "Site URL" +msgstr "URL do Site" + +#: class/class-mainwp-child-server-information.php:1253 +msgid "Administrator name" +msgstr "Nome do administrador" + +#: class/class-mainwp-child-server-information.php:1255 +msgid "" +"This is your Administrator username, however, you can use any existing " +"Administrator username." +msgstr "" +"Esse é o seu nome de usuário de administrador; no entanto, você pode usar " +"qualquer nome de usuário de administrador existente." + +#: class/class-mainwp-child-server-information.php:1258 +msgid "Friendly site name" +msgstr "Nome amigável do site" + +#: class/class-mainwp-child-server-information.php:1260 +msgid "" +"For the friendly site name, you can use any name, this is just a suggestion." +msgstr "" +"Para o nome do site amigável, você pode usar qualquer nome, esta é apenas " +"uma sugestão." + +#: class/class-mainwp-child-server-information.php:1263 +msgid "Child unique security id" +msgstr "ID de segurança exclusivo da criança" + +#: class/class-mainwp-child-server-information.php:1264 +msgid "Leave the field blank" +msgstr "Deixe em branco" + +#: class/class-mainwp-child-server-information.php:1265 +#, php-format +msgid "" +"Child unique security id is not required, however, since you have enabled " +"it, you need to add it to your %s dashboard." +msgstr "" +"O ID de segurança exclusivo da criança não é necessário; no entanto, como " +"você o ativou, é necessário adicioná-lo ao seu painel %s." + +#: class/class-mainwp-child-server-information.php:1268 +msgid "Verify certificate" +msgstr "Verificar certificado" + +#: class/class-mainwp-child-server-information.php:1269 +msgid "Yes" +msgstr "Sim" + +#: class/class-mainwp-child-server-information.php:1270 +msgid "" +"If there is an issue with SSL certificate on this site, try to set this " +"option to No." +msgstr "" +"Se houver um problema com o certificado SSL nesse site, tente definir essa " +"opção como No (Não)." + +#: class/class-mainwp-child-server-information.php:1273 +msgid "SSL version" +msgstr "Versão SSL" + +#: class/class-mainwp-child-server-information.php:1274 +#: class/class-mainwp-child-server-information.php:1275 +msgid "Auto Detect" +msgstr "Auto Detectar" + +#: class/class-mainwp-child-server-information.php:1282 +msgid "Connection details" +msgstr "Detalhes da conexão" + +#: class/class-mainwp-child-server-information.php:1283 +#, php-format +msgid "" +"If you are trying to connect this child site to your %s Dashboard, you can " +"use following details to do that. Please note that these are only suggested " +"values." +msgstr "" +"Se você estiver tentando conectar esse site filho ao seu Painel %s, poderá " +"usar os seguintes detalhes para fazer isso. Observe que esses são apenas " +"valores sugeridos." + +#: class/class-mainwp-child-staging.php:186 +msgid "Please install WP Staging plugin on child website" +msgstr "Instale o plugin WP Staging no site filho" + +#: class/class-mainwp-child-stats.php:96 +msgid "" +"Hint: Go to the child site, deactivate and reactivate the MainWP Child " +"plugin and try again." +msgstr "" +"Dica: Vá para o site filho, desative e reative o plug-in MainWP Child e " +"tente novamente." + +#: class/class-mainwp-child-stats.php:97 +msgid "" +"This site already contains a link. Please deactivate and reactivate the " +"MainWP plugin." +msgstr "Este site já contém um link. Desative e reative o plug-in MainWP." + +#: class/class-mainwp-child-timecapsule.php:1914 +msgid "WP Time Capsule version" +msgstr "Versão do WP Time Capsule" + +#: class/class-mainwp-child-timecapsule.php:1940 +msgid "Function Disabled" +msgstr "Função desativada" + +#: class/class-mainwp-child-updates.php:150 +#: class/class-mainwp-child-updates.php:291 +#: class/class-mainwp-child-updates.php:460 +#: class/class-mainwp-child-updates.php:539 +#: class/class-mainwp-child-updates.php:649 class/class-mainwp-clone.php:134 +msgid "Invalid request!" +msgstr "Solicitação inválida!" + +#: class/class-mainwp-child-updates.php:1167 +msgid "Another update is currently in progress." +msgstr "Outra atualização está em andamento no momento." + +#: class/class-mainwp-child-updraft-plus-backups.php:361 +msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com" +msgstr "Ocorreu um erro desconhecido ao tentar se conectar a UpdraftPlus.Com" + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "This site is connected to UpdraftPlus Vault." +msgstr "Este site está conectado ao UpdraftPlus Vault." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Well done - there's nothing more needed to set up." +msgstr "Bem feito - não há nada mais necessário para configurar." + +#: class/class-mainwp-child-updraft-plus-backups.php:394 +msgid "Vault owner" +msgstr "Proprietário do Vault" + +#: class/class-mainwp-child-updraft-plus-backups.php:396 +msgid "Quota:" +msgstr "Contingente:" + +#: class/class-mainwp-child-updraft-plus-backups.php:406 +msgid "Disconnect" +msgstr "Desconectar" + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "UpdraftPlus.com has responded with 'Access Denied'." +msgstr "UpdraftPlus.com respondeu com 'Acesso negado'." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +#, php-format +msgid "It appears that your web server's IP Address (%s) is blocked." +msgstr "Parece que o endereço IP do seu servidor web (%s) está bloqueado." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "" +"This most likely means that you share a webserver with a hacked website that " +"has been used in previous attacks." +msgstr "" +"Isso provavelmente significa que você compartilha um servidor web com um " +"site hackeado que foi usado em ataques anteriores." + +#: class/class-mainwp-child-updraft-plus-backups.php:452 +msgid "To remove the block, please go here." +msgstr "Para remover o bloco, por favor, vá aqui." + +#: class/class-mainwp-child-updraft-plus-backups.php:454 +#, php-format +msgid "" +"UpdraftPlus.Com returned a response which we could not understand (data: %s)" +msgstr "" +"UpdraftPlus.Com retornou uma resposta que não conseguimos entender (dados: " +"%s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:476 +msgid "You do not currently have any UpdraftPlus Vault quota" +msgstr "Atualmente, você não possui nenhuma cota do UpdatftPlus Vault" + +#: class/class-mainwp-child-updraft-plus-backups.php:478 +#: class/class-mainwp-child-updraft-plus-backups.php:494 +msgid "UpdraftPlus.Com returned a response, but we could not understand it" +msgstr "" +"UpdraftPlus.Com respondeu uma resposta, mas não conseguimos entender isso" + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"Your email address was valid, but your password was not recognised by " +"UpdraftPlus.Com." +msgstr "" +"Seu endereço de e-mail foi válido, mas sua senha não foi reconhecida pelo " +"UpdraftPlus.Com." + +#: class/class-mainwp-child-updraft-plus-backups.php:484 +msgid "" +"If you have forgotten your password, then go here to change your password on " +"updraftplus.com." +msgstr "" +"Se voce esqueceu sua senha, então clique aqui para alterar a sua senha no " +"updraftplus.com." + +#: class/class-mainwp-child-updraft-plus-backups.php:486 +msgid "You entered an email address that was not recognised by UpdraftPlus.Com" +msgstr "" +"Você digitou um endereço de e-mail que não foi reconhecido por UpdraftPlus." +"Com" + +#: class/class-mainwp-child-updraft-plus-backups.php:490 +msgid "Your email address and password were not recognised by UpdraftPlus.Com" +msgstr "" +"Seu endereço de e-mail e senha não foram reconhecidos por UpdraftPlus.Com" + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +#, php-format +msgid "Failure: No %s was given." +msgstr "Falha: não foi dado %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:993 +msgid "user" +msgstr "usuário" + +#: class/class-mainwp-child-updraft-plus-backups.php:1000 +msgid "host" +msgstr "hospedeiro" + +#: class/class-mainwp-child-updraft-plus-backups.php:1007 +msgid "database name" +msgstr "nome do banco de dados" + +#: class/class-mainwp-child-updraft-plus-backups.php:1022 +msgid "database connection attempt failed" +msgstr "tentativa de conexão do banco de dados falhou" + +#: class/class-mainwp-child-updraft-plus-backups.php:1030 +msgid "" +"Connection failed: check your access details, that the database server is " +"up, and that the network connection is not firewalled." +msgstr "" +"Falha na conexão: verifique seus detalhes de acesso, que o servidor do banco " +"de dados esteja ativado e que a conexão de rede não seja firewall." + +#: class/class-mainwp-child-updraft-plus-backups.php:1050 +#, php-format +msgid "%s table(s) found." +msgstr "%s tabela (s) encontrada (s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1058 +#, php-format +msgid "%1$s total table(s) found; %2$s with the indicated prefix." +msgstr "%1$s total de tabelas encontradas; %2$s com o prefixo indicado." + +#: class/class-mainwp-child-updraft-plus-backups.php:1065 +msgid "Messages:" +msgstr "Mensagens:" + +#: class/class-mainwp-child-updraft-plus-backups.php:1078 +msgid "Connection succeeded." +msgstr "Conexão conseguiu." + +#: class/class-mainwp-child-updraft-plus-backups.php:1080 +msgid "Connection failed." +msgstr "A conexão falhou." + +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +#: class/class-mainwp-child-updraft-plus-backups.php:1132 +msgid "Start backup" +msgstr "Iniciar backup" + +#: class/class-mainwp-child-updraft-plus-backups.php:1121 +msgid "" +"OK. You should soon see activity in the \"Last log message\" field below." +msgstr "" +"ESTÁ BEM. Em breve, você verá atividade no campo \"Última mensagem de log\" " +"abaixo." + +#: class/class-mainwp-child-updraft-plus-backups.php:1187 +msgid "Nothing yet logged" +msgstr "Não está logado ainda" + +#: class/class-mainwp-child-updraft-plus-backups.php:1220 +#, php-format +msgid "incremental backup; base backup: %s" +msgstr "backup incremental; backup da base: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:1232 +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:3891 +#, php-format +msgid "Warning: %s" +msgstr "Aviso: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:1248 +msgid "Download log file" +msgstr "Fazer o download do arquivo de log" + +#: class/class-mainwp-child-updraft-plus-backups.php:1252 +msgid "No backup has been completed." +msgstr "Nenhum backup foi concluído." + +#: class/class-mainwp-child-updraft-plus-backups.php:1307 +#: class/class-mainwp-child-updraft-plus-backups.php:1392 +msgid "At the same time as the files backup" +msgstr "Ao mesmo tempo que o backup de arquivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1315 +#: class/class-mainwp-child-updraft-plus-backups.php:1383 +#: class/class-mainwp-child-updraft-plus-backups.php:1401 +msgid "Nothing currently scheduled" +msgstr "Nada programado atualmente" + +#: class/class-mainwp-child-updraft-plus-backups.php:1411 +msgid "Files" +msgstr "Arquivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:1412 +#: class/class-mainwp-child-updraft-plus-backups.php:1976 +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +msgid "Database" +msgstr "Banco de dados" + +#: class/class-mainwp-child-updraft-plus-backups.php:1413 +msgid "Time now" +msgstr "Hoje é" + +#: class/class-mainwp-child-updraft-plus-backups.php:1484 +msgid "Backup set not found" +msgstr "Conjunto de backup não encontrado" + +#: class/class-mainwp-child-updraft-plus-backups.php:1575 +msgid "The backup set has been removed." +msgstr "O conjunto de backup foi removido." + +#: class/class-mainwp-child-updraft-plus-backups.php:1576 +#, php-format +msgid "Local archives deleted: %d" +msgstr "Arquivos locais excluídos: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1577 +#, php-format +msgid "Remote archives deleted: %d" +msgstr "Arquivos remotos excluídos: %d" + +#: class/class-mainwp-child-updraft-plus-backups.php:1656 +msgid "Existing Backups" +msgstr "Backups Existentes" + +#: class/class-mainwp-child-updraft-plus-backups.php:1873 +#, php-format +msgid "" +"The backup archive for this file could not be found. The remote storage " +"method in use (%s) does not allow us to retrieve files. To perform any " +"restoration using UpdraftPlus, you will need to obtain a copy of this file " +"and place it inside UpdraftPlus's working folder" +msgstr "" +"O arquivo de backup para este arquivo não pôde ser encontrado. O método de " +"armazenamento remoto em uso (%s) não nos permite recuperar arquivos. Para " +"executar qualquer restauração usando o UpdraftPlus, você precisará obter uma " +"cópia deste arquivo e colocá-lo dentro da pasta de trabalho do UpdraftPlus" + +#: class/class-mainwp-child-updraft-plus-backups.php:1928 +msgid "No such backup set exists" +msgstr "Nenhum conjunto de backup existente" + +#: class/class-mainwp-child-updraft-plus-backups.php:1947 +#, php-format +msgid "" +"The PHP setup on this webserver allows only %s seconds for PHP to run, and " +"does not allow this limit to be raised. If you have a lot of data to import, " +"and if the restore operation times out, then you will need to ask your web " +"hosting company for ways to raise this limit (or attempt the restoration " +"piece-by-piece)." +msgstr "" +"A configuração do PHP neste servidor web permite apenas %s segundos para que " +"o PHP seja executado e não permite que esse limite seja aumentado. Se você " +"tiver muitos dados para importar, e se a operação de restauração expirar, " +"então você precisará perguntar à sua empresa de hospedagem web por maneiras " +"de aumentar esse limite (ou tentar a restauração peça a peça)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"This backup set was not known by UpdraftPlus to be created by the current " +"WordPress installation, but was found in remote storage." +msgstr "" +"O UpdraftPlus não sabia que esse conjunto de backups havia sido criado pela " +"instalação atual do WordPress, mas foi encontrado em um armazenamento remoto." + +#: class/class-mainwp-child-updraft-plus-backups.php:1951 +msgid "" +"You should make sure that this really is a backup set intended for use on " +"this website, before you restore (rather than a backup set of an unrelated " +"website that was using the same storage location)." +msgstr "" +"Antes de restaurar, certifique-se de que esse é realmente um conjunto de " +"backups destinado ao uso neste site (e não um conjunto de backups de um site " +"não relacionado que estava usando o mesmo local de armazenamento)." + +#: class/class-mainwp-child-updraft-plus-backups.php:1966 +msgid "" +"Only the WordPress database can be restored; you will need to deal with the " +"external database manually." +msgstr "" +"Somente o banco de dados do WordPress pode ser restaurado; você precisará " +"lidar com o banco de dados externo manualmente." + +#: class/class-mainwp-child-updraft-plus-backups.php:1982 +#: class/class-mainwp-child-updraft-plus-backups.php:3300 +#, php-format +msgid "Backup created by unknown source (%s) - cannot be restored." +msgstr "Backup criado por fonte desconhecida (%s) - não pode ser restaurado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2020 +#, php-format +msgid "File not found (you need to upload it): %s" +msgstr "Arquivo não encontrado (você precisa carregá-lo): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2022 +#, php-format +msgid "File was found, but is zero-sized (you need to re-upload it): %s" +msgstr "" +"O arquivo foi encontrado, mas é de tamanho zero (você precisa enviá-lo " +"novamente): %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2026 +#, php-format +msgid "" +"File (%1$s) was found, but has a different size (%2$s) from what was " +"expected (%3$s) - it may be corrupt." +msgstr "" +"O arquivo (%1$s) foi encontrado, mas tem um tamanho (%2$s) diferente do " +"esperado (%3$s) - ele pode estar corrompido." + +#: class/class-mainwp-child-updraft-plus-backups.php:2048 +#, php-format +msgid "" +"This multi-archive backup set appears to have the following archives " +"missing: %s" +msgstr "" +"Esse conjunto de backup de vários arquivos parece ter os seguintes arquivos " +"perdidos: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2053 +msgid "" +"The backup archive files have been successfully processed. Now press Restore " +"again to proceed." +msgstr "" +"Os arquivos de arquivo de backup foram processados ​​com sucesso. Agora, " +"pressione Restaurar novamente para continuar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2055 +msgid "" +"The backup archive files have been processed, but with some warnings. If all " +"is well, then now press Restore again to proceed. Otherwise, cancel and " +"correct any problems first." +msgstr "" +"Os arquivos de arquivo de backup foram processados, mas com alguns avisos. " +"Se tudo estiver bem, então, pressione Restore novamente para continuar. Caso " +"contrário, cancele e corrija os problemas primeiro." + +#: class/class-mainwp-child-updraft-plus-backups.php:2057 +msgid "" +"The backup archive files have been processed, but with some errors. You will " +"need to cancel and correct any problems before retrying." +msgstr "" +"Os arquivos de arquivo de backup foram processados, mas com alguns erros. " +"Você precisará cancelar e corrigir quaisquer problemas antes de tentar " +"novamente." + +#: class/class-mainwp-child-updraft-plus-backups.php:2085 +msgid "Remove old directories" +msgstr "Remover diretórios antigos" + +#: class/class-mainwp-child-updraft-plus-backups.php:2088 +msgid "Old directories successfully removed." +msgstr "Diretórios antigos removidos com sucesso." + +#: class/class-mainwp-child-updraft-plus-backups.php:2089 +msgid "Now press Restore again to proceed." +msgstr "Agora pressione Restaurar novamente para prosseguir." + +#: class/class-mainwp-child-updraft-plus-backups.php:2092 +msgid "" +"Old directory removal failed for some reason. You may want to do this " +"manually." +msgstr "" +"A remoção do diretório antigo falhou por algum motivo. Você pode querer " +"fazer isso manualmente." + +#: class/class-mainwp-child-updraft-plus-backups.php:2139 +#: class/class-mainwp-child-updraft-plus-backups.php:2187 +#: class/class-mainwp-child-updraft-plus-backups.php:2196 +msgid "Failed" +msgstr "Falhou" + +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "Error: %s" +msgstr "Erro: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2280 +#: class/class-mainwp-child-updraft-plus-backups.php:2536 +msgid "" +"Decryption failed. The database file is encrypted, but you have no " +"encryption key entered." +msgstr "" +"Falha na encriptação. O arquivo de banco de dados está criptografado, mas " +"você não possui nenhuma chave de criptografia." + +#: class/class-mainwp-child-updraft-plus-backups.php:2282 +#: class/class-mainwp-child-updraft-plus-backups.php:2538 +msgid "Decryption failed. The database file is encrypted." +msgstr "Falha na encriptação. O arquivo de banco de dados está criptografado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2293 +msgid "Failed to write out the decrypted database to the filesystem." +msgstr "Falha ao escrever o banco de dados descriptografado no sistema." + +#: class/class-mainwp-child-updraft-plus-backups.php:2299 +#: class/class-mainwp-child-updraft-plus-backups.php:2548 +msgid "" +"Decryption failed. The most likely cause is that you used the wrong key." +msgstr "" +"Falha na encriptação. A causa mais provável é que você usou a chave errada." + +#: class/class-mainwp-child-updraft-plus-backups.php:2307 +#: class/class-mainwp-child-updraft-plus-backups.php:2555 +#, php-format +msgid "" +"The database is too small to be a valid WordPress database (size: %s Kb)." +msgstr "" +"O banco de dados é pequeno demais para ser um banco de dados WordPress " +"válido (tamanho: %s Kb)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2316 +#: class/class-mainwp-child-updraft-plus-backups.php:2563 +msgid "Failed to open database file." +msgstr "Falha ao abrir o arquivo do banco de dados." + +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +msgid "Backup of:" +msgstr "Backup de:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2363 +#: class/class-mainwp-child-updraft-plus-backups.php:2615 +#, php-format +msgid "(version: %s)" +msgstr "(versão: %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:2367 +#: class/class-mainwp-child-updraft-plus-backups.php:2377 +#: class/class-mainwp-child-updraft-plus-backups.php:2645 +#: class/class-mainwp-child-updraft-plus-backups.php:2664 +msgid "" +"This backup set is from a different site - this is not a restoration, but a " +"migration. You need the Migrator add-on in order to make this work." +msgstr "" +"Este conjunto de backup é de um site diferente - isto não é uma restauração, " +"mas uma migração. Você precisa do complemento Migrator para que isso " +"funcione." + +#: class/class-mainwp-child-updraft-plus-backups.php:2388 +#: class/class-mainwp-child-updraft-plus-backups.php:2677 +#, php-format +msgid "" +"You are importing from a newer version of WordPress (%1$s) into an older one " +"(%2$s). There are no guarantees that WordPress can handle this." +msgstr "" +"Você está importando de uma versão mais recente do WordPress (%1$s) para uma " +"mais antiga (%2$s). Não há garantias de que o WordPress possa lidar com isso." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"The site in this backup was running on a webserver with version %1$s of " +"%2$s. " +msgstr "" +"O site nesse backup estava sendo executado em um servidor da Web com a " +"versão %1$s de %2$s. " + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"This is significantly newer than the server which you are now restoring onto " +"(version %s)." +msgstr "" +"Isso é significativamente mais recente do que o servidor que você está " +"restaurando agora (versão %s)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"You should only proceed if you cannot update the current server and are " +"confident (or willing to risk) that your plugins/themes/etc. are compatible " +"with the older %s version." +msgstr "" +"Você só deve prosseguir se não conseguir atualizar o servidor atual e " +"confiar (ou querer arriscar) que seus plugins / temas / etc. são compatíveis " +"com a versão anterior de %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2394 +#: class/class-mainwp-child-updraft-plus-backups.php:2683 +#, php-format +msgid "" +"Any support requests to do with %s should be raised with your web hosting " +"company." +msgstr "" +"Quaisquer pedidos de suporte para fazer com %s devem ser gerados com sua " +"empresa de hospedagem." + +#: class/class-mainwp-child-updraft-plus-backups.php:2401 +#: class/class-mainwp-child-updraft-plus-backups.php:2690 +msgid "Backup label:" +msgstr "Etiqueta de backup:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2409 +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "" +"You are running on WordPress multisite - but your backup is not of a " +"multisite site." +msgstr "" +"Você está executando no multisite WordPress - mas seu backup não é de um " +"site multisite." + +#: class/class-mainwp-child-updraft-plus-backups.php:2415 +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"both the multisite and migrator add-ons." +msgstr "" +"Para importar um site WordPress comum para uma instalação multisite, são " +"necessários os complementos multisite e migrator." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "Warning:" +msgstr "Atenção:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"Your backup is of a WordPress multisite install; but this site is not. Only " +"the first site of the network will be accessible." +msgstr "" +"Seu backup é de uma instalação de multisite do WordPress; mas este site não " +"é. Somente o primeiro site da rede estará acessível." + +#: class/class-mainwp-child-updraft-plus-backups.php:2420 +#: class/class-mainwp-child-updraft-plus-backups.php:2702 +msgid "" +"If you want to restore a multisite backup, you should first set up your " +"WordPress installation as a multisite." +msgstr "" +"Se você quiser restaurar um backup de vários segmentos, você deve primeiro " +"configurar sua instalação do WordPress como um multisite." + +#: class/class-mainwp-child-updraft-plus-backups.php:2426 +#: class/class-mainwp-child-updraft-plus-backups.php:2710 +msgid "Site information:" +msgstr "Informação do Site:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2459 +#: class/class-mainwp-child-updraft-plus-backups.php:2892 +#, php-format +msgid "This database backup is missing core WordPress tables: %s" +msgstr "" +"Este backup de banco de dados está faltando mesas principais do WordPress: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2464 +#: class/class-mainwp-child-updraft-plus-backups.php:2900 +msgid "" +"UpdraftPlus was unable to find the table prefix when scanning the database " +"backup." +msgstr "" +"UpdraftPlus não conseguiu encontrar o prefixo das tabelas ao varrer o backup " +"do banco de dados." + +#: class/class-mainwp-child-updraft-plus-backups.php:2627 +#, php-format +msgid "" +"The website address in the backup set (%1$s) is slightly different from that " +"of the site now (%2$s). This is not expected to be a problem for restoring " +"the site, as long as visits to the former address still reach the site." +msgstr "" +"O endereço do site no conjunto de backup (%1$s) é ligeiramente diferente do " +"endereço do site atual (%2$s). Não se espera que isso seja um problema para " +"restaurar o site, desde que as visitas ao endereço anterior ainda cheguem ao " +"site." + +#: class/class-mainwp-child-updraft-plus-backups.php:2632 +#, php-format +msgid "" +"This backup set is of this site, but at the time of the backup you were " +"using %1$s, whereas the site now uses %2$s." +msgstr "" +"Esse conjunto de backups é deste site, mas no momento do backup você estava " +"usando %1$s, enquanto o site agora usa %2$s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#, php-format +msgid "" +"This restoration will work if you still have an SSL certificate (i.e. can " +"use https) to access the site. Otherwise, you will want to use %s to search/" +"replace the site address so that the site can be visited without https." +msgstr "" +"Esta restauração funcionará se você ainda tiver um certificado SSL (ou seja, " +"pode usar https) para acessar o site. Caso contrário, você deseja usar %s " +"para procurar / substituir o endereço do site para que o site possa ser " +"visitado sem https." + +#: class/class-mainwp-child-updraft-plus-backups.php:2634 +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +msgid "the migrator add-on" +msgstr "o complemento do migrador" + +#: class/class-mainwp-child-updraft-plus-backups.php:2636 +#, php-format +msgid "" +"As long as your web hosting allows http (i.e. non-SSL access) or will " +"forward requests to https (which is almost always the case), this is no " +"problem. If that is not yet set up, then you should set it up, or use %s so " +"that the non-https links are automatically replaced." +msgstr "" +"Enquanto sua hospedagem na web permitir http (ou seja, acesso não SSL) ou " +"encaminhará pedidos para https (o que é quase sempre o caso), isso não é " +"problema. Se isso ainda não estiver configurado, então você deve configurá-" +"lo, ou use %s para que os links não-https sejam automaticamente substituídos." + +#: class/class-mainwp-child-updraft-plus-backups.php:2648 +msgid "" +"You can search and replace your database (for migrating a website to a new " +"location/URL) with the Migrator add-on - follow this link for more " +"information" +msgstr "" +"Você pode procurar e substituir seu banco de dados (para migrar um site para " +"uma nova localização / URL) com o complemento do Migrator - siga este link " +"para obter mais informações" + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "" +"You are using the %1$s webserver, but do not seem to have the %2$s module " +"loaded." +msgstr "" +"Você está usando o servidor da Web %1$s, mas parece não ter o módulo %2$s " +"carregado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2653 +#, php-format +msgid "You should enable %1$s to make any pretty permalinks (e.g. %2$s) work" +msgstr "" +"Você deve ativar %1$s para que os links permanentes bonitos (por exemplo, " +"%2$s) funcionem" + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "It will be imported as a new site." +msgstr "Será importado como um novo site." + +#: class/class-mainwp-child-updraft-plus-backups.php:2696 +msgid "Please read this link for important information on this process." +msgstr "Leia este link para obter informações importantes sobre este processo." + +#: class/class-mainwp-child-updraft-plus-backups.php:2698 +#, php-format +msgid "" +"To import an ordinary WordPress site into a multisite installation requires " +"%s." +msgstr "" +"Para importar um site comum do WordPress em uma instalação de vários sites, " +"é necessário %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +#, php-format +msgid "" +"The database backup uses MySQL features not available in the old MySQL " +"version (%s) that this site is running on." +msgstr "" +"O backup do banco de dados usa recursos do MySQL não disponíveis na versão " +"antiga do MySQL (%s) em que este site está sendo executado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2766 +msgid "You must upgrade MySQL to be able to use this database." +msgstr "Você deve atualizar o MySQL para poder usar este banco de dados." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the character set (%s) which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"the character sets (%s) which you are trying to import." +msgstr[0] "" +"O servidor de banco de dados que este site WordPress está sendo executado " +"não suporta o conjunto de caracteres (%s) que você está tentando importar." +msgstr[1] "" +"O servidor de banco de dados em que este site WordPress está sendo executado " +"não suporta os conjuntos de caracteres (%s) que você está tentando importar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "" +"You can choose another suitable character set instead and continue with the " +"restoration at your own risk." +msgstr "" +"Você pode escolher outro conjunto de caracteres adequado e continuar com a " +"restauração sob seu próprio risco." + +#: class/class-mainwp-child-updraft-plus-backups.php:2787 +msgid "Go here for more information." +msgstr "Vá aqui para obter mais informações." + +#: class/class-mainwp-child-updraft-plus-backups.php:2797 +msgid "Your chosen character set to use instead:" +msgstr "O seu conjunto de caracteres escolhido para usar em vez disso:" + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +#, php-format +msgid "" +"The database server that this WordPress site is running on doesn't support " +"the collation (%s) used in the database which you are trying to import." +msgid_plural "" +"The database server that this WordPress site is running on doesn't support " +"multiple collations (%s) used in the database which you are trying to import." +msgstr[0] "" +"O servidor de banco de dados que este site WordPress está sendo executado " +"não suporta o agrupamento (%s) usado no banco de dados que você está " +"tentando importar." +msgstr[1] "" +"O servidor de banco de dados em que este site WordPress está sendo executado " +"não suporta vários agrupamentos (%s) usados no banco de dados que você está " +"tentando importar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2823 +msgid "" +"You can choose another suitable collation instead and continue with the " +"restoration (at your own risk)." +msgstr "" +"Você pode escolher outro agrupamento adequado e continuar com a restauração " +"(sob seu próprio risco)." + +#: class/class-mainwp-child-updraft-plus-backups.php:2846 +msgid "Your chosen replacement collation" +msgstr "Seu agrupamento (collation) substituto escolhido" + +#: class/class-mainwp-child-updraft-plus-backups.php:2895 +#, php-format +msgid "This database backup has the following WordPress tables excluded: %s" +msgstr "" +"Este backup do banco de dados tem as seguintes tabelas do WordPress " +"excluídas: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your web server's PHP installation has these functions disabled: %s." +msgstr "" +"A instalação do PHP do seu servidor web possui essas funções desabilitadas: " +"%s." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +#, php-format +msgid "Your hosting company must enable these functions before %s can work." +msgstr "" +"Sua empresa de hospedagem deve habilitar essas funções antes que %s possa " +"funcionar." + +#: class/class-mainwp-child-updraft-plus-backups.php:2925 +msgid "restoration" +msgstr "restauração" + +#: class/class-mainwp-child-updraft-plus-backups.php:2959 +msgid "" +"The database file appears to have been compressed twice - probably the " +"website you downloaded it from had a mis-configured webserver." +msgstr "" +"O arquivo do banco de dados parece ter sido compactado duas vezes - " +"provavelmente o site do qual você o baixou tinha um servidor web mal " +"configurado." + +#: class/class-mainwp-child-updraft-plus-backups.php:2966 +#: class/class-mainwp-child-updraft-plus-backups.php:2990 +msgid "The attempt to undo the double-compression failed." +msgstr "A tentativa de desfazer a compactação dupla falhou." + +#: class/class-mainwp-child-updraft-plus-backups.php:2992 +msgid "The attempt to undo the double-compression succeeded." +msgstr "A tentativa de desfazer a dupla compactação foi bem-sucedida." + +#: class/class-mainwp-child-updraft-plus-backups.php:3038 +msgid "You have not yet made any backups." +msgstr "Você ainda não fez backups." + +#: class/class-mainwp-child-updraft-plus-backups.php:3053 +msgid "Backup date" +msgstr "Data de reserva" + +#: class/class-mainwp-child-updraft-plus-backups.php:3054 +msgid "Backup data (click to download)" +msgstr "Dados de backup (clique para baixar)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3088 +msgid "remote site" +msgstr "site remoto" + +#: class/class-mainwp-child-updraft-plus-backups.php:3089 +#, php-format +msgid "Remote storage: %s" +msgstr "Armazenamento remoto: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +msgid "Go to Restore" +msgstr "Ir para Restaurar" + +#: class/class-mainwp-child-updraft-plus-backups.php:3170 +#: class/class-mainwp-clone-page.php:266 class/class-mainwp-clone-page.php:1236 +msgid "Restore" +msgstr "Restaurar" + +#: class/class-mainwp-child-updraft-plus-backups.php:3189 +msgid "Delete this backup set" +msgstr "Exclua este conjunto de backup" + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "" +"If you are seeing more backups than you expect, then it is probably because " +"the deletion of old backup sets does not happen until a fresh backup " +"completes." +msgstr "" +"Se você estiver vendo mais backups do que o esperado, provavelmente é porque " +"a exclusão de conjuntos de backup antigos não acontece até que um novo " +"backup seja concluído." + +#: class/class-mainwp-child-updraft-plus-backups.php:3206 +msgid "(Not finished)" +msgstr "(Não finalizado)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3229 +#: class/class-mainwp-child-updraft-plus-backups.php:3299 +msgid "unknown source" +msgstr "fonte desconhecida" + +#: class/class-mainwp-child-updraft-plus-backups.php:3235 +#, php-format +msgid "Database (created by %s)" +msgstr "Banco de dados (criado por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3237 +msgid "External database" +msgstr "Banco de dados externo" + +#: class/class-mainwp-child-updraft-plus-backups.php:3297 +#, php-format +msgid "Backup created by: %s." +msgstr "Backup criado por: %s." + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files and database WordPress backup (created by %s)" +msgstr "Arquivos e banco de dados Backup do WordPress (criado por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3303 +#, php-format +msgid "Files backup (created by %s)" +msgstr "Backup de arquivos (criado por %s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3332 +msgid "Press here to download" +msgstr "Pressione aqui para fazer o download" + +#: class/class-mainwp-child-updraft-plus-backups.php:3338 +#, php-format +msgid "(%d archive(s) in set)." +msgstr "(%d arquivo(s) no conjunto)." + +#: class/class-mainwp-child-updraft-plus-backups.php:3341 +msgid "" +"You appear to be missing one or more archives from this multi-archive set." +msgstr "" +"Você parece estar faltando um ou mais arquivos deste conjunto de vários " +"arquivos." + +#: class/class-mainwp-child-updraft-plus-backups.php:3708 +msgid "The backup apparently succeeded and is now complete" +msgstr "O backup aparentemente foi bem sucedido e está completo agora" + +#: class/class-mainwp-child-updraft-plus-backups.php:3752 +msgid "Backup begun" +msgstr "O backup começou" + +#: class/class-mainwp-child-updraft-plus-backups.php:3756 +msgid "Creating file backup zips" +msgstr "Criando zips de backup de arquivo" + +#: class/class-mainwp-child-updraft-plus-backups.php:3770 +msgid "Created file backup zips" +msgstr "Zips criados de backup de arquivos" + +#: class/class-mainwp-child-updraft-plus-backups.php:3774 +msgid "Uploading files to remote storage" +msgstr "Fazendo upload de arquivos para armazenamento remoto" + +#: class/class-mainwp-child-updraft-plus-backups.php:3781 +#, php-format +msgid "(%1$s%%, file %2$s of %3$s)" +msgstr "(%1$s%%, arquivo %2$s de %3$s)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3786 +msgid "Pruning old backup sets" +msgstr "Poder de conjuntos de backup antigo" + +#: class/class-mainwp-child-updraft-plus-backups.php:3790 +msgid "Waiting until scheduled time to retry because of errors" +msgstr "Esperando até o horário agendado para tentar novamente devido a erros" + +#: class/class-mainwp-child-updraft-plus-backups.php:3794 +msgid "Backup finished" +msgstr "O backup foi concluído" + +#: class/class-mainwp-child-updraft-plus-backups.php:3809 +msgid "Created database backup" +msgstr "Criou backup de banco de dados" + +#: class/class-mainwp-child-updraft-plus-backups.php:3821 +msgid "Creating database backup" +msgstr "Criando backup de banco de dados" + +#: class/class-mainwp-child-updraft-plus-backups.php:3823 +#, php-format +msgid "table: %s" +msgstr "tabela: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3837 +msgid "Encrypting database" +msgstr "Banco de dados criptografado" + +#: class/class-mainwp-child-updraft-plus-backups.php:3846 +msgid "Encrypted database" +msgstr "Banco de dados criptografado" + +#: class/class-mainwp-child-updraft-plus-backups.php:3867 +#, php-format +msgid "next resumption: %1$d (after %2$ss)" +msgstr "próxima retomada: %1$d (após %2$ss)" + +#: class/class-mainwp-child-updraft-plus-backups.php:3868 +#, php-format +msgid "last activity: %ss ago" +msgstr "última atividade: %ss ago" + +#: class/class-mainwp-child-updraft-plus-backups.php:3879 +#, php-format +msgid "Job ID: %s" +msgstr "ID do trabalho: %s" + +#: class/class-mainwp-child-updraft-plus-backups.php:3882 +msgid "show log" +msgstr "show log" + +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "" +"Note: the progress bar below is based on stages, NOT time. Do not stop the " +"backup simply because it seems to have remained in the same place for a " +"while - that is normal." +msgstr "" +"Nota: a barra de progresso abaixo é baseada em estágios, NÃO TEMPO. Não pare " +"o backup simplesmente porque parece ter permanecido no mesmo local por um " +"tempo - isso é normal." + +#: class/class-mainwp-child-updraft-plus-backups.php:3885 +msgid "delete schedule" +msgstr "excluir agendamento" + +#: class/class-mainwp-child-updraft-plus-backups.php:3941 +msgid "Job deleted" +msgstr "Trabalho excluído" + +#: class/class-mainwp-child-updraft-plus-backups.php:3953 +msgid "Could not find that job - perhaps it has already finished?" +msgstr "Não foi possível encontrar esse emprego - talvez já tenha terminado?" + +#: class/class-mainwp-child-updraft-plus-backups.php:4008 +msgid "Error: unexpected file read fail" +msgstr "Erro: falha inesperada na leitura do arquivo" + +#: class/class-mainwp-child-updraft-plus-backups.php:4015 +#: class/class-mainwp-child-updraft-plus-backups.php:4018 +msgid "The log file could not be read." +msgstr "O arquivo do histórico não pôde ser lido." + +#: class/class-mainwp-child-updraft-plus-backups.php:4047 +msgid "Download failed" +msgstr "Download falhou" + +#: class/class-mainwp-child-updraft-plus-backups.php:4065 +msgid "File ready." +msgstr "Arquivo pronto." + +#: class/class-mainwp-child-updraft-plus-backups.php:4077 +msgid "Download in progress" +msgstr "Download em progresso" + +#: class/class-mainwp-child-updraft-plus-backups.php:4080 +msgid "No local copy present." +msgstr "Nenhum exemplar local presente." + +#: class/class-mainwp-child-users.php:392 +msgid "ERROR: Please enter a username." +msgstr "ERRO: Por favor, informe um usuário." + +#: class/class-mainwp-child-users.php:400 +msgid "ERROR: Please enter a password." +msgstr "ERRO: Por favor insira uma senha." + +#: class/class-mainwp-child-users.php:404 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "ERRO: A senha não pode conter o caracter “\\”." + +#: class/class-mainwp-child-users.php:408 +msgid "" +"ERROR: Please enter the same password in both password " +"fields." +msgstr "ERRO: Digite a mesma senha nos dois campos de senha." + +#: class/class-mainwp-child-users.php:421 +msgid "ERROR: Sorry, that username is not allowed." +msgstr "ERRO: Esse nome de usuário não é permitido." + +#: class/class-mainwp-child-users.php:427 +msgid "ERROR: Please enter an email address." +msgstr "ERRO: Digite um E-mail." + +#: class/class-mainwp-child-users.php:429 +msgid "ERROR: The email address isn’t correct." +msgstr "ERRO: O endereço de e-mail não está correto." + +#: class/class-mainwp-child-users.php:431 +msgid "" +"ERROR: This email is already registered, please choose " +"another one." +msgstr "ERRO: Este e-mail já está registrado, escolha outro." + +#: class/class-mainwp-child-users.php:537 +msgid "Administrator password could not be changed." +msgstr "Não foi possível alterar a senha do administrador." + +#: class/class-mainwp-child-users.php:585 +msgid "Undefined error!" +msgstr "Erro não definido!" + +#: class/class-mainwp-child-users.php:598 +#, php-format +msgid "Username: %s" +msgstr "Usuário: %s" + +#: class/class-mainwp-child-users.php:599 +#, php-format +msgid "Password: %s" +msgstr "Senha: %s" + +#: class/class-mainwp-child-users.php:602 +#, php-format +msgid "[%s] Your username and password" +msgstr "[%s] Seu usuário e senha" + +#: class/class-mainwp-child-wordfence.php:549 +msgid "Please install the Wordfence plugin on the child site." +msgstr "Instale o plug-in do Wordfence no site filho." + +#: class/class-mainwp-child-wordfence.php:1855 +#: class/class-mainwp-child-wordfence.php:1860 +msgid "An error occurred: " +msgstr "Ocorreu um erro: " + +#: class/class-mainwp-child-wordfence.php:1857 +msgid "Invalid response: " +msgstr "Código de resposta inválido: " + +#: class/class-mainwp-child-wordfence.php:1884 +msgid "An error occurred: Invalid options format received." +msgstr "Ocorreu um erro: Formato das opções inválidas recebidas." + +#: class/class-mainwp-child-wordfence.php:2400 +#, php-format +msgid "An error occurred while saving the configuration: %s" +msgstr "Ocorreu um erro ao salvar a configuração: %s" + +#: class/class-mainwp-child-wordfence.php:2408 +#, php-format +msgid "Errors occurred while saving the configuration: %s" +msgstr "Ocorreram erros ao salvar a configuração: %s" + +#: class/class-mainwp-child-wordfence.php:2413 +msgid "Errors occurred while saving the configuration." +msgstr "Ocorreram erros ao salvar a configuração." + +#: class/class-mainwp-child-wordfence.php:2421 +msgid "An error occurred while saving the configuration." +msgstr "Ocorreu um erro ao salvar a configuração." + +#: class/class-mainwp-child-wordfence.php:2431 +msgid "No configuration changes were provided to save." +msgstr "Nenhuma mudança de configuração foi fornecida para salvar." + +#: class/class-mainwp-child-wordfence.php:3196 +msgid "IP Detection" +msgstr "Detecção de IP" + +#: class/class-mainwp-child-wordfence.php:3197 +msgid "Methods of detecting a visitor's IP address." +msgstr "Métodos de detecção do endereço IP de um visitante." + +#: class/class-mainwp-child-wordfence.php:3208 +msgid "IPs" +msgstr "IPs" + +#: class/class-mainwp-child-wordfence.php:3210 +msgid "Used" +msgstr "Usado" + +#: class/class-mainwp-child-wordfence.php:3276 +msgid "WordPress Settings" +msgstr "Configurações Wordpress" + +#: class/class-mainwp-child-wordfence.php:3277 +msgid "WordPress version and internal settings/constants." +msgstr "Versão WordPress e configurações/constantes internas." + +#: class/class-mainwp-child-wordfence.php:3495 +msgid "WordPress Plugins" +msgstr "Plugins do WordPress" + +#: class/class-mainwp-child-wordfence.php:3496 +msgid "Status of installed plugins." +msgstr "Status dos plugins instalados." + +#: class/class-mainwp-child-wordfence.php:3531 +msgid "Must-Use WordPress Plugins" +msgstr "Plug-ins de WordPress de uso obrigatório" + +#: class/class-mainwp-child-wordfence.php:3532 +msgid "" +"WordPress \"mu-plugins\" that are always active, incluing those provided by " +"hosts." +msgstr "" +"\"Mu-plugins\" do WordPress que estão sempre ativos, inclusive os fornecidos " +"por hosts." + +#: class/class-mainwp-child-wordfence.php:3569 +msgid "Themes" +msgstr "Temas" + +#: class/class-mainwp-child-wordfence.php:3570 +msgid "Status of installed themes." +msgstr "Status dos temas instalados." + +#: class/class-mainwp-child-wordfence.php:3608 +msgid "Cron Jobs" +msgstr "Tarefas Agendadas" + +#: class/class-mainwp-child-wordfence.php:3609 +msgid "List of WordPress cron jobs scheduled by WordPress, plugins, or themes." +msgstr "" +"Lista de trabalhos cronológicos do WordPress programados por WordPress, " +"plugins, ou temas." + +#: class/class-mainwp-child-wordfence.php:3662 +msgid "Database Tables" +msgstr "Tabelas Banco de Dados" + +#: class/class-mainwp-child-wordfence.php:3663 +msgid "Database table names, sizes, timestamps, and other metadata." +msgstr "" +"Nomes, tamanhos, carimbos de tempo e outros metadados da tabela do banco de " +"dados." + +#: class/class-mainwp-child-wordfence.php:3713 +msgid "Log Files" +msgstr "Arquivos de registro" + +#: class/class-mainwp-child-wordfence.php:3714 +msgid "PHP error logs generated by your site, if enabled by your host." +msgstr "" +"Registros de erros PHP gerados por seu site, se habilitados por seu host." + +#: class/class-mainwp-child-wp-rocket.php:426 +msgid "Please install WP Rocket plugin on child website" +msgstr "Instale o plugin WP Rocket no site filho" + +#: class/class-mainwp-child-wp-seopress.php:91 +msgid "" +"Settings could not be exported. Missing function `seopress_return_settings`" +msgstr "" +"Não foi possível exportar as configurações. Função " +"`seopress_return_settings` ausente" + +#: class/class-mainwp-child-wp-seopress.php:98 +msgid "Export completed" +msgstr "Exportação concluída" + +#: class/class-mainwp-child-wp-seopress.php:112 +msgid "" +"Settings could not be imported. Missing function " +"`seopress_do_import_settings`" +msgstr "" +"Não foi possível importar as configurações. Função " +"`seopress_do_import_settings` ausente" + +#: class/class-mainwp-child-wp-seopress.php:120 +msgid "Import completed" +msgstr "Importação concluída" + +#: class/class-mainwp-child-wp-seopress.php:134 +msgid "" +"Settings could not be saved. Missing function `seopress_mainwp_save_settings`" +msgstr "" +"Não foi possível salvar as configurações. Função " +"`seopress_mainwp_save_settings` ausente" + +#: class/class-mainwp-child-wp-seopress.php:143 +msgid "Settings could not be saved. Missing option name." +msgstr "As configurações não puderam ser salvas. Nome da opção ausente." + +#: class/class-mainwp-child-wp-seopress.php:148 +#: class/class-mainwp-child-wp-seopress.php:173 +#: class/class-mainwp-child-wp-seopress.php:208 +msgid "SEOPress Pro plugin is not active on child site." +msgstr "O plug-in SEOPress Pro não está ativo no site filho." + +#: class/class-mainwp-child-wp-seopress.php:158 +#: class/class-mainwp-child-wp-seopress.php:191 +#: class/class-mainwp-child-wp-seopress.php:239 +msgid "Save successful" +msgstr "Salvar com sucesso" + +#: class/class-mainwp-child-wp-seopress.php:178 +msgid "" +"Settings could not be saved. Missing function `seopress_save_pro_licence`" +msgstr "" +"Não foi possível salvar as configurações. Função `seopress_save_pro_licence` " +"ausente" + +#: class/class-mainwp-child-wp-seopress.php:213 +msgid "" +"Licence could not be reset. Missing function `seopress_reset_pro_licence`" +msgstr "" +"Não foi possível redefinir a licença. Função ausente " +"`seopress_reset_pro_licence`" + +#: class/class-mainwp-child-wp-seopress.php:219 +msgid "Reset successful" +msgstr "Reinicialização bem-sucedida" + +#: class/class-mainwp-child-wp-seopress.php:233 +msgid "" +"Action could not be executed. Missing function `seopress_flush_rewrite_rules`" +msgstr "" +"A ação não pôde ser executada. Função `seopress_flush_rewrite_rules` ausente" + +#: class/class-mainwp-child.php:512 class/class-mainwp-pages.php:586 +msgid "Settings" +msgstr "Configurações" + +#: class/class-mainwp-client-report-base.php:878 +msgid "Guest" +msgstr "Convidado" + +#: class/class-mainwp-client-report-base.php:905 +msgid "Scan complete. Congratulations, no new problems found." +msgstr "" +"Verificação concluída. Parabéns, não foram encontrados novos problemas." + +#: class/class-mainwp-client-report-base.php:966 +#: class/class-mainwp-client-report-base.php:975 +msgid "Site Blacklisted" +msgstr "Site Lista Negra" + +#: class/class-mainwp-client-report-base.php:969 +msgid "Site With Warnings" +msgstr "Site com avisos" + +#: class/class-mainwp-client-report-base.php:973 +msgid "Verified Clear" +msgstr "Verificado claro" + +#: class/class-mainwp-client-report-base.php:975 +msgid "Trusted" +msgstr "Trusted" + +#: class/class-mainwp-client-report-base.php:995 +msgid "Delete all post revisions" +msgstr "Excluir todas as revisões de postagens" + +#: class/class-mainwp-client-report-base.php:996 +msgid "Delete all post revisions, except for the last:" +msgstr "Exclua todas as revisões de postagens, exceto a última:" + +#: class/class-mainwp-client-report-base.php:997 +msgid "Delete all auto draft posts" +msgstr "Excluir todas as postagens de rascunho automático" + +#: class/class-mainwp-client-report-base.php:998 +msgid "Delete trash posts" +msgstr "Excluir postagens de lixo" + +#: class/class-mainwp-client-report-base.php:999 +msgid "Delete spam comments" +msgstr "Excluir comentários de spam" + +#: class/class-mainwp-client-report-base.php:1000 +msgid "Delete pending comments" +msgstr "Excluir comentários pendentes" + +#: class/class-mainwp-client-report-base.php:1001 +msgid "Delete trash comments" +msgstr "Excluir comentários da lixeira" + +#: class/class-mainwp-client-report-base.php:1002 +msgid "Delete tags with 0 posts associated" +msgstr "Excluir tags com 0 postagens associadas" + +#: class/class-mainwp-client-report-base.php:1003 +msgid "Delete categories with 0 posts associated" +msgstr "Excluir categorias com 0 postagens associadas" + +#: class/class-mainwp-client-report-base.php:1004 +msgid "Optimize database tables" +msgstr "Otimizar Tabelas do Banco de Dados" + +#: class/class-mainwp-client-report.php:148 +msgid "No MainWP Child Reports plugin installed." +msgstr "Nenhum plugin MainWP Child Reports instalado." + +#: class/class-mainwp-clone-install.php:161 +#: class/class-mainwp-clone-install.php:164 +msgid "This is not a full backup." +msgstr "Este não é um backup completo." + +#: class/class-mainwp-clone-install.php:167 +msgid "Database backup is missing." +msgstr "O backup do banco de dados está ausente." + +#: class/class-mainwp-clone-install.php:223 +msgid "Cant read configuration file from the backup." +msgstr "Não é possível ler o arquivo de configuração do backup." + +#: class/class-mainwp-clone-install.php:390 +msgid "Error: unexpected end of file for database." +msgstr "Erro: fim inesperado do arquivo para o banco de dados." + +#: class/class-mainwp-clone-page.php:102 class/class-mainwp-clone-page.php:253 +msgid "File could not be uploaded." +msgstr "Não foi possível fazer o upload do arquivo." + +#: class/class-mainwp-clone-page.php:105 class/class-mainwp-clone-page.php:256 +msgid "" +"File is empty. Please upload something more substantial. This error could " +"also be caused by uploads being disabled in your php.ini or by post_max_size " +"being defined as smaller than upload_max_filesize in php.ini." +msgstr "" +"O arquivo está vazio. Por favor, faça o upload de algo mais substancial. " +"Este erro também pode ser causado por uploads sendo desativados em seu php." +"ini ou por post_max_size sendo definido como menor que upload_max_filesize " +"no php.ini." + +#: class/class-mainwp-clone-page.php:116 +msgid "" +"Cloning is currently off - To turn on return to your main dashboard and turn " +"cloning on on the Clone page." +msgstr "" +"A clonagem está desativada no momento - Para ativá-la, volte ao painel " +"principal e ative a clonagem na página Clone." + +#: class/class-mainwp-clone-page.php:129 class/class-mainwp-clone-page.php:279 +msgid "Your content directory is not writable. Please set 0755 permission to " +msgstr "" +"Seu diretório de conteúdo não pode ser gravado. Defina a permissão 0755 para " + +#: class/class-mainwp-clone-page.php:134 +msgid "Cloning process completed successfully! You will now need to click " +msgstr "" +"O processo de clonagem foi concluído com êxito! Agora você precisará clicar " +"em " + +#: class/class-mainwp-clone-page.php:135 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1209 +#: class/class-mainwp-clone-page.php:1247 +msgid "here" +msgstr "aqui" + +#: class/class-mainwp-clone-page.php:136 class/class-mainwp-clone-page.php:284 +#: class/class-mainwp-clone-page.php:1247 +msgid " to re-login to the admin and re-save permalinks." +msgstr "" +" para voltar a logar como admin e salvar novamente os links permanentes." + +#: class/class-mainwp-clone-page.php:160 class/class-mainwp-clone-page.php:288 +msgid "Upload successful." +msgstr "Upload finalizado." + +#: class/class-mainwp-clone-page.php:162 +msgid "Clone/Restore website" +msgstr "Clonar/Restaurar website" + +#: class/class-mainwp-clone-page.php:174 +msgid "" +"Cloning is currently on but no sites have been allowed, to allow sites " +"return to your main dashboard and turn cloning on on the Clone page." +msgstr "" +"A clonagem está ativada no momento, mas nenhum site foi permitido. Para " +"permitir sites, volte ao painel principal e ative a clonagem na página Clone." + +#: class/class-mainwp-clone-page.php:180 +msgid "Display by:" +msgstr "Mostrar por:" + +#: class/class-mainwp-clone-page.php:180 +msgid "Site Name" +msgstr "Nome do Site" + +#: class/class-mainwp-clone-page.php:180 +msgid "URL" +msgstr "URL" + +#: class/class-mainwp-clone-page.php:181 +msgid "Select Source for clone" +msgstr "Selecionar fonte para clone" + +#: class/class-mainwp-clone-page.php:196 +msgid "The site selected above will replace this site's files and database" +msgstr "" +"O site selecionado acima substituirá os arquivos e o banco de dados deste " +"site" + +#: class/class-mainwp-clone-page.php:200 +msgid "Clone website" +msgstr "Clonar website" + +#: class/class-mainwp-clone-page.php:212 class/class-mainwp-clone-page.php:266 +msgid "Option 1:" +msgstr "Opção 1:" + +#: class/class-mainwp-clone-page.php:212 +msgid "Restore/Clone from backup" +msgstr "Restaurar/Clonar de backup" + +#: class/class-mainwp-clone-page.php:214 class/class-mainwp-clone-page.php:299 +msgid "" +"Upload backup in .zip format (Maximum filesize for your server settings: " +msgstr "" +"Faça upload do backup em formato .zip (tamanho máximo de arquivo de acordo " +"com as configurações de seu servidor): " + +#: class/class-mainwp-clone-page.php:215 +msgid "" +"If you have a FULL backup created by the default MainWP Backup system you " +"may restore it by uploading here. Backups created by 3rd party plugins will " +"not work." +msgstr "" +"Se você tiver um backup COMPLETO criado pelo sistema de backup padrão do " +"MainWP, poderá restaurá-lo fazendo o upload aqui. Os backups criados por " +"plug-ins de terceiros não funcionarão." + +#: class/class-mainwp-clone-page.php:217 class/class-mainwp-clone-page.php:310 +msgid "A database only backup will not work." +msgstr "Só o backup do banco de dados não funcionará." + +#: class/class-mainwp-clone-page.php:222 class/class-mainwp-clone-page.php:499 +msgid "Clone/Restore Website" +msgstr "Clonar/Restaurar Website" + +#: class/class-mainwp-clone-page.php:283 class/class-mainwp-clone-page.php:1246 +msgid "Restore process completed successfully! You will now need to click " +msgstr "" +"O processo de restauração foi concluído com êxito! Agora você precisará " +"clicar em " + +#: class/class-mainwp-clone-page.php:290 class/class-mainwp-clone-page.php:314 +msgid "Restore Website" +msgstr "Restaurar Website" + +#: class/class-mainwp-clone-page.php:305 +msgid "" +"If you have a FULL backup created by basic MainWP Backup system you may " +"restore it by uploading here. Backups created by 3rd party plugins will not " +"work." +msgstr "" +"Se você tiver um backup COMPLETO criado pelo sistema básico de backup do " +"MainWP, poderá restaurá-lo fazendo o upload aqui. Os backups criados por " +"plug-ins de terceiros não funcionarão." + +#: class/class-mainwp-clone-page.php:371 +msgid "Option 2:" +msgstr "Opção 2:" + +#: class/class-mainwp-clone-page.php:371 +msgid "Restore/Clone From Server" +msgstr "Restaurar/clonar do servidor" + +#: class/class-mainwp-clone-page.php:373 +msgid "" +"If you have uploaded a FULL backup to your server (via FTP or other means) " +"you can use this section to locate the zip file and select it. A database " +"only backup will not work." +msgstr "" +"Se tiver feito upload de um backup COMPLETO para o servidor (via FTP ou " +"outro meio), use esta seção para localizar o arquivo zip e selecioná-lo. Um " +"backup somente do banco de dados não funcionará." + +#: class/class-mainwp-clone-page.php:376 +msgid "" +"Root directory is not readable. Please contact with site administrator to " +"correct." +msgstr "" +"O diretório raiz não pode ser lido. Entre em contato com o administrador do " +"site para corrigir o problema." + +#: class/class-mainwp-clone-page.php:395 +#, php-format +msgid "%1$sCurrent Directory:%2$s %3$s" +msgstr "%1$sDiretório atual:%2$s %3$s" + +#: class/class-mainwp-clone-page.php:397 +msgid "Site Root" +msgstr "Raiz do Site" + +#: class/class-mainwp-clone-page.php:398 +msgid "Backup" +msgstr "Cópia de segurança" + +#: class/class-mainwp-clone-page.php:401 +msgid "Uploads Folder" +msgstr "Pasta de Upload graváveis" + +#: class/class-mainwp-clone-page.php:403 +msgid "Content Folder" +msgstr "Pasta de Conteúdo" + +#: class/class-mainwp-clone-page.php:417 +msgid "Quick Jump:" +msgstr "Salto Rápido:" + +#: class/class-mainwp-clone-page.php:457 +msgid "Select File" +msgstr "Selecionar Arquivo" + +#: class/class-mainwp-clone-page.php:462 +msgid "Parent Folder" +msgstr "Pasta Principal" + +#: class/class-mainwp-clone-page.php:603 +#, php-format +msgid "" +"This is a large site (%dMB), the restore process will more than likely fail." +msgstr "" +"Esse é um site grande (%dMB), o processo de restauração provavelmente " +"falhará." + +#: class/class-mainwp-clone-page.php:604 +msgid "Continue Anyway?" +msgstr "Continuar Mesmo Assim?" + +#: class/class-mainwp-clone-page.php:605 +#, php-format +msgid "" +"Creating backup on %1$s expected size: %2$dMB (estimated time: %3$d seconds)" +msgstr "" +"Criando backup em %1$s tamanho esperado: %2$dMB (tempo estimado: %3$d " +"segundos)" + +#: class/class-mainwp-clone-page.php:606 +#, php-format +msgid "Backup created on %1$s total size to download: %2$dMB" +msgstr "Backup criado em %1$s tamanho total para download: %2$dMB" + +#: class/class-mainwp-clone-page.php:607 +msgid "Downloading backup" +msgstr "Fazendo download do backup" + +#: class/class-mainwp-clone-page.php:608 +msgid "Backup downloaded" +msgstr "Backup baixado" + +#: class/class-mainwp-clone-page.php:609 +msgid "" +"Extracting backup and updating your database, this might take a while. " +"Please be patient." +msgstr "" +"A extração do backup e a atualização do banco de dados podem demorar um " +"pouco. Por favor, seja paciente." + +#: class/class-mainwp-clone-page.php:610 +msgid "Cloning process completed successfully!" +msgstr "O processo de clonagem foi concluído com êxito!" + +#: class/class-mainwp-clone-page.php:1204 +msgid "Restore process completed successfully! Check and re-save permalinks " +msgstr "" +"O processo de restauração foi concluído com êxito! Verificar e salvar " +"novamente os permalinks " + +#: class/class-mainwp-clone-page.php:1206 +msgid "Cloning process completed successfully! Check and re-save permalinks " +msgstr "" +"O processo de clonagem foi concluído com êxito! Verificar e salvar novamente " +"os permalinks " + +#: class/class-mainwp-clone-page.php:1240 +msgid "" +"Be sure to use a FULL backup created by your Network dashboard, if critical " +"folders are excluded it may result in a not working installation." +msgstr "" +"Certifique-se de usar um backup COMPLETO criado pelo seu painel de Rede, se " +"as pastas críticas forem excluídas isto talvez resulte numa instalação que " +"não funcionará." + +#: class/class-mainwp-clone-page.php:1243 +msgid "Start Restore" +msgstr "Iniciar Restauração" + +#: class/class-mainwp-clone-page.php:1244 +msgid "CAUTION: this will overwrite your existing site." +msgstr "ATENÇÃO: isto irá substituir seu site existente." + +#: class/class-mainwp-clone-page.php:1252 +msgid "Restore process completed successfully!" +msgstr "O processo de restauração foi concluído com êxito!" + +#: class/class-mainwp-clone.php:145 +msgid "Double request!" +msgstr "Requisição dupla!" + +#: class/class-mainwp-clone.php:434 class/class-mainwp-clone.php:510 +msgid "No site given" +msgstr "Nenhum local informado" + +#: class/class-mainwp-clone.php:443 class/class-mainwp-clone.php:517 +#: class/class-mainwp-clone.php:583 +msgid "Site not found" +msgstr "Site não encontrado" + +#: class/class-mainwp-clone.php:478 +msgid "Could not create backupfile on child" +msgstr "Não foi possível criar arquivo de backup no filho" + +#: class/class-mainwp-clone.php:538 +msgid "Invalid response" +msgstr "Resposta inválida" + +#: class/class-mainwp-clone.php:573 +msgid "No download link given" +msgstr "Nenhum link de download foi fornecido" + +#: class/class-mainwp-clone.php:695 class/class-mainwp-clone.php:810 +msgid "No download file found" +msgstr "Nenhum arquivo de download encontrado" + +#: class/class-mainwp-clone.php:818 +msgid "Backup file not found" +msgstr "Arquivo de backup não foi encontrado" + +#: class/class-mainwp-connect.php:89 +#, php-format +msgid "" +"Public key could not be set. Please make sure that the OpenSSL library has " +"been configured correctly on your MainWP Dashboard. For additional help, " +"please check this %1$shelp document%2$s." +msgstr "" +"Não foi possível definir a chave pública. Certifique-se de que a biblioteca " +"OpenSSL tenha sido configurada corretamente em seu MainWP Dashboard. Para " +"obter ajuda adicional, consulte este %1$sdocumento de ajuda%2$s." + +#: class/class-mainwp-connect.php:97 +msgid "" +"Public key already set. Please deactivate & reactivate the MainWP Child " +"plugin on the child site and try again." +msgstr "" +"Chave pública já definida. Desative e reative o plug-in MainWP Child no site " +"filho e tente novamente." + +#: class/class-mainwp-connect.php:104 +msgid "" +"This child site is set to require a unique security ID. Please enter it " +"before the connection can be established." +msgstr "" +"Este site filho está configurado para exigir uma ID de segurança exclusiva. " +"Insira-a antes que a conexão possa ser estabelecida." + +#: class/class-mainwp-connect.php:106 +msgid "" +"The unique security ID mismatch! Please correct it before the connection can " +"be established." +msgstr "" +"A ID de segurança exclusiva é incompatível! Corrija-o antes que a conexão " +"possa ser estabelecida." + +#: class/class-mainwp-connect.php:112 +msgid "" +"OpenSSL library is required on the child site to set up a secure connection." +msgstr "" +"A biblioteca OpenSSL é necessária no site filho para configurar uma conexão " +"segura." + +#: class/class-mainwp-connect.php:117 +msgid "" +"cURL Extension not enabled on the child site server. Please contact your " +"host support and have them enabled it for you." +msgstr "" +"a extensão cURL não está ativada no servidor do site filho. Entre em contato " +"com o suporte do seu host para que ele a habilite para você." + +#: class/class-mainwp-connect.php:122 +msgid "" +"Failed to reconnect to the site. Please remove the site and add it again." +msgstr "Falha ao reconectar ao site. Remova o site e adicione-o novamente." + +#: class/class-mainwp-connect.php:124 +msgid "" +"Unable to connect to the site. Please verify that your Admin Username and " +"Password are correct and try again." +msgstr "" +"Não foi possível conectar-se ao site. Verifique se o nome de usuário e a " +"senha do administrador estão corretos e tente novamente." + +#: class/class-mainwp-connect.php:130 +msgid "" +"Administrator user does not exist. Please verify that the user is an " +"existing administrator." +msgstr "" +"Usuário administrador inexistente. Verifique se ele é um administrador " +"existente." + +#: class/class-mainwp-connect.php:133 +msgid "" +"User is not an administrator. Please use an administrator user to establish " +"the connection." +msgstr "" +"O usuário não é um administrador. Use um usuário administrador para " +"estabelecer a conexão." + +#: class/class-mainwp-connect.php:399 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this child site and try again." +msgstr "" +"A autenticação falhou! Desative e reative o plug-in MainWP Child neste site " +"secundário e tente novamente." + +#: class/class-mainwp-connect.php:408 +msgid "" +"Authentication failed! Please deactivate & re-activate the MainWP Child " +"plugin on this site and try again." +msgstr "" +"Falha na autenticação! Desative e reative o plug-in MainWP Child neste site " +"e tente novamente." + +#: class/class-mainwp-connect.php:436 class/class-mainwp-connect.php:969 +msgid "" +"Unexisting administrator user. Please verify that it is an existing " +"administrator." +msgstr "" +"Usuário administrador inexistente. Verifique se ele é um administrador " +"existente." + +#: class/class-mainwp-connect.php:440 class/class-mainwp-connect.php:972 +msgid "" +"User not administrator. Please use an administrator user to establish the " +"connection." +msgstr "" +"O usuário não é administrador. Use um usuário administrador para estabelecer " +"a conexão." + +#: class/class-mainwp-connect.php:614 +msgid "" +"To use OPENSSL_ALGO_SHA1 OpenSSL signature algorithm. Please deactivate & " +"reactivate the MainWP Child plugin on the child site and try again." +msgstr "" +"Para usar o algoritmo de assinatura OPENSSL_ALGO_SHA1 OpenSSL. Desative e " +"reative o plug-in MainWP Child no site filho e tente novamente." + +#: class/class-mainwp-connect.php:948 +msgid "" +"Authentication failed! Please deactivate and re-activate the MainWP Child " +"plugin on this site." +msgstr "" +"A autenticação falhou! Desative e reative o plug-in MainWP Child neste site." + +#: class/class-mainwp-custom-post-type.php:187 +msgid "Missing data" +msgstr "Dados ausentes" + +#: class/class-mainwp-custom-post-type.php:198 +msgid "Cannot decode data" +msgstr "Não é possível decodificar dados" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "Missing" +msgstr "Faltando" + +#: class/class-mainwp-custom-post-type.php:311 +msgid "inside post data" +msgstr "dentro dos dados de postagem" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "Please install" +msgstr "Instale" + +#: class/class-mainwp-custom-post-type.php:324 +msgid "on child and try again" +msgstr "na criança e tente novamente" + +#: class/class-mainwp-custom-post-type.php:340 +msgid "" +"Cannot get old post. Probably is deleted now. Please try again for create " +"new post" +msgstr "" +"Não é possível obter a postagem antiga. Provavelmente foi excluído agora. " +"Tente novamente para criar uma nova postagem" + +#: class/class-mainwp-custom-post-type.php:345 +msgid "" +"This post is inside trash on child website. Please try publish it manually " +"and try again." +msgstr "" +"Esta postagem está dentro da lixeira do site infantil. Tente publicá-lo " +"manualmente e tente novamente." + +#: class/class-mainwp-custom-post-type.php:354 +msgid "Cannot delete old post meta values" +msgstr "Não é possível excluir meta valores de postagens antigas" + +#: class/class-mainwp-custom-post-type.php:375 +msgid "Error when insert new post:" +msgstr "Erro ao inserir nova postagem:" + +#: class/class-mainwp-custom-post-type.php:520 +msgid "Missing taxonomy" +msgstr "Taxonomia ausente" + +#: class/class-mainwp-custom-post-type.php:545 +msgid "Error when adding taxonomy to post" +msgstr "Erro ao adicionar taxonomia ao post" + +#: class/class-mainwp-custom-post-type.php:619 +msgid "Product SKU must be unique" +msgstr "O código REF de um produto precisa ser único" + +#: class/class-mainwp-custom-post-type.php:641 +msgid "Cannot add featured image" +msgstr "Não é possível adicionar imagem em destaque" + +#: class/class-mainwp-custom-post-type.php:653 +msgid "Error when adding post meta" +msgstr "Erro ao adicionar meta de postagem" + +#: class/class-mainwp-custom-post-type.php:682 +msgid "Cannot add product image" +msgstr "Não é possível adicionar a imagem do produto" + +#: class/class-mainwp-helper.php:134 +msgid "Unable to connect to the filesystem." +msgstr "Não foi possível conectar-se ao sistema de arquivos." + +#: class/class-mainwp-helper.php:295 +msgid "Unable to create directory " +msgstr "Não é possível criar diretório " + +#: class/class-mainwp-helper.php:295 +msgid " Is its parent directory writable by the server?" +msgstr " O diretório-pai possui permissão de escrita?" + +#: class/class-mainwp-helper.php:414 +msgid "WordPress Filesystem error: " +msgstr "Erro no sistema de arquivos do WordPress: " + +#: class/class-mainwp-pages.php:113 +msgid " Plugin is Active" +msgstr " O plug-in está ativo" + +#: class/class-mainwp-pages.php:114 +msgid "" +"This site is now ready for connection. Please proceed with the connection " +"process from your " +msgstr "" +"Este site está pronto para conexão. Prossiga com o processo de conexão a " +"partir de seu" + +#: class/class-mainwp-pages.php:114 +msgid "to start managing the site. " +msgstr "para começar a gerenciar o site." + +#: class/class-mainwp-pages.php:115 +#, php-format +msgid "If you need assistance, refer to our %1$sdocumentation%2$s." +msgstr "Se precisar de ajuda, consulte nossa %1$sdocumentação%2$s." + +#: class/class-mainwp-pages.php:117 +msgid "For additional security options, visit the " +msgstr "Para obter opções de segurança adicionais, visite o site" + +#: class/class-mainwp-pages.php:117 +#, php-format +msgid " %1$splugin settings%2$s. " +msgstr "\"%1$s\" plug-in desativado %2$s" + +#: class/class-mainwp-pages.php:129 +msgid "Disconnected the Site from Dashboard." +msgstr "Desconectou o site do Dashboard." + +#: class/class-mainwp-pages.php:131 +msgid "Settings have been saved successfully." +msgstr "As configurações foram salvas com sucesso." + +#: class/class-mainwp-pages.php:139 +msgid "Dismiss this notice." +msgstr "Dispensar esse aviso." + +#: class/class-mainwp-pages.php:589 +msgid "Restore / Clone" +msgstr "Restaurar / Clonar" + +#: class/class-mainwp-pages.php:595 +msgid "Connection Details" +msgstr "Detalhes de Conexão" + +#: class/class-mainwp-pages.php:668 +msgid "Connection Security Settings" +msgstr "Configurações da conexão" + +#: class/class-mainwp-pages.php:669 +msgid "Configure the plugin to best suit your security and connection needs." +msgstr "" +"Configure o plug-in para melhor atender às suas necessidades de segurança e " +"conexão." + +#: class/class-mainwp-pages.php:673 +msgid "Password Authentication - Initial Connection Security" +msgstr "Autenticação por senha - Segurança da conexão inicial" + +#: class/class-mainwp-pages.php:676 +msgid "" +" requests that you connect using an admin account and password for the " +"initial setup. Rest assured, your password is never stored by your Dashboard " +"and never sent to " +msgstr "" +" solicita que você se conecte usando uma conta de administrador e uma senha " +"para a configuração inicial. Fique tranquilo, sua senha nunca é armazenada " +"pelo Dashboard e nunca é enviada para" + +#: class/class-mainwp-pages.php:677 +msgid "Dedicated " +msgstr "Dedicado" + +#: class/class-mainwp-pages.php:678 +msgid "" +"For further security, we recommend creating a dedicated admin account " +"specifically for " +msgstr "" +"Para maior segurança, recomendamos a criação de uma conta de administrador " +"dedicada especificamente para" + +#: class/class-mainwp-pages.php:679 +msgid "Disabling Password Security" +msgstr "Desativar a segurança da senha" + +#: class/class-mainwp-pages.php:680 +msgid "" +"If you prefer not to use password security, you can disable it by unchecking " +"the box below. Make sure this child site is ready to connect before turning " +"off this feature." +msgstr "" +"Se preferir não usar a segurança por senha, você pode desativá-la " +"desmarcando a caixa abaixo. Certifique-se de que o site filho esteja pronto " +"para se conectar antes de desativar esse recurso." + +#: class/class-mainwp-pages.php:684 +msgid "" +"If you have additional questions, please refer to this Knowledge Base " +"article or contact " +msgstr "" +"Se tiver outras dúvidas, consulte este artigo da Base de Conhecimento ou " +"entre em contato com" + +#: class/class-mainwp-pages.php:686 +#, php-format +msgid "" +"If you have additional questions, please %srefer to this Knowledge Base " +"article%s or %scontact MainWP Support%s." +msgstr "" +"Se tiver outras dúvidas, %sconsulte este artigo da Base de Conhecimento%s ou " +"%sentre em contato com o Suporte do MainWP%s." + +#: class/class-mainwp-pages.php:693 +msgid "Require Password Authentication" +msgstr "Exigir autenticação por senha" + +#: class/class-mainwp-pages.php:698 +msgid "" +"Enable this option to require password authentication on initial site " +"connection." +msgstr "" +"Ative essa opção para exigir autenticação por senha na conexão inicial com o " +"site." + +#: class/class-mainwp-pages.php:705 +msgid "Unique Security ID" +msgstr "" +"Você gerou uma ID de segurança exclusiva no site? Se sim, copie-o aqui; se " +"não, deixe este campo em branco. " + +#: class/class-mainwp-pages.php:708 +#, php-format +msgid "" +"Add an extra layer of security for connecting this site to your %s Dashboard." +msgstr "" +"Adicione uma camada extra de segurança para conectar esse site ao seu %s " +"Dashboard." + +#: class/class-mainwp-pages.php:713 +msgid "Require Unique Secuirty ID" +msgstr "Exigir uma ID de segurança exclusiva" + +#: class/class-mainwp-pages.php:718 +msgid "" +"Enable this option for an added layer of protection when connecting this " +"site." +msgstr "" +"Ative essa opção para obter uma camada adicional de proteção ao se conectar " +"a esse site." + +#: class/class-mainwp-pages.php:729 +msgid "Your unique security ID is:" +msgstr "Sua ID de segurança exclusiva é:" + +#: class/class-mainwp-pages.php:737 +msgid "Connection Timeout" +msgstr "Tempo limite de conexão" + +#: class/class-mainwp-pages.php:740 +msgid "" +"Define how long the plugin will remain active if no connection is " +"established. After this period, the plugin will automatically deactivate for " +"security." +msgstr "" +"Defina por quanto tempo o plug-in permanecerá ativo se nenhuma conexão for " +"estabelecida. Após esse período, o plug-in será desativado automaticamente " +"por segurança." + +#: class/class-mainwp-pages.php:744 +msgid "Set Connection Timeout" +msgstr "Detalhes da conexão" + +#: class/class-mainwp-pages.php:747 +msgid "" +"Specify how long the plugin should stay active if a connection isn't " +"established. Enter a value in minutes." +msgstr "" +"Especifique por quanto tempo o plug-in deve permanecer ativo se uma conexão " +"não for estabelecida. Insira um valor em minutos." + +#: class/class-mainwp-pages.php:757 +msgid "Save Settings" +msgstr "Salvar Configurações" + +#: class/class-mainwp-pages.php:763 +msgid "Site Connection Management" +msgstr "Gerenciamento de conexões de sites" + +#: class/class-mainwp-pages.php:766 +msgid "Are you sure you want to Disconnect Site from your " +msgstr "Tem certeza de que deseja desconectar o Site do seu" + +#: class/class-mainwp-pages.php:767 +#, php-format +msgid "Click this button to disconnect this site from your %s Dashboard." +msgstr "Clique nesse botão para desconectar esse site de seu %s Dashboard." + +#: class/class-mainwp-pages.php:769 +msgid "Clear Connection Data" +msgstr "Limpar dados de conexão" + +#: class/class-mainwp-utility.php:592 +msgid "" +"Something went wrong while contacting the child site. Please check if there " +"is an error on the child site. This error could also be caused by trying to " +"clone or restore a site to large for your server settings." +msgstr "" +"Algo deu errado ao entrar em contato com o site filho. Verifique se há um " +"erro no site filho. Esse erro também pode ser causado pela tentativa de " +"clonar ou restaurar um site para grandes configurações de seu servidor." + +#: class/class-mainwp-utility.php:594 +msgid "" +"Child plugin is disabled or the security key is incorrect. Please resync " +"with your main installation." +msgstr "" +"O plug-in filho está desativado ou a chave de segurança está incorreta. " +"Sincronize novamente com sua instalação principal." + +#: class/class-mainwp-wordpress-seo.php:73 +msgid "Settings could not be imported." +msgstr "Não foi possível importar as configurações." + +#: class/class-mainwp-wordpress-seo.php:228 +msgid "Upload failed." +msgstr "Falha no carregamento." + +#: class/class-mainwp-wordpress-seo.php:242 +msgid "Post is set to noindex." +msgstr "Post é definido como NOINDEX." + +#: class/class-mainwp-wordpress-seo.php:246 +msgid "Focus keyword not set." +msgstr "Palavra-chave em foco não definida." + +#. Plugin Name of the plugin/theme +msgid "MainWP Child" +msgstr "Criança MainWP" + +#. Plugin URI of the plugin/theme +msgid "https://mainwp.com/" +msgstr "https://mainwp.com" + +#. Description of the plugin/theme +msgid "" +"Provides a secure connection between your MainWP Dashboard and your " +"WordPress sites. MainWP allows you to manage WP sites from one central " +"location. Plugin documentation and options can be found here https://kb." +"mainwp.com/." +msgstr "" +"Fornece uma conexão segura entre o MainWP Dashboard e seus sites WordPress. " +"O MainWP permite que você gerencie sites do WP em um local central. A " +"documentação e as opções do plug-in podem ser encontradas aqui https://kb." +"mainwp.com/." + +#. Author of the plugin/theme +msgid "MainWP" +msgstr "MainWP" + +#. Author URI of the plugin/theme +msgid "https://mainwp.com" +msgstr "https://mainwp.com" + +#~ msgid "Every Five Seconds" +#~ msgstr "A cada cinco segundos" + +#~ msgid "Attention! " +#~ msgstr "Atenção! " + +#~ msgid " plugin is activated but not connected." +#~ msgstr " o plug-in está ativado, mas não conectado." + +#~ msgid "Please add this site to your " +#~ msgstr "Adicione este site ao seu " + +#~ msgid "NOW or deactivate the " +#~ msgstr "AGORA ou desativar o " + +#~ msgid "" +#~ " plugin until you are ready to connect this site to your Dashboard in " +#~ "order to avoid unexpected security issues. " +#~ msgstr "" +#~ " até que você esteja pronto para conectar esse site ao seu Dashboard, a " +#~ "fim de evitar problemas de segurança inesperados. " + +#, php-format +#~ msgid "" +#~ "If you are not sure how to do it, please review this %1$shelp " +#~ "document%2$s." +#~ msgstr "" +#~ "Se não tiver certeza de como fazer isso, consulte este %1$sdocumento de " +#~ "ajuda%2$s." + +#~ msgid "You can also turn on the unique security ID option in " +#~ msgstr "Você também pode ativar a opção de ID de segurança exclusiva em " + +#, php-format +#~ msgid "" +#~ " %1$ssettings%2$s if you would like extra security and additional time to " +#~ "add this site to your Dashboard. " +#~ msgstr "" +#~ " %1$ssettings%2$s se você quiser segurança extra e tempo adicional para " +#~ "adicionar esse site ao seu painel. " + +#, php-format +#~ msgid "Find out more in this %1$shelp document%2$s how to do it." +#~ msgstr "Saiba mais neste %1$sdocumento de ajuda%2$s sobre como fazer isso." + +#~ msgid "Server information" +#~ msgstr "Informações sobre o servidor" + +#~ msgid "" +#~ "The unique security ID adds additional protection between the child " +#~ "plugin and your Dashboard. The unique security ID will need to match when " +#~ "being added to the Dashboard. This is additional security and should not " +#~ "be needed in most situations." +#~ msgstr "" +#~ "O ID de segurança exclusivo adiciona proteção adicional entre o plug-in " +#~ "filho e seu Dashboard. A ID de segurança exclusiva precisará corresponder " +#~ "ao ser adicionada ao Dashboard. Essa é uma segurança adicional e não deve " +#~ "ser necessária na maioria das situações." + +#~ msgid "Save changes" +#~ msgstr "Salvar alterações" diff --git a/languages/mainwp-child-sr_CS.mo b/languages/mainwp-child-sr_CS.mo deleted file mode 100644 index fe1bc526bd4e1fb759dca6c136c0302e4c50f836..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8334 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\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Serbian (Cyrillic)\n" -"X-Poedit-Country: SERBIA AND MONTENEGRO\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:132 -#: class/MainWPChild.class.php:154 -#@ mainwp-child -msgid "MainWP Settings" -msgstr "MainWP Podešavanje" - -#: class/MainWPChild.class.php:158 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Podešavanje konekcije" - -#: class/MainWPChild.class.php:166 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Zahtev za jedinstveni sigurnosni ključ" - -#: class/MainWPChild.class.php:169 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Vaš jedinstveni sigurnosni ključ je:" - -#: class/MainWPChild.class.php:173 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your
Main Dashboard. The Unique Security ID will need to match when being added to
the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "Jedinstveni sigurnosni ključ obezbeđuje dodatnu zaštitu između sajta i kontrolne table.
Jedinstveni sigurnosni ključ se mora poklapati prilikom dodavanja sajta u kontrolnu tablu.
Ova dodatna sigrnosna opcija, u većini slučajeva nije potrebna." - -#: class/MainWPChild.class.php:179 -#@ mainwp-child -msgid "Save Changes" -msgstr "Sačuvaj Promene" - -#: class/MainWPChild.class.php:424 -#@ mainwp-child -msgid "Authentication failed. Reinstall MainWP plugin please" -msgstr "Autentifikacija neuspešna. Molimo, reinstalirajte MainWP." - -#: class/MainWPChild.class.php:433 -#: class/MainWPChild.class.php:787 -#@ mainwp-child -msgid "No such user" -msgstr "Nepostojeći korisnik" - -#: class/MainWPChild.class.php:438 -#: class/MainWPChild.class.php:791 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "Korisnik nema administratorske privilegije." - -#: class/MainWPChild.class.php:528 -#@ mainwp-child -msgid "Bad request." -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:699 -#: class/MainWPChild.class.php:704 -#: class/MainWPChild.class.php:736 -#: class/MainWPChild.class.php:741 -#: class/MainWPChild.class.php:746 -#@ mainwp-child -msgid "Bad request" -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:761 -#@ mainwp-child -msgid "Invalid request" -msgstr "Nevažeći zahtev." - -#: class/MainWPChild.class.php:767 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Javni ključ je već podešen, resetujte MainWP na sajtu i pokušajte ponovo." - -#: class/MainWPChild.class.php:774 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ je potreban za ovaj sajt - Molimo, unesite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:778 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ koji ste uneli se ne poklapa sa ključem na sajtu - Molimo, ispravite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:1036 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Administratorska šifra nije mogla biti promenjena." - -#: class/MainWPChild.class.php:1058 -#@ mainwp-child -msgid "Undefined error" -msgstr "Nedefinisana greška" - -#: class/MainWPChild.class.php:1072 -#, php-format -#@ default -msgid "Username: %s" -msgstr "Korisnično ime: %s" - -#: class/MainWPChild.class.php:1073 -#, php-format -#@ default -msgid "Password: %s" -msgstr "Lozinka: %s" - -#: class/MainWPChild.class.php:1076 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "[%s] Vaše korisničko ime i lozinka" - -#: class/MainWPChild.class.php:2326 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Saj već poseduje link - Molimo, deaktivirajte, pa ponovo aktivirajte MainWP" - -#: class/MainWPChild.class.php:2433 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "WordPress sistemska greška: " - -#: class/MainWPClone.class.php:70 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Datoteka nije mogla biti uploadovana." - -#: class/MainWPClone.class.php:75 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Datoteka je prazna. Molimo, uplodujte validnu datoteku. Do ove greške moglo je doći ako je upload zabranjen u Vašoj php.ini datoteci ili ako je post_max_size definisan kao manji od upload_max_filesize u php.ini datoteci." - -#: class/MainWPClone.class.php:84 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Kloniranje ili Vratite prethodno stanje" - -#: class/MainWPClone.class.php:88 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno isključeno - da biste omogućili kloniranje, vratite se na Kontrolni sajt i uključite kloniranje na stranici Kloniranje." - -#: class/MainWPClone.class.php:94 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Direktorium u kome se nalazi Vaš sadržaj nije upisiv. Molimo, podesite ovlašćenja na 0755. " - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click" -msgstr "Proces kloniranja uspešno završen! Potrebno je da kliknete" - -#: class/MainWPClone.class.php:98 -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "here" -msgstr "ovde" - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "da biste se logovali i opet podesili linkove." - -#: class/MainWPClone.class.php:103 -#@ mainwp-child -msgid "Upload successful." -msgstr "Upload uspešan." - -#: class/MainWPClone.class.php:103 -#: class/MainWPClone.class.php:153 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Klonira/Vrati Sajt" - -#: class/MainWPClone.class.php:114 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno uključeno, ali nema sajtova sa ovlašćenjem za kloniranje. Da biste omogućili sajtu da bude kloniran, vratite se na Kontrolni sajt i odaberite selktujte sajtove na stranici Kloniranje." - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Display by:" -msgstr "Prikaži po:" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Site Name" -msgstr "Naziv Sajta" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Clone Options" -msgstr "Opcije za kloniranje" - -#: class/MainWPClone.class.php:139 -#@ mainwp-child -msgid "Clone Website" -msgstr "Kloniraj sajt" - -#: class/MainWPClone.class.php:148 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Vrati/Kloniraj sa Backup datotekom" - -#: class/MainWPClone.class.php:150 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Uploadujte backup datoteku u .zip formatu. (Maksimalna veličina datoteke za Vaš server je: " - -#: class/MainWPClone.class.php:151 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Ako image Kompletan Backup kreiran uz pomoć MainWP plugina, možete ga uploadovati ovde." - -#: class/MainWPClone.class.php:152 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Backup samo baze podataka neće raditi." - -#: class/MainWPClone.class.php:662 -#: class/MainWPClone.class.php:699 -#@ mainwp-child -msgid "No site given" -msgstr "Nema datog sajta" - -#: class/MainWPClone.class.php:667 -#: class/MainWPClone.class.php:704 -#@ mainwp-child -msgid "Site not found" -msgstr "Sajt nije pronađen" - -#: class/MainWPClone.class.php:679 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Kreiranje backup datoteke na sajtu neuspešan" - -#: class/MainWPClone.class.php:715 -#@ mainwp-child -msgid "Invalid response" -msgstr "Nevažeći odgovor" - -#: class/MainWPClone.class.php:731 -#@ mainwp-child -msgid "No download link given" -msgstr "Link za preuzimanje nije dat" - -#: class/MainWPClone.class.php:803 -#: class/MainWPClone.class.php:832 -#@ mainwp-child -msgid "No download file found" -msgstr "Datoteka za preuzimanje nije pronađena" - -#: class/MainWPClone.class.php:838 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Backup datoteka nije pronađena" - -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Process kloniranja uspešno završen! Proverite i ponovo sačuvajte perma-linkove " - -#: class/MainWPCloneInstall.class.php:79 -#: class/MainWPCloneInstall.class.php:80 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Nije kompletan backup." - -#: class/MainWPCloneInstall.class.php:81 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Backup baze podataka nije pronađen." - -#: class/MainWPCloneInstall.class.php:118 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Nije moguće prošitati konfiguracionu datoteku iz backup-a" - -#: class/MainWPCloneInstall.class.php:130 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Nevažeći host baze podataka ili korisničko ime i lozinka." - -#: class/MainWPCloneInstall.class.php:133 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Pogrešan naziv baze podataka" - -#: class/MainWPCloneInstall.class.php:239 -#@ mainwp-child -msgid "Error importing database" -msgstr "Greška pri unosu baze podataka" - -#: class/MainWPCloneInstall.class.php:244 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Greška: neočekivan kraj baze podataka" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "Glavna strana" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "Arhiva" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "Pretraži" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "Glavan strana bloga" - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Kreiranje direktorijuma nemoguće " - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Da li je direktorijum upisiv od strane servera?" - -#: class/MainWPHelper.class.php:376 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Nešto nije u redu u komunikaciji za sajtom. Molimo proverite da li ima grešaka na sajtu. Do ove greške moglo je doći ako ste pokušali klonirati sajt veći nego što je dozvoljeno u podešavanjima servera." - -#: class/MainWPHelper.class.php:380 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "Child Plugin je isključen ili je sigurnosni ključ pogrešan. Molimo, sinhronizujte sa Vašnom glavnom instalacijom." - -#: class/MainWPClone.class.php:15 -#@ mainwp-child -msgid "MainWP Clone" -msgstr "MainWP Kloniranje" - -#: class/MainWPClone.class.php:221 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Ovo je veliki sajt (%dMB), kloniranje verovatno neće uspeti." - -#: class/MainWPClone.class.php:222 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Nastavi u svakom slučaju?" - -#: class/MainWPClone.class.php:223 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Kreiranje backupa na %s očekivana veličina %dMB (očekivano vreme trajanja %d sekundi)" - -#: class/MainWPClone.class.php:224 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Backup kreiran na %s puna veličina za download: %dMB" - -#: class/MainWPClone.class.php:225 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Preuzimanje backupa" - -#: class/MainWPClone.class.php:226 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Backup preuzet" - -#: class/MainWPClone.class.php:227 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Raspakivanje backupa i ažuriranje baze podataka u toku, ovo može potrajati. Molimo, budite strpljivi." - -#: class/MainWPClone.class.php:228 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Kloniranje uspešno završeno!" - diff --git a/languages/mainwp-child-sr_RS.mo b/languages/mainwp-child-sr_RS.mo deleted file mode 100644 index adcca0a61f10692107f83b77f702374495834b3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8334 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 RTy5>^F6qSET1l!?{{a(U!-W6< diff --git a/languages/mainwp-child-sr_RS.po b/languages/mainwp-child-sr_RS.po deleted file mode 100644 index 54d04c2f..00000000 --- a/languages/mainwp-child-sr_RS.po +++ /dev/null @@ -1,411 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: MainWP Child v0.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-11-15 14:00:59+0000\n" -"Last-Translator: admin \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Serbian\n" -"X-Poedit-Country: SERBIA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: \n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: class/MainWPChild.class.php:132 -#: class/MainWPChild.class.php:154 -#@ mainwp-child -msgid "MainWP Settings" -msgstr "MainWP Podešavanje" - -#: class/MainWPChild.class.php:158 -#@ mainwp-child -msgid "Connection Settings" -msgstr "Podešavanje konekcije" - -#: class/MainWPChild.class.php:166 -#@ mainwp-child -msgid "Require Unique Security ID" -msgstr "Zahtev za jedinstveni sigurnosni ključ" - -#: class/MainWPChild.class.php:169 -#@ mainwp-child -msgid "Your Unique Security ID is:" -msgstr "Vaš jedinstveni sigurnosni ključ je:" - -#: class/MainWPChild.class.php:173 -#@ mainwp-child -msgid "The Unique Security ID adds additional protection between the Child plugin and your
Main Dashboard. The Unique Security ID will need to match when being added to
the Main Dashboard. This is additional security and should not be needed in most situations." -msgstr "Jedinstveni sigurnosni ključ obezbeđuje dodatnu zaštitu između sajta i kontrolne table.
Jedinstveni sigurnosni ključ se mora poklapati prilikom dodavanja sajta u kontrolnu tablu.
Ova dodatna sigrnosna opcija, u većini slučajeva nije potrebna." - -#: class/MainWPChild.class.php:179 -#@ mainwp-child -msgid "Save Changes" -msgstr "Sačuvaj Promene" - -#: class/MainWPChild.class.php:424 -#@ mainwp-child -msgid "Authentication failed. Reinstall MainWP plugin please" -msgstr "Autentifikacija neuspešna. Molimo, reinstalirajte MainWP." - -#: class/MainWPChild.class.php:433 -#: class/MainWPChild.class.php:787 -#@ mainwp-child -msgid "No such user" -msgstr "Nepostojeći korisnik" - -#: class/MainWPChild.class.php:438 -#: class/MainWPChild.class.php:791 -#@ mainwp-child -msgid "User is not an administrator" -msgstr "Korisnik nema administratorske privilegije." - -#: class/MainWPChild.class.php:528 -#@ mainwp-child -msgid "Bad request." -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:699 -#: class/MainWPChild.class.php:704 -#: class/MainWPChild.class.php:736 -#: class/MainWPChild.class.php:741 -#: class/MainWPChild.class.php:746 -#@ mainwp-child -msgid "Bad request" -msgstr "Loš zahtev." - -#: class/MainWPChild.class.php:761 -#@ mainwp-child -msgid "Invalid request" -msgstr "Nevažeći zahtev." - -#: class/MainWPChild.class.php:767 -#@ mainwp-child -msgid "Public key already set, reset the MainWP plugin on your site and try again." -msgstr "Javni ključ je već podešen, resetujte MainWP na sajtu i pokušajte ponovo." - -#: class/MainWPChild.class.php:774 -#@ mainwp-child -msgid "This Child Site is set to require a Unique Security ID - Please Enter It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ je potreban za ovaj sajt - Molimo, unesite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:778 -#@ mainwp-child -msgid "The Unique Security ID you have entered does not match Child Security ID - Please Correct It before connection can be established." -msgstr "Jedinstveni sigurnosni ključ koji ste uneli se ne poklapa sa ključem na sajtu - Molimo, ispravite ključ kako bi konekcija mogla biti uspostavljena." - -#: class/MainWPChild.class.php:1036 -#@ mainwp-child -msgid "Could not change the admin password." -msgstr "Administratorska šifra nije mogla biti promenjena." - -#: class/MainWPChild.class.php:1058 -#@ mainwp-child -msgid "Undefined error" -msgstr "Nedefinisana greška" - -#: class/MainWPChild.class.php:1072 -#, php-format -#@ default -msgid "Username: %s" -msgstr "Korisnično ime: %s" - -#: class/MainWPChild.class.php:1073 -#, php-format -#@ default -msgid "Password: %s" -msgstr "Lozinka: %s" - -#: class/MainWPChild.class.php:1076 -#, php-format -#@ default -msgid "[%s] Your username and password" -msgstr "[%s] Vaše korisničko ime i lozinka" - -#: class/MainWPChild.class.php:2326 -#@ mainwp-child -msgid "This site already contains a link - please disable and enable the MainWP plugin." -msgstr "Saj već poseduje link - Molimo, deaktivirajte, pa ponovo aktivirajte MainWP" - -#: class/MainWPChild.class.php:2433 -#@ mainwp-child -msgid "Wordpress Filesystem error: " -msgstr "WordPress sistemska greška: " - -#: class/MainWPClone.class.php:70 -#@ mainwp-child -msgid "File could not be uploaded." -msgstr "Datoteka nije mogla biti uploadovana." - -#: class/MainWPClone.class.php:75 -#@ mainwp-child -msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." -msgstr "Datoteka je prazna. Molimo, uplodujte validnu datoteku. Do ove greške moglo je doći ako je upload zabranjen u Vašoj php.ini datoteci ili ako je post_max_size definisan kao manji od upload_max_filesize u php.ini datoteci." - -#: class/MainWPClone.class.php:84 -#@ mainwp-child -msgid "Clone or Restore" -msgstr "Kloniranje ili Vratite prethodno stanje" - -#: class/MainWPClone.class.php:88 -#@ mainwp-child -msgid "Cloning is currently off - To turn on return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno isključeno - da biste omogućili kloniranje, vratite se na Kontrolni sajt i uključite kloniranje na stranici Kloniranje." - -#: class/MainWPClone.class.php:94 -#@ mainwp-child -msgid "Your content directory is not writable. Please set 0755 permission to " -msgstr "Direktorium u kome se nalazi Vaš sadržaj nije upisiv. Molimo, podesite ovlašćenja na 0755. " - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid "Cloning process completed successfully! You will now need to click " -msgstr "Proces kloniranja uspešno završen! Potrebno je da kliknete " - -#: class/MainWPClone.class.php:98 -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "here" -msgstr "ovde" - -#: class/MainWPClone.class.php:98 -#@ mainwp-child -msgid " to re-login to the admin and re-save permalinks." -msgstr "da biste se logovali i opet podesili linkove." - -#: class/MainWPClone.class.php:103 -#@ mainwp-child -msgid "Upload successful." -msgstr "Upload uspešan." - -#: class/MainWPClone.class.php:103 -#: class/MainWPClone.class.php:153 -#@ mainwp-child -msgid "Clone/Restore Website" -msgstr "Klonira/Vrati Sajt" - -#: class/MainWPClone.class.php:114 -#@ mainwp-child -msgid "Cloning is currently on but no sites have been allowed, to allow sites return to your main dashboard and turn cloning on on the Migrate/Clone page." -msgstr "Kloniranje je trenutno uključeno, ali nema sajtova sa ovlašćenjem za kloniranje. Da biste omogućili sajtu da bude kloniran, vratite se na Kontrolni sajt i odaberite selktujte sajtove na stranici Kloniranje." - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Display by:" -msgstr "Prikaži po:" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Site Name" -msgstr "Naziv Sajta" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "URL" -msgstr "URL" - -#: class/MainWPClone.class.php:122 -#@ mainwp-child -msgid "Clone Options" -msgstr "Opcije za kloniranje" - -#: class/MainWPClone.class.php:139 -#@ mainwp-child -msgid "Clone Website" -msgstr "Kloniraj sajt" - -#: class/MainWPClone.class.php:148 -#@ mainwp-child -msgid "Restore/Clone From Backup" -msgstr "Vrati/Kloniraj sa Backup datotekom" - -#: class/MainWPClone.class.php:150 -#@ mainwp-child -msgid "Upload backup in .zip format (Maximum filesize for your server settings: " -msgstr "Uploadujte backup datoteku u .zip formatu. (Maksimalna veličina datoteke za Vaš server je: " - -#: class/MainWPClone.class.php:151 -#@ mainwp-child -msgid "If you have a FULL backup created by your Network dashboard you may restore it by uploading here." -msgstr "Ako image Kompletan Backup kreiran uz pomoć MainWP plugina, možete ga uploadovati ovde." - -#: class/MainWPClone.class.php:152 -#@ mainwp-child -msgid "A database only backup will not work." -msgstr "Backup samo baze podataka neće raditi." - -#: class/MainWPClone.class.php:662 -#: class/MainWPClone.class.php:699 -#@ mainwp-child -msgid "No site given" -msgstr "Nema datog sajta" - -#: class/MainWPClone.class.php:667 -#: class/MainWPClone.class.php:704 -#@ mainwp-child -msgid "Site not found" -msgstr "Sajt nije pronađen" - -#: class/MainWPClone.class.php:679 -#@ mainwp-child -msgid "Could not create backupfile on child" -msgstr "Kreiranje backup datoteke na sajtu neuspešan" - -#: class/MainWPClone.class.php:715 -#@ mainwp-child -msgid "Invalid response" -msgstr "Nevažeći odgovor" - -#: class/MainWPClone.class.php:731 -#@ mainwp-child -msgid "No download link given" -msgstr "Link za preuzimanje nije dat" - -#: class/MainWPClone.class.php:803 -#: class/MainWPClone.class.php:832 -#@ mainwp-child -msgid "No download file found" -msgstr "Datoteka za preuzimanje nije pronađena" - -#: class/MainWPClone.class.php:838 -#@ mainwp-child -msgid "Backup file not found" -msgstr "Backup datoteka nije pronađena" - -#: class/MainWPClone.class.php:956 -#@ mainwp-child -msgid "Cloning process completed successfully! Check and re-save permalinks " -msgstr "Process kloniranja uspešno završen! Proverite i ponovo sačuvajte perma-linkove " - -#: class/MainWPCloneInstall.class.php:79 -#: class/MainWPCloneInstall.class.php:80 -#@ mainwp-child -msgid "Not a full backup." -msgstr "Nije kompletan backup." - -#: class/MainWPCloneInstall.class.php:81 -#@ mainwp-child -msgid "Database backup not found." -msgstr "Backup baze podataka nije pronađen." - -#: class/MainWPCloneInstall.class.php:118 -#@ mainwp-child -msgid "Cant read configuration file from backup" -msgstr "Nije moguće prošitati konfiguracionu datoteku iz backup-a" - -#: class/MainWPCloneInstall.class.php:130 -#@ mainwp-child -msgid "Invalid database host or user/password." -msgstr "Nevažeći host baze podataka ili korisničko ime i lozinka." - -#: class/MainWPCloneInstall.class.php:133 -#@ mainwp-child -msgid "Invalid database name" -msgstr "Pogrešan naziv baze podataka" - -#: class/MainWPCloneInstall.class.php:239 -#@ mainwp-child -msgid "Error importing database" -msgstr "Greška pri unosu baze podataka" - -#: class/MainWPCloneInstall.class.php:244 -#@ mainwp-child -msgid "Error: unexpected end of file for database" -msgstr "Greška: neočekivan kraj baze podataka" - -#: class/MainWPHeatmapTracker.class.php:68 -#@ default -msgid "Home Page" -msgstr "Glavna strana" - -#: class/MainWPHeatmapTracker.class.php:111 -#@ default -msgid "Archive" -msgstr "Arhiva" - -#: class/MainWPHeatmapTracker.class.php:135 -#@ default -msgid "Search" -msgstr "Pretraži" - -#: class/MainWPHeatmapTracker.class.php:144 -#@ default -msgid "Blog Home Page" -msgstr "Glavan strana bloga" - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid "Unable to create directory " -msgstr "Kreiranje direktorijuma nemoguće " - -#: class/MainWPHelper.class.php:233 -#@ mainwp-child -msgid " Is its parent directory writable by the server?" -msgstr "Da li je direktorijum upisiv od strane servera?" - -#: class/MainWPHelper.class.php:376 -#@ mainwp-child -msgid "Something went wrong while contacting the child site. Please check if there is an error on the child site. This error could also be caused by trying to clone or restore a site to large for your server settings." -msgstr "Nešto nije u redu u komunikaciji za sajtom. Molimo proverite da li ima grešaka na sajtu. Do ove greške moglo je doći ako ste pokušali klonirati sajt veći nego što je dozvoljeno u podešavanjima servera." - -#: class/MainWPHelper.class.php:380 -#@ mainwp-child -msgid "Child plugin is disabled or the security key is incorrect. Please resync with your main installation." -msgstr "Child Plugin je isključen ili je sigurnosni ključ pogrešan. Molimo, sinhronizujte sa Vašnom glavnom instalacijom." - -#: class/MainWPClone.class.php:15 -#@ mainwp-child -msgid "MainWP Clone" -msgstr "MainWP Kloniranje" - -#: class/MainWPClone.class.php:221 -#, php-format -#@ mainwp-child -msgid "This is a large site (%dMB), the restore process will more than likely fail." -msgstr "Ovo je veliki sajt (%dMB), kloniranje verovatno neće uspeti." - -#: class/MainWPClone.class.php:222 -#@ mainwp-child -msgid "Continue Anyway?" -msgstr "Nastavi u svakom slučaju?" - -#: class/MainWPClone.class.php:223 -#, php-format -#@ mainwp-child -msgid "Creating backup on %s expected size: %dMB (estimated time: %d seconds)" -msgstr "Kreiranje backupa na %s očekivana veličina %dMB (očekivano vreme trajanja %d sekundi)" - -#: class/MainWPClone.class.php:224 -#, php-format -#@ mainwp-child -msgid "Backup created on %s total size to download: %dMB" -msgstr "Backup kreiran na %s puna veličina za download: %dMB" - -#: class/MainWPClone.class.php:225 -#@ mainwp-child -msgid "Downloading backup" -msgstr "Preuzimanje backupa" - -#: class/MainWPClone.class.php:226 -#@ mainwp-child -msgid "Backup downloaded" -msgstr "Backup preuzet" - -#: class/MainWPClone.class.php:227 -#@ mainwp-child -msgid "Extracting backup and updating your database, this might take a while. Please be patient." -msgstr "Raspakivanje backupa i ažuriranje baze podataka u toku, ovo može potrajati. Molimo, budite strpljivi." - -#: class/MainWPClone.class.php:228 -#@ mainwp-child -msgid "Cloning process completed successfully!" -msgstr "Kloniranje uspešno završeno!" -