diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json index 8f2eb5c9..1b755cec 100644 --- a/client/src/__locales/en.json +++ b/client/src/__locales/en.json @@ -115,7 +115,7 @@ "average_processing_time": "Average processing time", "average_processing_time_hint": "Average time in milliseconds on processing a DNS request", "block_domain_use_filters_and_hosts": "Block domains using filters and hosts files", - "filters_block_toggle_hint": "You can setup blocking rules in the Filters settings.", + "filters_block_toggle_hint": "You can setup blocking rules in the Filters settings.", "use_adguard_browsing_sec": "Use AdGuard browsing security web service", "use_adguard_browsing_sec_hint": "AdGuard Home will check if domain is blacklisted by the browsing security web service. It will use privacy-friendly lookup API to perform the check: only a short prefix of the domain name SHA256 hash is sent to the server.", "use_adguard_parental": "Use AdGuard parental control web service", diff --git a/client/src/components/Settings/FiltersConfig/Form.js b/client/src/components/Settings/FiltersConfig/Form.js index 366d1d84..7d41fe8a 100644 --- a/client/src/components/Settings/FiltersConfig/Form.js +++ b/client/src/components/Settings/FiltersConfig/Form.js @@ -5,7 +5,11 @@ import { Trans, withTranslation } from 'react-i18next'; import flow from 'lodash/flow'; import { CheckboxField, toNumber } from '../../../helpers/form'; -import { FILTERS_INTERVALS_HOURS, FORM_NAME } from '../../../helpers/constants'; +import { + FILTERS_INTERVALS_HOURS, + FILTERS_LINK, + FORM_NAME, +} from '../../../helpers/constants'; const getTitleForInterval = (interval, t) => { if (interval === 0) { @@ -40,6 +44,10 @@ const Form = (props) => { handleSubmit, handleChange, processing, t, } = props; + const components = { + a: , + }; + return (