luci-app-snmpd: fix i18n compile warn

standard input:71: warning:

Empty msgid.  It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
Paul Donald
2026-02-03 08:32:47 +01:00
parent c0ba5860a7
commit a91593d03b

View File

@@ -67,8 +67,7 @@ return L.view.extend({
ss = o.subsection;
files.forEach((elem) => {
o = ss.option(form.Button, 'dl_mib', _(elem),
_(''));
o = ss.option(form.Button, 'dl_mib', _(elem));
o.inputstyle = 'action important';
o.inputtitle = _('Download');
o.onclick = ui.createHandlerFn(this, this.handleMIB, elem);