luci-app-dockerman: add log_level i18n translation
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 0e29a0ecc6
)
This commit is contained in:
parent
31abfc71ee
commit
48d8a1a732
1 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue