From b2c3e103354b5469ed10ea566651ec952a2bfb4d Mon Sep 17 00:00:00 2001 From: LordGrey <48840279+Lord-Grey@users.noreply.github.com> Date: Mon, 17 Jul 2023 20:25:28 +0200 Subject: [PATCH] Fix misspelled explanation + improve description --- assets/webconfig/i18n/en.json | 4 +++- libsrc/hyperion/schema/schema-webConfig.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/webconfig/i18n/en.json b/assets/webconfig/i18n/en.json index 6845685d..263c8bd6 100644 --- a/assets/webconfig/i18n/en.json +++ b/assets/webconfig/i18n/en.json @@ -560,7 +560,9 @@ "edt_conf_webc_keyPassPhrase_title": "Key password", "edt_conf_webc_keyPath_expl": "Path to the key file (format PEM, encrypted with RSA)", "edt_conf_webc_keyPath_title": "Private key path", - "edt_conf_webc_sslport_expl": "Port oft the HTTPS-Webserver", + "edt_conf_webc_port_expl": "Port for the WebServer, RPC and WebSocket HTTP connections", + "edt_conf_webc_port_title": "HTTP Port", + "edt_conf_webc_sslport_expl": "Port for the WebServer, RPC and WebSocket HTTPS connections", "edt_conf_webc_sslport_title": "HTTPS Port", "edt_dev_auth_key_title": "Authentication Token", "edt_dev_auth_key_title_info": "Authentication Token required to acccess the device", diff --git a/libsrc/hyperion/schema/schema-webConfig.json b/libsrc/hyperion/schema/schema-webConfig.json index 17d9e60d..6101dc76 100644 --- a/libsrc/hyperion/schema/schema-webConfig.json +++ b/libsrc/hyperion/schema/schema-webConfig.json @@ -13,7 +13,7 @@ "port" : { "type" : "integer", - "title" : "edt_conf_general_port_title", + "title" : "edt_conf_webc_port_title", "minimum" : 80, "maximum" : 65535, "default" : 8090,