luci-mod-network: fix extraneous escaping

Signed-off-by: Sibren Vasse <github@sibrenvasse.nl>
This commit is contained in:
Sibren Vasse 2019-01-11 17:10:05 +01:00
parent c7776c8959
commit 970fa9a4e0
No known key found for this signature in database
GPG key ID: B55E1B5F1F852632
3 changed files with 3 additions and 3 deletions

View file

@ -81,7 +81,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null,
desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc;
L.itemlist(d, [
_('Protocol'), '%h'.format(desc || '?'),
_('Protocol'), desc || '?',
_('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null,
_('MAC'), (!ifc.is_dynamic && !ifc.is_alias && ifc.macaddr) ? ifc.macaddr : null,
_('RX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null,

View file

@ -39,7 +39,7 @@ requestAnimationFrame(function() {
L.itemlist(info, [
_('Mode'), iw.mode,
_('SSID'), '%h'.format(iw.ssid || '?'),
_('SSID'), iw.ssid || '?',
_('BSSID'), is_assoc ? iw.bssid : null,
_('Encryption'), is_assoc ? iw.encryption || _('None') : null,
_('Channel'), is_assoc ? '%d (%.3f %s)'.format(iw.channel, iw.frequency || 0, _('GHz')) : null,

View file

@ -70,7 +70,7 @@ L.poll(5, L.url('admin/network/wireless_status', networks.join(',')), null,
}, [ E('img', { src: icon }), ' %d%%'.format(p) ]));
L.itemlist(info, [
_('SSID'), '%h'.format(iw.ssid || '?'),
_('SSID'), iw.ssid || '?',
_('Mode'), iw.mode,
_('BSSID'), iw.is_assoc ? iw.bssid : null,
_('Encryption'), iw.is_assoc ? iw.encryption || _('None') : null,