diff options
author | Florian Eckert <fe@dev.tdt.de> | 2021-04-08 15:06:51 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2021-04-08 16:25:28 +0200 |
commit | 0e29a0ecc686c0c19e9a1964e60b687844fd517b (patch) | |
tree | e593b07beaebba583f19d0adf7d5b1303e38eb80 /applications/luci-app-dockerman/luasrc/model/cbi | |
parent | 36869ffd2b9cf98066ce57e3cc98608b9e2ec9a0 (diff) |
luci-app-dockerman: add log_level i18n translation
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-dockerman/luasrc/model/cbi')
-rw-r--r-- | applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua b/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua index cc4b287cba..3308d64ac5 100644 --- a/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua +++ b/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua @@ -130,11 +130,11 @@ if nixio.fs.access("/usr/bin/dockerd") then o = s:option(ListValue, "log_level", translate("Log Level"), translate('Set the logging level')) - o:value("debug", "debug") - o:value("", "info") -- This is the default debug level from the deamon is optin is not set - o:value("warn", "warn") - o:value("error", "error") - o:value("fatal", "fatal") + o:value("debug", translate("Debug")) + o:value("", translate("Info")) -- This is the default debug level from the deamon is optin is not set + o:value("warn", translate("Warning")) + o:value("error", translate("Error")) + o:value("fatal", translate("Fatal")) o.rmempty = true o:depends("remote_endpoint", 0) |