mirror of
https://github.com/openwrt/luci.git
synced 2026-02-04 12:06:01 +08:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user