'use strict';
'require tools.views as views';
-return views.LogreadBox("acme", "acme");
\ No newline at end of file
+return views.LogreadBox("acme", _('ACME Log'));
\ No newline at end of file
'use strict';
'require tools.views as views';
-return views.LogreadBox("adblock-", "adblock");
\ No newline at end of file
+return views.LogreadBox("adblock-", _('Adblock Log'));
\ No newline at end of file
logTextFilter: '',
invertLogTextSearch: false,
logTagFilter: logtag ? logtag : '',
- logName: name ? name : _('System'),
+ logName: name ? name : _('System Log'),
fetchMaxRows: 1000,
facilities: [
filterMaxRows.addEventListener('change', handleLogFilterChange);
return E([], [
- E('h2', {}, [ `${this.logName} ${_('Log')}` ]),
+ E('h2', {}, [ this.logName ]),
E('div', { 'id': 'content_syslog' }, [
E('div', { class: 'cbi-section-descr' }, this.logTagFilter ? _('The syslog output, pre-filtered for messages related to: ' + this.logTagFilter) : '') ,
E('div', { 'style': 'margin-bottom:10px' }, [
'use strict';
'require tools.views as views';
-return views.LogreadBox(null, _('System'));
\ No newline at end of file
+return views.LogreadBox(null, _('System Log'));
\ No newline at end of file