From b311113575fc62e1b0dbef9077953e99998fbf3f Mon Sep 17 00:00:00 2001
From: "Jokob @NetAlertX" <96159884+jokob-sk@users.noreply.github.com>
Date: Tue, 17 Mar 2026 11:58:53 +0000
Subject: [PATCH] Fix Spanish translations and improve HTML attributes in
config files and report
---
front/plugins/vendor_update/config.json | 2 +-
front/plugins/website_monitor/config.json | 2 +-
front/report.php | 2 +-
server/initialise.py | 1 +
4 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/front/plugins/vendor_update/config.json b/front/plugins/vendor_update/config.json
index 6cba3f85..3625550d 100755
--- a/front/plugins/vendor_update/config.json
+++ b/front/plugins/vendor_update/config.json
@@ -378,7 +378,7 @@
},
{
"language_code": "es_es",
- "string": "Envíe una notificación solo en estos estados. new significa que se descubrió un nuevo objeto único (combinación única de PrimaryId y SecondaryId). watched-changed significa que seleccionó watchedValueN Las columnas cambiaron."
+ "string": "Envíe una notificación solo en estos estados. new significa que se descubrió un nuevo objeto único (combinación única de PrimaryId y SecondaryId). watched-changed significa que las columnas watchedValueN seleccionadas cambiaron."
},
{
"language_code": "de_de",
diff --git a/front/plugins/website_monitor/config.json b/front/plugins/website_monitor/config.json
index 26db306f..0e4c7e7f 100755
--- a/front/plugins/website_monitor/config.json
+++ b/front/plugins/website_monitor/config.json
@@ -605,7 +605,7 @@
"description": [
{
"language_code": "en_us",
- "string": "Send a notification only on these statuses. new means a new unique (unique combination of PrimaryId and SecondaryId) object was discovered. watched-changed means that selected watchedValueN columns changed."
+ "string": "Send a notification only on these statuses. new means a new unique (unique combination of objectPrimaryId and objectSecondaryId) object was discovered. watched-changed means that selected watchedValueN columns changed."
},
{
"language_code": "es_es",
diff --git a/front/report.php b/front/report.php
index 6f6c5bf6..33afb736 100755
--- a/front/report.php
+++ b/front/report.php
@@ -109,7 +109,7 @@
`;
break;
case 'text':
- notificationData.innerHTML = `
${formatData}`;
+ notificationData.innerHTML = `${formatData}`;
break;
}
diff --git a/server/initialise.py b/server/initialise.py
index fcd48152..740d7cef 100755
--- a/server/initialise.py
+++ b/server/initialise.py
@@ -862,6 +862,7 @@ _column_replacements = {
r"\beve_AdditionalInfo\b": "eveAdditionalInfo",
r"\beve_PendingAlertEmail\b": "evePendingAlertEmail",
r"\beve_PairEventRowid\b": "evePairEventRowid",
+ r"\beve_PairEventRowID\b": "evePairEventRowid",
# Session columns
r"\bses_MAC\b": "sesMac",
r"\bses_IP\b": "sesIp",