Small changes regarding Analysis translation
This commit is contained in:
parent
059bada281
commit
1cd025b2ea
@ -451,7 +451,7 @@ class Report(object):
|
|||||||
color:#CCC;
|
color:#CCC;
|
||||||
}
|
}
|
||||||
@bottom-center {
|
@bottom-center {
|
||||||
content: REPORT_FOOTER;
|
content: "REPORT_FOOTER";
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
color:#CCC;
|
color:#CCC;
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ class SuricataEngine():
|
|||||||
# Load template language
|
# Load template language
|
||||||
if not re.match("^[a-z]{2,3}$", self.userlang):
|
if not re.match("^[a-z]{2,3}$", self.userlang):
|
||||||
self.userlang = "en"
|
self.userlang = "en"
|
||||||
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "lang/{}.json".format(self.userlang))) as f:
|
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "locales/{}.json".format(self.userlang))) as f:
|
||||||
self.template = json.load(f)["alerts"]
|
self.template = json.load(f)["alerts"]
|
||||||
|
|
||||||
def start_suricata(self):
|
def start_suricata(self):
|
||||||
|
@ -35,7 +35,7 @@ class ZeekEngine(object):
|
|||||||
# Load template language
|
# Load template language
|
||||||
if not re.match("^[a-z]{2,3}$", self.userlang):
|
if not re.match("^[a-z]{2,3}$", self.userlang):
|
||||||
self.userlang = "en"
|
self.userlang = "en"
|
||||||
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "lang/{}.json".format(self.userlang))) as f:
|
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "locales/{}.json".format(self.userlang))) as f:
|
||||||
self.template = json.load(f)["alerts"]
|
self.template = json.load(f)["alerts"]
|
||||||
|
|
||||||
def fill_dns(self, dir):
|
def fill_dns(self, dir):
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
},
|
},
|
||||||
"report": {
|
"report": {
|
||||||
"numbers": [
|
"numbers": [
|
||||||
"un",
|
"une",
|
||||||
"deux",
|
"deux",
|
||||||
"trois",
|
"trois",
|
||||||
"quatre",
|
"quatre",
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"report_footer": "Ce rapport a été automatiquement généré par une instance de TinyCheck. Pour toute question et retours, n'hésitez pas à contacter tinycheck@kaspersky.com.",
|
"report_footer": "Ce rapport a été automatiquement généré par une instance de TinyCheck. Pour toute question et retours, n'hésitez pas à contacter tinycheck@kaspersky.com.",
|
||||||
"high_msg": "Votre appareil semble être compromis car vous avez {} alerte(s) élevée(s).",
|
"high_msg": "Votre appareil semble être compromis car vous avez {} alerte(s) élevée(s).",
|
||||||
"moderate_msg": "Vous avez {} alerte(s) modérée(s), votre appareil peut être compromis. Regardez ces alertes en détail.",
|
"moderate_msg": "Vous avez {} alerte(s) modérée(s), votre appareil peut être compromis. Regardez ces alertes en détail.",
|
||||||
"low_msg": "Vous avez uniquement {} alerte(s) faibles, n'hésitez pas à les regarder, on ne sait jamais...",
|
"low_msg": "Vous avez uniquement {} alerte(s) faibles, n'hésitez pas à les consulter.",
|
||||||
"none_msg": "Toute semble normal, vous avez aucune alerte. Cependant, n'hésitez pas à regarder les communications non catégorisées."
|
"none_msg": "Toute semble normal, vous avez aucune alerte. Cependant, n'hésitez pas à regarder les communications non catégorisées."
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user