Skip to content

Commit b311113

Browse files
committed
Fix Spanish translations and improve HTML attributes in config files and report
1 parent 4398413 commit b311113

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

front/plugins/vendor_update/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
},
379379
{
380380
"language_code": "es_es",
381-
"string": "Envíe una notificación solo en estos estados. <code>new</code> significa que se descubrió un nuevo objeto único (combinación única de PrimaryId y SecondaryId). <code>watched-changed</code> significa que seleccionó <code>watchedValueN Las columnas </code> cambiaron."
381+
"string": "Envíe una notificación solo en estos estados. <code>new</code> significa que se descubrió un nuevo objeto único (combinación única de PrimaryId y SecondaryId). <code>watched-changed</code> significa que las columnas <code>watchedValueN</code> seleccionadas cambiaron."
382382
},
383383
{
384384
"language_code": "de_de",

front/plugins/website_monitor/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@
605605
"description": [
606606
{
607607
"language_code": "en_us",
608-
"string": "Send a notification only on these statuses. <code>new</code> means a new unique (unique combination of PrimaryId and SecondaryId) object was discovered. <code>watched-changed</code> means that selected <code>watchedValueN</code> columns changed."
608+
"string": "Send a notification only on these statuses. <code>new</code> means a new unique (unique combination of objectPrimaryId and objectSecondaryId) object was discovered. <code>watched-changed</code> means that selected <code>watchedValueN</code> columns changed."
609609
},
610610
{
611611
"language_code": "es_es",

front/report.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function updateData(format, index) {
109109
</pre>`;
110110
break;
111111
case 'text':
112-
notificationData.innerHTML = `<pre class="logs" cols="70" rows="10" wrap="off" readonly">${formatData}</pre>`;
112+
notificationData.innerHTML = `<pre class="logs" cols="70" rows="10" wrap="off" readonly="">${formatData}</pre>`;
113113
break;
114114
}
115115

server/initialise.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,7 @@ def renameSettings(config_file):
862862
r"\beve_AdditionalInfo\b": "eveAdditionalInfo",
863863
r"\beve_PendingAlertEmail\b": "evePendingAlertEmail",
864864
r"\beve_PairEventRowid\b": "evePairEventRowid",
865+
r"\beve_PairEventRowID\b": "evePairEventRowid",
865866
# Session columns
866867
r"\bses_MAC\b": "sesMac",
867868
r"\bses_IP\b": "sesIp",

0 commit comments

Comments
 (0)