luci-mod-network: add translation string for log level

add translation string for log level

Signed-off-by: He Ping <pinghejk@gmail.com>
This commit is contained in:
try496
2025-11-27 07:11:36 +08:00
committed by Paul Donald
parent 9b5d60757e
commit e6318e8305

View File

@@ -611,14 +611,14 @@ return view.extend({
o = s.taboption('general', form.Value, 'loglevel', o = s.taboption('general', form.Value, 'loglevel',
_('Log level'), _('Log level'),
_('Log level of the <code>odhcpd</code> daemon.')); _('Log level of the <code>odhcpd</code> daemon.'));
o.value('0', 'Emergency'); o.value('0', _('Emergency'));
o.value('1', 'Alert'); o.value('1', _('Alert'));
o.value('2', 'Critical'); o.value('2', _('Critical'));
o.value('3', 'Error'); o.value('3', _('Error'));
o.value('4', 'Warning'); o.value('4', _('Warning'));
o.value('5', 'Notice'); o.value('5', _('Notice'));
o.value('6', 'Info'); o.value('6', _('Info'));
o.value('7', 'Debug'); o.value('7', _('Debug'));
// End general // End general
// Begin pxe6 // Begin pxe6