From eb94986f959024174b9d9bbc77dee98874be6c88 Mon Sep 17 00:00:00 2001 From: luccioman Date: Tue, 12 Jun 2018 14:19:22 +0200 Subject: [PATCH] Added Italian in available web interface languages list --- htroot/ConfigBasic.html | 3 ++- htroot/ConfigBasic.java | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/htroot/ConfigBasic.html b/htroot/ConfigBasic.html index 60f7f7abc..c14741eb6 100644 --- a/htroot/ConfigBasic.html +++ b/htroot/ConfigBasic.html @@ -43,7 +43,8 @@ - + + diff --git a/htroot/ConfigBasic.java b/htroot/ConfigBasic.java index 3345f7aec..69f0ce6bc 100644 --- a/htroot/ConfigBasic.java +++ b/htroot/ConfigBasic.java @@ -317,6 +317,7 @@ public class ConfigBasic { prop.put("lang_en", "0"); prop.put("lang_ja", "0"); prop.put("lang_el", "0"); + prop.put("lang_it", "0"); if ("default".equals(lang)) { prop.put("lang_en", "1"); } else { @@ -331,6 +332,7 @@ public class ConfigBasic { prop.put("active_hi", l.contains("hi") ? "2" : "1"); prop.put("active_ja", l.contains("ja") ? "2" : "1"); prop.put("active_el", l.contains("el") ? "2" : "1"); + prop.put("active_it", l.contains("it") ? "2" : "1"); prop.put("active_ru", l.contains("ru") ? "2" : "1"); prop.put("active_uk", l.contains("uk") ? "2" : "1"); prop.put("active_en", "2"); @@ -345,6 +347,7 @@ public class ConfigBasic { prop.put("active_en", "0"); prop.put("active_ja", "0"); prop.put("active_el", "0"); + prop.put("active_it", "0"); } return prop; }