From a91593d03bfddd5503e561af9c05596e4475ecc5 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Tue, 3 Feb 2026 08:32:47 +0100 Subject: [PATCH] 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 --- .../htdocs/luci-static/resources/view/snmpd/download.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/applications/luci-app-snmpd/htdocs/luci-static/resources/view/snmpd/download.js b/applications/luci-app-snmpd/htdocs/luci-static/resources/view/snmpd/download.js index 0fc147adc4..479301a3e8 100644 --- a/applications/luci-app-snmpd/htdocs/luci-static/resources/view/snmpd/download.js +++ b/applications/luci-app-snmpd/htdocs/luci-static/resources/view/snmpd/download.js @@ -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);