From: Jo-Philipp Wich Date: Thu, 12 Jul 2018 15:00:21 +0000 (+0200) Subject: luci-proto-ncm: register further network error codes X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5f2aa8d4752546400b336ad4a10a9ea5543357c9;p=oweals%2Fluci.git luci-proto-ncm: register further network error codes Signed-off-by: Jo-Philipp Wich --- diff --git a/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua b/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua index 4f835701c..49abe2347 100644 --- a/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua +++ b/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua @@ -59,3 +59,11 @@ function proto.contains_interface(self, ifc) end netmod:register_pattern_virtual("^ncm%-%w") + +netmod:register_error_code("CONFIGURE_FAILED", luci.i18n.translate("Configuration failed")) +netmod:register_error_code("DISCONNECT_FAILED", luci.i18n.translate("Disconnection attempt failed")) +netmod:register_error_code("FINALIZE_FAILED", luci.i18n.translate("Finalizing failed")) +netmod:register_error_code("GETINFO_FAILED", luci.i18n.translate("Modem information query failed")) +netmod:register_error_code("INITIALIZE_FAILED", luci.i18n.translate("Initialization failure")) +netmod:register_error_code("SETMODE_FAILED", luci.i18n.translate("Setting operation mode failed")) +netmod:register_error_code("UNSUPPORTED_MODEM", luci.i18n.translate("Unsupported modem"))