diff --git a/defines.php b/defines.php index bdbcd173..9cf0bea1 100644 --- a/defines.php +++ b/defines.php @@ -1,7 +1,7 @@ ` and `
https://
.', 'secupress' ),
diff --git a/free/classes/settings/class-secupress-settings.php b/free/classes/settings/class-secupress-settings.php
index 1d7d6ffd..d6cb50b1 100644
--- a/free/classes/settings/class-secupress-settings.php
+++ b/free/classes/settings/class-secupress-settings.php
@@ -1554,8 +1554,8 @@ protected function print_sideads() {
if ( 'secupress_ad_before' !== $sidead['hook'] ) {
continue;
}
- if ( ( 'free' === $sidead['when'] && ! secupress_is_pro() )
- || ( 'pro' === $sidead['when'] && secupress_is_pro() )
+ if ( ( 'free' === $sidead['when'] && ! secupress_has_pro() )
+ || ( 'pro' === $sidead['when'] && secupress_has_pro() )
|| 'both' === $sidead['when']
) {
$content_locale = 'content-' . get_user_locale();
diff --git a/free/functions/common.php b/free/functions/common.php
index a467abe4..18c59faf 100644
--- a/free/functions/common.php
+++ b/free/functions/common.php
@@ -369,6 +369,7 @@ function secupress_die( $message = '', $title = '', $args = array() ) {
$message = '' . esc_html( $ip ) . '
',
'' . number_format_i18n( $time_ban ) . ''
- ), array( 'force_die' => true ) );
+ ), array( 'force_die' => true, 'context' => 'ban_ip' ) );
}
}
diff --git a/free/modules/antispam/plugins/fightspam.php b/free/modules/antispam/plugins/fightspam.php
index a455a1bf..42869721 100644
--- a/free/modules/antispam/plugins/fightspam.php
+++ b/free/modules/antispam/plugins/fightspam.php
@@ -771,8 +771,8 @@ function secupress_fightspam_dont_comment_too_soon_timer() {
if ( ! secupress_get_module_option( 'antispam_comment-delay', 1, 'antispam' ) ) {
return;
}
- // Only do this if we are on a post type page which supports comments with a non logged in user
- if ( is_user_logged_in() || ! get_post_type() || ! post_type_supports( get_post_type(), 'comments' ) ) {
+ // Only do this if we are on a singular page which supports comments and where comments are open with a non logged in user
+ if ( ! is_singular() || is_user_logged_in() || post_type_supports( get_post_type(), 'comments' ) || comments_open() ) {
return;
}
// Set our timer in PHP with a filter
diff --git a/free/modules/firewall/plugins/request-methods-header.php b/free/modules/firewall/plugins/request-methods-header.php
index 0c179fe9..9da1b9c8 100755
--- a/free/modules/firewall/plugins/request-methods-header.php
+++ b/free/modules/firewall/plugins/request-methods-header.php
@@ -14,6 +14,18 @@
* @since 2.0 Allow all requests methods but customs and TRACE.
*/
$methods = array( 'GET' => true, 'POST' => true, 'HEAD' => true, 'PUT' => true, 'PATCH' => true, 'DELETE' => true, 'CONNECT' => true, 'OPTIONS' => true );
+ if ( ! function_exists( 'is_plugin_active' ) ) {
+ require ABSPATH . 'wp-admin/includes/plugin.php';
+ }
+ if ( is_plugin_active( 'matomo/matomo.php' ) && isset( $_SERVER['REQUEST_METHOD'] ) && ! array_key_exists( $_SERVER['REQUEST_METHOD'], $methods ) ) {
+ $methods[ $_SERVER['REQUEST_METHOD'] ] = true;
+ }
+ /**
+ * Filters the methods array
+ * @param (array) $methods
+ * @since 2.2.5
+ * **/
+ $methods = apply_filters( 'secupress.plugins.bbrm.methods', $methods );
if ( ! isset( $methods[ $_SERVER['REQUEST_METHOD'] ] ) ) {
secupress_block( 'RMHM', [ 'code' => 405, 'b64' => [ 'data' => $_SERVER['REQUEST_METHOD'] ] ] );
diff --git a/free/modules/firewall/tools.php b/free/modules/firewall/tools.php
index 45f78b76..eb54fed6 100755
--- a/free/modules/firewall/tools.php
+++ b/free/modules/firewall/tools.php
@@ -59,7 +59,7 @@ function secupress_firewall_bbq_host_content_bad_contents_list_default() {
*/
function secupress_firewall_bbq_referer_content_bad_contents_list_default() {
return apply_filters( 'secupress.bad_referer_contents.list',
- 'semalt.com, todaperfeita, ambien, blue spill, cialis, cocaine, ejaculat, erectile, erections, hoodia, huronriveracres, impotence, levitra, libido, lipitor, phentermin, sandyauer, tramadol, troyhamby, ultram, unicauca, valium, viagra, vicodin, xanax, ypxaieo'
+ 'semalt.com, todaperfeita, ambien, blue spill, cocaine, ejaculat, erectile, erections, hoodia, huronriveracres, impotence, levitra, libido, lipitor, phentermin, sandyauer, tramadol, troyhamby, ultram, unicauca, valium, viagra, vicodin, xanax, ypxaieo'
);
}
diff --git a/free/modules/plugins-themes/callbacks.php b/free/modules/plugins-themes/callbacks.php
index aad85703..f41a22f0 100755
--- a/free/modules/plugins-themes/callbacks.php
+++ b/free/modules/plugins-themes/callbacks.php
@@ -31,17 +31,7 @@ function secupress_plugins_themes_settings_callback( $settings ) {
// Uploads.
secupress_uploads_settings_callback( $modulenow, $activate );
- /**
- * Filter the settings before saving.
- *
- * @since 1.4.9
- *
- * @param (array) $settings The module settings.
- * @param (array\bool) $activate Contains the activation rules for the different modules
- */
- $settings = apply_filters( "secupress_{$modulenow}_settings_callback", $settings, $activate );
-
- return $settings;
+ return array( 'sanitized' => 1 );
}
diff --git a/free/modules/users-login/plugins/limitloginattempts.php b/free/modules/users-login/plugins/limitloginattempts.php
index f3733ba2..bfef26e0 100755
--- a/free/modules/users-login/plugins/limitloginattempts.php
+++ b/free/modules/users-login/plugins/limitloginattempts.php
@@ -21,6 +21,7 @@
* @return (null|object)
*/
function secupress_limitloginattempts( $raw_user, $username ) {
+ global $wpdb;
static $done = false;
if ( $done ) {
@@ -37,7 +38,43 @@ function secupress_limitloginattempts( $raw_user, $username ) {
}
$max_attempts = secupress_get_module_option( 'login-protection_number_attempts', 10, 'users-login' );
- $user_attempts = (int) get_user_meta( $uid, '_secupress_limitloginattempts', true );
+
+ // Adding initial Value
+ $wpdb->query(
+ $wpdb->prepare(
+ "
+ INSERT INTO {$wpdb->usermeta} (user_id, meta_key, meta_value)
+ SELECT * FROM (SELECT %d, '_secupress_limitloginattempts', 0) as tmp
+ WHERE NOT EXISTS (
+ SELECT * FROM {$wpdb->usermeta}
+ WHERE user_id = %d
+ AND meta_key = '_secupress_limitloginattempts'
+ );
+ ",
+ $uid,
+ $uid
+ )
+ );
+
+ // Start transaction
+ $wpdb->query("START TRANSACTION");
+
+ // Removed in 2.2.5, TOCTOU flaw
+ // $user_attempts = (int) get_user_meta( $uid, '_secupress_limitloginattempts', true );
+
+ // Get the number of attempts (line lock with FOR UPDATE)
+ $user_attempts = $wpdb->get_var(
+ $wpdb->prepare(
+ "
+ SELECT meta_value FROM {$wpdb->usermeta}
+ WHERE {$wpdb->usermeta}.meta_key = '_secupress_limitloginattempts'
+ AND {$wpdb->usermeta}.user_id = %d
+ LIMIT 1 FOR UPDATE
+ ",
+ $uid
+ )
+ );
+
++$user_attempts;
if ( $user_attempts >= $max_attempts ) {
@@ -45,7 +82,22 @@ function secupress_limitloginattempts( $raw_user, $username ) {
secupress_ban_ip( (int) secupress_get_module_option( 'login-protection_time_ban', 5, 'users-login' ) );
}
- update_user_meta( $uid, '_secupress_limitloginattempts', $user_attempts );
+ // Removed in 2.2.5, TOCTOU flaw
+ // update_user_meta( $uid, '_secupress_limitloginattempts', $user_attempts );
+
+ // Update number of attempts
+ $wpdb->query(
+ $wpdb->prepare(
+ "UPDATE {$wpdb->usermeta} SET meta_value = %d WHERE user_id = %d and meta_key = '_secupress_limitloginattempts'",
+ $user_attempts,
+ $uid
+ )
+ );
+
+ // End transaction with a COMMIT command
+ $wpdb->query("COMMIT");
+
+
$user_attempts_left = $max_attempts - $user_attempts;
if ( $user_attempts_left <= 3 ) {
diff --git a/free/modules/users-login/plugins/stop-user-enumeration.php b/free/modules/users-login/plugins/stop-user-enumeration.php
index c838bf80..27159b71 100644
--- a/free/modules/users-login/plugins/stop-user-enumeration.php
+++ b/free/modules/users-login/plugins/stop-user-enumeration.php
@@ -76,13 +76,19 @@ function secupress_stop_user_enumeration_front() {
*
* @param WP_Error|null $response The current error object if any.
* *
+ * @since 2.2.5 Remove REST API calls made using query parameters + usage of rawurldecode()
* @since 2.2.2 'raw'
* @since 2.0 'uri'
* @since 1.0 'base'
* @author Julio Potier
**/
function secupress_stop_user_enumeration_rest( $response ) {
- if ( ! current_user_can( 'list_users' ) && strpos( secupress_get_current_url( 'raw' ), Secupress_WP_REST_Users_Controller::get_rest_base() ) > 0 ) {
+ $rest_base_url = home_url( 'wp-json/' . Secupress_WP_REST_Users_Controller::get_rest_base() );
+ $rest_query_url = 'rest_route=/wp/v2/users';
+ if ( ! current_user_can( 'list_users' ) && (
+ strpos( rawurldecode( home_url( secupress_get_current_url( 'raw' ) ) ), $rest_base_url ) === 0 ||
+ strpos( rawurldecode( home_url( secupress_get_current_url( 'raw' ) ) ), $rest_query_url ) !== false )
+ ) {
wp_send_json( array( 'code' => 'rest_cannot_access', 'message' => __( 'Something went wrong.', 'secupress' ), 'data' => array( 'status' => 401 ) ) , 401 );
}
return $response;
diff --git a/languages/secupress-de_DE.mo b/languages/secupress-de_DE.mo
new file mode 100644
index 00000000..66f507be
Binary files /dev/null and b/languages/secupress-de_DE.mo differ
diff --git a/languages/secupress-de_DE.po b/languages/secupress-de_DE.po
new file mode 100644
index 00000000..7c633668
--- /dev/null
+++ b/languages/secupress-de_DE.po
@@ -0,0 +1,11016 @@
+# Copyright (C) 2012-2017 SecuPress
+# This file is distributed under the same license as the SecuPress package.
+# Translators:
+# Klaus Bei
+msgid ""
+msgstr ""
+"Project-Id-Version: SecuPress\n"
+"Report-Msgid-Bugs-To: https://secupress.me/\n"
+"POT-Creation-Date: 2023-04-17 17:05+0200\n"
+"PO-Revision-Date: 2023-12-18 13:45+0100\n"
+"Last-Translator: \n"
+"Language-Team: Deutsch\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.4.1\n"
+"X-Poedit-Basepath: ..\n"
+"X-Poedit-KeywordsList: _x:1,2c;__;_e;_ex:1,2c;_n:1,2;_nx:1,2;esc_html__;"
+"esc_html_e;esc_attr__;esc_attr_e;_n_noop:1,2;_nx_noop:4c,1,2\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Textdomain-Support: yes\n"
+"X-Loco-Version: 2.6.6; wp-6.4.1\n"
+"X-Poedit-SearchPath-0: .\n"
+"X-Poedit-SearchPathExcluded-0: node_modules\n"
+
+#: free/activation.php:139
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:114
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:99
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:93
+#: free/classes/scanners/class-secupress-scan-discloses.php:102
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:91
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:96
+#: free/functions/modules.php:672
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please add the following lines at the "
+"beginning of the file: %2$s"
+msgstr ""
+"Deine %1$s Datei ist nicht beschreibbar. Bitte füge die folgenden Zeilen am "
+"Anfang der Datei hinzu: %2$s"
+
+#: free/activation.php:198
+#, php-format
+msgid "In %s:"
+msgstr "Im %s:"
+
+#: free/activation.php:220
+#, php-format
+msgid "Remove all existing %s tags."
+msgstr "Entferne alle vorhandenen %s-Tags."
+
+#: free/activation.php:238
+#, php-format
+msgid "Add the following: %s"
+msgstr "Füge folgendes hinzu: %s"
+
+#: free/activation.php:244
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please edit this file, following these "
+"instructions: %2$s"
+msgstr ""
+"Deine %1$s-Datei ist nicht beschreibbar. Bitte bearbeite diese Datei "
+"entsprechend den nachfolgenden Anweisungen: %2$s"
+
+#: free/activation.php:260
+#, php-format
+msgid ""
+"Since your %1$s file cannot be edited directly, please add the following in "
+"your file: %2$s"
+msgstr ""
+"Da deine %1$s-Datei nicht direkt bearbeitet werden kann, füge bitte "
+"folgendes in deiner Datei hinzu: %2$s"
+
+#: free/activation.php:328 free/activation.php:373 free/activation.php:403
+#: free/admin/notices.php:67 free/admin/notices.php:112
+#: free/admin/notices.php:240 free/admin/notices.php:249
+#: free/classes/admin/class-secupress-admin-offer-migration.php:548
+#: free/classes/admin/class-secupress-admin-offer-migration.php:568
+#: free/classes/common/class-secupress-log.php:289
+#: free/classes/common/class-secupress-log.php:294
+#: free/classes/common/class-secupress-logs.php:1380
+#: free/classes/common/class-secupress-logs.php:1384
+#: free/functions/deprecated.php:125 free/functions/modules.php:590
+#: free/functions/modules.php:604 free/functions/modules.php:617
+#: free/functions/modules.php:669 free/functions/modules.php:697
+#: free/functions/modules.php:727 free/functions/modules.php:741
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-log.php:65
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-log.php:66
+#: free/modules/sensitive-data/plugins/bad-url-access.php:146
+#: free/modules/sensitive-data/plugins/bad-url-access.php:166
+#: free/modules/users-login/callbacks.php:361
+#: free/modules/users-login/callbacks.php:367
+#: free/modules/users-login/callbacks.php:373 pro/activation.php:211
+#: pro/activation.php:275 pro/activation.php:340
+#: pro/modules/sensitive-data/plugins/hotlink.php:27
+#: pro/modules/users-login/plugins/password-expiration.php:98
+#, php-format
+msgid "%s:"
+msgstr "%s:"
+
+#: free/activation.php:331 pro/activation.php:217
+#, php-format
+msgid ""
+"It seems your %1$s file is not writable, you have to edit it manually. "
+"Please remove all rules between %2$s and %3$s."
+msgstr ""
+"Es scheint, als sei deine %1$s-Datei nicht beschreibbar, du musst sie "
+"manuell ändern. Bitte entferne alle Regeln zwischen %2$s und %3$s."
+
+#: free/activation.php:376
+#, php-format
+msgid ""
+"It seems your %1$s file is not writable, you have to edit the file manually. "
+"Please remove all nodes with %2$s."
+msgstr ""
+"Es scheint, als sein deine %1$s-Datei nicht beschreibbar; du musst sie "
+"manuell ändern. Bitte entferne alle Knoten mit %2$s."
+
+#: free/activation.php:406 free/functions/modules.php:620
+#, php-format
+msgid ""
+"Your server runs Nginx. You have to edit the configuration "
+"file manually. Please remove all rules between %1$s and %2$s from the %3$s "
+"file."
+msgstr ""
+"Auf deinem Server läuft Nginx. Du musst die "
+"Konfigurationsdatei manuell bearbeiten. Entferne alle Regeln zwischen %1$s "
+"und %2$s aus der Datei %3$s."
+
+#: free/activation.php:454
+msgid "OK, got it!"
+msgstr "OK, verstanden!"
+
+#: free/admin-bar.php:25
+#: pro/modules/schedules/plugins/inc/php/class-secupress-background-process-schedules-scan.php:88
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-scan.php:115
+#, php-format
+msgid "Grade %s"
+msgstr "Note %s"
+
+#: free/admin-bar.php:40 free/admin/multisite/settings.php:221
+#: free/admin/settings.php:330 free/admin/settings.php:447
+#: free/functions/modules.php:235
+#: free/modules/schedules/settings/schedules-scan.php:6
+msgid "Scanners"
+msgstr "Scanner"
+
+#: free/admin-bar.php:47
+msgid "Step 1 – Site Health"
+msgstr "Schritt 1 – Zustand der Website"
+
+#: free/admin-bar.php:53
+msgid "Step 2 – Auto-Fix"
+msgstr "Schritt 2 – Auto-Fix"
+
+#: free/admin-bar.php:60
+msgid "Step 3 – Manual Operations"
+msgstr "Schritt 3 – Manuelle Vorgänge"
+
+#: free/admin-bar.php:66
+msgid "Step 4 – Resolution Report"
+msgstr "Schritt 4 – Lösungsbericht"
+
+#: free/admin-bar.php:72
+msgid "Export Site Health report as PDF"
+msgstr "Site-Health-Bericht als PDF exportieren"
+
+#: free/admin-bar.php:81 free/admin/settings.php:331
+#: free/classes/settings/class-secupress-settings-modules.php:209
+msgid "Modules"
+msgstr "Module"
+
+#: free/admin-bar.php:122 free/classes/common/class-secupress-logs.php:473
+#: free/classes/common/class-secupress-logs.php:475
+#: free/classes/common/class-secupress-logs.php:482
+#: free/classes/common/class-secupress-logs.php:655
+#: free/classes/common/class-secupress-logs.php:656
+#: free/modules/logs/settings/logs.php:7
+msgctxt "post type general name"
+msgid "Logs"
+msgstr "Protokolle"
+
+#: free/admin-bar.php:131
+msgid "Actions Logs"
+msgstr "Protokolle für Aktionen"
+
+#: free/admin-bar.php:137
+msgid "404 Logs"
+msgstr "404 Protokolle"
+
+#: free/admin-bar.php:144 free/admin/settings.php:334
+msgid "More Security"
+msgstr "Mehr Sicherheit"
+
+#: free/admin-bar.php:148 free/admin/settings.php:297
+#: free/admin/settings.php:336
+msgid "Add my license"
+msgstr "Meine Lizenz hinzufügen"
+
+#: free/admin/ajax-post-callbacks.php:127
+#, php-format
+msgid "%d issue"
+msgid_plural "%d issues"
+msgstr[0] "%d Problem"
+msgstr[1] "%d Probleme"
+
+#: free/admin/ajax-post-callbacks.php:189
+#: free/admin/ajax-post-callbacks.php:305
+#: free/admin/ajax-post-callbacks.php:396
+#: free/admin/ajax-post-callbacks.php:531
+msgid "IP address not provided."
+msgstr "IP-Adresse nicht bereitgestellt."
+
+#: free/admin/ajax-post-callbacks.php:221
+#: free/admin/ajax-post-callbacks.php:429
+msgid "This is not a valid IP address."
+msgstr "Dies ist keine gültige IP-Adresse."
+
+#: free/admin/ajax-post-callbacks.php:229
+msgid "This IP address is already allowed."
+msgstr "Diese IP-Adresse ist bereits erlaubt."
+
+#: free/admin/ajax-post-callbacks.php:237
+#: free/admin/ajax-post-callbacks.php:447
+msgid "The list does not contains any valid IP address."
+msgstr "Die Liste enthält keine gültige IP-Adresse."
+
+#: free/admin/ajax-post-callbacks.php:261
+#, php-format
+msgid "The IP address %s has been allowed."
+msgstr "Die IP-Adresse%s zugelassen wurde."
+
+#: free/admin/ajax-post-callbacks.php:279
+msgid "The IP address list has been allowed."
+msgstr "Die IP-Adressliste wurde zugelassen."
+
+#: free/admin/ajax-post-callbacks.php:285
+msgid "Some of the IP address list has been allowed."
+msgstr "Ein Teil der IP-Adressliste wurde zugelassen."
+
+#: free/admin/ajax-post-callbacks.php:321
+#, php-format
+msgid "The IP address %s is not allowed."
+msgstr "Die IP-Adresse %s ist nicht zulässig."
+
+#: free/admin/ajax-post-callbacks.php:346
+#, php-format
+msgid "The IP address %s has been remove from the list."
+msgstr "Die IP-Adresse %s wurde aus der Liste entfernt."
+
+#: free/admin/ajax-post-callbacks.php:376
+msgid "All IP addresses have been removed from list."
+msgstr "Alle IP-Adressen wurden aus der Liste entfernt."
+
+#: free/admin/ajax-post-callbacks.php:438
+msgid "You cannot ban your own IP address."
+msgstr "Du kannst deine eigene IP-Adresse nicht sperren."
+
+#: free/admin/ajax-post-callbacks.php:458
+msgid "This IP is already banned."
+msgstr "Diese IP ist bereits gesperrt."
+
+#: free/admin/ajax-post-callbacks.php:480
+#: free/classes/settings/class-secupress-settings-modules.php:529
+#: pro/modules/backups/callbacks.php:280
+msgid "M jS Y"
+msgstr "M jS Y"
+
+#: free/admin/ajax-post-callbacks.php:480
+#: free/classes/settings/class-secupress-settings-modules.php:529
+#: pro/modules/backups/callbacks.php:280
+msgid "G:i"
+msgstr "G:i"
+
+#: free/admin/ajax-post-callbacks.php:485
+#, php-format
+msgid "The IP address %s has been banned."
+msgstr "Die IP-Adresse %s wurde gesperrt."
+
+#: free/admin/ajax-post-callbacks.php:505
+msgid "The IP address list has been banned."
+msgstr "Die IP-Adressliste wurde gesperrt."
+
+#: free/admin/ajax-post-callbacks.php:511
+msgid "Some of the IP address list has been banned."
+msgstr "Ein Teil der IP-Adressliste wurde gesperrt."
+
+#: free/admin/ajax-post-callbacks.php:548
+#, php-format
+msgid "The IP address %s is not banned."
+msgstr "Die IP-Adresse %s ist nicht gesperrt."
+
+#: free/admin/ajax-post-callbacks.php:573
+#, php-format
+msgid "The IP address %s has been unbanned."
+msgstr "Die IP-Adresse %s wurde entsperrt."
+
+#: free/admin/ajax-post-callbacks.php:603
+msgid "All IP addresses have been unbanned."
+msgstr "Alle IP-Adressen wurden entsperrt."
+
+#: free/admin/ajax-post-callbacks.php:637
+msgid "Module settings reset."
+msgstr "Die Moduleinstellungen werden zurückgesetzt."
+
+#: free/admin/ajax-post-callbacks.php:670
+#: free/modules/users-login/settings/move-login.php:101
+msgid "Choose your login URL"
+msgstr "Wähle deine Anmelde-URL"
+
+#: free/admin/ajax-post-callbacks.php:701
+msgid "###SITENAME### – Unlock an administrator"
+msgstr "###SITENAME### – Administrator entsperren"
+
+#: free/admin/ajax-post-callbacks.php:702
+#, php-format
+msgid ""
+"Hello %1$s,\n"
+"It seems you are locked out from the website ###SITENAME###.\n"
+"\n"
+"You can now follow this link to your new login page (remember it!):\n"
+"%2$s\n"
+"\n"
+"Have a nice day !\n"
+"\n"
+"Regards,\n"
+"All at ###SITENAME###\n"
+"###SITEURL###"
+msgstr ""
+"Hallo %1$s,\n"
+"Es scheint, dass du von der Website ###SITENAME### ausgesperrt sind.\n"
+"\n"
+"Du kannst nun diesem Link zu deiner neuen Login-Seite folgen (merken dies "
+"bitte!):\n"
+"%2$s\n"
+"\n"
+"Schönen Tag!\n"
+"\n"
+"Grüße\n"
+"Alles unter ###SITENAME###\n"
+"###SITEURL###"
+
+#: free/admin/ajax-post-callbacks.php:717
+#, php-format
+msgid ""
+"ps: you can also deactivate the Move Login module:\n"
+"%s"
+msgstr ""
+"ps: Du kannst auch das Modul Move Login deaktivieren:\n"
+"%s"
+
+#: free/admin/ajax-post-callbacks.php:717
+msgid "(Valid 1 day)"
+msgstr "(1 Tag gültig)"
+
+#: free/admin/ajax-post-callbacks.php:739
+msgid "Email sent, check your mailbox."
+msgstr "E-Mail versandt, prüfe deine Mailbox."
+
+#: free/admin/ajax-post-callbacks.php:739
+msgid "Email not sent, please contact the support."
+msgstr "E-Mail nicht versandt, bitte sprich den Support an."
+
+#: free/admin/ajax-post-callbacks.php:739
+#: free/modules/schedules/settings/schedules-backups.php:45
+#: free/modules/schedules/settings/schedules-file-monitoring.php:44
+#: free/modules/schedules/settings/schedules-scan.php:44
+#: pro/modules/alerts/tools.php:17
+msgid "Email"
+msgstr "E-Mail"
+
+#: free/admin/ajax-post-callbacks.php:783
+msgid "All modules settings reset"
+msgstr "Zurücksetzen aller Moduleinstellungen"
+
+#: free/admin/functions/admin.php:126 free/modules/addons/tools.php:135
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:274
+#, php-format
+msgid "%s ago"
+msgstr "vor %s"
+
+#: free/admin/functions/admin.php:127 free/admin/settings.php:428
+msgctxt "Latest scans"
+msgid "M dS, Y \\a\\t h:ia"
+msgstr "M dS, Y \a\\t h:ia"
+
+#: free/admin/functions/admin.php:179 pro/modules/file-system/callbacks.php:134
+#: pro/modules/file-system/callbacks.php:142
+msgid "File Differences"
+msgstr "Datei-Unterschiede"
+
+#: free/admin/functions/admin.php:180
+msgid "Real file"
+msgstr "Echte Datei"
+
+#: free/admin/functions/admin.php:181
+msgid "Your file"
+msgstr "Deine Datei"
+
+#: free/admin/functions/admin.php:194
+msgid "No differences"
+msgstr "Keine Unterschiede"
+
+#: free/admin/functions/admin.php:257 free/functions/modules.php:137
+#: free/modules/antispam/settings/antispam.php:21
+msgid "Anti Spam"
+msgstr "Anti-Spam"
+
+#: free/admin/functions/admin.php:258
+#, no-php-format
+msgid ""
+"Bots represent about 60% of internet traffic. Don’t let them add their spam "
+"to your site!"
+msgstr ""
+"Bots repräsentieren etwa 60% of Internetverkehr. Lasse nicht zu, dass sie "
+"ihren Spam zu deiner Website hinzufügen!"
+
+#: free/admin/functions/admin.php:266 free/functions/modules.php:210
+msgid "Alerts"
+msgstr "Benachrichtigungen"
+
+#: free/admin/functions/admin.php:267
+msgid ""
+"Get alerts via SMS, mobile notifications, or even by social networks in "
+"addition to email."
+msgstr ""
+"Erhalte Warnungen in Ergänzung zur E-Mail per SMS, Mobile Benachrichtigung "
+"oder sogar über Soziale Netzwerke."
+
+#: free/admin/functions/admin.php:275
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:46
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:71
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:46
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:64
+#: free/classes/scanners/class-secupress-scan-php-404.php:46
+#: free/classes/scanners/class-secupress-scan-php-404.php:64
+#: free/classes/scanners/class-secupress-scan-shellshock.php:49
+#: free/classes/scanners/class-secupress-scan-shellshock.php:67
+#: free/classes/scanners/class-secupress-scan-sqli.php:46
+#: free/classes/scanners/class-secupress-scan-sqli.php:64
+#: free/functions/modules.php:120
+msgid "Firewall"
+msgstr "Firewall"
+
+#: free/admin/functions/admin.php:276
+msgid ""
+"Other features of the firewall add an additional level of protection from "
+"Internet attacks."
+msgstr ""
+"Andere Features der Firewall fügen eine zusätzliche Stufe an Schutz vor "
+"Internet-Angriffen hinzu."
+
+#: free/admin/functions/admin.php:284 free/functions/modules.php:188
+msgid "Logs"
+msgstr "Protokolle"
+
+#: free/admin/functions/admin.php:285
+msgid ""
+"All actions considered dangerous are kept in this log available at any time "
+"to check what is happening on your site."
+msgstr ""
+"Alle Aktionen, die als gefährlich eingestuft werden, sind in diesem "
+"Protokoll jederzeit verfügbar, um zu prüfen, was auf deiner Website "
+"geschieht."
+
+#: free/admin/functions/admin.php:317
+msgid "Fix done."
+msgstr "Fix fertig."
+
+#: free/admin/functions/ajax-post.php:40
+msgid "Please try again."
+msgstr "Bitte versuche es erneut."
+
+#: free/admin/functions/ajax-post.php:45
+msgid "WordPress Failure Notice"
+msgstr "WordPress Fehlerhinweis"
+
+#: free/admin/functions/modules.php:118
+#, php-format
+msgid "will deactivate the plugin %s."
+msgstr "wird das Plugin %s deaktivieren."
+
+#: free/admin/functions/modules.php:139
+#, php-format
+msgid ""
+"You can not use this feature now because you are using the plugin %s. Please "
+"deactivate it."
+msgstr ""
+"Du kannst diese Funktion jetzt nicht verwenden, da du das Plugin %s "
+"verwendest. Bitte deaktiviere es."
+
+#: free/admin/functions/modules.php:141
+#, php-format
+msgid "Open the %s settings page"
+msgstr "Öffne die %s-Einstellungsseite"
+
+#: free/admin/modal.php:16
+msgid "SecuPress Feedback"
+msgstr "SecuPress Rückmeldung"
+
+#: free/admin/modal.php:22
+msgid ""
+"SecuPress is currently protecting this website.WP_HTTP_BLOCK_EXTERNAL
constant in the "
+"%s
to block all external HTTP requests."
+msgstr ""
+"Du hast die Konstante WP_HTTP_BLOCK_EXTERNAL
in der %s"
+"code> definiert, um alle externen HTTP-Anfragen zu blockieren."
+
+#: free/admin/notices.php:34
+#, php-format
+msgid ""
+"To make %s work well, you have to either remove the PHP constant, or add the "
+"following code in your %s
file."
+msgstr ""
+"Damit %s die Arbeit gut funktioniert, musst du entweder die PHP-Konstante "
+"entfernen oder den folgenden Code in deine %s
Datei aufnehmen."
+
+#: free/admin/notices.php:35
+msgid "Click on the field and press Ctrl+A or Cmd+A to select all."
+msgstr ""
+"Klicke auf das Feld und drücke Strg+A oder Cmd+A, um alles auszuwählen."
+
+#: free/admin/notices.php:68
+msgid ""
+"The following plugin has been deactivated because we already included its "
+"features:"
+msgid_plural ""
+"The following plugins has been deactivated because we already included its "
+"features:"
+msgstr[0] ""
+"Das folgende Plugin wurde deaktiviert, da wir seine Funktionen bereits "
+"eingebaut haben:"
+msgstr[1] ""
+"Das folgende Plugin wurde deaktiviert, da wir seine Funktionen bereits "
+"integriert haben:"
+
+#: free/admin/notices.php:113
+msgid ""
+"The following plugin is not compatible with us and will lead to conflicts:"
+msgid_plural ""
+"The following plugins are not compatible with us and will lead to conflicts:"
+msgstr[0] ""
+"Das folgende Plugin ist mit uns nicht kompatibel und führt zu Konflikten:"
+msgstr[1] ""
+"Die folgenden Plugins sind mit uns nicht kompatibel und führen zu Konflikten:"
+
+#: free/admin/notices.php:121 free/admin/notices.php:166
+#: pro/modules/plugins-themes/plugins/plugin-deactivation.php:34
+msgid "Deactivate"
+msgstr "Deaktivieren"
+
+#: free/admin/notices.php:160
+#, php-format
+msgid ""
+"The features of the following plugins are included in %1$s. You can "
+"deactivate the plugins now and enable these features later in %1$s:"
+msgstr ""
+"Die Features der folgenden Plugins sind in %1$s enthalten. Du kannst die "
+"Plugins nun deaktivieren und später in %1$s diese Features aktivieren:"
+
+#: free/admin/notices.php:241
+msgid "This module has been activated:"
+msgid_plural "These modules have been activated:"
+msgstr[0] "Dieses Modul wurde aktiviert:"
+msgstr[1] "Diese Module wurden aktiviert:"
+
+#: free/admin/notices.php:250
+msgid "This module has been deactivated:"
+msgid_plural "These modules have been deactivated:"
+msgstr[0] "Dieses Modul wurde deaktiviert:"
+msgstr[1] "Diese Module wurden deaktiviert:"
+
+#: free/admin/notices.php:294
+#, php-format
+msgid "%s is activated, let’s improve the security of your website!"
+msgstr "%s aktiviert ist, lasse uns die Sicherheit deiner Website verbessern!"
+
+#: free/admin/notices.php:295
+msgid "Scan your website for security issues, right now."
+msgstr "Scanne deine Website jetzt gleich nach Sicherheitslücken."
+
+#: free/admin/notices.php:303 free/admin/settings.php:178
+#: free/admin/settings.php:679
+msgid "Scan my website"
+msgstr "Sanne meine Website"
+
+#: free/admin/notices.php:308 free/admin/scanner-step-1-all.php:95
+#: free/admin/scanner-step-1-new.php:93 free/admin/settings.php:108
+#: free/admin/settings.php:183
+#: free/classes/common/class-secupress-logs-list.php:312
+msgid "Close"
+msgstr "Schließen"
+
+#: free/admin/notices.php:364
+#, php-format
+msgid "Please read these special notes for this update, version %1$s - %2$s"
+msgstr ""
+"Bitte lies diese speziellen Hinweise für diese Aktualisierung, Version %1$s "
+"- %2$s"
+
+#: free/admin/scanner-step-1-all.php:19
+msgid "Go to module settings"
+msgstr "Gehe zu den Modul-Einstellungen"
+
+#: free/admin/scanner-step-1-all.php:23 free/admin/scanner-step-4.php:160
+msgid "Show/hide panel"
+msgstr "Zeige/verstecke das Panel"
+
+#: free/admin/scanner-step-1-all.php:71 free/admin/scanner-step-1-new.php:69
+#: free/admin/settings.php:235
+msgctxt "verb"
+msgid "Scan"
+msgstr "Scannen"
+
+#: free/admin/scanner-step-1-all.php:89 free/admin/scanner-step-1-new.php:87
+msgid "Learn more"
+msgstr "Mehr erfahren"
+
+#: free/admin/scanner-step-1-new.php:10
+#, php-format
+msgid "%sNew Items"
+msgstr "%sNeue Elemente"
+
+#: free/admin/scanner-step-1-new.php:11
+msgid ""
+"These new items need to be checked: you will need to rescan your website."
+msgstr ""
+"Diese neue Elemente müssen überprüft werden: du wirst deine Website erneut "
+"scannen müssen."
+
+#: free/admin/scanner-step-1-new.php:17
+msgid "Show/Hide panel"
+msgstr "Zeige/Verstecke Panel"
+
+#: free/admin/scanner-step-1.php:60
+#, php-format
+msgid "Update %s:
Discover the new security items to check."
+msgstr ""
+"Aktualisieren %s:
Entdecke die neuen Sicherheitselemente, die du "
+"überprüfen kannst."
+
+#: free/admin/scanner-step-1.php:62
+msgid "List of the security items already analyzed"
+msgstr "Liste der bereits analysierten Sicherheitselemente"
+
+#: free/admin/scanner-step-1.php:69
+msgid "Doubts? Try a new scan."
+msgstr "Zweifel? Versuche einen neuen Scan."
+
+#: free/admin/scanner-step-1.php:75
+msgid "Scan website"
+msgstr "Website scannen"
+
+#: free/admin/scanner-step-1.php:95
+msgid "Max Speed (def.)"
+msgstr "Maximale Geschwindigkeit (def.)"
+
+#: free/admin/scanner-step-1.php:96
+msgid "Normal Speed"
+msgstr "Normale Geschwindigkeit"
+
+#: free/admin/scanner-step-1.php:97
+msgid "Low Speed"
+msgstr "Niedrige Geschwindigkeit"
+
+#: free/admin/scanner-step-1.php:99
+msgid "https://docs.secupress.me/article/156-whats-this-speed-thing"
+msgstr "https://docs.secupress.me/article/156-whats-this-speed-thing"
+
+#: free/admin/scanner-step-1.php:99
+msgid "What’s this speed thing?"
+msgstr "Was ist das für eine Sache mit der Geschwindigkeit?"
+
+#: free/admin/scanner-step-1.php:109 free/admin/scanner-step-1.php:159
+#: free/admin/scanner-step-2.php:58 free/admin/scanner-step-2.php:85
+#: free/admin/scanner-step-2.php:105 free/admin/scanner-step-3.php:105
+msgid "Next step"
+msgstr "Nächster Schritt"
+
+#: free/admin/scanner-step-1.php:131 free/admin/scanner-step-4.php:266
+msgid "Export this report as PDF file."
+msgstr "Exportiere diesen Bericht als pdf-Datei."
+
+#: free/admin/scanner-step-1.php:136 free/admin/scanner-step-1.php:145
+#: free/admin/scanner-step-4.php:259
+msgid "Export as PDF"
+msgstr "Exportiere als pdf"
+
+#: free/admin/scanner-step-1.php:140 free/admin/scanner-step-4.php:272
+msgid "Get the Pro Version to export this report as PDF file."
+msgstr ""
+"Hole dir die Pro-Version, um diesen Bericht als PDF-Datei zu exportieren."
+
+#: free/admin/scanner-step-1.php:150 free/admin/scanner-step-3.php:189
+#: free/admin/scanner-step-4.php:277
+#: free/classes/settings/class-secupress-settings.php:1708
+#, php-format
+msgid "Available in Pro Version"
+msgstr "In der Pro-Version verfügbar"
+
+#: free/admin/scanner-step-2.php:52 free/admin/scanner-step-3.php:99
+msgid "Nothing to do here"
+msgstr "Hier ist nicht zu tun"
+
+#: free/admin/scanner-step-2.php:76 free/admin/scanner-step-2.php:213
+#: free/admin/settings.php:230
+msgid "Fix it"
+msgstr "Reparieren"
+
+#: free/admin/scanner-step-2.php:93
+msgid "Ignore this step"
+msgstr "Ignoriere diesen Schritt"
+
+#: free/admin/scanner-step-2.php:112
+msgid "Only checked items will be automatically fixed"
+msgstr "Nur ausgewählte Elemente werden automatisch repariert"
+
+#: free/admin/scanner-step-2.php:141
+msgid "Toggle group check"
+msgstr "Schalte Gruppen-Prüfung um"
+
+#: free/admin/scanner-step-2.php:153
+#, php-format
+msgid ""
+"The Pro Version is required to autofix "
+"issues, fix it manually on next step."
+msgstr ""
+"Die Pro-Version ist erforderlich, um "
+"Probleme automatisch zu beheben und sie im nächsten Schritt manuell zu "
+"beheben."
+
+#: free/admin/scanner-step-2.php:196
+#, php-format
+msgid ""
+"This feature and its fix are available in Pro Version"
+msgstr ""
+"Diese Funktion und ihre Fehlerbehebung sind in der Pro-Version verfügbar"
+
+#: free/admin/scanner-step-2.php:206
+msgid "Auto-fix this item"
+msgstr "Behebe dieses Element automatisch"
+
+#: free/admin/scanner-step-2.php:243
+msgid "Currently fixing…"
+msgstr "Wird gerade behoben…"
+
+#: free/admin/scanner-step-2.php:244
+msgid "Please grab a cup of water, open a book and just wait a few minutes."
+msgstr ""
+"Bitte schnappe dir einen Becher Wasser, schlage ein Buch auf und warte "
+"einfach ein paar Minuten."
+
+#: free/admin/scanner-step-2.php:249
+msgid "Fixing…"
+msgstr "Behebe …"
+
+#: free/admin/scanner-step-2.php:251
+msgid ""
+"You’ll be automatically redirected to the next step,
if you are not "
+"within 5 minutes, please reload the page or ignore this step."
+msgstr ""
+"Du wirst automatisch zum nächsten Schritt weitergeleitet.
Wenn 5 Minuten "
+"sind vergangen sind, lade die Seite bitte neu oder ignoriere diesen Schritt."
+
+#: free/admin/scanner-step-3.php:117
+#, php-format
+msgid "%d issue requires your attention"
+msgid_plural "%d issues require your attention"
+msgstr[0] "%d Problem erfordert deine Aufmerksamkeit"
+msgstr[1] "%d Probleme erfordert deine Aufmerksamkeit"
+
+#: free/admin/scanner-step-3.php:121
+#, php-format
+msgid "%1$s of %2$s"
+msgstr "%1$s von %2$s"
+
+#: free/admin/scanner-step-3.php:128
+msgid "Ignore all & Go to the next step"
+msgstr "Ignoriere alle & Gehe zum nächsten Schritt"
+
+#: free/admin/scanner-step-3.php:207
+msgid "How to fix this issue"
+msgstr "Wie dieses Problem zu beheben ist"
+
+#: free/admin/scanner-step-3.php:265 free/admin/scanner-step-3.php:288
+#: free/admin/settings.php:541 free/admin/settings.php:882
+#: free/admin/settings.php:885
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:157
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:178
+#: free/modules/welcome/callbacks.php:404
+#: free/modules/welcome/callbacks.php:405
+#: free/modules/welcome/callbacks.php:559
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:163
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:164
+msgid "Open in a new window."
+msgstr "In einem neuen Fenster öffnen."
+
+#: free/admin/scanner-step-3.php:269
+msgid "Read the documentation"
+msgstr "Lese die Dokumentation"
+
+#: free/admin/scanner-step-3.php:278
+msgid "Ignore it"
+msgstr "Ignoriere es"
+
+#: free/admin/scanner-step-3.php:285
+msgid "Fix it and continue"
+msgstr "Reparieren und weitermachen"
+
+#: free/admin/scanner-step-3.php:292
+msgid "Get PRO"
+msgstr "PRO Version"
+
+#: free/admin/scanner-step-3.php:299
+msgid "I did the job, continue"
+msgstr "Ich habe den Job gemacht, mach weiter"
+
+#: free/admin/scanner-step-4.php:42
+#, php-format
+msgid "Bravo! You fixed %1$d of %2$d."
+msgstr "Bravo! Du hast %1$d von %2$d behoben."
+
+#: free/admin/scanner-step-4.php:46
+#, php-format
+msgid "Nothing fixed yet, %d left."
+msgstr "Bisher nichts behoben, %d übrig."
+
+#: free/admin/scanner-step-4.php:55
+#, php-format
+msgid "Your grade is still %s. "
+msgstr "Deine Note ist immer noch %s. "
+
+#: free/admin/scanner-step-4.php:57
+#, php-format
+msgid "Your grade went from %1$s to %2$s. "
+msgstr "Deine Note hat sich von %1$s auf %2$s geändert. "
+
+#: free/admin/scanner-step-4.php:62
+msgid "You fixed: "
+msgstr "Du hast behoben: "
+
+#: free/admin/scanner-step-4.php:78
+#, php-format
+msgid "%d Bad"
+msgstr "%d Schlecht"
+
+#: free/admin/scanner-step-4.php:88
+#, php-format
+msgid "%d Warning"
+msgstr "%d Warnung"
+
+#: free/admin/scanner-step-4.php:101
+msgid "Show/hide the details of scanned items in your report"
+msgstr "Zeige/verstecke die Details der gescannten Elemente in deinem Bericht"
+
+#: free/admin/scanner-step-4.php:107
+msgid "See all fixed issues"
+msgstr "Schau dir alle behobenen Probleme an"
+
+#: free/admin/scanner-step-4.php:110
+msgid "Hide all fixed issues"
+msgstr "Blende alle behobenen Probleme aus"
+
+#: free/admin/scanner-step-4.php:209 free/admin/settings.php:229
+msgid "Not fixed"
+msgstr "Nicht behoben"
+
+#: free/admin/scanner-step-4.php:214 free/admin/settings.php:147
+#: free/admin/settings.php:226 free/functions/common.php:1667
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:396
+msgid "Error"
+msgstr "Fehler"
+
+#: free/admin/scanner-step-4.php:219
+msgid "Pending"
+msgstr "Ausstehend"
+
+#: free/admin/scanner-step-4.php:224 free/admin/settings.php:227
+msgid "Fixed"
+msgstr "Fixiert"
+
+#: free/admin/scanner-step-4.php:289
+msgid "Want to go farther?"
+msgstr "Möchtest du weitergehen?"
+
+#: free/admin/scanner-step-4.php:290
+msgid "Perfect the security of your website with our dedicated modules."
+msgstr ""
+"Perfektioniere die Sicherheit deiner Website mit unseren dedizierten Modulen."
+
+#: free/admin/scanner-step-4.php:298
+#, php-format
+msgid "%s modules"
+msgstr "%s Module"
+
+#: free/admin/scanner-step-4.php:301
+msgid "Fine-tune your security"
+msgstr "Feinsteuerung deiner Sicherheit"
+
+#: free/admin/scanner-step-4.php:308 free/admin/settings.php:637
+msgid "Manage your recurring scans"
+msgstr "Verwalte deine wiederkehrenden Scans"
+
+#: free/admin/scanner-step-4.php:309
+#, php-format
+msgid "Let %s scan your website when you are away by using scheduled scans."
+msgstr ""
+"Lass %s mit Hilfe von geplanten Scans deine Website scannen während du weg "
+"bist."
+
+#: free/admin/scanner-step-4.php:315 free/admin/settings.php:636
+msgid "Schedule Scans"
+msgstr "Geplante Scans"
+
+#: free/admin/scanner-step-4.php:316
+msgid "Schedule your recurring scans"
+msgstr "Plane deine wiederkehrenden Scans"
+
+#: free/admin/scanner-step-4.php:335
+msgid "Get a better score and unlock all features"
+msgstr "Erziele ein besseres Ergebnis und schalte alle Features frei"
+
+#: free/admin/scanner-step-4.php:343
+msgid "Get Pro"
+msgstr "Hol dir Pro"
+
+#: free/admin/settings.php:81 free/admin/settings.php:106
+#: free/admin/settings.php:145 free/admin/settings.php:224
+msgid "OK"
+msgstr "OK"
+
+#: free/admin/settings.php:142
+#: free/classes/settings/class-secupress-settings.php:302
+#: free/modules/users-login/settings/double-auth.php:76
+msgid "Select 1 role minimum"
+msgstr "Wähle mindestens 1 Rolle aus"
+
+#: free/admin/settings.php:144
+msgid "Are you sure?"
+msgstr "Bist du sicher?"
+
+#: free/admin/settings.php:148
+msgid "Unknown error."
+msgstr "Unbekannter Fehler."
+
+#: free/admin/settings.php:149
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:421
+#: pro/modules/backups/callbacks.php:300
+#: pro/modules/plugins-themes/plugins/plugin-deletion.php:25
+msgid "Delete"
+msgstr "Löschen"
+
+#: free/admin/settings.php:150
+msgid "Done!"
+msgstr "Erledigt!"
+
+#: free/admin/settings.php:152
+msgid "You are about to delete all your backups."
+msgstr "Du bist dabei, alle deine Sicherungen zu löschen."
+
+#: free/admin/settings.php:153
+msgid "Yes, delete all backups"
+msgstr "Ja, lösche alle Sicherungen"
+
+#: free/admin/settings.php:154
+msgid "Impossible to delete all backups."
+msgstr "Unmöglich, alle Sicherungen zu löschen."
+
+#: free/admin/settings.php:155
+msgid "Deleting all backups…"
+msgstr "Löschen aller Sicherungen &helllip;"
+
+#: free/admin/settings.php:156
+msgid "All backups deleted"
+msgstr "Alle Sicherungen gelöscht"
+
+#: free/admin/settings.php:158
+msgid "You are about to delete a backup."
+msgstr "Du bist dabei eine Sicherung zu löschen."
+
+#: free/admin/settings.php:159
+msgid "Yes, delete this backup"
+msgstr "Ja, lösche diese Sicherung"
+
+#: free/admin/settings.php:160
+msgid "Impossible to delete this backup."
+msgstr "Unmöglich, diese Sicherung zu löschen."
+
+#: free/admin/settings.php:161
+msgid "Deleting Backup…"
+msgstr "Lösche Sicherung …"
+
+#: free/admin/settings.php:162
+msgid "Backup deleted"
+msgstr "Sicherung gelöscht"
+
+#: free/admin/settings.php:164
+msgid "Impossible to backup."
+msgstr "Unmöglich, eine Sicherung zu erstellen."
+
+#: free/admin/settings.php:165 pro/admin/settings.php:560
+#: pro/admin/settings.php:600
+msgid "Backuping…"
+msgstr "Erstelle Sicherung …"
+
+#: free/admin/settings.php:166
+msgid "Backup done"
+msgstr "Backup erledigt"
+
+#: free/admin/settings.php:168
+msgid "Empty disallowed IP list."
+msgstr "Leere Liste unzulässiger IP-Adressen."
+
+#: free/admin/settings.php:169
+msgid "Empty allowed IP list."
+msgstr "Leere Liste zulässiger IP-Adressen."
+
+#: free/admin/settings.php:170
+#: free/classes/settings/class-secupress-settings-modules.php:498
+#: free/classes/settings/class-secupress-settings-modules.php:594
+msgid "IP not found."
+msgstr "IP nicht gefunden."
+
+#: free/admin/settings.php:171
+msgid "IP removed."
+msgstr "IP entfernt."
+
+#: free/admin/settings.php:172
+msgctxt "adjective"
+msgid "See search result below."
+msgstr "Siehe nachfolgendes Suchergebnis."
+
+#: free/admin/settings.php:173
+msgctxt "adjective"
+msgid "Search reset."
+msgstr "Suche zurückgesetzt."
+
+#: free/admin/settings.php:176
+msgid "Before setting modules,
launch your first scan."
+msgstr "Vor Einstellung der Module
starte deinen ersten Scan."
+
+#: free/admin/settings.php:177
+msgid "It’s an automatic process that will help you secure your website."
+msgstr "Es ist ein automatischer Prozess, der hilft, deine Website zu sichern."
+
+#: free/admin/settings.php:182
+msgid "Show More"
+msgstr "Mehr anzeigen"
+
+#: free/admin/settings.php:186
+msgid "AJAX Security Error: Please reload the page manually."
+msgstr "AJAX-Sicherheitsfehler: Bitte lade die Seite manuell neu."
+
+#: free/admin/settings.php:191
+msgid "This will reset the setting values to default for this module."
+msgstr ""
+"Dadurch werden die Einstellungswerte für dieses Modul auf die Standardwerte "
+"zurückgesetzt."
+
+#: free/admin/settings.php:192
+msgid ""
+"This will change the 8 security keys for your installation.
You may need "
+"to sign back in."
+msgstr ""
+"Dadurch werden die 8 Sicherheitsschlüssel für deine Installation geändert."
+"
Möglicherweise musst du dich erneut anmelden."
+
+#: free/admin/settings.php:212 free/admin/settings.php:511
+#: free/functions/common.php:1665
+msgid "Good"
+msgstr "Gut"
+
+#: free/admin/settings.php:213 free/functions/common.php:1666
+msgid "Warning"
+msgstr "Warnung"
+
+#: free/admin/settings.php:214 free/admin/settings.php:516
+#: free/functions/common.php:1664
+msgid "Bad"
+msgstr "Schlecht"
+
+#: free/admin/settings.php:215
+msgid "Not Scanned Yet"
+msgstr "Bisher nicht gescannt"
+
+#: free/admin/settings.php:228
+msgid "Partially fixed"
+msgstr "Teilweise behoben"
+
+#: free/admin/settings.php:231
+msgid "One fix requires your intervention."
+msgstr "Eine Behebung erfordert dein Eingreifen."
+
+#: free/admin/settings.php:232
+msgid "Fix in progress…"
+msgstr "Fehlerbehebung in Bearbeitung …"
+
+#: free/admin/settings.php:233
+msgid "Some fixes require your intervention."
+msgstr "Einige Behebungen erfordern dein Eingreifen."
+
+#: free/admin/settings.php:236
+msgid "Scan Details"
+msgstr "Scan-Details"
+
+#: free/admin/settings.php:237
+msgid "Fix Details"
+msgstr "Behebungs-Details"
+
+#: free/admin/settings.php:240
+msgid "Security scan just finished."
+msgstr "Sicherheitsscan gerade beendet."
+
+#: free/admin/settings.php:241
+msgid "Currently fixing…"
+msgstr "Behebe aktuell …"
+
+#: free/admin/settings.php:241
+msgid "Please wait until fixing is complete."
+msgstr "Bitte warte, bis die Behebung fertig ist."
+
+#: free/admin/settings.php:243
+msgid "Coming Soon"
+msgstr "In Kürze verfügbar"
+
+#: free/admin/settings.php:244
+msgid ""
+"The documentation is actually under construction, thank you for your "
+"patience."
+msgstr ""
+"Die Dokumentation ist eigentlich in Bearbeitung, Danke für deine Geduld."
+
+#: free/admin/settings.php:292
+#: free/classes/settings/class-secupress-settings.php:1644
+msgid "support"
+msgstr "support"
+
+#: free/admin/settings.php:292
+#: free/classes/settings/class-secupress-settings.php:1638
+msgid "Support"
+msgstr "Support"
+
+#: free/admin/settings.php:294
+#: free/classes/scanners/class-secupress-scan.php:229
+#: free/classes/settings/class-secupress-settings.php:1630
+msgid "https://docs.secupress.me/"
+msgstr "https://docs.secupress.me/"
+
+#: free/admin/settings.php:294
+msgid "Docs"
+msgstr "Dokumentation"
+
+#: free/admin/settings.php:299
+#: free/classes/settings/class-secupress-settings-global.php:85
+#: free/classes/settings/class-secupress-settings-global.php:88
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: free/admin/settings.php:436
+msgid "Currently scanning"
+msgstr "Scanne gerade"
+
+#: free/admin/settings.php:439
+#, php-format
+msgid "%1$s / %2$s points"
+msgstr "%1$s / %2$s Punkte"
+
+#: free/admin/settings.php:465
+msgid "First scan"
+msgstr "Erster Scan"
+
+#: free/admin/settings.php:466
+msgid "Here’s how it’s going to work"
+msgstr "Und so wird es funktionieren"
+
+#: free/admin/settings.php:471 free/admin/settings.php:645
+msgid "Scan results"
+msgstr "Scan-Ergebnisse"
+
+#: free/admin/settings.php:480
+msgid "How does it work?"
+msgstr "Wie funktioniert das?"
+
+#: free/admin/settings.php:522
+msgid "New Scan"
+msgstr "Neuer Scan"
+
+#: free/admin/settings.php:534
+#, php-format
+msgid ""
+"Wow! My website just got an %s grade for security using @SecuPress, what "
+"about yours?"
+msgstr ""
+"Beeindruckend! Meine Website hat gerade eine %s Note für die Sicherheit mit "
+"@SecuPress erhalten, was ist mit deiner?"
+
+#: free/admin/settings.php:544
+msgid "Tweet this"
+msgstr "Auf Twitter teilen"
+
+#: free/admin/settings.php:556
+msgid "Your last scans"
+msgstr "Deine letzten Scans"
+
+#: free/admin/settings.php:564
+msgid "You have no other reports for now."
+msgstr "Du hast vorerst keine anderen Berichte."
+
+#: free/admin/settings.php:575
+msgid "Schedule your security analysis"
+msgstr "Plane deine Sicherheitsanalyse"
+
+#: free/admin/settings.php:577
+msgid ""
+"Stay updated on the security of your website. With our automatic scans, "
+"there is no need to log in to your WordPress admin to run a scan."
+msgstr ""
+"Bleib bei der Sicherheit deiner Website auf dem Laufenden. Mit unseren "
+"automatischen Scans brauchst du dich nicht mehr in deinem WordPress-Backend "
+"anmelden, um Scans auszuführen."
+
+#: free/admin/settings.php:581 free/admin/settings.php:583
+msgctxt "Schedule date"
+msgid "Y-m-d \\a\\t h:ia"
+msgstr "Y-m-d \a\\t h:ia"
+
+#: free/admin/settings.php:588 free/admin/settings.php:603
+#, php-format
+msgid "Last automatic scan: %s"
+msgstr "Letzter automatischer Scan: %s"
+
+#: free/admin/settings.php:592 free/admin/settings.php:607
+#, php-format
+msgid "Next automatic scan: %s"
+msgstr "Nächster automatischer Scan: %s"
+
+#: free/admin/settings.php:596 free/admin/settings.php:611
+msgid "Schedule your next analysis"
+msgstr "Plane deine nächste Analyse"
+
+#: free/admin/settings.php:613
+msgid "Available in the PRO version"
+msgstr "In der Pro-Version verfügbar"
+
+#: free/admin/settings.php:626
+msgid "Latest scans"
+msgstr "Letzte Scans"
+
+#: free/admin/settings.php:627
+msgid "View your previous scans"
+msgstr "Deine vorherigen Scans ansehen"
+
+#: free/admin/settings.php:668
+msgid "Click to launch first scan"
+msgstr "Klicke um einen ersten Scan zu starten"
+
+#: free/admin/settings.php:702
+msgid "Security Report"
+msgstr "Sicherheits-Bericht"
+
+#: free/admin/settings.php:703 free/admin/settings.php:768
+msgid "Auto-Fix"
+msgstr "Automatische Behebung"
+
+#: free/admin/settings.php:704 free/admin/settings.php:779
+msgid "Manual Operations"
+msgstr "Manuelle Eingriffe"
+
+#: free/admin/settings.php:705 free/admin/settings.php:790
+msgid "Resolution Report"
+msgstr "Lösungsbericht"
+
+#: free/admin/settings.php:757
+#: pro/classes/admin/class-secupress-pro-admin-scan-report-pdf.php:22
+msgid "Site Health"
+msgstr "Website-Zustand"
+
+#: free/admin/settings.php:759
+msgid "Start to check all security items with the Scan your website button."
+msgstr ""
+"Beginne mit dem Button Scanne deine Website alle Sicherheitselemente zu "
+"prüfen."
+
+#: free/admin/settings.php:770
+msgid "Launch the auto-fix on selected issues."
+msgstr "Starte die automatische Behebung der ausgewählten Probleme."
+
+#: free/admin/settings.php:781
+msgid ""
+"Go further and take a look at the items you have to fix with specific "
+"operations."
+msgstr ""
+"Geh weiter und wirf einen Blick auf die Elemente, die du mit bestimmten "
+"Eingriffen beheben musst."
+
+#: free/admin/settings.php:792
+msgid "Get the new site health report for your website."
+msgstr "Hole den neuen Website-Zustandsbericht für deine Website."
+
+#: free/admin/settings.php:804
+msgid "I’ve got it!"
+msgstr "Ich habe es!"
+
+#: free/admin/settings.php:880
+msgid "Do you like this plugin?"
+msgstr "Magst du dieses Plugin?"
+
+#: free/admin/settings.php:882
+#, php-format
+msgid "Please take a few seconds to rate us on %1$sWordPress.org%2$s"
+msgstr ""
+"Bitte nimm dir ein paar Sekunden Zeit, um uns auf %1$sWordPress.org%2$s zu "
+"bewerten"
+
+#: free/admin/settings.php:891
+msgctxt "hidden text"
+msgid "Give us five stars"
+msgstr "Gibt uns fünf Sterne"
+
+#: free/admin/upgrader.php:282
+msgid "Plugin Installation"
+msgstr "Plugin-Installation"
+
+#: free/admin/upgrader.php:411
+msgid "Full Changelog"
+msgstr "Gesamtes Veränderungsprotokoll"
+
+#: free/admin/upgrader.php:419
+msgid "Install Update Now"
+msgstr "Aktualisierung jetzt installieren"
+
+#: free/admin/upgrader.php:423
+msgid "Get SecuPress Pro Now!"
+msgstr "Hole dir jetzt SecuPress Pro!"
+
+#: free/admin/upgrader.php:430
+msgid "Requires WordPress Version:"
+msgstr "Benötigt WordPress Version:"
+
+#: free/admin/upgrader.php:432 free/admin/upgrader.php:435
+#, php-format
+msgid "%s or higher"
+msgstr "%s oder höher"
+
+#: free/admin/upgrader.php:438 free/modules/addons/tools.php:147
+msgid "Compatible up to:"
+msgstr "Kompatibel bis:"
+
+#: free/admin/upgrader.php:441
+msgid "Active Installations:"
+msgstr "Aktive Installationen:"
+
+#: free/admin/upgrader.php:444 free/modules/addons/tools.php:38
+msgctxt "Active plugin installations"
+msgid "1+ Million"
+msgstr "1+ Million"
+
+#: free/admin/upgrader.php:446
+msgctxt "Active plugin installations"
+msgid "Less Than 10"
+msgstr "Weniger als 10"
+
+#: free/admin/upgrader.php:451
+msgid "Average Rating"
+msgstr "Durchschnittliche Bewertung"
+
+#: free/admin/upgrader.php:453
+#, php-format
+msgid "(based on %s rating)"
+msgid_plural "(based on %s ratings)"
+msgstr[0] "(basierend auf %s Bewertung)"
+msgstr[1] "(basierend auf %s Bewertungen)"
+
+#: free/admin/upgrader.php:479
+#, php-format
+msgid "What’s new in SecuPress %s"
+msgstr "Was ist neu in SecuPress %s"
+
+#: free/admin/upgrader.php:480
+msgid "Or read full changelog on secupress.me"
+msgstr "Oder lese das vollständige Changelog auf secupress.me"
+
+#: free/classes/admin/class-secupress-admin-notices.php:247
+#: free/classes/admin/class-secupress-admin-notices.php:327
+msgid "Dismiss"
+msgstr "Verwerfen"
+
+#: free/classes/admin/class-secupress-admin-offer-migration.php:270
+msgctxt "URL slug"
+msgid "account"
+msgstr "Konto"
+
+#: free/classes/admin/class-secupress-admin-offer-migration.php:286
+msgid "HALP!"
+msgstr "HÜLFE!"
+
+#: free/classes/admin/class-secupress-admin-pointers.php:173
+msgid "New HTTP Logs Feature"
+msgstr "Neue HTTP-Protokollfunktion"
+
+#: free/classes/admin/class-secupress-admin-pointers.php:174
+msgid "You can now filter the HTTP outputs"
+msgstr "Du kannst jetzt die HTTP-Ausgaben filtern"
+
+#: free/classes/admin/class-secupress-admin-pointers.php:175
+msgid ""
+"You can restrict how many time per day each URL can be called.
You can "
+"also just check which URLs are called from your site.
These filters will "
+"help you to improve the security AND the loading speed of your site."
+msgstr ""
+"Du kannst einschränken, wie oft pro Tag jede URL aufgerufen werden kann."
+"
Du kannst auch einfach überprüfen, welche URLs von deiner Website "
+"aufgerufen werden.
Diese Filter helfen dir, die Sicherheit UND die "
+"Ladegeschwindigkeit deiner Website zu verbessern."
+
+#: free/classes/admin/class-secupress-admin-pointers.php:187
+#: free/classes/admin/class-secupress-admin-pointers.php:225
+#: free/classes/admin/class-secupress-admin-pointers.php:254
+msgctxt "pointerWidth"
+msgid "400"
+msgstr "400"
+
+#: free/classes/admin/class-secupress-admin-pointers.php:241
+msgid "New Module: Addons"
+msgstr "Neues Modul: Addons"
+
+#: free/classes/admin/class-secupress-admin-pointers.php:242
+msgid "Discover our 2 brand new recommandations."
+msgstr "Entdecke unsere zwei brandneuen Empfehlungen."
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:107
+#, php-format
+msgid "You can now %s to the Pro version."
+msgstr "Du kannst jetzt zur Pro-Version %s."
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:108
+msgctxt "verb"
+msgid "upgrade"
+msgstr "Upgrade"
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:156
+#, php-format
+msgid ""
+"A problem occurred while retrieving the Pro version information. Please "
+"download the plugin from your %s and proceed as follow in that order: do NOT "
+"uninstall the Free plugin or you’ll lose all your settings (but you can "
+"deactivate it if you want), install and activate the Pro plugin, the Free "
+"plugin magically disappeared."
+msgstr ""
+"Beim Abrufen der Pro-Versionsinformationen ist ein Problem aufgetreten. "
+"Bitte lade das Plugin von deinem %s herunter und gehe wie folgt in dieser "
+"Reihenfolge vor: Deinstalliere das kostenlose Plugin NICHT, sonst verlierst "
+"du alle Einstellungen des Plugins (du kannst es auch deaktivieren), "
+"installiere und aktiviere das Pro-Plugin, das kostenlose Plugin ist auf "
+"magische Weise verschwunden."
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:157
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:178
+#: free/modules/welcome/callbacks.php:559
+msgid "SecuPress account"
+msgstr "SecuPress-Konto"
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:177
+#, php-format
+msgid ""
+"It seems you already installed the Pro version. An attempt has been made to "
+"replace it with a fresh copy but it couldn’t be deleted (which is not "
+"normal). Please download the plugin from your %s and proceed as follow in "
+"that order: do NOT uninstall the Free plugin or you’ll lose all your "
+"settings (but you can deactivate it if you want), install and activate the "
+"Pro plugin, the Free plugin magically disappeared."
+msgstr ""
+"Es scheint, dass du die Pro-Version bereits installiert hast. Es wurde "
+"versucht, sie durch eine neue Kopie zu ersetzen, aber sie konnte nicht "
+"gelöscht werden (was nicht normal ist). Bitte lade das Plugin von deinem %s "
+"herunter und gehe wie in dieser Reihenfolge vor: Deinstalliere das "
+"kostenlose Plugin NICHT, sonst verlierst du alle dessen Einstellungen (du "
+"kannst es aber deaktivieren), installiere und aktiviere das Pro-Plugin, das "
+"kostenlose Plugin ist auf magische Weise verschwunden."
+
+#: free/classes/admin/class-secupress-admin-pro-upgrade.php:233
+msgid "Congratulations, your Pro version has been installed 🎉."
+msgstr "Glückwunsch, deine Pro-Version wurde installiert 🎉."
+
+#: free/classes/admin/class-secupress-admin-wp-background-process.php:427
+#, php-format
+msgid "Every %d Minutes"
+msgstr "Alle %d Minuten"
+
+#: free/classes/common/class-secupress-log.php:179
+msgid "Y/m/d g:i:s a"
+msgstr "Y/m/d g:i:s a"
+
+#: free/classes/common/class-secupress-log.php:243
+#, php-format
+msgid "Filter logs with the IP address %s"
+msgstr "Filtere Protokolle mit der IP-Adresse %s"
+
+#: free/classes/common/class-secupress-log.php:248
+#, php-format
+msgid "Filter logs with the user ID %d"
+msgstr "Filtere Protokolle mit der User-ID %d"
+
+#: free/classes/common/class-secupress-log.php:253
+#, php-format
+msgid "Filter logs with the user login \"%s\""
+msgstr "Filtere Protokolle mit dem User-Login \"%s\""
+
+#: free/classes/common/class-secupress-log.php:265
+msgid "Profile"
+msgstr "Profil"
+
+#: free/classes/common/class-secupress-log.php:283
+#: free/classes/common/class-secupress-log.php:294
+#: free/classes/common/class-secupress-logs.php:1375
+#: free/classes/common/class-secupress-logs.php:1384
+msgid "IP"
+msgstr "IP"
+
+#: free/classes/common/class-secupress-log.php:284
+#: free/classes/common/class-secupress-logs.php:1376
+msgid "ID"
+msgstr "ID"
+
+#: free/classes/common/class-secupress-log.php:285
+#: free/classes/common/class-secupress-logs.php:1377
+msgid "Login"
+msgstr "Anmelden"
+
+#: free/classes/common/class-secupress-log.php:318
+msgid "High priority"
+msgstr "Hohe Priorität"
+
+#: free/classes/common/class-secupress-log.php:320
+msgid "Normal priority"
+msgstr "Normale Priorität"
+
+#: free/classes/common/class-secupress-log.php:322
+msgid "Low priority"
+msgstr "Geringe Priorität"
+
+#: free/classes/common/class-secupress-log.php:324
+msgid "Unknown priority"
+msgstr "Unbekannte Priorität"
+
+#: free/classes/common/class-secupress-log.php:329
+msgctxt "priority level"
+msgid "High"
+msgstr "Hoch"
+
+#: free/classes/common/class-secupress-log.php:331
+msgctxt "priority level"
+msgid "Normal"
+msgstr "Normal"
+
+#: free/classes/common/class-secupress-log.php:333
+msgctxt "priority level"
+msgid "Low"
+msgstr "Niedrig"
+
+#: free/classes/common/class-secupress-log.php:335
+msgctxt "priority level"
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: free/classes/common/class-secupress-log.php:450
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:563
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:564
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:604
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:605
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:717
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:718
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:758
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:759
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:447
+msgid "empty string"
+msgstr "leerer String"
+
+#: free/classes/common/class-secupress-logs-list-table.php:384
+#, php-format
+msgid "All (%s)"
+msgid_plural "All (%s)"
+msgstr[0] "Alle (%s)"
+msgstr[1] "Alle (%s)"
+
+#: free/classes/common/class-secupress-logs-list-table.php:431
+#: free/classes/common/class-secupress-logs-list-table.php:821
+msgid "Delete Permanently"
+msgstr "Dauerhaft löschen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:464
+msgid "Download All"
+msgstr "Alle herunterladen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:478
+msgid "Delete All"
+msgstr "Alle löschen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:567
+msgctxt "column name"
+msgid "Title"
+msgstr "Titel"
+
+#: free/classes/common/class-secupress-logs-list-table.php:570
+msgid "priority"
+msgstr "Priorität"
+
+#: free/classes/common/class-secupress-logs-list-table.php:573
+msgid "Date"
+msgstr "Datum"
+
+#: free/classes/common/class-secupress-logs-list-table.php:650
+#, php-format
+msgid "Select “%s”"
+msgstr "Wähle “%s”"
+
+#: free/classes/common/class-secupress-logs-list-table.php:698
+#, php-format
+msgid "View “%s”"
+msgstr "Zeige “%s”"
+
+#: free/classes/common/class-secupress-logs-list-table.php:729
+msgid "\\<\\b\\>Y/m/d\\<\\/\\b\\> g:i:s a"
+msgstr "\\<\\b\\>d.m.\\<\\/\\b\\> G:i:s"
+
+#: free/classes/common/class-secupress-logs-list-table.php:819
+msgid "Delete this item and its children permanently"
+msgstr "Dieses Element und seine untergeordneten Elemente dauerhaft löschen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:819
+msgid "Delete Permanently with its children"
+msgstr "Dauerhaft löschen mit seinen untergeordneten Elementen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:821
+msgid "Delete this item permanently"
+msgstr "Dieses Element permanent löschen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:823
+msgid "View this log details"
+msgstr "Details dieses Protokolls ansehen"
+
+#: free/classes/common/class-secupress-logs-list-table.php:823
+msgid "View"
+msgstr "Anzeigen"
+
+#: free/classes/common/class-secupress-logs-list.php:150
+#: free/functions/modules.php:165
+msgid "Monitor everything"
+msgstr "Alles überwachen"
+
+#: free/classes/common/class-secupress-logs-list.php:233
+#: free/classes/common/class-secupress-logs-list.php:241
+msgid "No logs selected"
+msgstr "Keine Protokolle ausgewählt"
+
+#: free/classes/common/class-secupress-logs-list.php:266
+msgid "Log Details"
+msgstr "Protokolldetails"
+
+#: free/classes/common/class-secupress-logs-list.php:271
+msgid "Delete log"
+msgstr "Protokoll löschen"
+
+#: free/classes/common/class-secupress-logs-list.php:277
+msgid "Delete logs for this user"
+msgstr "Lösche Protokolle für diesen Nutzer"
+
+#: free/classes/common/class-secupress-logs-list.php:277
+msgid "Delete logs without user ID"
+msgstr "Lösche Protokolle ohne User-ID"
+
+#: free/classes/common/class-secupress-logs-list.php:298
+msgid "Ban this IP"
+msgstr "Diese IP blockieren"
+
+#: free/classes/common/class-secupress-logs-list.php:305
+msgid "Delete logs with this IP"
+msgstr "Lösche Protokolle mit dieser IP"
+
+#: free/classes/common/class-secupress-logs.php:474
+msgctxt "post type singular name"
+msgid "Log"
+msgstr "Protokoll"
+
+#: free/classes/common/class-secupress-logs.php:476
+msgid "All Logs"
+msgstr "Alle Protokolle"
+
+#: free/classes/common/class-secupress-logs.php:477
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:43
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:43
+msgctxt "secupress_log"
+msgid "Add New"
+msgstr "Neu hinzufügen"
+
+#: free/classes/common/class-secupress-logs.php:478
+msgid "Add New Log"
+msgstr "Neues Protokoll hinzufügen"
+
+#: free/classes/common/class-secupress-logs.php:479
+msgid "Edit Log"
+msgstr "Log bearbeiten"
+
+#: free/classes/common/class-secupress-logs.php:480
+msgid "New Log"
+msgstr "Neues Protokoll"
+
+#: free/classes/common/class-secupress-logs.php:481
+msgid "View Log"
+msgstr "Protokoll ansehen"
+
+#: free/classes/common/class-secupress-logs.php:483
+msgid "Search Logs"
+msgstr "Protokolle suchen"
+
+#: free/classes/common/class-secupress-logs.php:484
+msgid "No logs found."
+msgstr "Keine Protokolle gefunden."
+
+#: free/classes/common/class-secupress-logs.php:485
+msgid "No logs found in Trash."
+msgstr "Keine Protokolle im Papierkorb gefunden."
+
+#: free/classes/common/class-secupress-logs.php:486
+msgid "Parent Log:"
+msgstr "Übergeordnetes Protokoll:"
+
+#: free/classes/common/class-secupress-logs.php:487
+msgid "Log Archives"
+msgstr "Vorgangs-Archiv"
+
+#: free/classes/common/class-secupress-logs.php:488
+msgid "Insert into log"
+msgstr "In Protokoll einfügen"
+
+#: free/classes/common/class-secupress-logs.php:489
+msgid "Uploaded to this log"
+msgstr "In dieses Protokoll hochgeladen"
+
+#: free/classes/common/class-secupress-logs.php:490
+msgid "Filter logs list"
+msgstr "Filtere Protokoll-Liste"
+
+#: free/classes/common/class-secupress-logs.php:491
+msgid "Logs list navigation"
+msgstr "Protokoll-Listennavigation"
+
+#: free/classes/common/class-secupress-logs.php:492
+msgid "Logs list"
+msgstr "Protokoll-Liste"
+
+#: free/classes/common/class-secupress-logs.php:602
+msgid "High"
+msgstr "Hoch"
+
+#: free/classes/common/class-secupress-logs.php:603
+#, php-format
+msgid "High (%s)"
+msgid_plural "High (%s)"
+msgstr[0] "Hoch (%s)"
+msgstr[1] "Hoch (%s)"
+
+#: free/classes/common/class-secupress-logs.php:610
+msgid "Normal"
+msgstr "Normal"
+
+#: free/classes/common/class-secupress-logs.php:611
+#, php-format
+msgid "Normal (%s)"
+msgid_plural "Normal (%s)"
+msgstr[0] "Normal (%s)"
+msgstr[1] "Normal (%s)"
+
+#: free/classes/common/class-secupress-logs.php:618
+msgid "Low"
+msgstr "Niedrig"
+
+#: free/classes/common/class-secupress-logs.php:619
+#, php-format
+msgid "Low (%s)"
+msgid_plural "Low (%s)"
+msgstr[0] "Niedrig (%s)"
+msgstr[1] "Niedrig (%s)"
+
+#: free/classes/common/class-secupress-logs.php:972
+#: free/classes/common/class-secupress-logs.php:987
+msgid "Logs deleted."
+msgstr "Protokolle gelöscht."
+
+#: free/classes/common/class-secupress-logs.php:1006
+#: free/classes/common/class-secupress-logs.php:1049
+#: free/classes/common/class-secupress-logs.php:1094
+#: free/classes/common/class-secupress-logs.php:1100
+#, php-format
+msgid "%s Log deleted."
+msgid_plural "%s Logs deleted."
+msgstr[0] "%s Protokoll gelöscht."
+msgstr[1] "%s Protokolle gelöscht."
+
+#: free/classes/common/class-secupress-logs.php:1011
+#: free/classes/common/class-secupress-logs.php:1030
+#: free/classes/common/class-secupress-logs.php:1055
+#: free/classes/common/class-secupress-logs.php:1075
+#: free/classes/common/class-secupress-logs.php:1106
+#: free/classes/common/class-secupress-logs.php:1132
+#, php-format
+msgid "%s log permanently deleted."
+msgid_plural "%s logs permanently deleted."
+msgstr[0] "%s Bericht unwiderruflich gelöscht."
+msgstr[1] "%s Berichte dauerhaft gelöscht."
+
+#: free/classes/common/class-secupress-logs.php:1158
+#: free/classes/common/class-secupress-logs.php:1179
+msgid "Log permanently deleted."
+msgstr "Protokoll dauerhaft gelöscht."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:43
+msgid "Check if the admin account is correctly protected."
+msgstr "Prüfe, ob das admin-Konto richtig geschützt ist."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:44
+msgid ""
+"It is important to protect the famous admin account to prevent "
+"simple brute-force attacks on it. This account is usually the first one "
+"created when you install WordPress, and it is well known by attackers."
+msgstr ""
+"Es ist wichtig, das berühmte admin-Konto zu schützen, um es vor "
+"einfachen Brute-Force-Angriffen zu schützen. Dieses Konto ist üblicherweise "
+"das erste, dass du bei der Installation von WordPress erstellst und ist bei "
+"Angreifern bestens bekannt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:47
+msgid "You will be asked for a new username and your account will be renamed."
+msgstr ""
+"Dazu wirst nach einem neuen Benutzernamen gefragt und dein Konto wird "
+"umbenannt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:49
+msgid ""
+"Remove all roles and capabilities from the admin account if it "
+"exists. If it does not exist and user subscriptions are open, the account "
+"will be created with no role nor capabilities."
+msgstr ""
+"Wenn ein admin-Konto besteht, entferne davon alle Rollen und "
+"Berechtigungen. Wenn es nicht besteht und Benutzer-Abonnements offen sind, "
+"wird das Konto ohne Rolle oder Berechtigung erstellt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:66
+#, php-format
+msgid "The %s account is correctly protected."
+msgstr "Das Konto %s ist richtig geschützt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:67
+#, php-format
+msgid "The %s account has no role anymore."
+msgstr "Das Konto %s hat keine Rolle mehr."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:69
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:61
+#: free/classes/scanners/class-secupress-scan-wp-config.php:84
+msgid ""
+"This fix is pending, please reload the page to apply it now."
+msgstr ""
+"Die Behebung ist ausstehend, bitte lade die Seite erneut, "
+"um es jetzt anzuwenden."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:71
+#, php-format
+msgid "The %s account should have no role at all."
+msgstr "Das Konto %s sollte überhaupt keine Rolle haben."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:72
+#, php-format
+msgid ""
+"Because user registrations are open, the %s account should exist (with no "
+"role) to prevent someone from registering it."
+msgstr ""
+"Weil die Benutzerregistrierung offen ist, sollte das Konto %s (ohne Rolle) "
+"bestehen, um zu vermeiden dass jemand es registriert."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:73
+#, php-format
+msgid "Sorry, the username %s is forbidden!"
+msgstr "Entschuldigung, der Benutzername %s ist verboten!"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:74
+msgid "Cannot create a user with an empty login name!"
+msgstr "Ich kann keinen Benutzer mit einem leeren Login-Namen erstellen!"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:75
+#, php-format
+msgid "Sorry, the username %s already exists!"
+msgstr "Entschuldigung, der Benutzername %s besteht bereits!"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:76
+#, php-format
+msgid ""
+"The username %1$s is invalid because it uses illegal characters. Spot the "
+"differences: %2$s."
+msgstr ""
+"Der Benutzername %1$s ist ungültig, weil er unerlaubte Zeichen beinhaltet. "
+"Hier die Unterschiede: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:77
+#, php-format
+msgid ""
+"Sorry, the role cannot be removed from the %s account. You should try to "
+"remove it manually."
+msgstr ""
+"Entschuldigung, die Rolle kann dem Konto %s nicht entzogen werden. Du "
+"solltest versuchen, es manuell zu entfernen."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:78
+#, php-format
+msgid ""
+"Sorry, the %s account could not be created. You should try to create it "
+"manually and then remove its role."
+msgstr ""
+"Entschuldigung, das Konto %s konnte nicht erstellt werden. Du solltest "
+"versuchen, es manuell zu erstellen und dann seine Rolle zu entziehen."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:80
+#, php-format
+msgid ""
+"Oh! The %s account is yours! Please choose a new login for your account in "
+"the next step."
+msgstr ""
+"Oh! Das Konto %s ist deins! Bitte wähle ein neues Login für dein Konto im "
+"nächsten Schritt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:84
+#: free/classes/scanners/class-secupress-scan-auto-update.php:103
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:70
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:120
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:72
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:106
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:78
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:105
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:78
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:72
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:110
+#: free/classes/scanners/class-secupress-scan-chmods.php:113
+#: free/classes/scanners/class-secupress-scan-core-update.php:77
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:76
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:99
+#: free/classes/scanners/class-secupress-scan-discloses.php:120
+#: free/classes/scanners/class-secupress-scan-easy-login.php:78
+#: free/classes/scanners/class-secupress-scan-https.php:160
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:85
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:66
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:89
+#: free/classes/scanners/class-secupress-scan-php-404.php:78
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:97
+#: free/classes/scanners/class-secupress-scan-phpversion.php:80
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:77
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:102
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:76
+#: free/classes/scanners/class-secupress-scan-shellshock.php:85
+#: free/classes/scanners/class-secupress-scan-sqli.php:78
+#: free/classes/scanners/class-secupress-scan-subscription.php:112
+#: free/classes/scanners/class-secupress-scan-themes-update.php:77
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:89
+#: free/classes/scanners/class-secupress-scan-wp-config.php:135
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:89
+#: free/classes/scanners/class-secupress-scan-wporg.php:82
+msgid "Unknown message"
+msgstr "Unbekannte Nachricht"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:101
+msgid "https://docs.secupress.me/article/132-admin-user-account-scan"
+msgstr "https://docs.secupress.me/article/132-admin-user-account-scan"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:313
+msgid "Choose a new login for your account:"
+msgstr "Wähle ein neues Login für dein Konto:"
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:314
+msgid "Your username will be renamed on the next page load."
+msgstr "Dein Benutzername wird mit Laden der nächsten Seite umbenannt."
+
+#: free/classes/scanners/class-secupress-scan-admin-user.php:316
+#: free/modules/users-login/plugins/blacklist-logins.php:251
+#, php-format
+msgid "Allowed characters: %s."
+msgstr "Erlaubte Zeichen: %s."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:41
+msgid ""
+"Check if your WordPress core can perform auto-updates for minor versions."
+msgstr ""
+"Prüfe, ob dein WordPress Core automatische Aktualisierungen für "
+"Nebenversionen durchführen kann."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:42
+msgid ""
+"When a minor update is released, WordPress can install it automatically. By "
+"doing so you are always up to date when a security flaw is discovered in the "
+"WordPress Core."
+msgstr ""
+"Wenn eine Nebenversion veröffentlicht wird, kann WordPress sie automatisch "
+"installieren. Dadurch bist du immer auf dem aktuellen Stand, wenn eine "
+"Sicherheitslücke im WordPress Core entdeckt wird."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:44
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:44
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:44
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:44
+#: free/classes/scanners/class-secupress-scan-php-404.php:44
+#: free/classes/scanners/class-secupress-scan-shellshock.php:47
+#: free/classes/scanners/class-secupress-scan-sqli.php:44
+#: free/classes/scanners/class-secupress-scan-subscription.php:61
+#, php-format
+msgid "Activate the option %1$s in the %2$s module."
+msgstr "Aktiviere die Option %1$s im Modul %2$s."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:45
+msgid "Minor updates"
+msgstr "Aktualisierung Nebenversionen"
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:46
+#: free/functions/modules.php:79
+msgid "WordPress Core"
+msgstr "WordPress Kern"
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:63
+msgid "Your installation can auto-update itself."
+msgstr ""
+"Deine Installation kann sich selbst automatisch aktualisieren"
+"strong>."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:64
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:64
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:70
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:60
+#: free/classes/scanners/class-secupress-scan-php-404.php:70
+#: free/classes/scanners/class-secupress-scan-sqli.php:70
+msgid "Protection activated"
+msgstr "Schutz aktiviert"
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:66
+msgid "Your installation cannot auto-update itself."
+msgstr ""
+"Deine Installation kann sich selbst nicht automatisch aktualisieren"
+"strong>."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:69
+#: free/classes/scanners/class-secupress-scan-auto-update.php:75
+#, php-format
+msgid "The following constant should not be set to %1$s: %2$s."
+msgid_plural "The following constants should not be set to %1$s: %2$s."
+msgstr[0] "Die folgende Konstante sollte nicht auf %1$s gesetzt werden: %2$s."
+msgstr[1] ""
+"Die folgenden Konstanten sollte nicht auf %1$s gesetzt werden: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:81
+#: free/classes/scanners/class-secupress-scan-auto-update.php:87
+#, php-format
+msgid "The following filter should not be used or set to return %1$s: %2$s."
+msgid_plural ""
+"The following filters should not be used or set to return %1$s: %2$s."
+msgstr[0] ""
+"Der folgende Filter sollte nicht verwendet oder so eingestellt werden, dass "
+"er %1$s zurückgibt: %2$s."
+msgstr[1] ""
+"Der folgenden Filter sollte nicht verwendet werden oder so eingestellt sein, "
+"dass er %1$s zurückgibt: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:93
+#: free/modules/wordpress-core/plugins/minor-updates.php:61
+#, php-format
+msgid ""
+"The %1$s file is not writable. Please remove the following code from the "
+"file: %2$s"
+msgstr ""
+"Die Datei %1$s ist nicht schreibbar. Bitte entferne aus der Datei folgenden "
+"Code: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:96
+#, php-format
+msgid ""
+"%1$s could not remove a constant definition from the %2$s file. Please "
+"remove the following line from the file: %3$s"
+msgid_plural ""
+"%1$s could not remove some constant definitions from the %2$s file. Please "
+"remove the following lines from the file: %3$s"
+msgstr[0] ""
+"%1$s konnte eine Konstantendefinition aus der Datei %2$s nicht entfernen. "
+"Bitte entferne die folgende Zeile aus der Datei: %3$s"
+msgstr[1] ""
+"%1$s konnte einige Konstanten-Definitionen nicht aus der Datei %2$s "
+"entfernen. Bitte entferne die folgenden Zeilen aus der Datei: %3$s"
+
+#: free/classes/scanners/class-secupress-scan-auto-update.php:120
+msgid "https://docs.secupress.me/article/98-automatic-updates-scan"
+msgstr "https://docs.secupress.me/article/98-automatic-updates-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:41
+msgid ""
+"Check if your installation contains backed up wp-config.php
"
+"files like wp-config.bak
, wp-config.old
etc."
+msgstr ""
+"Überprüfe, ob deine Installation gesicherte wp-config.php
"
+"Dateien wie wp-config.bak
, wp-config.old
usw. "
+"enthält."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:42
+msgid ""
+"Some attackers will try to find some backed up config files to try to steal "
+"them. Prevent this kind of attack simply by removing them."
+msgstr ""
+"Einige Angreifer werden versuchen, einige gesicherte Konfigurationsdateien "
+"zu finden, um sie zu stehlen. Verhindere diese Art von Angriffen, indem du "
+"sie einfach entfernst."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:43
+msgid ""
+"Rename all the wp-config.bak/.old
files using a random name and "
+"still using the .php
extension to prevent being downloaded."
+msgstr ""
+"Benenne alle Dateien mit einem zufälligen Namen um und verwende wp-"
+"config.bak/.old
weiterhin die .php
Erweiterung, um zu "
+"verhindern, dass sie heruntergeladen werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:59
+msgid "You don’t have backed up wp-config
files."
+msgstr "Du hast keine gesicherten wp-config
Dateien."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:60
+#, php-format
+msgid ""
+"Your backed up wp-config.php
file was successfully suffixed "
+"with %s."
+msgid_plural ""
+"Your backed up wp-config.php
files were successfully suffixed "
+"with %s."
+msgstr[0] ""
+"Die gesicherte wp-config.php
Datei wurde erfolgreich mit %sdem "
+"Suffix ."
+msgstr[1] ""
+"Deine gesicherten wp-config.php
Dateien wurden erfolgreich mit "
+"%sdem Suffix ."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:62
+#, php-format
+msgid ""
+"%1$d backed up wp-config.php
file was successfully suffixed "
+"with %2$s."
+msgid_plural ""
+"%1$d backed up wp-config.php
files were successfully suffixed "
+"with %2$s."
+msgstr[0] ""
+"%1$d Die gesicherte wp-config.php
Datei wurde erfolgreich mit "
+"%2$sdem Suffix ."
+msgstr[1] ""
+"%1$d Gesicherte wp-config.php
Dateien wurden erfolgreich mit "
+"%2$sdem Suffix ."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:63
+#, php-format
+msgid "Sorry, this file could not be renamed: %s"
+msgid_plural "Sorry, those files could not be renamed: %s"
+msgstr[0] "Diese Datei konnte leider nicht umbenannt werden: %s"
+msgstr[1] "Diese Dateien konnte leider nicht umbenannt werden: %s"
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:65
+#, php-format
+msgid ""
+"Your installation should not contain this backed up wp-config.php"
+"strong> file: %s."
+msgid_plural ""
+"Your installation should not contain these backed up wp-config.php"
+"strong> files: %s."
+msgstr[0] ""
+"Deine Installation sollte diese gesicherte wp-config.php-"
+"Datei nicht enthalten: %s."
+msgstr[1] ""
+"Deine Installation sollte diese gesicherten wp-config.php"
+"strong>Dateien nicht enthalten: %s."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:66
+msgid ""
+"Sorry, the backed up wp-config.php
file could not be renamed."
+msgid_plural ""
+"Sorry, the backed up wp-config.php
files could not be renamed."
+msgstr[0] ""
+"Leider konnte die gesicherte wp-config.php
Datei nicht "
+"umbenannt werden."
+msgstr[1] ""
+"Leider konnten die gesicherten wp-config.php
Dateien nicht "
+"umbenannt werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:87
+msgid "https://docs.secupress.me/article/96-wp-config-php-file-backups-scan"
+msgstr "https://docs.secupress.me/article/96-wp-config-php-file-backups-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-config-files.php:159
+msgid "a safe file extension"
+msgstr "Eine sichere Dateiendung"
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:64
+msgid ""
+"Check if there are files using bad extensions are accessible in the uploads "
+"folder."
+msgstr ""
+"Prüfe ob es im Uploads-Ordner zugängliche Dateien gibt, die schlechte "
+"Dateiendungen haben."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:65
+msgid ""
+"The uploads folder should only contain files like images, pdf, or zip "
+"archives. Other files should not be accessible by their URL."
+msgstr ""
+"Das Uploads-Verzeichnis sollte nur Dateien wie Bilder, pdf-Dateien oder .zip-"
+"Archive enthalten. Auf andere Dateien sollten nicht über ihre URL "
+"zugegriffen werden können."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:67
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:46
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:46
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:46
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:47
+#, php-format
+msgid "Activate the %1$s protection from the module %2$s."
+msgstr "Aktiviere den %1$s-Schutz vom Modul %2$s."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:68
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:95
+#: free/functions/modules.php:157
+#: free/modules/file-system/settings/bad-file-extensions.php:13
+#: pro/modules/file-system/plugins/bad-file-extensions.php:45
+#: pro/modules/file-system/plugins/bad-file-extensions.php:68
+msgid "Bad File Extensions"
+msgstr "Schlechte Dateiendung"
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:69
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:96
+#: free/functions/modules.php:145
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:140
+msgid "Malware Scan"
+msgstr "Malware-Scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:94
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:69
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:87
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:62
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:72
+#: free/classes/scanners/class-secupress-scan-discloses.php:79
+#: free/classes/scanners/class-secupress-scan-php-404.php:62
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:71
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:73
+#: free/classes/scanners/class-secupress-scan-shellshock.php:65
+#: free/classes/scanners/class-secupress-scan-sqli.php:62
+#: free/classes/scanners/class-secupress-scan-subscription.php:88
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:65
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:65
+#, php-format
+msgid "But you can activate the %1$s protection from the module %2$s."
+msgstr "Aber du kannst den %1$s-Schutz vom Modul %2$s aktivieren."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:101
+msgid "Files that use bad extensions are protected."
+msgstr "Dateien, die schlechte Dateiendungen verwenden, sind geschützt."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:103
+#, php-format
+msgid ""
+"The rules forbidding access to files that use bad extensions have been "
+"successfully added to your %s file."
+msgstr ""
+"Die Regeln, die den Zugriff auf Dateien mit schlechten Endungen verbieten, "
+"wurden erfolgreich zu deiner %s-Datei hinzugefügt."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:105
+msgid "Unable to determine the status of the bad file extensions test file."
+msgstr ""
+"Es ist nicht möglich, den Status der Testdatei mit schlechter Dateiendung zu "
+"ermitteln."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:107
+msgid "Could not create a bad extension test file in the uploads folder."
+msgstr ""
+"Konnte im Uploads-Ordner kein Testdatei mit schlechter Dateiendung erstellen."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:108
+msgid ""
+"Whether or not you have files using bad extensions in the uploads folder, "
+"those files are accessible directly."
+msgstr ""
+"Auf deine Dateien im Upload-Ordner kann direkt zugegriffen werden, ob sie "
+"eine schlechte Dateiendung haben oder nicht."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:111
+#, php-format
+msgid ""
+"Your server runs Nginx, the files that use bad extensions "
+"cannot be protected automatically but you can do it yourself by adding the "
+"following code to your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Dateien mit schlechten "
+"Dateiendungen können nicht automatisch geschützt werden, aber du kannst sie "
+"selber schützen, indem du folgenden Code in deiner %1$s-Datei hinzufügst: "
+"%2$s"
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:112
+msgid ""
+"Your server runs an unrecognized system. The files that use bad extensions "
+"cannot be protected automatically."
+msgstr ""
+"Dein Webserver läuft mit einem nicht erkannten System. Die Dateien mit "
+"schlechten Dateiendungen können nicht automatisch geschützt werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:116
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:101
+#: free/classes/scanners/class-secupress-scan-discloses.php:104
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:93
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:98
+#: free/functions/modules.php:711
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please add the following lines inside the "
+"tags hierarchy %2$s (create it if does not exist): %3$s"
+msgstr ""
+"Deine %1$s-Datei ist nicht beschreibbar. Bitte füge die folgenden Zeilen "
+"innerhalb der Tag-Hierarchie %2$s ein (erstellen, falls nicht vorhanden): "
+"%3$s"
+
+#: free/classes/scanners/class-secupress-scan-bad-file-extensions.php:137
+msgid "https://docs.secupress.me/article/124-bad-file-extension-scan"
+msgstr "https://docs.secupress.me/article/124-bad-file-extension-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:43
+msgid "Check if your installation still contains old WordPress files."
+msgstr "Überprüfe, ob deine Installation noch alte WordPress-Dateien enthält."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:44
+#, php-format
+msgid ""
+"Since WordPress 2.0, about %s files were deleted, let’s check if your "
+"website needs a clean up."
+msgstr ""
+"Seit WordPress 2.0 wurden etwa %s Dateien gelöscht, lasse uns prüfen, ob "
+"deine Website eine Bereinigung benötigt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:45
+msgid "Delete all old files because your actual installation does not need it."
+msgstr ""
+"Lösche alle alten Dateien, weil deine eigentliche Installation sie nicht "
+"benötigt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:63
+msgid "Your installation is free of old files."
+msgstr "Deine Installation ist frei von alten Dateien."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:64
+msgid "All old files have been deleted."
+msgstr "Alle alten Dateien wurden gelöscht."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:67
+#, php-format
+msgid "Your installation contains %1$d old file: %2$s."
+msgid_plural ""
+"Your installation contains %1$d old files: %2$s."
+msgstr[0] "Deine Installation enthält %1$d alte Datei: %2$s."
+msgstr[1] ""
+"Deine Installation enthält %1$d alte Dateien: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:68
+#, php-format
+msgid "The following file could not be deleted: %s."
+msgid_plural "The following files could not be deleted: %s."
+msgstr[0] "Die folgende Datei konnte nicht gelöscht werden: %s."
+msgstr[1] "Die folgenden Dateien konnten nicht gelöscht werden: %s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-files.php:89
+msgid "https://docs.secupress.me/article/97-legacy-files-scan"
+msgstr "https://docs.secupress.me/article/97-legacy-files-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:41
+msgid ""
+"Check if you are using plugins that have been deleted from the official "
+"repository or have not been updated for at least two years."
+msgstr ""
+"Prüfe ob du Plugins verwendest, die aus dem offiziellen Plugin-Verzeichnis "
+"entfernt oder seit mindestens zwei Jahren nicht mehr aktualisiert wurden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:42
+msgid ""
+"Do not use a plugin that has been removed from the official repository, and "
+"prevent usage of plugins that have not been maintained for two years at "
+"least."
+msgstr ""
+"Verwende kein Plugin, das aus dem offiziellen Repository entfernt wurde und "
+"verhindere die Verwendung von Plugins, die mindestens zwei Jahre lang nicht "
+"gewartet wurden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:45
+msgid "Select removed and old plugins to be deleted."
+msgstr "Wähle entfernte und alte Plugins aus, die gelöscht werden sollen."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:46
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:53
+msgid "Not fixable on Multisite."
+msgstr "Auf Multisite nicht behebbar."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:49
+msgid "Select and delete removed and old plugins."
+msgstr "Wähle und lösche entfernte und alte Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:51
+msgid "Deactivate removed and old plugins."
+msgstr "Deaktiviere entfernte und alte Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:68
+msgid "You don’t use removed or old plugins."
+msgstr "Du verwendest keine entfernten oder alten Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:69
+msgid "You don’t use removed or old plugins anymore."
+msgstr "Du verwendest keine entfernten oder alten Plugins mehr."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:70
+msgid "All removed or old plugins have been deleted."
+msgstr "Alle entfernten oder alten Plugins sind gelöscht worden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:71
+msgid "All deletable removed or old plugins have been deleted."
+msgstr "Alle löschbaren entfernten oder alten Plugins wurden entfernt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:72
+msgid "All removed or old plugins have been deactivated."
+msgstr "Alle entfernten oder alten Plugins sind deaktiviert worden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:75
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:82
+#, php-format
+msgid "Error, could not read %s."
+msgstr "Fehler, konnte %s nicht lesen."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:76
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:83
+msgid "No plugins selected for deletion."
+msgstr "Keine Plugins zur Löschung ausgewählt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:77
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:84
+msgid "Selected plugin has been deleted (but some are still there)."
+msgid_plural ""
+"All selected plugins have been deleted (but some are still there)."
+msgstr[0] ""
+"Ausgewähltes Plugin wurde gelöscht (aber einige sind noch vorhanden)."
+msgstr[1] ""
+"Alle ausgewählten Plugins wurden gelöscht (aber einige sind noch vorhanden)."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:78
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:85
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:65
+#, php-format
+msgid "Sorry, the following plugin could not be deleted: %s."
+msgid_plural "Sorry, the following plugins could not be deleted: %s."
+msgstr[0] ""
+"Entschuldigung, das folgende Plugin konnte nicht gelöscht werden: %s."
+msgstr[1] ""
+"Entschuldigung, die folgende Plugins konnten nicht gelöscht werden: %s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:79
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:86
+msgid "No plugins selected for deactivation."
+msgstr "Keine Plugins zur Deaktivierung ausgewählt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:80
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:87
+msgid "Selected plugin has been deactivated (but some are still there)."
+msgid_plural ""
+"All selected plugins have been deactivated (but some are still there)."
+msgstr[0] ""
+"Ausgewählte Plugins wurden deaktiviert (einige sind aber noch vorhanden)."
+msgstr[1] ""
+"Alle ausgewählten Plugins wurden deaktiviert (einige sind aber noch "
+"vorhanden)."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:81
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:88
+#, php-format
+msgid "Sorry, the following plugin could not be deactivated: %s."
+msgid_plural "Sorry, the following plugins could not be deactivated: %s."
+msgstr[0] "Leider konnte das folgende Plugin nicht deaktiviert werden: %s."
+msgstr[1] "Leider konnten die folgenden Plugins nicht deaktiviert werden: %s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:83
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:70
+#: free/classes/scanners/class-secupress-scan-subscription.php:101
+#, php-format
+msgid ""
+"You have a big network, %s must work on some data before being able to "
+"perform this scan."
+msgstr ""
+"Du hast ein großes Netzwerk, %s muss an einigen Daten arbeiten, bevor dieser "
+"Scan durchgeführt werden kann."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:86
+#, php-format
+msgid ""
+"%1$d plugin is no longer in the WordPress directory: %2$s."
+msgid_plural ""
+"%1$d plugins are no longer in the WordPress directory: %2$s."
+msgstr[0] ""
+"%1$d Plugin befindet sich nicht mehr im WordPress-"
+"Verzeichnis: %2$s."
+msgstr[1] ""
+"%1$d Plugins befinden sich nicht mehr im WordPress-"
+"Verzeichnis: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:88
+#, php-format
+msgid ""
+"%1$d plugin has not been updated for at least 2 years: %2$s."
+msgid_plural ""
+"%1$d plugins have not been updated for at least 2 years: "
+"%2$s."
+msgstr[0] ""
+"%1$d Das Plugin wurde seit mindestens 2 Jahren nicht mehr "
+"aktualisiert: %2$s."
+msgstr[1] ""
+"%1$d Plugins wurden seit mindestens 2 Jahren nicht mehr "
+"aktualisiert: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:90
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:93
+#, php-format
+msgid "You should delete the plugin %s."
+msgstr "Du solltest das Plugin %s löschen."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:91
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:94
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:74
+msgid "Sorry, this plugin could not be deleted."
+msgid_plural "Sorry, those plugins could not be deleted."
+msgstr[0] "Sorry, dieses Plugin konnte nicht gelöscht werden."
+msgstr[1] "Sorry, diese Plugins konnten nicht gelöscht werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:92
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:95
+#, php-format
+msgid "The following plugin should be deactivated if you don’t need it: %s."
+msgid_plural ""
+"The following plugins should be deactivated if you don’t need them: %s."
+msgstr[0] ""
+"Das folgende Plugin sollte deaktiviert werden, wenn du es nicht benötigst: "
+"%s."
+msgstr[1] ""
+"Die folgenden Plugins sollten deaktiviert werden, wenn du sie nicht "
+"benötigst %s."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:93
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:96
+msgid "Sorry, this plugin could not be deactivated."
+msgid_plural "Sorry, those plugins could not be deactivated."
+msgstr[0] "Sorry, dieses Plugin konnte nicht deaktiviert werden."
+msgstr[1] "Diese Plugins konnten leider nicht deaktiviert werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:96
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:100
+#, php-format
+msgid "%d plugin can be deleted."
+msgid_plural "%d plugins can be deleted."
+msgstr[0] "%d Plugin kann gelöschtwerden ."
+msgstr[1] ""
+"%d Plugins können gelöschtwerden ."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:98
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:102
+#, php-format
+msgid "%d plugin can be deactivated."
+msgid_plural "%d plugins can be deactivated."
+msgstr[0] ""
+"%d Plugin kann deaktiviertwerden ."
+msgstr[1] ""
+"%d Plugins können deaktiviertwerden ."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:99
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:103
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:79
+msgid "Unable to locate WordPress Plugin directory."
+msgstr "Es ist nicht möglich, das WordPress Plugin-Verzeichnis zu finden."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:101
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:105
+#, php-format
+msgid ""
+"A new %s menu item has been activated in the relevant site’s administration "
+"area to let Administrators know which plugins to deactivate."
+msgstr ""
+"Im Administrationsbereich der jeweiligen Website wurde ein neuer %sMenüpunkt "
+"aktiviert, um Administratoren darüber zu informieren, welche Plugins "
+"deaktiviert werden sollen."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:102
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:106
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:63
+msgid "No plugins selected."
+msgstr "Keine Plugins ausgewählt."
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:123
+msgid "https://docs.secupress.me/article/117-outdated-and-bad-plugin-check"
+msgstr "https://docs.secupress.me/article/117-outdated-and-bad-plugin-check"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:529
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:458
+msgid "Checked plugins will be deleted:"
+msgstr "Ausgewählte Plugins werden gelöscht:"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:539
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:567
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:468
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:504
+msgid "symlinked"
+msgstr "verknüpft"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:552
+msgid "Checked plugins will be deactivated:"
+msgstr "Ausgewählte Plugins werden deaktiviert:"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:554
+msgid "Checked plugins will be deactivated by Administrators:"
+msgstr "Ausgewählte Plugins werden von Administratoren deaktiviert:"
+
+#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:555
+msgid ""
+"The following plugin is activated in some of your sites and must be "
+"deactivated first. Administrators will be asked to do so."
+msgid_plural ""
+"The following plugins are activated in some of your sites and must be "
+"deactivated first. Administrators will be asked to do so."
+msgstr[0] ""
+"Das folgende Plugin ist in einigen deiner Sites aktiviert und muss zunächst "
+"deaktiviert werden. Die Administratoren werden dazu aufgefordert."
+msgstr[1] ""
+"Die folgenden Plugins sind in einigen deiner Sites aktiviert und müssen "
+"zunächst deaktiviert werden. Die Administratoren werden dazu aufgefordert."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:41
+msgid "Check if bad request methods can access your website."
+msgstr ""
+"Überprüfe, ob über schlechte Abfragemethoden auf deine Website zugegriffen "
+"werden kann."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:42
+msgid ""
+"There are malicious scripts and bots out there, hammering your site with bad "
+"HTTP GET requests. Let’s check if your website can handle that."
+msgstr ""
+"Es gibt bösartige Skripte und Bots, die deine Website mit schlechten HTTP-"
+"GET-Anfragen überhäufen. Lasse uns prüfen, ob deine Website damit umgehen "
+"kann."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:45
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:70
+#: free/functions/modules.php:128
+#: free/modules/firewall/settings/bbq-headers.php:44
+msgid "Block Bad Request Methods"
+msgstr "Blockiere schlechte Anfragemethoden"
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:63
+msgid "You are currently blocking bad request methods."
+msgstr "Du blockierst gerade schlechte Anfragemethoden."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:66
+#, php-format
+msgid "Unable to determine the status of your homepage for %s request method."
+msgid_plural ""
+"Unable to determine the status of your homepage for %s request methods."
+msgstr[0] ""
+"Es ist nicht möglich, den Status deiner Homepage für %s Anfragemethode zu "
+"bestimmen."
+msgstr[1] ""
+"Der Status deiner Homepage für %s Anforderungsmethoden konnte nicht "
+"ermittelt werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:74
+#, php-format
+msgid "Your website should block %s request method."
+msgid_plural "Your website should block %s request methods."
+msgstr[0] "Deine Website sollte die Anfragemethode %s blockieren."
+msgstr[1] "Deine Website sollte %s Anforderungsmethoden blockieren."
+
+#: free/classes/scanners/class-secupress-scan-bad-request-methods.php:95
+msgid "https://docs.secupress.me/article/112-bad-request-method-scan"
+msgstr "https://docs.secupress.me/article/112-bad-request-method-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:43
+msgid ""
+"Check if any of your WordPress files disclose your site’s internal path."
+msgstr ""
+"Überprüfe, ob eine deiner WordPress-Dateien den internen Pfad deiner Website "
+"preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:44
+#: free/classes/scanners/class-secupress-scan-discloses.php:45
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:45
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:43
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:43
+msgid ""
+"When an attacker wants to hack into a WordPress site, they will search for "
+"all available informations. The goal is to find something useful that will "
+"help him penetrate your site. Don’t let them easily find any informations."
+msgstr ""
+"Wenn sich ein Angreifer in eine WordPress-Seite hacken möchte, sucht er nach "
+"allen verfügbaren Informationen. Das Ziel ist es, etwas Nützliches zu "
+"finden, das ihm hilft, in deine Website einzudringen. Lasse es nicht zu, so "
+"leicht Informationen zu finden."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:47
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:88
+#: free/functions/modules.php:115
+#: free/modules/sensitive-data/plugins/bad-url-access.php:49
+#: free/modules/sensitive-data/plugins/bad-url-access.php:74
+#: free/modules/sensitive-data/plugins/bad-url-access.php:146
+#: free/modules/sensitive-data/plugins/bad-url-access.php:166
+#: free/modules/sensitive-data/settings/content-protect.php:351
+#: free/modules/sensitive-data/settings/content-protect.php:500
+msgid "Bad URL Access"
+msgstr "Schlechter URL-Zugriff"
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:48
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:89
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:48
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:74
+#: free/classes/scanners/class-secupress-scan-discloses.php:50
+#: free/classes/scanners/class-secupress-scan-discloses.php:76
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:48
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:73
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:49
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:75
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:49
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:67
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:49
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:67
+#: free/functions/modules.php:100
+msgid "Sensitive Data"
+msgstr "Sensible Daten"
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:75
+msgid "Your site does not reveal your site’s internal path."
+msgstr "Deine Website gibt den internen Pfad deiner Website nicht preis."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:77
+#, php-format
+msgid ""
+"Rules preventing disclosure of your site’s internal path disclosure have "
+"been added to your %s file."
+msgstr ""
+"Regeln, die die Offenlegung des internen Pfads deiner Website verhindern, "
+"wurden deiner %sDatei hinzugefügt."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:81
+#, php-format
+msgid "Unable to determine if %s is accessible."
+msgid_plural "Unable to determine if %s are accessible."
+msgstr[0] "Kann nicht feststellen, ob %s zugänglich ist."
+msgstr[1] "Es konnte nicht ermittelt werden, ob %s zugänglich sind."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:93
+#, php-format
+msgid "%s should not be accessible by anyone."
+msgid_plural "%s should not be accessible by anyone."
+msgstr[0] "%s sollte für niemanden zugänglich sein."
+msgstr[1] "%s sollte für niemanden zugänglich sein."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:96
+#, php-format
+msgid ""
+"Your server runs Nginx, the files that disclose your site’s "
+"internal path cannot be protected automatically but you can do it yourself "
+"by adding the following code to your %1$s file: %2$s"
+msgstr ""
+"Auf deinem Server läuft Nginx, die Dateien, die den "
+"internen Pfad deiner Website offenlegen, können nicht automatisch geschützt "
+"werden, aber du kannst dies selbst tun, indem du den folgenden Code zu "
+"deiner %1$s Datei hinzufügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:97
+msgid ""
+"Your server runs an unrecognized system. The files that disclose your site’s "
+"internal path cannot be protected automatically."
+msgstr ""
+"Auf deinem Server wird ein unbekanntes System ausgeführt. Die Dateien, die "
+"den internen Pfad deiner Website offenlegen, können nicht automatisch "
+"geschützt werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-url-access.php:122
+msgid "https://docs.secupress.me/article/107-sensitive-files-access-scan"
+msgstr "https://docs.secupress.me/article/107-sensitive-files-access-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:41
+msgid "Check if bad User Agents can visit your website."
+msgstr "Prüfe of schlechte User Agents deine Website besuchen können."
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:42
+msgid ""
+"Bad User Agents are bots that provide no value to the website. They include "
+"scrapers, spambots, email harvesters and more bots that you don’t want on "
+"your site. Those bots that are crawling with a malicious purpose, have no "
+"desire to follow any robots.txt
or meta tag."
+msgstr ""
+"Bad User Agents sind Bots, die der Website keinen Mehrwert bieten. Dazu "
+"gehören Scraper, Spambots, E-Mail-Harvester und weitere Bots, die du nicht "
+"auf deiner Website haben möchten. Diejenigen Bots, die mit einem böswilligen "
+"Zweck crawlen, haben keine Lust, einem oder Meta-Tag robots.txt
"
+"zu folgen."
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:45
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:63
+msgid "Block bad User Agents"
+msgstr "Blockiere schlechte User Agents"
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:69
+msgid "You are currently blocking bad User Agents."
+msgstr "Du blockierst gegenwärtig schlechte User Agents."
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:72
+msgid "Unable to determine if your homepage is accessible by bad User Agents."
+msgstr ""
+"Es ist nicht möglich, festzustellen ob deine Homepage für schlechte User "
+"Agents zugänglich ist."
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:74
+msgid ""
+"Your website should block HTTP
requests for bad User "
+"Agents."
+msgstr ""
+"Deine Website sollte HTTP
-Anfragen für schlechte User "
+"Agents blockieren."
+
+#: free/classes/scanners/class-secupress-scan-bad-user-agent.php:95
+msgid "https://docs.secupress.me/article/108-bad-user-agent-scan"
+msgstr "https://docs.secupress.me/article/108-bad-user-agent-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:41
+msgid "Check if your usernames are disallowed."
+msgstr "Überprüfe, ob deine Benutzernamen nicht zulässig sind."
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:42
+msgid ""
+"Some usernames are known to be used for malicious usage, or created by bots."
+msgstr ""
+"Einige Benutzernamen sind dafür bekannt, dass sie für böswillige Zwecke "
+"verwendet oder von Bots erzeugt werden."
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:45
+#: free/functions/modules.php:51
+#: free/modules/users-login/settings/blacklist-logins.php:27
+msgid "Forbid Usernames"
+msgstr "Benutzernamen verbieten"
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:46
+#: free/classes/scanners/class-secupress-scan-easy-login.php:53
+#: free/classes/scanners/class-secupress-scan-subscription.php:63
+#: free/classes/scanners/class-secupress-scan-subscription.php:90
+msgid "Users & Login"
+msgstr "Benutzer & Login"
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:63
+msgid "All the usernames are correct."
+msgstr "Alle Benutzernamen sind korrekt."
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:64
+msgid ""
+"Module activated: the users with a disallowed username will be asked to "
+"change it."
+msgstr ""
+"Modul aktiviert: Benutzer mit einem nicht zulässigen Benutzernamen werden "
+"aufgefordert, diesen zu ändern."
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:66
+#, php-format
+msgid "%1$s user has a disallowed username: %2$s"
+msgid_plural "%1$s users have a disallowed username: %2$s"
+msgstr[0] ""
+"%1$s Der Benutzer hat einen unzulässigen Benutzernamen: %2$s"
+msgstr[1] ""
+"%1$s Benutzer haben einen unzulässigen Benutzernamen: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:68
+msgid ""
+"The module is already activated. Let’s give your users some time to change "
+"their username."
+msgstr ""
+"Das Modul ist bereits aktiviert. Gebe deinen Benutzern etwas Zeit, um ihren "
+"Benutzernamen zu ändern."
+
+#: free/classes/scanners/class-secupress-scan-bad-usernames.php:89
+msgid "https://docs.secupress.me/article/133-bad-username-scan"
+msgstr "https://docs.secupress.me/article/133-bad-username-scan"
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:48
+msgid "Check if you are using plugins known to be vulnerable."
+msgstr "Prüfe, ob du bekanntermaßen anfällige Plugins verwendest."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:49
+msgid ""
+"Never use a plugin with a known vulnerability, you should update or remove "
+"it as soon as possible!"
+msgstr ""
+"Verwende nie ein Plugin mit einer bekannten Schwachstelle. Du solltest es "
+"schnellstmöglich aktualisieren oder entfernen!"
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:52
+msgid "Select and delete vulnerable plugins."
+msgstr "Wähle und lösche anfällige Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:56
+msgid "Delete vulnerable plugins."
+msgstr "Lösche anfällige Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:58
+msgid "Deactivate vulnerable plugins."
+msgstr "Deaktiviere anfällige Plugins."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:75
+msgid "You don’t use plugins known to be vulnerable."
+msgstr ""
+"Du verwendest keine Plugins, von denen bekannt ist, dass sie anfällig sind."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:76
+msgid "You don’t use plugins known to be vulnerable anymore."
+msgstr ""
+"Du verwendest keine Plugins mehr, von denen bekannt ist, dass sie anfällig "
+"sind."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:77
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:78
+msgid "All plugins known to be vulnerable have been deleted."
+msgstr "Alle Plugins, die bekanntermaßen anfällig sind, wurden gelöscht."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:79
+msgid "All plugins known to be vulnerable have been deactivated."
+msgstr "Alle Plugins, die bekanntermaßen anfällig sind, wurden deaktiviert."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:91
+#, php-format
+msgid "%1$d plugin is known to be vulnerable: %2$s."
+msgid_plural "%1$d plugins are known to be vulnerable: %2$s."
+msgstr[0] ""
+"%1$d Es ist bekannt, dass das Plugin verwundbar ist: %2$s."
+msgstr[1] ""
+"%1$d Es ist bekannt, dass Plugins verwundbar sind: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:97
+msgid ""
+"Your installation may contain vulnerable plugins. The PRO version will be "
+"more accurate."
+msgstr ""
+"Deine Installation kann verwundbare Plugins enthalten. Die PRO-Version wird "
+"genauer sein."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:127
+msgid "https://docs.secupress.me/article/121-vulnerable-plugins-check"
+msgstr "https://docs.secupress.me/article/121-vulnerable-plugins-check"
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:70
+msgid ""
+"Check if your files and folders have the correct write permissions (chmod)."
+msgstr ""
+"Prüfe, ob deine Dateien und Verzeichnisse die richtigen "
+"Schreibberechtigungen haben (chmod)."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:71
+msgid ""
+"CHMOD is the way to give read/write/execute rights to a file or a folder. "
+"This test will check some strategic files and folders."
+msgstr ""
+"CHMOD ist der Weg, um einer Datei oder einem Ordner Lese-/Schreib-/"
+"Ausführungsrechte zu erteilen. Bei diesem Test werden einige strategische "
+"Dateien und Ordner überprüft."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:72
+msgid "Change the files permissions to the recommended one for each."
+msgstr "Ändere die Dateirechte für jede in den empfohlenen Wert."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:88
+msgid "All file permissions are good."
+msgstr "Alle Dateirechte sind in Ordnung."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:89
+msgid "All file permissions are fixed."
+msgstr "Alle Dateirechte wurden repariert."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:91
+#, php-format
+msgid "Unable to determine the file permissions of %s."
+msgstr "Es ist nicht möglich, die Dateirechte von %s festzustellen."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:94
+#, php-format
+msgctxt "secupress"
+msgid ""
+"File permissions for the following folder should be %1$s: "
+"%2$s."
+msgid_plural ""
+"File permissions for the following folders should be %1$s: "
+"%2$s."
+msgstr[0] ""
+"Die Dateiberechtigungen für den folgenden Ordner sollten %1$s"
+"strong> sein: %2$s."
+msgstr[1] ""
+"Die Dateiberechtigungen für die folgenden Ordner sollten %1$s"
+"strong> sein: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:100
+#, php-format
+msgctxt "secupress"
+msgid ""
+"File permissions for the following file should be %1$s: "
+"%2$s."
+msgid_plural ""
+"File permissions for the following files should be %1$s: "
+"%2$s."
+msgstr[0] ""
+"Die Dateiberechtigungen für die folgende Datei sollten %1$s "
+"sein: %2$s."
+msgstr[1] ""
+"Die Dateiberechtigungen für die folgenden Dateien sollten %1$s"
+"strong> sein: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:106
+#, php-format
+msgid "Unable to apply new permissions to the file or folder %s."
+msgid_plural "Unable to apply new permissions to the files or folders %s."
+msgstr[0] ""
+"Es ist nicht möglich, neue Berechtigungen auf die Dateien oder Ordner %s "
+"anzuwenden."
+msgstr[1] ""
+"Impossible d’appliquer les nouveaux droits sur les fichiers ou dossiers %s."
+
+#: free/classes/scanners/class-secupress-scan-chmods.php:130
+msgid "https://docs.secupress.me/article/125-file-permission-scan"
+msgstr "https://docs.secupress.me/article/125-file-permission-scan"
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:48
+msgid "Check if your WordPress core is up to date."
+msgstr "Prüfe, ob dein WordPress Core aktuell ist."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:49
+msgid ""
+"It’s very important to keep your WordPress installation up to date. If you "
+"cannot update for any reason, contact your hosting provider as soon as "
+"possible."
+msgstr ""
+"Es ist sehr wichtig, deine WordPress-Installation auf dem neuesten Stand zu "
+"halten. Wenn du sie aus irgendeinem Grund nicht aktualisieren kannst, dann "
+"wende dich so schnell wie möglich an deinen Hostinganbieter."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:50
+msgid "Update your WordPress installation right away."
+msgstr "Aktualisiere direkt deine WordPress-Installation."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:66
+msgid "WordPress core is up to date."
+msgstr "Der WordPress Core ist aktuell."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:67
+#, php-format
+msgid "WordPress has been updated to version %s."
+msgstr "WordPress wurde auf Version %s aktualisiert."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:70
+msgid "WordPress core is not up to date."
+msgstr "Der WordPress Core ist nicht aktuell."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:73
+msgid "You have the latest version of WordPress."
+msgstr "Du hast die neueste Version von WordPress."
+
+#: free/classes/scanners/class-secupress-scan-core-update.php:94
+msgid "https://docs.secupress.me/article/95-wordpress-core-update-scan"
+msgstr "https://docs.secupress.me/article/95-wordpress-core-update-scan"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:47
+msgid "Check if your database tables prefix is correct."
+msgstr "Prüfe ob dein Datenbank-Tabellenpräfix stimmt."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:48
+msgid ""
+"Avoid the use of wp_
or wordpress_
as database "
+"tables prefix to improve your security."
+msgstr ""
+"Vermeide zur Verbesserung deiner Sicherheit die Verwendung von wp_"
+"code> oder wordpress_
als Datenbank-Tabellenpräfix."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:49
+msgid ""
+"Rename all your database table names, then update your configuration with a "
+"new and more secure one."
+msgstr ""
+"Benenne die Namen all deiner Datenbank-Tabellen um, dann aktualisiere deine "
+"Konfiguration mit einer neuen und sichereren."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:65
+msgid "Your database tables prefix is correct."
+msgstr "Dein Datenbank-Tabellenpräfix ist korrekt."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:67
+#, php-format
+msgid ""
+"The database tables prefix should not be %s. Choose something else besides "
+"wp_
or wordpress_
, they are too easy to guess."
+msgstr ""
+"Das Datenbank-Tabellenpräfix sollte nicht %s sein. Wähle etwas anderes als "
+"wp_
oder wordpress_
, das ist zu einfach zu erraten."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:69
+msgid ""
+"The database user cannot alter tables and so the database tables prefix "
+"could not be changed."
+msgstr ""
+"Der Datenbank-Benutzer kann nicht Tabellen verändern und daher konnte das "
+"Tabellenpräfix nicht geändert werden."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:70
+#, php-format
+msgid ""
+"The %s
file is not writable, so the database tables prefix "
+"cannot be changed."
+msgstr ""
+"Die %s
-Datei ist nicht beschreibbar, so dass das Präfix der "
+"Datenbanktabellen nicht geändert werden kann."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:71
+msgid ""
+"The database user seems to have to correct rights, but the database tables "
+"prefix could still not be changed."
+msgstr ""
+"Der Datenbank-Benutzer scheint die richtigen Benutzerrechte zu haben, das "
+"Datenbank-Tabellenpräfix konnte trotzdem nicht geändert werden."
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:72
+msgid "Too many database tables found, so which ones to rename?!"
+msgstr "Zu viele Datenbank-Tabellen gefunden, welche sollen umbenannt werden?!"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:93
+msgid "https://docs.secupress.me/article/99-database-table-prefix-scan"
+msgstr "https://docs.secupress.me/article/99-database-table-prefix-scan"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:322
+msgid "Checked tables will be renamed:"
+msgstr "Die ausgewählten Tabellen werden umbenannt:"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:329
+#: pro/admin/settings.php:520
+msgid "Unknown tables"
+msgstr "Unbekannte Tabellen"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:336
+#: free/classes/settings/class-secupress-settings.php:940
+#: pro/admin/settings.php:546
+msgid "WordPress tables (mandatory)"
+msgstr "WordPress-Tabellen (obligatorisch)"
+
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:352
+#: free/classes/scanners/class-secupress-scan-db-prefix.php:353
+#, php-format
+msgid "Please read the documentation."
+msgstr "Bitte lese die Dokumentation."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:43
+msgid ""
+"Check if your server lists the files in a directory (known as Directory "
+"Listing)."
+msgstr ""
+"Prüfe ob dein Server die Dateien in einem Verzeichnis auflistet (bekannt als "
+"Directory Listing)."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:44
+msgid ""
+"Without the appropriate protection anybody could browse your site’s files. "
+"While browsing some of your files might not be a security risk, most of them "
+"are sensitive."
+msgstr ""
+"Ohne den entsprechenden Schutz könnte jeder die Dateien deiner Website "
+"durchsuchen. Während das Durchsuchen einiger deiner Dateien möglicherweise "
+"kein Sicherheitsrisiko darstellt, sind die meisten von ihnen sensibel."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:47
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:73
+#: free/functions/modules.php:111
+#: free/modules/sensitive-data/plugins/directory-listing.php:46
+#: free/modules/sensitive-data/plugins/directory-listing.php:86
+#: free/modules/sensitive-data/settings/content-protect.php:121
+msgid "Directory Listing"
+msgstr "Verzeichnislisten"
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:79
+msgid "Your site does not reveal the files list."
+msgstr "Deine Website stellt keine Dateilisten dar."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:81
+#, php-format
+msgid ""
+"The rules forbidding access to directory listing have been successfully "
+"added to your %s file."
+msgstr ""
+"Regeln, die den Zugriff auf Verzeichnislisten verbieten, wurden erfolgreich "
+"deiner Datei %s hinzugefügt."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:84
+#, php-format
+msgid "Unable to determine the status of %1$s to read the directory listing."
+msgstr ""
+"Es ist nicht möglich, das Lesen von Verzeichnislisten von %1$s zu ermitteln."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:87
+#, php-format
+msgid ""
+"%s (for example) should not be accessible to anyone because of directory "
+"listing."
+msgstr ""
+"%s sollte (zum Beispiel) nicht wegen einer Verzeichnisliste für jeden "
+"zugänglich sein."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:90
+#, php-format
+msgid ""
+"Your server runs Nginx, the directory listing disclosure "
+"cannot be fixed automatically but you can do it yourself by adding the "
+"following code to your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Ausgabe von "
+"Verzeichnislisten kann nicht automatisch behoben werden, aber du kannst es "
+"selber beheben, in dem du folgenden Code in deine %1$s einfügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:91
+msgid ""
+"Your server runs an unrecognized system. The directory listing disclosure "
+"cannot be fixed automatically."
+msgstr ""
+"Dein Webserver läuft mit einem nicht erkannten System. Die Ausgabe von "
+"Verzeichnislisten konnte nicht automatisch behoben werden."
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:95
+#: free/functions/modules.php:702
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please remove any previous %2$s tag and add "
+"the following lines inside the tags hierarchy %3$s (create it if does not "
+"exist): %4$s"
+msgstr ""
+"Deine %1$s-Datei ist nicht beschreibbar. Bitte entferne jedes vorherige %2$s-"
+"Tag und füge die folgenden Zeilen innerhalb der Tag-Hierarchie %3$s ein "
+"(erstellen, falls nicht vorhanden): %4$s"
+
+#: free/classes/scanners/class-secupress-scan-directory-listing.php:116
+msgid "https://docs.secupress.me/article/126-index-listing-scan"
+msgstr "https://docs.secupress.me/article/126-index-listing-scan"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:44
+msgid ""
+"Check if your site discloses your WordPress version and your server’s PHP "
+"version."
+msgstr ""
+"Überprüfe, ob deine Website deine WordPress-Version und die PHP-Version "
+"deines Servers offenlegt."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:47
+#, php-format
+msgid ""
+"Activate the %1$s protection and/or the %2$s protection from the module %3$s."
+msgstr ""
+"Aktiviere den Schutz für %1$s und/oder den Schutz für %2$s aus dem Modul "
+"%3$s."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:48
+#: free/classes/scanners/class-secupress-scan-discloses.php:74
+#: free/classes/scanners/class-secupress-scan-discloses.php:80
+#: free/classes/scanners/class-secupress-scan-discloses.php:81
+#: free/modules/discloses/plugins/wp-version.php:46
+#: free/modules/discloses/plugins/wp-version.php:64
+msgid "WordPress Version Disclosure"
+msgstr "Preisgabe der WordPress-Version"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:49
+#: free/classes/scanners/class-secupress-scan-discloses.php:75
+#: free/functions/modules.php:113
+#: free/modules/discloses/plugins/no-x-powered-by.php:59
+#: free/modules/discloses/plugins/no-x-powered-by.php:71
+msgid "PHP Version Disclosure"
+msgstr "Preisgabe der PHP-Version"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:73
+#, php-format
+msgid ""
+"But you can activate the %1$s protection and the %2$s protection from the "
+"module %3$s."
+msgstr ""
+"Aber du kannst den Schutz für %1$s und den Schutz für %2$s aus dem Modul "
+"%3$s aktivieren."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:86
+msgid ""
+"Your site does not reveal either your WordPress version or "
+"PHP version."
+msgstr ""
+"Deine Website gibt weder deine WordPress-Version noch deine "
+"PHP-Version preis."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:87
+msgid ""
+"The protection preventing your site to disclose your PHP version"
+"strong> has been activated."
+msgstr ""
+"Der Schutz deiner Website vor Preisgabe deiner PHP-Version "
+"ist aktiviert worden."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:88
+msgid ""
+"The protection preventing your site to disclose your WordPress "
+"version has been activated."
+msgstr ""
+"Der Schutz deiner Website vor Preisgabe deiner WordPress-Version"
+"strong> ist aktiviert worden."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:90
+msgid ""
+"Unable to determine if your homepage is disclosing your WordPress "
+"version or PHP version."
+msgstr ""
+"Es ist nicht möglich festzustellen, ob deine Website deine WordPress-"
+"Version oder PHP-Version preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:92
+#, php-format
+msgid ""
+"Unable to determine if the %s file is disclosing your WordPress "
+"version."
+msgstr ""
+"Es ist nicht möglich festzustellen, ob die Datei %s deine WordPress-"
+"Version preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:94
+msgid ""
+"The website displays the PHP version in the request headers."
+msgstr ""
+"Die Website zeigt die PHP-Version in den Abfrage-Headern an."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:95
+#, php-format
+msgid ""
+"The website displays the WordPress version in the homepage "
+"source code (%s)."
+msgstr ""
+"Die Website zeigt die WordPress-Version im Quellcode der "
+"Homepage an (%s)."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:97
+#, php-format
+msgid ""
+"The %s file should not be accessible by anyone to avoid to reveal your "
+"WordPress version."
+msgstr ""
+"Die Datei %s sollte niemandem zugänglich sein, um zu vermeiden, dass deine "
+"WordPress-Version preisgegeben wird."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:100
+#, php-format
+msgid ""
+"Your server runs Nginx, the WordPress version"
+"strong> and PHP version disclosure cannot be fixed "
+"automatically but you can do it yourself by adding the following code to "
+"your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Preisgabe der "
+"WordPress-Version und PHP-Version kann "
+"nicht automatisch behoben werden, aber du kannst das selber beheben, in dem "
+"du folgenden Code in deine Datei %1$s einfügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:106
+#, php-format
+msgid ""
+"Your server runs Nginx, the PHP version "
+"disclosure cannot be fixed automatically but you can do it yourself by "
+"adding the following code to your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Preisgabe der "
+"PHP-Version kann nicht automatisch behoben werden, aber du "
+"kannst das selber beheben indem du folgenden Code zu deiner Datei %1$s "
+"hinzufügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:108
+#, php-format
+msgid ""
+"Your server runs Nginx, the WordPress version"
+"strong> disclosure cannot be fixed automatically but you can do it yourself "
+"by adding the following code to your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Preisgabe der "
+"WordPress-Version kann nicht automatisch behoben werden, "
+"aber du kannst das selber beheben indem du folgenden Code zu deiner Datei "
+"%1$s hinzufügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:111
+#, php-format
+msgid ""
+"The %s file is now protected from revealing your WordPress version"
+"strong>."
+msgstr ""
+"Die Datei %s ist nun davor geschützt, deine WordPress-Version"
+"strong> preiszugeben."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:112
+msgid ""
+"The website does not display the PHP version in the request "
+"headers anymore."
+msgstr ""
+"Die Website zeigt die PHP-Versionnicht mehr im Abfrage-"
+"Header an."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:113
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:81
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:81
+msgid "The generator meta tag should not be displayed anymore."
+msgstr "Das Meta-Tag Generator sollte nun nicht mehr angezeigt werden."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:114
+msgid ""
+"The WordPress version should now be removed from your "
+"styles URLs."
+msgstr ""
+"Die WordPress-Version sollte nun aus den URLs deiner "
+"Stylesheets entfernt sein."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:115
+msgid ""
+"The WordPress version should now be removed from your "
+"scripts URLs."
+msgstr ""
+"Die WordPress-Version sollte nun aus den URLs deiner "
+"Skripte entfernt sein."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:116
+msgid ""
+"Your server runs an unrecognized system. The WordPress version"
+"strong> and PHP version disclosure cannot be fixed "
+"automatically."
+msgstr ""
+"Dein Webserver läuft mit einem nicht erkannten System. Die Preisgabe "
+"derWordPress- und PHP-Version kann nicht "
+"automatisch behoben werden."
+
+#: free/classes/scanners/class-secupress-scan-discloses.php:137
+msgid ""
+"https://docs.secupress.me/article/101-php-and-wordpress-version-disclosure-"
+"scan"
+msgstr ""
+"https://docs.secupress.me/article/101-php-and-wordpress-version-disclosure-"
+"scan"
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:48
+msgid "Check if your login page is protected by double authentication."
+msgstr ""
+"Prüfe, ob deine Anmeldeseite durch Doppelte Authentifizierung geschützt ist."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:49
+msgid ""
+"The login vector is often use in web attacks, every hour your website is the "
+"target of random bots whom try to log in your site. Adding another layer of "
+"login can improve the security."
+msgstr ""
+"Die Anmeldung wird häufig in Webangriffen verwendet, jede Stunde ist deine "
+"Website das Ziel zufälliger Bots die versuchen, sich in deiner Website "
+"anzumelden. Durch Hinzufügen einer weiteren Login-Ebene kannst du die "
+"Sicherheit verbessern."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:51
+#, php-format
+msgid "Activate the %1$s from the module %2$s."
+msgstr "Aktiviere das %1$s aus dem Modul %2$s."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:52
+msgid "PasswordLess Double Authentication"
+msgstr "Doppelte Authentifizierung mit PasswordLess"
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:70
+#, php-format
+msgid "The login page is protected by double authentication with %s."
+msgstr ""
+"Die Anmeldeseite ist durch eine doppelte Authentifizierung mit %s geschützt."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:71
+msgid ""
+"The PasswordLess Double Authentication module has been "
+"activated for every role. Users will receive an email to log-in now."
+msgstr ""
+"Das Modul zur doppelten Authentifizierung mit PasswordLess "
+"ist für jede Rolle aktiviert worden. Benutzer erhalten eine E-Mail, sich nun "
+"anzumelden."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:73
+msgid ""
+"Your login system is not strong enough, you need a "
+"double authentication system."
+msgstr ""
+"Dein Anmeldesystem ist nicht stark genug, du brauchst ein "
+"System zur doppelten Anmeldung."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:74
+#, php-format
+msgid "Our module %s could fix this."
+msgstr "Unser Modul %s konnte das beheben."
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:74
+#: pro/modules/users-login/plugins/passwordless.php:346
+msgid "PasswordLess"
+msgstr "Passwortlos"
+
+#: free/classes/scanners/class-secupress-scan-easy-login.php:95
+msgid "https://docs.secupress.me/article/128-two-factor-authentication-scan"
+msgstr "https://docs.secupress.me/article/128-two-factor-authentication-scan"
+
+#: free/classes/scanners/class-secupress-scan-https.php:41
+msgid "HTTPS request failed."
+msgstr "HTTPS-Anforderung fehlgeschlagen."
+
+#: free/classes/scanners/class-secupress-scan-https.php:46
+msgid "SSL verification failed."
+msgstr "Die SSL-Verifizierung ist fehlgeschlagen."
+
+#: free/classes/scanners/class-secupress-scan-https.php:116
+msgid "Check if your website is using an active HTTPS connection."
+msgstr "Überprüfe, ob deine Website eine aktive HTTPS-Verbindung verwendet."
+
+#: free/classes/scanners/class-secupress-scan-https.php:117
+msgid ""
+"An HTTPS connection is needed for many features on the web today, it also "
+"gains the trust of your visitors by helping to protecting their online "
+"privacy."
+msgstr ""
+"Eine HTTPS-Verbindung wird heute für viele Funktionen im Internet benötigt, "
+"sie gewinnt auch das Vertrauen deiner Besucher, indem sie zum Schutz ihrer "
+"Online-Privatsphäre beiträgt."
+
+#: free/classes/scanners/class-secupress-scan-https.php:147
+msgid "Your website is using an active HTTPS/SSL connection."
+msgstr "Deine Website verwendet eine aktive HTTPS/SSL-Verbindung."
+
+#: free/classes/scanners/class-secupress-scan-https.php:149
+#, php-format
+msgid "Your site is not totally using HTTPS/SSL: %s"
+msgstr "Deine Webseite verwendet HTTPS/SSL nicht vollständig: %s"
+
+#: free/classes/scanners/class-secupress-scan-https.php:150
+#, php-format
+msgid "Your site does not use HTTPS/SSL. Error: %s"
+msgstr "Deine Webseite verwendet kein HTTPS/SSL. Fehler: %s"
+
+#: free/classes/scanners/class-secupress-scan-https.php:151
+msgid ""
+"Your website seems to run under maintenance mode, rescan this later when you "
+"set it off."
+msgstr ""
+"Deine Webseite scheint im Wartungsmodus zu laufen, scannen sie später nach "
+"einem Neustart erneut."
+
+#: free/classes/scanners/class-secupress-scan-https.php:153
+msgid ""
+"Cannot be fixed automatically. You have to contact you host provider to ask "
+"him to upgrade your site with HTTPS/SSL."
+msgstr ""
+"Kann nicht automatisch behoben werden. Du musst dich an deinen Host-Provider "
+"wenden, um ihn zu bitten, Deine Webseite mit HTTPS/SSL zu "
+"aktualisieren."
+
+#: free/classes/scanners/class-secupress-scan-https.php:154
+msgid "Update your HOME url and SITE url with https://
."
+msgstr "Aktualisiere deine HOME-URL und SITE-URL mit https://
."
+
+#: free/classes/scanners/class-secupress-scan-https.php:155
+msgid ""
+"The module WordPress Core > Locations is activated, "
+"deactivate it to fix this."
+msgstr ""
+"Das Modul WordPress Core > Locations ist aktiviert, "
+"deaktiviere es, um dies zu beheben."
+
+#: free/classes/scanners/class-secupress-scan-https.php:156
+msgid "Sorry, you are not allowed to update this site to HTTPS."
+msgstr ""
+"Es tut uns leid, aber es ist Ihnen nicht gestattet, diese Website auf HTTPS "
+"zu aktualisieren."
+
+#: free/classes/scanners/class-secupress-scan-https.php:177
+msgid "https://docs.secupress.me/article/171-connection-https-ssl-scan"
+msgstr "https://docs.secupress.me/article/171-connection-https-ssl-scan"
+
+#: free/classes/scanners/class-secupress-scan-https.php:210
+msgid "your front-end site is not using HTTPS"
+msgstr "Deine Front-End-Website verwendet kein HTTPS"
+
+#: free/classes/scanners/class-secupress-scan-https.php:211
+msgid "your back-end site is not using HTTPS"
+msgstr "Deine Back-End-Website verwendet kein HTTPS"
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:41
+msgid "Check if you have some deactivated plugins or themes."
+msgstr "Prüfe, ob du einige deaktivierte Plugins oder Themes hast."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:42
+msgid ""
+"Even deactivated plugins or themes can potentially be exploited to some "
+"vulnerabilities. Don’t take the risk to keep them on your website."
+msgstr ""
+"Selbst deaktivierte Plugins oder Themes können potenziell zu einigen "
+"Schwachstellen ausgenutzt werden. Gehe nicht das Risiko ein, sie auf deiner "
+"Website zu belassen."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:43
+msgid "Delete every inactive plugin and theme you have."
+msgstr "Lösche jedes inaktive Plugin und Theme das du hast."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:59
+msgid "You don’t have any deactivated plugins or themes."
+msgstr "Du hast keine deaktivierten Plugins oder Themes."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:60
+msgid "All inactive plugins have been deleted."
+msgstr "Alle inaktiven Plugins wurden gelöscht."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:61
+msgid "All inactive themes have been deleted."
+msgstr "Alle inaktiven Themes wurden gelöscht."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:64
+msgid "All selected plugins have been deleted (but some are still there)."
+msgstr ""
+"Alle ausgewählten Plugins wurden gelöscht (aber einige sind noch vorhanden)."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:66
+msgid "No themes selected."
+msgstr "Keine Themes ausgewählt."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:67
+msgid "All selected themes have been deleted (but some are still there)."
+msgstr ""
+"Alle ausgewählten Themes sind gelöscht worden (aber einige sind noch da)."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:68
+#, php-format
+msgid "Sorry, the following theme could not be deleted: %s."
+msgid_plural "Sorry, the following themes could not be deleted: %s."
+msgstr[0] "Das folgende Thema konnte leider nicht gelöscht werden: %s."
+msgstr[1] "Die folgenden Themen konnten leider nicht gelöscht werden: %s."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:72
+#, php-format
+msgid ""
+"%1$d deactivated plugin, if you don’t need it, delete it: "
+"%2$s."
+msgid_plural ""
+"%1$d deactivated plugins, if you don’t need them, delete "
+"them: %2$s."
+msgstr[0] ""
+"%1$d deaktiviertes Plugin, wenn du es nicht benötigst, "
+"lösche es: %2$s."
+msgstr[1] ""
+"%1$d deaktivierte Plugins, wenn du es nicht benötigst, "
+"lösche sie: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:73
+#, php-format
+msgid ""
+"%1$d deactivated theme, if you don’t need it, delete it: "
+"%2$s."
+msgid_plural ""
+"%1$d deactivated themes, if you don’t need them, delete "
+"them: %2$s."
+msgstr[0] ""
+"%1$d deaktiviertes Theme, wenn du es nicht benötigst, "
+"lösche es: %2$s."
+msgstr[1] ""
+"%1$d deaktivierte Themes, wenn du es nicht benötigst, "
+"lösche sie: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:75
+msgid "Sorry, this theme could not be deleted."
+msgid_plural "Sorry, those themes could not be deleted."
+msgstr[0] "Dieses Thema konnte leider nicht gelöscht werden."
+msgstr[1] "Diese Themen konnten leider nicht gelöscht werden."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:77
+#, php-format
+msgid "%d plugin is deactivated."
+msgid_plural "%d plugins are deactivated."
+msgstr[0] "%d Plugin ist deaktiviert."
+msgstr[1] "%d Plugins sind deaktiviert."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:78
+#, php-format
+msgid "%d theme is deactivated."
+msgid_plural "%d themes are deactivated."
+msgstr[0] "%d Theme ist deaktiviert."
+msgstr[1] "%d Themes sind deaktiviert."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:80
+msgid "Unable to locate WordPress theme directory."
+msgstr "Es ist nicht möglich, das WordPress-Theme-Verzeichnis zu finden."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:81
+msgid "No plugins nor themes selected."
+msgstr "Keine Plugins oder Themes ausgewählt."
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:102
+msgid ""
+"https://docs.secupress.me/article/118-deactivated-plugins-and-themes-scan"
+msgstr ""
+"https://docs.secupress.me/article/118-deactivated-plugins-and-themes-scan"
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:478
+msgid "No inactive plugins"
+msgstr "Keine inaktiven Plugins"
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:484
+msgid "Checked themes will be deleted:"
+msgstr "Ausgewählte Themes werden gelöscht:"
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:502
+msgid "default theme"
+msgstr "Standard-Theme"
+
+#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:515
+msgid "No inactive themes"
+msgstr "Keine inaktiven Themes"
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:41
+msgid "Check if your WordPress lists the some login errors."
+msgstr "Prüfe, ob WordPress einige Anmeldefehler auflistet."
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:42
+msgid ""
+"Error messages displayed on the login page are a useful information for an "
+"attacker: they should not be displayed, or at least, should be less specific."
+msgstr ""
+"Fehlermeldungen die auf der Anmeldeseite angezeigt werden, sind für "
+"Angreifer nützliche Informationen: sie sollten nicht oder zumindest weniger "
+"spezifisch angezeigt werden."
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:43
+msgid "Hide errors on login page to avoid being read by attackers."
+msgstr ""
+"Verberge Fehler auf der Anmeldeseite um zu verhindern, dass sie von "
+"Angreifern gelesen werden."
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:59
+msgid "You are currently not displaying login errors."
+msgstr "Du zeigst gegenwärtig keine Anmeldefehler an."
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:62
+msgid "Login errors should not be displayed."
+msgstr "Anmeldefehler sollten nicht angezeigt werden."
+
+#: free/classes/scanners/class-secupress-scan-login-errors-disclose.php:83
+msgid "https://docs.secupress.me/article/129-login-error-message-scan"
+msgstr "https://docs.secupress.me/article/129-login-error-message-scan"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:49
+msgid "Test the strength of WordPress database and FTP passwords."
+msgstr "Teste die Stärke des WordPress-Datenbank- und FTP-Passworts."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:50
+msgid ""
+"The passwords of the database and FTP have to be strong to avoid a possible "
+"brute-force attack."
+msgstr ""
+"Das Passwort für Datenbank und FTP müssen stark genug sein, um einen "
+"möglichen Brute-Force-Angriff zu vermeiden."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:52
+msgid "Test the strength of WordPress database password."
+msgstr "Teste die Stärke des WordPress-Datenbank-Passworts."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:53
+msgid ""
+"The password of the database has to be strong to avoid a possible brute-"
+"force attack."
+msgstr ""
+"Das Passwort der Datenbank muss stark sein, um einen möglichen Brute-Force-"
+"Angriff zu verhindern."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:71
+msgid "Database password seems strong enough."
+msgstr "Das Datenbank-Passwort scheint stark genug."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:72
+msgid "Database and FTP passwords seems strong enough."
+msgstr "Datenbank- und FTP-Passwörter scheinen stark genug."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:74
+msgid "Your Database password is empty, this is not secure!"
+msgstr ""
+"Dein Datenbankpasswort ist leer, das ist nicht sicher!"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:75
+msgid ""
+"Your Database password is known to be too common, this is "
+"not secure"
+msgstr ""
+"Es ist bekannt, dass dein Datenbankpasswort zu häufig "
+"vorkommt, dies ist nicht sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:76
+#, php-format
+msgid ""
+"Your Database password is only %d character length, this is "
+"not secure"
+msgid_plural ""
+"Your Database password is only %d characters length, this "
+"is not secure"
+msgstr[0] ""
+"Dein Datenbankpasswort hat nur %d Zeichenlänge, das ist "
+"nicht sicher"
+msgstr[1] ""
+"Dein Datenbankpasswort ist nur %d Zeichen lang, dies ist "
+"nicht sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:77
+msgid ""
+"Your Database password is not complex enough, this is not "
+"secure"
+msgstr ""
+"Dein Datenbankpasswort ist nicht komplex genug, dies ist "
+"nicht sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:78
+msgid "Your FTP password is empty, this is not secure!"
+msgstr "Dein FTP-Passwort ist leer, das ist nicht sicher!"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:79
+msgid ""
+"Your FTP password is known to be too common, this is not "
+"secure"
+msgstr ""
+"Es ist bekannt, dass dein FTP-Passwort zu häufig verwendet "
+"wird, dies ist nicht sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:80
+#, php-format
+msgid ""
+"Your FTP password is only %d character length, this is not "
+"secure"
+msgid_plural ""
+"Your FTP password is only %d characters length, this is not "
+"secure"
+msgstr[0] ""
+"Dein FTP-Passwort hat nur %d Zeichenlänge, das ist nicht "
+"sicher"
+msgstr[1] ""
+"Dein FTP-Passwort ist nur %d Zeichenlänge, das ist nicht "
+"sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:81
+msgid ""
+"Your FTP password is not complex enough, this is not secure"
+msgstr ""
+"Dein FTP-Passwort ist nicht komplex genug, dies ist nicht "
+"sicher"
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:83
+msgid ""
+"This cannot be fixed automatically, you have to manually change your "
+"database and FTP password in your server administration."
+msgstr ""
+"Dies kann nicht automatisch behoben werden, du musst deine Datenbank- und "
+"FTP-Passwörter manuell im Administrationsmenü des Webservers ändern."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:84
+msgid ""
+"This cannot be fixed automatically, you have to manually change your "
+"database password in your server administration."
+msgstr ""
+"Dies kann nicht automatisch behoben werden, du musst dein Datenbank-Passwort "
+"manuell im Administrationsmenü deines Webservers ändern."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:85
+msgid ""
+"This cannot be fixed automatically, you have to manually change your FTP "
+"password in your server administration."
+msgstr ""
+"Dies kann nicht automatisch behoben werden, du musst dein FTP-Passwort "
+"manuell im Administrationsmenü deines Webservers ändern."
+
+#: free/classes/scanners/class-secupress-scan-passwords-strength.php:106
+msgid "https://docs.secupress.me/article/131-ftp-and-database-passwords-scan"
+msgstr "https://docs.secupress.me/article/131-ftp-and-database-passwords-scan"
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:41
+msgid "Check if your site is allowing 404 on PHP files."
+msgstr "Überprüfe, ob deine Website 404 in PHP-Dateien zulässt."
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:42
+msgid "Do not let attackers find hidden PHP files by guessing it, ban them!"
+msgstr ""
+"Lasse Angreifer keine versteckten PHP-Dateien finden, indem sie sie erraten, "
+"sondern sperre sie!"
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:45
+#: free/classes/scanners/class-secupress-scan-php-404.php:63
+msgid "Block 404 on .php"
+msgstr "Block 404 auf .php"
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:69
+msgid "You are currently blocking 404 requests on .php files."
+msgstr "Du blockierst derzeit 404-Anfragen für .php-Dateien."
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:72
+msgid "Unable to determine if your homepage is blocking 404 on .php files."
+msgstr ""
+"Es kann nicht festgestellt werden, ob deine Homepage 404 in .php-Dateien "
+"blockiert."
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:74
+msgid "Your website should block 404 on .php files."
+msgstr "Deine Webseite sollte 404 in .php Dateien blockieren."
+
+#: free/classes/scanners/class-secupress-scan-php-404.php:95
+msgid "https://docs.secupress.me/article/150-ban-404-on-php-files"
+msgstr "https://docs.secupress.me/article/150-ban-404-on-php-files"
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:43
+msgid ""
+"Check if your server lists the PHP modules (known as \"PHP Easter "
+"Egg\")."
+msgstr ""
+"Prüfe, ob dein Webserver die PHP-Module aufführt (bekannt als \"PHP-"
+"Osterei“)."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:44
+msgid ""
+"PHP contains a flaw that discloses sensitive information about installed "
+"modules, resulting in a loss of confidentiality."
+msgstr ""
+"PHP enthält einen Fehler, der sensible Informationen über installierte "
+"Module offenlegt, was zu einem Verlust der Vertraulichkeit führt."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:47
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:72
+#: free/functions/modules.php:112
+#: free/modules/sensitive-data/plugins/php-easter-egg.php:45
+#: free/modules/sensitive-data/plugins/php-easter-egg.php:69
+msgid "PHP Disclosure"
+msgstr "Preisgabe PHP"
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:78
+msgid "Your site does not reveal the PHP modules."
+msgstr "Deine Website gibt nicht die PHP-Module preis."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:80
+#, php-format
+msgid ""
+"The rules forbidding access to the PHP Easter Egg have been "
+"successfully added to your %s file."
+msgstr ""
+"Die Regeln, um den Zugriff auf die PHP-Ostereier zu "
+"verbieten, wurde erfolgreich zu deiner Datei %s hinzugefügt."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:82
+msgid "Unable to determine if your homepage is disclosing the PHP modules."
+msgstr ""
+"Es ist nicht möglich festzustellen, ob deine Homepage PHP-Module preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:85
+#, php-format
+msgid "%s should not be accessible to anyone."
+msgstr "%s sollte nicht für jeden zugänglich sein."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:88
+#, php-format
+msgid ""
+"Your server runs Nginx, PHP modules disclosure cannot be "
+"protected automatically but you can do it yourself by adding the following "
+"code to your %1$s file: %2$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Preisgabe von PHP-"
+"Modulen konnte nicht automatisch verhindert werden, aber du kannst es selber "
+"verhindern, indem du folgenden Code deiner Datei %1$s hinzufügst: %2$s"
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:89
+msgid ""
+"Your server runs an unrecognized system. PHP modules disclosure cannot be "
+"protected automatically."
+msgstr ""
+"Dein Webserver läuft mit einem nicht erkannten System. Die PHP-Module können "
+"nicht automatisch vor Preisgabe geschützt werden."
+
+#: free/classes/scanners/class-secupress-scan-php-disclosure.php:114
+msgid "https://docs.secupress.me/article/103-php-modules-disclosure-scan"
+msgstr "https://docs.secupress.me/article/103-php-modules-disclosure-scan"
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:48
+msgid "Check if your installation is using a supported version of PHP."
+msgstr "Prüfe ob deine Installation eine unterstütze PHP-Version verwendet."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:49
+msgid ""
+"Every year, old PHP version are not supported anymore, even for security "
+"patches so it’s important to stay updated."
+msgstr ""
+"Jedes Jahr werden alte PHP-Versionen nicht mehr unterstützt, auch nicht für "
+"Sicherheitspatches, daher ist es wichtig, auf dem neuesten Stand zu bleiben."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:67
+#, php-format
+msgid "You are using PHP v%s."
+msgstr "Du verwendest PHP v%s."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:68
+#, php-format
+msgid "You are using PHP v%s, do not go lower!"
+msgstr "Du verwendest PHP v%s, gehe nicht nach unten!"
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:69
+#, php-format
+msgid "You are using PHP v%s, this is the last old supported."
+msgstr ""
+"Du verwendest PHP v%s, dies ist das letzte alte, das "
+"unterstützt wird."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:70
+#, php-format
+msgid "You are using PHP v%s, the last one? Perfect!"
+msgstr "Du verwendest PHP v%s, das letzte? Perfekt!"
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:72
+msgid "Unable to determine version of PHP."
+msgstr "Es ist nicht möglich, die PHP-Version zu ermitteln."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:74
+#, php-format
+msgid ""
+"You are using PHP v%1$s, but the oldest major supported "
+"version is PHP v%2$s, and the last one is PHP "
+"v%3$s."
+msgstr ""
+"Du verwendest PHP v, aber die älteste unterstützte Hauptversion ist PHP v, "
+"und die letzte ist PHP v%1$s.%2$s"
+"strong>%3$s."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:76
+msgid ""
+"Cannot be fixed automatically. You have to contact you host provider to ask "
+"him to upgrade you version of PHP."
+msgstr ""
+"Kann nicht automatisch behoben werden. Du musst deinen Webhoster ansprechen "
+"und ihn bitten, deine PHP-Version zu aktualisieren."
+
+#: free/classes/scanners/class-secupress-scan-phpversion.php:97
+msgid "https://docs.secupress.me/article/114-php-version-scan"
+msgstr "https://docs.secupress.me/article/114-php-version-scan"
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:48
+msgid "Check if your plugins are up to date."
+msgstr "Prüfe, ob deine Plugins auf dem neuesten Stand sind."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:49
+msgid ""
+"It is very important to keep your WordPress installation up to date. If you "
+"cannot update because of a plugin, contact its author and submit your issue."
+msgstr ""
+"Es ist sehr wichtig, deine WordPress-Installation auf dem neuesten Stand zu "
+"halten. Wenn du wegen eines Plugins nicht aktualisieren kannst, sprich "
+"seinen Autoren an und teile ihm dein Problem mit."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:50
+msgid "Update all your plugins that are not up to date."
+msgstr ""
+"Aktualisiere alle deine Plugins, die nicht auf dem neuesten Stand sind."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:66
+msgid "Your plugins are up to date."
+msgstr "Deine Plugins sind auf dem neuesten Stand."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:68
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:73
+#, php-format
+msgid ""
+"%d symlinked plugin is not up to date, and cannot be "
+"updated automatically."
+msgid_plural ""
+"%d symlinked plugins are not up to date, and cannot be "
+"updated automatically."
+msgstr[0] ""
+"%d Das SymLinked-Plugin ist nicht auf dem neuesten Stand "
+"und kann nicht automatisch aktualisiert werden."
+msgstr[1] ""
+"%d Symbolisch verlinkte Plugins sind nicht auf dem neuesten "
+"Stand und können nicht automatisch aktualisiert werden."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:70
+#, php-format
+msgid "%1$d plugin is not up to date: %2$s."
+msgid_plural "%1$d plugins are not up to date: %2$s."
+msgstr[0] ""
+"%1$d Das Plugin ist nicht auf dem neuesten Stand: %2$s."
+msgstr[1] ""
+"%1$d Plugins sind nicht auf dem neuesten Stand: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:72
+msgid "Some plugins could not be updated correctly."
+msgstr "Einige Plugins konnten nicht richtig aktualisiert werden."
+
+#: free/classes/scanners/class-secupress-scan-plugins-update.php:94
+msgid "https://docs.secupress.me/article/120-plugin-update-scan"
+msgstr "https://docs.secupress.me/article/120-plugin-update-scan"
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:44
+#, php-format
+msgid "Check if the %s files from your plugins and themes are protected."
+msgstr "Prüfe ob die %s-Dateien deiner Plugins und Themes geschützt sind."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:48
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:74
+#: free/functions/modules.php:116 free/modules/discloses/plugins/readmes.php:45
+#: free/modules/discloses/plugins/readmes.php:63
+#: free/modules/sensitive-data/settings/content-protect.php:408
+msgid "Protect Readme Files"
+msgstr "Schützen von Readme-Dateien"
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:81
+#, php-format
+msgid "The %s files are protected from revealing sensitive information."
+msgstr ""
+"Die %s-Dateien sind vor der Preisgabe sensibler Informationen geschützt."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:83
+#, php-format
+msgid ""
+"The rules forbidding access to your %1$s files have been successfully added "
+"to your %2$s file."
+msgstr ""
+"Die Regeln, die Zugriff auf deine %1$s-Dateien verbieten, wurden erfolgreich "
+"zu deiner Datei %2$s hinzugefügt."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:86
+#, php-format
+msgid ""
+"Unable to determine the status of the %s files that may reveal sensitive "
+"information."
+msgstr ""
+"Es ist nicht möglich, den Status der %s-Dateien festzustellen, die sensible "
+"Informationen preisgeben könnten."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:89
+#, php-format
+msgid ""
+"The %1$s and/or %2$s files should not be accessible to anyone because they "
+"are revealing sensitive information."
+msgstr ""
+"Die %1$s- und/oder %2$s-Dateien sollten nicht für jeden zugänglich sein, "
+"weil sie sensible Informationen preisgeben könnten."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:92
+#, php-format
+msgid ""
+"Your server runs Nginx, the %1$s files cannot be protected "
+"automatically but you can do it yourself by adding the following code to "
+"your %2$s file: %3$s"
+msgstr ""
+"Dein Webserver läuft mit Nginx, die Dateien %1$s konnten "
+"nicht automatisch geschützt werden, aber du kannst sie selber schützen, "
+"indem du folgenden Code deiner Datei %2$s hinzufügst: %3$s"
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:94
+#, php-format
+msgid ""
+"Your server runs an unrecognized system. The %s files cannot be protected "
+"automatically."
+msgstr ""
+"Dein Webserver läuft mit einem nicht erkannten System. Die Datei %s kann "
+"nicht automatisch geschützt werden."
+
+#: free/classes/scanners/class-secupress-scan-readme-discloses.php:119
+msgid "https://docs.secupress.me/article/102-readme-txt-access-scan"
+msgstr "https://docs.secupress.me/article/102-readme-txt-access-scan"
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:41
+msgid "Check if the security keys are correctly set."
+msgstr "Prüfe, ob die Sicherheitsschlüssel richtig eingestellt wurden."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:42
+msgid ""
+"WordPress provides 8 security keys, each key has its own purpose. These keys "
+"must be set with long random strings: don’t keep the default value, don’t "
+"store them in the database, don’t hardcode them."
+msgstr ""
+"WordPress bietet 8 Sicherheitsschlüssel, jeder Schlüssel hat seinen eigenen "
+"Zweck. Diese Schlüssel müssen mit langen zufälligen Zeichenfolgen festgelegt "
+"werden: Behalte nicht den Standardwert bei, speichere sie nicht in der "
+"Datenbank, codiere sie nicht hart."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:43
+#, php-format
+msgid ""
+"Create a must-use "
+"plugin to replace your actual keys stored in %s
or in your "
+"database to keep them safer."
+msgstr ""
+"Erstelle ein Must-"
+"use-Plugin, um deine tatsächlichen Schlüssel, die in %s
"
+"oder in deiner Datenbank gespeichert sind, zu ersetzen. Das macht sie "
+"sicherer."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:59
+msgid "All security keys are properly set."
+msgstr "Alle Sicherheitsschlüssel sind ordentlich eingestellt."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:62
+#, php-format
+msgid "The %s
file could not be located."
+msgstr "Die %s
Datei konnte nicht gefunden werden."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:64
+msgid "The following security keys are not set correctly:"
+msgstr "Die folgenden Sicherheitsschlüssel sind nicht richtig eingestellt:"
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:65
+#, php-format
+msgid "· Not Set: %s."
+msgid_plural "· Not Set: %s."
+msgstr[0] "· Nicht festgelegt: %s."
+msgstr[1] "· Nicht festgelegt: %s."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:66
+#, php-format
+msgid "· Default Value: %s."
+msgid_plural "· Default Value: %s."
+msgstr[0] "· Standardwert: %s."
+msgstr[1] "· Standardwert: %s."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:67
+#, php-format
+msgid "· Too Short: %s."
+msgid_plural "· Too Short: %s."
+msgstr[0] "· Zu kurz: %s."
+msgstr[1] "· Zu kurz: %s."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:68
+#, php-format
+msgid "· Hardcoded: %s."
+msgid_plural "· Hardcoded: %s."
+msgstr[0] "· Hartcodiert: %s."
+msgstr[1] "· Hartcodiert: %s."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:69
+#, php-format
+msgid "· From DB: %s."
+msgid_plural "· From DB: %s."
+msgstr[0] "· Von der DB: %s."
+msgstr[1] "· Von der DB: %s."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:71
+#, php-format
+msgid ""
+"The %s
file is not writable, security keys could not be changed."
+msgstr ""
+"Die %s
Datei ist nicht beschreibbar, Sicherheitsschlüssel "
+"konnten nicht geändert werden."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:72
+msgid ""
+"The security keys fix has been applied but there is still keys that could "
+"not be modified so far."
+msgstr ""
+"Die Reparatur der Sicherheitsschlüssel wurde ausgeführt, aber es gibt immer "
+"noch Schlüssel, die bisher nicht modifiziert werden konnten."
+
+#: free/classes/scanners/class-secupress-scan-salt-keys.php:93
+msgid "https://docs.secupress.me/article/92-security-keys-scan"
+msgstr "https://docs.secupress.me/article/92-security-keys-scan"
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:44
+msgid "Check if your server is vulnerable to Shellshock."
+msgstr ""
+"Überprüfe, ob dein Server anfällig für Shellshock ist."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:45
+msgid ""
+"Shellshock is a critic vulnerability allowing an attacker "
+"to remotely execute malicious code on a server."
+msgstr ""
+"Shellshock ist eine kritische Schwachstelle, die Angreifern "
+"erlaubt, bösartigen Code auf einem Server aus der Ferne auszuführen."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:48
+#: free/classes/scanners/class-secupress-scan-shellshock.php:66
+msgid "Block Bad User-Agents"
+msgstr "Blockiere schlechte User-Agents"
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:72
+msgid "The server is not vulnerable to Shellshock."
+msgstr "Der Webserver ist nicht anfällig für Shellshock."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:73
+msgid ""
+"The protection against Shellshock has been activated. It "
+"won’t fix the vulnerability (only your host can) but it will prevent an "
+"attacker to exploit it remotely."
+msgstr ""
+"Der Schutz vor Shellshock wurde aktiviert. Es wird die "
+"Schwachstelle nicht beheben (nur dein Host kann das), aber es verhindert, "
+"dass ein Angreifer sie aus der Ferne ausnutzt."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:75
+#: free/classes/scanners/class-secupress-scan-shellshock.php:76
+#, php-format
+msgid ""
+"Unable to determine the status of the Shellshock flaw (%s)."
+msgstr ""
+"Es ist nicht möglich den Status der Shellshock-"
+"Schwachstelle festzustellen (%s)."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:77
+msgid "Unable to determine the status of the Shellshock flaw."
+msgstr ""
+"Es ist nicht möglich den Status der Shellshock-"
+"Schwachstelle festzustellen."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:79
+#: free/classes/scanners/class-secupress-scan-shellshock.php:80
+#, php-format
+msgid ""
+"The server appears to be vulnerable to Shellshock (%s)."
+msgstr ""
+"Der Webserver scheint für Shellshock anfällig zu sein (%s)."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:81
+msgid "The server may be vulnerable to Shellshock."
+msgstr "Der Webserver könnte für Shellshock anfällig sein."
+
+#: free/classes/scanners/class-secupress-scan-shellshock.php:102
+msgid "https://docs.secupress.me/article/115-shellshock-scan"
+msgstr "https://docs.secupress.me/article/115-shellshock-scan"
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:41
+msgid "Check if basic SQL Injections are blocked or not."
+msgstr "Prüfe, ob einfache SQL-Injections blockiert werden oder nicht."
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:42
+msgid ""
+"SQL injection is a way to read, modify, delete any content of your database, "
+"this is a powerful vulnerability, don’t let anyone play with that."
+msgstr ""
+"SQL-Injection ist eine Möglichkeit, den Inhalt deiner Datenbank zu lesen, zu "
+"ändern und zu löschen, dies ist eine mächtige Schwachstelle, lasse niemanden "
+"damit spielen."
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:45
+#: free/classes/scanners/class-secupress-scan-sqli.php:63
+#: free/functions/modules.php:131
+#: free/modules/firewall/settings/bbq-url-content.php:12
+msgid "Block Bad Content"
+msgstr "Blockieren von schädlichen Inhalten"
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:69
+msgid "You are currently blocking simple SQL Injection."
+msgstr "Du blockierst gegenwärtig einfache SQL-Injection."
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:72
+msgid "Unable to determine if your homepage is blocking SQL Injection."
+msgstr ""
+"Es ist nicht möglich festzustellen, ob deine Homepage SQL-Injection "
+"blockiert."
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:74
+msgid "Your website should block SQL Injection."
+msgstr "Deine Website sollte SQL-Injection blockieren."
+
+#: free/classes/scanners/class-secupress-scan-sqli.php:95
+msgid "https://docs.secupress.me/article/109-basic-sql-injection-scan"
+msgstr "https://docs.secupress.me/article/109-basic-sql-injection-scan"
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:55
+#: free/classes/scanners/class-secupress-scan-subscription.php:185
+#: free/classes/scanners/class-secupress-scan-subscription.php:297
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:366
+msgctxt "a WP role"
+msgid "None"
+msgstr "Nichts"
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:56
+msgid "Check if the subscription settings are set correctly."
+msgstr "Prüfe, ob deine Abonnement-Einstellungen korrekt sind."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:59
+#, php-format
+msgid ""
+"If user registrations are open, the default user role should be %s. "
+"Moreover, your registration page should be protected from bots."
+msgstr ""
+"Wenn Benutzerregistrierungen geöffnet sind, sollte die Standardbenutzerrolle "
+"%s sein. Darüber hinaus sollte deine Registrierungsseite vor Bots geschützt "
+"sein."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:62
+#: free/classes/scanners/class-secupress-scan-subscription.php:89
+msgid "Use a Captcha for everyone"
+msgstr "Verwende Captcha für alle"
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:67
+#, php-format
+msgid ""
+"If the default user role is not %1$s in some of your websites, "
+"administrators will be asked to set the default user role to %1$s."
+msgstr ""
+"Wenn die Standardbenutzerrolle in einigen deiner Websites nicht %1$s ist, "
+"werden Administratoren aufgefordert, die Standardbenutzerrolle auf %1$s "
+"festzulegen."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:69
+#: free/classes/scanners/class-secupress-scan-subscription.php:73
+#, php-format
+msgid "Set the default user’s role to %s."
+msgstr "Lege die Rolle des Standardbenutzers auf %s fest."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:72
+#, php-format
+msgid "If user registrations are open, the default user role should be %s."
+msgstr ""
+"Wenn Benutzerregistrierungen geöffnet sind, sollte die Standardbenutzerrolle "
+"%s sein."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:95
+msgid "Your subscription settings are set correctly."
+msgstr "Deine Registrierungseinstellungen sind korrekt."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:96
+msgid "A captcha module has been activated to block bot registration."
+msgstr ""
+"Ein Captcha-Modul wurde aktiviert um Registrierungen durch Bots zu "
+"blockieren."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:97
+#, php-format
+msgid ""
+"The user role for new registrations has been set to %s."
+msgstr ""
+"Die Benutzerrolle für Neuregistrierungen wurde auf %s"
+"strong>festgelegt."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:99
+msgid "Unable to determine the status of your subscription settings."
+msgstr ""
+"Es ist nicht möglich, den Status deiner Registrierungseinstellungen "
+"festzustellen."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:103
+#, php-format
+msgid ""
+"The default role in your installation is %1$s and it should "
+"be %2$s, or registrations should be closed."
+msgstr ""
+"Die Standardrolle in deiner Installation ist %1$s, und sie "
+"sollte %2$ssein, oder die Registrierungen sollten "
+"geschlossenwerden."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:104
+msgid "The registration page is not protected from bots."
+msgstr "Die Registrierungsseite ist vor Bots nicht geschützt."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:105
+#, php-format
+msgid "The default role is not %2$s in %1$s of your sites."
+msgid_plural "The default role is not %2$s in %1$s of your sites."
+msgstr[0] "Die Standardrolle ist in %1$s deiner Websites nicht %2$s."
+msgstr[1] "Die Standardrolle ist in %1$s deiner Websites nicht %2$s."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:108
+#, php-format
+msgid ""
+"The default role cannot be fixed from here. A new %s menu item has been "
+"activated in the relevant site’s administration area."
+msgstr ""
+"Die Standardrolle kann von hier aus nicht festgelegt werden. Im "
+"Administrationsbereich der jeweiligen Seite wurde ein neuer Menüpunkt %s "
+"aktiviert."
+
+#: free/classes/scanners/class-secupress-scan-subscription.php:129
+msgid "https://docs.secupress.me/article/134-membership-settings-scan"
+msgstr "https://docs.secupress.me/article/134-membership-settings-scan"
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:48
+msgid "Check if your themes are up to date."
+msgstr "Prüfe, ob deine Themes auf dem neuesten Stand sind."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:49
+msgid ""
+"It is very important to keep your WordPress installation up to date. If you "
+"cannot update because of a theme, contact its author and submit your issue."
+msgstr ""
+"Es ist sehr wichtig, deine WordPress-Installation auf dem neuesten Stand zu "
+"halten. Wenn das wegen eines Themes nicht möglich ist, sprich seinen Autoren "
+"an und teile ihm dein Problem mit."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:50
+msgid "Update all your themes that are not up to date."
+msgstr "Aktualisiere alle deine Themes, die nicht auf dem neuesten Stand sind."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:66
+msgid "Your themes are up to date."
+msgstr "Deine Themes sind auf dem neuesten Stand."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:68
+#: free/classes/scanners/class-secupress-scan-themes-update.php:73
+#, php-format
+msgid ""
+"%d symlinked theme is not up to date, and cannot be updated "
+"automatically."
+msgid_plural ""
+"%d symlinked themes are not up to date, and cannot be "
+"updated automatically."
+msgstr[0] ""
+"%d Das SymLinked-Design ist nicht auf dem neuesten Stand "
+"und kann nicht automatisch aktualisiert werden."
+msgstr[1] ""
+"%d Symbolisch verknüpfte Designs sind nicht auf dem "
+"neuesten Stand und können nicht automatisch aktualisiert werden."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:70
+#, php-format
+msgid "%1$d theme is not up to date: %2$s."
+msgid_plural "%1$d themes are not up to date: %2$s."
+msgstr[0] ""
+"%1$d Das Thema ist nicht auf dem neuesten Stand: %2$s."
+msgstr[1] ""
+"%1$d Themes sind nicht auf dem neuesten Stand: %2$s."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:72
+msgid "Some themes could not be updated correctly."
+msgstr "Einige Themes konnten nicht richtig aktualisiert werden."
+
+#: free/classes/scanners/class-secupress-scan-themes-update.php:94
+msgid "https://docs.secupress.me/article/119-theme-update-scan"
+msgstr "https://docs.secupress.me/article/119-theme-update-scan"
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:42
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:42
+#, php-format
+msgid "Check if the %s plugin discloses its version."
+msgstr "Prüfe, ob das Plugin %s seine Version preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:46
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:46
+#, php-format
+msgid ""
+"Hide the %1$s version to prevent giving too much information to attackers. "
+"The %2$s protection from the module %3$s will be activated."
+msgstr ""
+"Verstecke die %1$s-Version, um zu vermeiden dass Angreifern zu viele "
+"Informationen gegeben werden. Der %2$s-Schutz des Moduls %3$s wird aktiviert."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:48
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:66
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:48
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:66
+msgid "Plugin version disclosure"
+msgstr "Preisgabe der Plugin-Version"
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:73
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:73
+#, php-format
+msgid "The %s plugin does not reveal sensitive information."
+msgstr "Das Plugin %s enthüllt keine sensiblen Informationen."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:76
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:76
+#, php-format
+msgid "Unable to determine if %s is disclosing its version on your homepage."
+msgstr ""
+"Es ist nicht möglich festzustellen, ob %s seine Version auf deiner Homepage "
+"preisgibt."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:79
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:79
+#, php-format
+msgid ""
+"The %1$s plugin displays its version in the source code of your homepage "
+"(%2$s)."
+msgstr ""
+"Das Plugin %1$s zeigt im Quellcode deiner Homepage seine Version an (%2$s)."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:83
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:83
+#, php-format
+msgid "The %s’s version should be removed from your styles URLs now."
+msgstr "Die Version des %s sollte jetzt aus deinen Stil-URLs entfernt werden."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:85
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:85
+#, php-format
+msgid "The %s’s version should be removed from your scripts URLs now."
+msgstr ""
+"Die Version des %s sollte jetzt aus den URLs deiner Skripte entfernt werden."
+
+#: free/classes/scanners/class-secupress-scan-woocommerce-discloses.php:106
+msgid ""
+"https://docs.secupress.me/article/105-woocommerce-version-number-disclosure-"
+"scan"
+msgstr ""
+"https://docs.secupress.me/article/105-woocommerce-version-number-disclosure-"
+"scan"
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:59
+#, php-format
+msgid "Check your %s file, especially the PHP constants."
+msgstr "Prüfe deine %s-Datei, insbesondere die PHP-Konstanten."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:61
+#, php-format
+msgid "You can use the %s file to improve the security of your website."
+msgstr ""
+"Du kannst die %s-Datei verwenden, um die Sicherheit deiner Website zu "
+"verbessern."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:63
+#, php-format
+msgid ""
+"Set some PHP constants in your %s file to improve the security of your "
+"website."
+msgstr ""
+"Stelle einige PHP-Konstanten in deiner %s-Datei ein, um die Sicherheit "
+"deiner Website zu verbessern."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:80
+#, php-format
+msgid "Your %s file is correct."
+msgstr "Deine Datei %s ist korrekt."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:82
+#, php-format
+msgid ""
+"A must-use plugin has been added in order to change the "
+"default value for %s."
+msgstr ""
+"Ein Must-Use-Plugin wurde hinzugefügt um den Standardwert "
+"für %s zu ändern."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:87
+#, php-format
+msgid ""
+"The PHP constant %s is defined with the default value, it should be modified."
+msgstr ""
+"Die PHP-Konstante %s ist mit dem Standardwert definiert, sie sollte "
+"modifiziert werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:89
+#, php-format
+msgid "In your %1$s file, the PHP constant %2$s should be set."
+msgstr "In deiner %1$s-Datei sollte die PHP-Konstante %2$s eingestellt werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:92
+#, php-format
+msgid "In your %1$s file, the PHP constant %2$s should not be set."
+msgid_plural "In your %1$s file, the PHP constants %2$s should not be set."
+msgstr[0] ""
+"In deiner %1$s-Datei sollte die PHP-Konstante %2$s nicht gesetzt werden."
+msgstr[1] ""
+"In deiner %1$sDatei sollten die PHP-Konstanten %2$s nicht gesetzt werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:98
+#, php-format
+msgid "In your %1$s file, the PHP constant %2$s should not be empty."
+msgid_plural "In your %1$s file, the PHP constants %2$s should not be empty."
+msgstr[0] "In deiner %1$s-Datei sollte die PHP-Konstante %2$s nicht leer sein."
+msgstr[1] ""
+"In deiner %1$sDatei sollten die PHP-Konstanten %2$s nicht leer sein."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:104
+#: free/classes/scanners/class-secupress-scan-wp-config.php:110
+#, php-format
+msgid "In your %1$s file, the PHP constant %2$s should be set to %3$s."
+msgid_plural "In your %1$s file, the PHP constants %2$s should be set to %3$s."
+msgstr[0] ""
+"In deiner %1$s-Datei sollte die PHP-Konstante %2$s nicht auf %3$s gesetzt "
+"werden."
+msgstr[1] ""
+"In deiner %1$sDatei sollten die PHP-Konstanten %2$s auf %3$s gesetzt werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:116
+#: free/classes/scanners/class-secupress-scan-wp-config.php:122
+#, php-format
+msgid "In your %1$s file, the PHP constant %2$s should be set to %3$s or less."
+msgid_plural ""
+"In your %1$s file, the PHP constants %2$s should be set to %3$s or less."
+msgstr[0] ""
+"In deiner %1$s-Datei sollte die PHP-Konstante %2$s auf %3$s oder weniger "
+"gesetzt werden."
+msgstr[1] ""
+"In deiner %1$sDatei sollten die PHP-Konstanten %2$s auf %3$s oder weniger "
+"gesetzt werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:128
+#, php-format
+msgid "Some PHP constants could not be set correctly: %s."
+msgstr "Einige PHP-Konstanten konnten nicht richtig eingestellt werden: %s."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:130
+#, php-format
+msgid ""
+"Impossible to create a must-use plugin but the default value for %s needs to "
+"be changed."
+msgstr ""
+"Es ist nicht möglich, ein Must-Use-Plugin zu erstellen, aber der Standardwert "
+"für %s muss geändert werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:131
+#: free/modules/wordpress-core/settings/wp-config.php:17
+#, php-format
+msgid ""
+"The %s
file is not writable, the constants could not be changed."
+msgstr ""
+"Die %s
Datei ist nicht beschreibbar, die Konstanten konnten "
+"nicht geändert werden."
+
+#: free/classes/scanners/class-secupress-scan-wp-config.php:152
+msgid "https://docs.secupress.me/article/93-wp-config-php-file-constants-scan"
+msgstr "https://docs.secupress.me/article/93-wp-config-php-file-constants-scan"
+
+#: free/classes/scanners/class-secupress-scan-wpml-discloses.php:106
+msgid ""
+"https://docs.secupress.me/article/104-wpml-version-number-disclosure-scan"
+msgstr ""
+"https://docs.secupress.me/article/104-wpml-version-number-disclosure-scan"
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:48
+msgid "Check if your installation can communicate with WordPress.org."
+msgstr "Überprüfe, ob deine Installation mit WordPress.org kommunizieren kann."
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:49
+msgid ""
+"Communicating with the WordPress servers is used to check for new versions, "
+"and to both install and update WordPress core, themes or plugins."
+msgstr ""
+"Die Kommunikation mit den WordPress-Servern wird verwendet, um nach neuen "
+"Versionen zu suchen und den WordPress-Kern, die Themes oder Plugins zu "
+"installieren und zu aktualisieren."
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:67
+msgid "Your site can communicate with WordPress.org."
+msgstr "Deine Website kann mit WordPress.org kommunizieren."
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:69
+msgid "Your site could not reach WordPress.org."
+msgstr "Deine Webseite konnte WordPress.org nicht erreichen."
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:74
+msgid "https://wordpress.org/support"
+msgstr "https://de.wordpress.org/support"
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:75
+msgid "Get help resolving this issue."
+msgstr "Hole dir Hilfe bei der Lösung dieses Problems."
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:77
+msgid "(opens in a new tab)"
+msgstr "(in neuem Tab öffnen)"
+
+#: free/classes/scanners/class-secupress-scan-wporg.php:99
+msgid ""
+"https://docs.secupress.me/article/177-communicate-with-wordpress-org-or-"
+"secupress-me"
+msgstr ""
+"https://docs.secupress.me/article/177-communicate-with-wordpress-org-or-"
+"secupress-me"
+
+#: free/classes/scanners/class-secupress-scan.php:1031
+#, php-format
+msgid "%s other"
+msgid_plural "%s others"
+msgstr[0] "%s Sonstiges"
+msgstr[1] "%s andere"
+
+#: free/classes/scanners/class-secupress-scan.php:1139
+#: free/classes/scanners/class-secupress-scan.php:1145
+#: free/classes/scanners/class-secupress-scan.php:1151
+#: free/functions/files.php:566
+msgid "The temporary directory could not be created."
+msgstr "Das temporäre Verzeichnis konnte nicht erstellt werden."
+
+#: free/classes/settings/class-secupress-settings-global.php:89
+msgid "Overall plugin settings and fine-tuning"
+msgstr "Allgemeine Plugin-Einstellungen und Feinabstimmung"
+
+#: free/classes/settings/class-secupress-settings-modules.php:340
+msgid "When you need to reset this module’s settings to the default."
+msgstr ""
+"Wenn du die Einstellungen dieses Moduls auf die Standardeinstellungen "
+"zurückstellst müssen."
+
+#: free/classes/settings/class-secupress-settings-modules.php:352
+#, php-format
+msgid "Reset the %s’s settings"
+msgstr "Zurücksetzen der Einstellungen des %s"
+
+#: free/classes/settings/class-secupress-settings-modules.php:438
+#: free/classes/settings/class-secupress-settings-modules.php:449
+#: free/classes/settings/class-secupress-settings-modules.php:460
+msgid "Learn more about SecuPress Pro"
+msgstr "Erfahre mehr über SecuPress Pro"
+
+#: free/classes/settings/class-secupress-settings-modules.php:439
+#: free/classes/settings/class-secupress-settings-modules.php:450
+#: free/classes/settings/class-secupress-settings-modules.php:461
+msgid "This feature is available in SecuPress Pro"
+msgstr "Dieses Feature ist in SecuPress-Pro erhältlich"
+
+#: free/classes/settings/class-secupress-settings-modules.php:478
+msgid "Empty disallowed IP list"
+msgstr "Leere Liste unzulässiger IP-Adressen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:482
+msgid "Specify an IP to ban."
+msgstr "Gib eine zu blockierende IP an."
+
+#: free/classes/settings/class-secupress-settings-modules.php:483
+#: free/classes/settings/class-secupress-settings-modules.php:579
+msgid ""
+"You can use IP "
+"ranges."
+msgstr ""
+"Du kannst IP-"
+"Bereiche verwenden."
+
+#: free/classes/settings/class-secupress-settings-modules.php:485
+msgid "Ban IP"
+msgstr "IP sperren"
+
+#: free/classes/settings/class-secupress-settings-modules.php:504
+#: free/classes/settings/class-secupress-settings-modules.php:506
+#: free/classes/settings/class-secupress-settings-modules.php:600
+#: free/classes/settings/class-secupress-settings-modules.php:602
+msgid "Search IP"
+msgstr "Suche IP"
+
+#: free/classes/settings/class-secupress-settings-modules.php:506
+msgid "Searching…"
+msgstr "Suche…"
+
+#: free/classes/settings/class-secupress-settings-modules.php:508
+#: free/classes/settings/class-secupress-settings-modules.php:604
+msgid "Cancel search"
+msgstr "Suche abbrechen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:521
+#, php-format
+msgid "Last %1$s/%2$s disallowed IPs:"
+msgstr "Letzte %1$s/%2$s verbotene IPs:"
+
+#: free/classes/settings/class-secupress-settings-modules.php:533
+#, php-format
+msgid "%s (Banned until %s)"
+msgstr "%s(Gesperrt bis%s)"
+
+#: free/classes/settings/class-secupress-settings-modules.php:534
+#: free/classes/settings/class-secupress-settings-modules.php:628
+msgid "Remove"
+msgstr "Entfernen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:538
+#: free/classes/settings/class-secupress-settings-modules.php:632
+msgid "Do a search to find more."
+msgstr "Führe eine Suche durch, um weitere Informationen zu finden."
+
+#: free/classes/settings/class-secupress-settings-modules.php:550
+#: free/classes/settings/class-secupress-settings-modules.php:644
+msgid "Clearing..."
+msgstr "Löschen..."
+
+#: free/classes/settings/class-secupress-settings-modules.php:550
+#: free/classes/settings/class-secupress-settings-modules.php:644
+msgid "Clear all IPs"
+msgstr "Lösche alle IPs"
+
+#: free/classes/settings/class-secupress-settings-modules.php:553
+msgid "Ban in progress…"
+msgstr "Verbot in Arbeit…"
+
+#: free/classes/settings/class-secupress-settings-modules.php:553
+msgid "Disallow"
+msgstr "Verbieten"
+
+#: free/classes/settings/class-secupress-settings-modules.php:574
+msgid "Empty allowed IP list"
+msgstr "Leere Liste der zulässigen IP-Adressen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:578
+msgid "Specify an IP to add to the allowed list."
+msgstr ""
+"Gebe eine IP-Adresse an, die der Zulassungsliste hinzugefügt werden soll."
+
+#: free/classes/settings/class-secupress-settings-modules.php:581
+msgid "Allow IP"
+msgstr "IP zulassen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:602
+msgid "Searching..."
+msgstr "Suche..."
+
+#: free/classes/settings/class-secupress-settings-modules.php:604
+msgid "Reset in progress..."
+msgstr "Zurücksetzen läuft..."
+
+#: free/classes/settings/class-secupress-settings-modules.php:604
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: free/classes/settings/class-secupress-settings-modules.php:617
+#, php-format
+msgid "Last %1$s/%2$s allowed IPs:"
+msgstr "Letzte %1$s/%2$s erlaubte IPs:"
+
+#: free/classes/settings/class-secupress-settings-modules.php:647
+msgid "Adding to allowed list…"
+msgstr "Zur Zulassungsliste wird hinzugefügt…"
+
+#: free/classes/settings/class-secupress-settings-modules.php:647
+msgid "Allow"
+msgstr "Erlauben"
+
+#: free/classes/settings/class-secupress-settings-modules.php:685
+msgid ""
+"Post creation or update will not be logged, but rather password and profile "
+"update, email changes, new administrator user, important role has logged "
+"in..."
+msgstr ""
+"Die Erstellung oder Aktualisierung eines Beitrags wird nicht protokolliert, "
+"sondern die Aktualisierung des Passworts und des Profils, E-Mail-Änderungen, "
+"neuer Administratorbenutzer, wichtige Rolle hat sich angemeldet..."
+
+#: free/classes/settings/class-secupress-settings-modules.php:687
+#: free/classes/settings/class-secupress-settings-modules.php:723
+#: free/classes/settings/class-secupress-settings-modules.php:760
+#: free/common.php:245
+msgid "Submit"
+msgstr "Senden"
+
+#: free/classes/settings/class-secupress-settings-modules.php:898
+#, php-format
+msgid "Last hit: %s"
+msgstr "Letzter Treffer: %s"
+
+#: free/classes/settings/class-secupress-settings-modules.php:937
+msgid "No backups found yet."
+msgstr "Es wurden noch keine Sicherungskopien gefunden."
+
+#: free/classes/settings/class-secupress-settings-modules.php:955
+msgid "Backup my database"
+msgstr "Erstelle eine Sicherung meiner Datenbank"
+
+#: free/classes/settings/class-secupress-settings-modules.php:976
+msgid "Backup my files"
+msgstr "Erstelle eine Sicherung meiner Dateien"
+
+#: free/classes/settings/class-secupress-settings-modules.php:993
+#: pro/admin/settings.php:160 pro/admin/settings.php:168
+msgid "Search for malwares"
+msgstr "Suche nach Malware"
+
+#: free/classes/settings/class-secupress-settings.php:268
+msgid "Roles"
+msgstr "Rollen"
+
+#: free/classes/settings/class-secupress-settings.php:287
+#: free/classes/settings/class-secupress-settings.php:293
+#: free/modules/users-login/settings/double-auth.php:61
+#: free/modules/users-login/settings/double-auth.php:67
+msgid "Affected Roles"
+msgstr "Betroffene Rollen"
+
+#: free/classes/settings/class-secupress-settings.php:288
+#: free/modules/users-login/settings/double-auth.php:62
+msgid "Which roles will be affected by this module?"
+msgstr "Welche Rollen werden durch dieses Modul betroffen?"
+
+#: free/classes/settings/class-secupress-settings.php:297
+#: free/modules/users-login/settings/double-auth.php:71
+msgid "Future roles will be automatically checked."
+msgstr "Künftige Rollen werden automatisch überprüft."
+
+#: free/classes/settings/class-secupress-settings.php:917
+msgid "Reset Settings"
+msgstr "Einstellungen zurücksetzen"
+
+#: free/classes/settings/class-secupress-settings.php:933
+msgid "Other tables"
+msgstr "Andere Tabellen"
+
+#: free/classes/settings/class-secupress-settings.php:974
+msgid ""
+"Before you can upload your import file, you will need to fix the following "
+"error:"
+msgstr ""
+"Bevor du deine Importdatei hochladen kannst, musst du folgenden Fehler "
+"beheben:"
+
+#: free/classes/settings/class-secupress-settings.php:983
+msgid "Choose a file from your computer:"
+msgstr "Wähle eine Datei von deinem Rechner:"
+
+#: free/classes/settings/class-secupress-settings.php:983
+#, php-format
+msgid "Maximum size: %s"
+msgstr "Maximale Größe: %s"
+
+#: free/classes/settings/class-secupress-settings.php:999
+msgid "Upload settings"
+msgstr "Upload-Einstellungen"
+
+#: free/classes/settings/class-secupress-settings.php:1023
+#: free/classes/settings/class-secupress-settings.php:1032
+msgid "Download settings"
+msgstr "Lade die Einstellungen herunter"
+
+#: free/classes/settings/class-secupress-settings.php:1112
+#: free/modules/backups/settings/backups-storage.php:75
+#: free/modules/backups/settings/backups-storage.php:77
+msgid "Warning: "
+msgstr "Warnung: "
+
+#: free/classes/settings/class-secupress-settings.php:1437
+msgid "Save All Changes"
+msgstr "Alle Änderungen speichern"
+
+#: free/classes/settings/class-secupress-settings.php:1580
+#: pro/admin/settings.php:233 pro/admin/settings.php:451
+msgid "Hacked Website?"
+msgstr "Gehackte Website?"
+
+#: free/classes/settings/class-secupress-settings.php:1583
+#: pro/admin/settings.php:233 pro/admin/settings.php:451
+msgid ""
+"Well, this is not a good day for you, we will try to make you smile while "
+"we’re working on it!"
+msgstr ""
+"Nun, das ist kein guter Tag für dich, wir werden versuchen, dich zum Lächeln "
+"zu bringen, während wir daran arbeiten!"
+
+#: free/classes/settings/class-secupress-settings.php:1586
+#: free/classes/settings/class-secupress-settings.php:1600
+#: pro/admin/settings.php:233 pro/admin/settings.php:451
+msgid "Ask an Expert"
+msgstr "Frage einen Experten"
+
+#: free/classes/settings/class-secupress-settings.php:1594
+msgid "Pro Config"
+msgstr "Pro Config"
+
+#: free/classes/settings/class-secupress-settings.php:1597
+msgid "Need an Expert to Set-Up SecuPress for You?"
+msgstr "Benötigst du einen Experten, der SecuPress für dich einrichtet?"
+
+#: free/classes/settings/class-secupress-settings.php:1610
+msgid "FAQ"
+msgstr "FAQ"
+
+#: free/classes/settings/class-secupress-settings.php:1613
+msgid "All the answers to your questions."
+msgstr "Alle Antworten auf deine Fragen."
+
+#: free/classes/settings/class-secupress-settings.php:1616
+msgid "faq"
+msgstr "faq"
+
+#: free/classes/settings/class-secupress-settings.php:1616
+msgid "Read the FAQ"
+msgstr "Häufige Fragen"
+
+#: free/classes/settings/class-secupress-settings.php:1624
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: free/classes/settings/class-secupress-settings.php:1627
+msgid "We already have some solutions for you."
+msgstr "Wir haben bereits einige Lösungen für dich."
+
+#: free/classes/settings/class-secupress-settings.php:1630
+msgid "Read the docs"
+msgstr "Dokumente lesen"
+
+#: free/classes/settings/class-secupress-settings.php:1641
+msgid "Got an issue? Ask for support."
+msgstr "Hast du ein Problem? Bitte um Unterstützung."
+
+#: free/classes/settings/class-secupress-settings.php:1644
+msgid "Ask for support"
+msgstr "Bitte um Support"
+
+#: free/common.php:40
+msgid "Unlock link expired."
+msgstr "Der Link zum Entsperren ist abgelaufen."
+
+#: free/common.php:124 free/common.php:125
+#: free/modules/users-login/plugins/blacklist-logins.php:46
+#: free/modules/users-login/plugins/stop-user-enumeration.php:86
+#: free/modules/wordpress-core/plugins/wp-config-constant-repair.php:44
+#: pro/admin/ajax-post-callbacks.php:22
+#: pro/modules/users-login/plugins/sessions-control.php:359
+#: pro/modules/users-login/plugins/sessions-control.php:395
+#: pro/modules/users-login/plugins/sessions-control.php:490
+#: pro/modules/users-login/plugins/sessions-control.php:544
+msgid "Something went wrong."
+msgstr "Etwas ist schief gelaufen."
+
+#: free/common.php:133
+msgid "Error: the email field is empty."
+msgstr "Fehler: Das E-Mail-Feld ist leer."
+
+#: free/common.php:144
+#, php-format
+msgid "Error: The email address %s is not valid."
+msgstr "Fehler: Die E-Mail-Adresse %s ist ungültig."
+
+#: free/common.php:155
+msgid ""
+"Error: This email address does not belong to an authorized "
+"role."
+msgstr ""
+"Fehler: Diese E-Mail-Adresse gehört nicht zu einer "
+"autorisierten Rolle."
+
+#: free/common.php:164
+#, php-format
+msgid ""
+"You got yourself locked out?\n"
+"\n"
+"No problem, simply follow this link to %s.\n"
+"\n"
+"Regards,\n"
+"All at ###SITENAME###\n"
+"###SITEURL###"
+msgstr ""
+"Du hast dich aussperren lassen?\n"
+"\n"
+"Kein Problem, folge einfach diesem Link, um %s.\n"
+"\n"
+"Grüße\n"
+"Alles unter ###SITENAME###\n"
+"###SITEURL###"
+
+#: free/common.php:171
+msgid "unlock yourself"
+msgstr "Entsperre dich selbst"
+
+#: free/common.php:174
+#, php-format
+msgid "Unban yourself from %s"
+msgstr "Entsperre dich selbst von %s"
+
+#: free/common.php:196
+msgid "Too bad"
+msgstr "Zu schlecht"
+
+#: free/common.php:197
+msgid "The message could not be sent. Sorry"
+msgstr "Die Mitteilung konnte nicht versandt werden. Entschuldigung"
+
+#: free/common.php:203
+msgid "Message sent"
+msgstr "Nachricht gesendet"
+
+#: free/common.php:204
+msgid "Everything went fine, your message is on its way to your mailbox."
+msgstr "Alles lief prima, deine Nachricht ist auf dem Weg in deine Mailbox."
+
+#: free/common.php:233
+#, php-format
+msgid "Your IP address %s
has been banned."
+msgstr "Deine IP-Adresse %s
wurde verbannt."
+
+#: free/common.php:239 free/modules/users-login/settings/move-login.php:144
+msgid ""
+"If you are Administrator and have been accidentally locked out, enter your "
+"email address here to unlock yourself."
+msgstr ""
+"Wenn du Administrator bist und dich versehentlich ausgesperrt hast, gib "
+"deine E-Mail-Adresse hier ein, damit du wieder hereinkommst."
+
+#: free/common.php:241
+msgid "Your email address:"
+msgstr "Deine E-Mail-Adresse:"
+
+#: free/functions/common.php:246
+msgid "Congratulations! 🎉"
+msgstr "Glückwunsch! 🎉"
+
+#: free/functions/common.php:250
+msgid "Almost perfect!"
+msgstr "Fast perfekt!"
+
+#: free/functions/common.php:254
+msgid "Not bad, but try to fix more items."
+msgstr "Nicht schlecht, aber versuche, noch mehr zu beheben."
+
+#: free/functions/common.php:258
+msgid "Well, it’s not good yet."
+msgstr "Nun, es ist noch nicht gut."
+
+#: free/functions/common.php:262
+msgid "Better than nothing, but still not good."
+msgstr "Besser als nichts, aber noch nicht OK."
+
+#: free/functions/common.php:266
+msgid "Not good at all, fix more issues."
+msgstr "Überhaupt nicht gut, behebe mehr Probleme."
+
+#: free/functions/common.php:269
+msgid "Bad, fix issues right away!"
+msgstr "Schlecht, behebe sofort einige Probleme!"
+
+#: free/functions/common.php:272
+msgid "Still very bad, start fixing things!"
+msgstr "Immer noch ziemlich schlecht. Fang an, Dinge zu beheben!"
+
+#: free/functions/common.php:275
+msgid "Very bad. You should take some actions."
+msgstr "Sehr schlecht. Du solltest etwas unternehmen."
+
+#: free/functions/common.php:278
+msgid "Very very bad, please fix something!"
+msgstr "Sehr, sehr schlecht. Bitte tu etwas!"
+
+#: free/functions/common.php:281
+msgid "Very very, really very bad."
+msgstr "Wirklich ganz übel."
+
+#: free/functions/common.php:287
+#, php-format
+msgid "Your grade is %1$s with %2$d good scanned item."
+msgid_plural "Your grade is %1$s with %2$d good scanned items."
+msgstr[0] "Deine Note ist %1$s mit %2$d gut gescanntes Element."
+msgstr[1] "Deine Note ist %1$s mit %2$d gut gescannten Elementen."
+
+#: free/functions/common.php:450
+#, php-format
+msgid "Hidden by %s."
+msgstr "Versteckt von %s."
+
+#: free/functions/common.php:513
+msgid "You are not allowed to access the requested page."
+msgstr ""
+"Du hast nicht die Berechtigung, auf die angeforderte Seite zuzugreifen."
+
+#: free/functions/common.php:518
+msgid "Logged Details:"
+msgstr "Protokollierte Details:"
+
+#: free/functions/common.php:520
+#, php-format
+msgid "Your IP: %s"
+msgstr "Deine IP: %s"
+
+#: free/functions/common.php:521
+#, php-format
+msgid "Time: %s"
+msgstr "Zeit: %s"
+
+#: free/functions/common.php:521
+msgid "F j, Y g:i a"
+msgstr "F j, Y g:i a"
+
+#: free/functions/common.php:522
+#, php-format
+msgid "Reason: %s"
+msgstr "Grund: %s"
+
+#: free/functions/common.php:523
+#, php-format
+msgid "Support ID: %s"
+msgstr "Support-ID: %s"
+
+#: free/functions/common.php:1621
+msgctxt "User role"
+msgid "Administrator"
+msgstr "Administrator"
+
+#: free/functions/common.php:1622
+msgctxt "User role"
+msgid "Editor"
+msgstr "Editor"
+
+#: free/functions/common.php:1623
+msgctxt "User role"
+msgid "Author"
+msgstr "Autor"
+
+#: free/functions/common.php:1624
+msgctxt "User role"
+msgid "Contributor"
+msgstr "Mitarbeiter"
+
+#: free/functions/common.php:1625
+msgctxt "User role"
+msgid "Subscriber"
+msgstr "Abonnent"
+
+#: free/functions/common.php:1669
+msgid "New"
+msgstr "Neu"
+
+#: free/functions/deprecated.php:51
+#, php-format
+msgid "License email: %s"
+msgstr "Lizenz-E-Mail: %s"
+
+#: free/functions/deprecated.php:52
+#, php-format
+msgid "License key: %s"
+msgstr "Lizenzschlüssel: %s"
+
+#: free/functions/deprecated.php:53
+#, php-format
+msgid "Version of SecuPress Pro: %s"
+msgstr "SecuPress Pro-Version: %s"
+
+#: free/functions/deprecated.php:53
+msgid "Version of SecuPress Pro: inactive"
+msgstr "SecuPress Pro-Version: inaktiv"
+
+#: free/functions/deprecated.php:62
+msgid ""
+"Your message has been sent, we will come back to you shortly. Thank you."
+msgstr ""
+"Deine Nachricht wurde versandt, wir melden uns in Kürze bei dir. Danke."
+
+#: free/functions/deprecated.php:70
+#, php-format
+msgid ""
+"Something prevented your message to be sent. Please send it manually to %s. "
+"Thank you."
+msgstr ""
+"Etwas hat verhindert, dass deine Nachricht versandt wurde. Bitte schicke sie "
+"manuell an %s. Danke."
+
+#: free/functions/deprecated.php:128
+#, php-format
+msgid ""
+"Your Pro license is not valid or is not set yet. If you want to activate all "
+"the Pro features, premium support and updates, take a look at %s."
+msgstr ""
+"Deine Pro-Lizenz ist nicht gültig oder noch nicht eingestellt. Wenn du alle "
+"Pro-Features, Premium-Support und Aktualisierungen aktivieren möchtest, sieh "
+"dir %s an."
+
+#: free/functions/deprecated.php:129
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:90
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:100
+msgid "the plugin settings page"
+msgstr "die Plugin-Einstellungsseite"
+
+#: free/functions/deprecated.php:152 free/functions/deprecated.php:155
+#, php-format
+msgctxt "User full name. 1: first name, 2: last name"
+msgid "%1$s %2$s"
+msgstr "%1$s %2$s"
+
+#: free/functions/deprecated.php:199
+msgid "network"
+msgstr "Netzwerk"
+
+#: free/functions/deprecated.php:224
+msgid "main site"
+msgstr "Hauptsite"
+
+#: free/functions/deprecated.php:244
+msgid "Must-Use plugin"
+msgstr "Must-Use-Plugin"
+
+#: free/functions/deprecated.php:254
+msgid "drop-in"
+msgstr "Drop-In"
+
+#: free/functions/files.php:572
+msgid "The temporary file could not be created."
+msgstr "Die temporäre Datei konnte nicht erstellt werden."
+
+#: free/functions/formatting.php:272
+#, php-format
+msgid "%s second"
+msgid_plural "%s seconds"
+msgstr[0] "%s Sekunde"
+msgstr[1] "%s Sekunden"
+
+#: free/functions/formatting.php:273
+#, php-format
+msgid "%s minute"
+msgid_plural "%s minutes"
+msgstr[0] "%s Minute"
+msgstr[1] "%s Minuten"
+
+#: free/functions/formatting.php:274
+#, php-format
+msgid "%s hour"
+msgid_plural "%s hours"
+msgstr[0] "%s Stunde"
+msgstr[1] "%s Stunden"
+
+#: free/functions/formatting.php:275
+#, php-format
+msgid "%s day"
+msgid_plural "%s days"
+msgstr[0] "%s Tag"
+msgstr[1] "%s Tage"
+
+#: free/functions/formatting.php:276
+#, php-format
+msgid "%s month"
+msgid_plural "%s months"
+msgstr[0] "%s Monat"
+msgstr[1] "%s Monate"
+
+#: free/functions/formatting.php:277
+#, php-format
+msgid "%s year"
+msgid_plural "%s years"
+msgstr[0] "%s Jahr"
+msgstr[1] "%s Jahre"
+
+#: free/functions/formatting.php:331
+msgid "No Limits (default)"
+msgstr "Keine Limits (Standard)"
+
+#: free/functions/formatting.php:332
+msgid "1440 per day / 1 per min"
+msgstr "1440 pro Tag / 1 pro Minute"
+
+#: free/functions/formatting.php:333
+msgid "288 per day / 1 per 5 min"
+msgstr "288 pro Tag / 1 pro 5 min"
+
+#: free/functions/formatting.php:334
+msgid "96 per day / 1 per 15 min"
+msgstr "96 pro Tag / 1 pro 15 min"
+
+#: free/functions/formatting.php:335
+msgid "48 per day / 1 per 30 min"
+msgstr "48 pro Tag / 1 pro 30 min"
+
+#: free/functions/formatting.php:336
+msgid "24 per day / 1 per hour"
+msgstr "24 pro Tag / 1 pro Stunde"
+
+#: free/functions/formatting.php:337
+msgid "12 per day / 1 per 2 hours"
+msgstr "12 pro Tag / 1 pro 2 Stunden"
+
+#: free/functions/formatting.php:338
+msgid "8 per day / 1 per 3 hours"
+msgstr "8 pro Tag / 1 pro 3 Stunden"
+
+#: free/functions/formatting.php:339
+msgid "6 per day / 1 per 4 hours"
+msgstr "6 pro Tag / 1 pro 4 Stunden"
+
+#: free/functions/formatting.php:340
+msgid "4 per day / 1 per 6 hours"
+msgstr "4 pro Tag / 1 pro 6 Stunden"
+
+#: free/functions/formatting.php:341
+msgid "2 per day / 1 per 12 hours"
+msgstr "2 pro Tag / 1 pro 12 Stunden"
+
+#: free/functions/formatting.php:342
+msgid "1 per day / 1 per 24 hours"
+msgstr "1 pro Tag / 1 pro 24 Stunden"
+
+#: free/functions/formatting.php:343
+msgid "0 Calls (blocked)"
+msgstr "0 Anrufe (blockiert)"
+
+#: free/functions/ip.php:891
+#, php-format
+msgid ""
+"Your IP address %1$s has been banned for %2$s minute, please do not retry "
+"until then."
+msgid_plural ""
+"Your IP address %1$s has been banned for %2$s minutes, please do not retry "
+"until then."
+msgstr[0] ""
+"Deine IP-Adresse%1$s für %2$s Minute gesperrt wurde, versuche es bitte bis "
+"dahin nicht erneut."
+msgstr[1] ""
+"Deine IP-Adresse%1$s für %2$s Minuten gesperrt wurde, versuche es bitte bis "
+"dahin nicht erneut."
+
+#: free/functions/modules.php:22 free/functions/modules.php:30
+msgid "Settings, Import & Export"
+msgstr "Einstellungen, Import & Export"
+
+#: free/functions/modules.php:27
+msgid "License Information"
+msgstr "Lizenz Informationen"
+
+#: free/functions/modules.php:28 free/modules/welcome/settings/wl.php:10
+#: pro/admin/modules/wl.php:7
+msgid "White Label"
+msgstr "White Label"
+
+#: free/functions/modules.php:29
+#: free/modules/welcome/settings/advanced-settings.php:9
+msgid "Advanced Settings"
+msgstr "Erweiterte Einstellungen"
+
+#: free/functions/modules.php:34
+msgid "Users & Login"
+msgstr "Benutzer & Anmeldung"
+
+#: free/functions/modules.php:38
+msgid "Protect your users"
+msgstr "Schütze deine Benutzer"
+
+#: free/functions/modules.php:41
+msgid "Move Login Page"
+msgstr "Anmeldeseite verschieben"
+
+#: free/functions/modules.php:42
+msgid "Limit Login Attempts"
+msgstr "Aantal inlogpogingen beperken"
+
+#: free/functions/modules.php:43
+msgid "Ban Non Existing Users"
+msgstr "Nicht vorhandene Benutzer sperren"
+
+#: free/functions/modules.php:44
+#: free/modules/users-login/settings/login-protection.php:64
+msgid "Session Control"
+msgstr "Sitzungs-Überwachung"
+
+#: free/functions/modules.php:45
+#: free/modules/users-login/settings/login-protection.php:80
+msgid "Login Errors"
+msgstr "Login-Fehler"
+
+#: free/functions/modules.php:46
+msgid "2 Factors Authentication"
+msgstr "2-Faktoren-Authentifizierung"
+
+#: free/functions/modules.php:47
+msgid "Captcha"
+msgstr "Captcha"
+
+#: free/functions/modules.php:48
+#: free/modules/users-login/settings/password-policy.php:10
+msgid "Password Lifespan"
+msgstr "Passwort-Lebensspanne"
+
+#: free/functions/modules.php:49
+msgid "Strong Password"
+msgstr "Sicheres Passwort"
+
+#: free/functions/modules.php:50
+#: free/modules/users-login/settings/blacklist-logins.php:16
+msgid "Forbid User Creation"
+msgstr "Benutzererstellung verbieten"
+
+#: free/functions/modules.php:52
+#: free/modules/users-login/settings/blacklist-logins.php:36
+msgid "Forbid User Enumeration"
+msgstr "Benutzeraufzählung verbieten"
+
+#: free/functions/modules.php:53
+msgid "Lock Default Role"
+msgstr "Standardrolle sperren"
+
+#: free/functions/modules.php:54
+msgid "Lock Membership"
+msgstr "Mitgliedschaft sperren"
+
+#: free/functions/modules.php:55
+msgid "Lock Admin Email"
+msgstr "Admin-E-Mail-Adresse sperren"
+
+#: free/functions/modules.php:59
+msgid "Plugins & Themes"
+msgstr "Plugins & Themes"
+
+#: free/functions/modules.php:63
+msgid "Check your plugins & themes"
+msgstr "Prüfe deine Plugins & Themes"
+
+#: free/functions/modules.php:66
+msgid "Disallow .zip uploads"
+msgstr ".zip Uploads nicht zulassen"
+
+#: free/functions/modules.php:67
+msgid "Plugins Installation"
+msgstr "Plugins Installation"
+
+#: free/functions/modules.php:68
+msgid "Plugins Activation"
+msgstr "Plugin-Aktivierung"
+
+#: free/functions/modules.php:69
+msgid "Plugins Deactivation"
+msgstr "Deaktivierung von Plugins"
+
+#: free/functions/modules.php:70
+msgid "Plugins Deletion"
+msgstr "Plugins löschen"
+
+#: free/functions/modules.php:71
+#: free/modules/plugins-themes/settings/plugins.php:61
+msgid "Detect Bad Plugins"
+msgstr "Erkenne schlechte Plugins"
+
+#: free/functions/modules.php:72
+msgid "Themes Installation"
+msgstr "Themes Installation"
+
+#: free/functions/modules.php:73
+msgid "Themes Switch"
+msgstr "Theme-Wechsel"
+
+#: free/functions/modules.php:74
+msgid "Themes Deletion"
+msgstr "Löschen von Themes"
+
+#: free/functions/modules.php:75
+#: free/modules/plugins-themes/settings/themes.php:51
+msgid "Detect Bad Themes"
+msgstr "Erkenne schlechte Themes"
+
+#: free/functions/modules.php:83
+msgid "Core Tweaking"
+msgstr "Core-Feineinstellung"
+
+#: free/functions/modules.php:86
+#: free/modules/wordpress-core/settings/auto-update.php:12
+msgid "Minor Updates"
+msgstr "Kleinere Updates"
+
+#: free/functions/modules.php:87
+#: free/modules/wordpress-core/settings/auto-update.php:30
+msgid "Major Updates"
+msgstr "Aktualisierung Hauptversionen"
+
+#: free/functions/modules.php:88
+msgid "Database Prefix"
+msgstr "Datenbankpräfix"
+
+#: free/functions/modules.php:89
+msgid "Correct DEBUG Settings"
+msgstr "Korrigieren der DEBUG-Einstellungen"
+
+#: free/functions/modules.php:90
+msgid "Disallow URL Relocation"
+msgstr "URL-Verschiebung nicht zulassen"
+
+#: free/functions/modules.php:91
+msgid "Disallow File Edit"
+msgstr "Dateibearbeitung nicht zulassen"
+
+#: free/functions/modules.php:92
+msgid "Disallow Unfiltered Uploads"
+msgstr "Ungefilterte Uploads nicht zulassen"
+
+#: free/functions/modules.php:93
+msgid "Disallow DB Error Display"
+msgstr "Anzeige von DB-Fehlern nicht zulassen"
+
+#: free/functions/modules.php:94
+msgid "Disallow DB Repair Page"
+msgstr "DB-Reparaturseite nicht zulassen"
+
+#: free/functions/modules.php:95
+msgid "Correct WP Cookie Name"
+msgstr "Korrekter WP-Cookie-Name"
+
+#: free/functions/modules.php:96
+msgid "Correct WP Security Keys"
+msgstr "Korrekte WP-Sicherheitsschlüssel"
+
+#: free/functions/modules.php:104
+msgid "Keep your data safe"
+msgstr "Halt deine Daten sicher"
+
+#: free/functions/modules.php:107
+msgid "XML-RPC Management"
+msgstr "XML-RPC-Verwaltung"
+
+#: free/functions/modules.php:108
+#: free/modules/sensitive-data/settings/content-protect.php:13
+#: pro/modules/sensitive-data/plugins/hotlink.php:27
+#: pro/modules/sensitive-data/plugins/hotlink.php:56
+#: pro/modules/sensitive-data/plugins/hotlink.php:68
+msgid "Anti Hotlink"
+msgstr "Anti-Hotlink"
+
+#: free/functions/modules.php:109
+#: free/modules/sensitive-data/settings/content-protect.php:37
+#: free/modules/sensitive-data/settings/content-protect.php:42
+msgid "Anti 404 Guessing"
+msgstr "Anti 404 Raten"
+
+#: free/functions/modules.php:110
+#: free/modules/sensitive-data/settings/content-protect.php:57
+msgid "Blackhole"
+msgstr "Bot Falle"
+
+#: free/functions/modules.php:114
+msgid "PHP WP Disclosure"
+msgstr "PHP WP Offenlegung"
+
+#: free/functions/modules.php:124
+msgid "Block bad requests"
+msgstr "Blockiere schlechte Anfragen"
+
+#: free/functions/modules.php:127
+#: free/modules/firewall/settings/bbq-headers.php:12
+msgid "Block Bad User Agents"
+msgstr "Blockiere schlechte User-Agents"
+
+#: free/functions/modules.php:129
+#: free/modules/firewall/settings/bbq-headers.php:61
+msgid "Block Fake SEO Bots"
+msgstr "Blockiere gefälschte SEO-Bots"
+
+#: free/functions/modules.php:130
+#: free/modules/firewall/settings/bbq-headers.php:79
+msgid "Block Bad Referers"
+msgstr "Blockiere schlechte Referer"
+
+#: free/functions/modules.php:132
+#: free/modules/firewall/settings/bbq-url-content.php:44
+msgid "Block 404 requests on PHP files"
+msgstr "Blockieren von 404-Anfragen für PHP-Dateien"
+
+#: free/functions/modules.php:133
+msgid "GeoIP Management"
+msgstr "GeoIP-Verwaltung"
+
+#: free/functions/modules.php:141
+msgid "Get rid of bad bots"
+msgstr "Werde schlechte Bots los"
+
+#: free/functions/modules.php:149
+msgid "Clean your files & DB"
+msgstr "Bereinige deine Dateien und Datenbanken"
+
+#: free/functions/modules.php:150
+msgid ""
+"Check file permissions, run monitoring and antivirus on your installation to "
+"verify file integrity."
+msgstr ""
+"Prüfe Dateirechte, führe ein Monitoring und eine Virenprüfung deiner "
+"Installation durch, um die Dateiintegrität zu überprüfen."
+
+#: free/functions/modules.php:156
+msgid "File & DB Scanner"
+msgstr "Datei- und DB-Scanner"
+
+#: free/functions/modules.php:161
+msgctxt "post type general name"
+msgid "Logs and IPs"
+msgstr "Protokolle und IPs"
+
+#: free/functions/modules.php:170 free/modules/logs/settings/banned-ips.php:11
+msgid "Disallowed IPs"
+msgstr "Unzulässige IP-Adressen"
+
+#: free/functions/modules.php:171 free/modules/logs/settings/banned-ips.php:20
+msgid "Allowed IPs"
+msgstr "Zulässige IP-Adressen"
+
+#: free/functions/modules.php:172
+msgid "Action Logs Activation"
+msgstr "Aktivierung von Aktionsprotokollen"
+
+#: free/functions/modules.php:173
+msgid "404 Logs Activation"
+msgstr "Aktivierung von 404-Protokollen"
+
+#: free/functions/modules.php:178
+msgid "Add-ons"
+msgstr "Erweiterungen"
+
+#: free/functions/modules.php:182
+msgid "Improve more"
+msgstr "Mehr verbessern"
+
+#: free/functions/modules.php:183
+msgid "More security with our partners."
+msgstr "Mehr Sicherheit bei unseren Partnern."
+
+#: free/functions/modules.php:189 free/functions/modules.php:193
+#: free/functions/modules.php:234
+#: free/modules/schedules/settings/schedules-backups.php:6
+#: pro/admin/settings.php:481
+msgid "Backups"
+msgstr "Sicherungen"
+
+#: free/functions/modules.php:197
+msgid "Never lose anything"
+msgstr "Verlier nie etwas"
+
+#: free/functions/modules.php:203
+#: free/modules/backups/settings/backups-storage.php:7
+msgid "Backup Storage"
+msgstr "Sicherungsspeicher"
+
+#: free/functions/modules.php:204
+#: free/modules/backups/settings/backup-history.php:5
+#: free/modules/backups/settings/backup-history.php:9
+msgid "Backup History"
+msgstr "Sicherungsverlauf"
+
+#: free/functions/modules.php:205
+msgid "Database Backup"
+msgstr "Datenbank-Sicherung"
+
+#: free/functions/modules.php:206
+#: free/modules/backups/settings/backup-files.php:5
+msgid "Files Backup"
+msgstr "Datei-Sicherung"
+
+#: free/functions/modules.php:214
+msgid "React quickly in case of attack"
+msgstr "Reagiere im Fall eines Angriffs schnell"
+
+#: free/functions/modules.php:219
+#: free/modules/alerts/settings/notification-types.php:6
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: free/functions/modules.php:220
+msgid "Events Alerts"
+msgstr "Ereignis-Benachrichtigungen"
+
+#: free/functions/modules.php:221
+#: free/modules/alerts/settings/daily-reporting.php:6
+msgid "Daily Reports"
+msgstr "Tägliche Berichte"
+
+#: free/functions/modules.php:225
+msgid "Schedules"
+msgstr "Zeitpläne"
+
+#: free/functions/modules.php:229
+msgid "Automate all your tasks"
+msgstr "Automatisiere all deine Aufgaben"
+
+#: free/functions/modules.php:236
+#: free/modules/schedules/settings/schedules-file-monitoring.php:6
+msgid "File Monitoring"
+msgstr "Datei-Monitoring"
+
+#: free/functions/modules.php:593
+#, php-format
+msgid ""
+"Your %1$s file is not writable, you have to edit it manually. Please remove "
+"the rules between %2$s and %3$s from the %1$s file."
+msgstr ""
+"Deine %1$s-Datei ist nicht beschreibbar, du musst sie manuell bearbeiten. "
+"Bitte entferne aus der %1$s-Datei die Regeln zwischen %2$s und %3$s."
+
+#: free/functions/modules.php:607
+#, php-format
+msgid ""
+"Your %1$s file is not writable, you have to edit it manually. Please remove "
+"the rules with %2$s from the %1$s file."
+msgstr ""
+"Deine %1$s-Datei ist nicht beschreibbar, du musst sie manuell bearbeiten. "
+"Bitte entferne aus der %1$s-Datei die Regeln mit %2$s."
+
+#: free/functions/modules.php:730
+#, php-format
+msgid ""
+"Your server runs Nginx. You have to edit the configuration "
+"file manually. Please add the following code to your %1$s file: %2$s"
+msgstr ""
+"Auf deinem Server läuft Nginx. Du musst die "
+"Konfigurationsdatei manuell bearbeiten. Füge der %1$s Datei den folgenden "
+"Code hinzu: %2$s"
+
+#: free/functions/modules.php:742
+msgid ""
+"It seems your server does not use Apache, Nginx"
+"strong>, nor IIS7. This module won’t work."
+msgstr ""
+"Es scheint, dass dein Server weder Apache, Nginx"
+"strong> noch IIS7 verwendet. Dieses Modul funktioniert "
+"nicht."
+
+#: free/modules/addons/settings/backup.php:5
+msgid ""
+"BackWPup is the perfect WordPress Backup Plugin. With over "
+"10 million downloads it is one of the most popular WordPress plugins "
+"worldwide. German engineering and 12 years in the making, over 700.000 "
+"active users speaks for itself. Save your backup wherever and whenever you "
+"want in Dropbox, S3, FTP and other services."
+msgstr ""
+"BackWPup ist das perfekte WordPress-Backup-Plugin. Mit über "
+"10 Millionen Downloads ist es eines der beliebtesten WordPress-Plugins "
+"weltweit. Deutsche Ingenieurskunst und 12 Jahre Entwicklung, über 700.000 "
+"aktive Nutzer sprechen für sich. Speichere dein Backup, wo und wann immer du "
+"magst, in Dropbox, S3, FTP und anderen Diensten."
+
+#: free/modules/addons/settings/backup.php:17
+#: free/modules/addons/settings/logs.php:18
+#: free/modules/addons/settings/monitoring.php:18
+#, php-format
+msgid ""
+"This will install %s from the official WordPress repository."
+msgstr ""
+"Dies wird aus dem offiziellen WordPress-Repository installiert %s"
+"strong> ."
+
+#: free/modules/addons/settings/logs.php:6
+msgid ""
+"WP Activity Log is the most comprehensive & easy to use "
+"WordPress activity log plugin. Keep an activity log of everything that "
+"happens on your WordPress sites and multisite networks with the this plugin."
+msgstr ""
+"WP Activity Log ist das umfassendste und "
+"benutzerfreundlichste WordPress-Aktivitätsprotokoll-Plugin. Führe mit diesem "
+"Plugin ein Aktivitätsprotokoll über alles, was auf deinen WordPress-Seiten "
+"und Multisite-Netzwerken passiert."
+
+#: free/modules/addons/settings/monitoring.php:6
+msgid ""
+"WP Umbrella is the most comprehensive monitoring plugin in "
+"the World. This includes: tracking WordPress PHP errors which can prevent "
+"poor performance and security risks, monitoring uptime, performance and site "
+"health."
+msgstr ""
+"WP Umbrella ist das umfassendste Monitoring-Plugin der "
+"Welt. Dazu gehören: Verfolgung von WordPress-PHP-Fehlern, die schlechte "
+"Leistung und Sicherheitsrisiken verhindern können, Überwachung der "
+"Betriebszeit, Leistung und des Zustands der Website."
+
+#: free/modules/addons/tools.php:36
+msgctxt "Active plugin installations"
+msgid "10+ Million"
+msgstr "10+ Millionen"
+
+#: free/modules/addons/tools.php:50
+#, php-format
+msgid "Install %s now"
+msgstr "%s jetzt installieren"
+
+#: free/modules/addons/tools.php:50
+msgid "Install Now"
+msgstr "Jetzt installieren"
+
+#: free/modules/addons/tools.php:57
+#, php-format
+msgid "Update %s now"
+msgstr "Aktualisiere %s jetzt"
+
+#: free/modules/addons/tools.php:57
+msgid "Update Now"
+msgstr "Jetzt aktualisieren"
+
+#: free/modules/addons/tools.php:64
+msgctxt "plugin"
+msgid "Active"
+msgstr "Aktiv"
+
+#: free/modules/addons/tools.php:66
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:417
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:35
+msgid "Activate"
+msgstr "Aktivieren"
+
+#: free/modules/addons/tools.php:68
+#, php-format
+msgctxt "plugin"
+msgid "Activate %s"
+msgstr "Aktiviere %s"
+
+#: free/modules/addons/tools.php:76
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:417
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:33
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:81
+msgid "Network Activate"
+msgstr "Netzwerk aktivieren"
+
+#: free/modules/addons/tools.php:78
+#, php-format
+msgctxt "plugin"
+msgid "Network Activate %s"
+msgstr "Netzwerk aktiv %s"
+
+#: free/modules/addons/tools.php:89
+msgctxt "plugin"
+msgid "Installed"
+msgstr "Installiert"
+
+#: free/modules/addons/tools.php:116 pro/admin/migrate.php:228
+#, php-format
+msgid "More information about %s"
+msgstr "Mehr Informationen über %s"
+
+#: free/modules/addons/tools.php:116
+msgid "More Details"
+msgstr "Mehr Details"
+
+#: free/modules/addons/tools.php:125
+#, php-format
+msgid "By %s"
+msgstr "Von %s"
+
+#: free/modules/addons/tools.php:135
+msgid "Last Updated:"
+msgstr "Zuletzt aktualisiert:"
+
+#: free/modules/addons/tools.php:139
+#, php-format
+msgid "%s Active Installations"
+msgstr "%s Aktive Installationen"
+
+#: free/modules/alerts/settings/daily-reporting.php:12
+msgid "Summary of important events every day"
+msgstr "Zusammenfassung wichtiger Ereignisse jeden Tag"
+
+#: free/modules/alerts/settings/daily-reporting.php:28
+msgid "midnight"
+msgstr "Mitternacht"
+
+#: free/modules/alerts/settings/daily-reporting.php:30
+msgid "noon"
+msgstr "Mittag"
+
+#: free/modules/alerts/settings/daily-reporting.php:32
+msgid "g:i a"
+msgstr "g:i a"
+
+#: free/modules/alerts/settings/daily-reporting.php:35
+#, php-format
+msgid "Yes, send me a daily report at %s."
+msgstr "Ja, schicke mir einen Tagesbericht an %s."
+
+#: free/modules/alerts/settings/daily-reporting.php:37
+msgid "Yes, send me a daily report."
+msgstr "Ja, schicke mir einen täglichen Bericht."
+
+#: free/modules/alerts/settings/event-alerts.php:6
+msgid "Event Alerts"
+msgstr "Ereignis-Warnmeldungen"
+
+#: free/modules/alerts/settings/event-alerts.php:12
+msgid "Alert me for important events"
+msgstr "Sende mir Warnmeldungen über wichtige Ereignisse"
+
+#: free/modules/alerts/settings/event-alerts.php:17
+msgid "Yes, alert me"
+msgstr "Ja, benachrichtige mich"
+
+#: free/modules/alerts/settings/event-alerts.php:21
+#, php-format
+msgid "Every %d minutes."
+msgstr "Alle %d Minuten."
+
+#: free/modules/alerts/settings/event-alerts.php:26
+msgid "Choose your alerts frequency"
+msgstr "Wähle die Häufigkeit deiner Warnmeldungen"
+
+#: free/modules/alerts/settings/event-alerts.php:27
+msgid ""
+"It would be a bad idea to alert you every time something happens, so "
+"messages will be grouped."
+msgstr ""
+"Es wäre eine schlechte Idee, dich jedesmal zu benachrichtigen, sobald etwas "
+"passiert. Deshalb werden Mitteilungen gruppiert."
+
+#: free/modules/alerts/settings/event-alerts.php:42
+msgid "You will be notified only if something happens."
+msgstr "Du wirst nur benachrichtige, wenn etwas passiert."
+
+#: free/modules/alerts/settings/event-alerts.php:46
+msgid "For some important events, a notification will be sent right away."
+msgstr ""
+"Bei einigen wichtigen Ereignissen erhältst du umgehend eine Benachrichtigung."
+
+#: free/modules/alerts/settings/notification-types.php:12
+#: free/modules/alerts/settings/notification-types.php:14
+#, php-format
+msgid "If you want to get the alerts here in the back-end, %s."
+msgstr "Wenn du Benachrichtigungen hier im Backend bekommen möchtest, %s."
+
+#: free/modules/alerts/settings/notification-types.php:12
+msgid "take a look at the WordPress action logs"
+msgstr "wirf einen Blick auf die WordPress-Aktionsprotokolle"
+
+#: free/modules/alerts/settings/notification-types.php:14
+msgid "please activate the WordPress action logs"
+msgstr "bitte aktiviere die WordPress-Aktionsprotokolle"
+
+#: free/modules/alerts/settings/notification-types.php:19
+msgid "Email Notifications"
+msgstr "E-Mail Benachrichtigungen"
+
+#: free/modules/alerts/settings/notification-types.php:26
+msgid "One address per line."
+msgstr "Eine Adresse pro Zeile."
+
+#: free/modules/alerts/settings/notification-types.php:35
+msgid ""
+"Read our simple documentation page to know how to get your "
+"Webhook Link for Slack."
+msgstr ""
+"Lese unsere einfache Dokumentationsseite , um zu erfahren, "
+"wie Du deinen Webhook-Link für Slack bekommst."
+
+#: free/modules/alerts/settings/notification-types.php:43
+msgid "Slack Webhook Notifications have been accepted."
+msgstr "Slack-Webhook-Benachrichtigungen wurden akzeptiert."
+
+#: free/modules/alerts/settings/notification-types.php:48
+msgid ""
+"You know have to accept the Slack Webhook Notifications in your dedicated "
+"channel."
+msgstr ""
+"Dir ist klar, dass du die Slack-Webhook-Benachrichtigungen in deinem "
+"dedizierten Kanal akzeptieren musst."
+
+#: free/modules/alerts/settings/notification-types.php:53
+msgid "Slack Webhook Notifications"
+msgstr "Slack-Webhook-Benachrichtigungen"
+
+#: free/modules/antispam/plugins/fightspam.php:57
+#, php-format
+msgid ""
+"Can’t process because this username or email belongs to a registered user. "
+"If it’s you, %s."
+msgstr ""
+"Kann nicht verarbeitet werden, da dieser Benutzername oder diese E-Mail-"
+"Adresse zu einem registrierten Benutzer gehört. Wenn du es bist, %s."
+
+#: free/modules/antispam/plugins/fightspam.php:58
+msgid "please log in"
+msgstr "melde sich bitte an"
+
+#: free/modules/antispam/plugins/fightspam.php:62
+msgid "You may want to copy your message before logging in:"
+msgstr "Du kannst deine Nachricht kopieren, bevor du dich anmeldest:"
+
+#: free/modules/antispam/plugins/fightspam.php:887
+msgid "Sorry, you cannot send that now."
+msgstr "Tut mir leid, aber das kannst du jetzt nicht senden."
+
+#: free/modules/antispam/settings/antispam.php:6
+msgid "Anti Spam Rules"
+msgstr "Anti-Spam-Regeln"
+
+#: free/modules/antispam/settings/antispam.php:22
+msgid ""
+"If you do not activate this anti-spam module or remove the comment feature, "
+"please, activate another anti-spam plugin for your security!"
+msgstr ""
+"Wenn du nicht dieses Anti-Spam-Modul aktivierst oder Kommentare abschaltest, "
+"aktiviere bitte zu deiner eigenen Sicherheit ein anderes Anti-Spam-Plugin!"
+
+#: free/modules/antispam/settings/antispam.php:28
+msgid "Which anti-spam do you need"
+msgstr "Welches Anti-Spam brauchst du"
+
+#: free/modules/antispam/settings/antispam.php:30
+msgid "I need comments on my website, fight comment spam."
+msgstr ""
+"Ich brauche Kommentare auf meiner Website, bekämpfe "
+"Kommentar-Spam."
+
+#: free/modules/antispam/settings/antispam.php:31
+msgid ""
+"I do not need comments on my website, remove all the "
+"comment features."
+msgstr ""
+"Ich brauche Kommentare nicht auf meiner Website, entferne "
+"alle Kommentar-Features."
+
+#: free/modules/antispam/settings/antispam.php:37
+msgid ""
+"An anti identity spoof system will also be activated: registered users will "
+"be able to comment using their username and email only if they are logged in."
+msgstr ""
+"Ein Anti-Identitäts-Spoof-System wird ebenfalls aktiviert: Registrierte "
+"Benutzer können nur mit ihrem Benutzernamen und ihrer E-Mail-Adresse "
+"kommentieren, wenn sie angemeldet sind."
+
+#: free/modules/antispam/settings/antispam.php:49
+msgid "Only mark it as spam"
+msgstr "Nur als Spam markieren"
+
+#: free/modules/antispam/settings/antispam.php:50
+msgid "Delete permanently any spam"
+msgstr "Allen Spam dauerhaft löschen"
+
+#: free/modules/antispam/settings/antispam.php:54
+#, php-format
+msgid "Send to trash any spam and delete it after %s day"
+msgid_plural ""
+"Send to trash any spam and delete it after %s days"
+msgstr[0] ""
+"Sende Spam, um ihn in den Papierkorb zu werfen und ihn nach "
+"dem %s Tag zu löschen"
+msgstr[1] ""
+"Sende Spam, um ihn in den Papierkorb zu werfen und ihn nach "
+"%s Tagen zu löschen"
+
+#: free/modules/antispam/settings/antispam.php:58
+msgid "Handling Spam"
+msgstr "Spam-Behandlung"
+
+#: free/modules/antispam/settings/antispam.php:59
+msgid ""
+"Usually WordPress keeps spam in the database, by using the deletion setting, "
+"you will free up some database storage space."
+msgstr ""
+"Normalerweise behält WordPress Spam in der Datenbank. Durch Verwendung der "
+"Lösch-Einstellungen machst du Speicherplatz in deiner Datenbank frei."
+
+#: free/modules/antispam/settings/antispam.php:65
+msgid "How to mark spam"
+msgstr "Wie Spam zu markieren ist"
+
+#: free/modules/antispam/settings/antispam.php:71
+msgid "Shortcode usage"
+msgstr "Verwendung von Shortcode"
+
+#: free/modules/antispam/settings/antispam.php:72
+msgid ""
+"A shortcode can create macros to be used in a post’s "
+"content."
+msgstr ""
+"Ein Shortcode kann Makros erstellen, die im Inhalt eines "
+"Beitrags verwendet werden."
+
+#: free/modules/antispam/settings/antispam.php:76
+msgid "Yes, mark as spam any comment using any shortcode"
+msgstr "Ja, markiere jeden Kommentar als Spam, den einen Shortcode verwendet"
+
+#: free/modules/antispam/settings/antispam.php:80
+msgid ""
+"BBcodes and shortcodes are lookalikes, both will be "
+"blocked. A shortcode looks like [this]
."
+msgstr ""
+"BBcodes und Shortcodes sind Doppelgänger, beide werden "
+"blockiert. Ein Shortcode sieht aus wie [dies]
."
+
+#: free/modules/antispam/settings/antispam.php:87
+msgid "Improve the WordPress comments disallowed terms"
+msgstr "Verbessere die unzulässigen Begriffe für WordPress-Kommentare"
+
+#: free/modules/antispam/settings/antispam.php:88
+msgid "You can improve the list of bad words that will flag comments as spam."
+msgstr ""
+"Du kannst die Liste schlechter Wörter, die Kommentare als Spam kennzeichnen, "
+"verbessern."
+
+#: free/modules/antispam/settings/antispam.php:92
+msgid "Yes, use a better comments disallowed terms to detect spams"
+msgstr ""
+"Ja, verwende bessere Begriffe für Kommentare, die nicht zulässig sind, um "
+"Spam zu erkennen"
+
+#: free/modules/antispam/settings/antispam.php:97
+msgid "Add more than 20,000 words in different languages."
+msgstr "Füge über 20.000 Wörter in verschiedenen Sprachen hinzu."
+
+#: free/modules/antispam/settings/antispam.php:101
+#, php-format
+msgid "As long as the %s file is not readable, this feature can’t be used."
+msgstr ""
+"Solange die %sDatei nicht lesbar ist, kann diese Funktion nicht verwendet "
+"werden."
+
+#: free/modules/antispam/settings/antispam.php:108
+msgid "About Pingbacks & Trackbacks"
+msgstr "Über Pingbacks & Trackbacks"
+
+#: free/modules/antispam/settings/antispam.php:109
+msgid ""
+"If you do not especially use Pingbacks & Trackbacks, you can disable them."
+msgstr ""
+"Wenn du Pingbacks & Trackbacks nicht besonders verwendest, kannst du sie "
+"deaktivieren."
+
+#: free/modules/antispam/settings/antispam.php:113
+msgid "Forbid the usage of Pingbacks & Trackbacks"
+msgstr "Verbiete die Verwendung von Pingbacks & Trackbacks"
+
+#: free/modules/antispam/settings/antispam.php:117
+msgid "It will also hide all Pingbacks & Trackbacks from your post comments."
+msgstr ""
+"Dadurch werden auch alle Pingbacks & Trackbacks aus deinen "
+"Beitragskommentaren versteckt."
+
+#: free/modules/antispam/settings/antispam.php:123
+msgid "Delay before posting a comment"
+msgstr "Verzögerung vor der Veröffentlichung eines Kommentars"
+
+#: free/modules/antispam/settings/antispam.php:124
+msgid ""
+"A human has to read the post then write a comment before posting. Let them "
+"wait 30 secondes before posting."
+msgstr ""
+"Ein Mensch muss den Beitrag lesen und dann einen Kommentar schreiben, bevor "
+"er ihn postet. Lasse sie 30 Sekunden warten, bevor du postest."
+
+#: free/modules/antispam/settings/antispam.php:129
+msgid "Wait 30 seconds before posting a comment"
+msgstr "Warte 0 Sekunden , bevor du einen Kommentar postest"
+
+#: free/modules/antispam/settings/antispam.php:133
+msgid ""
+"If someone tries to post before that, we consider it a bot and block it."
+msgstr ""
+"Wenn jemand versucht, vorher zu posten, betrachten wir ihn als Bot und "
+"blockieren ihn."
+
+#: free/modules/backups/settings/backup-db.php:5
+msgid "Database Backups"
+msgstr "Datenbank-Sicherungen"
+
+#: free/modules/backups/settings/backup-db.php:9
+msgid "Run a Database Backup"
+msgstr "Sichere die Datenbank"
+
+#: free/modules/backups/settings/backup-db.php:10
+msgid "Checked tables will be backed up."
+msgstr "Markierte Tabellen werden gesichert."
+
+#: free/modules/backups/settings/backup-files.php:9
+msgid "Run a Files Backup"
+msgstr "Sichere die Dateien"
+
+#: free/modules/backups/settings/backups-storage.php:14
+#, php-format
+msgid "Backups will be stored in %s. Please, delete them as soon as possible."
+msgstr ""
+"Backups werden in %s gespeichert. Bitte lösche diese so schnell wie möglich."
+
+#: free/modules/backups/settings/backups-storage.php:26
+#, php-format
+msgid ""
+"it seems some folders and a file could not be created. Please make sure to "
+"create a folder %s that contains the following:"
+msgstr ""
+"anscheinend konnten einige Ordner und Dateien nicht erstellt werden. Bitte "
+"lege einen Ordner %s an, der folgendes enthält:"
+
+#: free/modules/backups/settings/backups-storage.php:33
+#, php-format
+msgid "Two folders with the following names: %1$s and %2$s."
+msgstr "Zwei Ordner mit den folgenden Namen: %1$s und %2$s."
+
+#: free/modules/backups/settings/backups-storage.php:40
+#, php-format
+msgid "A %s file containing the following rules:"
+msgstr "Eine %s-Datei, die folgende Regeln enthält:"
+
+#: free/modules/backups/settings/backups-storage.php:51
+#, php-format
+msgid ""
+"it seems some folders could not be created and/or your %1$s file is not "
+"writable. Please make sure to create a folder %2$s that contains these two "
+"folders: %3$s and %4$s. Then add the following rules in your %1$s file:"
+msgstr ""
+"anscheinend konnten einige Ordner nicht erstellt werden und/oder deine %1$s-"
+"Datei ist nicht schreibbar. Bitte lege einen Ordner %2$s an, der diese "
+"beiden Ordner enthält: %3$s und %4$s. Dann füge folgende Regeln in deiner "
+"%1$s-Datei ein:"
+
+#: free/modules/backups/settings/backups-storage.php:63
+#, php-format
+msgid ""
+"please make sure a folder %1$s has been created and it contains these two "
+"folders: %2$s and %3$s. Then add the following rules in your %4$s file:"
+msgstr ""
+"vergewissere dich bitte, dass ein Ordner %1$s erstellt wurde und diese "
+"beiden Ordner enthält: %2$s und %3$s. Dann füge folgende Regeln in deiner "
+"%4$s-Datei ein:"
+
+#: free/modules/backups/tools.php:17
+msgid "Local"
+msgstr "Lokal"
+
+#: free/modules/discloses/plugins/login-errors-disclose.php:23
+msgid "Authentication failed."
+msgstr "Authentifizierung fehlgeschlagen."
+
+#: free/modules/discloses/plugins/wp-version.php:223
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
+
+#: free/modules/discloses/plugins/wp-version.php:223
+msgid "Powered by WordPress"
+msgstr "Präsentiert von WordPress"
+
+#: free/modules/discloses/tools.php:15
+msgid ""
+"Error: There is no user registered with that email address."
+msgstr ""
+"Fehler: Es ist kein Benutzer mit dieser E-Mail-Adresse "
+"registriert."
+
+#: free/modules/discloses/tools.php:16
+msgid "Error: Invalid username or e-mail."
+msgstr ""
+"Fehler: Ungültiger Benutzername oder ungültige E-Mail-"
+"Adresse."
+
+#: free/modules/discloses/tools.php:17
+#: pro/modules/users-login/plugins/passwordless.php:96
+#: pro/modules/users-login/plugins/sessions-control.php:42
+msgid "Error: Invalid username or email."
+msgstr ""
+"Fehler: Ungültiger Benutzername oder ungültige E-Mail-"
+"Adresse."
+
+#: free/modules/discloses/tools.php:18
+#, php-format
+msgid ""
+"Error: Invalid username. Lost your password?"
+""
+msgstr ""
+"Fehler: Ungültiger Benutzername. Passwort "
+"vergessen?"
+
+#: free/modules/discloses/tools.php:19
+msgid "Error: Invalid username."
+msgstr "Fehler: Ungültiger Benutzername."
+
+#: free/modules/discloses/tools.php:19 free/modules/discloses/tools.php:21
+msgid "Lost your password?"
+msgstr "Passwort vergessen?"
+
+#: free/modules/discloses/tools.php:20
+#, php-format
+msgid ""
+"Error: The password you entered for the username "
+"%1$s is incorrect. Lost your password?"
+msgstr ""
+"Fehler: Das Kennwort, das du für den Benutzernamen "
+"%1$s eingegeben hast, ist falsch. Passwort "
+"vergessen?"
+
+#: free/modules/discloses/tools.php:21
+#, php-format
+msgid ""
+"Error: The password you entered for the username %s is "
+"incorrect."
+msgstr ""
+"Fehler: Das Passwort, das du für den Benutzernamen %s "
+"eingegeben hast, ist falsch."
+
+#: free/modules/file-system/settings/bad-file-extensions.php:12
+msgid ""
+"Many file extensions are known to be used by malware, or can pose a threat "
+"if they are vulnerable. Denying direct access to those files will prevent "
+"their use."
+msgstr ""
+"Viele Dateiendungen sind dafür bekannt, für Malware verwendet zu werden. Sie "
+"können eine Bedrohung darstellen, wenn sie anfällig sind. Wenn du den "
+"direkten Zugriff auf diese Dateien verweigerst, wird deren Verwendung "
+"verhindert."
+
+#: free/modules/file-system/settings/bad-file-extensions.php:19
+msgid "Uploads folder"
+msgstr "Uploads-Ordner"
+
+#: free/modules/file-system/settings/bad-file-extensions.php:24
+msgid "Yes, deny direct access to those files in the uploads folder."
+msgstr "Ja, verweigere direkten Zugriff auf dieses Dateien im Uploads-Ordner."
+
+#: free/modules/file-system/settings/bad-file-extensions.php:37
+#: free/modules/sensitive-data/settings/content-protect.php:140
+#: free/modules/sensitive-data/settings/content-protect.php:199
+#: free/modules/sensitive-data/settings/content-protect.php:256
+#: free/modules/sensitive-data/settings/content-protect.php:313
+#: free/modules/sensitive-data/settings/content-protect.php:370
+#: free/modules/sensitive-data/settings/content-protect.php:428
+#, php-format
+msgid "You need to add the following code to your %s file:"
+msgstr "Du musst folgenden Code in deiner %s-Datei einfügen:"
+
+#: free/modules/file-system/settings/bad-file-extensions.php:43
+#: free/modules/file-system/settings/bad-file-extensions.php:50
+#: free/modules/sensitive-data/settings/content-protect.php:89
+#: free/modules/sensitive-data/settings/content-protect.php:96
+#: free/modules/sensitive-data/settings/content-protect.php:146
+#: free/modules/sensitive-data/settings/content-protect.php:153
+#: free/modules/sensitive-data/settings/content-protect.php:205
+#: free/modules/sensitive-data/settings/content-protect.php:212
+#: free/modules/sensitive-data/settings/content-protect.php:262
+#: free/modules/sensitive-data/settings/content-protect.php:269
+#: free/modules/sensitive-data/settings/content-protect.php:319
+#: free/modules/sensitive-data/settings/content-protect.php:326
+#: free/modules/sensitive-data/settings/content-protect.php:376
+#: free/modules/sensitive-data/settings/content-protect.php:383
+#: free/modules/sensitive-data/settings/content-protect.php:434
+#: free/modules/sensitive-data/settings/content-protect.php:441
+#, php-format
+msgid "Your %s file is not writable, you need to add the following code to it:"
+msgstr ""
+"Deine %s-Datei ist nicht schreibbar, du musst in ihr folgenden Code einfügen:"
+
+#: free/modules/file-system/settings/bad-file-extensions.php:56
+#: free/modules/sensitive-data/settings/content-protect.php:102
+#: free/modules/sensitive-data/settings/content-protect.php:159
+#: free/modules/sensitive-data/settings/content-protect.php:218
+#: free/modules/sensitive-data/settings/content-protect.php:275
+#: free/modules/sensitive-data/settings/content-protect.php:332
+#: free/modules/sensitive-data/settings/content-protect.php:389
+#: free/modules/sensitive-data/settings/content-protect.php:447
+msgctxt "rewrite rules"
+msgid "Rules"
+msgstr "Regeln"
+
+#: free/modules/file-system/settings/file-scanner.php:5
+msgid ""
+"Scanning your files and database will reveal which ones are not from "
+"WordPress and which files or post content have been modified without your "
+"consent. Some web malwares are known around the web, we add them to our "
+"malware database and use it to detect what’s on your website."
+msgstr ""
+"Wenn du deine Dateien und deine Datenbank scannst, siehst du, welche nicht "
+"von WordPress stammen und welche Dateien oder Beitragsinhalte ohne deine "
+"Zustimmung geändert wurden. Einige Web-Malware ist im Internet bekannt. Wir "
+"fügen sie unserer Malware-Datenbank hinzu und verwenden sie, um zu erkennen, "
+"was sich auf deiner Website befindet."
+
+#: free/modules/file-system/settings/file-scanner.php:6
+msgid "Malware Scanner"
+msgstr "Malware-Scanner"
+
+#: free/modules/file-system/settings/file-scanner.php:10
+msgid "Files and Database Scanner"
+msgstr "Datei- und Datenbank-Scanner"
+
+#: free/modules/firewall/callbacks.php:152
+msgid ""
+"You cannot block your own country, it has been removed from the disallowed "
+"list."
+msgstr ""
+"Du kannst dein eigenes Land nicht blockieren, es wurde von der Liste der "
+"verbotenen Länder entfernt."
+
+#: free/modules/firewall/callbacks.php:159
+msgid ""
+"You cannot block your own country, it has been added to the allowed list."
+msgstr ""
+"Du kannst dein eigenes Land nicht blockieren, es wurde zur Zulassungsliste "
+"hinzugefügt."
+
+#: free/modules/firewall/settings/bbq-headers.php:6
+msgid "Bad Headers"
+msgstr "Schlechte Header"
+
+#: free/modules/firewall/settings/bbq-headers.php:17
+msgid "Yes, protect my site from bad user-agents"
+msgstr "Ja, schütze meine Website vor schlechten User-Agents"
+
+#: free/modules/firewall/settings/bbq-headers.php:21
+msgid ""
+"Bots are commonly use their own headers containing some known bad user "
+"agent. You can block them to prevent their unwanted visits."
+msgstr ""
+"Bots nutzen häufig ihre eigenen Header, die in bekannten schlechten User "
+"Agents enthalten sind. Du kannst sie blockieren, um ihre unerwünschten "
+"Besuche zu verhindern."
+
+#: free/modules/firewall/settings/bbq-headers.php:28
+msgid "User-Agents List"
+msgstr "Liste der User-Agents"
+
+#: free/modules/firewall/settings/bbq-headers.php:29
+msgid ""
+"Automatically block any user agent containing any HTML tag in it or "
+"containing more than 255 characters automatically."
+msgstr ""
+"Blockiere automatisch jeden User Agent, der irgendein HTML-Tag oder mehr als "
+"255 Zeichen enthält."
+
+#: free/modules/firewall/settings/bbq-headers.php:33
+msgid "List of User Agents to block"
+msgstr "Liste der zu blockierenden User Agents"
+
+#: free/modules/firewall/settings/bbq-headers.php:37
+msgid ""
+"Add or remove User Agents you want to be blocked. Separate user agents with "
+"commas."
+msgstr ""
+"Füge User Agents, die du blockieren möchtest, hinzu oder lösche sie. Trenne "
+"User Agents mit Kommas."
+
+#: free/modules/firewall/settings/bbq-headers.php:45
+msgid ""
+"The 3 known safe request methods are GET
, POST
and "
+"HEAD
."
+msgstr ""
+"Die drei bekannten sicheren Anfragemethoden sind GET
, "
+"POST
und HEAD
."
+
+#: free/modules/firewall/settings/bbq-headers.php:50
+msgid "Yes, protect my site from bad request methods"
+msgstr "Ja, schütze meine Website vor schlechten Anfragemethoden"
+
+#: free/modules/firewall/settings/bbq-headers.php:54
+msgid ""
+"Some other request methods can be used to retrieve information from your "
+"site, avoid them!"
+msgstr ""
+"Einige andere Abfragemethoden können dazu verwendet werde, Informationen von "
+"deiner Website abzurufen. Vermeide diese!"
+
+#: free/modules/firewall/settings/bbq-headers.php:62
+msgid ""
+"Some servers are claming to be GoogleBots (or else), detect and block them."
+msgstr ""
+"Einige Server geben sich als GoogleBots (oder andere) aus, erkennen und "
+"blockieren sie."
+
+#: free/modules/firewall/settings/bbq-headers.php:68
+msgid "Yes, protect my site from fake SEO Bots"
+msgstr "Ja, meine Website vor gefälschten SEO-Bots schützen"
+
+#: free/modules/firewall/settings/bbq-headers.php:72
+msgid ""
+"Impossible to use this feature, your server can not check a hostname "
+"correctly! Sorry."
+msgstr ""
+"Es ist unmöglich, diese Funktion zu verwenden, dein Server kann einen "
+"Hostnamen nicht korrekt überprüfen! Tut mir Leid."
+
+#: free/modules/firewall/settings/bbq-headers.php:80
+msgid ""
+"You may want to forbid access to your site depending on from where requests "
+"are."
+msgstr ""
+"Möglicherweise möchtest du den Zugriff auf deine Website verbieten, je "
+"nachdem, von wo aus die Anfragen kommen."
+
+#: free/modules/firewall/settings/bbq-headers.php:85
+msgid ""
+"Yes, protect my site from bad referers. Check to see list below."
+msgstr ""
+"Ja, schütze meine Website vor schlechten Referern. Siehe dir die Liste "
+"unten an."
+
+#: free/modules/firewall/settings/bbq-headers.php:90
+msgid "Referers List"
+msgstr "Liste der Referenten"
+
+#: free/modules/firewall/settings/bbq-headers.php:98
+msgid "One URL per line."
+msgstr "Eine URL pro Zeile."
+
+#: free/modules/firewall/settings/bbq-url-content.php:6
+msgid "Malicious URLs"
+msgstr "Bösartige URLs"
+
+#: free/modules/firewall/settings/bbq-url-content.php:17
+msgid "Yes, protect my site from malicious contents in URLs"
+msgstr "Ja, schütze meine Website vor bösartigen Inhalten in URLs"
+
+#: free/modules/firewall/settings/bbq-url-content.php:21
+msgid ""
+"When accessing your website, attackers or some scripts, scanners will try to "
+"add bad params to your URLs to see if a vulnerability could be exploited."
+msgstr ""
+"Angreifer, Scanner oder manche Skripte versuchen, auf deine Website "
+"zuzugreifen, um herauszufinden, ob eine Schwachstelle ausgenutzt werden "
+"kann. um schlechte Parameter zu deinen URLs hinzuzufügen."
+
+#: free/modules/firewall/settings/bbq-url-content.php:28
+msgid "Bad Contents List"
+msgstr "Liste schlechter Inhalte"
+
+#: free/modules/firewall/settings/bbq-url-content.php:29
+msgid ""
+"Automatically block any request containing any of these keywords "
+"automatically."
+msgstr ""
+"Blockiere automatisch alle Abfragen die eines dieser Schlüsselwörter "
+"enthalten."
+
+#: free/modules/firewall/settings/bbq-url-content.php:33
+msgid "List of bad keywords in requests to block"
+msgstr "Liste der schlechten Schlüsselwörter in zu blockierenden Abfragen"
+
+#: free/modules/firewall/settings/bbq-url-content.php:37
+msgid ""
+"Add or remove keywords you want to be blocked. Keywords are separated by "
+"commas."
+msgstr ""
+"Füge Schlüsselwörter, die du blockiert haben möchtest, hinzu oder lösche "
+"sie. Schlüsselwörter werden mit Kommas getrennt."
+
+#: free/modules/firewall/settings/bbq-url-content.php:45
+msgid ""
+"Allows you to redirect people who attempt to access hidden or malicious PHP "
+"files on a 404 page not found error."
+msgstr ""
+"Ermöglicht es Ihnen, Personen umzuleiten, die versuchen, auf versteckte oder "
+"bösartige PHP-Dateien zuzugreifen, wenn die 404-Seite nicht gefunden wurde."
+
+#: free/modules/firewall/settings/bbq-url-content.php:50
+msgid "Yes, protect my site from 404 on .php files"
+msgstr "Ja, meine Website vor 404 auf .php Dateien schützen"
+
+#: free/modules/firewall/settings/geoip-system.php:6
+msgid "Country Management"
+msgstr "Länder-Verwaltung"
+
+#: free/modules/firewall/settings/geoip-system.php:22
+msgid "Use GeoIP Management"
+msgstr "Verwende GeoIP-Verwaltung"
+
+#: free/modules/firewall/settings/geoip-system.php:23
+msgid ""
+"Country management is an effective way to stop attacks of any type and stop "
+"malicious activities that originate from a specific region of the world."
+msgstr ""
+"Länder-Verwaltung ist eine effektive Methode, jede Art von Angriffen und "
+"bösartigen Aktivititäten aus bestimmten Regionen der Welt zu stoppen."
+
+#: free/modules/firewall/settings/geoip-system.php:28
+msgid "Allow or disallow countries"
+msgstr "Länder zulassen oder verbieten"
+
+#: free/modules/firewall/settings/geoip-system.php:30
+msgid "Do not block countries from visiting my website"
+msgstr "Blockiere keine Länder vom Besuch meiner Website"
+
+#: free/modules/firewall/settings/geoip-system.php:31
+msgid ""
+"Block the selected countries from visiting my website "
+"(disallowed list)"
+msgstr ""
+"Blockiere die ausgewählten Länder für den Besuch meiner "
+"Website (Negativliste)"
+
+#: free/modules/firewall/settings/geoip-system.php:32
+msgid ""
+"Only allow the selected countries to visit my website "
+"(allowed list)"
+msgstr ""
+"Erlaube nur den ausgewählten Ländern, meine Website zu "
+"besuchen (Positivliste)"
+
+#: free/modules/firewall/settings/geoip-system.php:37
+msgid ""
+"Remember that the detection of a visit is based on the IP address, so it’s "
+"effective for almost all automated attacks."
+msgstr ""
+"Denke daran, dass die Erkennung eines Besuchs auf der IP-Adresse basiert und "
+"daher für fast alle automatisierten Angriffe wirksam ist."
+
+#: free/modules/firewall/settings/geoip-system.php:41
+msgid ""
+"This module will store GeoIP data in the database, raising it for about 25MB."
+msgstr ""
+"Dieses Modul speichert GeoIP-Daten in der Datenbank und erhöht sie um ca. 25 "
+"MB."
+
+#: free/modules/firewall/settings/geoip-system.php:47
+msgid "SEO bots GeoIP bypass"
+msgstr "SEO-Bots GeoIP-Umgehung"
+
+#: free/modules/firewall/settings/geoip-system.php:48
+msgid ""
+"SEO bots are allowed to visit your website even if they are coming from a "
+"blocked country."
+msgstr ""
+"SEO-Bots dürfen deine Website besuchen, auch wenn sie aus einem blockierten "
+"Land kommen."
+
+#: free/modules/firewall/settings/geoip-system.php:54
+msgid "Yes, still block SEO bots with GeoIP blocking"
+msgstr "Ja, blockiere immer noch SEO-Bots mit GeoIP-Blockierung"
+
+#: free/modules/firewall/settings/geoip-system.php:58
+msgid ""
+"If you block like the USA, any SEO bots will be blocked (Google?), keep this "
+"in mind."
+msgstr ""
+"Wenn du wie in den USA blockierst, werden alle SEO-Bots blockiert (Google?), "
+"denke daran."
+
+#: free/modules/firewall/settings/geoip-system.php:62
+msgid "We recommand to let this setting deactivated."
+msgstr "Wir empfehlen, diese Einstellung deaktiviert zu lassen."
+
+#: free/modules/firewall/settings/geoip-system.php:68
+msgid "Which countries?"
+msgstr "Welche Länder?"
+
+#: free/modules/firewall/settings/geoip-system.php:69
+msgid "Add or remove countries you want to manage for your website."
+msgstr ""
+"Länder hinzufügen oder löschen, die du für deine Website verwalten möchtest."
+
+#: free/modules/firewall/settings/geoip-system.php:76
+msgid "Not installed yet"
+msgstr "Noch nicht installiert"
+
+#: free/modules/firewall/settings/geoip-system.php:78
+#: free/modules/plugins-themes/settings/plugins.php:81
+#: free/modules/plugins-themes/settings/themes.php:71
+msgid "Manual Update"
+msgstr "Manuell aktualisieren"
+
+#: free/modules/firewall/settings/geoip-system.php:82
+msgid "Update the GeoIP database now"
+msgstr "Aktualisiere jetzt die GeoIP-Datenbank"
+
+#: free/modules/firewall/settings/geoip-system.php:82
+#: free/modules/plugins-themes/settings/plugins.php:85
+#: free/modules/plugins-themes/settings/themes.php:75
+msgid "Save changes first"
+msgstr "Speichere die Änderungen zuerst"
+
+#: free/modules/firewall/settings/geoip-system.php:86
+#, php-format
+msgid ""
+"The GeoIP database will update everyday automatically.
If you encounter "
+"strange behaviour like too much blocking or not enough, try to update "
+"manually.
Last update: %s"
+msgstr ""
+"Die GeoIP-Datenbank wird täglich automatisch aktualisiert.
Wenn du auf "
+"seltsames Verhalten stößt, z. B. zu viel oder zu wenig blockieren, versuche, "
+"manuell zu aktualisieren.
Letzte Änderung: %s"
+
+#: free/modules/firewall/tools.php:135
+msgid "Antispam, Anti-Usurpation"
+msgstr "Anti-Spam, Anti-Usurpation"
+
+#: free/modules/firewall/tools.php:136
+msgid "Antispam, Too soon"
+msgstr "Antispam, Zu früh"
+
+#: free/modules/firewall/tools.php:138
+msgid "Bad Referer URL"
+msgstr "Ungültige Referrer-URL"
+
+#: free/modules/firewall/tools.php:140
+msgid "Bad Host Contents"
+msgstr "Fehlerhafte Hostinhalte"
+
+#: free/modules/firewall/tools.php:141
+msgid "Bad Referer Contents"
+msgstr "Fehlerhafte Referer-Inhalte"
+
+#: free/modules/firewall/tools.php:143
+msgid "Bad GeoIP"
+msgstr "Fehlerhafte GeoIP"
+
+#: free/modules/firewall/tools.php:145
+msgid "Bad Request Method"
+msgstr "Schlechte Abfragemethode"
+
+#: free/modules/firewall/tools.php:147
+msgid "User-Agent With HTML Tags"
+msgstr "User-Agents mit HTML-Tags"
+
+#: free/modules/firewall/tools.php:148
+msgid "User-Agent Disallowed"
+msgstr "User-Agent nicht zulässig"
+
+#: free/modules/firewall/tools.php:150
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:937
+msgid "Unknown user"
+msgstr "Unbekannter Benutzer"
+
+#: free/modules/logs/plugins/http-logs.php:113
+#, php-format
+msgid "This URL has been blocked by %s"
+msgstr "Diese URL wurde blockiert von %s"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-log.php:50
+#, php-format
+msgid "Error 404 for %1$s"
+msgstr "Fehler 404 für %1$s"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-log.php:64
+#, php-format
+msgid "Error 404 for %1$s from IP %4$s"
+msgstr "Fehler 404 für %1$s von IP-%4$s"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:39
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:41
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:48
+msgctxt "post type general name"
+msgid "404 Error Logs"
+msgstr "404-Fehlerprotokolle"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:40
+msgctxt "post type singular name"
+msgid "404 Error Log"
+msgstr "404-Fehlerprotokoll"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:42
+msgid "All 404 Error Logs"
+msgstr "Alle 404 Fehler-Protokolle"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:44
+msgid "Add New 404 Error Log"
+msgstr "Neues 404 Fehler-Protokoll hinzufügen"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:45
+msgid "Edit 404 Error Log"
+msgstr "404 Fehler-Protokoll bearbeiten"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:46
+msgid "New 404 Error Log"
+msgstr "Neues 404 Fehler-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:47
+msgid "View 404 Error Log"
+msgstr "Zeige 404 Fehler-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:49
+msgid "Search 404 Error Logs"
+msgstr "Suche 404 Fehler-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:50
+msgid "No 404 error logs found."
+msgstr "Keine 404 Fehler-Protokolle gefunden."
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:51
+msgid "No 404 error logs found in Trash."
+msgstr "Keine 404 Fehler-Protokolle im Papierkorb gefunden."
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:52
+msgid "Parent 404 Error Log:"
+msgstr "Eltern 404 Fehler-Protokoll:"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:53
+msgid "404 Error Log Archives"
+msgstr "404 Fehler-Protokoll-Archive"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:54
+msgid "Insert into 404 error log"
+msgstr "In 404 Fehler-Protokoll einfügen"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:55
+msgid "Uploaded to this 404 error log"
+msgstr "In dieses 404 Fehler-Protokoll hochgeladen"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:56
+msgid "Filter 404 error logs list"
+msgstr "404 Fehler-Protokoll-Liste"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:57
+msgid "404 Error Logs list navigation"
+msgstr "404 Fehler-Protokoll-Listennavigation"
+
+#: free/modules/logs/plugins/inc/php/404-logs/class-secupress-404-logs.php:58
+msgid "404 Error Logs list"
+msgstr "404 Fehler-Protokoll-Liste"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:114
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:154
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:183
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:223
+#, php-format
+msgid "%1$s, %2$s"
+msgstr "%1$s, %2$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:258
+msgctxt "data"
+msgid "None"
+msgstr "Nichts"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:306
+msgid "Nobody"
+msgstr "Niemand"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:432
+msgid "All Users"
+msgstr "Alle Benutzer"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:568
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:576
+msgid "Plugin(s) activated"
+msgstr "Plugin(s) aktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:572
+msgid "Plugin(s) activated and deactivated"
+msgstr "Plugin(s) aktiviert und deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:580
+msgid "Plugin(s) deactivated"
+msgstr "Plugin(s) deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:584
+msgid "Plugin(s) activated and/or deactivated"
+msgstr "Plugin(s) aktiviert und/oder deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:590
+#, php-format
+msgid "Option %s created"
+msgstr "Option %s erstellt"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:592
+#, php-format
+msgid "Option %s updated"
+msgstr "Option %s aktualisiert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:609
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:617
+msgid "Plugin(s) network activated"
+msgstr "Plugin(s) netzwerkweit aktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:613
+msgid "Plugin(s) network activated and network deactivated"
+msgstr "Plugin(s) netzwerkweit aktiviert und deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:621
+msgid "Plugin(s) network deactivated"
+msgstr "Plugin(s) netzwerkweit deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:625
+msgid "Plugin(s) network activated and/or network deactivated"
+msgstr "Plugin(s) netzwerkweit aktiviert und/oder netzwerkweit deaktiviert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:631
+#, php-format
+msgid "Network option %s created"
+msgstr "Netzwerkoption %s erstellt"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:633
+#, php-format
+msgid "Network option %s updated"
+msgstr "Netzwerkoption %s aktualisiert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:645
+msgid "New user added (or not)"
+msgstr "Neuer Benutzer hinzugefügt (oder nicht)"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:660
+#, php-format
+msgid "%1$s prevented a request at %2$s"
+msgstr "%1$s verhinderte einen Abruf unter %2$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:661
+#, php-format
+msgid "IP banned: %s"
+msgstr "IP verbannt: %s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:662
+#, php-format
+msgid "Theme activated: %s"
+msgstr "Theme aktiviert: %s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:663
+#, php-format
+msgid "Administrator %s logged in"
+msgstr "Administrator %s hat sich angemeldet"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:664
+#, php-format
+msgid "User deleted: %s"
+msgstr "Benutzer gelöscht: %s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:665
+#, php-format
+msgid "%s’s user data changed"
+msgstr "Benutzerdaten von %s geändert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:666
+#, php-format
+msgid "New user %s created"
+msgstr "Neuer Benutzer %s erstellt"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:667
+#, php-format
+msgid "User meta %2$s added to %1$s"
+msgstr "Benutzer-Meta %2$s zu %1$s hinzugefügt"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:668
+#, php-format
+msgid "User meta %2$s updated for %1$s"
+msgstr "Benutzer-Meta %2$s für %1$s aktualisiert"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:669
+#, php-format
+msgid "User meta %2$s deleted for %1$s"
+msgstr "Benutzer-Meta %2$s für %1$s gelöscht"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:670
+#, php-format
+msgid "Blog %1$s created with %2$s as Administrator"
+msgstr "Blog %1$s erstellt mit %2$s als Administrator"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:671
+#, php-format
+msgid "Blog %s deleted"
+msgstr "Blog %s gelöscht"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:672
+#, php-format
+msgid "E-mail sent from %1$s to %2$s"
+msgstr "E-Mail versandt von %1$s an %2$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:673
+#, php-format
+msgid "External request to %s"
+msgstr "Externe Abfrage von %s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:722
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:730
+#, php-format
+msgid "Plugin(s) activated: %s."
+msgstr "Plugin(s) aktiviert: %s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:726
+#, php-format
+msgid "Plugin(s) activated: %1$s. Plugin(s) deactivated: %2$s."
+msgstr "Plugin(s) aktiviert: %1$s. Plugin(s) deaktiviert: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:734
+#, php-format
+msgid "Plugin(s) deactivated: %2$s."
+msgstr "Plugin(s) deaktiviert: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:738
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:779
+#, php-format
+msgid "Raw data: %1$s %2$s"
+msgstr "Rohdaten: %1$s %2$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:744
+#, php-format
+msgid "Option %1$s created with the following value: %2$s."
+msgstr "Option %1$s erstellt mit dem folgenden Wert: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:746
+#, php-format
+msgid "Option %1$s updated from the value %3$s to %2$s."
+msgstr "Option %1$s aktualisiert von Wert %3$s auf %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:763
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:771
+#, php-format
+msgid "Plugin(s) network activated: %s."
+msgstr "Plugin(s) netzwerkweit aktiviert: %s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:767
+#, php-format
+msgid "Plugin(s) network activated: %1$s. Plugin(s) network deactivated: %2$s."
+msgstr ""
+"Plugin(s) netzwerkweit aktiviert: %1$s. Plugin(s) netzwerkweit deaktiviert: "
+"%2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:775
+#, php-format
+msgid "Plugin(s) network deactivated: %2$s."
+msgstr "Plugin(s) netzwerkweit deaktiviert: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:785
+#, php-format
+msgid "Network option %1$s created with the following value: %2$s."
+msgstr "Netzwerkoption %1$s erstellt mit dem folgenden Wert: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:787
+#, php-format
+msgid "Network option %1$s updated from the value %3$s to %2$s"
+msgstr "Netzwerkoption %1$s aktualisiert von Wert %3$s auf %2$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:799
+#, php-format
+msgid "New user added (or not) using the following data: %s"
+msgstr ""
+"Neuer Benutzer unter Verwendung der folgenden Daten hinzugefügt (oder "
+"nicht): %s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:814
+#, php-format
+msgid ""
+"%1$s prevented a request at %2$s from the IP %3$s. Block ID: %4$s. The "
+"server configuration at the moment: %5$s Data posted: %6$s"
+msgstr ""
+"%1$s verhinderte eine Abfrage auf %2$s von der IP %3$s. Blockiere ID: %4$s. "
+"Die Server-Konfiguration im Moment: %5$s Gepostete Daten: %6$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:815
+#, php-format
+msgid "IP banned: %s."
+msgstr "Verbannte IP: %s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:816
+#, php-format
+msgid "Theme activated: %s."
+msgstr "Theme aktiviert: %s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:817
+#, php-format
+msgid "Administrator %s logged in."
+msgstr "Administrator %s angemeldet."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:818
+#, php-format
+msgid "User deleted: %1$s. Posts assigned to: %2$s."
+msgstr "Benutzer gelöscht: %1$s. Beiträge zugewiesen: %2$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:819
+#, php-format
+msgid "%1$s’s user data changed from: %2$s To: %3$s"
+msgstr "Die Benutzerdaten von %1$s wurden geändert von: %2$s An: %3$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:820
+#, php-format
+msgid "New user %s created."
+msgstr "Neuer Benutzer %s erstellt."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:821
+#, php-format
+msgid "User meta %2$s added to %1$s with the value %3$s"
+msgstr "Benutzer-Meta %2$s hinzugefügt zu %1$s mit dem Wert %3$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:822
+#, php-format
+msgid ""
+"User meta %2$s updated for %1$s with the value %3$s Previous value was: %3$s"
+msgstr ""
+"Benutzer-Meta %2$s aktualisiert für %1$s mit dem Wert %3$s Vorheriger Wert "
+"war: %3$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:823
+#, php-format
+msgid "User meta %2$s deleted for %1$s."
+msgstr "Benutzer-Meta %2$s gelöscht für %1$s."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:824
+#, php-format
+msgid "Blog %1$s created with %2$s as Administrator."
+msgstr "Blog %1$s erstellt mit %2$s als Administrator."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:825
+#, php-format
+msgid "Blog %s deleted."
+msgstr "Blog %s gelöscht."
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:826
+#, php-format
+msgid "E-mail sent from %1$s to %2$s with the following subject: %3$s"
+msgstr "E-Mail versandt von %1$s an %2$s mit dem folgenden Betreff: %3$s"
+
+#: free/modules/logs/plugins/inc/php/action-logs/class-secupress-action-log.php:827
+#, php-format
+msgid ""
+"External request to: %1$s with the following arguments: %2$s The response "
+"was: %3$s"
+msgstr ""
+"Externe Abfrage von: %1$s mit den folgenden Argumenten: %2$s Die Antwort "
+"war: %3$s"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:57
+#, php-format
+msgid "HTTP query on %s"
+msgstr "HTTP-Abfrage auf %s"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:59
+#, php-format
+msgid "Main domain %s"
+msgstr "Hauptdomain %s"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:80
+msgid "Error, this is not a valid HTTP log"
+msgstr "Fehler, dies ist kein gültiges HTTP-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:92
+msgid ""
+"This is a local URL, part of WordPress Core"
+"strong>. We do not recommend to limit anything unless you know what you are "
+"doing. Expect unexpected results when doing it."
+msgstr ""
+"Dies ist eine lokale URL, die Teil von WordPress "
+"Core ist. Wir empfehlen nicht, irgendetwas einzuschränken, es sei "
+"denn, du weißt was du tust. Erwarte dabei unerwartete Ergebnisse."
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:97
+msgid ""
+"This is a REST API URL, part of WordPress Core"
+"strong>. We do not recommend to limit anything unless you know what you are "
+"doing. Expect unexpected results when doing it."
+msgstr ""
+"Dies ist eine REST-API-URL , die Teil von WordPress "
+"Core ist. Wir empfehlen nicht, irgendetwas einzuschränken, es sei "
+"denn, du weißt, was du tust. Erwarte dabei unerwartete Ergebnisse."
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:102
+msgid ""
+"This is a local URL. We do not recommend to limit anything "
+"unless you know what you are doing. Expect unexpected results when doing it."
+msgstr ""
+"Dies ist eine lokale URL. Wir empfehlen nicht, irgendetwas "
+"einzuschränken, es sei denn, du weißt, was du tust. Erwarte dabei "
+"unerwartete Ergebnisse."
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:111
+msgid "Domain Limitation"
+msgstr "Domain-Begrenzung"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:115
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:133
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:154
+#, php-format
+msgid "Limit call to %s"
+msgstr "Anruf auf %s beschränken"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:128
+msgid "Path Limitation"
+msgstr "Begrenzung des Pfades"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:148
+msgid "URL Limitation (Precise)"
+msgstr "URL-Begrenzung (präzise)"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:180
+msgid "Ignore Parameters"
+msgstr "Parameter ignorieren"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:181
+msgid ""
+"Any value will be ignored if checked. (*) are recommended, (G) GET, (B) BODY"
+msgstr ""
+"Jeder Wert wird ignoriert, wenn er aktiviert ist. (*) werden empfohlen, (G) "
+"GET, (B) BODY"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:183
+msgid "Ignore HTTP Parameters"
+msgstr "HTTP-Parameter ignorieren"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:219
+msgid "Forbidden Request Methods"
+msgstr "Verbotene Anforderungsmethoden"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:220
+msgid ""
+"Any non-checked method or other method not listed here will be allowed. (*) "
+"are recommended"
+msgstr ""
+"Jede nicht geprüfte Methode oder jede andere Methode, die hier nicht "
+"aufgeführt ist, ist zulässig. (*) werden empfohlen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:222
+msgid "Forbid these Requests Methods"
+msgstr "Diese Anforderungsmethoden verbieten"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:242
+msgid "More Methods…"
+msgstr "Weitere Methoden…"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:258
+msgid "Save"
+msgstr "Speichern"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:268
+msgid "Last 10 calls"
+msgstr "Die letzten 10 Aufrufe"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:274
+msgid "HTTP Response Details"
+msgstr "Details zur HTTP-Antwort"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-log.php:274
+msgid "Open Details"
+msgstr "Details anzeigen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:39
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:41
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:48
+msgctxt "post type general name"
+msgid "HTTP Logs"
+msgstr "HTTP-Protokolle"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:40
+msgctxt "post type singular name"
+msgid "HTTP Log"
+msgstr "HTTP-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:42
+msgid "All HTTP Logs"
+msgstr "Alle HTTP-Protokolle"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:44
+msgid "Add New HTTP Log"
+msgstr "Neues HTTP-Protokoll hinzufügen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:45
+msgid "Edit HTTP Log"
+msgstr "HTTP-Protokoll bearbeiten"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:46
+msgid "New HTTP Log"
+msgstr "Neues HTTP-Protokoll"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:47
+msgid "View HTTP Log"
+msgstr "HTTP-Protokoll anzeigen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:49
+msgid "Search HTTP Logs"
+msgstr "HTTP-Protokolle durchsuchen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:50
+msgid "No HTTP logs found."
+msgstr "Es wurden keine HTTP-Protokolle gefunden."
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:51
+msgid "No HTTP logs found in Trash."
+msgstr "Im Papierkorb wurden keine HTTP-Protokolle gefunden."
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:52
+msgid "Parent HTTP Log:"
+msgstr "Übergeordnetes HTTP-Protokoll:"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:53
+msgid "HTTP Log Archives"
+msgstr "HTTP-Protokoll-Archive"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:54
+msgid "Insert into HTTP log"
+msgstr "In HTTP-Protokoll einfügen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:55
+msgid "Uploaded to this HTTP log"
+msgstr "In dieses HTTP-Protokoll hochgeladen"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:56
+msgid "Filter HTTP logs list"
+msgstr "Filtern der HTTP-Protokollliste"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:57
+msgid "HTTP Logs list navigation"
+msgstr "Navigation in der Liste der HTTP-Protokolle"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:58
+msgid "HTTP Logs list"
+msgstr "Liste der HTTP-Protokolle"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:95
+msgid "Counter"
+msgstr "Zähler"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:109
+#, php-format
+msgid "%1$s call
Every %2$s"
+msgid_plural "%1$s calls
Every %2$s"
+msgstr[0] "%1$s rufen
Jeder %2$s"
+msgstr[1] "%1$s Anrufe
Jeder %2$s"
+
+#: free/modules/logs/plugins/inc/php/http-logs/class-secupress-http-logs.php:111
+#, php-format
+msgid "1 call since %s"
+msgstr "1 Aufruf seit %s"
+
+#: free/modules/logs/settings/banned-ips.php:6
+msgid ""
+"When you need to (dis)allow access to your website to some servers by their "
+"IP."
+msgstr "Hier kannst du den Zugriff auf IP-Adressen erlauben bzw. ausschließen."
+
+#: free/modules/logs/settings/banned-ips.php:7
+msgid "IP Adresses"
+msgstr "IP-Adressen"
+
+#: free/modules/logs/settings/banned-ips.php:12
+msgid ""
+"Bots, servers, visitors with those IP addresses will never "
+"have the right to visit your website."
+msgstr ""
+"Bots, Server und Besucher mit diesen IP-Adressen haben niemals"
+"strong> das Recht, deine Website zu besuchen."
+
+#: free/modules/logs/settings/banned-ips.php:21
+msgid ""
+"Bots, servers, visitors with those IP addresses will always "
+"have the right to visit your website. This list has priority over all."
+msgstr ""
+"Bots, Server und Besucher mit diesen IP-Adressen haben immer"
+"strong> das Recht, deine Website zu besuchen. Diese Liste hat Vorrang vor "
+"allem."
+
+#: free/modules/logs/settings/logs.php:16
+msgid "WordPress action logs"
+msgstr "WordPress Aktions-Protokolle"
+
+#: free/modules/logs/settings/logs.php:17
+msgid ""
+"What happened on your WordPress website? By activating this module, most "
+"sensitive actions will be logged."
+msgstr ""
+"Was ist auf unserer WordPress-Website passiert? Durch Aktivierung dieses "
+"Moduls werden die meisten sensiblen Aktionen protokolliert."
+
+#: free/modules/logs/settings/logs.php:20
+msgid "Yes, log WordPress actions"
+msgstr "Ja, protokolliere WordPress-Aktionen"
+
+#: free/modules/logs/settings/logs.php:26
+#, php-format
+msgid "High criticity (%s)"
+msgid_plural "High criticity (%s)"
+msgstr[0] "Deutliche Kritik (%s)"
+msgstr[1] "Deutliche Kritik (%s)"
+
+#: free/modules/logs/settings/logs.php:27
+#, php-format
+msgid "Normal criticity (%s)"
+msgid_plural "Normal criticity (%s)"
+msgstr[0] "Normale Kritik (%s)"
+msgstr[1] "Normale Kritik (%s)"
+
+#: free/modules/logs/settings/logs.php:28
+#, php-format
+msgid "Low criticity (%s)"
+msgid_plural "Low criticity (%s)"
+msgstr[0] "Geringe Kritik (%s)"
+msgstr[1] "Geringe Kritik (%s)"
+
+#: free/modules/logs/settings/logs.php:49
+#, php-format
+msgid "Total: %s"
+msgstr "Gesamt: %s"
+
+#: free/modules/logs/settings/logs.php:54
+#: free/modules/logs/settings/logs.php:93
+msgid "Nothing happened yet."
+msgstr "Bisher ist nichts passiert."
+
+#: free/modules/logs/settings/logs.php:59
+#: free/modules/logs/settings/logs.php:98
+msgid "What happened on your WordPress website?"
+msgstr "Was ist auf deiner WordPress-Website passiert?"
+
+#: free/modules/logs/settings/logs.php:75
+msgid "404 Error Pages Log"
+msgstr "404 Fehlerseiten-Protokoll"
+
+#: free/modules/logs/settings/logs.php:76
+msgid ""
+"404 Error pages are common, but it can also be some bots trying to find "
+"insecure content on your website. You may want to know that."
+msgstr ""
+"404-Fehlerseiten kommen häufig vor, aber es kann auch sein, dass einige Bots "
+"versuchen, unsicheren Inhalt auf deiner Website zu finden. Es könnte sein, "
+"dass dich das interessiert."
+
+#: free/modules/logs/settings/logs.php:79
+msgid "Yes, log WordPress 404s"
+msgstr "Ja, 404 von WordPress protokollieren"
+
+#: free/modules/logs/settings/logs.php:90
+#, php-format
+msgid "%s error 404."
+msgid_plural "%s errors 404."
+msgstr[0] "%s Fehler 404."
+msgstr[1] "%s Fehler 404."
+
+#: free/modules/plugins-themes/plugins/plugin-installation.php:33
+#: free/modules/plugins-themes/plugins/plugin-installation.php:48
+#: free/modules/plugins-themes/plugins/plugin-installation.php:66
+#: free/modules/plugins-themes/plugins/uploads.php:17
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:59
+msgid "You do not have sufficient permissions to install plugins on this site."
+msgstr ""
+"Du hast keine ausreichenden Berechtigungen, um auf dieser Seite "
+"Erweiterungen zu installieren."
+
+#: free/modules/plugins-themes/plugins/theme-installation.php:32
+#: free/modules/plugins-themes/plugins/theme-installation.php:46
+#: free/modules/plugins-themes/plugins/theme-installation.php:52
+#: free/modules/plugins-themes/plugins/uploads.php:21
+msgid "You do not have sufficient permissions to install themes on this site."
+msgstr ""
+"Du hast keine ausreichenden Berechtigungen, um auf dieser Seite Themes zu "
+"installieren."
+
+#: free/modules/plugins-themes/settings/plugins.php:6
+msgid ""
+"By using these protections, you can easily select the proper allowed actions "
+"to your plugins."
+msgstr ""
+"Durch die Verwendung dieser Schutzmaßnahmen kannst du ganz einfach die "
+"richtigen zulässigen Aktionen für deine Plugins festlegen."
+
+#: free/modules/plugins-themes/settings/plugins.php:7
+msgid "Plugins Page"
+msgstr "Plugin-Seite"
+
+#: free/modules/plugins-themes/settings/plugins.php:13
+msgid "Plugin installation"
+msgstr "Plugin-Installation"
+
+#: free/modules/plugins-themes/settings/plugins.php:18
+msgid "Yes, disable the installation of all new plugins"
+msgstr "Ja, deaktiviere die Installation aller neuen Plugins"
+
+#: free/modules/plugins-themes/settings/plugins.php:22
+msgid "Disable plugin upload."
+msgstr "Deaktiviere das Hochladen von Plugins."
+
+#: free/modules/plugins-themes/settings/plugins.php:29
+msgid "Plugin activation"
+msgstr "Plugin-Aktivierung"
+
+#: free/modules/plugins-themes/settings/plugins.php:34
+msgid "Yes, disable the activation action for every plugin"
+msgstr "Ja, deaktiviere die Aktivierung für jedes Plugin"
+
+#: free/modules/plugins-themes/settings/plugins.php:39
+msgid "Plugin deactivation"
+msgstr "Plugin-Deaktivierung"
+
+#: free/modules/plugins-themes/settings/plugins.php:44
+msgid "Yes, disable the deactivation action for every plugin"
+msgstr "Ja, deaktiviere die Deaktivierung für jedes Plugin"
+
+#: free/modules/plugins-themes/settings/plugins.php:49
+msgid "Plugin deletion"
+msgstr "Plugin-Löschung"
+
+#: free/modules/plugins-themes/settings/plugins.php:54
+msgid "Yes, disable the deletion action for every plugin"
+msgstr "Ja, deaktiviere die Löschung für jedes Plugin"
+
+#: free/modules/plugins-themes/settings/plugins.php:62
+msgid "Works for any public plugin (premium and free)."
+msgstr "Funktioniert für jedes öffentliche Plugin (bezahlt und kostenlos)."
+
+#: free/modules/plugins-themes/settings/plugins.php:67
+msgid "Yes, enable the detection of plugin with known vulnerabilities"
+msgstr "Ja, aktiviere die Erkennung von Plugins mit bekannter Anfälligkeit"
+
+#: free/modules/plugins-themes/settings/plugins.php:71
+#: free/modules/plugins-themes/settings/themes.php:61
+#, php-format
+msgid ""
+"Based on %s Daily Security Monitoring, notices will be displayed for plugins "
+"newly detected as vulnerable."
+msgstr ""
+"Basierend auf %s täglichen Sicherheitsüberwachung werden Hinweise für "
+"Plugins oder Themes angezeigt, die aktuell als verwundbar erkannt wurden."
+
+#: free/modules/plugins-themes/settings/plugins.php:79
+#: free/modules/plugins-themes/settings/themes.php:69
+msgid "Not yet"
+msgstr "Noch nicht"
+
+#: free/modules/plugins-themes/settings/plugins.php:85
+#: free/modules/plugins-themes/settings/themes.php:75
+msgid "Update the data"
+msgstr "Aktualisieren der Daten"
+
+#: free/modules/plugins-themes/settings/plugins.php:89
+#: free/modules/plugins-themes/settings/themes.php:79
+#, php-format
+msgid ""
+"The Patchstack database will update twice a day automatically. But you can "
+"still update it manually.
Last update: %s"
+msgstr ""
+"Die Patchstack-Datenbank wird zweimal täglich automatisch aktualisiert. Du "
+"kannst es aber immer noch manuell aktualisieren.
Letzte Änderung: %s"
+
+#: free/modules/plugins-themes/settings/themes.php:6
+msgid ""
+"By using these protections, you can easily select the proper allowed actions "
+"for your themes."
+msgstr ""
+"Durch Verwendung dieses Schutzes kannst du einfach die erlaubten Aktionen "
+"für deine Themes auswählen."
+
+#: free/modules/plugins-themes/settings/themes.php:7
+msgid "Themes Page"
+msgstr "Themes-Seite"
+
+#: free/modules/plugins-themes/settings/themes.php:13
+msgid "Theme installation"
+msgstr "Theme-Installation"
+
+#: free/modules/plugins-themes/settings/themes.php:18
+msgid "Yes, disable the installation for themes"
+msgstr "Ja, deaktiviere die Installation von Themes"
+
+#: free/modules/plugins-themes/settings/themes.php:22
+msgid "Disable theme upload."
+msgstr "Deaktiviere das Hochladen von Themes."
+
+#: free/modules/plugins-themes/settings/themes.php:29
+msgid "Theme switch"
+msgstr "Themewechsel"
+
+#: free/modules/plugins-themes/settings/themes.php:34
+msgid "Yes, disable switch theme"
+msgstr "Ja, deaktiviere den Themewechsel"
+
+#: free/modules/plugins-themes/settings/themes.php:39
+msgid "Theme deletion"
+msgstr "Theme-Löschung"
+
+#: free/modules/plugins-themes/settings/themes.php:44
+msgid "Yes, disable deletion of themes"
+msgstr "Ja, deaktiviere das Löschen von Themes"
+
+#: free/modules/plugins-themes/settings/themes.php:52
+msgid "Work for any public theme, premium or free."
+msgstr "Funktioniert für jedes öffentliche Theme, bezahlt und kostenlos."
+
+#: free/modules/plugins-themes/settings/themes.php:57
+msgid "Yes, enable the detection of themes with known vulnerabilites"
+msgstr "Ja, aktiviere die Erkennung von Themes mit bekannter Anfälligkeit"
+
+#: free/modules/plugins-themes/settings/uploads.php:6
+msgid ""
+"WordPress allows by default to add a plugin or theme by simply uploading a "
+"zip file. This is not secure since the file could contain any custom PHP "
+"code.
By removing this possibility you ensure that plugins could only be "
+"added using FTP or via the official WordPress repository."
+msgstr ""
+"WordPress erlaubt normalerweise das Hinzufügen eines Plugins oder Themes "
+"durch einfaches Hochladen einer .zip-Datei. Das ist nicht sicher, da die "
+"Datei allen möglichen PHP-Code enthalten könnte.
Durch Entfernen dieser "
+"Möglichkeit stellst du sicher, dass Plugins nur per FTO oder über das "
+"offizielle WordPress-Repository hinzugefügt werden können."
+
+#: free/modules/plugins-themes/settings/uploads.php:7
+msgid "Uploads Themes & Plugins"
+msgstr "Aktualisierung Themes & Plugins"
+
+#: free/modules/plugins-themes/settings/uploads.php:27
+msgid "Themes and plugins can’t be added using .zip upload."
+msgstr "Themes und Plugins können nicht per .zip hochgeladen werden."
+
+#: free/modules/plugins-themes/settings/uploads.php:34
+msgid ""
+"Themes, plugins and translations can be uploaded but only with FTP "
+"credentials. It will be asked when needed."
+msgstr ""
+"Themes, Plugins und Übersetzungen können hochgeladen werden, aber nur mit "
+"FTP-Zugangsdaten. Es wird bei Bedarf angefragt."
+
+#: free/modules/plugins-themes/settings/uploads.php:40
+#, php-format
+msgid ""
+"You cannot use %s to restrict upload by FTP because it’s already set by "
+"another way."
+msgstr ""
+"Du kannst %s nicht verwenden, um den Upload per FTP einzuschränken, da er "
+"bereits auf andere Weise festgelegt ist."
+
+#: free/modules/plugins-themes/settings/uploads.php:46
+msgid ""
+"You cannot restrict upload by FTP because you cannot use any FTP extension "
+"on this server (ssh2, ftpext, ftpsockets)."
+msgstr ""
+"Du kannst den Upload per FTP nicht einschränken, da du auf diesem Server "
+"keine FTP-Erweiterung (ssh2, ftpext, ftpsockets) verwenden kannst."
+
+#: free/modules/plugins-themes/settings/uploads.php:52
+#: free/modules/plugins-themes/settings/uploads.php:60
+#, php-format
+msgid "Disallow %s uploads"
+msgstr "Verbiete das Hochladen von %s-Dateien"
+
+#: free/modules/plugins-themes/settings/uploads.php:53
+#, php-format
+msgid "Actual Upload Method: %s"
+msgstr "Tatsächliche Upload-Methode: %s"
+
+#: free/modules/plugins-themes/settings/uploads.php:62
+msgid "Yes, disable any uploads of themes and plugins"
+msgstr "Ja, deaktiviere alle Uploads von Themes und Plugins"
+
+#: free/modules/plugins-themes/settings/uploads.php:63
+msgid ""
+"Yes, restrict all updates of themes, plugins, translations "
+"and WordPress Core by forcing FTP usage"
+msgstr ""
+"Ja, schränke alle Updates von Themes, Plugins, "
+"Übersetzungen und WordPress Core ein, indem du die FTP-Nutzung erzwingst"
+
+#: free/modules/plugins-themes/tools.php:220
+msgid "Themes & Plugins Upload Disabled"
+msgstr "Themes & Plugins Upload deaktiviert"
+
+#: free/modules/plugins-themes/tools.php:223
+msgid "Direct File Writing (direct)"
+msgstr "Direktes Schreiben von Dateien (direkt)"
+
+#: free/modules/plugins-themes/tools.php:224
+msgid "Secure Shell 2 (ssh2)"
+msgstr "Secure Shell 2 (ssh2)"
+
+#: free/modules/plugins-themes/tools.php:225
+msgid "File Transfert Protocol Extension (ftpext)"
+msgstr "Dateiübertragungsprotokoll-Erweiterung (ftpext)"
+
+#: free/modules/plugins-themes/tools.php:226
+msgid "File Transfert Protocol with Sockets (ftpsockets)"
+msgstr "Dateiübertragungsprotokoll mit Sockets (ftpsockets)"
+
+#: free/modules/schedules/settings/schedules-backups.php:6
+msgid "Backup Module"
+msgstr "Backup-Modul"
+
+#: free/modules/schedules/settings/schedules-backups.php:17
+msgid "Backup Type"
+msgstr "Sicherungsart"
+
+#: free/modules/schedules/settings/schedules-backups.php:20
+#: pro/admin/settings.php:177 pro/modules/backups/callbacks.php:285
+msgid "Database"
+msgstr "Datenbank"
+
+#: free/modules/schedules/settings/schedules-backups.php:20
+#: pro/modules/backups/callbacks.php:289
+msgid "Files"
+msgstr "Dateien"
+
+#: free/modules/schedules/settings/schedules-backups.php:25
+#: free/modules/schedules/settings/schedules-file-monitoring.php:17
+#: free/modules/schedules/settings/schedules-scan.php:17
+#, php-format
+msgid "Every %d days"
+msgstr "Alle %d Tage"
+
+#: free/modules/schedules/settings/schedules-backups.php:31
+#: free/modules/schedules/settings/schedules-file-monitoring.php:23
+#: free/modules/schedules/settings/schedules-scan.php:23
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#: free/modules/schedules/settings/schedules-backups.php:43
+#: free/modules/schedules/settings/schedules-file-monitoring.php:42
+#: free/modules/schedules/settings/schedules-scan.php:42
+msgid "Notification of result"
+msgstr "Ergebnismitteilung"
+
+#: free/modules/schedules/settings/schedules-backups.php:44
+#: free/modules/schedules/settings/schedules-file-monitoring.php:43
+#: free/modules/schedules/settings/schedules-scan.php:43
+msgid ""
+"When finished, a notification will be sent to the following email address "
+"(optional)."
+msgstr ""
+"Nach Beendigung wird eine Benachrichtigung an die folgenden E-Mail-Adressen "
+"versandt (optional)."
+
+#: free/modules/schedules/settings/schedules-file-monitoring.php:6
+msgid "Malware Scan Module"
+msgstr "Malware-Scan-Modul"
+
+#: free/modules/schedules/settings/schedules-file-monitoring.php:35
+#: free/modules/schedules/settings/schedules-scan.php:35
+#, php-format
+msgid "Maximum %d days."
+msgstr "Maximal %d Tage."
+
+#: free/modules/schedules/settings/schedules-scan.php:6
+msgid "Scanner Module"
+msgstr "Scanner-Modul"
+
+#: free/modules/sensitive-data/plugins/bad-url-access.php:149
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please replace previous lines between %2$s "
+"and %3$s by the following ones: %4$s"
+msgstr ""
+"Deine %1$s-Datei ist nicht schreibbar. Bitte ersetzte die vorherigen Zeilen "
+"zwischen %2$s und %3$s mit den folgenden: %4$s"
+
+#: free/modules/sensitive-data/plugins/bad-url-access.php:169
+#, php-format
+msgid ""
+"Your %1$s file is not writable. Please replace previous rules with %2$s from "
+"the tags hierarchy %3$s by the following ones: %4$s"
+msgstr ""
+"Deine %1$s-Datei ist nicht schreibbar. Bitte ersetzte die vorherigen Regeln "
+"mit %2$s aus der Tag-Hierarchie %3$s mit den folgenden: %4$s"
+
+#: free/modules/sensitive-data/plugins/inc/php/blackhole/warning-template.php:8
+msgid "STOP"
+msgstr "STOPP"
+
+#: free/modules/sensitive-data/plugins/inc/php/blackhole/warning-template.php:16
+#, php-format
+msgid ""
+"The aim of this page is to catch robots that don’t respect the rules set in "
+"the %1$s file. Don’t %2$s or you will be banned from this site."
+"strong>"
+msgstr ""
+"Das Ziel dieser Seite ist es, Roboter zu erwischen, die die in der %1$s "
+"Datei festgelegten Regeln nicht einhalten. Tun sie es nicht %2$s , "
+"sonst werden sie von dieser Website ausgeschlossen."
+
+#: free/modules/sensitive-data/plugins/inc/php/blackhole/warning-template.php:18
+msgid "click this link"
+msgstr "diesen Link anklicken"
+
+#: free/modules/sensitive-data/plugins/xmlrpc.php:30
+#: free/modules/sensitive-data/plugins/xmlrpc.php:130
+msgid "XML-RPC services are disabled on this site."
+msgstr "XML-RPC-Dienste sind auf dieser Website deaktiviert."
+
+#: free/modules/sensitive-data/plugins/xmlrpc.php:31
+#: free/modules/sensitive-data/plugins/xmlrpc.php:131
+msgid "XML-RPC is disabled"
+msgstr "XML-RPC ist deaktiviert"
+
+#: free/modules/sensitive-data/settings/content-protect.php:7
+msgid "Content Protection"
+msgstr "Inhaltsschutz"
+
+#: free/modules/sensitive-data/settings/content-protect.php:14
+msgid ""
+"A hotlink is when someone embeds your media directly from your website, "
+"stealing your bandwidth."
+msgstr ""
+"Ein Hotlink ist, wenn jemand deine Medien direkt von deiner Website "
+"einbettet und damit Bandweite stiehlt."
+
+#: free/modules/sensitive-data/settings/content-protect.php:19
+msgid "Yes, protect my media from being hotlinked"
+msgstr "Ja, schütze meine Medien vor Hotlinks"
+
+#: free/modules/sensitive-data/settings/content-protect.php:24
+msgid "This feature is available only for sites with HTTPS."
+msgstr "Diese Funktion ist nur für Websites mit HTTPS verfügbar."
+
+#: free/modules/sensitive-data/settings/content-protect.php:37
+#: free/secupress.php:339
+#, php-format
+msgid ""
+"%1$s requires WordPress %2$s minimum, your website is "
+"actually running version %3$s."
+msgstr ""
+"%1$s erfordert mindestens WordPress %2$s, deine Website "
+"läuft aktuell mit Version %3$s."
+
+#: free/modules/sensitive-data/settings/content-protect.php:43
+msgid ""
+"WordPress can redirect people on your public posts and pages even if they "
+"don’t know the URL just by guessing."
+msgstr ""
+"WordPress kann Personen auf deinen öffentlichen Beiträgen und Seiten "
+"umleiten, auch wenn sie die URL nicht kennen, indem sie nur raten."
+
+#: free/modules/sensitive-data/settings/content-protect.php:49
+msgid "Yes, do not allow to guess the URL of my posts and pages."
+msgstr "Ja, erlaube nicht, die URL meiner Beiträge und Seiten zu erraten."
+
+#: free/modules/sensitive-data/settings/content-protect.php:58
+#, php-format
+msgid ""
+"A blackhole is a forbidden folder, mentioned in the %1$s file as %2$s. If a "
+"bot does not respect this rule, its IP address will be banned."
+msgstr ""
+"Ein schwarzes Loch ist ein verbotener Ordner, erwähnt in der %1$s-Datei als "
+"%2$s. Wenn ein Bot diese Regel nicht respektiert, wird seine IP-Adresse "
+"verbannt."
+
+#: free/modules/sensitive-data/settings/content-protect.php:63
+#, php-format
+msgid "Yes, add a blackhole in my %s file."
+msgstr "Ja, füge in meiner %s-Datei ein schwarzes Loch hinzu."
+
+#: free/modules/sensitive-data/settings/content-protect.php:68
+msgid "This feature is available only for sites installed at the domain root."
+msgstr ""
+"Dieses Feature ist nur für Websites verfügbar, die im Webstammverzeichnis "
+"installiert sind."
+
+#: free/modules/sensitive-data/settings/content-protect.php:83
+#, php-format
+msgid ""
+"You need to add the following code to your %1$s file, inside the %2$s block:"
+msgstr ""
+"Du musst den folgenden Code in deine %1$s-Datei innerhalb des %2$s-Blocks "
+"einfügen:"
+
+#: free/modules/sensitive-data/settings/content-protect.php:122
+msgid ""
+"Directory Listing is a functionality that allows anyone to list a directory "
+"content (its files and sub-folders) simply by entering its URL in a web "
+"browser. This is highly insecure and most hosts disable it by default. If "
+"this is not the case you can disable it here."
+msgstr ""
+"Verzeichnis-Listing ist eine Funktionalität die jedem erlaubt, den Inhalt "
+"eines Verzeichnisses (seine Dateien und Unter-Verzeichnisse) aufzulisten "
+"indem er einfach die URL in einem Webbrowser eingibt. Das ist höchst "
+"unsicher und die meisten Webhoster deaktivieren das standardmäßig. Wenn das "
+"nicht der Fall ist, kannst du es hier deaktivieren."
+
+#: free/modules/sensitive-data/settings/content-protect.php:127
+msgid "Yes, disable Directory Listing"
+msgstr "Ja, deaktiviere Verzeichnis-Listing"
+
+#: free/modules/sensitive-data/settings/content-protect.php:178
+msgid "PHP disclosure"
+msgstr "PHP-Preisgabe"
+
+#: free/modules/sensitive-data/settings/content-protect.php:180
+msgid ""
+"PHP contains a flaw that discloses sensitive information about installed "
+"modules, this is also known as \"PHP Easter Egg\". This is highly insecure "
+"and most hosts disable it by default. If this is not the case you can "
+"disable it here."
+msgstr ""
+"PHP enthält eine Schwachstelle die sensible Informationen über installierte "
+"Module preisgibt, auch bekannt als \"PHP-Osterei\". Das ist höchst unsicher "
+"und die meisten Webhoster deaktivieren das standardmäßig. Wenn das nicht der "
+"Fall ist, kannst du es hier deaktivieren."
+
+#: free/modules/sensitive-data/settings/content-protect.php:186
+msgid "Yes, forbid access to this PHP modules disclosure"
+msgstr "Ja, verbiete den Zugriff auf die Preisgabe von PHP-Modulen"
+
+#: free/modules/sensitive-data/settings/content-protect.php:237
+msgid "PHP version disclosure"
+msgstr "PHP-Versionspreisgabe"
+
+#: free/modules/sensitive-data/settings/content-protect.php:238
+#, php-format
+msgid ""
+"Some servers send a header called %s that contains the PHP version used on "
+"your site. It may be a useful information for attackers, and should be "
+"removed."
+msgstr ""
+"Einige Server versenden einen Header, bezeichnet als %s, der die auf deiner "
+"Website verwendete PHP-Version enthält. Das könnte eine nützliche "
+"Information für Angreifer sein und sollte entfernt werden."
+
+#: free/modules/sensitive-data/settings/content-protect.php:243
+msgid "Yes, remove the PHP version"
+msgstr "Ja, entferne die PHP-Version"
+
+#: free/modules/sensitive-data/settings/content-protect.php:294
+msgid "WordPress version disclosure"
+msgstr "Preisgabe der WordPress-Version"
+
+#: free/modules/sensitive-data/settings/content-protect.php:295
+msgid ""
+"Disclosing your WordPress version may be a useful information for attackers, "
+"it should be removed."
+msgstr ""
+"Das Aufspüren deiner WordPress-Version könnte eine nützliche Information für "
+"Angreifer sein und sollte entfernt werden."
+
+#: free/modules/sensitive-data/settings/content-protect.php:300
+msgid "Yes, remove the WordPress version"
+msgstr "Ja, entferne die WordPress-Version"
+
+#: free/modules/sensitive-data/settings/content-protect.php:352
+#: free/modules/sensitive-data/settings/content-protect.php:501
+msgid ""
+"Directly accessing some WordPress files would disclose sensitive information "
+"that will help an attacker, like your site’s internal path."
+msgstr ""
+"Der direkte Zugriff auf einige WordPress-Dateien würde vertrauliche "
+"Informationen offenlegen, die einem Angreifer helfen, wie z. B. den internen "
+"Pfad deiner Website."
+
+#: free/modules/sensitive-data/settings/content-protect.php:357
+#: free/modules/sensitive-data/settings/content-protect.php:415
+#: free/modules/sensitive-data/settings/content-protect.php:506
+msgid "Yes, forbid access to those files"
+msgstr "Ja, verbiete den Zugriff auf diese Dateien"
+
+#: free/modules/sensitive-data/settings/content-protect.php:410
+#, php-format
+msgid ""
+"Files like %1$s or %2$s are a good source of information for attackers, they "
+"should not be accessible."
+msgstr ""
+"Dateien wie %1$s oder %2$s sind eine gute Informationsquelle für Angreifer "
+"und sollten nicht zugänglich sein."
+
+#: free/modules/sensitive-data/settings/content-protect.php:466
+#: free/modules/sensitive-data/settings/content-protect.php:471
+#, php-format
+msgid "Do not display the %s version"
+msgstr "Die %sVersion nicht anzeigen"
+
+#: free/modules/sensitive-data/settings/content-protect.php:485
+msgid "Plugin Version Disclosure"
+msgstr "Preisgabe Plugin-Version"
+
+#: free/modules/sensitive-data/settings/content-protect.php:486
+msgid ""
+"Some popular big plugins print their version in your site’s source code. "
+"This information can be useful for attackers."
+msgstr ""
+"Einige beliebte große Plugins drucken ihre Version im Quellcode deiner "
+"Website. Diese Informationen können für Angreifer nützlich sein."
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:5
+msgid "WordPress Endpoints"
+msgstr "WordPress-Endpunkte"
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:9
+msgid "XML-RPC"
+msgstr "XML-RPC"
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:10
+msgid ""
+"If you don’t use XML-RPC, you can disable it and avoid becoming a target if "
+"a vulnerability is discovered."
+msgstr ""
+"Wenn du XML-RPC nicht verwendest, kannst du es deaktivieren und vermeiden, "
+"dass du zum Ziel wirst, wenn eine Schwachstelle entdeckt wird."
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:15
+msgid "Disable all the features of XML-RPC"
+msgstr "Deaktiviere alleXML-RPC-Features"
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:16
+msgid "Only disable for multiple authentication attempts"
+msgstr ""
+"Nur bei mehrfachen Authentifizierungsversuchen deaktivieren"
+
+#: free/modules/sensitive-data/settings/wp-endpoints.php:21
+msgid ""
+"If you have a mobile application, or any service linked to your website, you "
+"should not disable all the features of XML-RPC."
+msgstr ""
+"Wenn du eine mobile Anwendung oder einen anderen Dienst hast, der mit deiner "
+"Website verknüpft ist, solltest du nicht alle Funktionen von XML-RPC "
+"deaktivieren."
+
+#: free/modules/users-login/callbacks.php:361
+#: free/modules/users-login/callbacks.php:367
+#: free/modules/users-login/callbacks.php:373
+#: free/modules/users-login/settings/move-login.php:82
+msgid "Move Login"
+msgstr "Anmeldeformular verschieben"
+
+#: free/modules/users-login/callbacks.php:362
+msgid "Please choose your login URL."
+msgstr "Bitte wähle deine Anmelde-URL."
+
+#: free/modules/users-login/callbacks.php:368
+#, php-format
+msgid "The slug %s is forbidden."
+msgid_plural "The slugs %s are forbidden."
+msgstr[0] "Die Slug %s ist verboten."
+msgstr[1] "Die Slugs %s sind verboten."
+
+#: free/modules/users-login/callbacks.php:374
+msgid "The links can’t have the same slugs."
+msgstr "Die Links können nicht die gleichen Slugs haben."
+
+#: free/modules/users-login/callbacks.php:431
+msgid "New login page"
+msgstr "Neue Anmeldeseite festlegen"
+
+#: free/modules/users-login/callbacks.php:433
+msgid "New registration page"
+msgstr "Neue Registrierungsseite"
+
+#: free/modules/users-login/plugins/admin-email.php:69
+#: free/modules/users-login/plugins/default-role.php:50
+#: free/modules/users-login/plugins/membership.php:31
+msgid "Disabled for security reasons."
+msgstr "Aus Sicherheitsgründen deaktiviert."
+
+#: free/modules/users-login/plugins/blacklist-logins.php:51
+msgid "Username required"
+msgstr "Benutzername benötigt"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:58
+msgid "This username is also disallowed"
+msgstr "Dieser Benutzername ist ebenfalls nicht zulässig"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:93
+#: free/modules/users-login/plugins/blacklist-logins.php:111
+msgid "Please change your username"
+msgstr "Bitte ändere deinen Benutzernamen"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:98
+#, php-format
+msgid ""
+"Your current username %1$s is disallowed. You will not be able to reach the "
+"administration area until you change your username. Meanwhile, you still "
+"have access %2$s."
+msgstr ""
+"Dein aktueller Benutzername %1$s ist nicht zulässig. Du kannst den "
+"Administrationsbereich erst erreichen, wenn du deinen Benutzernamen geändert "
+"hast. In der Zwischenzeit hast du weiterhin Zugriff %2$s."
+
+#: free/modules/users-login/plugins/blacklist-logins.php:100
+msgid "to the site"
+msgstr "auf die Website"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:105
+msgid "New username:"
+msgstr "Neuer Benutzername:"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:139
+msgid "You will receive your new login in your mailbox."
+msgstr "Du erhältst deine neuen Anmeldedaten in deiner Mailbox."
+
+#: free/modules/users-login/plugins/blacklist-logins.php:164
+msgid "Cannot create a user with an empty login name."
+msgstr "Kann keinen Nutzer ohne Nutzernamen erstellen."
+
+#: free/modules/users-login/plugins/blacklist-logins.php:166
+msgid "Username may not be longer than 60 characters."
+msgstr "Der Benutzername darf nicht länger als 60 Zeichen sein."
+
+#: free/modules/users-login/plugins/blacklist-logins.php:170
+msgid "Sorry, that username already exists!"
+msgstr "Entschuldigung, der Benutzername besteht bereits!"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:194
+#, php-format
+msgid "[%s] Your username info"
+msgstr "[%s] Information zu deinem Benutzernamen"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:195
+#: pro/modules/users-login/plugins/sessions-control.php:68
+#, php-format
+msgid "Username: %s"
+msgstr "Benutzername: %s"
+
+#: free/modules/users-login/plugins/blacklist-logins.php:309
+#: free/modules/users-login/plugins/blacklist-logins.php:326
+#: free/modules/users-login/plugins/blacklist-logins.php:367
+#: free/modules/users-login/plugins/blacklist-logins.php:385
+msgid "Sorry, that username is not allowed."
+msgstr "Entschuldigung, dieser Benutzername ist nicht erlaubt."
+
+#: free/modules/users-login/plugins/limitloginattempts.php:77
+#, php-format
+msgid "Login failed, %d attempt left."
+msgid_plural "Login failed, %d attempts left."
+msgstr[0] "Anmeldung fehlgeschlagen, %d Versuch links."
+msgstr[1] ""
+"Anmeldung fehlgeschlagen, %d verbleibende Versuche."
+
+#: free/modules/users-login/plugins/login-captcha.php:36
+msgid "Yes, I’m a human."
+msgstr "Ja, ich bin ein Mensch."
+
+#: free/modules/users-login/plugins/login-captcha.php:37
+msgid "Session expired, please try again."
+msgstr "Sitzung abgelaufen, bitte versuche es noch einmal."
+
+#: free/modules/users-login/plugins/login-captcha.php:76
+msgid "Do not fill in this field."
+msgstr "Fülle dieses Feld nicht aus."
+
+#: free/modules/users-login/plugins/login-captcha.php:150
+#: free/modules/users-login/plugins/login-captcha.php:210
+#: free/modules/users-login/plugins/login-captcha.php:268
+msgid "Error: The human verification is incorrect."
+msgstr "Fehler: Die menschliche Verifizierung ist falsch."
+
+#: free/modules/users-login/plugins/login-captcha.php:299
+#: free/modules/users-login/plugins/login-captcha.php:320
+msgid "You need to enable JavaScript to send this form correctly."
+msgstr ""
+"Du musst JavaScript aktivieren, um dieses Formular richtig absenden zu "
+"können."
+
+#: free/modules/users-login/plugins/move-login.php:463
+#: free/modules/users-login/settings/move-login.php:143
+#: pro/modules/users-login/tools.php:15
+msgid ""
+"This page does not exist, has moved or you are not allowed to access it."
+msgstr ""
+"Diese Seite existiert nicht, ist umgezogen oder du darfst nicht darauf "
+"zugreifen."
+
+#: free/modules/users-login/plugins/move-login.php:513
+msgid "Error: User registration is currently not allowed."
+msgstr ""
+"Fehler: Die Benutzerregistrierung ist derzeit nicht "
+"zulässig."
+
+#: free/modules/users-login/plugins/stop-user-enumeration.php:68
+msgid "Sorry, you are not allowed to do that."
+msgstr "Bedaure, du bist nicht berechtigt, dies ausführen."
+
+#: free/modules/users-login/settings/blacklist-logins.php:6
+msgid "Roles & Usernames"
+msgstr "Rollen & Benutzernamen"
+
+#: free/modules/users-login/settings/blacklist-logins.php:12
+msgid "You cannot forbid user creation since your subscriptions are open."
+msgstr ""
+"Du kannst die Erstellung von Benutzern nicht verbieten, da deine Abonnements "
+"geöffnet sind."
+
+#: free/modules/users-login/settings/blacklist-logins.php:22
+msgid "Yes, always forbid new user creation"
+msgstr "Ja, das Anlegen neuer Benutzer immer verbieten"
+
+#: free/modules/users-login/settings/blacklist-logins.php:32
+msgid "Yes, forbid users to use disallowed usernames"
+msgstr "Ja, Benutzern verbieten, unzulässige Benutzernamen zu verwenden"
+
+#: free/modules/users-login/settings/blacklist-logins.php:41
+msgid "Yes, forbid user and author enumeration"
+msgstr "Ja, Benutzer- und Autorenaufzählung verbieten"
+
+#: free/modules/users-login/settings/blacklist-logins.php:52
+msgid "Lock the Default Role"
+msgstr "Sperren der Standardrolle"
+
+#: free/modules/users-login/settings/blacklist-logins.php:53
+msgid ""
+"Some attacks will try to set the default role on Administrator, "
+"lock the default role to prevent any future change."
+msgstr ""
+"Bei einigen Angriffen wird versucht, die Standardrolle auf "
+"\"Administrator\" festzulegen und die Standardrolle zu sperren, um "
+"zukünftige Änderungen zu verhindern."
+
+#: free/modules/users-login/settings/blacklist-logins.php:58
+msgid "Yes, forbid the modification of the default role."
+msgstr "Ja, verbiete die Änderung der Standardrolle."
+
+#: free/modules/users-login/settings/blacklist-logins.php:60
+#, php-format
+msgid "For information, the default role on this site is: %s"
+msgstr "Zur Information: Die Standardrolle auf dieser Website lautet: %s"
+
+#: free/modules/users-login/settings/blacklist-logins.php:65
+msgid "Which Role to Lock?"
+msgstr "Welche Rolle soll gesperrt werden?"
+
+#: free/modules/users-login/settings/blacklist-logins.php:74
+msgid "You have to deactivate the module first to change the default role."
+msgstr ""
+"Du musst das Modul zuerst deaktivieren, um die Standardrolle zu ändern."
+
+#: free/modules/users-login/settings/blacklist-logins.php:89
+msgid "You cannot lock the membership now since anyone can register."
+msgstr ""
+"Du kannst die Mitgliedschaft jetzt nicht sperren, da sich jeder registrieren "
+"kann."
+
+#: free/modules/users-login/settings/blacklist-logins.php:93
+msgid "Lock the Membership Setting"
+msgstr "Sperren der Mitgliedschaftseinstellung"
+
+#: free/modules/users-login/settings/blacklist-logins.php:94
+msgid ""
+"Some attacks will try to set the membership status on Anyone can "
+"register, lock the membership setting to No and forbid any "
+"future change."
+msgstr ""
+"Bei einigen Angriffen wird versucht, den Mitgliedschaftsstatus auf "
+"\"Jeder kann sich registrieren\" zu setzen. Die "
+"Mitgliedschaftseinstellung auf \"Nein\" zu sperren wird solche "
+"Änderungen zukünftig verbieten."
+
+#: free/modules/users-login/settings/blacklist-logins.php:100
+msgid "Yes, forbid the modification of the membership status."
+msgstr "Ja, verbiete die Änderung des Mitgliedschaftsstatus."
+
+#: free/modules/users-login/settings/blacklist-logins.php:108
+msgid "Lock the Admin Email"
+msgstr "Sperre die Admin-E-Mail-Adresse"
+
+#: free/modules/users-login/settings/blacklist-logins.php:109
+msgid ""
+"Some attacks will try to set the admin email on their, lock the website’s "
+"admin email to forbid any future change."
+msgstr ""
+"Einige Angriffe versuchen, die Admin-E-Mail-Adresse auf ihre Website zu "
+"setzen und die Admin-E-Mail-Adresse der Website zu sperren, um zukünftige "
+"Änderungen zu verhindern."
+
+#: free/modules/users-login/settings/blacklist-logins.php:114
+msgid "Yes, forbid the modification of the admin email."
+msgstr "Ja, verbiete die Änderung der Admin-E-Mail."
+
+#: free/modules/users-login/settings/blacklist-logins.php:116
+#, php-format
+msgid "For information, the admin email on this site is: %s"
+msgstr ""
+"Zur Information: Die Admin-E-Mail-Adresse auf dieser Website lautet: %s"
+
+#: free/modules/users-login/settings/double-auth.php:8
+msgid ""
+"Two-Factor Authentication is a way to enforce another layer of login "
+"verification, like an additional password, a secret key, a special link sent "
+"by email etc. Not just your login and password."
+msgstr ""
+"Zwei-Faktor-Authentifizierung ist neben dem Benutzernnamen und Passwort eine "
+"weitere zweite Stufe, um eine Anmeldeverifizierung zu erzwingen, z.B. durch "
+"ein zusätzliches Passwort, einen geheimen Schlüssel, einen speziellen per E-"
+"Mail versendeten Link."
+
+#: free/modules/users-login/settings/double-auth.php:9
+msgid "Authentication"
+msgstr "Authentifizierung"
+
+#: free/modules/users-login/settings/double-auth.php:14
+#: free/modules/users-login/settings/double-auth.php:28
+#: free/modules/users-login/settings/double-auth.php:42
+msgid "Use a Two-Factor Authentication"
+msgstr "Verwende eine Zwei-Faktor-Authentifizierung"
+
+#: free/modules/users-login/settings/double-auth.php:21
+#: free/modules/users-login/settings/move-login.php:82
+#, php-format
+msgid "The %1$s constant is set, you cannot use the %2$s module."
+msgstr ""
+"Die Konstante %1$s ist festgelegt, Du kannst das Modul %2$s nicht verwenden."
+
+#: free/modules/users-login/settings/double-auth.php:35
+#, php-format
+msgid "The %1$s plugin is active, you cannot use the %2$s module."
+msgstr "Das %1$s Plugin aktiv ist, kannst du das %2$sModul nicht verwenden."
+
+#: free/modules/users-login/settings/double-auth.php:46
+msgid "Yes, use the PasswordLess method"
+msgstr "Ja, verwende die PasswordLess-Methode"
+
+#: free/modules/users-login/settings/double-auth.php:51
+msgid ""
+"Users will just have to enter their email address when log in, then click on "
+"a link in the email they receive."
+msgstr ""
+"Benutzer müssen, wenn sie sich anmelden ihre E-Mail-Adresse angeben und dann "
+"in der E-Mail, die sie erhalten, auf einen Link klicken."
+
+#: free/modules/users-login/settings/double-auth.php:55
+msgid ""
+"This module will not work until validated by a link sent to your email "
+"address when you activated it."
+msgstr ""
+"Dieses Modul funktioniert nicht, bist es durch einen Link validiert wurde, "
+"der an deine E-Mail-Adresse versandt wurde, als du es aktiviert hast."
+
+#: free/modules/users-login/settings/double-auth.php:86
+msgid "Use a Captcha on login page"
+msgstr "Ein Captcha auf der Anmeldeseite einrichten"
+
+#: free/modules/users-login/settings/double-auth.php:87
+msgid ""
+"This Captcha will forbid the login form from being sent if its rule isn’t "
+"respected."
+msgstr ""
+"Dieses Captcha verbietet das Senden des Anmeldeformulars, wenn seine Regel "
+"nicht eingehalten wird."
+
+#: free/modules/users-login/settings/double-auth.php:94
+msgid "Yes, use a Captcha"
+msgstr "Ja, verwende Captcha"
+
+#: free/modules/users-login/settings/double-auth.php:98
+msgid ""
+"This module requires JavaScript to be enabled and it’s not so you can’t use "
+"it."
+msgstr ""
+"Dieses Modul erfordert, dass JavaScript aktiviert ist, und es ist nicht so, "
+"dass du es nicht verwenden kannst."
+
+#: free/modules/users-login/settings/login-protection.php:6
+msgid "Login Control"
+msgstr "Anmeldekontrolle"
+
+#: free/modules/users-login/settings/login-protection.php:11
+msgid "Limit the number of bad login attempts"
+msgstr "Begrenze die Anzahl schlechter Anmeldeversuche"
+
+#: free/modules/users-login/settings/login-protection.php:12
+msgid "Ban login attempts on non-existing usernames"
+msgstr "Verbanne Anmeldeversuche von nicht vorhandenen Benutzernamen"
+
+#: free/modules/users-login/settings/login-protection.php:24
+msgid "Use an attempt blocker"
+msgstr "Verwende einen Versuchsblocker"
+
+#: free/modules/users-login/settings/login-protection.php:25
+msgid ""
+"You can temporary ban bots who try to mess with the login page to prevent "
+"being the victim of a brute-force attack."
+msgstr ""
+"Um zu vermeiden, dass du Opfer eines Brute-Force-Angriffs wirst, kannst du "
+"Bots vorübergehend verbannen, die auf der Anmeldeseite rumwerkeln."
+
+#: free/modules/users-login/settings/login-protection.php:36
+msgid "How many attempts before a ban?"
+msgstr "Wieviele Versuche sind vor einer Verbannung mölgich?"
+
+#: free/modules/users-login/settings/login-protection.php:37
+#: free/modules/users-login/settings/login-protection.php:51
+#, php-format
+msgid "Recommended: %s"
+msgstr "Empfohlen: %s"
+
+#: free/modules/users-login/settings/login-protection.php:50
+msgid "How long should we ban?"
+msgstr "Wie lange soll der Ausschluss andauern?"
+
+#: free/modules/users-login/settings/login-protection.php:55
+#: pro/admin/settings.php:53 pro/admin/settings.php:68
+msgctxt "minute"
+msgid "min"
+msgstr "min"
+
+#: free/modules/users-login/settings/login-protection.php:65
+msgid "Disconnect or Reset Password of any user in one click."
+msgstr ""
+"Trennen oder Zurücksetzen des Kennworts eines Benutzers mit einem Klick."
+
+#: free/modules/users-login/settings/login-protection.php:70
+msgid "Yes, control user sessions"
+msgstr "Ja, überwache deine Sitzungen"
+
+#: free/modules/users-login/settings/login-protection.php:74
+#, php-format
+msgid ""
+"You will find action links on every user’s row in the user "
+"listing administration page."
+msgstr ""
+"Aktionslinks finden in jeder Zeile des Benutzers auf der Verwaltungsseite der Benutzerliste."
+
+#: free/modules/users-login/settings/login-protection.php:81
+msgid "Hiding login errors will prevent to leak login informations."
+msgstr ""
+"Das Ausblenden von Anmeldefehlern verhindert, dass Anmeldeinformationen "
+"durchsickern."
+
+#: free/modules/users-login/settings/login-protection.php:86
+msgid "Yes, hide the usual login errors"
+msgstr "Ja, blende die üblichen Login-Fehler aus"
+
+#: free/modules/users-login/settings/move-login.php:7
+msgid "Login Pages"
+msgstr "Anmeldeseiten"
+
+#: free/modules/users-login/settings/move-login.php:21
+#: free/modules/users-login/settings/move-login.php:46
+#: free/modules/users-login/settings/move-login.php:65
+#: free/modules/users-login/settings/move-login.php:75
+msgid "Move the login and admin pages"
+msgstr "Verschiebe die Login- und Backendseiten"
+
+#: free/modules/users-login/settings/move-login.php:27
+#: free/modules/users-login/settings/move-login.php:52
+#: free/modules/users-login/settings/move-login.php:70
+msgid "Yes, move the login and admin pages"
+msgstr "Ja, verschiebe die Anmeldeseite und das Backend"
+
+#: free/modules/users-login/settings/move-login.php:56
+#, php-format
+msgid ""
+"Your website is not using Pretty Permalinks but this module needs "
+"that. You can activate that in the Permalinks Settings Page"
+"a> and do not use \"Plain\" setting."
+msgstr ""
+"Deine Webseite verwendet keine Pretty Permalinks , aber dieses Modul "
+"benötigt das. Du kannst dies auf der Permalinks-"
+"Einstellungsseite aktivieren und nicht die Einstellung \"Einfach\" "
+"verwenden."
+
+#: free/modules/users-login/settings/move-login.php:113
+msgid "URL"
+msgstr "URL"
+
+#: free/modules/users-login/settings/move-login.php:119
+msgid "What to do when the old page is triggered?"
+msgstr "Was soll getan werden, wenn die alte Anmeldeseite aufgerufen wird?"
+
+#: free/modules/users-login/settings/move-login.php:124
+msgid "Standard Error Message"
+msgstr "Standard-Fehlermeldung"
+
+#: free/modules/users-login/settings/move-login.php:125
+msgid "Custom Error Message"
+msgstr "Benutzerdefinierte Fehlermeldung"
+
+#: free/modules/users-login/settings/move-login.php:126
+#: free/modules/users-login/settings/move-login.php:154
+msgid "Custom Page"
+msgstr "Benutzerdefinierte Seite"
+
+#: free/modules/users-login/settings/move-login.php:132
+msgid "Preview"
+msgstr "Vorschau"
+
+#: free/modules/users-login/settings/move-login.php:134
+msgid "secupress-movelogin-error-preview-en_US.png"
+msgstr "secupress-movelogin-error-preview-en_US.png"
+
+#: free/modules/users-login/settings/move-login.php:139
+msgid "Custom Message"
+msgstr "Individuelle Nachricht"
+
+#: free/modules/users-login/settings/move-login.php:148
+msgid ""
+"Clean HTML allowed. The recovery form will be automatically added at the end "
+"of your content."
+msgstr ""
+"Sauberes HTML ist zulässig. Das Wiederherstellungsformular wird automatisch "
+"am Ende deines Inhalts hinzugefügt."
+
+#: free/modules/users-login/settings/move-login.php:164
+msgid "A custom page from your site, only."
+msgstr "Nur eine benutzerdefinierte Seite von deiner Website."
+
+#: free/modules/users-login/settings/move-login.php:178
+#, php-format
+msgid ""
+"You need to add the following code from your %1$s file, inside the %2$s "
+"block:"
+msgstr ""
+"Du musst den folgenden Code aus deiner %1$s Datei innerhalb des Blocks %2$s "
+"hinzufügen:"
+
+#: free/modules/users-login/settings/move-login.php:184
+msgid "Rules"
+msgstr "Regeln"
+
+#: free/modules/users-login/settings/password-policy.php:6
+msgid "Password Policy"
+msgstr "Passwortrichtlinien"
+
+#: free/modules/users-login/settings/password-policy.php:11
+#, php-format
+msgid "Recommended: %s days,
0 = never expires"
+msgstr "Empfohlen: %s Tage,
0 = läuft nie ab"
+
+#: free/modules/users-login/settings/password-policy.php:15
+msgid "days"
+msgstr "Tage"
+
+#: free/modules/users-login/settings/password-policy.php:25
+msgid "Force Strong Passwords"
+msgstr "Erzwinge starke Passwörter"
+
+#: free/modules/users-login/settings/password-policy.php:26
+msgid ""
+"When a user is changing their password, a strong password will be required "
+"to continue."
+msgstr ""
+"Wenn ein Benutzer sein Passwort ändert, ist ein starkes Passwort "
+"erforderlich, um fortzufahren."
+
+#: free/modules/users-login/settings/password-policy.php:31
+msgid "Yes, force the use of strong passwords usage"
+msgstr "Ja, erzwinge die Verwendung starker Passwörter"
+
+#: free/modules/welcome/callbacks.php:157
+msgid "Your license has been successfully deactivated."
+msgstr "Deine Lizenz wurde erfolgreich deaktiviert."
+
+#: free/modules/welcome/callbacks.php:159
+msgid "Your license has been successfully activated."
+msgstr "Deine Lizenz wurde erfolgreich aktiviert."
+
+#: free/modules/welcome/callbacks.php:213
+msgid "Plugin has been renamed correctly."
+msgstr "Das Plugin wurde korrekt umbenannt."
+
+#: free/modules/welcome/callbacks.php:404
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:163
+msgid "our support team"
+msgstr "unser Support-Team"
+
+#: free/modules/welcome/callbacks.php:408
+msgid "Please provide a valid email address and your license key."
+msgstr "Bitte gib eine gültige E-Mail-Adresse und deinen Lizenzschlüssel ein."
+
+#: free/modules/welcome/callbacks.php:409
+msgid "Please provide a valid email address."
+msgstr "Bitte gebe eine gültige E-Mail-Adresse an."
+
+#: free/modules/welcome/callbacks.php:410
+msgid "Please provide your license key."
+msgstr "Bitte gib deinen Lizenzschlüssel ein."
+
+#: free/modules/welcome/callbacks.php:413
+#, php-format
+msgid "Your license key seems invalid. You may want %s."
+msgstr ""
+"Dein Lizenzschlüssel scheint ungültig zu sein. Vielleicht möchtest du %s."
+
+#: free/modules/welcome/callbacks.php:414
+#: free/modules/welcome/callbacks.php:428
+msgid "to verify these infos"
+msgstr "um diese Informationen zu bestätigen"
+
+#: free/modules/welcome/callbacks.php:416
+#: free/modules/welcome/callbacks.php:506
+msgid "Something on your website is preventing the request to be sent."
+msgstr "Auf deiner Website hindert etwas daran, die Anfrage zu senden."
+
+#: free/modules/welcome/callbacks.php:418
+#, php-format
+msgid ""
+"Our server is not accessible at the moment, please try again later or "
+"contact %s."
+msgstr ""
+"Unser Webserver ist im Moment nicht erreichbar, bitte versuche es später "
+"nochmal oder kontaktiere %s."
+
+#: free/modules/welcome/callbacks.php:420
+#, php-format
+msgid ""
+"Our server returned an unexpected response and might be in error, please try "
+"again later or contact %s."
+msgstr ""
+"Unser Server hat eine unerwartete Antwort zurückgegeben und ist "
+"möglicherweise fehlerhaft, bitte versuche es später nochmal oder kontaktiere "
+"%s."
+
+#: free/modules/welcome/callbacks.php:422
+#, php-format
+msgid "There is a problem with your license key, please contact %s."
+msgstr "Des gibt ein Problem mit deinem Lizenzschlüssel, bitte sprich %s an."
+
+#: free/modules/welcome/callbacks.php:423
+msgid "The email address is invalid."
+msgstr "Die E-Mail-Adresse ist ungültig."
+
+#: free/modules/welcome/callbacks.php:424
+msgid "The license key is invalid."
+msgstr "Der Lizenzschlüssel ist ungültig."
+
+#: free/modules/welcome/callbacks.php:427
+#, php-format
+msgid "This email address is not in our database. You may want %s."
+msgstr ""
+"Diese E-Mail-Adresse ist nicht in unserer Datenbank. Du möchtest vielleicht "
+"%s."
+
+#: free/modules/welcome/callbacks.php:439
+#: free/modules/welcome/callbacks.php:441
+#, php-format
+msgid ""
+"There is a problem with your license key, please verify it. If you think "
+"there is a mistake, you should contact %s."
+msgstr ""
+"Es gibt ein Problem mit deinem Lizenzschlüssel, bitte prüfe ihn. Wenn du "
+"denkst, dass ein Irrtum vorliegt, solltest du %s ansprechen."
+
+#: free/modules/welcome/callbacks.php:443
+#, php-format
+msgid ""
+"This license key has been revoked. If you think there is a mistake, you "
+"should contact %s."
+msgstr ""
+"Der Lizenzschlüssel wurde widerrufen. Wenn du denkst, dass ein Irrtum "
+"vorliegt, solltest du %s ansprechen."
+
+#: free/modules/welcome/callbacks.php:446
+#, php-format
+msgid "This license key expired. You may want %s."
+msgstr "Der Lizenzschlüssel ist abgelaufen. Du möchtest vielleicht %s."
+
+#: free/modules/welcome/callbacks.php:447
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:186
+msgid "to renew your subscription"
+msgstr "dein Abonnement verlängern"
+
+#: free/modules/welcome/callbacks.php:451
+#, php-format
+msgid ""
+"You used as many sites as your license allows. You may want %s to add more "
+"sites."
+msgstr ""
+"Du verwendest so viele Websites, wie deine Lizenz zulässt. Möglicherweise "
+"möchtest du %s weitere Websites hinzufügen."
+
+#: free/modules/welcome/callbacks.php:452
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:192
+msgid "to upgrade your license"
+msgstr "deine Lizenz upgraden"
+
+#: free/modules/welcome/callbacks.php:465
+#, php-format
+msgid ""
+"Something may be wrong with your license, please take a look at %1$s or "
+"contact %2$s."
+msgstr ""
+"Mit deiner Lizenz könnte etwas nicht stimmen, bitte schau bei %1$s nach oder "
+"sprich %2$s an."
+
+#: free/modules/welcome/callbacks.php:466
+msgid "your account"
+msgstr "Dein Konto"
+
+#: free/modules/welcome/callbacks.php:514
+msgid "Our server is not accessible at the moment."
+msgstr "Unser Server ist im Moment nicht erreichbar."
+
+#: free/modules/welcome/callbacks.php:525
+msgid "Our server returned an unexpected response and might be in error."
+msgstr ""
+"Unser Server hat eine unerwartete Antwort zurückgegeben und ist "
+"möglicherweise fehlerhaft."
+
+#: free/modules/welcome/callbacks.php:533
+msgid "Our server returned an error."
+msgstr "Unser Server hat einen Fehler zurückgegeben."
+
+#: free/modules/welcome/callbacks.php:558
+#, php-format
+msgid ""
+"Please deactivate this site from your %s (the \"Manage Sites\" link in your "
+"license details)."
+msgstr ""
+"Bitte deaktiviere diese Website von deinem %s (der „Websites verwalten“-Link "
+"in deinen Lizenzangaben)."
+
+#: free/modules/welcome/settings/advanced-settings.php:12
+msgid "Admin Bar"
+msgstr "Admin-Leiste"
+
+#: free/modules/welcome/settings/advanced-settings.php:16
+#, php-format
+msgid "Yes, display the %s admin bar menu"
+msgstr "Ja, das Menü der %sAdmin-Leiste anzeigen"
+
+#: free/modules/welcome/settings/advanced-settings.php:20
+msgid "Grade System"
+msgstr "Gütesystem"
+
+#: free/modules/welcome/settings/advanced-settings.php:24
+#, php-format
+msgid "Yes, use and display the Grade system in %s"
+msgstr "Ja, verwenden und zeige das Notensystem in %s"
+
+#: free/modules/welcome/settings/advanced-settings.php:28
+msgid "Expert Mode"
+msgstr "Experten-Modus"
+
+#: free/modules/welcome/settings/advanced-settings.php:32
+#, php-format
+msgid "Yes, hide all the contextual helps in %s"
+msgstr "Ja, verstecke alle kontextbezogenen Hilfen in %s"
+
+#: free/modules/welcome/settings/api-key.php:9
+msgid "License Validation"
+msgstr "Lizenz-Validierung"
+
+#: free/modules/welcome/settings/api-key.php:23
+msgid "Activate the license"
+msgstr "Aktiviere die Lizenz"
+
+#: free/modules/welcome/settings/api-key.php:28
+msgid "Your License Key is inactive or invalid."
+msgstr "Dein Lizenzschlüssel ist inaktiv oder ungültig."
+
+#: free/modules/welcome/settings/api-key.php:30
+msgid "Deactivate the license"
+msgstr "Deaktiviere die Lizenz"
+
+#: free/modules/welcome/settings/api-key.php:54
+msgid "E-mail Address"
+msgstr "E-Mail-Adresse"
+
+#: free/modules/welcome/settings/api-key.php:62
+msgctxt "e-mail address"
+msgid "The one you used for your Pro account."
+msgstr "Diejenige, die du für dein Pro-Konto verwendet hast."
+
+#: free/modules/welcome/settings/api-key.php:69
+#: free/modules/welcome/settings/api-key.php:85
+msgid "License Key"
+msgstr "Lizenzschlüssel"
+
+#: free/modules/welcome/settings/api-key.php:78
+#: free/modules/welcome/settings/api-key.php:94
+msgid "The license key obtained with your Pro account."
+msgstr "Der Lizenzschlüssel, den du für dein Pro-Konto erhalten hast."
+
+#: free/modules/welcome/settings/settings-manager.php:9
+msgid "Settings Manager"
+msgstr "Einstellungsmanager"
+
+#: free/modules/welcome/settings/settings-manager.php:13
+msgid "Settings Exporter"
+msgstr "Einstellungen exportieren"
+
+#: free/modules/welcome/settings/settings-manager.php:14
+msgid ""
+"Export your settings so you can import them into another website or keep "
+"them as backup."
+msgstr ""
+"Exportiere deine Einstellungen, damit du sie in eine andere Website "
+"importieren oder als Backup aufbewahren kannst."
+
+#: free/modules/welcome/settings/settings-manager.php:21
+msgid "Settings Importer"
+msgstr "Einstellungen importieren"
+
+#: free/modules/welcome/settings/settings-manager.php:22
+msgid ""
+"Import previously exported settings from another website or from a previous "
+"save."
+msgstr ""
+"Importiere zuvor exportierte Einstellungen von einer anderen Website oder "
+"von einem früheren Speicherstand."
+
+#: free/modules/welcome/settings/settings-manager.php:29
+msgid "Reset All Settings"
+msgstr "Alle Einstellungen zurücksetzen"
+
+#: free/modules/welcome/settings/settings-manager.php:30
+msgid "Set the settings like a fresh install."
+msgstr "Lege die Einstellungen wie bei einer Neuinstallation fest."
+
+#: free/modules/welcome/settings/wl.php:9
+msgid ""
+"You can change the name of the plugin, this will be shown on the plugins "
+"page, only when activated. Leave the plugin name empty to remove the White "
+"Label."
+msgstr ""
+"Du kannst den Namen des Plugins ändern, dies wird auf der Plugin-Seite "
+"angezeigt, nur wenn es aktiviert ist. Lasse den Plugin-Namen leer, um das "
+"White Label zu entfernen."
+
+#: free/modules/welcome/settings/wl.php:13 pro/admin/modules/wl.php:11
+msgid "Plugin name"
+msgstr "Erweiterungs-Name"
+
+#: free/modules/welcome/settings/wl.php:20 pro/admin/modules/wl.php:17
+msgid "Plugin URL"
+msgstr "Plugin URL"
+
+#: free/modules/welcome/settings/wl.php:27 pro/admin/modules/wl.php:29
+msgid "Plugin author"
+msgstr "Plugin-Autor"
+
+#: free/modules/welcome/settings/wl.php:34 pro/admin/modules/wl.php:35
+msgid "Plugin author URL"
+msgstr "Plugin-Autoren-URL"
+
+#: free/modules/welcome/settings/wl.php:41 pro/admin/modules/wl.php:23
+msgid "Plugin description"
+msgstr "Beschreibung des Plugins"
+
+#: free/modules/wordpress-core/plugins/minor-updates.php:69
+#, php-format
+msgid ""
+"%1$s couldn’t remove a constant definition from the %2$s file. Please remove "
+"the following line from the file: %3$s"
+msgid_plural ""
+"%1$s couldn’t remove some constant definitions from the %2$s file. Please "
+"remove the following lines from the file: %3$s"
+msgstr[0] ""
+"%1$s konnte keine Konstantendefinition aus der %2$sDatei entfernen. Bitte "
+"entferne die folgende Zeile aus der Datei: %3$s"
+msgstr[1] ""
+"%1$s konnten einige konstante Definitionen nicht aus der %2$sDatei "
+"entfernen. Bitte entferne die folgenden Zeilen aus der Datei: %3$s"
+
+#: free/modules/wordpress-core/plugins/wp-config-constant-locations.php:50
+msgid "Disabled for security reasons"
+msgstr "Aus Sicherheitsgründen deaktiviert"
+
+#: free/modules/wordpress-core/settings/auto-update.php:6
+msgid "WordPress Updates"
+msgstr "WordPress-Aktualisierungen"
+
+#: free/modules/wordpress-core/settings/auto-update.php:13
+#, php-format
+msgid ""
+"By default, WordPress updates itself when a minor version is available. But "
+"a plugin could disable this feature: this setting will force automatic "
+"background updates regardless. Example: %s is a minor "
+"version."
+msgstr ""
+"Standardmäßig aktualisiert sich WordPress selbst, wenn eine Nebenversion "
+"verfügbar ist. Aber ein Plugin könnte diese Funktion deaktivieren: Diese "
+"Einstellung erzwingt trotzdem automatische Hintergrundaktualisierungen. "
+"Beispiel: %s ist eine Nebenversion."
+
+#: free/modules/wordpress-core/settings/auto-update.php:18
+msgid ""
+"Yes, try to force WordPress to allow auto updates for minor "
+"versions."
+msgstr ""
+"Ja, versuche WordPress zu zwingen, automatische Aktualisierungen von "
+"Neben-Versionen zu erlauben."
+
+#: free/modules/wordpress-core/settings/auto-update.php:22
+msgid ""
+"Not allowing this may result in using a vulnerable version of WordPress. "
+"Usually, minor versions are safe to update and contain security fixes."
+msgstr ""
+"Wenn du das nicht zulässt, kann dies dazu führen, dass eine anfällige "
+"Version von WordPress verwendet wird. In der Regel können Nebenversionen "
+"sicher aktualisiert werden und enthalten Sicherheitskorrekturen."
+
+#: free/modules/wordpress-core/settings/auto-update.php:31
+#, php-format
+msgid ""
+"Let WordPress update itself when a major version is available. Example: "
+"%s is a major version."
+msgstr ""
+"Lasse WordPress sich selbst aktualisieren, wenn eine Hauptversion verfügbar "
+"ist. Beispiel: %s ist eine Hauptversion."
+
+#: free/modules/wordpress-core/settings/auto-update.php:36
+msgid ""
+"Yes, try to force WordPress to allow auto updates for major "
+"versions."
+msgstr ""
+"Ja, versuche WordPress zu zwingen, automatische Aktualisierungen von "
+"Haupt-Versionen zu erlauben."
+
+#: free/modules/wordpress-core/settings/auto-update.php:40
+msgid ""
+"This is not mandatory but recommended since a major version may also contain "
+"security fixes."
+msgstr ""
+"Dies ist nicht zwingend erforderlich, aber empfohlen, da Hauptversionen "
+"ebenfalls Sicherheitslücken beheben können."
+
+#: free/modules/wordpress-core/settings/database.php:6
+msgid "WordPress Database"
+msgstr "WordPress-Datenbank"
+
+#: free/modules/wordpress-core/settings/database.php:13
+msgid "Change WordPress Database Prefix"
+msgstr "WordPress-Datenbankpräfix ändern"
+
+#: free/modules/wordpress-core/settings/database.php:14
+msgid "You may need to change it manually."
+msgstr "Möglicherweise musst du den Präfix manuell ändern."
+
+#: free/modules/wordpress-core/settings/database.php:18
+msgid "Generate one"
+msgstr "Generiere eine"
+
+#: free/modules/wordpress-core/settings/database.php:22
+msgid ""
+"Format rules:- Only letters, numbers, and
_
allowed."
+"li> - At least 1 letter or 1 number, 12 chars max.
- Do not use "
+"
wp_
or wordpress_
. - A
_
will "
+"be appended if not present.
"
+msgstr ""
+"Formatierungsregeln:- Nur Buchstaben, Zahlen und
_
"
+"erlaubt. - Mindestens 1 Buchstabe oder 1 Zahl, max. 12 Zeichen"
+"li>
- Verwende
wp_
nicht oder wordpress_
."
+"li> - A
_
wird angehängt, wenn es nicht vorhanden ist. "
+"ul>"
+
+#: free/modules/wordpress-core/settings/database.php:29
+msgid "Which tables to rename?"
+msgstr "Welche Tabellen sollen umbenannt werden?"
+
+#: free/modules/wordpress-core/settings/wp-config.php:6
+msgid "WordPress configuration file"
+msgstr "WordPress-Konfigurationsdatei"
+
+#: free/modules/wordpress-core/settings/wp-config.php:12
+#, php-format
+msgid ""
+"The %s
dir is not writable, the constant cannot be changed."
+msgstr ""
+"Der %s
Verzeichnis ist nicht beschreibbar, die Konstante kann "
+"nicht geändert werden."
+
+#: free/modules/wordpress-core/settings/wp-config.php:24
+msgid "Debugging"
+msgstr "Debugging"
+
+#: free/modules/wordpress-core/settings/wp-config.php:25
+msgid ""
+"In a normal production environment you have to prevent errors from being "
+"displayed."
+msgstr ""
+"In einer normalen Produktionsumgebung musst du verhindern, dass Fehler "
+"angezeigt werden."
+
+#: free/modules/wordpress-core/settings/wp-config.php:30
+msgid "Yes, prevent my site to display errors."
+msgstr "Ja, verhindern, dass auf meiner Website Fehler angezeigt werden."
+
+#: free/modules/wordpress-core/settings/wp-config.php:48
+msgid "Locations"
+msgstr "Standorte"
+
+#: free/modules/wordpress-core/settings/wp-config.php:49
+msgid ""
+"In a normal production environment you don’t need to relocate your site and "
+"home URL."
+msgstr ""
+"In einer normalen Produktionsumgebung musst du deine Website und die Start-"
+"URL nicht verschieben."
+
+#: free/modules/wordpress-core/settings/wp-config.php:54
+msgid "Yes, prevent my site and home URL to be relocated."
+msgstr ""
+"Ja, verhindere, dass meine Website und meine Home-URL verschoben werden."
+
+#: free/modules/wordpress-core/settings/wp-config.php:72
+msgid "File editing"
+msgstr "Bearbeitung von Dateien"
+
+#: free/modules/wordpress-core/settings/wp-config.php:73
+msgid ""
+"Administrators shouldn’t be able to edit the plugin and theme files directly "
+"within the WordPress administration area."
+msgstr ""
+"Administratoren sollten nicht in der Lage sein, die Plugin- und Theme-"
+"Dateien direkt im WordPress-Administrationsbereich zu bearbeiten."
+
+#: free/modules/wordpress-core/settings/wp-config.php:78
+msgid "Yes, disable the file editor"
+msgstr "Ja, deaktiviere den Datei-Editor"
+
+#: free/modules/wordpress-core/settings/wp-config.php:96
+msgid "Unfiltered uploads"
+msgstr "Ungefilterte Uploads"
+
+#: free/modules/wordpress-core/settings/wp-config.php:97
+msgid "Administrators shouldn’t be allowed to upload any type of file."
+msgstr "Administratoren sollten keine Dateitypen hochladen dürfen."
+
+#: free/modules/wordpress-core/settings/wp-config.php:102
+msgid "Yes, filter uploads"
+msgstr "Ja, filtere Uploads"
+
+#: free/modules/wordpress-core/settings/wp-config.php:120
+msgid "Database Errors"
+msgstr "Datenbank-Fehler"
+
+#: free/modules/wordpress-core/settings/wp-config.php:121
+msgid ""
+"Database errors shouldn’t be displayed on front-office to prevent attackers "
+"to read your database prefix and tables."
+msgstr ""
+"Datenbankfehler sollten nicht im Frontoffice angezeigt werden, um zu "
+"verhindern, dass Angreifer dein Datenbankpräfix und deine Tabellen lesen."
+
+#: free/modules/wordpress-core/settings/wp-config.php:126
+msgid "Yes, hide any database error on front-office."
+msgstr "Ja, blende alle Datenbankfehler im Front-Office aus."
+
+#: free/modules/wordpress-core/settings/wp-config.php:144
+msgid "Repairing Database"
+msgstr "Reparieren der Datenbank"
+
+#: free/modules/wordpress-core/settings/wp-config.php:145
+msgid ""
+"In a normal production environment your repair page shouldn’t be available."
+msgstr ""
+"In einer normalen Produktionsumgebung sollte deine Reparaturseite nicht "
+"verfügbar sein."
+
+#: free/modules/wordpress-core/settings/wp-config.php:150
+#, php-format
+msgid ""
+"Yes, force my Database Repair Page to "
+"be unavailable."
+msgstr ""
+"Ja, erzwingen, dass meine Datenbankreparaturseite nicht verfügbar ist."
+
+#: free/modules/wordpress-core/settings/wp-config.php:168
+msgid "WordPress Security Keys"
+msgstr "WordPress-Sicherheitsschlüssel"
+
+#: free/modules/wordpress-core/settings/wp-config.php:169
+msgid "Creates tamper-proof security keys for your installation."
+msgstr ""
+"Erstellt manipulationssichere Sicherheitsschlüssel für deine Installation."
+
+#: free/modules/wordpress-core/settings/wp-config.php:174
+msgid "Yes, create secure keys for my installation."
+msgstr "Ja, sichere Schlüssel für meine Installation erstellen."
+
+#: free/modules/wordpress-core/settings/wp-config.php:179
+msgid ""
+"8 constants will be created in a must-use plugin and the "
+"ones in your wp-config.php
file and database removed."
+msgstr ""
+"8 Konstanten werden in einem unverzichtbaren Plugin "
+"erstellt und die in deiner wp-config.php
Datei und Datenbank "
+"entfernt."
+
+#: free/modules/wordpress-core/settings/wp-config.php:183
+#: free/modules/wordpress-core/settings/wp-config.php:218
+msgid "By deactivating this module you may need to sign back in."
+msgstr ""
+"Wenn du dieses Modul deaktivierst, musst du dich möglicherweise wieder "
+"anmelden."
+
+#: free/modules/wordpress-core/settings/wp-config.php:194
+#: free/modules/wordpress-core/settings/wp-config.php:196
+msgid "Regenerate the secure keys"
+msgstr "Generiere die sicheren Schlüssel neu"
+
+#: free/modules/wordpress-core/settings/wp-config.php:203
+msgid "WordPress Cookie Default Name"
+msgstr "WordPress-Cookie-Standardname"
+
+#: free/modules/wordpress-core/settings/wp-config.php:204
+msgid ""
+"Every WordPress cookie contains a string, but we can guess it for any site. "
+"Don’t reveal yours, it will be harder to target for some hacks."
+msgstr ""
+"Jedes WordPress-Cookie enthält eine Zeichenfolge, aber man kann sie für jede "
+"Website erraten. Gib deine nicht preis, dann wird es schwieriger, einige "
+"Hacks ins Visier zu nehmen."
+
+#: free/modules/wordpress-core/settings/wp-config.php:209
+msgid "Yes, change my WP cookie default value for something random."
+msgstr "Ja, ändere meinen WP-Cookie-Standardwert für etwas Zufälliges."
+
+#: free/modules/wordpress-core/settings/wp-config.php:214
+msgid "[a random string]"
+msgstr "[eine zufällige Zeichenfolge]"
+
+#: free/modules/wordpress-core/settings/wp-config.php:232
+#, php-format
+msgid ""
+"These options are disabled because the %1$s file is not writable. Please "
+"apply %2$s write rights to the file. Need help?"
+msgstr ""
+"Diese Optionen sind deaktiviert, da die Datei %1$s nicht beschreibbar ist. "
+"Wende die Schreibrechte von %2$s auf die Datei an. Benötigst du Hilfe?"
+"a>"
+
+#: free/modules/wordpress-core/tools.php:16
+#, php-format
+msgid ""
+"The %s
file is not writable. Please apply 0644
"
+"rights on this file."
+msgstr ""
+"Die Datei %s
ist nicht beschreibbar. Bitte wende 0644"
+"code> Rechte auf diese Datei an."
+
+#: free/modules/wordpress-core/tools.php:58
+#, php-format
+msgid ""
+"%1$s couldn’t change the value of the constant %2$s in the %3$s file. Please "
+"edit it and replace the lines that states: %4$s by: %5$s"
+msgstr ""
+"%1$s konnte den Wert der Konstante %2$s in der %3$sDatei nicht ändern. Bitte "
+"bearbeite es und ersetze die Zeilen mit der Aufschrift: %4$s durch: %5$s"
+
+#: free/modules/wordpress-core/tools.php:76
+#, php-format
+msgid ""
+"%1$s cannot add the constant %2$s to the %3$s file. Please edit it and add "
+"the following at the beginning: %4$s"
+msgstr ""
+"%1$s können die Konstante %2$s nicht zur %3$sDatei hinzufügen. Bitte "
+"bearbeite es und füge am Anfang folgendes hinzu: %4$s"
+
+#: free/modules/wordpress-core/tools.php:121
+#, php-format
+msgid ""
+"%1$s cannot remove the constant %2$s from the %3$s file. Please edit it and "
+"remove the following lines: %4$s"
+msgstr ""
+"%1$s können die Konstante %2$s nicht aus der %3$sDatei entfernen. Bitte "
+"bearbeite es und entferne die folgenden Zeilen: %4$s"
+
+#: free/modules/wordpress-core/tools.php:200
+#, php-format
+msgid "The constant %s
will be set on %s
."
+msgstr "Die Konstante %s
wird auf %s
gesetzt."
+
+#: free/modules/wordpress-core/tools.php:215
+#, php-format
+msgid ""
+"The constant %1$s
should be set on %2$s
.
Please "
+"deactivate and activate this module again."
+msgstr ""
+"Die Konstante %1$s
sollte auf gesetzt %2$s
werden."
+"
Bitte deaktiviere und aktiviere dieses Modul erneut."
+
+#: free/modules/wordpress-core/tools.php:231
+msgid "Change prefix"
+msgstr "Präfix ändern"
+
+#: free/secupress.php:325
+#, php-format
+msgid ""
+"%1$s requires PHP %2$s minimum, your website is actually "
+"running version %3$s."
+msgstr ""
+"%1$s erfordert mindestens PHP %2$s, deine Website läuft "
+"aktuell mit Version %3$s."
+
+#: free/secupress.php:459
+msgid "SecuPress Free — WordPress Security"
+msgstr "SecuPress Free — WordPress-Sicherheit"
+
+#: free/secupress.php:461
+msgid ""
+"Protect your WordPress with SecuPress, analyze and ensure the safety of your "
+"website daily."
+msgstr ""
+"Schütze dein WordPress mit SecuPress, analysiere und gewährleiste täglich "
+"die Sicherheit deiner Website."
+
+#: pro/activation.php:84
+msgid "[###SITENAME###] PasswordLess 2FA: Validation required"
+msgstr "[###SITENAME###] PasswordLess 2FA: Validierung erforderlich"
+
+#: pro/activation.php:85
+#, php-format
+msgid ""
+"Hello %1$s,\n"
+"\n"
+"You just activated the double authentication module \"PasswordLess\".\n"
+"\n"
+"To activate this module, confirm your action by clicking the link below:\n"
+"%2$s\n"
+"\n"
+"Regards,\n"
+"All at ###SITENAME###\n"
+"###SITEURL###"
+msgstr ""
+"Hallo %1$s,\n"
+"\n"
+"Du hast soeben das doppelte Authentifizierungsmodul \"PasswordLess\" "
+"aktiviert.\n"
+"\n"
+"Um dieses Modul zu aktivieren, bestätige deine Aktion, indem di auf den "
+"folgenden Link klickst:\n"
+"%2$s\n"
+"\n"
+"Grüße\n"
+"Alles unter ###SITENAME###\n"
+"###SITEURL###"
+
+#: pro/activation.php:225
+#, php-format
+msgid ""
+"It seems your %s file is not writable, you have to edit it manually. Please "
+"remove all rules between the following markers:"
+msgstr ""
+"Es scheint, dass deine %sDatei nicht beschreibbar ist, Du musst sie manuell "
+"bearbeiten. Bitte entferne alle Regeln zwischen den folgenden Markierungen:"
+
+#: pro/activation.php:232 pro/activation.php:363
+#, php-format
+msgid "%1$s and %2$s"
+msgstr "%1$s und %2$s"
+
+#: pro/activation.php:283
+#, php-format
+msgid ""
+"It seems your %1$s file is not writable, you have to edit it manually. "
+"Please remove all nodes with %2$s."
+msgstr ""
+"Es scheint, dass deine %1$sDatei nicht beschreibbar ist, Du musst sie "
+"manuell bearbeiten. Bitte entferne alle Knoten mit %2$s."
+
+#: pro/activation.php:294
+#, php-format
+msgid ""
+"It seems your %1$s file is not writable, you have to edit it manually. "
+"Please remove all nodes with the following markers: %2$s"
+msgstr ""
+"Es scheint, dass deine %1$s Datei nicht beschreibbar ist, Du musst sie "
+"manuell bearbeiten. Entferne alle Knoten mit den folgenden Markierungen: %2$s"
+
+#: pro/activation.php:348
+#, php-format
+msgid ""
+"Your server runs Ngnix, you have to edit the configuration "
+"file manually. Please remove all rules between %1$s and %2$s from the %3$s "
+"file."
+msgstr ""
+"Auf deinem Server wird Ngnixausgeführt , Du musst die "
+"Konfigurationsdatei manuell bearbeiten. Entferne alle Regeln zwischen %1$s "
+"und %2$s aus der Datei %3$s."
+
+#: pro/activation.php:356
+#, php-format
+msgid ""
+"Your server runs Ngnix, you have to edit the configuration "
+"file manually. Please remove all rules between the following markers from "
+"the %1$s file:"
+msgstr ""
+"Auf deinem Server wird Ngnixausgeführt , Du musst die "
+"Konfigurationsdatei manuell bearbeiten. Entferne alle Regeln zwischen den "
+"folgenden Markern aus der %1$s Datei:"
+
+#: pro/admin/ajax-post-callbacks.php:24
+#, php-format
+msgid "Sorry, you must define the %s constant first."
+msgstr "Es tut uns leid, aber du musst zuerst die %s Konstante definieren."
+
+#: pro/admin/ajax-post-callbacks.php:37
+msgid "Sorry, you must activate your Pro license to use the White Label."
+msgstr ""
+"Es tut uns leid, aber du musst deine Pro-Lizenz aktivieren, um das White "
+"Label nutzen zu können."
+
+#: pro/admin/ajax-post-callbacks.php:237 pro/admin/ajax-post-callbacks.php:244
+msgid "GeoIP database not updated."
+msgstr "Die GeoIP-Datenbank wurde nicht aktualisiert."
+
+#: pro/admin/ajax-post-callbacks.php:242
+msgid "GeoIP database updated."
+msgstr "GeoIP-Datenbank aktualisiert."
+
+#: pro/admin/migrate.php:230
+msgid "View details"
+msgstr "Details anzeigen"
+
+#: pro/admin/migrate.php:243
+msgid "Visit plugin site"
+msgstr "Besuch die Plugin-Seite"
+
+#: pro/admin/modules/wl.php:6
+msgid ""
+"You can change the name of the plugin, this will be shown on the plugins "
+"page, only when activated."
+msgstr ""
+"Du kannst den Namen des Plugins ändern, dies wird auf der Plugin-Seite "
+"angezeigt, nur wenn es aktiviert ist."
+
+#: pro/admin/settings.php:43
+msgid "Start hour and minute"
+msgstr "Startstunde und -minute"
+
+#: pro/admin/settings.php:45
+msgctxt "starting hour + minute"
+msgid "From"
+msgstr "Von"
+
+#: pro/admin/settings.php:46 pro/admin/settings.php:61
+msgid "Hour"
+msgstr "Stunde"
+
+#: pro/admin/settings.php:48 pro/admin/settings.php:63
+msgctxt "hour"
+msgid "h"
+msgstr "h"
+
+#: pro/admin/settings.php:51 pro/admin/settings.php:66
+msgid "Minute"
+msgstr "Minute"
+
+#: pro/admin/settings.php:58
+msgid "End hour and minute"
+msgstr "Ende Stunde und Minute"
+
+#: pro/admin/settings.php:60
+msgctxt "ending hour + minute"
+msgid "To"
+msgstr "Bis"
+
+#: pro/admin/settings.php:119
+msgid "Expand"
+msgstr "Erweitern"
+
+#: pro/admin/settings.php:156 pro/admin/settings.php:168
+msgid "Stop task"
+msgstr "Stop"
+
+#: pro/admin/settings.php:174
+msgid "Stopping Scanner: Cleaning
…"
+msgstr "Scanner stoppen: Cleaning
…"
+
+#: pro/admin/settings.php:177 pro/admin/settings.php:179
+#, php-format
+msgid "Scanning: %s"
+msgstr "Scannen: %s"
+
+#: pro/admin/settings.php:179
+msgid "Loading…"
+msgstr "Lade…"
+
+#: pro/admin/settings.php:194
+msgid "This version of WordPress has not been scanned yet."
+msgstr "Diese Version von WordPress wurde noch nicht gescannt."
+
+#: pro/admin/settings.php:210
+msgid "The followings are not files from WordPress core"
+msgstr "Die folgenden Dateien sind keine Dateien aus dem WordPress-Kern"
+
+#: pro/admin/settings.php:212 pro/admin/settings.php:318
+#: pro/admin/settings.php:378 pro/admin/settings.php:417
+#: pro/admin/settings.php:438 pro/modules/file-system/tools.php:143
+msgid "Possible malware found"
+msgstr "Mögliche Malware gefunden"
+
+#: pro/admin/settings.php:216 pro/admin/settings.php:421
+msgid "Toggle all"
+msgstr "Aktiviere alle"
+
+#: pro/admin/settings.php:232 pro/admin/settings.php:450
+msgid "What to do now?"
+msgstr "Was soll jetzt getan werden?"
+
+#: pro/admin/settings.php:232
+msgid ""
+"Check each file content using FTP to determine if it has to be cleaned, "
+"deleted or is a false positive."
+msgstr ""
+"Überprüfe jeden Dateiinhalt per FTP, um festzustellen, ob er bereinigt oder "
+"gelöscht werden muss oder ob es sich um ein falsch positives Ergebnis "
+"handelt."
+
+#: pro/admin/settings.php:250
+msgid "The followings are missing from WordPress core files"
+msgstr "Folgendes fehlt in WordPress-Kerndateien"
+
+#: pro/admin/settings.php:255 pro/admin/settings.php:272
+#: pro/admin/settings.php:324 pro/admin/settings.php:332
+#: pro/admin/settings.php:384 pro/admin/settings.php:392
+msgid "(Un)Select All"
+msgstr "(Un) Alles auswählen"
+
+#: pro/admin/settings.php:278 pro/admin/settings.php:398
+msgid "Recover selected files"
+msgstr "Ausgewählte Dateien wiederherstellen"
+
+#: pro/admin/settings.php:315
+msgid "The followings files are old WordPress core ones"
+msgstr ""
+"Bei den folgenden Dateien handelt es sich um alte WordPress-Kerndateien"
+
+#: pro/admin/settings.php:338
+msgid "Delete selected files"
+msgstr "Ausgewählte Datei löschen"
+
+#: pro/admin/settings.php:363
+msgid "See differences"
+msgstr "Unterschiede anzeigen"
+
+#: pro/admin/settings.php:375
+msgid "The followings are modified WordPress core files"
+msgstr "Im Folgenden handelt es sich um modifizierte WordPress-Core-Dateien"
+
+#: pro/admin/settings.php:415
+msgid "The followings are Malware Database Injections"
+msgstr "Im Folgenden sind Malware-Datenbank-Injektionen aufgeführt"
+
+#: pro/admin/settings.php:436
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: pro/admin/settings.php:440 pro/modules/file-system/tools.php:145
+msgid "Found Signature: "
+msgid_plural "Found Signatures: "
+msgstr[0] "Gefundene Signatur: "
+msgstr[1] "Gefundene Signaturen: "
+
+#: pro/admin/settings.php:450
+msgid ""
+"Check each post content to determine if it has to be cleaned, deleted or is "
+"a false positive."
+msgstr ""
+"Überprüfe jeden Beitragsinhalt, um festzustellen, ob er bereinigt oder "
+"gelöscht werden muss oder ob es sich um ein falsch positives Ergebnis "
+"handelt."
+
+#: pro/admin/settings.php:457
+msgid "Nothing found, well done."
+msgstr "Nichts gefunden, gut gemacht."
+
+#: pro/admin/settings.php:474
+msgid "No Backups found."
+msgstr "Keine Backups gefunden."
+
+#: pro/admin/settings.php:478 pro/modules/backups/callbacks.php:89
+#: pro/modules/backups/callbacks.php:132 pro/modules/backups/callbacks.php:221
+#, php-format
+msgid "%s available Backup"
+msgid_plural "%s available Backups"
+msgstr[0] "%s verfügbar Backup"
+msgstr[1] "%s verfügbare Backups"
+
+#: pro/admin/settings.php:491
+msgid "Delete all Backups"
+msgstr "Alle Backups löschen"
+
+#: pro/admin/settings.php:518
+msgid "DataBase Tables"
+msgstr "Datenbank-Tabellen"
+
+#: pro/admin/settings.php:542 pro/admin/settings.php:554
+msgctxt "database table"
+msgid "None"
+msgstr "Nichts"
+
+#: pro/admin/settings.php:560 pro/admin/settings.php:565
+msgid "Backup my Database"
+msgstr "Meine Datenbank sichern"
+
+#: pro/admin/settings.php:591
+msgid "Do not backup the following files and folders:"
+msgstr "Sichere nicht die folgenden Dateien und Ordner:"
+
+#: pro/admin/settings.php:595
+msgid "One file or folder per line."
+msgstr "Eine Datei oder ein Ordner pro Zeile."
+
+#: pro/admin/settings.php:600 pro/admin/settings.php:605
+msgid "Backup my Files"
+msgstr "Meine Dateien sichern"
+
+#: pro/admin/settings.php:629 pro/admin/settings.php:698
+#: pro/admin/settings.php:750
+msgid "Nothing’s scheduled yet."
+msgstr "Es ist noch nichts geplant."
+
+#: pro/admin/settings.php:634 pro/admin/settings.php:703
+#: pro/admin/settings.php:755
+msgctxt "Schedule date"
+msgid "l, F jS, Y \\a\\t h:ia"
+msgstr "l, F jS, Y \\a\\t h:ia"
+
+#: pro/admin/settings.php:646
+msgid "the database"
+msgstr "Die Datenbank"
+
+#: pro/admin/settings.php:649
+msgid "the files"
+msgstr "Die Dateien"
+
+#: pro/admin/settings.php:661
+#, php-format
+msgid "Next backup will occur %1$s and will backup %2$s."
+msgstr "Die nächste Sicherung erfolgt %1$s und sichert %2$s."
+
+#: pro/admin/settings.php:671 pro/admin/settings.php:723
+#: pro/admin/settings.php:775
+#, php-format
+msgid "This task will %1$s, and once finished you will be notified at: %2$s."
+msgstr ""
+"Dieser Vorgang wird %1$s, und sobald du fertig bist, wirst du "
+"benachrichtigt: %2$s."
+
+#: pro/admin/settings.php:672 pro/admin/settings.php:679
+#: pro/admin/settings.php:724 pro/admin/settings.php:731
+#: pro/admin/settings.php:776 pro/admin/settings.php:783
+#, php-format
+msgid "repeat every %d day"
+msgid_plural "repeat every %d days"
+msgstr[0] "jeden %d Tag wiederholen"
+msgstr[1] "alle %d Tage wiederholen"
+
+#: pro/admin/settings.php:678 pro/admin/settings.php:730
+#: pro/admin/settings.php:782
+#, php-format
+msgid "This task will %s."
+msgstr "Diese Aufgabe wird %s."
+
+#: pro/admin/settings.php:714 pro/admin/settings.php:766
+#, php-format
+msgid "Next scan will occur %s."
+msgstr "Der nächste Scan wird %s durchgeführt."
+
+#: pro/classes/admin/class-secupress-pro-admin-edd-sl-plugin-updater.php:216
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:201
+#, php-format
+msgid ""
+"There is a new version of %1$s available. %2$sView version %3$s details%4$s."
+msgstr ""
+"Es ist eine neue Version von %1$s verfügbar. %2$sDetails zu Version %3$s "
+"ansehen%4$s."
+
+#: pro/classes/admin/class-secupress-pro-admin-edd-sl-plugin-updater.php:224
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:209
+#, php-format
+msgid ""
+"There is a new version of %1$s available. %2$sView version %3$s details%4$s "
+"or %5$supdate now%6$s."
+msgstr ""
+"Es ist eine neue Version von %1$s verfügbar. %2$sDetails zu Version %3$s "
+"ansehen%4$s oder %5$sjetzt aktualisieren%6$s."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:89
+#, php-format
+msgid ""
+"Your Pro license is not set yet. If you want to activate all the Pro "
+"features, premium support and updates, take a look at %s."
+msgstr ""
+"Deine Pro-Lizenz ist noch nicht festgelegt. Wenn du alle Pro-Funktionen, den "
+"Premium-Support und die Updates aktivieren möchtest, dann werfe einen Blick "
+"auf %s."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:99
+#, php-format
+msgid ""
+"Your Pro license is not valid. If you want to activate all the Pro features, "
+"premium support and updates, take a look at %s."
+msgstr ""
+"Deine Pro-Lizenz ist ungültig. Wenn du alle Pro-Funktionen, den Premium-"
+"Support und die Updates aktivieren möchten, werfe einen Blick auf %s."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:161
+msgid "please verify it"
+msgstr "Bitte überprüfe es"
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:162
+msgid "to install the free version"
+msgstr "um die kostenlose Version zu installieren"
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:170
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:175
+#, php-format
+msgid ""
+"There is a problem with your license key, %1$s. If you think there is a "
+"mistake, you should contact %2$s. Otherwise, you may want %3$s to get future "
+"updates."
+msgstr ""
+"Es liegt ein Problem mit deinem Lizenzschlüssel %1$s vor. Wenn du der "
+"Meinung bist, dass ein Fehler vorliegt, solltest du dich an %2$s wenden. "
+"Andernfalls möchtest du möglicherweise, dass %3$s zukünftige Updates erhält."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:180
+#, php-format
+msgid ""
+"This license key has been revoked. If you think there is a mistake, you "
+"should contact %1$s. Otherwise, you may want %2$s to get future updates."
+msgstr ""
+"Dieser Lizenzschlüssel wurde widerrufen. Wenn du der Meinung bist, dass ein "
+"Fehler vorliegt, solltest du dich an %1$s wenden. Andernfalls möchtest du "
+"möglicherweise, dass %2$s zukünftige Updates erhält."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:185
+#, php-format
+msgid ""
+"This license key expired. You may want %1$s or %2$s to get future updates."
+msgstr ""
+"Dieser Lizenzschlüssel ist abgelaufen. Möglicherweise möchtest du, dass %1$s "
+"oder %2$s zukünftige Aktualisierungen erhalten."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:191
+#, php-format
+msgid ""
+"You used as many sites as your license allows. You may want %1$s to add more "
+"sites or %2$s to get future updates."
+msgstr ""
+"Du hast so viele Websites verwendet, wie deine Lizenz zulässt. "
+"Möglicherweise möchtest du %1$s weitere Websites hinzufügen oder %2$s, um "
+"zukünftige Updates zu erhalten."
+
+#: pro/classes/admin/class-secupress-pro-admin-free-downgrade.php:214
+msgid "https://wordpress.org/plugins/secupress/"
+msgstr "https://wordpress.org/plugins/secupress/"
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:190
+msgid "SecuPress — WordPress Security"
+msgstr "SecuPress — WordPress-Sicherheit"
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:191
+msgid "PLEASE DELETE ME VIA FTP."
+msgstr "BITTE LÖSCHEN SIE MICH PER FTP."
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:284
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:295
+#, php-format
+msgid ""
+"Performing actions with %s is forbidden, unless you want the sky to fall to "
+"your head."
+msgstr "Das Ausführen von Aktionen mit %s ist verboten."
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:329
+#, php-format
+msgid ""
+"There is no need to update this plugin anymore, %s is now working without "
+"the free plugin (cool uh?)."
+msgstr ""
+"Es ist nicht mehr nötig, dieses Plugin zu aktualisieren, %s funktioniert "
+"jetzt ohne das kostenlose Plugin (cool, äh?)."
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:395
+#, php-format
+msgid ""
+"%1$s couldn’t delete the free plugin. Please delete the folder %2$s via FTP."
+msgstr ""
+"%1$s konnte das kostenlose Plugin nicht löschen. Bitte lösche den Ordner "
+"%2$s per FTP."
+
+#: pro/classes/admin/class-secupress-pro-admin-remove-free-plugin.php:454
+#, php-format
+msgid "Please delete the folder %s via FTP."
+msgstr "Bitte lösche den Ordner %s per FTP."
+
+#: pro/classes/admin/class-secupress-pro-admin-scan-report-pdf.php:28
+msgctxt "pdf report date"
+msgid "M jS, Y \\a\\t h:i:sa"
+msgstr "M jS, Y \\a\\t h:i:sa"
+
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:396
+msgid "You do not have permission to install plugin updates"
+msgstr ""
+"Du hast keine Berechtigung, um Aktualisierungen für Erweiterungen "
+"durchzuführen"
+
+#: pro/functions/common.php:236
+msgid "Insert/edit link"
+msgstr "Link einfügen / bearbeiten"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:534
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:637
+#, php-format
+msgid "%1$s (%2$s occurrence)"
+msgid_plural "%1$s (%2$s occurrences)"
+msgstr[0] "%1$s (%2$s Vorkommen)"
+msgstr[1] "%1$s (%2$s Vorkommen)"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:562
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-daily-reporting.php:150
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-event-alerts.php:180
+#, php-format
+msgid "[%s] New important event on your site"
+msgid_plural "[%s] New important events on your site"
+msgstr[0] "[%s] Neues wichtiges Ereignis auf deiner Website"
+msgstr[1] "[%s] Neue wichtige Ereignisse auf deiner Website"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:563
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:582
+msgid "An important event happened:"
+msgid_plural "Some important events happened:"
+msgstr[0] "Ein wichtiges Ereignis ereignete sich:"
+msgstr[1] "Einige wichtige Ereignisse sind eingetreten:"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:581
+#, php-format
+msgid "New important event on *%s*"
+msgid_plural "New important events on *%s*"
+msgstr[0] "Neues wichtiges Ereignis am *%s*"
+msgstr[1] "Neue wichtige Events auf *%s*"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:648
+#, php-format
+msgid ""
+"From *%s* (%s):\n"
+"%s"
+msgstr ""
+"Von *%s* (%s):\n"
+"%s"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:774
+#, php-format
+msgid "Your site’s name has been changed to: %s."
+msgstr "Der Name deiner Website wurde geändert in: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:775
+#, php-format
+msgid "Your site’s description has been changed to: %s."
+msgstr "Die Beschreibung deiner Website wurde geändert in: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:776
+#, php-format
+msgid "Your site’s URL has been changed to: %s."
+msgstr "Die URL deiner Website wurde geändert in: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:777
+#, php-format
+msgid "Your site’s home URL has been changed to: %s."
+msgstr "Die Start-URL deiner Website wurde wie folgt geändert: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:778
+#, php-format
+msgid "Your admin email address has been changed to: %s."
+msgstr "Deine Admin-E-Mail-Adresse wurde geändert in: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:779
+msgid "Users can now register on your site."
+msgstr "Benutzer können sich jetzt auf deiner Website registrieren."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:780
+#, php-format
+msgid "When users register on your site, their user role is now %s."
+msgstr ""
+"Wenn sich Benutzer auf deiner Website registrieren, ist ihre Benutzerrolle "
+"jetzt %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:781
+#, php-format
+msgid "Your network’s name has been changed to: %s."
+msgstr "Der Name deines Netzwerks wurde geändert in: %s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:782
+#, php-format
+msgid "Your network admin email address has been changed to: %s."
+msgstr ""
+"Die E-Mail-Adresse deines Netzwerkadministrators wurde wie folgt geändert: "
+"%s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:783
+msgid "Users can now register on your network, and maybe create sites."
+msgstr ""
+"Benutzer können sich jetzt in deinem Netzwerk registrieren und "
+"möglicherweise Websites erstellen."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:784
+msgid "Email notifications have been disabled when users or sites register."
+msgstr ""
+"E-Mail-Benachrichtigungen wurden deaktiviert, wenn sich Benutzer oder "
+"Websites registrieren."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:785
+msgid "Administrators can now add new users to their site."
+msgstr ""
+"Administratoren können jetzt neue Benutzer zu ihrer Website hinzufügen."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:786
+msgid "The list of banned user names has been emptied."
+msgstr "Die Liste der gesperrten Benutzernamen wurde geleert."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:787
+msgid "The list of email domains allowed to create sites has been modified."
+msgstr ""
+"Die Liste der E-Mail-Domänen, die zum Erstellen von Websites zugelassen "
+"sind, wurde geändert."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:788
+msgid ""
+"The list of email domains not allowed to create sites has been modified."
+msgstr ""
+"Die Liste der E-Mail-Domänen, die keine Websites erstellen dürfen, wurde "
+"geändert."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:789
+#, php-format
+msgid ""
+"The IP address %2$s hasn’t been blocked because it’s allowed.
Module: "
+"%1$s
Data: %3$s"
+msgstr ""
+"Die IP-Adresse %2$s wurde nicht blockiert, weil sie zulässig ist.
Modul: "
+"%1$s
Daten: %3$s"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:790
+#, php-format
+msgid "The IP address %2$s has been blocked.
Module: %1$s
Data: %3$s"
+msgstr "Die IP-Adresse %2$s wurde blockiert.
Modul: %1$s
Daten: %3$s"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:791
+#, php-format
+msgid "The IP address %1$s has been banned."
+msgstr "Die IP-Adresse %1$s wurde gesperrt."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:792
+#, php-format
+msgid "The IP address %1$s has been banned, country %2$s is not allowed."
+msgstr "Die IP-Adresse %1$s wurde gesperrt, Land %2$s ist nicht zulässig."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:793
+#, php-format
+msgid "The user %s just logged in (Role: %s)."
+msgstr "Der Benutzer %s gerade angemeldet (Rolle: %s)."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:794
+#, php-format
+msgid "The test %s has returned: %s"
+msgstr "Der Test%s zurückgegeben wurde: %s"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-alerts.php:806
+#, php-format
+msgid "Missing message for key %s."
+msgstr "Fehlende Meldung für Schlüssel%s."
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-daily-reporting.php:151
+msgid "An important event happened on your site today:"
+msgid_plural "Some important events happened on your site today:"
+msgstr[0] "Ein wichtiges Ereignis hat sich heute auf deiner Website ereignet:"
+msgstr[1] "Einige wichtige Ereignisse sind heute auf deiner Website passiert:"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-event-alerts.php:186
+msgid "An important event just happened on your site:"
+msgid_plural "Some important events just happened on your site:"
+msgstr[0] "Ein wichtiges Ereignis ist gerade auf deiner Website passiert:"
+msgstr[1] "Einige wichtige Ereignisse sind gerade auf deiner Website passiert:"
+
+#: pro/modules/alerts/plugins/inc/php/alerts/class-secupress-event-alerts.php:190
+#, php-format
+msgid "An important event happened on your site for the last %d minutes:"
+msgid_plural ""
+"Some important events happened on your site for the last %d minutes:"
+msgstr[0] ""
+"In den letzten %d Minuten ist auf deiner Website ein wichtiges Ereignis "
+"aufgetreten:"
+msgstr[1] ""
+"In den letzten %d Minuten sind auf deiner Website einige wichtige Ereignisse "
+"aufgetreten:"
+
+#: pro/modules/alerts/tools.php:80
+#, php-format
+msgid "%s Notifications"
+msgstr "%s Benachrichtigungen"
+
+#: pro/modules/alerts/tools.php:90
+#, php-format
+msgid ""
+"*%1$s* from %2$s requested to send the _SecuPress Notifications_ on this "
+"channel."
+msgstr ""
+"*%1$s* von %2$s angefordert, die _SecuPress Notifications_ auf diesem Kanal "
+"zu senden."
+
+#: pro/modules/alerts/tools.php:100
+msgid "Click *Accept*, or *ignore* this message."
+msgstr "Klicke auf *Akzeptieren* oder *ignorieren* diese Nachricht."
+
+#: pro/modules/alerts/tools.php:115
+#, php-format
+msgid "Only *%s* can accept this request."
+msgstr "Nur *%s* kann diese Anfrage annehmen."
+
+#: pro/modules/alerts/tools.php:124
+msgid "Accept"
+msgstr "Akzeptieren"
+
+#: pro/modules/backups/callbacks.php:75 pro/modules/backups/callbacks.php:119
+msgid ""
+"Class ZipArchive
is missing, the zip archive cannot be created."
+msgstr ""
+"Klasse ZipArchive
fehlt, kann das Zip-Archiv nicht erstellt "
+"werden."
+
+#: pro/modules/backups/callbacks.php:81 pro/modules/backups/callbacks.php:125
+msgid "No backup file created."
+msgstr "Es wurde keine Sicherungsdatei erstellt."
+
+#: pro/modules/backups/callbacks.php:300
+msgctxt "verb"
+msgid "Download"
+msgstr "Download"
+
+#: pro/modules/file-system/callbacks.php:143
+msgid ""
+"The differences can’t be displayed, the whole file will be displayed instead."
+msgstr ""
+"Die Unterschiede können nicht angezeigt werden, stattdessen wird die gesamte "
+"Datei angezeigt."
+
+#: pro/modules/file-system/tools.php:83
+#, php-format
+msgid "Filesize is over the limit of %sMB."
+msgstr "Die Dateigröße liegt über dem Grenzwert von %s MB."
+
+#: pro/modules/file-system/tools.php:94
+#, php-format
+msgid ""
+"@include
Your site should also be infected. Check it or ask an "
+"expert, file: %s"
+msgstr ""
+"@include
Deine Webseite sollte ebenfalls infiziert sein. Prüfe es "
+"oder frage einen Experten, Datei:%s"
+
+#: pro/modules/file-system/tools.php:137
+#, php-format
+msgid "%s in uploads"
+msgstr "%s in Uploads"
+
+#: pro/modules/firewall/tools.php:53 pro/modules/firewall/tools.php:61
+#: pro/modules/firewall/tools.php:70 pro/modules/firewall/tools.php:84
+#: pro/modules/firewall/tools.php:91
+#, php-format
+msgid "GeoIP file has not been created: %s"
+msgstr "GeoIP-Datei wurde nicht erstellt: %s"
+
+#: pro/modules/firewall/tools.php:53 pro/modules/firewall/tools.php:61
+#: pro/modules/firewall/tools.php:70
+#, php-format
+msgid "Download Error Line#%d"
+msgstr "Download-Fehlerzeile#%d"
+
+#: pro/modules/firewall/tools.php:84
+msgid "Unzip Error."
+msgstr "Fehler beim Entpacken."
+
+#: pro/modules/firewall/tools.php:91
+msgid "Missing File."
+msgstr "Fehlende Datei."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:55
+#, php-format
+msgid "%s Warning:"
+msgstr "%s Warnung:"
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:60
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:51
+#, php-format
+msgid ""
+"%1$s %2$s is known to contain this vulnerability: %3$s."
+msgid_plural ""
+"%1$s %2$s is known to contain these vulnerabilities: %3$s."
+msgstr[0] ""
+"Es ist bekannt, dass %1$s %2$s diese "
+"Sicherheitsanfälligkeit enthält: %3$s."
+msgstr[1] ""
+"Es ist bekannt, dass %1$s %2$s diese "
+"Sicherheitsanfälligkeiten enthält: %3$s."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:66
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:57
+#, php-format
+msgid "version %s (or lower)"
+msgstr "Version %s (oder niedriger)"
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:66
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:57
+msgid "all versions"
+msgstr "Alle Versionen"
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:70
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:61
+msgid "More information"
+msgstr "Mehr Informationen"
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:78
+#, php-format
+msgid ""
+"%1$s invites you to Update this plugin to version %3$s."
+msgstr ""
+"%1$slädt dich ein, dieses Plugin auf Version %3$szu "
+"aktualisieren."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:84
+#, php-format
+msgid ""
+"%s invites you to Update this plugin (automatic update is unavailable "
+"for this plugin.)."
+msgstr ""
+"%slädt dich ein, dieses Plugin zu aktualisieren (das automatische Update "
+"ist für dieses Plugin nicht verfügbar.)."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:86
+msgid "Update is unavailable for this plugin."
+msgstr "Das Update ist für dieses Plugin nicht verfügbar."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:95
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:124
+#, php-format
+msgid ""
+"%s invites you to deactivate this plugin, then delete it."
+msgstr ""
+"%s fordert dich auf, dieses Plugin zu deaktivieren und "
+"dann zu löschen."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:103
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:132
+#, php-format
+msgid ""
+"%s invites you to delete this plugin, no patch has been "
+"made by its author."
+msgstr ""
+"%s lädt dich ein, dieses Plugin zu löschen , da kein "
+"Patch vom Autor erstellt wurde."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:113
+#, php-format
+msgid ""
+"%s has not been updated on official repository for more "
+"than 2 years now. It can be dangerous."
+msgstr ""
+"%s wurde seit mehr als 2 Jahren nicht mehr im offiziellen "
+"Repositorium aktualisiert. Das kann gefährlich sein."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:116
+#, php-format
+msgid ""
+"%s has been removed from official repository for one of "
+"these reasons: Security Flaw, on Author’s demand, Not GPL compatible, this "
+"plugin is under investigation."
+msgstr ""
+"%s wurde aus einem der folgenden Gründe aus dem offiziellen "
+"Repository entfernt: Sicherheitslücke, auf Wunsch des Autors, Nicht GPL-"
+"kompatibel, dieses Plugin wird untersucht."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-plugins.php:173
+#, php-format
+msgid ""
+"Your installation contains %1$s plugin considered as bad, check the "
+"details in the plugins page."
+msgid_plural ""
+"Your installation contains %1$s plugins considered as bad, check "
+"the details in the plugins page."
+msgstr[0] ""
+"Deine Installation enthält %1$s Plugin als schlechtbetrachtet , "
+"überprüfe die Details auf der Plugin-Seite."
+msgstr[1] ""
+"Deine Installation enthält %1$s Plugins als schlechtbetrachtet , "
+"überprüfe die Details auf der Plugins-Seite."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:68
+#, php-format
+msgid ""
+"We invite you to Update this theme in version %2$s."
+msgstr ""
+"Wir laden dich ein, dieses Thema in Version %2$s zu aktualisieren."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:73
+msgid ""
+"We invite you to Update this theme (Automatic update is unavailable for "
+"this theme.)."
+msgstr ""
+"Wir laden dich ein, dieses Theme zu aktualisieren (Automatisches Update "
+"ist für dieses Theme nicht verfügbar.)."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:79
+msgid "We invite you to switch theme, then delete it."
+msgstr "Wir laden dich ein, das Thema zu wechseln und es dann zu löschen."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:82
+#, php-format
+msgid "We invite you to delete it."
+msgstr "Wir laden dich ein, es zu löschen."
+
+#: pro/modules/plugins-themes/plugins/detect-bad-themes.php:122
+#, php-format
+msgid ""
+"Your installation contains %1$s theme considered as bad, check the "
+"details in the themes page."
+msgid_plural ""
+"Your installation contains %1$s themes considered as bad, check the "
+"details in the themes page."
+msgstr[0] ""
+"Deine Installation enthält %1$s Themes als schlechtbetrachtet , "
+"überprüfe die Details auf der Themenseite."
+msgstr[1] ""
+"Deine Installation enthält %1$s Themes, die als schlechtbetrachtet "
+"werden, überprüfe die Details auf der Themenseite."
+
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:84
+msgid "Activate Plugin & Run Importer"
+msgstr "Plugin & Amp; Run Importer aktivieren"
+
+#: pro/modules/plugins-themes/plugins/plugin-activation.php:86
+msgid "Activate Plugin"
+msgstr "Plugin aktivieren"
+
+#: pro/modules/plugins-themes/plugins/plugin-deactivation.php:32
+msgid "Network Deactivate"
+msgstr "Netzwerkweit deaktivieren"
+
+#: pro/modules/plugins-themes/plugins/plugin-deactivation.php:58
+msgid ""
+"You do not have sufficient permissions to deactivate plugins on this site."
+msgstr ""
+"Du verfügst nicht über ausreichende Berechtigungen, um Plugins auf dieser "
+"Website zu deaktivieren."
+
+#: pro/modules/plugins-themes/plugins/plugin-deletion.php:48
+#: pro/modules/plugins-themes/plugins/theme-deletion.php:24
+msgid "You do not have sufficient permissions to delete plugins on this site."
+msgstr ""
+"Du verfügst nicht über ausreichende Berechtigungen, um Plugins auf dieser "
+"Website zu löschen."
+
+#: pro/modules/plugins-themes/plugins/theme-activation.php:24
+msgid "You do not have sufficient permissions to switch themes on this site."
+msgstr ""
+"Du verfügst nicht über ausreichende Berechtigungen, um das Design auf dieser "
+"Website zu wechseln."
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:102
+msgid "database and files"
+msgstr "Datenbank und Dateien"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:104
+msgid "database only"
+msgstr "Nur Datenbank"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:106
+msgid "files only"
+msgstr "Nur Dateien"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:112
+#, php-format
+msgid "[%s] Backup succeeded"
+msgstr "[%s] Sicherung erfolgreich"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:114
+#, php-format
+msgid "The scheduled backup of your site (%s) has succeeded!"
+msgstr "Die geplante Sicherung Deiner Website (%s) ist erfolgreich!"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:120
+#, php-format
+msgid "[%s] Backup failed"
+msgstr "[%s] Sicherung fehlgeschlagen"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-backups.php:122
+#, php-format
+msgid "The scheduled backup of your site (%s) has failed."
+msgstr "Die geplante Sicherung deiner Website (%s) ist fehlgeschlagen."
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:83
+#, php-format
+msgid "[%s] File Monitoring failed"
+msgstr "[%s] Dateiüberwachung fehlgeschlagen"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:84
+msgid ""
+"The scheduled file monitoring of your site couldn’t be launched, it was "
+"already running at the time."
+msgstr ""
+"Die geplante Dateiüberwachung deiner Website konnte nicht gestartet werden, "
+"sie lief zu diesem Zeitpunkt bereits."
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:89
+msgid "The scheduled file monitoring of your site has succeeded!"
+msgstr "Die geplante Dateiüberwachung deiner Seite ist erfolgreich!"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:92
+msgid "There is nothing special to report."
+msgstr "Es gibt nichts Besonderes zu berichten."
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:98
+msgid "The following file is not from WordPress core:"
+msgid_plural "The following files are not from WordPress core:"
+msgstr[0] "Die folgende Datei stammt nicht aus dem WordPress-Kern:"
+msgstr[1] "Die folgenden Dateien stammen nicht aus dem WordPress-Kern:"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:112
+msgid "The following file is missing from WordPress core:"
+msgid_plural "The following files are missing from WordPress core:"
+msgstr[0] "Die folgende Datei fehlt im WordPress-Kern:"
+msgstr[1] "Die folgenden Dateien fehlen im WordPress-Kern:"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:120
+msgid "The following file is an old WordPress core file:"
+msgid_plural "The following files are old WordPress core files:"
+msgstr[0] ""
+"Bei der folgenden Datei handelt es sich um eine alte WordPress-Core-Datei:"
+msgstr[1] ""
+"Bei den folgenden Dateien handelt es sich um alte WordPress-Core-Dateien:"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:132
+msgid "The following core file has been modified:"
+msgid_plural "The following core files have been modified:"
+msgstr[0] "Die folgende Core-Datei wurde geändert:"
+msgstr[1] "Die folgenden Kerndateien wurden geändert:"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:140
+#, php-format
+msgid "For more details and maybe take actions, go to the %s page."
+msgstr ""
+"Weitere Informationen und eventuelle Maßnahmen findest du auf der Seite %s."
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-file-monitoring.php:145
+#, php-format
+msgid "[%s] File Monitoring done"
+msgstr "[%s] Dateiüberwachung abgeschlossen"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-scan.php:118
+#, php-format
+msgid "[%s] Security Scan done: %s"
+msgstr "[%s] Sicherheitsscan durchgeführt: %s"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules-scan.php:119
+msgid "The scheduled security scan of your site has succeeded!"
+msgstr "Der geplante Sicherheitsscan deiner Website ist erfolgreich!"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules.php:111
+#, php-format
+msgid "Every %s Day"
+msgid_plural "Every %s Days"
+msgstr[0] "Jeder %s Tag"
+msgstr[1] "Alle %s Tage"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules.php:251
+#, php-format
+msgid "[%s] Operation succeeded"
+msgstr "[%s] Operation erfolgreich"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules.php:252
+msgid "The scheduled operation of your site has succeeded!"
+msgstr "Der planmäßige Betrieb deiner Website ist erfolgreich!"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules.php:262
+#, php-format
+msgid "[%s] Operation failed"
+msgstr "[%s] Vorgang fehlgeschlagen"
+
+#: pro/modules/schedules/plugins/inc/php/class-secupress-schedules.php:263
+msgid "The scheduled operation of your site has failed."
+msgstr "Der geplante Betrieb deiner Website ist fehlgeschlagen."
+
+#: pro/modules/sensitive-data/plugins/hotlink.php:28
+msgid ""
+"The anti hotlink can work only over SSL (the URL of your website must start "
+"with https://
)."
+msgstr ""
+"Der Anti-Hotlink kann nur über SSL funktionieren (die URL deiner Website "
+"muss mit https://
beginnen)."
+
+#: pro/modules/users-login/plugins/password-expiration.php:99
+#, php-format
+msgid "Your password expired, please choose a new one."
+msgstr ""
+"Dein Passwort ist abgelaufen, bitte wähle ein neues."
+
+#: pro/modules/users-login/plugins/passwordless.php:65
+msgid ""
+"You cannot login using your password, please just fill your login or email "
+"address."
+msgstr ""
+"Du kannst dich nicht mit deinem Passwort anmelden, bitte gebe einfach deinen "
+"Login oder deine E-Mail-Adresse ein."
+
+#: pro/modules/users-login/plugins/passwordless.php:154
+#, php-format
+msgid "[%s] Your Magic Link for a Secure Login (2FA)"
+msgstr "[%s] Dein Magic Link für ein sicheres Login (2FA)"
+
+#: pro/modules/users-login/plugins/passwordless.php:167
+#, php-format
+msgid ""
+"Hello %1$s,\n"
+"\n"
+"You recently tried to log in on ###SITEURL###.\n"
+"\n"
+"If this is correct, please click on the following Magic Link to really log "
+"in:\n"
+"%2$s\n"
+"\n"
+"You can safely ignore and delete this email if you do not want to take this "
+"action.\n"
+"\n"
+"Regards,\n"
+"All at ###SITENAME###\n"
+"###SITEURL###"
+msgstr ""
+"Hallo %1$s,\n"
+"\n"
+"Du hast kürzlich versucht, sich unter ###SITEURL### anzumelden.\n"
+"\n"
+"Wenn dies korrekt ist, klicke bitte auf den folgenden Magic Link, um sich "
+"wirklich einzuloggen:\n"
+"%2$s\n"
+"\n"
+"Du kannst diese E-Mail ignorieren und löschen, wenn du diese Aktion nicht "
+"ausführen möchtest.\n"
+"\n"
+"Grüße\n"
+"Alles unter ###SITENAME###\n"
+"###SITEURL###"
+
+#: pro/modules/users-login/plugins/passwordless.php:331
+msgid "Log In"
+msgstr "Anmelden"
+
+#: pro/modules/users-login/plugins/passwordless.php:331
+msgid "Get my Magic Link"
+msgstr "Hole dir meinen Magic Link"
+
+#: pro/modules/users-login/plugins/passwordless.php:333
+msgctxt "or Log in using a password"
+msgid "or"
+msgstr "oder"
+
+#: pro/modules/users-login/plugins/passwordless.php:333
+msgid "Log In using a password"
+msgstr "Melde dich mit einem Passwort an"
+
+#: pro/modules/users-login/plugins/passwordless.php:346
+msgid "Check your e-mail containing the confirmation link."
+msgstr "Überprüfe deine E-Mail mit dem Bestätigungslink."
+
+#: pro/modules/users-login/plugins/passwordless.php:362
+#, php-format
+msgid ""
+"This link is not valid for this user, please try to log-in "
+"again."
+msgstr ""
+"Dieser Link ist für diesen Benutzer nicht gültig, versuche bitte erneut, sich anzumelden."
+
+#: pro/modules/users-login/plugins/passwordless.php:416
+#, php-format
+msgid ""
+"This link is now expired, please try to log-in again."
+msgstr ""
+"Dieser Link ist jetzt abgelaufen, versuche bitte erneut, sich "
+"anzumelden."
+
+#: pro/modules/users-login/plugins/passwordless.php:483
+msgid "You can not login using this page."
+msgstr "Du kannst sich nicht über diese Seite anmelden."
+
+#: pro/modules/users-login/plugins/passwordless.php:502
+msgid "Send PasswordLess Magic Link"
+msgstr "Passwortloser Magic Link senden"
+
+#: pro/modules/users-login/plugins/passwordless.php:517
+#: pro/modules/users-login/plugins/passwordless.php:538
+msgid "Magic Link not sent."
+msgstr "Magic Link wurde nicht gesendet."
+
+#: pro/modules/users-login/plugins/passwordless.php:541
+msgid "Magic Link has been sent."
+msgstr "Magic Link wurde gesendet."
+
+#: pro/modules/users-login/plugins/sessions-control.php:65
+msgid "Someone requested that the password be reset for the following account:"
+msgstr ""
+"Jemand hat das Zurücksetzen des Passworts für folgendes Konto beantragt:"
+
+#: pro/modules/users-login/plugins/sessions-control.php:69
+msgid "If this was a mistake, just ignore this email and nothing will happen."
+msgstr ""
+"Falls du diese E-Mail irrtümlich erhalten hast, ignorierst du sie bitte und "
+"es wird nichts weiter passieren."
+
+#: pro/modules/users-login/plugins/sessions-control.php:70
+msgid "To reset your password, visit the following address:"
+msgstr "Um Dein Passwort zurückzusetzen, besuche die folgende Adresse:"
+
+#: pro/modules/users-login/plugins/sessions-control.php:73
+#, php-format
+msgid "[%s] Password Reset"
+msgstr "[%s] Passwort zurücksetzen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:101
+msgid "The email could not be sent."
+msgstr "Die E-Mail konnte nicht gesendet werden."
+
+#: pro/modules/users-login/plugins/sessions-control.php:101
+msgid "Possible reason: your host may have disabled the mail() function."
+msgstr ""
+"Mögliche Ursache: Dein Gastgeber kann die Mail() Funktion deaktiviert haben."
+
+#: pro/modules/users-login/plugins/sessions-control.php:122
+#: pro/modules/users-login/plugins/sessions-control.php:132
+msgid "Password has not been reset and email has not been sent."
+msgstr ""
+"Das Passwort wurde nicht zurückgesetzt und die E-Mail wurde nicht gesendet."
+
+#: pro/modules/users-login/plugins/sessions-control.php:137
+msgid "Password has been reset and email has been sent."
+msgstr "Das Passwort wurde zurückgesetzt und die E-Mail wurde gesendet."
+
+#: pro/modules/users-login/plugins/sessions-control.php:152
+msgid "Reset password"
+msgstr "Passwort zurücksetzen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:204
+msgctxt "sessions column width in \"em\""
+msgid "13"
+msgstr "13"
+
+#: pro/modules/users-login/plugins/sessions-control.php:230
+#: pro/modules/users-login/plugins/sessions-control.php:301
+msgid "You are only logged in here"
+msgstr "Du bist nur hier eingeloggt"
+
+#: pro/modules/users-login/plugins/sessions-control.php:231
+#: pro/modules/users-login/plugins/sessions-control.php:294
+msgid "Disconnected"
+msgstr "Getrennt"
+
+#: pro/modules/users-login/plugins/sessions-control.php:232
+msgid "Destroy sessions"
+msgstr "Sitzungen zerstören"
+
+#: pro/modules/users-login/plugins/sessions-control.php:252
+msgid "Destroy all sessions"
+msgstr "Alle Sitzungen zerstören"
+
+#: pro/modules/users-login/plugins/sessions-control.php:267
+msgid "Sessions"
+msgstr "Sitzungen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:305
+#, php-format
+msgid "You have %s sessions"
+msgstr "Du hast %s Sitzungen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:306
+msgid "Destroy other sessions"
+msgstr "Andere Sitzungen zerstören"
+
+#: pro/modules/users-login/plugins/sessions-control.php:308
+#, php-format
+msgid "%s session"
+msgid_plural "%s sessions"
+msgstr[0] "%s Sitzung"
+msgstr[1] "%s Sitzungen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:309
+msgid "Destroy session"
+msgid_plural "Destroy all sessions"
+msgstr[0] "Sitzung beenden"
+msgstr[1] "Alle Sitzungen zerstören"
+
+#: pro/modules/users-login/plugins/sessions-control.php:317
+msgid "Sessions Details"
+msgstr "Details zu den Sitzungen"
+
+#: pro/modules/users-login/plugins/sessions-control.php:327
+msgid "Session #"
+msgstr "Sitzung #"
+
+#: pro/modules/users-login/plugins/sessions-control.php:328
+#, php-format
+msgid ""
+"Logged-in since %1$s
Expires in "
+"%2$s
IP: %3$s
User-"
+"Agent: %4$s
."
+msgstr ""
+"Eingeloggt seit%1$s
Läuft ab in "
+"%2$s
IP: %3$s
User-"
+"Agent: %4$s
."
+
+#: pro/modules/users-login/plugins/sessions-control.php:432
+#: pro/modules/users-login/plugins/sessions-control.php:501
+msgid "Error: wrong user."
+msgstr "Fehler: Falscher Benutzer."
+
+#: pro/modules/users-login/plugins/sessions-control.php:438
+#: pro/modules/users-login/plugins/sessions-control.php:521
+msgid "Selected users have been logged out."
+msgstr "Ausgewählte Benutzer wurden abgemeldet."
+
+#: pro/modules/users-login/plugins/sessions-control.php:450
+#: pro/modules/users-login/plugins/sessions-control.php:523
+msgid "You are now logged out everywhere else."
+msgstr "Du bist nun überall eingeloggt."
+
+#: pro/modules/users-login/plugins/sessions-control.php:452
+#, php-format
+msgid "%s has been logged out."
+msgstr "%s ausgeloggt wurde."
+
+#: pro/modules/users-login/plugins/sessions-control.php:460
+#: pro/modules/users-login/plugins/sessions-control.php:561
+msgid ""
+"You are now logged out everywhere else and all other users have been logged "
+"out."
+msgstr ""
+"Du bist nun überall sonst abgemeldet und alle anderen Benutzer wurden "
+"abgemeldet."
+
+#: pro/modules/users-login/plugins/sessions-control.php:486
+#: pro/modules/users-login/plugins/sessions-control.php:540
+msgid "You do not have sufficient permissions to access this page."
+msgstr ""
+"Du hast nicht die erforderlichen Rechte, um auf diese Seite zuzugreifen."
+
+#: pro/modules/users-login/plugins/sessions-control.php:525
+#, php-format
+msgid "%s has been logged out."
+msgstr "%s wurde abgemeldet."
+
+#: pro/modules/users-login/plugins/strong-passwords.php:81
+msgctxt "password strength"
+msgid "Very weak"
+msgstr "Sehr schwach"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:82
+msgctxt "password strength"
+msgid "Weak"
+msgstr "Schwach"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:83
+msgctxt "password strength"
+msgid "Medium"
+msgstr "Mittel"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:84
+msgctxt "password strength"
+msgid "Strong"
+msgstr "Stark"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:85
+msgctxt "password mismatch"
+msgid "Mismatch"
+msgstr "Nicht passend"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:92
+msgid "Your new password has not been saved."
+msgstr "Dein neues Passwort wurde nicht gespeichert."
+
+#: pro/modules/users-login/plugins/strong-passwords.php:93
+msgid "Show"
+msgstr "Anzeigen"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:94
+#: pro/modules/users-login/plugins/strong-passwords.php:175
+msgid "Hide"
+msgstr "Verstecken"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:96
+msgid "Show password"
+msgstr "Passwort anzeigen"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:97
+#: pro/modules/users-login/plugins/strong-passwords.php:173
+msgid "Hide password"
+msgstr "Passwort ausblenden"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:162
+msgid "Account Management"
+msgstr "Kontoverwaltung"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:165
+msgid "New Password"
+msgstr "Neues Passwort"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:168
+msgid "Generate Password"
+msgstr "Neues Kennwort generieren"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:177
+msgid "Cancel password change"
+msgstr "Passwort-Änderung Abbrechen"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:184
+msgid "You must choose a strong password."
+msgstr "Du musst ein sicheres Passwort wählen."
+
+#: pro/modules/users-login/plugins/strong-passwords.php:188
+msgid "Repeat New Password"
+msgstr "Neues Passwort wiederholen"
+
+#: pro/modules/users-login/plugins/strong-passwords.php:191
+msgid "Type your new password again."
+msgstr "Gebe dein neues Passwort erneut ein."
+
+#: pro/modules/users-login/plugins/strong-passwords.php:272
+msgid "Error: Please enter a strong password."
+msgstr "Fehler: Bitte gib ein sicheres Passwort ein."
+
+#: pro/modules/welcome/callbacks.php:19
+msgid "The file was empty."
+msgstr "Die Datei war leer."
+
+#: pro/modules/welcome/callbacks.php:47
+msgid "Settings imported and saved."
+msgstr "Einstellungen importiert und gespeichert."
+
+#: pro/modules/welcome/callbacks.php:49
+msgid "Error: settings could not be imported."
+msgstr "Fehler: Einstellungen konnten nicht importiert werden."
+
+#: pro/modules/wordpress-core/callbacks.php:21
+msgid "Database Prefix unchanged."
+msgstr "Datenbankpräfix unverändert."
+
+#: pro/modules/wordpress-core/callbacks.php:25
+msgid "New prefix was the same."
+msgstr "Das neue Präfix war dasselbe."
+
+#: pro/modules/wordpress-core/callbacks.php:29
+msgid "New prefix is too short."
+msgstr "Das neue Präfix ist zu kurz."
+
+#: pro/modules/wordpress-core/callbacks.php:33
+#, php-format
+msgid "%s doesn’t have the rights to alter database."
+msgstr "%s hat nicht das Recht, die Datenbank zu ändern."
+
+#: pro/modules/wordpress-core/callbacks.php:37
+#, php-format
+msgid "Can’t change the $table_prefix
in %s
file."
+msgstr ""
+"Kann den $table_prefix
in der Datei %s
nicht "
+"ändern."
+
+#: pro/modules/wordpress-core/callbacks.php:41
+msgid "Tried to rename the tables but something went wrong."
+msgstr ""
+"Ich habe versucht, die Tabellen umzubenennen, aber etwas ist schief gelaufen."
+
+#: pro/modules/wordpress-core/callbacks.php:45
+#, php-format
+msgid "Database Prefix changed: %s"
+msgstr "Datenbankpräfix geändert: %s"
+
+#: secupress-pro.php:69
+msgid "SecuPress Pro — WordPress Security"
+msgstr "SecuPress Pro — WordPress-Sicherheit"
+
+#: secupress-pro.php:71
+msgid "More than a plugin, the guarantee of a protected website by experts."
+msgstr ""
+"Mehr als ein Plugin, die Garantie einer geschützten Website durch Experten."
diff --git a/languages/secupress-fr_FR.mo b/languages/secupress-fr_FR.mo
index dc908f2d..2995d2b4 100644
Binary files a/languages/secupress-fr_FR.mo and b/languages/secupress-fr_FR.mo differ
diff --git a/languages/secupress-fr_FR.po b/languages/secupress-fr_FR.po
index 70fe663b..fee3fbe1 100755
--- a/languages/secupress-fr_FR.po
+++ b/languages/secupress-fr_FR.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: SecuPress\n"
"Report-Msgid-Bugs-To: https://secupress.me/\n"
-"POT-Creation-Date: 2023-04-17 17:05+0200\n"
-"PO-Revision-Date: 2023-04-17 17:06+0200\n"
+"POT-Creation-Date: 2023-12-21 13:27+0100\n"
+"PO-Revision-Date: 2023-12-21 18:25+0100\n"
"Last-Translator: Julio Potier \n"
"Language-Team: French (France) \n"
"Language: fr_FR\n"
@@ -15,7 +15,7 @@ msgstr ""
"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.1.1\n"
+"X-Generator: Poedit 3.4.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: _x:1,2c;__;_e;_ex:1,2c;_n:1,2;_nx:1,2;esc_html__;"
"esc_html_e;esc_attr__;esc_attr_e;_n_noop:1,2;_nx_noop:4c,1,2\n"
@@ -410,7 +410,7 @@ msgid "Anti Spam"
msgstr "Anti Spam"
#: free/admin/functions/admin.php:258
-#, php-format
+#, no-php-format
msgid ""
"Bots represent about 60% of internet traffic. Don’t let them add their spam "
"to your site!"
@@ -463,10 +463,6 @@ msgstr ""
"Toutes les actions considérées comme dangereuses sont gardées dans ces "
"journaux disponible à tout moment pour vérifier ce qui arrive à votre site."
-#: free/admin/functions/admin.php:317
-msgid "Fix done."
-msgstr "Correction effectuée."
-
#: free/admin/functions/ajax-post.php:40
msgid "Please try again."
msgstr "Veuillez réessayer."
@@ -592,7 +588,7 @@ msgstr "Savez-vous que nous proposons un service de Configuration Pro ?"
#: free/admin/modal.php:80 free/admin/modal.php:89 free/admin/modal.php:99
#: free/admin/scanner-step-3.php:288
#: free/classes/settings/class-secupress-settings.php:1708
-#: free/functions/common.php:561
+#: free/functions/common.php:562
msgid "pricing"
msgstr "fr/tarifs"
@@ -696,8 +692,8 @@ msgid ""
"Some security issues must be fixed, please visit %2$s’s "
"page."
msgstr ""
-"Des problèmes de sécurité doivent être réglés, merci de visiter la page de %2$s."
+"Des problèmes de sécurité doivent être réglés, merci de visiter la page de %2$s."
#: free/admin/multisite/settings.php:252
#, php-format
@@ -724,8 +720,8 @@ msgstr "%s: Les requêtes HTTP sont bloquées !"
#: free/admin/notices.php:32
#, php-format
msgid ""
-"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the "
-"%s
to block all external HTTP requests."
+"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the "
+"%s
to block all external HTTP requests."
msgstr ""
"Vous avez défini la constante WP_HTTP_BLOCK_EXTERNAL
dans le "
"fichier %s
pour bloquer toutes les requêtes HTTP externes."
@@ -809,7 +805,7 @@ msgstr ""
"dès maintenant."
#: free/admin/notices.php:303 free/admin/settings.php:178
-#: free/admin/settings.php:679
+#: free/admin/settings.php:686
msgid "Scan my website"
msgstr "Scanner mon site"
@@ -957,11 +953,11 @@ msgstr ""
#: free/admin/scanner-step-2.php:196
#, php-format
msgid ""
-"This feature and its fix are available in Pro Version"
+"This feature and its fix are available in Pro Version"
msgstr ""
-"Fonctionnalité et correctif disponibles dans la version Pro"
+"Fonctionnalité et correctif disponibles dans la version Pro"
#: free/admin/scanner-step-2.php:206
msgid "Auto-fix this item"
@@ -1008,8 +1004,8 @@ msgid "How to fix this issue"
msgstr "Comment corriger ce problème"
#: free/admin/scanner-step-3.php:265 free/admin/scanner-step-3.php:288
-#: free/admin/settings.php:541 free/admin/settings.php:882
-#: free/admin/settings.php:885
+#: free/admin/settings.php:548 free/admin/settings.php:889
+#: free/admin/settings.php:892
#: free/classes/admin/class-secupress-admin-pro-upgrade.php:157
#: free/classes/admin/class-secupress-admin-pro-upgrade.php:178
#: free/modules/welcome/callbacks.php:404
@@ -1091,12 +1087,13 @@ msgid "Not fixed"
msgstr "Non corrigé"
#: free/admin/scanner-step-4.php:214 free/admin/settings.php:147
-#: free/admin/settings.php:226 free/functions/common.php:1667
-#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:396
+#: free/admin/settings.php:226 free/functions/common.php:1668
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:397
msgid "Error"
msgstr "Erreur"
-#: free/admin/scanner-step-4.php:219
+#: free/admin/scanner-step-4.php:219 free/admin/settings.php:517
+#: free/functions/common.php:1667
msgid "Pending"
msgstr "En attente"
@@ -1121,7 +1118,7 @@ msgstr "%s modules"
msgid "Fine-tune your security"
msgstr "Découvrez toutes les fonctionnalités"
-#: free/admin/scanner-step-4.php:308 free/admin/settings.php:637
+#: free/admin/scanner-step-4.php:308 free/admin/settings.php:644
msgid "Manage your recurring scans"
msgstr "Planifiez vos scans automatiques"
@@ -1132,7 +1129,7 @@ msgstr ""
"Laissez %s scanner votre site quand vous n’êtes pas là avec des scanners "
"récurrents."
-#: free/admin/scanner-step-4.php:315 free/admin/settings.php:636
+#: free/admin/scanner-step-4.php:315 free/admin/settings.php:643
msgid "Schedule Scans"
msgstr "Planification de scans"
@@ -1291,16 +1288,16 @@ msgstr ""
"devrez peut-être vous reconnecter."
#: free/admin/settings.php:212 free/admin/settings.php:511
-#: free/functions/common.php:1665
+#: free/functions/common.php:1666
msgid "Good"
msgstr "Bon"
-#: free/admin/settings.php:213 free/functions/common.php:1666
+#: free/admin/settings.php:213
msgid "Warning"
msgstr "En attente"
-#: free/admin/settings.php:214 free/admin/settings.php:516
-#: free/functions/common.php:1664
+#: free/admin/settings.php:214 free/admin/settings.php:523
+#: free/functions/common.php:1665
msgid "Bad"
msgstr "Mauvais"
@@ -1397,7 +1394,7 @@ msgstr "Premier scanner"
msgid "Here’s how it’s going to work"
msgstr "Voici comment cela fonctionne"
-#: free/admin/settings.php:471 free/admin/settings.php:645
+#: free/admin/settings.php:471 free/admin/settings.php:652
msgid "Scan results"
msgstr "Résultat du scanner"
@@ -1405,11 +1402,11 @@ msgstr "Résultat du scanner"
msgid "How does it work?"
msgstr "Comment ça marche ?"
-#: free/admin/settings.php:522
+#: free/admin/settings.php:529
msgid "New Scan"
msgstr "Nouveau scan"
-#: free/admin/settings.php:534
+#: free/admin/settings.php:541
#, php-format
msgid ""
"Wow! My website just got an %s grade for security using @SecuPress, what "
@@ -1418,23 +1415,23 @@ msgstr ""
"Wow ! Mon site a reçu le grade de sécurité %s en utilisant @SecuPress, quel "
"est le vôtre ?"
-#: free/admin/settings.php:544
+#: free/admin/settings.php:551
msgid "Tweet this"
msgstr "Twitter ça"
-#: free/admin/settings.php:556
+#: free/admin/settings.php:563
msgid "Your last scans"
msgstr "Vos derniers scans"
-#: free/admin/settings.php:564
+#: free/admin/settings.php:571
msgid "You have no other reports for now."
msgstr "Vous n’avez pas d’autres rapports pour le moment."
-#: free/admin/settings.php:575
+#: free/admin/settings.php:582
msgid "Schedule your security analysis"
msgstr "Planifiez votre analyse de sécurité"
-#: free/admin/settings.php:577
+#: free/admin/settings.php:584
msgid ""
"Stay updated on the security of your website. With our automatic scans, "
"there is no need to log in to your WordPress admin to run a scan."
@@ -1443,73 +1440,73 @@ msgstr ""
"automatiques, plus besoin de se connecter dans l’administration de WordPress "
"pour lancer un scan."
-#: free/admin/settings.php:581 free/admin/settings.php:583
+#: free/admin/settings.php:588 free/admin/settings.php:590
msgctxt "Schedule date"
msgid "Y-m-d \\a\\t h:ia"
msgstr "d/m/Y \\à G:i"
-#: free/admin/settings.php:588 free/admin/settings.php:603
+#: free/admin/settings.php:595 free/admin/settings.php:610
#, php-format
msgid "Last automatic scan: %s"
msgstr "Dernier scan automatique : %s"
-#: free/admin/settings.php:592 free/admin/settings.php:607
+#: free/admin/settings.php:599 free/admin/settings.php:614
#, php-format
msgid "Next automatic scan: %s"
msgstr "Prochain scan automatique : %s"
-#: free/admin/settings.php:596 free/admin/settings.php:611
+#: free/admin/settings.php:603 free/admin/settings.php:618
msgid "Schedule your next analysis"
msgstr "Planifier votre prochaine analyse"
-#: free/admin/settings.php:613
+#: free/admin/settings.php:620
msgid "Available in the PRO version"
msgstr "Disponible dans la version PRO"
-#: free/admin/settings.php:626
+#: free/admin/settings.php:633
msgid "Latest scans"
msgstr "Derniers scans"
-#: free/admin/settings.php:627
+#: free/admin/settings.php:634
msgid "View your previous scans"
msgstr "Voir vos scans précédents"
-#: free/admin/settings.php:668
+#: free/admin/settings.php:675
msgid "Click to launch first scan"
msgstr "Cliquez pour lancer le premier scan"
-#: free/admin/settings.php:702
+#: free/admin/settings.php:709
msgid "Security Report"
msgstr "Rapport de sécurité"
-#: free/admin/settings.php:703 free/admin/settings.php:768
+#: free/admin/settings.php:710 free/admin/settings.php:775
msgid "Auto-Fix"
msgstr "Correction automatique"
-#: free/admin/settings.php:704 free/admin/settings.php:779
+#: free/admin/settings.php:711 free/admin/settings.php:786
msgid "Manual Operations"
msgstr "Opérations manuelles"
-#: free/admin/settings.php:705 free/admin/settings.php:790
+#: free/admin/settings.php:712 free/admin/settings.php:797
msgid "Resolution Report"
msgstr "Rapport de résolutions"
-#: free/admin/settings.php:757
+#: free/admin/settings.php:764
#: pro/classes/admin/class-secupress-pro-admin-scan-report-pdf.php:22
msgid "Site Health"
msgstr "Santé du site"
-#: free/admin/settings.php:759
+#: free/admin/settings.php:766
msgid "Start to check all security items with the Scan your website button."
msgstr ""
"Commencez à vérifier tous les éléments de sécurité avec le bouton Scanner le "
"site."
-#: free/admin/settings.php:770
+#: free/admin/settings.php:777
msgid "Launch the auto-fix on selected issues."
msgstr "Lancer la correction automatique sur les problèmes sélectionnés."
-#: free/admin/settings.php:781
+#: free/admin/settings.php:788
msgid ""
"Go further and take a look at the items you have to fix with specific "
"operations."
@@ -1517,25 +1514,25 @@ msgstr ""
"Aller plus loin et jeter un oeil aux points que vous pouvez résoudre grâce à "
"une opération spécifique."
-#: free/admin/settings.php:792
+#: free/admin/settings.php:799
msgid "Get the new site health report for your website."
msgstr "Obtenez le nouveau rapport de santé de votre site."
-#: free/admin/settings.php:804
+#: free/admin/settings.php:811
msgid "I’ve got it!"
msgstr "J’ai compris !"
-#: free/admin/settings.php:880
+#: free/admin/settings.php:887
msgid "Do you like this plugin?"
msgstr "Vous aimez notre extension ?"
-#: free/admin/settings.php:882
+#: free/admin/settings.php:889
#, php-format
msgid "Please take a few seconds to rate us on %1$sWordPress.org%2$s"
msgstr ""
"Merci de prendre quelques secondes pour nous noter sur %1$sWordPress.org%2$s"
-#: free/admin/settings.php:891
+#: free/admin/settings.php:898
msgctxt "hidden text"
msgid "Give us five stars"
msgstr "Donnez nous les 5 étoiles"
@@ -2749,13 +2746,13 @@ msgstr[1] ""
"moins : %2$s."
#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:90
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:93
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:94
#, php-format
msgid "You should delete the plugin %s."
msgstr "Vous devriez supprimer l’extensions %s."
#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:91
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:94
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:95
#: free/classes/scanners/class-secupress-scan-inactive-plugins-themes.php:74
msgid "Sorry, this plugin could not be deleted."
msgid_plural "Sorry, those plugins could not be deleted."
@@ -2763,7 +2760,7 @@ msgstr[0] "Désolé, cette extension ne peut être supprimée."
msgstr[1] "Désolé, ces extensions ne peuvent être supprimées."
#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:92
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:95
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:96
#, php-format
msgid "The following plugin should be deactivated if you don’t need it: %s."
msgid_plural ""
@@ -2776,7 +2773,7 @@ msgstr[1] ""
"besoin : %s."
#: free/classes/scanners/class-secupress-scan-bad-old-plugins.php:93
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:96
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:97
msgid "Sorry, this plugin could not be deactivated."
msgid_plural "Sorry, those plugins could not be deactivated."
msgstr[0] "Désolé, cette extension ne peut pas être désactivée."
@@ -3163,7 +3160,15 @@ msgid "All plugins known to be vulnerable have been deactivated."
msgstr ""
"Toutes les extensions connus pour être vulnérables ont été désactivées."
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:91
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:89
+msgid ""
+"Your installation may contain vulnerable plugins. The PRO version will be "
+"more accurate."
+msgstr ""
+"Votre installation pourrait contenir des extensions connues pour être "
+"vulnérables. La version PRO sera plus précise."
+
+#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:92
#, php-format
msgid "%1$d plugin is known to be vulnerable: %2$s."
msgid_plural "%1$d plugins are known to be vulnerable: %2$s."
@@ -3172,14 +3177,6 @@ msgstr[0] ""
msgstr[1] ""
"%1$d extensions sont connues pour être vulnérables : %2$s."
-#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:97
-msgid ""
-"Your installation may contain vulnerable plugins. The PRO version will be "
-"more accurate."
-msgstr ""
-"Votre installation peut contenir des extensions connues pour être "
-"vulnérables. La version PRO sera plus précise."
-
#: free/classes/scanners/class-secupress-scan-bad-vuln-plugins.php:127
msgid "https://docs.secupress.me/article/121-vulnerable-plugins-check"
msgstr ""
@@ -4172,8 +4169,8 @@ msgstr ""
#: free/classes/scanners/class-secupress-scan-php-disclosure.php:43
msgid ""
-"Check if your server lists the PHP modules (known as \"PHP Easter Egg"
-"\")."
+"Check if your server lists the PHP modules (known as \"PHP Easter "
+"Egg\")."
msgstr ""
"Vérifie si votre serveur liste les modules de PHP (connu sous le nom de "
"\"PHP Easter Egg\")."
@@ -4285,8 +4282,8 @@ msgstr "Impossible de déterminer la version de PHP."
#, php-format
msgid ""
"You are using PHP v%1$s, but the oldest major supported "
-"version is PHP v%2$s, and the last one is PHP v"
-"%3$s."
+"version is PHP v%2$s, and the last one is PHP "
+"v%3$s."
msgstr ""
"Vous utilisez PHP v%1$s, mais la dernière version majeure "
"supportée est PHP v%2$s, et la dernière en date est "
@@ -4452,10 +4449,10 @@ msgid ""
"plugin
to replace your actual keys stored in %s
or in your "
"database to keep them safer."
msgstr ""
-"Crée une extension automatique pour remplacer vos clés actuelles stockées "
-"dans le fichier %s
ou en base de données pour le mettre encore "
-"plus en sécurité."
+"Crée une extension automatique pour remplacer vos clés actuelles "
+"stockées dans le fichier %s
ou en base de données pour le "
+"mettre encore plus en sécurité."
#: free/classes/scanners/class-secupress-scan-salt-keys.php:59
msgid "All security keys are properly set."
@@ -4875,13 +4872,13 @@ msgstr "Votre fichier %s est correct."
#: free/classes/scanners/class-secupress-scan-wp-config.php:82
#, php-format
msgid ""
-"A must-use plugin has been added in order to change the default value "
-"for %s."
+"A must-use plugin has been added in order to change the "
+"default value for %s."
msgstr ""
-"Une extension automatique a été ajoutée pour modifier la valeur par "
-"défaut de %s."
+"Une extension automatique a été ajoutée pour modifier la "
+"valeur par défaut de %s."
#: free/classes/scanners/class-secupress-scan-wp-config.php:87
#, php-format
@@ -4950,8 +4947,9 @@ msgstr "Quelques constantes PHP ne sont pas correctement paramétrées : %s."
#: free/classes/scanners/class-secupress-scan-wp-config.php:130
#, php-format
msgid ""
-"Impossible to create a must-use plugin but the default value for %s needs to be changed."
+"Impossible to create a must-use plugin but the default value for %s needs to "
+"be changed."
msgstr ""
"Impossible de créer une extension automatique pourtant la "
@@ -5343,7 +5341,7 @@ msgstr "Lien de déverrouillage expiré."
#: free/common.php:124 free/common.php:125
#: free/modules/users-login/plugins/blacklist-logins.php:46
-#: free/modules/users-login/plugins/stop-user-enumeration.php:86
+#: free/modules/users-login/plugins/stop-user-enumeration.php:92
#: free/modules/wordpress-core/plugins/wp-config-constant-repair.php:44
#: pro/admin/ajax-post-callbacks.php:22
#: pro/modules/users-login/plugins/sessions-control.php:359
@@ -5483,72 +5481,76 @@ msgid_plural "Your grade is %1$s with %2$d good scanned items."
msgstr[0] "Votre grade est %1$s avec %2$d élément scanné correct."
msgstr[1] "Votre grade est %1$s avec %2$d éléments scannés corrects."
-#: free/functions/common.php:450
+#: free/functions/common.php:451
#, php-format
msgid "Hidden by %s."
msgstr "Caché par %s."
-#: free/functions/common.php:513
+#: free/functions/common.php:514
msgid "You are not allowed to access the requested page."
msgstr "Vous n’êtes pas autorisé à accéder à là page demandée."
-#: free/functions/common.php:518
+#: free/functions/common.php:519
msgid "Logged Details:"
msgstr "Détails enregistrés :"
-#: free/functions/common.php:520
+#: free/functions/common.php:521
#, php-format
msgid "Your IP: %s"
msgstr "Votre IP : %s"
-#: free/functions/common.php:521
+#: free/functions/common.php:522
#, php-format
msgid "Time: %s"
msgstr "Heure : %s"
-#: free/functions/common.php:521
+#: free/functions/common.php:522
msgid "F j, Y g:i a"
msgstr "j F Y G:i"
-#: free/functions/common.php:522
+#: free/functions/common.php:523
#, php-format
msgid "Reason: %s"
msgstr "Raison : %s"
-#: free/functions/common.php:523
+#: free/functions/common.php:524
#, php-format
msgid "Support ID: %s"
msgstr "Support ID : %s"
-#: free/functions/common.php:1621
+#: free/functions/common.php:1622
msgctxt "User role"
msgid "Administrator"
msgstr "Administrateur"
-#: free/functions/common.php:1622
+#: free/functions/common.php:1623
msgctxt "User role"
msgid "Editor"
msgstr "Éditeur"
-#: free/functions/common.php:1623
+#: free/functions/common.php:1624
msgctxt "User role"
msgid "Author"
msgstr "Auteur"
-#: free/functions/common.php:1624
+#: free/functions/common.php:1625
msgctxt "User role"
msgid "Contributor"
msgstr "Contributeur"
-#: free/functions/common.php:1625
+#: free/functions/common.php:1626
msgctxt "User role"
msgid "Subscriber"
msgstr "Abonné"
-#: free/functions/common.php:1669
+#: free/functions/common.php:1670
msgid "New"
msgstr "Nouveau"
+#: free/functions/common.php:1698
+msgid "Fix done."
+msgstr "Correction effectuée."
+
#: free/functions/deprecated.php:51
#, php-format
msgid "License email: %s"
@@ -6350,13 +6352,13 @@ msgstr "Une adresse par ligne."
#: free/modules/alerts/settings/notification-types.php:35
msgid ""
-"Read our simple documentation page to know how to get your Webhook Link "
-"for Slack."
+"Read our simple documentation page to know how to get your "
+"Webhook Link for Slack."
msgstr ""
-"Lisez notre simple page de documentation pour savoir comment obtenir votre "
-"Webhook pour Slack."
+"Lisez notre simple page de documentation pour savoir comment "
+"obtenir votre Webhook pour Slack."
#: free/modules/alerts/settings/notification-types.php:43
msgid "Slack Webhook Notifications have been accepted."
@@ -6477,8 +6479,9 @@ msgstr "Utilisation des codes courts (shortcodes)"
#: free/modules/antispam/settings/antispam.php:72
msgid ""
-"A shortcode can create macros to be used in a post’s content."
+"A shortcode can create macros to be used in a post’s "
+"content."
msgstr ""
"Un code-court (shortcode) peut créer des macros à utiliser "
@@ -6546,22 +6549,27 @@ msgstr ""
#: free/modules/antispam/settings/antispam.php:123
msgid "Delay before posting a comment"
-msgstr ""
+msgstr "Délai avant de poster un commentaire"
#: free/modules/antispam/settings/antispam.php:124
msgid ""
"A human has to read the post then write a comment before posting. Let them "
"wait 30 secondes before posting."
msgstr ""
+"Un humain doit lire l‘article puis écrire un commentaire avant de l‘envoyer. "
+"Laissons lui attendre 30 secondes avant de poster."
#: free/modules/antispam/settings/antispam.php:129
msgid "Wait 30 seconds before posting a comment"
msgstr ""
+"Attendez 30 secondes avant d‘envoyer votre commentaire"
#: free/modules/antispam/settings/antispam.php:133
msgid ""
"If someone tries to post before that, we consider it a bot and block it."
msgstr ""
+"Si quelqu‘un essaie d‘envoyer un commentaire avant le délai, nous "
+"considérons qu‘il s‘agit d‘un bot et le bloquons."
#: free/modules/backups/settings/backup-db.php:5
msgid "Database Backups"
@@ -6681,8 +6689,8 @@ msgstr "Mot de passe perdu ?"
#: free/modules/discloses/tools.php:20
#, php-format
msgid ""
-"Error: The password you entered for the username "
-"%1$s is incorrect. Lost your password?"
+"Error: The password you entered for the username "
+"%1$s is incorrect. Lost your password?"
msgstr ""
"Erreur : Le mot de passe entré pour le compte %1$s"
"strong> est incorrect. Mot de passe perdu ?"
@@ -8479,7 +8487,7 @@ msgstr "Identifiant : %s"
msgid "Sorry, that username is not allowed."
msgstr "Désolé, cet identifiant n’est pas autorisé."
-#: free/modules/users-login/plugins/limitloginattempts.php:77
+#: free/modules/users-login/plugins/limitloginattempts.php:129
#, php-format
msgid "Login failed, %d attempt left."
msgid_plural "Login failed, %d attempts left."
@@ -8799,8 +8807,8 @@ msgid ""
"a> and do not use \"Plain\" setting."
msgstr ""
"Votre site Web n’utilise pas les Permaliens personnalisés alors que "
-"ce module en a besoin. Vous pouvez les activer sur la page des "
-"réglages des Permaliens mais n’utilisez pas le réglage \"Simple\"."
+"ce module en a besoin. Vous pouvez les activer sur la page "
+"des réglages des Permaliens mais n’utilisez pas le réglage \"Simple\"."
#: free/modules/users-login/settings/move-login.php:113
msgid "URL"
@@ -9461,8 +9469,8 @@ msgid ""
msgstr ""
"Ces options sont désactivées car le fichier %1$s n’est pas en écriture. "
"Merci d’appliquer les droits %2$s sur ce fichier. Besoin d’aide ?"
+"secupress.me/article/153-appliquer-les-droits-decriture-sur-des-"
+"fichiers\">Besoin d’aide ?"
#: free/modules/wordpress-core/tools.php:16
#, php-format
@@ -9891,7 +9899,7 @@ msgid "Next scan will occur %s."
msgstr "Prochain scan arrive à %s."
#: pro/classes/admin/class-secupress-pro-admin-edd-sl-plugin-updater.php:216
-#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:201
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:202
#, php-format
msgid ""
"There is a new version of %1$s available. %2$sView version %3$s details%4$s."
@@ -9900,7 +9908,7 @@ msgstr ""
"version %3$s%4$s."
#: pro/classes/admin/class-secupress-pro-admin-edd-sl-plugin-updater.php:224
-#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:209
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:210
#, php-format
msgid ""
"There is a new version of %1$s available. %2$sView version %3$s details%4$s "
@@ -10025,7 +10033,7 @@ msgctxt "pdf report date"
msgid "M jS, Y \\a\\t h:i:sa"
msgstr "l j F Y \\à G:i:s"
-#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:396
+#: pro/classes/vendors/edd-software-licensing/SecuPress_EDD_SL_Plugin_Updater.php:397
msgid "You do not have permission to install plugin updates"
msgstr "Vous n’avez pas la permission d’installer des extensions sur ce site"
@@ -10976,8 +10984,8 @@ msgstr "%s n’a pas les droits de modifier la base de données."
#, php-format
msgid "Can’t change the $table_prefix
in %s
file."
msgstr ""
-"Impossible de changer la $table_prefix
dans le fichier "
-"%s
."
+"Impossible de changer la $table_prefix
dans le fichier "
+"%s
."
#: pro/modules/wordpress-core/callbacks.php:41
msgid "Tried to rename the tables but something went wrong."
@@ -10997,6 +11005,9 @@ msgid "More than a plugin, the guarantee of a protected website by experts."
msgstr ""
"Plus qu’une extension, la garantie d’un site Web protégé par des experts."
+#~ msgid "Waiting"
+#~ msgstr "En attente"
+
#~ msgid "Disallowed Usernames"
#~ msgstr "Identifiants interdits"
@@ -11500,8 +11511,8 @@ msgstr ""
#~ msgstr ""
#~ "Bonjour %1$s, il semble que vous êtes coincé(e) dehors de votre site "
#~ "###SITENAME###.
Vous pouvez cliquer maintenant sur la page de "
-#~ "connexion ou désactiver le module de déplacement de page.
%2$s
"
-#~ "%3$s
Bonne journée !"
+#~ "connexion ou désactiver le module de déplacement de page."
+#~ "
%2$s
%3$s
Bonne journée !"
#, php-format
#~ msgid ""
@@ -11532,18 +11543,18 @@ msgstr ""
#~ "permissions."
#~ msgstr ""
#~ "Le fichier %s n’est pas en écriture, obtenez plus d’informations sur les "
-#~ "droits d’écriture "
-#~ "(en)."
+#~ "droits "
+#~ "d’écriture (en)."
#, php-format
#~ msgid ""
#~ "If you had writing permissions on "
#~ "%2$s file, %3$s could do more things automatically."
#~ msgstr ""
-#~ "Si vous aviez les droits d’écriture sur le fichier %2$s, %3$s pourrait faire plus de "
-#~ "choses automatiquement."
+#~ "Si vous aviez les droits d’écriture sur le fichier %2$s, %3$s pourrait "
+#~ "faire plus de choses automatiquement."
#~ msgid "Empty blacklist."
#~ msgstr "Liste noire vide."
@@ -12492,12 +12503,12 @@ msgstr ""
#~ msgstr "HTML non filtré dans l’éditeur des articles"
#~ msgid ""
-#~ "By default Administrators are allowed to write any type of HTML in the post editor, including "
-#~ "unsafe HTML tags like %1$s and %2$s. This kind of tag is highly insecure "
-#~ "and %3$s or %4$s must be used instead. By activating this option, you "
-#~ "will set the constant %5$s and allow only common HTML tags to be used in "
-#~ "the post editor."
+#~ "By default Administrators are allowed to write any type of HTML in the post editor, "
+#~ "including unsafe HTML tags like %1$s and %2$s. This kind of tag is highly "
+#~ "insecure and %3$s or %4$s must be used instead. By activating this "
+#~ "option, you will set the constant %5$s and allow only common HTML tags to "
+#~ "be used in the post editor."
#~ msgstr ""
#~ "Par défaut les administrateurs sont autorisés à écrire n’importe quelle "
#~ "balise HTML dans "
@@ -12546,8 +12557,8 @@ msgstr ""
#~ msgid ""
#~ "A Recovery E-mail is needed in case of hack, you can set "
-#~ "it in your profile or here: "
+#~ "it in your profile or here: "
#~ "%2$s"
#~ msgstr ""
#~ "Une adresse email de récupération est nécessaire en cas "
@@ -12852,8 +12863,8 @@ msgstr ""
#~ msgstr "%s : "
#~ msgid ""
-#~ "The %1$s file is not writable, read more about writing permissions."
+#~ "The %1$s file is not writable, read more about writing permissions."
#~ msgstr ""
#~ "Le fichier %1$s n’est pas en écriture, plus d’infos sur les droits en "
#~ "écriture (en) ."
@@ -12906,8 +12917,9 @@ msgstr ""
#~ "%2$s."
#~ msgid ""
-#~ "An unexpected HTTP error occurred during the API request. Try again"
+#~ "An unexpected HTTP error occurred during the API request.
Try "
+#~ "again"
#~ msgstr ""
#~ "Une erreur HTTP non attendue est arrivée durant la requête à l’API.
"
#~ " sprintf( '%s;SecuPress|%s|%s|;', $user_agent, $version, esc_url( home_url() ) ),
);