Added regex example to the "Custom filtering rules" settings
Closes #559
This commit is contained in:
parent
f1c3fecfb2
commit
297a1c7fa5
|
@ -115,6 +115,7 @@
|
||||||
"example_comment": "! Here goes a comment",
|
"example_comment": "! Here goes a comment",
|
||||||
"example_comment_meaning": "just a comment",
|
"example_comment_meaning": "just a comment",
|
||||||
"example_comment_hash": "# Also a comment",
|
"example_comment_hash": "# Also a comment",
|
||||||
|
"example_regex_meaning": "block access to the domains matching the specified regular expression",
|
||||||
"example_upstream_regular": "regular DNS (over UDP)",
|
"example_upstream_regular": "regular DNS (over UDP)",
|
||||||
"example_upstream_dot": "encrypted <a href='https:\/\/en.wikipedia.org\/wiki\/DNS_over_TLS' target='_blank'>DNS-over-TLS<\/a>",
|
"example_upstream_dot": "encrypted <a href='https:\/\/en.wikipedia.org\/wiki\/DNS_over_TLS' target='_blank'>DNS-over-TLS<\/a>",
|
||||||
"example_upstream_doh": "encrypted <a href='https:\/\/en.wikipedia.org\/wiki\/DNS_over_HTTPS' target='_blank'>DNS-over-HTTPS<\/a>",
|
"example_upstream_doh": "encrypted <a href='https:\/\/en.wikipedia.org\/wiki\/DNS_over_HTTPS' target='_blank'>DNS-over-HTTPS<\/a>",
|
||||||
|
|
|
@ -52,6 +52,9 @@ class UserRules extends Component {
|
||||||
<li>
|
<li>
|
||||||
<code>{ t('example_comment_hash') }</code> - { t('example_comment_meaning') }
|
<code>{ t('example_comment_hash') }</code> - { t('example_comment_meaning') }
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<code>/REGEX/</code> - { t('example_regex_meaning') }
|
||||||
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
Loading…
Reference in New Issue