Version Description
- Added German translation thanks to Micha Cassola.
- Improved the Apache software version checker for better firewall compatibility.
- Fixed session compatibility that was conflicting with the REST API check in Site Health.
- Checked code for compatibility with WordPress 5.8.1 and ClassicPress 1.3.1.
Download this release
Release Info
Developer | scheeeli |
Plugin | Anti-Malware Security and Brute-Force Firewall |
Version | 4.20.92 |
Comparing to | |
See all releases |
Code changes from version 4.20.72 to 4.20.92
- images/index.php +1 -1
- index.php +9 -5
- languages/gotmls-de_DE.mo +0 -0
- languages/gotmls-de_DE.po +885 -0
- languages/gotmls-hu_HU.mo +0 -0
- languages/gotmls-hu_HU.po +1143 -0
- readme.txt +14 -4
- safe-load/wp-login.php +1 -0
images/index.php
CHANGED
@@ -567,7 +567,7 @@ function GOTMLS_get_quarantine($only = false) {
|
|
567 |
$Q_Page = '
|
568 |
<form method="POST" action="'.admin_url('admin-ajax.php?'.GOTMLS_set_nonce(__FUNCTION__."645")).(isset($_SERVER["QUERY_STRING"])&&strlen($_SERVER["QUERY_STRING"])?"&".$_SERVER["QUERY_STRING"]:"").'" target="GOTMLS_iFrame" name="GOTMLS_Form_clean"><input type="hidden" id="GOTMLS_fixing" name="GOTMLS_fixing" value="1"><input type="hidden" name="action" value="GOTMLS_fix">';
|
569 |
if ($my_query->have_posts()) {
|
570 |
-
$Q_Page .= '<p id="quarantine_buttons" style="display: none;"><input id="repair_button" type="submit" value="'.__("Restore selected files",'gotmls').'" class="button-primary" onclick="if (confirm(\''.__("Are you sure you want to overwrite the previously cleaned files with the selected files in the Quarantine?",'gotmls').'\')) { setvalAllFiles(1); loadIframe(\'File Restoration Results\'); } else return false;" /><input id="delete_button" type="submit" class="button-primary" value="'.__("Delete selected
|
571 |
<p id="reclean_buttons" style="display: none;"><input id="reclean_button" type="submit" value="'.__("Re-clean re-infected files",'gotmls').'" class="button-primary" onclick="checkAllFiles(false); setvalAllFiles(1); loadIframe(\'Reinfected File Recleaning Results\');" /><b>'.__("The items highlighted in red have been found to be re-infected. The malicious code has returned and needs to be cleaned again.",'gotmls').'</b></p>
|
572 |
<ul name="found_Quarantine" id="found_Quarantine" class="GOTMLS_plugin known" style="background-color: #ccc; padding: 0;"><h3 style="margin: 8px 12px;">'.($my_query->post_count>1?'<input type="checkbox" onchange="checkAllFiles(this.checked); document.getElementById(\'quarantine_buttons\').style.display = \'block\';"> '.sprintf(__("Check all %d",'gotmls'),$my_query->post_count):"").__(" Items in Quarantine",'gotmls').'<span class="GOTMLS_date">'.__("Quarantined",'gotmls').'</span><span class="GOTMLS_date">'.__("Date Infected",'gotmls').'</span></h3>';
|
573 |
$root_path = implode(GOTMLS_slash(), array_slice(GOTMLS_explode_dir(__FILE__), 0, (2 + intval($GLOBALS["GOTMLS"]["tmp"]["settings_array"]["scan_level"])) * -1));
|
567 |
$Q_Page = '
|
568 |
<form method="POST" action="'.admin_url('admin-ajax.php?'.GOTMLS_set_nonce(__FUNCTION__."645")).(isset($_SERVER["QUERY_STRING"])&&strlen($_SERVER["QUERY_STRING"])?"&".$_SERVER["QUERY_STRING"]:"").'" target="GOTMLS_iFrame" name="GOTMLS_Form_clean"><input type="hidden" id="GOTMLS_fixing" name="GOTMLS_fixing" value="1"><input type="hidden" name="action" value="GOTMLS_fix">';
|
569 |
if ($my_query->have_posts()) {
|
570 |
+
$Q_Page .= '<p id="quarantine_buttons" style="display: none;"><input id="repair_button" type="submit" value="'.__("Restore selected files from quarantine records",'gotmls').'" class="button-primary" onclick="if (confirm(\''.__("Are you sure you want to overwrite the previously cleaned files with the selected files in the Quarantine?",'gotmls').'\')) { setvalAllFiles(1); loadIframe(\'File Restoration Results\'); } else return false;" /><input id="delete_button" type="submit" class="button-primary" value="'.__("Delete selected quarantine records",'gotmls').'" onclick="if (confirm(\''.__("Are you sure you want to permanently delete the selected files in the Quarantine?",'gotmls').'\')) { setvalAllFiles(2); loadIframe(\'File Deletion Results\'); } else return false;" /></p><p><b>'.__("The following items highlighted in yellow had been found to contain malicious code, they have been cleaned and the malicious contents have been removed. A record of the infection has been saved here in the Quarantine for your review and could help with any future investigations. The code is safe here and you do not need to do anything further with these files.",'gotmls').'</b></p>
|
571 |
<p id="reclean_buttons" style="display: none;"><input id="reclean_button" type="submit" value="'.__("Re-clean re-infected files",'gotmls').'" class="button-primary" onclick="checkAllFiles(false); setvalAllFiles(1); loadIframe(\'Reinfected File Recleaning Results\');" /><b>'.__("The items highlighted in red have been found to be re-infected. The malicious code has returned and needs to be cleaned again.",'gotmls').'</b></p>
|
572 |
<ul name="found_Quarantine" id="found_Quarantine" class="GOTMLS_plugin known" style="background-color: #ccc; padding: 0;"><h3 style="margin: 8px 12px;">'.($my_query->post_count>1?'<input type="checkbox" onchange="checkAllFiles(this.checked); document.getElementById(\'quarantine_buttons\').style.display = \'block\';"> '.sprintf(__("Check all %d",'gotmls'),$my_query->post_count):"").__(" Items in Quarantine",'gotmls').'<span class="GOTMLS_date">'.__("Quarantined",'gotmls').'</span><span class="GOTMLS_date">'.__("Date Infected",'gotmls').'</span></h3>';
|
573 |
$root_path = implode(GOTMLS_slash(), array_slice(GOTMLS_explode_dir(__FILE__), 0, (2 + intval($GLOBALS["GOTMLS"]["tmp"]["settings_array"]["scan_level"])) * -1));
|
index.php
CHANGED
@@ -8,7 +8,7 @@ Author URI: http://wordpress.ieonly.com/category/my-plugins/anti-malware/
|
|
8 |
Contributors: scheeeli, gotmls
|
9 |
Donate link: https://gotmls.net/donate/
|
10 |
Description: This Anti-Virus/Anti-Malware plugin searches for Malware and other Virus like threats and vulnerabilities on your server and helps you remove them. It's always growing and changing to adapt to new threats so let me know if it's not working for you.
|
11 |
-
Version: 4.20.
|
12 |
*/
|
13 |
if (isset($_SERVER["DOCUMENT_ROOT"]) && ($SCRIPT_FILE = str_replace($_SERVER["DOCUMENT_ROOT"], "", (isset($_SERVER["SCRIPT_FILENAME"])?$_SERVER["SCRIPT_FILENAME"]:(isset($_SERVER["SCRIPT_NAME"])?$_SERVER["SCRIPT_NAME"]:"")))) && strlen($SCRIPT_FILE) > strlen("/".basename(__FILE__)) && substr(__FILE__, -1 * strlen($SCRIPT_FILE)) == substr($SCRIPT_FILE, -1 * strlen(__FILE__)) || !(function_exists("add_action") && function_exists("load_plugin_textdomain")))
|
14 |
include(dirname(__FILE__)."/safe-load/index.php");
|
@@ -18,7 +18,7 @@ else
|
|
18 |
* / /\ GOTMLS Main Plugin File
|
19 |
* / /:/ @package GOTMLS
|
20 |
* /__/::\
|
21 |
-
Copyright \__\/\:\__ © 2012-
|
22 |
* \ \:\/\
|
23 |
* \__\::/ This program is free software; you can redistribute it
|
24 |
* ___ /__/:/ and/or modify it under the terms of the GNU General Public
|
@@ -402,8 +402,12 @@ function GOTMLS_Firewall_Options() {
|
|
402 |
$deny .= "\n</IfModule>";
|
403 |
if (count($GLOBALS["GOTMLS"]["tmp"]["apache"]) > 1)
|
404 |
$errdiv = "<!-- ".$GLOBALS["GOTMLS"]["tmp"]["apache"][0]." -->";
|
405 |
-
else
|
406 |
-
$
|
|
|
|
|
|
|
|
|
407 |
$patch_action = $lt.'form method="POST" name="GOTMLS_Form_XMLRPC_patch"'.$gt.$lt.'input type="hidden" name="'.str_replace('=', '" value="', GOTMLS_set_nonce(__FUNCTION__."1159")).'"'.$gt.$lt.'script'.$gt."\nfunction setFirewall(opt, val) {\n\tif (autoUpdateDownloadGIF = document.getElementById('fw_opt'))\n\t\tautoUpdateDownloadGIF.value = opt;\n\tif (autoUpdateDownloadGIF = document.getElementById('fw_val'))\n\t\tautoUpdateDownloadGIF.value = val;\n}\nfunction testComplete() {\nif (autoUpdateDownloadGIF = document.getElementById('autoUpdateDownload'))\n\tdonationAmount = autoUpdateDownloadGIF.src.replace(/^.+\?/,'');\nif ((autoUpdateDownloadGIF.src == donationAmount) || donationAmount=='0') {\n\tif (patch_searching_div = document.getElementById('GOTMLS_XMLRPC_patch_searching')) {\n\t\tif (autoUpdateDownloadGIF.src == donationAmount)\n\t\t\tpatch_searching_div.innerHTML = '<span style=\"color: #F00;\">".GOTMLS_strip4java(__("You must register and donate to use this feature!",'gotmls'))."</span>';\n\t\telse\n\t\t\tpatch_searching_div.innerHTML = '<span style=\"color: #F00;\">".GOTMLS_strip4java(__("This feature is available to those who have donated!",'gotmls'))."</span>';\n\t}\n} else {\n\tshowhide('GOTMLS_XMLRPC_patch_searching');\n\tshowhide('GOTMLS_XMLRPC_patch_button', true);\n}\n}\nwindow.onload=testComplete;\n$lt/script$gt$lt".'div style="padding: 0 30px;"'.$gt.$lt.'input type="hidden" name="GOTMLS_XMLRPC_patching" value="';
|
408 |
$patch_found = false;
|
409 |
$head = str_replace(array('|<Files[^>]+', '(.+?)', '\\s*(', '\\s*)*|is'), array("<Files ", "$deny\n", "\n", "\n"), $find);
|
@@ -637,7 +641,7 @@ function GOTMLS_ajax_load_update() {
|
|
637 |
die(GOTMLS_Invalid_Nonce("Nonce Error: "));
|
638 |
if (is_array($GOTMLS_definitions_versions) && count($GOTMLS_definitions_versions) && (strlen($new_ver = trim(array_pop($GOTMLS_definitions_versions))) == 5) && $saved) {
|
639 |
$innerHTML .= "<li style=\\\"color: #0C0\\\">New Definition Updates Installed.</li>";
|
640 |
-
$finJS .= "\nif (foundUpdates = document.getElementById('GOTMLS_definitions_date')) foundUpdates.innerHTML = '$new_ver';";
|
641 |
} elseif (is_array($GOTnew_definitions) && count($GOTnew_definitions))
|
642 |
$finJS .= "\nalert('Definition update $new_ver could not be saved because update_option Failed! (saved=".($saved?"TRUE":"FALSE").") $debug');";
|
643 |
if (isset($_REQUEST["UPDATE_core"]) && ($_REQUEST["UPDATE_core"] == GOTMLS_wp_version) && isset($GLOBALS["GOTMLS"]["tmp"]["definitions_array"]["wp_core"][GOTMLS_wp_version])) {
|
8 |
Contributors: scheeeli, gotmls
|
9 |
Donate link: https://gotmls.net/donate/
|
10 |
Description: This Anti-Virus/Anti-Malware plugin searches for Malware and other Virus like threats and vulnerabilities on your server and helps you remove them. It's always growing and changing to adapt to new threats so let me know if it's not working for you.
|
11 |
+
Version: 4.20.92
|
12 |
*/
|
13 |
if (isset($_SERVER["DOCUMENT_ROOT"]) && ($SCRIPT_FILE = str_replace($_SERVER["DOCUMENT_ROOT"], "", (isset($_SERVER["SCRIPT_FILENAME"])?$_SERVER["SCRIPT_FILENAME"]:(isset($_SERVER["SCRIPT_NAME"])?$_SERVER["SCRIPT_NAME"]:"")))) && strlen($SCRIPT_FILE) > strlen("/".basename(__FILE__)) && substr(__FILE__, -1 * strlen($SCRIPT_FILE)) == substr($SCRIPT_FILE, -1 * strlen(__FILE__)) || !(function_exists("add_action") && function_exists("load_plugin_textdomain")))
|
14 |
include(dirname(__FILE__)."/safe-load/index.php");
|
18 |
* / /\ GOTMLS Main Plugin File
|
19 |
* / /:/ @package GOTMLS
|
20 |
* /__/::\
|
21 |
+
Copyright \__\/\:\__ © 2012-2021 Eli Scheetz (email: eli@gotmls.net)
|
22 |
* \ \:\/\
|
23 |
* \__\::/ This program is free software; you can redistribute it
|
24 |
* ___ /__/:/ and/or modify it under the terms of the GNU General Public
|
402 |
$deny .= "\n</IfModule>";
|
403 |
if (count($GLOBALS["GOTMLS"]["tmp"]["apache"]) > 1)
|
404 |
$errdiv = "<!-- ".$GLOBALS["GOTMLS"]["tmp"]["apache"][0]." -->";
|
405 |
+
else {
|
406 |
+
if (isset($GLOBALS["GOTMLS"]["tmp"]["apache"][0]) && (strtolower(substr($GLOBALS["GOTMLS"]["tmp"]["apache"][0]."123456", 0, 6)) == "apache"))
|
407 |
+
$errdiv = "<!-- ".$GLOBALS["GOTMLS"]["tmp"]["apache"][0]." -->";
|
408 |
+
else
|
409 |
+
$errdiv = "<div class='error'>".__('Unable to find Apache on this server, this patch work on Apache servers!','gotmls')."</div>";
|
410 |
+
}
|
411 |
$patch_action = $lt.'form method="POST" name="GOTMLS_Form_XMLRPC_patch"'.$gt.$lt.'input type="hidden" name="'.str_replace('=', '" value="', GOTMLS_set_nonce(__FUNCTION__."1159")).'"'.$gt.$lt.'script'.$gt."\nfunction setFirewall(opt, val) {\n\tif (autoUpdateDownloadGIF = document.getElementById('fw_opt'))\n\t\tautoUpdateDownloadGIF.value = opt;\n\tif (autoUpdateDownloadGIF = document.getElementById('fw_val'))\n\t\tautoUpdateDownloadGIF.value = val;\n}\nfunction testComplete() {\nif (autoUpdateDownloadGIF = document.getElementById('autoUpdateDownload'))\n\tdonationAmount = autoUpdateDownloadGIF.src.replace(/^.+\?/,'');\nif ((autoUpdateDownloadGIF.src == donationAmount) || donationAmount=='0') {\n\tif (patch_searching_div = document.getElementById('GOTMLS_XMLRPC_patch_searching')) {\n\t\tif (autoUpdateDownloadGIF.src == donationAmount)\n\t\t\tpatch_searching_div.innerHTML = '<span style=\"color: #F00;\">".GOTMLS_strip4java(__("You must register and donate to use this feature!",'gotmls'))."</span>';\n\t\telse\n\t\t\tpatch_searching_div.innerHTML = '<span style=\"color: #F00;\">".GOTMLS_strip4java(__("This feature is available to those who have donated!",'gotmls'))."</span>';\n\t}\n} else {\n\tshowhide('GOTMLS_XMLRPC_patch_searching');\n\tshowhide('GOTMLS_XMLRPC_patch_button', true);\n}\n}\nwindow.onload=testComplete;\n$lt/script$gt$lt".'div style="padding: 0 30px;"'.$gt.$lt.'input type="hidden" name="GOTMLS_XMLRPC_patching" value="';
|
412 |
$patch_found = false;
|
413 |
$head = str_replace(array('|<Files[^>]+', '(.+?)', '\\s*(', '\\s*)*|is'), array("<Files ", "$deny\n", "\n", "\n"), $find);
|
641 |
die(GOTMLS_Invalid_Nonce("Nonce Error: "));
|
642 |
if (is_array($GOTMLS_definitions_versions) && count($GOTMLS_definitions_versions) && (strlen($new_ver = trim(array_pop($GOTMLS_definitions_versions))) == 5) && $saved) {
|
643 |
$innerHTML .= "<li style=\\\"color: #0C0\\\">New Definition Updates Installed.</li>";
|
644 |
+
$finJS .= "\nif (foundUpdates = document.getElementById('GOTMLS_definitions_date')) foundUpdates.innerHTML = '$new_ver';\nif (foundUpdates = document.getElementById('autoUpdateForm')) foundUpdates.style.display = 'none';";
|
645 |
} elseif (is_array($GOTnew_definitions) && count($GOTnew_definitions))
|
646 |
$finJS .= "\nalert('Definition update $new_ver could not be saved because update_option Failed! (saved=".($saved?"TRUE":"FALSE").") $debug');";
|
647 |
if (isset($_REQUEST["UPDATE_core"]) && ($_REQUEST["UPDATE_core"] == GOTMLS_wp_version) && isset($GLOBALS["GOTMLS"]["tmp"]["definitions_array"]["wp_core"][GOTMLS_wp_version])) {
|
languages/gotmls-de_DE.mo
ADDED
Binary file
|
languages/gotmls-de_DE.po
ADDED
@@ -0,0 +1,885 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Anti-Malware Security and Brute-Force Firewall - Stable (latest release) in German
|
2 |
+
# This file is distributed under the same license as the Plugins - Anti-Malware Security and Brute-Force Firewall - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-10-21 17:44:07+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: de\n"
|
12 |
+
"Project-Id-Version: Plugins - Anti-Malware Security and Brute-Force Firewall - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#: images/index.php:148
|
15 |
+
msgid "View Scan History"
|
16 |
+
msgstr "Scan-Verlauf sehen"
|
17 |
+
|
18 |
+
#: index.php:967 index.php:1127
|
19 |
+
msgid "Scan History"
|
20 |
+
msgstr "Scan-Verlauf"
|
21 |
+
|
22 |
+
#: index.php:937
|
23 |
+
msgid "Directory Scan Depth set to 0, no files will be scanned for this type of threat!"
|
24 |
+
msgstr "Verzeichnis-Scan-Tiefe auf 0 gesetzt, es werden keine Dateien nach dieser Art von Bedrohung durchsucht!"
|
25 |
+
|
26 |
+
#: index.php:786
|
27 |
+
msgid "How many directories deep to scan: -1 is infinite depth, 0 to skip the file scan completely."
|
28 |
+
msgstr "Wie viele Verzeichnisse tief gescannt werden soll: -1 ist unendlich tief, 0 um den Dateiscan komplett zu überspringen."
|
29 |
+
|
30 |
+
#: index.php:786
|
31 |
+
msgid "Directory Scan Depth:"
|
32 |
+
msgstr "Verzeichnis-Scan-Tiefe:"
|
33 |
+
|
34 |
+
#: index.php:784
|
35 |
+
msgid "The higher up in the directory hierarchy you start the more sub-directories get scanned (e.g. scanning the %s directory will also include the sub-directories wp-content and plugins within it)."
|
36 |
+
msgstr "Je weiter oben in der Verzeichnishierarchie du beginnst, desto mehr Unterverzeichnisse werden gescannt (z. B. werden beim Scannen des %s-Verzeichnisses auch die Unterverzeichnisse \"wp-content\" und \"plugins\" gescannt)."
|
37 |
+
|
38 |
+
#: index.php:755
|
39 |
+
msgid "Check for all threat types, if any of these are in red or otherwise unavailable then please download the latest definition updates."
|
40 |
+
msgstr "Suche nach allen Bedrohungstypen. Wenn eine dieser Bedrohungen rot markiert oder anderweitig nicht verfügbar ist, lade bitte die neuesten Definitions-Updates herunter."
|
41 |
+
|
42 |
+
#: images/index.php:1226
|
43 |
+
msgid "No Definitions for DB Injections!"
|
44 |
+
msgstr "Keine Definitionen für DB-Injektionen!"
|
45 |
+
|
46 |
+
#: index.php:1569
|
47 |
+
msgid "Re-Starting Encoded Database Scan ..."
|
48 |
+
msgstr "Neustart des verschlüsselten Datenbank-Scans..."
|
49 |
+
|
50 |
+
#: index.php:1545
|
51 |
+
msgid "Re-Starting Database Scan ..."
|
52 |
+
msgstr "Neustart des Datenbank-Scans..."
|
53 |
+
|
54 |
+
#: index.php:822
|
55 |
+
msgid "Scan/Read Errors"
|
56 |
+
msgstr "Scan/Lese-Fehler"
|
57 |
+
|
58 |
+
#: index.php:603
|
59 |
+
msgid "definitions_array not set!"
|
60 |
+
msgstr "definitions_array nicht festgelegt!"
|
61 |
+
|
62 |
+
#: images/index.php:220
|
63 |
+
msgid "Refresh and try again?"
|
64 |
+
msgstr "Neu Laden und erneut versuchen?"
|
65 |
+
|
66 |
+
#: images/index.php:591 images/index.php:593
|
67 |
+
msgid "View Option Record: "
|
68 |
+
msgstr "Optionsdatensatz anzeigen:"
|
69 |
+
|
70 |
+
#: images/index.php:1202
|
71 |
+
msgid "This record no longer exists."
|
72 |
+
msgstr "Dieser Datensatz existiert nicht mehr."
|
73 |
+
|
74 |
+
#: images/index.php:1145
|
75 |
+
msgid "Are you sure you want to delete this option?"
|
76 |
+
msgstr "Bist du sicher, dass du diese Option löschen möchtest?"
|
77 |
+
|
78 |
+
#: index.php:382
|
79 |
+
msgid "Out of Date"
|
80 |
+
msgstr "Veraltet"
|
81 |
+
|
82 |
+
#: index.php:381
|
83 |
+
msgid "Upgrade Patch"
|
84 |
+
msgstr "Upgrade-Patch"
|
85 |
+
|
86 |
+
#: index.php:376
|
87 |
+
msgid "Enabled"
|
88 |
+
msgstr "Aktiviert"
|
89 |
+
|
90 |
+
#: index.php:375
|
91 |
+
msgid "Uninstall Patch"
|
92 |
+
msgstr "Patch deinstallieren"
|
93 |
+
|
94 |
+
#: index.php:371
|
95 |
+
msgid "Install Patch"
|
96 |
+
msgstr "Patch installieren"
|
97 |
+
|
98 |
+
#: index.php:370
|
99 |
+
msgid "Not Installed"
|
100 |
+
msgstr "Nicht installiert"
|
101 |
+
|
102 |
+
#: index.php:369
|
103 |
+
msgid "(This patch only works under Apache servers and requires mod_rewrite and session_start to be active and functional)"
|
104 |
+
msgstr "(Dieser Patch funktioniert nur bei Apache-Servern und erfordert, dass mod_rewrite und session_start aktiv und funktionsfähig sind.)"
|
105 |
+
|
106 |
+
#: images/index.php:595 images/index.php:606
|
107 |
+
msgid "View Quarantine Record"
|
108 |
+
msgstr "Quarantäne-Datensatz anzeigen"
|
109 |
+
|
110 |
+
#: images/index.php:587
|
111 |
+
msgid "View current/live version"
|
112 |
+
msgstr "Aktuelle/Live-Version anzeigen"
|
113 |
+
|
114 |
+
#: images/index.php:579
|
115 |
+
msgid "The current/live file is missing or deleted"
|
116 |
+
msgstr "Die Aktuelle/Live-Datei fehlt oder wird gelöscht"
|
117 |
+
|
118 |
+
#: images/index.php:571
|
119 |
+
msgid "The items highlighted in red have been found to be re-infected. The malicious code has returned and needs to be cleaned again."
|
120 |
+
msgstr "Die rot markierten Elemente wurden erneut infiziert. Der bösartige Code ist zurückgekehrt und muss erneut gesäubert werden."
|
121 |
+
|
122 |
+
#: images/index.php:571
|
123 |
+
msgid "Re-clean re-infected files"
|
124 |
+
msgstr "Erneut infizierte Dateien erneut säubern"
|
125 |
+
|
126 |
+
#: images/index.php:570
|
127 |
+
msgid "The following items highlighted in yellow had been found to contain malicious code, they have been cleaned and the malicious contents have been removed. A record of the infection has been saved here in the Quarantine for your review and could help with any future investigations. The code is safe here and you do not need to do anything further with these files."
|
128 |
+
msgstr "Die folgenden gelb markierten Elemente enthielten bösartigen Code, sie wurden gesäubert und die schädlichen Inhalte wurden entfernt. Eine Aufzeichnung der Infektion wurde hier in der Quarantäne für deine Überprüfung gespeichert und könnte bei zukünftigen Untersuchungen helfen. Der Code ist hier sicher und du musst mit diesen Dateien nichts weiter tun."
|
129 |
+
|
130 |
+
#: index.php:150
|
131 |
+
msgid "Note: The pre-populated email below is NOT the address this site is currently registered under!"
|
132 |
+
msgstr "Hinweis: Die vorausgefüllte E-Mail unten ist NICHT die Adresse unter der diese Seite registriert ist!"
|
133 |
+
|
134 |
+
#: images/index.php:1584
|
135 |
+
msgid "Examine Current Content"
|
136 |
+
msgstr "Überprüfen des aktuellen Inhalts"
|
137 |
+
|
138 |
+
#: images/index.php:70
|
139 |
+
msgid "Failed to encode HTML characters!"
|
140 |
+
msgstr "HTML-Zeichen konnten nicht codiert werden!"
|
141 |
+
|
142 |
+
#: images/index.php:55
|
143 |
+
msgid "Failed to encode HTML entities!"
|
144 |
+
msgstr "HTML-Entitäten konnten nicht codiert werden!"
|
145 |
+
|
146 |
+
#: images/index.php:1582
|
147 |
+
msgid "Examine Quarantined Content"
|
148 |
+
msgstr "Untersuchen von Quarantäne-Inhalten"
|
149 |
+
|
150 |
+
#: images/index.php:1250 images/index.php:1272 images/index.php:1283
|
151 |
+
msgid "View DB Injection"
|
152 |
+
msgstr "Datenbankinjektion ansehen"
|
153 |
+
|
154 |
+
#: images/index.php:1145 images/index.php:1199
|
155 |
+
msgid "Record Details:"
|
156 |
+
msgstr "Datensatz-Details:"
|
157 |
+
|
158 |
+
#: images/index.php:1199
|
159 |
+
msgid "Are you sure you want to delete this revision?"
|
160 |
+
msgstr "Bist du sicher, dass du diese Revision löschen möchtest?"
|
161 |
+
|
162 |
+
#: images/index.php:1138 images/index.php:1192
|
163 |
+
msgid "Update Failed!"
|
164 |
+
msgstr "Aktualisierung fehlgeschlagen!"
|
165 |
+
|
166 |
+
#: images/index.php:82
|
167 |
+
msgid "Database Injections"
|
168 |
+
msgstr "Datenbankinjektionen"
|
169 |
+
|
170 |
+
#: index.php:1528
|
171 |
+
msgid "Are you sure you want to delete the record of this file from the quarantine?"
|
172 |
+
msgstr "Möchtest du den Datensatz dieser Datei wirklich aus der Quarantäne löschen?"
|
173 |
+
|
174 |
+
#: index.php:1451
|
175 |
+
msgid "File %s not found!"
|
176 |
+
msgstr "Datei %s nicht gefunden!"
|
177 |
+
|
178 |
+
#: index.php:1413
|
179 |
+
msgid "Restoration Aborted, post_content was modified outside of this quarantine!<pre>"
|
180 |
+
msgstr "Wiederherstellung abgebrochen, post_content wurde außerhalb dieser Quarantäne geändert! <pre>"
|
181 |
+
|
182 |
+
#: index.php:1409
|
183 |
+
msgid "Restoration Failed!"
|
184 |
+
msgstr "Wiederherstellung fehlgeschlagen!"
|
185 |
+
|
186 |
+
#: index.php:1390
|
187 |
+
msgid "Failed to remove!"
|
188 |
+
msgstr "Fehler beim Entfernen!"
|
189 |
+
|
190 |
+
#: index.php:141
|
191 |
+
msgid "Delete ALL definitions!"
|
192 |
+
msgstr "ALLE Definitionen löschen!"
|
193 |
+
|
194 |
+
#: images/index.php:693
|
195 |
+
msgid "Are you sure you want to restore this file from the quarantine?"
|
196 |
+
msgstr "Möchtest du diese Datei wirklich aus der Quarantäne wiederherstellen?"
|
197 |
+
|
198 |
+
#: index.php:519
|
199 |
+
msgid " However, if you would like to keep this rule enabled you should at least Whitelist your IP."
|
200 |
+
msgstr " Wenn du diese Regel jedoch aktiviert lassen möchtest, solltest du zumindest deine IP auf die Freigabeliste setzen."
|
201 |
+
|
202 |
+
#: index.php:519
|
203 |
+
msgid "Whitelist your IP"
|
204 |
+
msgstr "IP auf die Whitelist setzen"
|
205 |
+
|
206 |
+
#: index.php:517
|
207 |
+
msgid " However, your current IP has been Whitelisted so you could probably keep this rule enabled if you really want to."
|
208 |
+
msgstr " Deine aktuelle IP wurde auf die Freigabeliste gesetzt, sodass du diese Regel wahrscheinlich aktiviert lassen kannst, wenn du das wirklich möchtest."
|
209 |
+
|
210 |
+
#: index.php:514
|
211 |
+
msgid "The Conflicting Firewall Rule (WP_firewall_exclude_terms) activated by the WP Firewall 2 plugin has been shown to interfere with the Definition Updates and WP Core File Scans in my Anti-Malware plugin. I recommend that you disable this rule in the WP Firewall 2 plugin."
|
212 |
+
msgstr "Es hat sich gezeigt, dass die vom WP Firewall 2-Plugin aktivierte widersprüchliche Firewall-Regel (WP_firewall_exclude_terms) die Definitionsaktualisierungen und WP-Kerndatei-Scans in meinem Anti-Malware-Plugin stört. Ich empfehle, diese Regel im WP Firewall 2-Plugin zu deaktivieren."
|
213 |
+
|
214 |
+
#: index.php:513
|
215 |
+
msgid "Disable this Rule"
|
216 |
+
msgstr "Diese Regel deaktivieren"
|
217 |
+
|
218 |
+
#: images/index.php:617
|
219 |
+
msgid "Clear %s Deleted Files from the Trash"
|
220 |
+
msgstr "Lösche %s gelöschte Dateien endgültig aus dem Papierkorb"
|
221 |
+
|
222 |
+
#: images/index.php:572 images/index.php:700
|
223 |
+
msgid "Date Infected"
|
224 |
+
msgstr "Infektionsdatum"
|
225 |
+
|
226 |
+
#: images/index.php:572 images/index.php:700
|
227 |
+
msgid "Quarantined"
|
228 |
+
msgstr "Unter Quarantäne gestellt"
|
229 |
+
|
230 |
+
#: index.php:130
|
231 |
+
msgid "Get FREE Key!"
|
232 |
+
msgstr "KOSTENLOSEN Key erhalten!"
|
233 |
+
|
234 |
+
#. Plugin Name of the plugin
|
235 |
+
msgid "Anti-Malware Security and Brute-Force Firewall"
|
236 |
+
msgstr "Anti-Malware-Sicherheit und Brute-Force-Firewall"
|
237 |
+
|
238 |
+
#: index.php:523
|
239 |
+
msgid "Firewall Options"
|
240 |
+
msgstr "Firewall-Optionen"
|
241 |
+
|
242 |
+
#: index.php:495
|
243 |
+
msgid "Your username is \"admin\", this is the most commonly guessed username by hackers and brute-force scripts. It is highly recommended that you change your username immediately."
|
244 |
+
msgstr "Dein Benutzername ist \"admin\", dies ist der am häufigsten von Hackern und Brute-Force-Skripten erratene Benutzername. Es wird dringend empfohlen, deinen Benutzernamen sofort zu ändern."
|
245 |
+
|
246 |
+
#: index.php:1125
|
247 |
+
msgid "Starting a Complete Scan requires a valid Nonce Token. No valid Nonce Token was found at this time, either because the token have expired or because the data was invalid. Please try re-submitting the form above."
|
248 |
+
msgstr "Das Starten eines vollständigen Scans erfordert ein gültiges Nonce-Token. Zu diesem Zeitpunkt wurde kein gültiges Nonce-Token gefunden, entweder weil das Token abgelaufen ist oder weil die Daten ungültig waren. Bitte versuche, das obige Formular erneut zu senden."
|
249 |
+
|
250 |
+
#: index.php:966
|
251 |
+
msgid "Saving these settings requires a valid Nonce Token. No valid Nonce Token was found at this time, either because the token have expired or because the data was invalid. Please try re-submitting the form above."
|
252 |
+
msgstr "Das Speichern dieser Einstellungen erfordert ein gültiges Nonce-Token. Zu diesem Zeitpunkt wurde kein gültiges Nonce-Token gefunden, entweder weil das Token abgelaufen ist oder weil die Daten ungültig waren. Bitte versuche, das obige Formular erneut zu senden."
|
253 |
+
|
254 |
+
#: images/index.php:1066
|
255 |
+
msgid "Failed: "
|
256 |
+
msgstr "Fehlgeschlagen:"
|
257 |
+
|
258 |
+
#: images/index.php:220
|
259 |
+
msgid "Invalid or expired Nonce Token!"
|
260 |
+
msgstr "Ungültiges oder abgelaufenes Nonce-Token!"
|
261 |
+
|
262 |
+
#: index.php:809
|
263 |
+
msgid "Save Settings"
|
264 |
+
msgstr "Einstellungen speichern"
|
265 |
+
|
266 |
+
#. Author URI of the plugin
|
267 |
+
msgid "http://wordpress.ieonly.com/category/my-plugins/anti-malware/"
|
268 |
+
msgstr "http://wordpress.ieonly.com/category/my-plugins/anti-malware/"
|
269 |
+
|
270 |
+
#. Author of the plugin
|
271 |
+
msgid "Eli Scheetz"
|
272 |
+
msgstr "Eli Scheetz"
|
273 |
+
|
274 |
+
#. Description of the plugin
|
275 |
+
msgid "This Anti-Virus/Anti-Malware plugin searches for Malware and other Virus like threats and vulnerabilities on your server and helps you remove them. It's always growing and changing to adapt to new threats so let me know if it's not working for you."
|
276 |
+
msgstr "Dieses Anti-Virus/Anti-Malware-Plugin sucht auf deinem Server nach Malware und anderen virusähnlichen Bedrohungen und Schwachstellen und hilft, diese zu entfernen. Es wächst und ändert sich ständig, um sich an neue Bedrohungen anzupassen. Lass mich wissen, wenn es bei dir nicht funktioniert."
|
277 |
+
|
278 |
+
#. Plugin URI of the plugin
|
279 |
+
msgid "https://gotmls.net/"
|
280 |
+
msgstr "https://gotmls.net/"
|
281 |
+
|
282 |
+
#: safe-load/trace.php:18
|
283 |
+
msgid ": Headers sent by %1$s on line %2$s."
|
284 |
+
msgstr ": Header gesendet von %1$s auf Zeile %2$s."
|
285 |
+
|
286 |
+
#: index.php:1607
|
287 |
+
msgid "Potential threats in file:"
|
288 |
+
msgstr "Potenzielle Bedrohungen in der Datei:"
|
289 |
+
|
290 |
+
#: index.php:1607
|
291 |
+
msgid "Are you sure this file is not infected and you want to ignore it in future scans?"
|
292 |
+
msgstr "Bist du sicher, dass diese Datei nicht infiziert ist und du sie bei zukünftigen Scans ignorieren möchtest?"
|
293 |
+
|
294 |
+
#: index.php:1609
|
295 |
+
msgid "The file %s does not exist, it must have already been deleted."
|
296 |
+
msgstr "Die Datei %s ist nicht vorhanden, sie muss bereits gelöscht worden sein."
|
297 |
+
|
298 |
+
#: index.php:1530
|
299 |
+
msgid "This record no longer exists in the quarantine."
|
300 |
+
msgstr "Dieser Datensatz existiert nicht mehr in der Quarantäne."
|
301 |
+
|
302 |
+
#: index.php:1528 images/index.php:693
|
303 |
+
msgid "File Details:"
|
304 |
+
msgstr "Datei-Details:"
|
305 |
+
|
306 |
+
#: index.php:1458
|
307 |
+
msgid "Nothing Selected to be Changed!"
|
308 |
+
msgstr "Nichts ausgewählt, um geändert zu werden!"
|
309 |
+
|
310 |
+
#: index.php:1456
|
311 |
+
msgid "Never mind, it worked!"
|
312 |
+
msgstr "Schon gut, es hat funktioniert!"
|
313 |
+
|
314 |
+
#: index.php:1456
|
315 |
+
msgid "Because some changes were made we need to check to make sure it did not break your site. If this stays Red and the frame below does not load please <a %s>revert the changes</a> made during this automated fix process."
|
316 |
+
msgstr "Da einige Änderungen vorgenommen wurden, müssen wir überprüfen, ob deine Website dadurch beschädigt wurde. Wenn dies rot bleibt und der unten stehende Frame nicht geladen wird, klicke auf <a %s>Änderungen rückgängig machen</a>, die während dieses automatischen Korrekturvorgangs vorgenommen wurden."
|
317 |
+
|
318 |
+
#: index.php:1417 index.php:1426
|
319 |
+
msgid "Restore Failed!"
|
320 |
+
msgstr "Wiederherstellung fehlgeschlagen!"
|
321 |
+
|
322 |
+
#: index.php:1405 index.php:1423
|
323 |
+
msgid "Complete!"
|
324 |
+
msgstr "Fertig!"
|
325 |
+
|
326 |
+
#: images/index.php:1128 images/index.php:1180
|
327 |
+
msgid "Failed to delete!"
|
328 |
+
msgstr "Konnte nicht gelöscht werden!"
|
329 |
+
|
330 |
+
#: index.php:1387 index.php:1458 index.php:1460 images/index.php:1125
|
331 |
+
#: images/index.php:1177
|
332 |
+
msgid "Done!"
|
333 |
+
msgstr "Fertig!"
|
334 |
+
|
335 |
+
#: index.php:1336
|
336 |
+
msgid "Failed to empty the trash."
|
337 |
+
msgstr "Der Papierkorb konnte nicht geleert werden."
|
338 |
+
|
339 |
+
#: index.php:1323
|
340 |
+
msgid "saved."
|
341 |
+
msgstr "Gespeichert."
|
342 |
+
|
343 |
+
#: index.php:1319
|
344 |
+
msgid "New position"
|
345 |
+
msgstr "Neue Position"
|
346 |
+
|
347 |
+
#: index.php:1297
|
348 |
+
msgid "Default position"
|
349 |
+
msgstr "Standard-Position"
|
350 |
+
|
351 |
+
#: index.php:495
|
352 |
+
msgid "Change your username:"
|
353 |
+
msgstr "Deinen Benutzernamen ändern:"
|
354 |
+
|
355 |
+
#: index.php:494
|
356 |
+
msgid "Your new username must be at least 3 characters and can only contain "%s". Please try again."
|
357 |
+
msgstr "Dein neuer Nutzername muss mindestens 3 Zeichen lang sein und darf nur "%s" enthalten. Bitte versuche es erneut."
|
358 |
+
|
359 |
+
#: index.php:491
|
360 |
+
msgid "SQL Error changing username: %s. Please try again later."
|
361 |
+
msgstr "SQL-Fehler beim Ändern des Benutzernamens: %s. Bitte versuche es später erneut."
|
362 |
+
|
363 |
+
#: index.php:489
|
364 |
+
msgid "You username has been change to %s. Don't forget to use your new username when you login again."
|
365 |
+
msgstr "Dein Benutzername wurde in %s geändert. Vergiss nicht, deinen neuen Benutzernamen zu verwenden, wenn du dich erneut anmeldest."
|
366 |
+
|
367 |
+
#: index.php:482
|
368 |
+
msgid " For more information on Brute-Force attack prevention and the WordPress wp-login-php file "
|
369 |
+
msgstr "Weitere Informationen zur Verhinderung von Brute-Force-Angriffen und der WordPress-Datei wp-login-php"
|
370 |
+
|
371 |
+
#: index.php:482
|
372 |
+
msgid "Checking for session compatibility ..."
|
373 |
+
msgstr "Überprüfung der Sitzungskompatibilität..."
|
374 |
+
|
375 |
+
#: index.php:466
|
376 |
+
msgid "Removed Old Brute-Force Login Patch"
|
377 |
+
msgstr "Altes Brute-Force-Login-Patch entfernt"
|
378 |
+
|
379 |
+
#: index.php:463
|
380 |
+
msgid "wp-config.php Not Found!"
|
381 |
+
msgstr "wp-config.php nicht gefunden!"
|
382 |
+
|
383 |
+
#: index.php:461
|
384 |
+
msgid "wp-config.php Not Readable!"
|
385 |
+
msgstr "wp-config.php nicht lesbar!"
|
386 |
+
|
387 |
+
#: index.php:459
|
388 |
+
msgid "Failed to install Brute-Force Protection (wp-config.php %s)"
|
389 |
+
msgstr "Brute-Force-Schutz konnte nicht installiert werden (wp-config.php %s)"
|
390 |
+
|
391 |
+
#: index.php:456
|
392 |
+
msgid "Installed Brute-Force Protection"
|
393 |
+
msgstr "Brute-Force-Schutz installiert"
|
394 |
+
|
395 |
+
#: index.php:450
|
396 |
+
msgid "Upgraded Brute-Force Protection"
|
397 |
+
msgstr "Brute-Force-Schutz aktualisiert"
|
398 |
+
|
399 |
+
#: index.php:445
|
400 |
+
msgid "Removed Brute-Force Protection"
|
401 |
+
msgstr "Brute-Force-Schutz entfernt"
|
402 |
+
|
403 |
+
#: index.php:431
|
404 |
+
msgid "Most WordPress sites do not use the XMLRPC features and hack attempts on the xmlrpc.php file are more common then ever before. Even if there are no vulnerabilities for hackers to exploit, these attempts can cause slowness or downtime similar to a DDoS attack. This patch automatically blocks all external access to the xmlrpc.php file."
|
405 |
+
msgstr "Die meisten WordPress-Seiten verwenden die XMLRPC-Funktionen nicht und Hackversuche auf die Datei xmlrpc.php sind häufiger als je zuvor. Auch wenn Hacker keine Schwachstellen ausnutzen können, können diese Versuche zu Verlangsamung oder Ausfallzeiten ähnlich einem DDoS-Angriff führen. Dieser Patch blockiert automatisch alle externen Zugriffe auf die Datei xmlrpc.php."
|
406 |
+
|
407 |
+
#: index.php:427
|
408 |
+
msgid "Failed to install XMLRPC Protection [.htaccess %s]"
|
409 |
+
msgstr "Fehler beim Installieren des XMLRPC-Schutzes [.htaccess %s]"
|
410 |
+
|
411 |
+
#: index.php:419
|
412 |
+
msgid "Failed to remove XMLRPC Protection [.htaccess %s]"
|
413 |
+
msgstr "Fehler beim Entfernen des XMLRPC-Schutzes [.htaccess %s]"
|
414 |
+
|
415 |
+
#: index.php:380
|
416 |
+
msgid "Your WordPress Login page has the old version of my brute-force protection installed. Upgrade this patch to improve the protection on the WordPress Login page and preserve the integrity of your WordPress core files."
|
417 |
+
msgstr "Auf deiner WordPress-Anmeldeseite ist die alte Version meines Brute-Force-Schutzes installiert. Aktualisiere diesen Patch, um den Schutz auf der WordPress-Anmeldeseite zu verbessern und die Integrität deiner WordPress-Core-Dateien zu bewahren."
|
418 |
+
|
419 |
+
#: index.php:374
|
420 |
+
msgid "Your WordPress site has the current version of my brute-force Login protection installed."
|
421 |
+
msgstr "Auf deiner WordPress-Website ist die aktuelle Version meines Brute-Force-Login-Schutzes installiert."
|
422 |
+
|
423 |
+
#: index.php:369
|
424 |
+
msgid "Your WordPress Login page is susceptible to a brute-force attack (just like any other login page). These types of attacks are becoming more prevalent these days and can sometimes cause your server to become slow or unresponsive, even if the attacks do not succeed in gaining access to your site. Applying this patch will block access to the WordPress Login page whenever this type of attack is detected."
|
425 |
+
msgstr "Deine WordPress-Anmeldeseite ist anfällig für Brute-Force-Angriffe (wie jede andere Anmeldeseite). Diese Art von Angriff wird heutzutage immer häufiger und kann manchmal dazu führen, dass dein Server langsam wird oder nicht mehr reagiert, selbst wenn es dem Angriff nicht gelingt, Zugriff auf deine Website zu erlangen. Durch die Anwendung dieses Patches wird der Zugriff auf die WordPress-Anmeldeseite blockiert, wenn diese Art von Angriff erkannt wird."
|
426 |
+
|
427 |
+
#: index.php:1057
|
428 |
+
msgid "Starting Scan ..."
|
429 |
+
msgstr "Scan wird gestartet..."
|
430 |
+
|
431 |
+
#: index.php:1055
|
432 |
+
msgid "Completed!"
|
433 |
+
msgstr "Fertiggestellt!"
|
434 |
+
|
435 |
+
#: index.php:996
|
436 |
+
msgid "The Quick Scan was unable to finish because of a shortage of memory or a problem accessing a file. Please try using the Complete Scan, it is slower but it will handle these errors better and continue scanning the rest of the files."
|
437 |
+
msgstr "Der Schnell-Scan konnte aufgrund eines Arbeitsspeichermangels oder eines Problems beim Zugriff auf eine Datei nicht beendet werden. Bitte versuche es mit dem vollständigen Scan, er ist langsamer, aber er wird diese Fehler besser verarbeiten und den Rest der Dateien weiter scannen."
|
438 |
+
|
439 |
+
#: index.php:1020
|
440 |
+
msgid "Not flushing OB Handlers: %s"
|
441 |
+
msgstr "OB-Handlers entleeren nicht: %s"
|
442 |
+
|
443 |
+
#: index.php:1019
|
444 |
+
msgid "Scan Details:"
|
445 |
+
msgstr "Scan-Details:"
|
446 |
+
|
447 |
+
#: index.php:482 index.php:1015
|
448 |
+
msgid "read my blog"
|
449 |
+
msgstr "lies meinen Blog"
|
450 |
+
|
451 |
+
#: index.php:1015
|
452 |
+
msgid "NOTE: We have detected changes to the WordPress Core files on your site. This could be an intentional modification or the malicious work of a hacker. We can restore these files to their original state to preserve the integrity of your original WordPress %s installation."
|
453 |
+
msgstr "HINWEIS: Wir haben Änderungen an den WordPress Core-Dateien auf deiner Website festgestellt. Dies kann eine absichtliche Änderung oder die böswillige Arbeit eines Hackers sein. Wir können diese Dateien in ihren ursprünglichen Zustand zurückversetzen, um die Integrität Ihrer ursprünglichen WordPress %s-Installation zu bewahren."
|
454 |
+
|
455 |
+
#: index.php:1015
|
456 |
+
msgid "NOTE: These are probably not malicious scripts (but it's a good place to start looking <u>IF</u> your site is infected and no Known Threats were found)."
|
457 |
+
msgstr "HINWEIS: Dies sind wahrscheinlich keine bösartigen Skripte (aber es ist ein guter Ausgangspunkt, um zu suchen, <u>WENN</u> deine Website infiziert ist und keine bekannten Bedrohungen gefunden wurden)."
|
458 |
+
|
459 |
+
#: index.php:939
|
460 |
+
msgid "You are not currently scanning for this type of threat!"
|
461 |
+
msgstr "Du suchst derzeit nicht nach dieser Art von Bedrohung!"
|
462 |
+
|
463 |
+
#: index.php:886
|
464 |
+
msgid "Scan Complete!"
|
465 |
+
msgstr "Scan abgeschlossen!"
|
466 |
+
|
467 |
+
#: index.php:854
|
468 |
+
msgid "WP-Login Updates"
|
469 |
+
msgstr "WP-Anmeldungsaktualisierungen"
|
470 |
+
|
471 |
+
#: index.php:822
|
472 |
+
msgid "Quarantined Files"
|
473 |
+
msgstr "Unter Quarantäne gestellte Dateien"
|
474 |
+
|
475 |
+
#: index.php:822
|
476 |
+
msgid "Skipped Files"
|
477 |
+
msgstr "Übersprungene Dateien"
|
478 |
+
|
479 |
+
#: index.php:822
|
480 |
+
msgid "Skipped Folders"
|
481 |
+
msgstr "Übersprungene Ordner"
|
482 |
+
|
483 |
+
#: index.php:822
|
484 |
+
msgid "Scanned Folders"
|
485 |
+
msgstr "Gescannte Ordner"
|
486 |
+
|
487 |
+
#: index.php:822
|
488 |
+
msgid "Selected Folders"
|
489 |
+
msgstr "Ausgewählte Ordner"
|
490 |
+
|
491 |
+
#: index.php:822
|
492 |
+
msgid "Scanned Files"
|
493 |
+
msgstr "Gescannte Dateien"
|
494 |
+
|
495 |
+
#: index.php:820
|
496 |
+
msgid "Another Plugin or Theme is using '%s' to handle output buffers. <br />This prevents actively outputing the buffer on-the-fly and could severely degrade the performance of this (and many other) Plugins. <br />Consider disabling caching and compression plugins (at least during the scanning process)."
|
497 |
+
msgstr "Ein anderes Plugin oder Theme verwendet '%s', um Ausgabepuffer zu verarbeiten. <br />Dies verhindert die aktive Ausgabe des Puffers im laufenden Betrieb und könnte die Leistung dieses (und vieler anderer) Plugins stark beeinträchtigen. <br />Erwäge Caching- und Komprimierungs-Plugins zu deaktivieren (zumindest während des Scanvorgangs)."
|
498 |
+
|
499 |
+
#: index.php:754
|
500 |
+
msgid "Run Complete Scan"
|
501 |
+
msgstr "Vollständigen Scan ausführen"
|
502 |
+
|
503 |
+
#: index.php:809
|
504 |
+
msgid "This feature is only available to registered users who have donated at a certain level."
|
505 |
+
msgstr "Diese Funktion steht nur registrierten Benutzern zur Verfügung, die in einem bestimmten Umfang gespendet haben."
|
506 |
+
|
507 |
+
#: index.php:809
|
508 |
+
msgid "Automatically Update Definitions:"
|
509 |
+
msgstr "Definitionen automatisch aktualisieren:"
|
510 |
+
|
511 |
+
#: index.php:808
|
512 |
+
msgid "a folder name or comma separated list of folder names to skip"
|
513 |
+
msgstr "ein Ordnername oder eine durch Kommas getrennte Liste von Ordnernamen, die übersprungen werden sollen"
|
514 |
+
|
515 |
+
#: index.php:808
|
516 |
+
msgid "Skip directories with the following names:"
|
517 |
+
msgstr "Verzeichnisse mit den folgenden Namen überspringen:"
|
518 |
+
|
519 |
+
#: index.php:808
|
520 |
+
msgid "a comma separated list of file extentions to skip"
|
521 |
+
msgstr "eine durch Kommas getrennte Liste von zu überspringenden Dateierweiterungen"
|
522 |
+
|
523 |
+
#: index.php:807
|
524 |
+
msgid "Skip files with the following extensions:"
|
525 |
+
msgstr "Dateien mit den folgenden Erweiterungen überspringen:"
|
526 |
+
|
527 |
+
#: index.php:802
|
528 |
+
msgid "For very advanced users only. Do not use this without talking to Eli first. If used incorrectly you could easily break your site."
|
529 |
+
msgstr "Nur für sehr fortgeschrittene Benutzer. Verwende dies nicht, ohne vorher mit Eli zu sprechen. Bei falscher Verwendung kann deine Website beschädigt werden."
|
530 |
+
|
531 |
+
#: index.php:802
|
532 |
+
msgid "Custom RegExp:"
|
533 |
+
msgstr "Benutzerdefinierte RegEx:"
|
534 |
+
|
535 |
+
#: index.php:784
|
536 |
+
msgid "What to scan:"
|
537 |
+
msgstr "Was gescannt werden soll:"
|
538 |
+
|
539 |
+
#: index.php:780
|
540 |
+
msgid "Download the new definitions (Right sidebar) to activate this feature."
|
541 |
+
msgstr "Lade die neuen Definitionen herunter (rechte Seitenleiste), um diese Funktion zu aktivieren."
|
542 |
+
|
543 |
+
#: index.php:780
|
544 |
+
msgid "Download Definition Updates to Use this feature"
|
545 |
+
msgstr "Lade Definitionsaktualisierungen herunter, um diese Funktion zu verwenden"
|
546 |
+
|
547 |
+
#: index.php:755
|
548 |
+
msgid "What to look for:"
|
549 |
+
msgstr "Wonach geschaut werden soll:"
|
550 |
+
|
551 |
+
#: index.php:747
|
552 |
+
msgid "Only Scan These Folders:"
|
553 |
+
msgstr "Nur diese Ordner scannen:"
|
554 |
+
|
555 |
+
#: index.php:350
|
556 |
+
msgid "White-lists"
|
557 |
+
msgstr "Freigabelisten"
|
558 |
+
|
559 |
+
#: images/index.php:613 images/index.php:721
|
560 |
+
msgid "No Items in Quarantine"
|
561 |
+
msgstr "Keine Elemente in Quarantäne"
|
562 |
+
|
563 |
+
#: images/index.php:572 images/index.php:700
|
564 |
+
msgid " Items in Quarantine"
|
565 |
+
msgstr "Elemente in Quarantäne"
|
566 |
+
|
567 |
+
#: images/index.php:572 images/index.php:700
|
568 |
+
msgid "Check all %d"
|
569 |
+
msgstr "Alle %d überprüfen"
|
570 |
+
|
571 |
+
#: images/index.php:570
|
572 |
+
msgid "Are you sure you want to permanently delete the selected files in the Quarantine?"
|
573 |
+
msgstr "Möchtest du die ausgewählten Dateien in der Quarantäne wirklich dauerhaft löschen?"
|
574 |
+
|
575 |
+
#: images/index.php:570
|
576 |
+
msgid "Delete selected files"
|
577 |
+
msgstr "Ausgewählte Dateien löschen"
|
578 |
+
|
579 |
+
#: images/index.php:570
|
580 |
+
msgid "Are you sure you want to overwrite the previously cleaned files with the selected files in the Quarantine?"
|
581 |
+
msgstr "Möchtest du die zuvor bereinigten Dateien wirklich mit den ausgewählten Dateien in der Quarantäne überschreiben?"
|
582 |
+
|
583 |
+
#: images/index.php:570
|
584 |
+
msgid "Restore selected files"
|
585 |
+
msgstr "Ausgewählte Dateien wiederherstellen"
|
586 |
+
|
587 |
+
#: index.php:333
|
588 |
+
msgid "# of files"
|
589 |
+
msgstr "Anzahl an Dateien"
|
590 |
+
|
591 |
+
#: index.php:333
|
592 |
+
msgid "WordPress Core files"
|
593 |
+
msgstr "WordPress-Core-Dateien"
|
594 |
+
|
595 |
+
#: index.php:323
|
596 |
+
msgid "Date Updated"
|
597 |
+
msgstr "Datum aktualisiert"
|
598 |
+
|
599 |
+
#: index.php:323
|
600 |
+
msgid "# of patterns"
|
601 |
+
msgstr "Musteranzahl"
|
602 |
+
|
603 |
+
#: index.php:323
|
604 |
+
msgid "Globally White-listed files"
|
605 |
+
msgstr "Global auf die Whitelist gesetzte Dateien"
|
606 |
+
|
607 |
+
#: index.php:316
|
608 |
+
msgid "No Scans have been logged"
|
609 |
+
msgstr "Es wurden keine Scans protokolliert"
|
610 |
+
|
611 |
+
#: index.php:274
|
612 |
+
msgid "Cleared %s records from the history."
|
613 |
+
msgstr "Aus dem Verlauf gelöschte %s Datensätze."
|
614 |
+
|
615 |
+
#: index.php:215
|
616 |
+
msgid "Resources & Links"
|
617 |
+
msgstr "Ressourcen und Links"
|
618 |
+
|
619 |
+
#: index.php:193
|
620 |
+
msgid "Submitting Registration ..."
|
621 |
+
msgstr "Anmeldung wird abgesendet..."
|
622 |
+
|
623 |
+
#: index.php:188
|
624 |
+
msgid "Plugin Installation Key is a required field!"
|
625 |
+
msgstr "Der Plugin-Installations-Key ist ein Pflichtfeld!"
|
626 |
+
|
627 |
+
#: index.php:186
|
628 |
+
msgid "Your WordPress Site URL is a required field!"
|
629 |
+
msgstr "Deine WordPress-Website-URL ist ein Pflichtfeld!"
|
630 |
+
|
631 |
+
#: index.php:178
|
632 |
+
msgid "Email Address is a required field!"
|
633 |
+
msgstr "E-Mail-Adresse ist ein Pflichtfeld!"
|
634 |
+
|
635 |
+
#: index.php:176
|
636 |
+
msgid "Last Name is a required field!"
|
637 |
+
msgstr "Nachname ist ein Pflichtfeld!"
|
638 |
+
|
639 |
+
#: index.php:174
|
640 |
+
msgid "First Name is a required field!"
|
641 |
+
msgstr "Vorname ist ein Pflichtfeld!"
|
642 |
+
|
643 |
+
#: images/index.php:540
|
644 |
+
msgid "Please make a donation for the use of this wonderful feature!"
|
645 |
+
msgstr "Bitte spende für die Nutzung dieser wunderbaren Funktion!"
|
646 |
+
|
647 |
+
#: index.php:156
|
648 |
+
msgid "Plugin Installation Key:"
|
649 |
+
msgstr "Plugin-Installations-Key:"
|
650 |
+
|
651 |
+
#: index.php:153
|
652 |
+
msgid "Your WordPress Site URL:"
|
653 |
+
msgstr "Deine WordPress-Website-URL:"
|
654 |
+
|
655 |
+
#: index.php:150
|
656 |
+
msgid "A password will be e-mailed to this address:"
|
657 |
+
msgstr "Ein Passwort wird per E-Mail an diese Adresse gesendet:"
|
658 |
+
|
659 |
+
#: index.php:146
|
660 |
+
msgid "Your Full Name:"
|
661 |
+
msgstr "Dein vollständiger Name:"
|
662 |
+
|
663 |
+
#: index.php:144
|
664 |
+
msgid "If you have not already registered your Key then register now using the form below.<br />* All registration fields are required<br />** I will NOT share your information."
|
665 |
+
msgstr "Wenn dein Key noch nicht registriert ist, registriere ihn jetzt mit dem untenstehenden Formular.<br />* Alle Registrierungsfelder sind erforderlich<br />** Ich werde deine Informationen NICHT weitergeben."
|
666 |
+
|
667 |
+
#: index.php:143
|
668 |
+
msgid "<p>Get instant access to definition updates.</p>"
|
669 |
+
msgstr "<p>Erhalte sofortigen Zugriff zu Definitionsaktualisierungen.</p>"
|
670 |
+
|
671 |
+
#: index.php:136
|
672 |
+
msgid "Download new definitions!"
|
673 |
+
msgstr "Lade neue Definitionen herunter!"
|
674 |
+
|
675 |
+
#: index.php:129
|
676 |
+
msgid "Updates & Registration"
|
677 |
+
msgstr "Aktualisierungen und Registrierung"
|
678 |
+
|
679 |
+
#: images/index.php:446
|
680 |
+
msgid "No response from server!"
|
681 |
+
msgstr "Keine Antwort vom Server!"
|
682 |
+
|
683 |
+
#: images/index.php:368
|
684 |
+
msgid "If this is taking too long, click here."
|
685 |
+
msgstr "Sollte dies zu lange dauern, klicke hier."
|
686 |
+
|
687 |
+
#: index.php:114
|
688 |
+
msgid "Searching for updates ..."
|
689 |
+
msgstr "Aktualisierungen werden gesucht..."
|
690 |
+
|
691 |
+
#: index.php:105
|
692 |
+
msgid "Upgrade to %s now!"
|
693 |
+
msgstr "Jetzt auf %s upgraden!"
|
694 |
+
|
695 |
+
#: images/index.php:549
|
696 |
+
msgid "Tested your site. It appears we didn't break anything"
|
697 |
+
msgstr "Teste deine Website. Anscheinend haben wir nichts kaputt gemacht"
|
698 |
+
|
699 |
+
#: index.php:80
|
700 |
+
msgid "FAQs"
|
701 |
+
msgstr "FAQ"
|
702 |
+
|
703 |
+
#: index.php:74
|
704 |
+
msgid "A backup of the original infected files are placed in the Quarantine in case you need to restore them or just want to look at them later. You can delete these files if you don't want to save more."
|
705 |
+
msgstr "Eine Sicherungskopie der ursprünglichen infizierten Dateien wird in die Quarantäne gesetzt, falls du sie wiederherstellen musst oder sie später ansehen möchtest. Du kannst diese Dateien löschen, wenn du sie nicht mehr speichern möchtest."
|
706 |
+
|
707 |
+
#: index.php:74
|
708 |
+
msgid "If Known Threats are found and displayed in red then there will be a button to '%s'. If only Potentional Threats are found then there is no automatic fix because those are probably not malicious."
|
709 |
+
msgstr "Wenn bekannte Bedrohungen gefunden und rot angezeigt werden, gibt es eine Schaltfläche zu '%s'. Wenn nur potenzielle Bedrohungen gefunden werden, gibt es keine automatische Fehlerbehebung, da diese wahrscheinlich nicht bösartig sind."
|
710 |
+
|
711 |
+
#: index.php:74
|
712 |
+
msgid "Make sure the Definition Updates are current and Run a Complete Scan."
|
713 |
+
msgstr "Stelle sicher, dass die Definitionen aktuell sind, und führe einen vollständigen Scan aus."
|
714 |
+
|
715 |
+
#: index.php:73
|
716 |
+
msgid "Getting Started"
|
717 |
+
msgstr "Erste Schritte"
|
718 |
+
|
719 |
+
#: images/index.php:1666
|
720 |
+
msgid "Failed to read file!"
|
721 |
+
msgstr "Fehler beim Lesen der Datei!"
|
722 |
+
|
723 |
+
#: images/index.php:1650
|
724 |
+
msgid "Skipped because of file size (%1$s bytes) or file extention (%2$s)!"
|
725 |
+
msgstr "Wegen Dateigröße (%1$s Bytes) oder Dateierweiterung (%2$s) übersprungen!"
|
726 |
+
|
727 |
+
#: images/index.php:1632
|
728 |
+
msgid "Failed to read directory!"
|
729 |
+
msgstr "Verzeichnis konnte nicht gelesen werden!"
|
730 |
+
|
731 |
+
#: images/index.php:1598
|
732 |
+
msgid "Skipped because of file extention!"
|
733 |
+
msgstr "Wegen Dateierweiterung übersprungen!"
|
734 |
+
|
735 |
+
#: images/index.php:1596
|
736 |
+
msgid "Skipped because of file size!"
|
737 |
+
msgstr "Wegen Dateigröße übersprungen!"
|
738 |
+
|
739 |
+
#: images/index.php:1594
|
740 |
+
msgid "Failed to determine file size!"
|
741 |
+
msgstr "Dateigröße konnte nicht ermittelt werden!"
|
742 |
+
|
743 |
+
#: images/index.php:1027
|
744 |
+
msgid "Examine File"
|
745 |
+
msgstr "Datei untersuchen"
|
746 |
+
|
747 |
+
#: images/index.php:1224 images/index.php:1530 images/index.php:1679
|
748 |
+
msgid "Scanned %s"
|
749 |
+
msgstr "%s gescannt"
|
750 |
+
|
751 |
+
#: images/index.php:1222 images/index.php:1511 images/index.php:1623
|
752 |
+
msgid "Scanning %s"
|
753 |
+
msgstr "%s werden gescannt"
|
754 |
+
|
755 |
+
#: index.php:1040 images/index.php:1479
|
756 |
+
msgid "Preparing %s"
|
757 |
+
msgstr "%s wird vorbereitet"
|
758 |
+
|
759 |
+
#: images/index.php:1074 images/index.php:1081
|
760 |
+
msgid "Already Fixed!"
|
761 |
+
msgstr "Schon repariert!"
|
762 |
+
|
763 |
+
#: images/index.php:1060
|
764 |
+
msgid "no file contents!"
|
765 |
+
msgstr "Keine Dateiinhalte!"
|
766 |
+
|
767 |
+
#: images/index.php:1060
|
768 |
+
msgid "file not writable!"
|
769 |
+
msgstr "Datei nicht schreibbar!"
|
770 |
+
|
771 |
+
#: images/index.php:1060
|
772 |
+
msgid "failed to write!"
|
773 |
+
msgstr "konnte nicht schreiben!"
|
774 |
+
|
775 |
+
#: images/index.php:1060
|
776 |
+
msgid "reason unknown!"
|
777 |
+
msgstr "Grund unbekannt!"
|
778 |
+
|
779 |
+
#: images/index.php:1060
|
780 |
+
msgid "failed to quarantine!"
|
781 |
+
msgstr "konnte nicht in Quarantäne gestellt werden!"
|
782 |
+
|
783 |
+
#: images/index.php:1060
|
784 |
+
msgid "Failed:"
|
785 |
+
msgstr "Fehlgeschlagen:"
|
786 |
+
|
787 |
+
#: images/index.php:1057 images/index.php:1135 images/index.php:1189
|
788 |
+
msgid "Success!"
|
789 |
+
msgstr "Erfolg!"
|
790 |
+
|
791 |
+
#: images/index.php:1020
|
792 |
+
msgid "File does not exist!"
|
793 |
+
msgstr "Datei existiert nicht!"
|
794 |
+
|
795 |
+
#: images/index.php:1020
|
796 |
+
msgid "File not readable!"
|
797 |
+
msgstr "Datei nicht lesbar!"
|
798 |
+
|
799 |
+
#: images/index.php:1020
|
800 |
+
msgid "File permissions read-only!"
|
801 |
+
msgstr "Dateiberechtigung ist nur-lesen!"
|
802 |
+
|
803 |
+
#: images/index.php:1020
|
804 |
+
msgid "Fixed file permissions! (try again)"
|
805 |
+
msgstr "Dateiberechtigungen korrigiert! (Versuche es nochmal)"
|
806 |
+
|
807 |
+
#: images/index.php:1020
|
808 |
+
msgid "Empty file!"
|
809 |
+
msgstr "Leere Datei!"
|
810 |
+
|
811 |
+
#: images/index.php:1020
|
812 |
+
msgid "Failed to read file contents!"
|
813 |
+
msgstr "Dateiinhalte konnten nicht gelesen werden!"
|
814 |
+
|
815 |
+
#: images/index.php:849
|
816 |
+
msgid "<b>Headers already sent</b> in %1$s on line %2$s.<br />This is not a good sign, it may just be a poorly written plugin but Headers should not have been sent at this point.<br />Check the code in the above mentioned file to fix this problem."
|
817 |
+
msgstr "<b>Header wurden bereits in %1$s in Zeile %2$s gesendet.</b><br />Dies ist kein gutes Zeichen, es kann nur ein schlecht geschriebenes Plugin sein, aber Header hätten hier nicht gesendet werden dürfen.<br />Überprüfe den Code in der oben genannten Datei, um dieses Problem zu beheben."
|
818 |
+
|
819 |
+
#: safe-load/trace.php:17 images/index.php:848
|
820 |
+
msgid "unknown"
|
821 |
+
msgstr "unbekannt"
|
822 |
+
|
823 |
+
#: safe-load/trace.php:15 images/index.php:846
|
824 |
+
msgid "an unknown file"
|
825 |
+
msgstr "eine unbekannte Datei"
|
826 |
+
|
827 |
+
#: images/index.php:152
|
828 |
+
msgid "Automatically Fix SELECTED Files Now"
|
829 |
+
msgstr "AUSGEWÄHLTE Dateien jetzt automatisch reparieren"
|
830 |
+
|
831 |
+
#: images/index.php:151
|
832 |
+
msgid "Loading, Please Wait ..."
|
833 |
+
msgstr "Lädt, bitte warten…"
|
834 |
+
|
835 |
+
#: images/index.php:150
|
836 |
+
msgid "Scan Settings"
|
837 |
+
msgstr "Scan-Einstellungen"
|
838 |
+
|
839 |
+
#: images/index.php:149
|
840 |
+
msgid "This Plugin requires WordPress version %s or higher"
|
841 |
+
msgstr "Dieses Plugin erfordert WordPress-Version %s oder höher"
|
842 |
+
|
843 |
+
#: index.php:345 index.php:353 images/index.php:147 images/index.php:723
|
844 |
+
msgid "View Quarantine"
|
845 |
+
msgstr "Quarantäne ansehen"
|
846 |
+
|
847 |
+
#: images/index.php:146
|
848 |
+
msgid "Quick Scan"
|
849 |
+
msgstr "Schnell-Scan"
|
850 |
+
|
851 |
+
#: images/index.php:145
|
852 |
+
msgid "Failed to list files in directory!"
|
853 |
+
msgstr "Fehler beim Auflisten der Dateien im Verzeichnis!"
|
854 |
+
|
855 |
+
#: index.php:1289
|
856 |
+
msgid "Your Server could not start a Session!"
|
857 |
+
msgstr "Dein Server konnte keine Session starten!"
|
858 |
+
|
859 |
+
#: index.php:407 index.php:1285
|
860 |
+
msgid "This feature is available to those who have donated!"
|
861 |
+
msgstr "Diese Funktion steht allen zur Verfügung, die gespendet haben!"
|
862 |
+
|
863 |
+
#: index.php:407 index.php:1285
|
864 |
+
msgid "You must register and donate to use this feature!"
|
865 |
+
msgstr "Du musst dich registrieren und spenden, um diese Funktion nutzen zu können!"
|
866 |
+
|
867 |
+
#: index.php:854 images/index.php:82
|
868 |
+
msgid "Potential Threats"
|
869 |
+
msgstr "Potentielle Bedrohungen"
|
870 |
+
|
871 |
+
#: images/index.php:82
|
872 |
+
msgid "Core File Changes"
|
873 |
+
msgstr "Core-Datei-Änderungen"
|
874 |
+
|
875 |
+
#: images/index.php:82
|
876 |
+
msgid "Known Threats"
|
877 |
+
msgstr "Bekannte Bedrohungen"
|
878 |
+
|
879 |
+
#: images/index.php:82
|
880 |
+
msgid "TimThumb Exploits"
|
881 |
+
msgstr "TimThumb-Exploits"
|
882 |
+
|
883 |
+
#: images/index.php:82
|
884 |
+
msgid "htaccess Threats"
|
885 |
+
msgstr "htaccess-Bedrohungen"
|
languages/gotmls-hu_HU.mo
ADDED
Binary file
|
languages/gotmls-hu_HU.po
ADDED
@@ -0,0 +1,1143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Anti-Malware Security and Brute-Force Firewall\n"
|
4 |
+
"POT-Creation-Date: 2021-07-06 12:18+0200\n"
|
5 |
+
"PO-Revision-Date: 2021-07-06 14:37+0200\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: hu_HU\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.4.3\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
+
"X-Poedit-WPHeader: index.php\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
+
|
24 |
+
#: images/index.php:55
|
25 |
+
msgid "Failed to encode HTML entities!"
|
26 |
+
msgstr "Nem sikerült kódolni a HTML-entitásokat!"
|
27 |
+
|
28 |
+
#: images/index.php:70
|
29 |
+
msgid "Failed to encode HTML characters!"
|
30 |
+
msgstr "Nem sikerült kódolni a HTML karaktereket!"
|
31 |
+
|
32 |
+
#: images/index.php:82
|
33 |
+
msgid "Database Injections"
|
34 |
+
msgstr "Adatbázis-injekciók"
|
35 |
+
|
36 |
+
#: images/index.php:82
|
37 |
+
msgid "htaccess Threats"
|
38 |
+
msgstr "htaccess fenyegetések"
|
39 |
+
|
40 |
+
#: images/index.php:82
|
41 |
+
msgid "TimThumb Exploits"
|
42 |
+
msgstr "TimThumb sérülékenységek"
|
43 |
+
|
44 |
+
#: images/index.php:82
|
45 |
+
msgid "Known Threats"
|
46 |
+
msgstr "Ismert fenyegetések"
|
47 |
+
|
48 |
+
#: images/index.php:82
|
49 |
+
msgid "Core File Changes"
|
50 |
+
msgstr "WP alapfájl változások"
|
51 |
+
|
52 |
+
#: images/index.php:82 index.php:854
|
53 |
+
msgid "Potential Threats"
|
54 |
+
msgstr "Lehetséges fenyegetések"
|
55 |
+
|
56 |
+
#: images/index.php:145
|
57 |
+
msgid "Failed to list files in directory!"
|
58 |
+
msgstr "Nem sikerült listázni a fájlokat a könyvtárban!"
|
59 |
+
|
60 |
+
#: images/index.php:146
|
61 |
+
msgid "Quick Scan"
|
62 |
+
msgstr "Gyors ellenőrzés"
|
63 |
+
|
64 |
+
#: images/index.php:147 images/index.php:723 index.php:345 index.php:353
|
65 |
+
msgid "View Quarantine"
|
66 |
+
msgstr "Karantén megtekintése"
|
67 |
+
|
68 |
+
#: images/index.php:148
|
69 |
+
msgid "View Scan History"
|
70 |
+
msgstr "Beolvasási előzmények megtekintése"
|
71 |
+
|
72 |
+
#: images/index.php:149
|
73 |
+
#, php-format
|
74 |
+
msgid "This Plugin requires WordPress version %s or higher"
|
75 |
+
msgstr "Ez a bővítmény %s vagy magasabb Wordpress verziót igényel"
|
76 |
+
|
77 |
+
#: images/index.php:150
|
78 |
+
msgid "Scan Settings"
|
79 |
+
msgstr "Ellenőrzési beállítások"
|
80 |
+
|
81 |
+
#: images/index.php:151
|
82 |
+
msgid "Loading, Please Wait ..."
|
83 |
+
msgstr "Betöltés, kérjük várjon..."
|
84 |
+
|
85 |
+
#: images/index.php:152
|
86 |
+
msgid "Automatically Fix SELECTED Files Now"
|
87 |
+
msgstr "Kijelölt fájlok automatikus javítása"
|
88 |
+
|
89 |
+
#: images/index.php:220
|
90 |
+
msgid "Invalid or expired Nonce Token!"
|
91 |
+
msgstr "Érvénytelen vagy lejárt Nonce Token!"
|
92 |
+
|
93 |
+
#: images/index.php:220
|
94 |
+
msgid "Refresh and try again?"
|
95 |
+
msgstr "Frissíti és újra próbálja?"
|
96 |
+
|
97 |
+
#: images/index.php:368
|
98 |
+
msgid "If this is taking too long, click here."
|
99 |
+
msgstr "Ha ez túl sokáig tart, kattintson ide."
|
100 |
+
|
101 |
+
#: images/index.php:446
|
102 |
+
msgid "No response from server!"
|
103 |
+
msgstr "Nem válaszol a szerver!"
|
104 |
+
|
105 |
+
#: images/index.php:540
|
106 |
+
msgid "Please make a donation for the use of this wonderful feature!"
|
107 |
+
msgstr "Kérjük, adományozzon e csodálatos szolgáltatás használatáért!"
|
108 |
+
|
109 |
+
#: images/index.php:549
|
110 |
+
msgid "Tested your site. It appears we didn't break anything"
|
111 |
+
msgstr "Teszteltük webhelyét. Úgy tűnik, nem töri semmi"
|
112 |
+
|
113 |
+
#: images/index.php:570
|
114 |
+
msgid "Restore selected files"
|
115 |
+
msgstr "Kijelölt fájlok visszaállítása"
|
116 |
+
|
117 |
+
#: images/index.php:570
|
118 |
+
msgid ""
|
119 |
+
"Are you sure you want to overwrite the previously cleaned files with the "
|
120 |
+
"selected files in the Quarantine?"
|
121 |
+
msgstr ""
|
122 |
+
"Biztosan felülírja a korábban megtisztított fájlokat a karanténban levő "
|
123 |
+
"kiválasztott fájlokkal?"
|
124 |
+
|
125 |
+
#: images/index.php:570
|
126 |
+
msgid "Delete selected files"
|
127 |
+
msgstr "Kijelölt fájlok törlése"
|
128 |
+
|
129 |
+
#: images/index.php:570
|
130 |
+
msgid ""
|
131 |
+
"Are you sure you want to permanently delete the selected files in the "
|
132 |
+
"Quarantine?"
|
133 |
+
msgstr ""
|
134 |
+
"Biztos benne, hogy véglegesen törölni szeretné a karanténban kiválasztott "
|
135 |
+
"fájlokat?"
|
136 |
+
|
137 |
+
#: images/index.php:570
|
138 |
+
msgid ""
|
139 |
+
"The following items highlighted in yellow had been found to contain "
|
140 |
+
"malicious code, they have been cleaned and the malicious contents have been "
|
141 |
+
"removed. A record of the infection has been saved here in the Quarantine for "
|
142 |
+
"your review and could help with any future investigations. The code is safe "
|
143 |
+
"here and you do not need to do anything further with these files."
|
144 |
+
msgstr ""
|
145 |
+
"A sárgával kiemelt következő tételekről kiderült, hogy rosszindulatú kódot "
|
146 |
+
"tartalmaznak, megtisztították őket, a rosszindulatú tartalmakat "
|
147 |
+
"eltávolították. Egy feljegyzés a fertőzésről, amit itt tároltak a "
|
148 |
+
"karanténban, hogy megvizsgálják, és segíthet a jövőbeli nyomozásokban. A kód "
|
149 |
+
"itt biztonságos, és nem kell semmit sem tennie ezekkel a fájlokkal."
|
150 |
+
|
151 |
+
#: images/index.php:571
|
152 |
+
msgid "Re-clean re-infected files"
|
153 |
+
msgstr "Újra tiszta újra fertőzött fájlok"
|
154 |
+
|
155 |
+
#: images/index.php:571
|
156 |
+
msgid ""
|
157 |
+
"The items highlighted in red have been found to be re-infected. The "
|
158 |
+
"malicious code has returned and needs to be cleaned again."
|
159 |
+
msgstr ""
|
160 |
+
"A pirossal kiemelteket újra fertőzöttnek találtuk. A rosszindulatú kód "
|
161 |
+
"visszatért, és újra meg kell tisztítani."
|
162 |
+
|
163 |
+
#: images/index.php:572 images/index.php:700
|
164 |
+
#, php-format
|
165 |
+
msgid "Check all %d"
|
166 |
+
msgstr "Az összes ellenőrzése %d"
|
167 |
+
|
168 |
+
#: images/index.php:572 images/index.php:700
|
169 |
+
msgid " Items in Quarantine"
|
170 |
+
msgstr " Karanténban lévő elemek"
|
171 |
+
|
172 |
+
#: images/index.php:572 images/index.php:700
|
173 |
+
msgid "Quarantined"
|
174 |
+
msgstr "Karanténba helyezett"
|
175 |
+
|
176 |
+
#: images/index.php:572 images/index.php:700
|
177 |
+
msgid "Date Infected"
|
178 |
+
msgstr "Fertőzés dátuma"
|
179 |
+
|
180 |
+
#: images/index.php:579
|
181 |
+
msgid "The current/live file is missing or deleted"
|
182 |
+
msgstr "Az aktuális/élő fájl hiányzik vagy törölve lett"
|
183 |
+
|
184 |
+
#: images/index.php:587
|
185 |
+
msgid "View current/live version"
|
186 |
+
msgstr "Aktuális/élő verzió megtekintése"
|
187 |
+
|
188 |
+
#: images/index.php:591 images/index.php:593
|
189 |
+
msgid "View Option Record: "
|
190 |
+
msgstr "Beállításbejegyzés megtekintése: "
|
191 |
+
|
192 |
+
#: images/index.php:595 images/index.php:606
|
193 |
+
msgid "View Quarantine Record"
|
194 |
+
msgstr "Karanténbejegyzés Megtekintése"
|
195 |
+
|
196 |
+
#: images/index.php:613 images/index.php:721
|
197 |
+
msgid "No Items in Quarantine"
|
198 |
+
msgstr "Nincs karanténban lévő elem"
|
199 |
+
|
200 |
+
#: images/index.php:617
|
201 |
+
#, php-format
|
202 |
+
msgid "Clear %s Deleted Files from the Trash"
|
203 |
+
msgstr "%s fájlok törlése a lomtárból"
|
204 |
+
|
205 |
+
#: images/index.php:693
|
206 |
+
msgid "Are you sure you want to restore this file from the quarantine?"
|
207 |
+
msgstr "Biztos, hogy vissza akarja állítani ezt a fájlt a karanténból?"
|
208 |
+
|
209 |
+
#: images/index.php:693 index.php:1528
|
210 |
+
msgid "File Details:"
|
211 |
+
msgstr "Fájl részletei:"
|
212 |
+
|
213 |
+
#: images/index.php:846 safe-load/trace.php:15
|
214 |
+
msgid "an unknown file"
|
215 |
+
msgstr "ismeretlen fájl"
|
216 |
+
|
217 |
+
#: images/index.php:848 safe-load/trace.php:17
|
218 |
+
msgid "unknown"
|
219 |
+
msgstr "ismeretlen"
|
220 |
+
|
221 |
+
#: images/index.php:849
|
222 |
+
#, php-format
|
223 |
+
msgid ""
|
224 |
+
"<b>Headers already sent</b> in %1$s on line %2$s.<br />This is not a good "
|
225 |
+
"sign, it may just be a poorly written plugin but Headers should not have "
|
226 |
+
"been sent at this point.<br />Check the code in the above mentioned file to "
|
227 |
+
"fix this problem."
|
228 |
+
msgstr ""
|
229 |
+
"<b>Fejlécek már beküldésre kerültek</b> %1$s a sorban %2$s .<br /> Ez nem jó "
|
230 |
+
"jel, lehet, hogy csak egy rosszul megírt plugin, de a fejléceket nem kellett "
|
231 |
+
"volna elküldeni ezen a ponton.<br />A probléma megoldásához ellenőrizze a "
|
232 |
+
"fent említett fájlban lévő kódot."
|
233 |
+
|
234 |
+
#: images/index.php:1020
|
235 |
+
msgid "Failed to read file contents!"
|
236 |
+
msgstr "Nem sikerült beolvasni a fájl tartalmát!"
|
237 |
+
|
238 |
+
#: images/index.php:1020
|
239 |
+
msgid "Empty file!"
|
240 |
+
msgstr "Üres fájl!"
|
241 |
+
|
242 |
+
#: images/index.php:1020
|
243 |
+
msgid "Fixed file permissions! (try again)"
|
244 |
+
msgstr "Rögzített fájl engedélyek! (próbálja újra)"
|
245 |
+
|
246 |
+
#: images/index.php:1020
|
247 |
+
msgid "File permissions read-only!"
|
248 |
+
msgstr "Fájl jogosultságok csak olvasható!"
|
249 |
+
|
250 |
+
#: images/index.php:1020
|
251 |
+
msgid "File not readable!"
|
252 |
+
msgstr "Fájl nem olvasható!"
|
253 |
+
|
254 |
+
#: images/index.php:1020
|
255 |
+
msgid "File does not exist!"
|
256 |
+
msgstr "A fájl nem létezik!"
|
257 |
+
|
258 |
+
#: images/index.php:1027
|
259 |
+
msgid "Examine File"
|
260 |
+
msgstr "Fájl vizsgálata"
|
261 |
+
|
262 |
+
#: images/index.php:1057 images/index.php:1135 images/index.php:1189
|
263 |
+
msgid "Success!"
|
264 |
+
msgstr "Sikeres!"
|
265 |
+
|
266 |
+
#: images/index.php:1060
|
267 |
+
msgid "Failed:"
|
268 |
+
msgstr "Nem sikerült:"
|
269 |
+
|
270 |
+
#: images/index.php:1060
|
271 |
+
msgid "failed to quarantine!"
|
272 |
+
msgstr "nem érhető el a karantén!"
|
273 |
+
|
274 |
+
#: images/index.php:1060
|
275 |
+
msgid "reason unknown!"
|
276 |
+
msgstr "ismeretlen ok miatt!"
|
277 |
+
|
278 |
+
#: images/index.php:1060
|
279 |
+
msgid "failed to write!"
|
280 |
+
msgstr "nem sikerült írni!"
|
281 |
+
|
282 |
+
#: images/index.php:1060
|
283 |
+
msgid "file not writable!"
|
284 |
+
msgstr "a fájl nem írható!"
|
285 |
+
|
286 |
+
#: images/index.php:1060
|
287 |
+
msgid "no file contents!"
|
288 |
+
msgstr "nincs fájl tartalom!"
|
289 |
+
|
290 |
+
#: images/index.php:1066
|
291 |
+
msgid "Failed: "
|
292 |
+
msgstr "Sikertelen: "
|
293 |
+
|
294 |
+
#: images/index.php:1074 images/index.php:1081
|
295 |
+
msgid "Already Fixed!"
|
296 |
+
msgstr "Már javítva!"
|
297 |
+
|
298 |
+
#: images/index.php:1125 images/index.php:1177 index.php:1387 index.php:1458
|
299 |
+
#: index.php:1460
|
300 |
+
msgid "Done!"
|
301 |
+
msgstr "Készen vagyunk!"
|
302 |
+
|
303 |
+
#: images/index.php:1128 images/index.php:1180
|
304 |
+
msgid "Failed to delete!"
|
305 |
+
msgstr "Nem sikerült törölni!"
|
306 |
+
|
307 |
+
#: images/index.php:1138 images/index.php:1192
|
308 |
+
msgid "Update Failed!"
|
309 |
+
msgstr "Frissítés nem sikerült!"
|
310 |
+
|
311 |
+
#: images/index.php:1145
|
312 |
+
msgid "Are you sure you want to delete this option?"
|
313 |
+
msgstr "Biztos, hogy törölni szeretné ezt a lehetőséget?"
|
314 |
+
|
315 |
+
#: images/index.php:1145 images/index.php:1199
|
316 |
+
msgid "Record Details:"
|
317 |
+
msgstr "Adatok részletei:"
|
318 |
+
|
319 |
+
#: images/index.php:1199
|
320 |
+
msgid "Are you sure you want to delete this revision?"
|
321 |
+
msgstr "Biztosan törölni kívánja ezt a változatot?"
|
322 |
+
|
323 |
+
#: images/index.php:1202
|
324 |
+
msgid "This record no longer exists."
|
325 |
+
msgstr "Ez a rekord már nem létezik."
|
326 |
+
|
327 |
+
#: images/index.php:1222 images/index.php:1511 images/index.php:1623
|
328 |
+
#, php-format
|
329 |
+
msgid "Scanning %s"
|
330 |
+
msgstr "%s ellenőrzése"
|
331 |
+
|
332 |
+
#: images/index.php:1224 images/index.php:1530 images/index.php:1679
|
333 |
+
#, php-format
|
334 |
+
msgid "Scanned %s"
|
335 |
+
msgstr "Ellenőrizve %s"
|
336 |
+
|
337 |
+
#: images/index.php:1226
|
338 |
+
msgid "No Definitions for DB Injections!"
|
339 |
+
msgstr "Nincs meghatározás a DB injekciókra!"
|
340 |
+
|
341 |
+
#: images/index.php:1250 images/index.php:1272 images/index.php:1283
|
342 |
+
msgid "View DB Injection"
|
343 |
+
msgstr "DB injekció megtekintése"
|
344 |
+
|
345 |
+
#: images/index.php:1479 index.php:1040
|
346 |
+
#, php-format
|
347 |
+
msgid "Preparing %s"
|
348 |
+
msgstr "%s előkészítése"
|
349 |
+
|
350 |
+
#: images/index.php:1582
|
351 |
+
msgid "Examine Quarantined Content"
|
352 |
+
msgstr "Karanténba helyezett tartalom vizsgálata"
|
353 |
+
|
354 |
+
#: images/index.php:1584
|
355 |
+
msgid "Examine Current Content"
|
356 |
+
msgstr "Az Aktuális Tartalom Vizsgálata"
|
357 |
+
|
358 |
+
#: images/index.php:1594
|
359 |
+
msgid "Failed to determine file size!"
|
360 |
+
msgstr "Nem sikerült megállapítani a fájlméretét!"
|
361 |
+
|
362 |
+
#: images/index.php:1596
|
363 |
+
msgid "Skipped because of file size!"
|
364 |
+
msgstr "Kihagyta a fájlméret miatt!"
|
365 |
+
|
366 |
+
#: images/index.php:1598
|
367 |
+
msgid "Skipped because of file extention!"
|
368 |
+
msgstr "Kihagyta a fájl kiterjesztése miatt!"
|
369 |
+
|
370 |
+
#: images/index.php:1632
|
371 |
+
msgid "Failed to read directory!"
|
372 |
+
msgstr "Nem sikerült olvasni a könyvtárat!"
|
373 |
+
|
374 |
+
#: images/index.php:1650
|
375 |
+
#, php-format
|
376 |
+
msgid "Skipped because of file size (%1$s bytes) or file extention (%2$s)!"
|
377 |
+
msgstr "Kihagyva, mert a fájl mérete (%1$s bájt), vagy a kiterjesztése (%2$s)!"
|
378 |
+
|
379 |
+
#: images/index.php:1666
|
380 |
+
msgid "Failed to read file!"
|
381 |
+
msgstr "Nem sikerült elolvasni a fájlt!"
|
382 |
+
|
383 |
+
#: index.php:73
|
384 |
+
msgid "Getting Started"
|
385 |
+
msgstr "Kezdjük el"
|
386 |
+
|
387 |
+
#: index.php:74
|
388 |
+
msgid "Make sure the Definition Updates are current and Run a Complete Scan."
|
389 |
+
msgstr ""
|
390 |
+
"Ellenőrizze, hogy a definíciófrissítések naprakészek-e, majd futtasson le "
|
391 |
+
"egy teljes keresést."
|
392 |
+
|
393 |
+
#: index.php:74
|
394 |
+
#, php-format
|
395 |
+
msgid ""
|
396 |
+
"If Known Threats are found and displayed in red then there will be a button "
|
397 |
+
"to '%s'. If only Potentional Threats are found then there is no automatic "
|
398 |
+
"fix because those are probably not malicious."
|
399 |
+
msgstr ""
|
400 |
+
"Ha ismert fenyegetések jelennek meg piros színnel, akkor megjelenik a (z) %s "
|
401 |
+
"gomb. Ha csak potenciál fenyegetések találhatók, akkor nincs automatikus "
|
402 |
+
"javítás, mert ezek valószínűleg nem rosszindulatúak."
|
403 |
+
|
404 |
+
#: index.php:74
|
405 |
+
msgid ""
|
406 |
+
"A backup of the original infected files are placed in the Quarantine in case "
|
407 |
+
"you need to restore them or just want to look at them later. You can delete "
|
408 |
+
"these files if you don't want to save more."
|
409 |
+
msgstr ""
|
410 |
+
"Az eredeti fertőzött fájlok biztonsági mentése a karanténba kerül arra az "
|
411 |
+
"esetre, ha vissza kell állítania őket, vagy csak később szeretné megnézni "
|
412 |
+
"őket. Törölheti ezeket a fájlokat, ha nem szeretne többet menteni."
|
413 |
+
|
414 |
+
#: index.php:80
|
415 |
+
msgid "FAQs"
|
416 |
+
msgstr "GYIK"
|
417 |
+
|
418 |
+
#: index.php:105
|
419 |
+
#, php-format
|
420 |
+
msgid "Upgrade to %s now!"
|
421 |
+
msgstr "Frissítsen most %s!"
|
422 |
+
|
423 |
+
#: index.php:114
|
424 |
+
msgid "Searching for updates ..."
|
425 |
+
msgstr "Frissítések keresése ..."
|
426 |
+
|
427 |
+
#: index.php:129
|
428 |
+
msgid "Updates & Registration"
|
429 |
+
msgstr "Frissítések és regisztráció"
|
430 |
+
|
431 |
+
#: index.php:130
|
432 |
+
msgid "Get FREE Key!"
|
433 |
+
msgstr "Ingyenes kulcs kérése!"
|
434 |
+
|
435 |
+
#: index.php:136
|
436 |
+
msgid "Download new definitions!"
|
437 |
+
msgstr "Töltse le az új definíciókat!"
|
438 |
+
|
439 |
+
#: index.php:141
|
440 |
+
msgid "Delete ALL definitions!"
|
441 |
+
msgstr "Összes definíció törlése!"
|
442 |
+
|
443 |
+
#: index.php:143
|
444 |
+
msgid "<p>Get instant access to definition updates.</p>"
|
445 |
+
msgstr "<p>Azonnali hozzáférés a definíciós frissítésekhez.</p>"
|
446 |
+
|
447 |
+
#: index.php:144
|
448 |
+
msgid ""
|
449 |
+
"If you have not already registered your Key then register now using the form "
|
450 |
+
"below.<br />* All registration fields are required<br />** I will NOT share "
|
451 |
+
"your information."
|
452 |
+
msgstr ""
|
453 |
+
"Ha még nem regisztrálta a kulcsot, akkor regisztráljon most az alábbi űrlap "
|
454 |
+
"segítségével.<br />* Minden regisztrációs mező szükséges<br />** NEM osztom "
|
455 |
+
"meg az ön adatait."
|
456 |
+
|
457 |
+
#: index.php:146
|
458 |
+
msgid "Your Full Name:"
|
459 |
+
msgstr "Teljes neve:"
|
460 |
+
|
461 |
+
#: index.php:150
|
462 |
+
msgid "A password will be e-mailed to this address:"
|
463 |
+
msgstr "Jelszó e-mailben erre a címre:"
|
464 |
+
|
465 |
+
#: index.php:150
|
466 |
+
msgid ""
|
467 |
+
"Note: The pre-populated email below is NOT the address this site is "
|
468 |
+
"currently registered under!"
|
469 |
+
msgstr ""
|
470 |
+
"Megjegyzés: Az alábbi előretolt e-mail NEM az a cím, amely alatt ez az oldal "
|
471 |
+
"jelenleg regisztrálva van!"
|
472 |
+
|
473 |
+
#: index.php:153
|
474 |
+
msgid "Your WordPress Site URL:"
|
475 |
+
msgstr "A WordPress oldalának címe:"
|
476 |
+
|
477 |
+
#: index.php:156
|
478 |
+
msgid "Plugin Installation Key:"
|
479 |
+
msgstr "Bővítmény telepítési kulcs:"
|
480 |
+
|
481 |
+
#: index.php:174
|
482 |
+
msgid "First Name is a required field!"
|
483 |
+
msgstr "Az utónév kötelező mező!"
|
484 |
+
|
485 |
+
#: index.php:176
|
486 |
+
msgid "Last Name is a required field!"
|
487 |
+
msgstr "A vezetéknév kötelező mező!"
|
488 |
+
|
489 |
+
#: index.php:178
|
490 |
+
msgid "Email Address is a required field!"
|
491 |
+
msgstr "E-mail cím szükséges mező!"
|
492 |
+
|
493 |
+
#: index.php:186
|
494 |
+
msgid "Your WordPress Site URL is a required field!"
|
495 |
+
msgstr "A Wordpress oldalának címe kötelező mező!"
|
496 |
+
|
497 |
+
#: index.php:188
|
498 |
+
msgid "Plugin Installation Key is a required field!"
|
499 |
+
msgstr "Bővítmény telepítési kulcs kötelező mező!"
|
500 |
+
|
501 |
+
#: index.php:193
|
502 |
+
msgid "Submitting Registration ..."
|
503 |
+
msgstr "Regisztráció beküldése..."
|
504 |
+
|
505 |
+
#: index.php:215
|
506 |
+
msgid "Resources & Links"
|
507 |
+
msgstr "Források és linkek"
|
508 |
+
|
509 |
+
#: index.php:274
|
510 |
+
#, php-format
|
511 |
+
msgid "Cleared %s records from the history."
|
512 |
+
msgstr "%s rekord törlése az előzményekből."
|
513 |
+
|
514 |
+
#: index.php:316
|
515 |
+
msgid "No Scans have been logged"
|
516 |
+
msgstr "Nincs beolvasás naplózva"
|
517 |
+
|
518 |
+
#: index.php:323
|
519 |
+
msgid "Globally White-listed files"
|
520 |
+
msgstr "Globálisan fehér listán szereplő fájlok"
|
521 |
+
|
522 |
+
#: index.php:323
|
523 |
+
msgid "# of patterns"
|
524 |
+
msgstr "# minták"
|
525 |
+
|
526 |
+
#: index.php:323
|
527 |
+
msgid "Date Updated"
|
528 |
+
msgstr "Frissítve"
|
529 |
+
|
530 |
+
#: index.php:333
|
531 |
+
msgid "WordPress Core files"
|
532 |
+
msgstr "WordPress Core Fájlok"
|
533 |
+
|
534 |
+
#: index.php:333
|
535 |
+
msgid "# of files"
|
536 |
+
msgstr "# fájl"
|
537 |
+
|
538 |
+
#: index.php:350
|
539 |
+
msgid "White-lists"
|
540 |
+
msgstr "Fehér listák"
|
541 |
+
|
542 |
+
#: index.php:369
|
543 |
+
msgid ""
|
544 |
+
"(This patch only works under Apache servers and requires mod_rewrite and "
|
545 |
+
"session_start to be active and functional)"
|
546 |
+
msgstr ""
|
547 |
+
"(Ez a javítás csak az Apache szerverek alatt működik, ezért a mod_rewrite és "
|
548 |
+
"a session_start függvénynek aktívnak és működőképesnek kell lennie)"
|
549 |
+
|
550 |
+
#: index.php:369
|
551 |
+
msgid ""
|
552 |
+
"Your WordPress Login page is susceptible to a brute-force attack (just like "
|
553 |
+
"any other login page). These types of attacks are becoming more prevalent "
|
554 |
+
"these days and can sometimes cause your server to become slow or "
|
555 |
+
"unresponsive, even if the attacks do not succeed in gaining access to your "
|
556 |
+
"site. Applying this patch will block access to the WordPress Login page "
|
557 |
+
"whenever this type of attack is detected."
|
558 |
+
msgstr ""
|
559 |
+
"A WordPress Login oldala érzékeny a brute-force támadásra (csakúgy, mint "
|
560 |
+
"bármely más bejelentkezési oldal). Az ilyen típusú támadások manapság egyre "
|
561 |
+
"elterjedtebbek, és néha a szerver lassúvá vagy nem reagálóvá válhat, még "
|
562 |
+
"akkor is, ha a támadásoknak nem sikerül hozzáférniük a webhelyhez. A javítás "
|
563 |
+
"alkalmazásával blokkolni fogjuk a Hozzáférést a WordPress Login oldalához, "
|
564 |
+
"amikor ilyen típusú támadást észlelünk."
|
565 |
+
|
566 |
+
#: index.php:370
|
567 |
+
msgid "Not Installed"
|
568 |
+
msgstr "Nem installált"
|
569 |
+
|
570 |
+
#: index.php:371
|
571 |
+
msgid "Install Patch"
|
572 |
+
msgstr "Javítás telepítése"
|
573 |
+
|
574 |
+
#: index.php:374
|
575 |
+
msgid ""
|
576 |
+
"Your WordPress site has the current version of my brute-force Login "
|
577 |
+
"protection installed."
|
578 |
+
msgstr ""
|
579 |
+
"A WordPress webhelyeden telepítve van a brute-force Login védelem aktuális "
|
580 |
+
"verziója."
|
581 |
+
|
582 |
+
#: index.php:375
|
583 |
+
msgid "Uninstall Patch"
|
584 |
+
msgstr "Javítás eltávolítása"
|
585 |
+
|
586 |
+
#: index.php:376
|
587 |
+
msgid "Enabled"
|
588 |
+
msgstr "Engedélyezve"
|
589 |
+
|
590 |
+
#: index.php:380
|
591 |
+
msgid ""
|
592 |
+
"Your WordPress Login page has the old version of my brute-force protection "
|
593 |
+
"installed. Upgrade this patch to improve the protection on the WordPress "
|
594 |
+
"Login page and preserve the integrity of your WordPress core files."
|
595 |
+
msgstr ""
|
596 |
+
"A WordPress Login oldalon telepítve van a brute-force védelem régi verziója. "
|
597 |
+
"Frissítse ezt a javítást, hogy javítsa a WordPress Login oldal védelmét, és "
|
598 |
+
"megőrizze a WordPress magfájlok integritását."
|
599 |
+
|
600 |
+
#: index.php:381
|
601 |
+
msgid "Upgrade Patch"
|
602 |
+
msgstr "Frissítési javítás"
|
603 |
+
|
604 |
+
#: index.php:382
|
605 |
+
msgid "Out of Date"
|
606 |
+
msgstr "Elavult"
|
607 |
+
|
608 |
+
#: index.php:407 index.php:1285
|
609 |
+
msgid "You must register and donate to use this feature!"
|
610 |
+
msgstr "A funkció használatához regisztrálnia és adományoznia kell!"
|
611 |
+
|
612 |
+
#: index.php:407 index.php:1285
|
613 |
+
msgid "This feature is available to those who have donated!"
|
614 |
+
msgstr "Ez a funkció csak azok számára érhető el, akik adományoztak!"
|
615 |
+
|
616 |
+
#: index.php:419
|
617 |
+
#, php-format
|
618 |
+
msgid "Failed to remove XMLRPC Protection [.htaccess %s]"
|
619 |
+
msgstr "Nem sikerült eltávolítani az XMLRPC védelmet [. htaccess %s]"
|
620 |
+
|
621 |
+
#: index.php:427
|
622 |
+
#, php-format
|
623 |
+
msgid "Failed to install XMLRPC Protection [.htaccess %s]"
|
624 |
+
msgstr "Nem sikerült telepíteni az XMLRPC-védelmet [.htaccess %s]"
|
625 |
+
|
626 |
+
#: index.php:431
|
627 |
+
msgid ""
|
628 |
+
"Most WordPress sites do not use the XMLRPC features and hack attempts on the "
|
629 |
+
"xmlrpc.php file are more common then ever before. Even if there are no "
|
630 |
+
"vulnerabilities for hackers to exploit, these attempts can cause slowness or "
|
631 |
+
"downtime similar to a DDoS attack. This patch automatically blocks all "
|
632 |
+
"external access to the xmlrpc.php file."
|
633 |
+
msgstr ""
|
634 |
+
"A legtöbb WordPress webhely nem használja az XMLRPC funkciókat, és az xmlrpc."
|
635 |
+
"php fájlon tett feltörési kísérletek gyakoribb, mint valaha. Még akkor is, "
|
636 |
+
"ha a hackerek nem használnak sebezhetőségeket, ezek a kísérletek a DDoS-"
|
637 |
+
"támadáshoz hasonló lassúságot vagy állásidőt okozhatnak. Ez a javítás "
|
638 |
+
"automatikusan blokkolja az xmlrpc.php fájlhoz való összes külső hozzáférést."
|
639 |
+
|
640 |
+
#: index.php:445
|
641 |
+
msgid "Removed Brute-Force Protection"
|
642 |
+
msgstr "Eltávolított Brute-Force Protection"
|
643 |
+
|
644 |
+
#: index.php:450
|
645 |
+
msgid "Upgraded Brute-Force Protection"
|
646 |
+
msgstr "Frissített Brute-Force Védelem"
|
647 |
+
|
648 |
+
#: index.php:456
|
649 |
+
msgid "Installed Brute-Force Protection"
|
650 |
+
msgstr "Telepített Brute-Force Védelem"
|
651 |
+
|
652 |
+
#: index.php:459
|
653 |
+
#, php-format
|
654 |
+
msgid "Failed to install Brute-Force Protection (wp-config.php %s)"
|
655 |
+
msgstr "Nem sikerült telepíteni Brute-Force Protection (wp-config.php %s)"
|
656 |
+
|
657 |
+
#: index.php:461
|
658 |
+
msgid "wp-config.php Not Readable!"
|
659 |
+
msgstr "wp-config.php nem olvasható!"
|
660 |
+
|
661 |
+
#: index.php:463
|
662 |
+
msgid "wp-config.php Not Found!"
|
663 |
+
msgstr "wp-config.php nem található!"
|
664 |
+
|
665 |
+
#: index.php:466
|
666 |
+
msgid "Removed Old Brute-Force Login Patch"
|
667 |
+
msgstr "Eltávolította A Régi Brute-Force Bejelentkezési Javítást"
|
668 |
+
|
669 |
+
#: index.php:482
|
670 |
+
msgid "Checking for session compatibility ..."
|
671 |
+
msgstr "Munkamenet-kompatibilitás ellenőrzése ..."
|
672 |
+
|
673 |
+
#: index.php:482
|
674 |
+
msgid ""
|
675 |
+
" For more information on Brute-Force attack prevention and the WordPress wp-"
|
676 |
+
"login-php file "
|
677 |
+
msgstr ""
|
678 |
+
" További információ a Brute-Force támadás megelőzéséről és a WordPress wp-"
|
679 |
+
"login-php fájlról "
|
680 |
+
|
681 |
+
#: index.php:482 index.php:1015
|
682 |
+
msgid "read my blog"
|
683 |
+
msgstr "olvassa a blogomban"
|
684 |
+
|
685 |
+
#: index.php:489
|
686 |
+
#, php-format
|
687 |
+
msgid ""
|
688 |
+
"You username has been change to %s. Don't forget to use your new username "
|
689 |
+
"when you login again."
|
690 |
+
msgstr ""
|
691 |
+
"A Felhasználónév a következőre lett megváltoztatva %s. ne felejtse el ezt az "
|
692 |
+
"új felhasználónevet használni, ha újra bejelentkezik."
|
693 |
+
|
694 |
+
#: index.php:491
|
695 |
+
#, php-format
|
696 |
+
msgid "SQL Error changing username: %s. Please try again later."
|
697 |
+
msgstr ""
|
698 |
+
"SQL hiba a felhasználónév megváltoztatásakor: %s. Kérlek, próbáld újra "
|
699 |
+
"később."
|
700 |
+
|
701 |
+
#: index.php:494
|
702 |
+
#, php-format
|
703 |
+
msgid ""
|
704 |
+
"Your new username must be at least 3 characters and can only contain ""
|
705 |
+
"%s". Please try again."
|
706 |
+
msgstr ""
|
707 |
+
"Az új felhasználónévnek legalább 3 karakterből kell lennie, és csak ""
|
708 |
+
"%s" tartalmazhat. Kérem, próbálkozzon újra."
|
709 |
+
|
710 |
+
#: index.php:495
|
711 |
+
msgid "Change your username:"
|
712 |
+
msgstr "Változtassa meg felhasználónevét:"
|
713 |
+
|
714 |
+
#: index.php:495
|
715 |
+
msgid ""
|
716 |
+
"Your username is \"admin\", this is the most commonly guessed username by "
|
717 |
+
"hackers and brute-force scripts. It is highly recommended that you change "
|
718 |
+
"your username immediately."
|
719 |
+
msgstr ""
|
720 |
+
"A felhasználónév \"admin\", ez a leggyakrabban kitalált felhasználónév a "
|
721 |
+
"hackerek és a brute-force szkriptek számára. Erősen ajánlott, hogy "
|
722 |
+
"változtassa meg a felhasználónevét azonnal."
|
723 |
+
|
724 |
+
#: index.php:513
|
725 |
+
msgid "Disable this Rule"
|
726 |
+
msgstr "A szabály letiltása"
|
727 |
+
|
728 |
+
#: index.php:514
|
729 |
+
msgid ""
|
730 |
+
"The Conflicting Firewall Rule (WP_firewall_exclude_terms) activated by the "
|
731 |
+
"WP Firewall 2 plugin has been shown to interfere with the Definition Updates "
|
732 |
+
"and WP Core File Scans in my Anti-Malware plugin. I recommend that you "
|
733 |
+
"disable this rule in the WP Firewall 2 plugin."
|
734 |
+
msgstr ""
|
735 |
+
"A WP Firewall 2 plugin által aktivált ütköző tűzfalszabály "
|
736 |
+
"(WP_firewall_exclude_terms) zavarja a definíciós frissítéseket és a WP Core "
|
737 |
+
"fájlvizsgálatokat az Anti-Malware pluginban. Javaslom, hogy tiltsa le ezt a "
|
738 |
+
"szabályt a WP Firewall 2 beépülő modulban."
|
739 |
+
|
740 |
+
#: index.php:517
|
741 |
+
msgid ""
|
742 |
+
" However, your current IP has been Whitelisted so you could probably keep "
|
743 |
+
"this rule enabled if you really want to."
|
744 |
+
msgstr ""
|
745 |
+
" A jelenlegi IP-címe azonban fehérlistára került, így valószínűleg "
|
746 |
+
"engedélyezve tarthatja ezt a szabályt, ha valóban szeretné."
|
747 |
+
|
748 |
+
#: index.php:519
|
749 |
+
msgid "Whitelist your IP"
|
750 |
+
msgstr "Az IP-címed engedélyezése"
|
751 |
+
|
752 |
+
#: index.php:519
|
753 |
+
msgid ""
|
754 |
+
" However, if you would like to keep this rule enabled you should at least "
|
755 |
+
"Whitelist your IP."
|
756 |
+
msgstr ""
|
757 |
+
" Ha azonban szeretné, hogy ez a szabály engedélyezve maradjon, legalább "
|
758 |
+
"fehérlistára kell tennie az IP-címét."
|
759 |
+
|
760 |
+
#: index.php:523
|
761 |
+
msgid "Firewall Options"
|
762 |
+
msgstr "Tűzfalbeállítások"
|
763 |
+
|
764 |
+
#: index.php:603
|
765 |
+
msgid "definitions_array not set!"
|
766 |
+
msgstr "definitions_array nincs beállítva!"
|
767 |
+
|
768 |
+
#: index.php:747
|
769 |
+
msgid "Only Scan These Folders:"
|
770 |
+
msgstr "Csak ezeket a mappákat szkennelje be:"
|
771 |
+
|
772 |
+
#: index.php:754
|
773 |
+
msgid "Run Complete Scan"
|
774 |
+
msgstr "Teljes ellenőrzés futtatása"
|
775 |
+
|
776 |
+
#: index.php:755
|
777 |
+
msgid "What to look for:"
|
778 |
+
msgstr "Mire figyeljünk:"
|
779 |
+
|
780 |
+
#: index.php:755
|
781 |
+
msgid ""
|
782 |
+
"Check for all threat types, if any of these are in red or otherwise "
|
783 |
+
"unavailable then please download the latest definition updates."
|
784 |
+
msgstr ""
|
785 |
+
"Jelölje be az összes fenyegetéstípust, ha ezek közül bármelyik piros vagy "
|
786 |
+
"más módon nem érhető el, akkor töltse le a legújabb definíciós frissítéseket."
|
787 |
+
|
788 |
+
#: index.php:780
|
789 |
+
msgid "Download Definition Updates to Use this feature"
|
790 |
+
msgstr "A szolgáltatás használatához letöltheti a definíciófrissítéseket"
|
791 |
+
|
792 |
+
#: index.php:780
|
793 |
+
msgid "Download the new definitions (Right sidebar) to activate this feature."
|
794 |
+
msgstr ""
|
795 |
+
"Töltse le az új definíciókat (jobb oldalsávon), hogy aktiválja ezt a "
|
796 |
+
"funkciót."
|
797 |
+
|
798 |
+
#: index.php:784
|
799 |
+
msgid "What to scan:"
|
800 |
+
msgstr "Mit vizsgáljunk:"
|
801 |
+
|
802 |
+
#: index.php:784
|
803 |
+
#, php-format
|
804 |
+
msgid ""
|
805 |
+
"The higher up in the directory hierarchy you start the more sub-directories "
|
806 |
+
"get scanned (e.g. scanning the %s directory will also include the sub-"
|
807 |
+
"directories wp-content and plugins within it)."
|
808 |
+
msgstr ""
|
809 |
+
"Minél magasabbra kerül a könyvtári hierarchiában, annál több alkönyvtárat "
|
810 |
+
"vizsgálunk át (pl. a %s könyvtár szkennelése magában foglalja az "
|
811 |
+
"alkönyvtárak wp-tartalmát és plugin mappák tartalmát is)."
|
812 |
+
|
813 |
+
#: index.php:786
|
814 |
+
msgid "Directory Scan Depth:"
|
815 |
+
msgstr "Könyvtár beolvasási mélysége:"
|
816 |
+
|
817 |
+
#: index.php:786
|
818 |
+
msgid ""
|
819 |
+
"How many directories deep to scan: -1 is infinite depth, 0 to skip the file "
|
820 |
+
"scan completely."
|
821 |
+
msgstr ""
|
822 |
+
"Hány könyvtár mélységig kell beolvasni: -1 végtelen mélység, 0 kihagyni a "
|
823 |
+
"fájlvizsgálat teljesen."
|
824 |
+
|
825 |
+
#: index.php:802
|
826 |
+
msgid "Custom RegExp:"
|
827 |
+
msgstr "Egyéni RegExp:"
|
828 |
+
|
829 |
+
#: index.php:802
|
830 |
+
msgid ""
|
831 |
+
"For very advanced users only. Do not use this without talking to Eli first. "
|
832 |
+
"If used incorrectly you could easily break your site."
|
833 |
+
msgstr ""
|
834 |
+
"Csak nagyon haladó felhasználók számára. Ne használja ezt anélkül, hogy "
|
835 |
+
"először beszélne Eli-vel. Helytelen használat esetén könnyen megtörheti "
|
836 |
+
"webhelyét."
|
837 |
+
|
838 |
+
#: index.php:807
|
839 |
+
msgid "Skip files with the following extensions:"
|
840 |
+
msgstr "A következő kiterjesztésű fájlok kihagyása:"
|
841 |
+
|
842 |
+
#: index.php:808
|
843 |
+
msgid "a comma separated list of file extentions to skip"
|
844 |
+
msgstr "kihagyni kívánt fájl kiterjesztések vesszővel elválasztott listája"
|
845 |
+
|
846 |
+
#: index.php:808
|
847 |
+
msgid "Skip directories with the following names:"
|
848 |
+
msgstr "Hagyja ki a következő nevű könyvtárakat:"
|
849 |
+
|
850 |
+
#: index.php:808
|
851 |
+
msgid "a folder name or comma separated list of folder names to skip"
|
852 |
+
msgstr "az átugrandó mappanév vagy vesszővel elválasztott mappanevek listája"
|
853 |
+
|
854 |
+
#: index.php:809
|
855 |
+
msgid "Automatically Update Definitions:"
|
856 |
+
msgstr "Definíciók automatikus frissítése:"
|
857 |
+
|
858 |
+
#: index.php:809
|
859 |
+
msgid ""
|
860 |
+
"This feature is only available to registered users who have donated at a "
|
861 |
+
"certain level."
|
862 |
+
msgstr ""
|
863 |
+
"Ez a funkció csak regisztrált felhasználók számára érhető el, akik egy "
|
864 |
+
"bizonyos szinten adományoztak."
|
865 |
+
|
866 |
+
#: index.php:809
|
867 |
+
msgid "Save Settings"
|
868 |
+
msgstr "Beállítások mentése"
|
869 |
+
|
870 |
+
#: index.php:820
|
871 |
+
#, php-format
|
872 |
+
msgid ""
|
873 |
+
"Another Plugin or Theme is using '%s' to handle output buffers. <br />This "
|
874 |
+
"prevents actively outputing the buffer on-the-fly and could severely degrade "
|
875 |
+
"the performance of this (and many other) Plugins. <br />Consider disabling "
|
876 |
+
"caching and compression plugins (at least during the scanning process)."
|
877 |
+
msgstr ""
|
878 |
+
"Egy másik plugin vagy téma a használja '%s' a kimeneti puffereket. <br />Ez "
|
879 |
+
"megakadályozza a puffer menet közbeni aktív kibocsátását, és súlyosan "
|
880 |
+
"ronthatja ennek (és sok más) bővítménynek a teljesítményét. <br />Fontolja "
|
881 |
+
"meg a caching és a tömörítési bővítmények letiltását (legalábbis a "
|
882 |
+
"szkennelési folyamat során)."
|
883 |
+
|
884 |
+
#: index.php:822
|
885 |
+
msgid "Scanned Files"
|
886 |
+
msgstr "Ellenőrzött fájlok"
|
887 |
+
|
888 |
+
#: index.php:822
|
889 |
+
msgid "Selected Folders"
|
890 |
+
msgstr "Kijelölt mappák"
|
891 |
+
|
892 |
+
#: index.php:822
|
893 |
+
msgid "Scanned Folders"
|
894 |
+
msgstr "Ellenőrzött mappák"
|
895 |
+
|
896 |
+
#: index.php:822
|
897 |
+
msgid "Skipped Folders"
|
898 |
+
msgstr "Kihagyott mappák"
|
899 |
+
|
900 |
+
#: index.php:822
|
901 |
+
msgid "Skipped Files"
|
902 |
+
msgstr "Kihagyott fájlok"
|
903 |
+
|
904 |
+
#: index.php:822
|
905 |
+
msgid "Scan/Read Errors"
|
906 |
+
msgstr "Beolvasási/olvasási hibák"
|
907 |
+
|
908 |
+
#: index.php:822
|
909 |
+
msgid "Quarantined Files"
|
910 |
+
msgstr "Karanténba helyezett fájlok"
|
911 |
+
|
912 |
+
#: index.php:854
|
913 |
+
msgid "WP-Login Updates"
|
914 |
+
msgstr "WP-Login frissítések"
|
915 |
+
|
916 |
+
#: index.php:886
|
917 |
+
msgid "Scan Complete!"
|
918 |
+
msgstr "Ellenőrzés kész!"
|
919 |
+
|
920 |
+
#: index.php:937
|
921 |
+
msgid ""
|
922 |
+
"Directory Scan Depth set to 0, no files will be scanned for this type of "
|
923 |
+
"threat!"
|
924 |
+
msgstr ""
|
925 |
+
"A mappa szkennelési mélysége 0-ra van állítva, az ilyen típusú "
|
926 |
+
"fenyegetésekre nem lesznek beolvasva a fájlok!"
|
927 |
+
|
928 |
+
#: index.php:939
|
929 |
+
msgid "You are not currently scanning for this type of threat!"
|
930 |
+
msgstr "Jelenleg nem keres ilyen típusú fenyegetést!"
|
931 |
+
|
932 |
+
#: index.php:966
|
933 |
+
msgid ""
|
934 |
+
"Saving these settings requires a valid Nonce Token. No valid Nonce Token was "
|
935 |
+
"found at this time, either because the token have expired or because the "
|
936 |
+
"data was invalid. Please try re-submitting the form above."
|
937 |
+
msgstr ""
|
938 |
+
"Ezen beállítások mentéséhez érvényes Nonce Token szükséges. Jelenleg nem "
|
939 |
+
"található érvényes Nonce token, vagy azért, mert a token lejárt, vagy azért, "
|
940 |
+
"mert az adatok érvénytelenek voltak. Kérjük, küldje el újra a fenti űrlapot."
|
941 |
+
|
942 |
+
#: index.php:967 index.php:1127
|
943 |
+
msgid "Scan History"
|
944 |
+
msgstr "Beolvasási előzmények"
|
945 |
+
|
946 |
+
#: index.php:996
|
947 |
+
msgid ""
|
948 |
+
"The Quick Scan was unable to finish because of a shortage of memory or a "
|
949 |
+
"problem accessing a file. Please try using the Complete Scan, it is slower "
|
950 |
+
"but it will handle these errors better and continue scanning the rest of the "
|
951 |
+
"files."
|
952 |
+
msgstr ""
|
953 |
+
"A gyorsvizsgálat nem tudta befejezni a memóriahiány, vagy a fájl elérésével "
|
954 |
+
"kapcsolatos probléma miatt. Kérjük, próbálja meg a teljes vizsgálatot, ez "
|
955 |
+
"lassabb, de jobban kezeli ezeket a hibákat, majd folytassa a szkennelés a "
|
956 |
+
"többi fájlt."
|
957 |
+
|
958 |
+
#: index.php:1015
|
959 |
+
msgid ""
|
960 |
+
"NOTE: These are probably not malicious scripts (but it's a good place to "
|
961 |
+
"start looking <u>IF</u> your site is infected and no Known Threats were "
|
962 |
+
"found)."
|
963 |
+
msgstr ""
|
964 |
+
"MEGJEGYZÉS: Ezek valószínűleg nem rosszindulatú szkriptek (de ez egy jó hely "
|
965 |
+
"arra, hogy elkezdje keresni, <u>ha</u> webhelye fertőzött, és nem találtak "
|
966 |
+
"ismert fenyegetéseket)."
|
967 |
+
|
968 |
+
#: index.php:1015
|
969 |
+
#, php-format
|
970 |
+
msgid ""
|
971 |
+
"NOTE: We have detected changes to the WordPress Core files on your site. "
|
972 |
+
"This could be an intentional modification or the malicious work of a hacker. "
|
973 |
+
"We can restore these files to their original state to preserve the integrity "
|
974 |
+
"of your original WordPress %s installation."
|
975 |
+
msgstr ""
|
976 |
+
"Megjegyzés: észleltük változások a WordPress Core fájlokat a webhelyen. Ez "
|
977 |
+
"lehet egy szándékos módosítás, vagy egy hacker rosszindulatú munkája. "
|
978 |
+
"Visszaállíthatjuk ezeket a fájlokat eredeti állapotukba, hogy megőrizzük az "
|
979 |
+
"eredeti WordPress %s telepítés integritását."
|
980 |
+
|
981 |
+
#: index.php:1019
|
982 |
+
msgid "Scan Details:"
|
983 |
+
msgstr "Ellenőrzés részletei:"
|
984 |
+
|
985 |
+
#: index.php:1020
|
986 |
+
#, php-format
|
987 |
+
msgid "Not flushing OB Handlers: %s"
|
988 |
+
msgstr "Nem öblíti le az OB kezelőket: %s"
|
989 |
+
|
990 |
+
#: index.php:1055
|
991 |
+
msgid "Completed!"
|
992 |
+
msgstr "Kész!"
|
993 |
+
|
994 |
+
#: index.php:1057
|
995 |
+
msgid "Starting Scan ..."
|
996 |
+
msgstr "Ellenőrzés kezdése..."
|
997 |
+
|
998 |
+
#: index.php:1125
|
999 |
+
msgid ""
|
1000 |
+
"Starting a Complete Scan requires a valid Nonce Token. No valid Nonce Token "
|
1001 |
+
"was found at this time, either because the token have expired or because the "
|
1002 |
+
"data was invalid. Please try re-submitting the form above."
|
1003 |
+
msgstr ""
|
1004 |
+
"A teljes vizsgálat elindításához érvényes Nonce Token szükséges. Ekkor nem "
|
1005 |
+
"találtak érvényes Nonce Tokent, sem azért, mert a token lejárt, sem azért, "
|
1006 |
+
"mert az adatok érvénytelenek voltak. Kérjük, próbálja meg újra benyújtani a "
|
1007 |
+
"fenti űrlapot."
|
1008 |
+
|
1009 |
+
#: index.php:1289
|
1010 |
+
msgid "Your Server could not start a Session!"
|
1011 |
+
msgstr "A szerver nem tudott elindítani egy munkamenetet!"
|
1012 |
+
|
1013 |
+
#: index.php:1297
|
1014 |
+
msgid "Default position"
|
1015 |
+
msgstr "Alapértelmezett pozíció"
|
1016 |
+
|
1017 |
+
#: index.php:1319
|
1018 |
+
msgid "New position"
|
1019 |
+
msgstr "Új pozíció"
|
1020 |
+
|
1021 |
+
#: index.php:1323
|
1022 |
+
msgid "saved."
|
1023 |
+
msgstr "mentett."
|
1024 |
+
|
1025 |
+
#: index.php:1336
|
1026 |
+
msgid "Failed to empty the trash."
|
1027 |
+
msgstr "Nem sikerült kiüríteni a lomtárat."
|
1028 |
+
|
1029 |
+
#: index.php:1390
|
1030 |
+
msgid "Failed to remove!"
|
1031 |
+
msgstr "Nem sikerült eltávolítani!"
|
1032 |
+
|
1033 |
+
#: index.php:1405 index.php:1423
|
1034 |
+
msgid "Complete!"
|
1035 |
+
msgstr "Teljesítve!"
|
1036 |
+
|
1037 |
+
#: index.php:1409
|
1038 |
+
msgid "Restoration Failed!"
|
1039 |
+
msgstr "A helyreállítás nem sikerült!"
|
1040 |
+
|
1041 |
+
#: index.php:1413
|
1042 |
+
msgid ""
|
1043 |
+
"Restoration Aborted, post_content was modified outside of this quarantine!"
|
1044 |
+
"<pre>"
|
1045 |
+
msgstr ""
|
1046 |
+
"A helyreállítás megszakítva, a post_content-et a karanténon kívül "
|
1047 |
+
"módosították!<pre>"
|
1048 |
+
|
1049 |
+
#: index.php:1417 index.php:1426
|
1050 |
+
msgid "Restore Failed!"
|
1051 |
+
msgstr "Visszaállítás sikertelen!"
|
1052 |
+
|
1053 |
+
#: index.php:1451
|
1054 |
+
#, php-format
|
1055 |
+
msgid "File %s not found!"
|
1056 |
+
msgstr "Fájl %s nem található!"
|
1057 |
+
|
1058 |
+
#: index.php:1456
|
1059 |
+
#, php-format
|
1060 |
+
msgid ""
|
1061 |
+
"Because some changes were made we need to check to make sure it did not "
|
1062 |
+
"break your site. If this stays Red and the frame below does not load please "
|
1063 |
+
"<a %s>revert the changes</a> made during this automated fix process."
|
1064 |
+
msgstr ""
|
1065 |
+
"Mivel néhány változás történt meg kell ellenőrizni, hogy megbizonyosodjon "
|
1066 |
+
"arról, hogy nem tört a webhely. Ha ez piros marad, és az alábbi keret nem "
|
1067 |
+
"töltődik be, kérjük, <a %s>állítsa vissza az automatizált javítási folyamat "
|
1068 |
+
"során végrehajtott</a> változtatásokat."
|
1069 |
+
|
1070 |
+
#: index.php:1456
|
1071 |
+
msgid "Never mind, it worked!"
|
1072 |
+
msgstr "Nem baj, működött!"
|
1073 |
+
|
1074 |
+
#: index.php:1458
|
1075 |
+
msgid "Nothing Selected to be Changed!"
|
1076 |
+
msgstr "Semmit sem kell megváltoztatni!"
|
1077 |
+
|
1078 |
+
#: index.php:1528
|
1079 |
+
msgid ""
|
1080 |
+
"Are you sure you want to delete the record of this file from the quarantine?"
|
1081 |
+
msgstr "Biztos, hogy törölni szeretné a fájl rekordját a karanténból?"
|
1082 |
+
|
1083 |
+
#: index.php:1530
|
1084 |
+
msgid "This record no longer exists in the quarantine."
|
1085 |
+
msgstr "Ez a rekord már nem létezik a karanténban."
|
1086 |
+
|
1087 |
+
#: index.php:1545
|
1088 |
+
msgid "Re-Starting Database Scan ..."
|
1089 |
+
msgstr "Adatbázis-ellenőrzés újraindítása ..."
|
1090 |
+
|
1091 |
+
#: index.php:1569
|
1092 |
+
msgid "Re-Starting Encoded Database Scan ..."
|
1093 |
+
msgstr "A kódolt adatbázis-keresés újraindítása ..."
|
1094 |
+
|
1095 |
+
#: index.php:1607
|
1096 |
+
msgid ""
|
1097 |
+
"Are you sure this file is not infected and you want to ignore it in future "
|
1098 |
+
"scans?"
|
1099 |
+
msgstr ""
|
1100 |
+
"Biztos benne, hogy ez a fájl nem fertőzött, és szeretné figyelmen kívül "
|
1101 |
+
"hagyni azt a jövőbeni vizsgálatkor?"
|
1102 |
+
|
1103 |
+
#: index.php:1607
|
1104 |
+
msgid "Potential threats in file:"
|
1105 |
+
msgstr "Potenciális fenyegetések a fájlban:"
|
1106 |
+
|
1107 |
+
#: index.php:1609
|
1108 |
+
#, php-format
|
1109 |
+
msgid "The file %s does not exist, it must have already been deleted."
|
1110 |
+
msgstr "A fájl (%s) nem létezik, ezért már törölték."
|
1111 |
+
|
1112 |
+
#: safe-load/trace.php:18
|
1113 |
+
#, php-format
|
1114 |
+
msgid ": Headers sent by %1$s on line %2$s."
|
1115 |
+
msgstr ": Headers sent by %1$s a következőre %2$s."
|
1116 |
+
|
1117 |
+
#. Plugin Name of the plugin/theme
|
1118 |
+
msgid "Anti-Malware Security and Brute-Force Firewall"
|
1119 |
+
msgstr "Brute-Force anti-malware biztonsági tűzfal"
|
1120 |
+
|
1121 |
+
#. Plugin URI of the plugin/theme
|
1122 |
+
msgid "https://gotmls.net/"
|
1123 |
+
msgstr "https://gotmls.net/"
|
1124 |
+
|
1125 |
+
#. Description of the plugin/theme
|
1126 |
+
msgid ""
|
1127 |
+
"This Anti-Virus/Anti-Malware plugin searches for Malware and other Virus "
|
1128 |
+
"like threats and vulnerabilities on your server and helps you remove them. "
|
1129 |
+
"It's always growing and changing to adapt to new threats so let me know if "
|
1130 |
+
"it's not working for you."
|
1131 |
+
msgstr ""
|
1132 |
+
"A vírusírtó/Anti-Malware plugin megkeresi és más vírus, mint a fenyegetések "
|
1133 |
+
"és a biztonsági rések a szerveren, és segít eltávolítani őket. A növekvő és "
|
1134 |
+
"változó annak érdekében, hogy a veszélyforrásokat, tudasd velem, ha nem "
|
1135 |
+
"működik."
|
1136 |
+
|
1137 |
+
#. Author of the plugin/theme
|
1138 |
+
msgid "Eli Scheetz"
|
1139 |
+
msgstr "Eli Scheetz"
|
1140 |
+
|
1141 |
+
#. Author URI of the plugin/theme
|
1142 |
+
msgid "http://wordpress.ieonly.com/category/my-plugins/anti-malware/"
|
1143 |
+
msgstr "http://wordpress.ieonly.com/category/my-plugins/anti-malware/"
|
readme.txt
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
=== Anti-Malware Security and Brute-Force Firewall ===
|
2 |
-
Plugin URI:
|
3 |
Author: Eli Scheetz
|
4 |
Author URI: http://wordpress.ieonly.com/category/my-plugins/anti-malware/
|
5 |
Contributors: scheeeli, gotmls
|
6 |
Donate link: https://gotmls.net/donate/
|
7 |
Tags: security, firewall, anti-malware, scanner, automatic, repair, remove, malware, virus, threat, hacked, malicious, infection, timthumb, exploit, block, brute-force, wp-login, patch, antimalware, revslider, Revolution Slider
|
8 |
-
Version: 4.20.
|
9 |
-
Stable tag: 4.20.
|
10 |
Requires at least: 3.3
|
11 |
-
Tested up to: 5.
|
12 |
|
13 |
This Anti-Malware scanner searches for Malware, Viruses, and other security threats and vulnerabilities on your server and it helps you fix them.
|
14 |
|
@@ -37,6 +37,7 @@ NOTICE: This plugin make call to GOTMLS.NET to check for updates not unlike what
|
|
37 |
* Jelena Kovacevic and Andrew Kurtis of webhostinghub.com for providing the Spanish translation.
|
38 |
* Marcelo Guernieri for the Brazilian Portuguese translation.
|
39 |
* Umut Can Alparslan for the Turkish translation.
|
|
|
40 |
|
41 |
== Installation ==
|
42 |
|
@@ -92,6 +93,12 @@ sucuri.net caches their scan results and will not refresh the scan until you cli
|
|
92 |
|
93 |
== Changelog ==
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
= 4.20.72 =
|
96 |
* Updated registration form to be more compatible with newer iframe restrictions.
|
97 |
* Fixed session check on the Brute-Force patch to no longer need mod_rewrite.
|
@@ -362,6 +369,9 @@ sucuri.net caches their scan results and will not refresh the scan until you cli
|
|
362 |
|
363 |
== Upgrade Notice ==
|
364 |
|
|
|
|
|
|
|
365 |
= 4.20.72 =
|
366 |
Updated registration form, fixed session check, and removed older code from WordPress Repository.
|
367 |
|
1 |
=== Anti-Malware Security and Brute-Force Firewall ===
|
2 |
+
Plugin URI: https://gotmls.net/
|
3 |
Author: Eli Scheetz
|
4 |
Author URI: http://wordpress.ieonly.com/category/my-plugins/anti-malware/
|
5 |
Contributors: scheeeli, gotmls
|
6 |
Donate link: https://gotmls.net/donate/
|
7 |
Tags: security, firewall, anti-malware, scanner, automatic, repair, remove, malware, virus, threat, hacked, malicious, infection, timthumb, exploit, block, brute-force, wp-login, patch, antimalware, revslider, Revolution Slider
|
8 |
+
Version: 4.20.92
|
9 |
+
Stable tag: 4.20.92
|
10 |
Requires at least: 3.3
|
11 |
+
Tested up to: 5.8.1
|
12 |
|
13 |
This Anti-Malware scanner searches for Malware, Viruses, and other security threats and vulnerabilities on your server and it helps you fix them.
|
14 |
|
37 |
* Jelena Kovacevic and Andrew Kurtis of webhostinghub.com for providing the Spanish translation.
|
38 |
* Marcelo Guernieri for the Brazilian Portuguese translation.
|
39 |
* Umut Can Alparslan for the Turkish translation.
|
40 |
+
* Micha Cassola for the German translation.
|
41 |
|
42 |
== Installation ==
|
43 |
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 4.20.92 =
|
97 |
+
* Added German translation thanks to Micha Cassola.
|
98 |
+
* Improved the Apache software version checker for better firewall compatibility.
|
99 |
+
* Fixed session compatibility that was conflicting with the REST API check in Site Health.
|
100 |
+
* Checked code for compatibility with WordPress 5.8.1 and ClassicPress 1.3.1.
|
101 |
+
|
102 |
= 4.20.72 =
|
103 |
* Updated registration form to be more compatible with newer iframe restrictions.
|
104 |
* Fixed session check on the Brute-Force patch to no longer need mod_rewrite.
|
369 |
|
370 |
== Upgrade Notice ==
|
371 |
|
372 |
+
= 4.20.92 =
|
373 |
+
Added German translation, improved firewall compatibility with Apache, fixed session check in Site Health for REST API compatibility, and checked code compatibility with WordPress 5.8.1 and ClassicPress 1.3.1.
|
374 |
+
|
375 |
= 4.20.72 =
|
376 |
Updated registration form, fixed session check, and removed older code from WordPress Repository.
|
377 |
|
safe-load/wp-login.php
CHANGED
@@ -91,4 +91,5 @@ if ((GOTMLS_REQUEST_METHOD == "POST") && isset($_POST["log"]) && isset($_POST["p
|
|
91 |
$_SESSION["GOTMLS_detected_attacks"] = '';
|
92 |
$_SESSION["GOTMLS_login_attempts"] = 0;
|
93 |
}
|
|
|
94 |
}
|
91 |
$_SESSION["GOTMLS_detected_attacks"] = '';
|
92 |
$_SESSION["GOTMLS_login_attempts"] = 0;
|
93 |
}
|
94 |
+
session_write_close();
|
95 |
}
|