diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index 7211529189..ebf1710c79 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -653,7 +653,7 @@ return view.extend({ _('A %s does not do anything by itself. It is a label that other directives test against.', 'A tag does not do anything by itself').format(tagcodestring) + '
' + _('Note: invalid %s combinations may cause dnsmasq to crash silently.', 'invalid tag combinations may cause crashes').format(tag_named_ov_string) + '

' + _('Prepend a %s with %s to invert their domain of application, e.g. to send options to a host lacking a %s.', 'prepend a tag with ! to invert their meaning').format(tagcodestring, exclamationmark_invert, tagcodestring) + '

' + - _('Use the %s button to add a new %s.', 'use the add button to add a new tag').format( _(`${addtag}`), tagcodestring ) ); + _('Use the %s button to add a new %s.', 'use the add button to add a new tag').format( _('%s').format(addtag), tagcodestring ) ); ss = o.subsection; ss.placeholder = _('tag name'); ss.sortable = true; @@ -698,7 +698,7 @@ return view.extend({ // Set Tags o = tagstab.taboption('settags', form.SectionValue, '__settags__', form.TableSection, 'match', null, - _(`Encountering chosen DHCP %s (or also its %s) from clients triggers dnsmasq to set alphanumeric %s.`).format(dhcp_option_code, dhcp_value_code, tagcodestring) + '
' + + _('Encountering chosen DHCP %s (or also its %s) from clients triggers dnsmasq to set alphanumeric %s.').format(dhcp_option_code, dhcp_value_code, tagcodestring) + '
' + _('In other words: "%s these %s to set this %s".').format(tag_match_code_name, dhcp_option_code, tagcodestring) + '
' + _('Or "These %s set this %s".').format(dhcp_option_code, tagcodestring) + '
' + _('Internally, these configuration entries are called %s.').format(tag_match_code_name) + '
' +