* client: fix missed translations

Closes #952
This commit is contained in:
Ildar Kamalov 2019-08-22 18:13:17 +03:00
parent 9087df5dcd
commit 75df5e8292
4 changed files with 8 additions and 7 deletions

View File

@ -78,8 +78,8 @@
"top_clients": "Top clients", "top_clients": "Top clients",
"no_clients_found": "No clients found", "no_clients_found": "No clients found",
"general_statistics": "General statistics", "general_statistics": "General statistics",
"number_of_dns_query_days": "A number of DNS quieries processed for the last {{value}} days", "number_of_dns_query_days": "A number of DNS queries processed for the last {{value}} days",
"number_of_dns_query_24_hours": "A number of DNS quieries processed for the last 24 hours", "number_of_dns_query_24_hours": "A number of DNS queries processed for the last 24 hours",
"number_of_dns_query_blocked_24_hours": "A number of DNS requests blocked by adblock filters and hosts blocklists", "number_of_dns_query_blocked_24_hours": "A number of DNS requests blocked by adblock filters and hosts blocklists",
"number_of_dns_query_blocked_24_hours_by_sec": "A number of DNS requests blocked by the AdGuard browsing security module", "number_of_dns_query_blocked_24_hours_by_sec": "A number of DNS requests blocked by the AdGuard browsing security module",
"number_of_dns_query_blocked_24_hours_adult": "A number of adult websites blocked", "number_of_dns_query_blocked_24_hours_adult": "A number of adult websites blocked",
@ -368,5 +368,6 @@
"interval_days": "{{value}} days", "interval_days": "{{value}} days",
"time_period": "Time period", "time_period": "Time period",
"domain": "Domain", "domain": "Domain",
"filter_added_successfully": "Filter has been added successfully" "answer": "Answer",
"filter_added_successfully": "The filter has been successfully added"
} }

View File

@ -24,7 +24,7 @@ const Modal = (props) => {
<div className="modal-content"> <div className="modal-content">
<div className="modal-header"> <div className="modal-header">
<h4 className="modal-title"> <h4 className="modal-title">
<Trans>Add DNS rewrite</Trans> <Trans>rewrite_add</Trans>
</h4> </h4>
<button type="button" className="close" onClick={() => toggleRewritesModal()}> <button type="button" className="close" onClick={() => toggleRewritesModal()}>
<span className="sr-only">Close</span> <span className="sr-only">Close</span>

View File

@ -14,12 +14,12 @@ class Table extends Component {
columns = [ columns = [
{ {
Header: 'Domain', Header: this.props.t('domain'),
accessor: 'domain', accessor: 'domain',
Cell: this.cellWrap, Cell: this.cellWrap,
}, },
{ {
Header: 'Answer', Header: this.props.t('answer'),
accessor: 'answer', accessor: 'answer',
Cell: this.cellWrap, Cell: this.cellWrap,
}, },

View File

@ -44,7 +44,7 @@ class Services extends Component {
return ( return (
<Card <Card
title={t('blocked_services')} title={t('blocked_services')}
subtitle={t('Allows to quickly block popular sites.')} subtitle={t('blocked_services_desc')}
bodyType="card-body box-body--settings" bodyType="card-body box-body--settings"
> >
<div className="form"> <div className="form">