diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e154dd3..f1c35913 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ 'name': 'build' 'env': - 'GO_VERSION': '1.20.10' + 'GO_VERSION': '1.20.11' 'NODE_VERSION': '16' 'on': diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 11a96f8b..144cc3f4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,7 +1,7 @@ 'name': 'lint' 'env': - 'GO_VERSION': '1.20.10' + 'GO_VERSION': '1.20.11' 'on': 'push': diff --git a/CHANGELOG.md b/CHANGELOG.md index 2759564e..b870b6fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,11 +14,11 @@ and this project adheres to @@ -29,6 +29,62 @@ NOTE: Add new changes ABOVE THIS COMMENT. +## [v0.107.41] - 2023-11-13 + +See also the [v0.107.41 GitHub milestone][ms-v0.107.41]. + +[ms-v0.107.41]: https://github.com/AdguardTeam/AdGuardHome/milestone/76?closed=1 + +### Security + +- Go version has been updated to prevent the possibility of exploiting the + CVE-2023-45283 and CVE-2023-45284 Go vulnerabilities fixed in + [Go 1.20.11][go-1.20.11]. + +### Added + +- Ability to specify subnet lengths for IPv4 and IPv6 addresses, used for rate + limiting requests, in the configuration file ([#6368]). +- Ability to specify multiple domain specific upstreams per line, e.g. + `[/domain1/../domain2/]upstream1 upstream2 .. upstreamN` ([#4977]). + +### Changed + +- The height of ready-to-use filter lists has been increased ([#6358]). +- Improved authentication failure logging ([#6357]). + +#### Configuration Changes + +- New properties `dns.ratelimit_subnet_len_ipv4` and + `dns.ratelimit_subnet_len_ipv6` in the configuration file ([#6368]). + +### Fixed + +- Missing timezone on schedule form submission ([#6401]). +- Average request processing time calculation ([#6220]). +- Redundant shortening long client names in the Top Clients table ([#6338]). +- Scrolling column headers in the tables ([#6337]). +- `$important,dnsrewrite` rules do not take precedence over allowlist rules + ([#6204]). +- Dark mode DNS rewrite background ([#6329]). +- Issues with QUIC and HTTP/3 upstreams on Linux ([#6335]). + +[#4977]: https://github.com/AdguardTeam/AdGuardHome/issues/4977 +[#6204]: https://github.com/AdguardTeam/AdGuardHome/issues/6204 +[#6220]: https://github.com/AdguardTeam/AdGuardHome/issues/6220 +[#6329]: https://github.com/AdguardTeam/AdGuardHome/issues/6329 +[#6335]: https://github.com/AdguardTeam/AdGuardHome/issues/6335 +[#6337]: https://github.com/AdguardTeam/AdGuardHome/issues/6337 +[#6338]: https://github.com/AdguardTeam/AdGuardHome/issues/6338 +[#6357]: https://github.com/AdguardTeam/AdGuardHome/issues/6357 +[#6358]: https://github.com/AdguardTeam/AdGuardHome/issues/6358 +[#6368]: https://github.com/AdguardTeam/AdGuardHome/issues/6368 +[#6401]: https://github.com/AdguardTeam/AdGuardHome/issues/6401 + +[go-1.20.11]: https://groups.google.com/g/golang-announce/c/4tU8LZfBFkY/m/d-jSKR_jBwAJ + + + ## [v0.107.40] - 2023-10-18 See also the [v0.107.40 GitHub milestone][ms-v0.107.40]. @@ -2557,11 +2613,12 @@ See also the [v0.104.2 GitHub milestone][ms-v0.104.2]. -[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.40...HEAD +[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.41...HEAD +[v0.107.41]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.40...v0.107.41 [v0.107.40]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.39...v0.107.40 [v0.107.39]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.38...v0.107.39 [v0.107.38]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.37...v0.107.38 diff --git a/README.md b/README.md index 82c618b3..1a6937f1 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ opinion, this cannot be legitimately counted as a Pi-Hole's feature. | Cross-platform | ✅ | ❌ (not natively, only via Docker) | | Running as a DNS-over-HTTPS or DNS-over-TLS server | ✅ | ❌ (requires additional software) | | Blocking phishing and malware domains | ✅ | ❌ (requires non-default blocklists) | -| Parental control (blocking adult domains) | ✅ | ❌ | +| Parental control (blocking adult domains) | ✅ | ❌ (requires non-default blocklists) | | Force Safe search on search engines | ✅ | ❌ | | Per-client (device) configuration | ✅ | ✅ | | Access settings (choose who can use AGH DNS) | ✅ | ❌ | diff --git a/bamboo-specs/release.yaml b/bamboo-specs/release.yaml index f868e363..8743a21a 100644 --- a/bamboo-specs/release.yaml +++ b/bamboo-specs/release.yaml @@ -7,7 +7,7 @@ # Make sure to sync any changes with the branch overrides below. 'variables': 'channel': 'edge' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' 'stages': - 'Build frontend': @@ -272,7 +272,7 @@ # need to build a few of these. 'variables': 'channel': 'beta' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' # release-vX.Y.Z branches are the branches from which the actual final # release is built. - '^release-v[0-9]+\.[0-9]+\.[0-9]+': @@ -287,4 +287,4 @@ # are the ones that actually get released. 'variables': 'channel': 'release' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' diff --git a/bamboo-specs/snapcraft.yaml b/bamboo-specs/snapcraft.yaml index 854ef3cc..d802dba0 100644 --- a/bamboo-specs/snapcraft.yaml +++ b/bamboo-specs/snapcraft.yaml @@ -10,7 +10,7 @@ # Make sure to sync any changes with the branch overrides below. 'variables': 'channel': 'edge' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' 'snapcraftChannel': 'edge' 'stages': @@ -191,7 +191,7 @@ # need to build a few of these. 'variables': 'channel': 'beta' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' 'snapcraftChannel': 'beta' # release-vX.Y.Z branches are the branches from which the actual final # release is built. @@ -207,5 +207,5 @@ # are the ones that actually get released. 'variables': 'channel': 'release' - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' 'snapcraftChannel': 'candidate' diff --git a/bamboo-specs/test.yaml b/bamboo-specs/test.yaml index bacb94ef..746b599d 100644 --- a/bamboo-specs/test.yaml +++ b/bamboo-specs/test.yaml @@ -5,7 +5,7 @@ 'key': 'AHBRTSPECS' 'name': 'AdGuard Home - Build and run tests' 'variables': - 'dockerGo': 'adguard/golang-ubuntu:7.4' + 'dockerGo': 'adguard/golang-ubuntu:7.5' 'stages': - 'Tests': diff --git a/client/src/__locales/be.json b/client/src/__locales/be.json index 3dd62d98..b6ed5cdd 100644 --- a/client/src/__locales/be.json +++ b/client/src/__locales/be.json @@ -143,7 +143,6 @@ "enforced_save_search": "Ужыты бяспечны пошук", "number_of_dns_query_to_safe_search": "Колькасць запытаў DNS для пошукавых сістэм, для якіх быў ужыты Бяспечны пошук", "average_processing_time": "Сярэдні час апрацоўкі запыту", - "processing_time": "Час апрацоўкі", "average_processing_time_hint": "Сярэдні час для апрацоўкі запыту DNS у мілісекундах", "block_domain_use_filters_and_hosts": "Блакаваць дамены з выкарыстаннем фільтраў і файлаў хастоў", "filters_block_toggle_hint": "Вы можаце наладзіць правілы блакавання ў «Фільтрах».", diff --git a/client/src/__locales/cs.json b/client/src/__locales/cs.json index 7db7aae9..6122dec8 100644 --- a/client/src/__locales/cs.json +++ b/client/src/__locales/cs.json @@ -1,6 +1,7 @@ { "client_settings": "Nastavení klienta", "example_upstream_reserved": "odchozí DNS připojení <0>pro konkrétní doménu(y);", + "example_multiple_upstreams_reserved": "více odchozích připojení <0>pro konkrétní domény;", "example_upstream_comment": "komentář.", "upstream_parallel": "Použijte paralelní požadavky na urychlení řešení simultánním dotazováním na všechny navazující servery.", "parallel_requests": "Paralelní požadavky", @@ -143,7 +144,8 @@ "enforced_save_search": "Vynucené bezpečné vyhledávání", "number_of_dns_query_to_safe_search": "Počet požadavků DNS na vyhledávače, při kterých bylo vynucené bezpečné vyhledávání", "average_processing_time": "Průměrný čas zpracování", - "processing_time": "Doba zpracování", + "average_upstream_response_time": "Průměrná doba odezvy odchozích připojení", + "response_time": "Čas odezvy", "average_processing_time_hint": "Průměrný čas zpracování požadavků DNS v milisekundách", "block_domain_use_filters_and_hosts": "Blokovat domény pomocí filtrů a seznamů adres", "filters_block_toggle_hint": "Pravidla blokování můžete nastavit v nastavení Filtry.", diff --git a/client/src/__locales/da.json b/client/src/__locales/da.json index 064d4123..dcf6722c 100644 --- a/client/src/__locales/da.json +++ b/client/src/__locales/da.json @@ -1,6 +1,7 @@ { "client_settings": "Klientindstillinger", "example_upstream_reserved": "en upstream <0>for bestemte domæner;", + "example_multiple_upstreams_reserved": "flere upstreams <0>til bestemte domæner;", "example_upstream_comment": "en kommentaren.", "upstream_parallel": "Brug parallelforespørgsler til at accelerere fortolkningen ved at forespørge alle upstream-servere samtidigt.", "parallel_requests": "Parallelle forespørgsler", @@ -143,7 +144,8 @@ "enforced_save_search": "Håndhævet sikker søgning", "number_of_dns_query_to_safe_search": "Antallet af DNS-forespørgsler til søgemaskiner, hvor Sikker Søgning blev håndhævet", "average_processing_time": "Gennemsnitlig behandlingstid", - "processing_time": "Behandlingstid", + "average_upstream_response_time": "Gennemsnitlig upstream-responstid", + "response_time": "Responstid", "average_processing_time_hint": "Gennemsnitlig behandlingstid i millisekunder af DNS-forespørgsel", "block_domain_use_filters_and_hosts": "Blokér domæner vha. filtre og værtsfiler", "filters_block_toggle_hint": "Du kan opsætte blokeringsregler i Filterindstillingerne.", diff --git a/client/src/__locales/de.json b/client/src/__locales/de.json index 7c40eb89..e9ed256c 100644 --- a/client/src/__locales/de.json +++ b/client/src/__locales/de.json @@ -1,6 +1,7 @@ { "client_settings": "Client-Einstellungen", "example_upstream_reserved": "ein Upstream <0>für bestimmte Domains;", + "example_multiple_upstreams_reserved": "mehrere Upstreams <0>für bestimmte Domains;", "example_upstream_comment": "ein Kommentar.", "upstream_parallel": "Parallele Abfragen verwenden, um das Auflösen zu beschleunigen, indem alle Upstream-Server gleichzeitig abgefragt werden.", "parallel_requests": "Paralleles Abfragen", @@ -143,7 +144,8 @@ "enforced_save_search": "Sichere Suche erzwungen", "number_of_dns_query_to_safe_search": "Anzahl der DNS-Anfragen bei denen Sichere Suche für Suchanfragen erzwungen wurde", "average_processing_time": "Durchschnittliche Bearbeitungsdauer", - "processing_time": "Verarbeitungszeit", + "average_upstream_response_time": "Durchschnittliche Upstream-Antwortzeit", + "response_time": "Antwortzeit", "average_processing_time_hint": "Durchschnittliche Zeit in Millisekunden zur Bearbeitung von DNS-Anfragen", "block_domain_use_filters_and_hosts": "Domains durch Filter und Host-Dateien sperren", "filters_block_toggle_hint": "Sie können Blockierregeln in den Filtereinstellungen erstellen.", diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json index 5f5a9ca8..5e0bf6d1 100644 --- a/client/src/__locales/en.json +++ b/client/src/__locales/en.json @@ -1,6 +1,7 @@ { "client_settings": "Client settings", "example_upstream_reserved": "an upstream <0>for specific domains;", + "example_multiple_upstreams_reserved": "multiple upstreams <0>for specific domains;", "example_upstream_comment": "a comment.", "upstream_parallel": "Use parallel queries to speed up resolving by querying all upstream servers simultaneously.", "parallel_requests": "Parallel requests", @@ -143,7 +144,8 @@ "enforced_save_search": "Enforced safe search", "number_of_dns_query_to_safe_search": "The number of DNS requests to search engines for which Safe Search was enforced", "average_processing_time": "Average processing time", - "processing_time": "Processing time", + "average_upstream_response_time": "Average upstream response time", + "response_time": "Response 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.", diff --git a/client/src/__locales/es.json b/client/src/__locales/es.json index 2af3c571..badc0c42 100644 --- a/client/src/__locales/es.json +++ b/client/src/__locales/es.json @@ -1,6 +1,7 @@ { "client_settings": "Configuración de clientes", "example_upstream_reserved": "un DNS de subida <0>para un dominio específico.", + "example_multiple_upstreams_reserved": "múltiples upstreams <0>para dominios específicos;", "example_upstream_comment": "un comentario.", "upstream_parallel": "Usar consultas paralelas para acelerar la resolución al consultar simultáneamente a todos los servidores DNS de subida.", "parallel_requests": "Consultas paralelas", @@ -8,9 +9,9 @@ "load_balancing_desc": "Consulta un servidor DNS de subida a la vez. AdGuard Home utiliza su algoritmo aleatorio ponderado para elegir el servidor más rápido y sea utilizado con más frecuencia.", "bootstrap_dns": "Servidores DNS de arranque", "bootstrap_dns_desc": "Direcciones IP de servidores DNS utilizadas para resolver direcciones IP de los solucionadores DoH/DoT que especifiques como ascendentes. No se permiten comentarios.", - "fallback_dns_title": "Servidores DNS de fallback", - "fallback_dns_desc": "La lista de DNS de fallback serán usadas cuando los servidores de upstream de DNS no respondan. La sintaxis es la misma que en los principales del campo anterior.", - "fallback_dns_placeholder": "Ingresa un servidor de DNS alternativo por línea", + "fallback_dns_title": "Servidores DNS alternativos", + "fallback_dns_desc": "Lista de servidores DNS alternativos utilizados cuando los servidores DNS de subida no responden. La sintaxis es la misma que en el campo de los principales DNS de subida anterior.", + "fallback_dns_placeholder": "Ingresa un servidor DNS alternativo por línea", "local_ptr_title": "Servidores DNS inversos y privados", "local_ptr_desc": "Los servidores DNS que AdGuard Home utiliza para las consultas PTR locales. Estos servidores se utilizan para resolver las peticiones PTR de direcciones en rangos de IP privadas, por ejemplo \"192.168.12.34\", utilizando DNS inverso. Si no está establecido, AdGuard Home utilizará los resolutores DNS predeterminados de tu sistema operativo, excepto las direcciones del propio AdGuard Home.", "local_ptr_default_resolver": "Por defecto, AdGuard Home utiliza los siguientes resolutores DNS inversos: {{ip}}.", @@ -131,8 +132,8 @@ "top_clients": "Clientes más frecuentes", "no_clients_found": "No se han encontrado clientes", "general_statistics": "Estadísticas generales", - "top_upstreams": "Mejores upstreams", - "no_upstreams_data_found": "No se han encontrado datos de upstreams", + "top_upstreams": "DNS de subida más frecuentes", + "no_upstreams_data_found": "No se han encontrado datos de DNS de subida", "number_of_dns_query_days": "Número de consultas DNS procesadas durante el último {{count}} día", "number_of_dns_query_days_plural": "Número de consultas DNS procesadas durante los últimos {{count}} días", "number_of_dns_query_hours": "Número de consultas DNS procesadas durante la última {{count}} hora", @@ -143,7 +144,8 @@ "enforced_save_search": "Búsquedas seguras forzadas", "number_of_dns_query_to_safe_search": "Número de peticiones DNS a los motores de búsqueda para los que se aplicó la búsqueda segura forzada", "average_processing_time": "Tiempo promedio de procesamiento", - "processing_time": "Tiempo de procesamiento", + "average_upstream_response_time": "Tiempo promedio de respuesta upstream", + "response_time": "Tiempo de respuesta", "average_processing_time_hint": "Tiempo promedio en milisegundos al procesar una petición DNS", "block_domain_use_filters_and_hosts": "Bloquear dominios usando filtros y archivos hosts", "filters_block_toggle_hint": "Puedes configurar las reglas de bloqueo en la configuración de filtros.", @@ -168,7 +170,7 @@ "upstream_dns_configured_in_file": "Configurado en {{path}}", "test_upstream_btn": "Probar DNS de subida", "upstreams": "DNS de subida", - "upstream": "Upstream", + "upstream": "DNS de subida", "apply_btn": "Aplicar", "disabled_filtering_toast": "Filtrado deshabilitado", "enabled_filtering_toast": "Filtrado habilitado", @@ -677,21 +679,21 @@ "disable_for_hours": "Por {{count}} hora", "disable_for_hours_plural": "Por {{count}} horas", "disable_until_tomorrow": "Hasta mañana", - "disable_notify_for_seconds": "Desactivar la protección por {{count}} segundo", - "disable_notify_for_seconds_plural": "Desactivar la protección por {{count}} segundos", - "disable_notify_for_minutes": "Desactivar la protección por {{count}} minuto", - "disable_notify_for_minutes_plural": "Desactivar la protección por {{count}} minutos", - "disable_notify_for_hours": "Desactivar la protección por {{count}} hora", - "disable_notify_for_hours_plural": "Desactivar la protección por {{count}} horas", - "disable_notify_until_tomorrow": "Desactivar la protección hasta mañana", - "enable_protection_timer": "La protección se activará en {{time}}", + "disable_notify_for_seconds": "Deshabilitar protección por {{count}} segundo", + "disable_notify_for_seconds_plural": "Deshabilitar protección por {{count}} segundos", + "disable_notify_for_minutes": "Deshabilitar protección por {{count}} minuto", + "disable_notify_for_minutes_plural": "Deshabilitar protección por {{count}} minutos", + "disable_notify_for_hours": "Deshabilitar protección por {{count}} hora", + "disable_notify_for_hours_plural": "Deshabilitar protección por {{count}} horas", + "disable_notify_until_tomorrow": "Deshabilitar protección hasta mañana", + "enable_protection_timer": "La protección se habilitará a las {{time}}", "custom_retention_input": "Ingresa la retención en horas", "custom_rotation_input": "Ingresa la rotación en horas", "protection_section_label": "Protección", "log_and_stats_section_label": "Registro de consultas y estadísticas", "ignore_query_log": "Ignorar este cliente en el registro de consultas", "ignore_statistics": "Ignorar este cliente en las estadísticas", - "schedule_services": "Pausar el servicio de bloqueo", + "schedule_services": "Pausar servicio de bloqueo", "schedule_services_desc": "Configura el horario programado de pausa del servicio de bloqueo", "schedule_services_desc_client": "Configurar el horario programado de pausa del bloqueo de servicio filtrado para este cliente", "schedule_desc": "Establecer periodos de inactividad para servicios bloqueados", @@ -701,7 +703,7 @@ "schedule_current_timezone": "Zona horaria actual: {{value}}", "schedule_time_all_day": "Todo el dia", "schedule_modal_description": "Este horario sustituirá cualquier horario existente para el mismo día de la semana. Cada día de la semana solo puede tener un periodo de inactividad.", - "schedule_modal_time_off": "Detener el servicio de bloqueo:", + "schedule_modal_time_off": "Detener servicio de bloqueo:", "schedule_new": "Nuevo horario", "schedule_edit": "Editar horario", "schedule_save": "Guardar horario", diff --git a/client/src/__locales/fa.json b/client/src/__locales/fa.json index 41197a67..907b95cf 100644 --- a/client/src/__locales/fa.json +++ b/client/src/__locales/fa.json @@ -139,7 +139,6 @@ "enforced_save_search": "جستجوی اَمن اجبار شده", "number_of_dns_query_to_safe_search": "تعداد درخواست های DNS برای موتور جستجو که جستجوی اَمن اجبار شده", "average_processing_time": "میانگین زمان پردازش", - "processing_time": "زمان پردازش", "average_processing_time_hint": "زمان میانگین بر هزارم ثانیه در پردازش درخواست DNS", "block_domain_use_filters_and_hosts": "مسدودسازی دامنه ها توسط فیلترها و فایل های میزبان", "filters_block_toggle_hint": "میتوانید دستورات مسدودسازی را در تنظیمات فیلترها راه اندازی کنید.", diff --git a/client/src/__locales/fi.json b/client/src/__locales/fi.json index 5a3f4fb5..e04256c7 100644 --- a/client/src/__locales/fi.json +++ b/client/src/__locales/fi.json @@ -143,7 +143,7 @@ "enforced_save_search": "Turvallinen haku pakotettiin", "number_of_dns_query_to_safe_search": "DNS-pyyntöjen määrä, joille turvallinen haku pakotettiin käyttöön", "average_processing_time": "Keskimääräinen käsittelyaika", - "processing_time": "Käsittelyaika", + "response_time": "Vasteaika", "average_processing_time_hint": "Keskimääräinen DNS-pyynnön käsittelyyn kulutettu aika millisekunteina", "block_domain_use_filters_and_hosts": "Estä verkkotunnuksia suodattimilla ja hosts-tiedostoilla", "filters_block_toggle_hint": "Voit määrittää estosääntöjä suodatinasetuksissa.", diff --git a/client/src/__locales/fr.json b/client/src/__locales/fr.json index 146a3860..2be62963 100644 --- a/client/src/__locales/fr.json +++ b/client/src/__locales/fr.json @@ -1,6 +1,7 @@ { "client_settings": "Paramètres du client", "example_upstream_reserved": "un amont <0>pour des domaines spécifiques ;", + "example_multiple_upstreams_reserved": "plusieurs amonts <0>pour des domaines spécifiques ;", "example_upstream_comment": " un commentaire.", "upstream_parallel": "Utilisez des requêtes parallèles pour accélérer la résolution en requêtant simultanément tous les serveurs en amont.", "parallel_requests": "Requêtes en parallèle", @@ -143,7 +144,8 @@ "enforced_save_search": "Recherche sécurisée forcée", "number_of_dns_query_to_safe_search": "Le nombre de requêtes DNS faites avec la Recherche securisée", "average_processing_time": "Temps moyen de traitement", - "processing_time": "Délai de traitement", + "average_upstream_response_time": "Temps de réponse moyen en amont", + "response_time": "Temps de réponse", "average_processing_time_hint": "Temps moyen (en millisecondes) de traitement d'une requête DNS", "block_domain_use_filters_and_hosts": "Bloquez les domaines à l'aide des filtres et fichiers hosts", "filters_block_toggle_hint": "Vous pouvez configurer les règles de filtrage dans les paramètres des Filtres.", diff --git a/client/src/__locales/hr.json b/client/src/__locales/hr.json index 5cef8b1b..1c9ec62e 100644 --- a/client/src/__locales/hr.json +++ b/client/src/__locales/hr.json @@ -1,6 +1,7 @@ { "client_settings": "Postavke klijenta", "example_upstream_reserved": "upstream <0>za određene domene;", + "example_multiple_upstreams_reserved": "višestruke upstream poslužitelje <0>za određene domene;", "example_upstream_comment": "komentar.", "upstream_parallel": "Koristi paralelne upite kako bi ubrzali rješavanje istovremenim ispitavanjem svih upstream poslužitelja.", "parallel_requests": "Paralelni zahtjevi", @@ -143,7 +144,8 @@ "enforced_save_search": "Omogućeno sigurno pretraživanje", "number_of_dns_query_to_safe_search": "Broj DNS zahtjeva prema pretraživačima za koje je omogućeno Sigurno pretraživanje", "average_processing_time": "Prosječno vrijeme obrade", - "processing_time": "Vrijeme obrade", + "average_upstream_response_time": "Prosječno vrijeme odziva upstream poslužitelja", + "response_time": "Vrijeme odziva", "average_processing_time_hint": "Prosječno vrijeme u milisekundama za obradu DNS zahtjeva", "block_domain_use_filters_and_hosts": "Blokiraj domene koristeći filtre ili hosts datoteke", "filters_block_toggle_hint": "Pravila blokiranja možete postaviti u postavkama filtara.", diff --git a/client/src/__locales/hu.json b/client/src/__locales/hu.json index 8dc1b000..454704c8 100644 --- a/client/src/__locales/hu.json +++ b/client/src/__locales/hu.json @@ -1,6 +1,7 @@ { "client_settings": "Kliens beállítások", "example_upstream_reserved": "Megadhat egy DNS kiszolgálót <0>egy adott domainhez vagy domainekhez", + "example_multiple_upstreams_reserved": "több upstream szerver <0>adott domainekhez;", "example_upstream_comment": "egy megjegyzés.", "upstream_parallel": "Használjon párhuzamos lekéréseket a domainek feloldásának felgyorsításához az összes upstream kiszolgálóra való egyidejű lekérdezéssel.", "parallel_requests": "Párhuzamos lekérések", @@ -143,7 +144,8 @@ "enforced_save_search": "Kényszerített biztonságos keresés", "number_of_dns_query_to_safe_search": "A biztonságos keresésre kényszerített DNS lekérdezések száma", "average_processing_time": "Átlagos feldolgozási idő", - "processing_time": "Feldolgozási idő", + "average_upstream_response_time": "Átlagos upstream válaszidő", + "response_time": "Válaszidő", "average_processing_time_hint": "A DNS lekérdezések feldolgozásához szükséges átlagos idő milliszekundumban", "block_domain_use_filters_and_hosts": "Domainek blokkolása szűrők és hosztfájlok használatával", "filters_block_toggle_hint": "A szűrőbeállításoknál megadhatja a blokkolási szabályokat.", diff --git a/client/src/__locales/id.json b/client/src/__locales/id.json index 38ffba0a..2f7caecc 100644 --- a/client/src/__locales/id.json +++ b/client/src/__locales/id.json @@ -1,6 +1,7 @@ { "client_settings": "Pengaturan klien", "example_upstream_reserved": "upstream <0>untuk domain spesifik;", + "example_multiple_upstreams_reserved": "beberapa server upstream <0>untuk domain spesifik;", "example_upstream_comment": "komentar.", "upstream_parallel": "Gunakan kueri paralel untuk mempercepat resoluasi dengan menanyakan semua server upstream secara bersamaan", "parallel_requests": "Permintaan paralel", @@ -143,7 +144,8 @@ "enforced_save_search": "Paksa pencarian aman", "number_of_dns_query_to_safe_search": "Jumlah perminataan DNS ke mesin pencari yang dipaksa Pencarian Aman", "average_processing_time": "Rata-rata waktu pemrosesan", - "processing_time": "Waktu pemrosesan", + "average_upstream_response_time": "Waktu respons server upstream rata-rata", + "response_time": "Waktu respons", "average_processing_time_hint": "Rata-rata waktu dalam milidetik untuk pemrosesan sebuah permintaan DNS", "block_domain_use_filters_and_hosts": "Blokir domain menggunakan filter dan file hosts", "filters_block_toggle_hint": "Anda dapat menyiapkan aturan pemblokiran di pengaturan Penyaringan.", diff --git a/client/src/__locales/it.json b/client/src/__locales/it.json index 4748a82a..04a09411 100644 --- a/client/src/__locales/it.json +++ b/client/src/__locales/it.json @@ -1,6 +1,7 @@ { "client_settings": "Impostazioni client", "example_upstream_reserved": "un upstream <0>per specifici domini;", + "example_multiple_upstreams_reserved": "upstream multipli <0>per domini specifici;", "example_upstream_comment": "un commento.", "upstream_parallel": "Utilizza richieste parallele per accelerare la risoluzione interrogando simultaneamente tutti i server upstream.", "parallel_requests": "Richieste parallele", @@ -143,7 +144,8 @@ "enforced_save_search": "Ricerca sicura forzata", "number_of_dns_query_to_safe_search": "Numero di richieste DNS dai motori di ricerca per i quali la Ricerca Sicura è stata forzata", "average_processing_time": "Tempo di elaborazione medio", - "processing_time": "Tempo di elaborazione", + "average_upstream_response_time": "Tempo medio di risposta upstream", + "response_time": "Tempo di risposta", "average_processing_time_hint": "Tempo medio in millisecondi per elaborare una richiesta DNS", "block_domain_use_filters_and_hosts": "Blocca domini utilizzando filtri e file hosts", "filters_block_toggle_hint": "Puoi impostare le regole di blocco nelle impostazioni dei Filtri.", diff --git a/client/src/__locales/ja.json b/client/src/__locales/ja.json index f97b74db..1e2bb4a4 100644 --- a/client/src/__locales/ja.json +++ b/client/src/__locales/ja.json @@ -1,6 +1,7 @@ { "client_settings": "クライアント設定", "example_upstream_reserved": "<0>特定のドメインに対してDNSアップストリームを指定できます。", + "example_multiple_upstreams_reserved": "<0>特定ドメインのための複数のアップストリームサーバー;", "example_upstream_comment": "コメントを追加できます。", "upstream_parallel": "並列リクエストを使用する(同時にすべてのアップストリームサーバーに処理要求することで解決スピードが向上)", "parallel_requests": "並列リクエスト", @@ -143,7 +144,8 @@ "enforced_save_search": "強制されたセーフサーチ", "number_of_dns_query_to_safe_search": "セーフサーチが強制適用された検索エンジンへのDNSリクエストの数", "average_processing_time": "平均処理時間", - "processing_time": "処理時間", + "average_upstream_response_time": "アップストリームの平均応答時間", + "response_time": "応答時間", "average_processing_time_hint": "DNSリクエストの処理にかかる平均時間(ミリ秒単位)", "block_domain_use_filters_and_hosts": "フィルタとhostsファイルを使用してドメインをブロックする", "filters_block_toggle_hint": "フィルタの設定でブロックするルールを設定することができます。", diff --git a/client/src/__locales/ko.json b/client/src/__locales/ko.json index 7a6b6e5d..b10190e8 100644 --- a/client/src/__locales/ko.json +++ b/client/src/__locales/ko.json @@ -1,6 +1,7 @@ { "client_settings": "클라이언트 설정", "example_upstream_reserved": "<0>특정 도메인에 대한 업스트림;", + "example_multiple_upstreams_reserved": "<0>특정 도메인에 대한 여러 업스트림", "example_upstream_comment": "댓글.", "upstream_parallel": "쿼리 처리 속도를 높이려면 모든 업스트림 서버에서 동시에 병렬 쿼리를 사용해주세요.", "parallel_requests": "병렬 처리 요청", @@ -143,7 +144,8 @@ "enforced_save_search": "세이프서치 강제", "number_of_dns_query_to_safe_search": "세이프서치가 적용된 검색 엔진에 대해 DNS 요청 수", "average_processing_time": "평균처리 시간", - "processing_time": "처리 시간", + "average_upstream_response_time": "평균 업스트림 응답 시간", + "response_time": "응답 시간", "average_processing_time_hint": "DNS 요청 처리시 평균 시간(밀리초)", "block_domain_use_filters_and_hosts": "필터 및 호스트 파일을 사용하여 도메인 차단", "filters_block_toggle_hint": "차단규칙필터을 설정할 수 있습니다.", diff --git a/client/src/__locales/nl.json b/client/src/__locales/nl.json index c243773e..d35bd741 100644 --- a/client/src/__locales/nl.json +++ b/client/src/__locales/nl.json @@ -1,6 +1,7 @@ { "client_settings": "Cliëntinstellingen", "example_upstream_reserved": "een upstream <0>voor specifieke domeinen;", + "example_multiple_upstreams_reserved": "meerdere upstreams <0>voor specifieke domeinen;", "example_upstream_comment": "een commentaar.", "upstream_parallel": "Parallelle verzoeken gebruiken om te versnellen door gelijktijdig verzoeken te sturen naar alle upstream servers.", "parallel_requests": "Parallelle verzoeken", @@ -143,7 +144,8 @@ "enforced_save_search": "Geforceerd veilig zoeken", "number_of_dns_query_to_safe_search": "Aantal DNS aanvragen in zoekmachines dmv geforceerd veilig zoeken", "average_processing_time": "Gemiddelde procestijd", - "processing_time": "Verwerkingstijd", + "average_upstream_response_time": "Gemiddelde upstream responstijd", + "response_time": "Responsetijd", "average_processing_time_hint": "Gemiddelde verwerkingstijd in milliseconden van een DNS aanvraag", "block_domain_use_filters_and_hosts": "Domeinen blokkeren d.m.v. filters en host-bestanden", "filters_block_toggle_hint": "Je kan blokkeringsregels toevoegen in de Filters instellingen.", diff --git a/client/src/__locales/no.json b/client/src/__locales/no.json index 02618184..0d9a5d39 100644 --- a/client/src/__locales/no.json +++ b/client/src/__locales/no.json @@ -128,7 +128,6 @@ "enforced_save_search": "Påtvungede barnevennlige søk", "number_of_dns_query_to_safe_search": "Antall DNS-forespørsler til søkemotorer der \"Safe Search\" ble fremtvunget", "average_processing_time": "Gjennomsnittlig behandlingstid", - "processing_time": "Behandlingstid", "average_processing_time_hint": "Gjennomsnittstid for behandling av DNS-forespørsler i millisekunder", "block_domain_use_filters_and_hosts": "Blokker domener ved hjelp av filtre, «hosts»-filer, og rå domener", "filters_block_toggle_hint": "Du kan sette opp blokkeringsoppføringer i Filtre-innstillingene.", diff --git a/client/src/__locales/pl.json b/client/src/__locales/pl.json index 68f5802f..0668a8be 100644 --- a/client/src/__locales/pl.json +++ b/client/src/__locales/pl.json @@ -1,6 +1,7 @@ { "client_settings": "Ustawienia klienta", "example_upstream_reserved": "upstream <0>dla określonych domen;", + "example_multiple_upstreams_reserved": "wiele serwerów nadrzędnych <0>dla konkretnej domeny;", "example_upstream_comment": "komentarz.", "upstream_parallel": "Użyj zapytań równoległych, aby przyspieszyć rozwiązywanie przez jednoczesne wysyłanie zapytań do wszystkich serwerów nadrzędnych.", "parallel_requests": "Równoległe żądania", @@ -143,7 +144,8 @@ "enforced_save_search": "Wymuszone bezpieczne wyszukiwanie", "number_of_dns_query_to_safe_search": "Liczba żądań DNS kierowanych do wyszukiwarek, dla których wymuszono Bezpieczne wyszukiwanie", "average_processing_time": "Średni czas przetwarzania", - "processing_time": "Czas przetwarzania", + "average_upstream_response_time": "Średni czas odpowiedzi serwera nadrzędnego", + "response_time": "Czas odpowiedzi", "average_processing_time_hint": "Średni czas przetwarzania żądania DNS liczony w milisekundach", "block_domain_use_filters_and_hosts": "Zablokuj domeny za pomocą filtrów i plików host", "filters_block_toggle_hint": "Możesz skonfigurować reguły blokowania w ustawieniach Filtry.", diff --git a/client/src/__locales/pt-br.json b/client/src/__locales/pt-br.json index 28fd4529..cee9aa64 100644 --- a/client/src/__locales/pt-br.json +++ b/client/src/__locales/pt-br.json @@ -1,6 +1,7 @@ { "client_settings": "Configurações do cliente", "example_upstream_reserved": "um DNS primário <0>para o domínios especificos;", + "example_multiple_upstreams_reserved": "múltiplos upstreams <0>para domínios específicos;", "example_upstream_comment": "um comentário.", "upstream_parallel": "Usar consultas paralelas para acelerar a resolução consultando simultaneamente todos os servidores DNS primário", "parallel_requests": "Solicitações paralelas", @@ -143,7 +144,8 @@ "enforced_save_search": "Forçar pesquisa segura", "number_of_dns_query_to_safe_search": "O número de solicitações de DNS para mecanismos de pesquisa para os quais a pesquisa segura foi aplicada", "average_processing_time": "Tempo médio de processamento", - "processing_time": "Tempo de processamento", + "average_upstream_response_time": "Tempo médio de resposta upstream", + "response_time": "Tempo de resposta", "average_processing_time_hint": "Tempo médio em milissegundos no processamento de uma solicitação DNS", "block_domain_use_filters_and_hosts": "Bloquear domínios usando arquivos de filtros e hosts", "filters_block_toggle_hint": "Você pode configurar as regras de bloqueio nas configurações de Filtros.", diff --git a/client/src/__locales/pt-pt.json b/client/src/__locales/pt-pt.json index c03d9b5c..053d4f6f 100644 --- a/client/src/__locales/pt-pt.json +++ b/client/src/__locales/pt-pt.json @@ -1,6 +1,7 @@ { "client_settings": "Definições do cliente", "example_upstream_reserved": "Podes especificar o DNS primário <0>para domínio(s) especifico(s)", + "example_multiple_upstreams_reserved": "múltiplos upstreams <0>para domínios específicos;", "example_upstream_comment": "um comentário.", "upstream_parallel": "Usar consultas paralelas para acelerar a resolução consultando simultaneamente todos os servidores DNS", "parallel_requests": "Solicitações paralelas", @@ -143,7 +144,8 @@ "enforced_save_search": "Forçar pesquisa segura", "number_of_dns_query_to_safe_search": "O número de solicitações de DNS para motores de busca para os quais a pesquisa segura foi aplicada", "average_processing_time": "Tempo médio de processamento", - "processing_time": "Tempo de processamento", + "average_upstream_response_time": "Tempo médio de resposta upstream", + "response_time": "Tempo de resposta", "average_processing_time_hint": "Tempo médio em milissegundos no processamento de uma solicitação DNS", "block_domain_use_filters_and_hosts": "Bloquear domínios usando ficheiros de filtros e hosts", "filters_block_toggle_hint": "Pode configurar as regras de bloqueio nas configurações de Filtros.", diff --git a/client/src/__locales/ro.json b/client/src/__locales/ro.json index 0387e1af..3d86bc6d 100644 --- a/client/src/__locales/ro.json +++ b/client/src/__locales/ro.json @@ -1,6 +1,7 @@ { "client_settings": "Setări client", "example_upstream_reserved": "un flux în amonte <0>pentru domenii specifice;", + "example_multiple_upstreams_reserved": "mai mulți servere în amonte <0>pentru domenii specifice;", "example_upstream_comment": "un comentariu.", "upstream_parallel": "Folosiți interogări paralele pentru a accelera rezolvarea, interogând simultan toate serverele în amonte.", "parallel_requests": "Solicitări paralele", @@ -143,7 +144,8 @@ "enforced_save_search": "Căutare protejată întărită", "number_of_dns_query_to_safe_search": "Numărul de interogări DNS pe motoarele de căutare pentru care a fost impusă Căutarea Sigură", "average_processing_time": "Timpul mediu de procesare", - "processing_time": "Timp de procesare", + "average_upstream_response_time": "Timpul mediu de răspuns al serverului în amonte", + "response_time": "Timp de răspuns", "average_processing_time_hint": "Timp mediu în milisecunde la procesarea unei cereri DNS", "block_domain_use_filters_and_hosts": "Blocați domenii folosind filtre și fișiere hosts", "filters_block_toggle_hint": "Puteți configura regulile de blocare în setările Filtre.", diff --git a/client/src/__locales/ru.json b/client/src/__locales/ru.json index 8a5cbc9d..9cc1c787 100644 --- a/client/src/__locales/ru.json +++ b/client/src/__locales/ru.json @@ -1,6 +1,7 @@ { "client_settings": "Настройки клиентов", "example_upstream_reserved": "DNS-сервер <0>для конкретных доменов;", + "example_multiple_upstreams_reserved": "несколько DNS-серверов <0>для конкретных доменов;", "example_upstream_comment": "комментарий.", "upstream_parallel": "Использовать параллельные запросы ко всем серверам одновременно для ускорения обработки запроса.", "parallel_requests": "Параллельные запросы", @@ -143,7 +144,8 @@ "enforced_save_search": "Применён безопасный поиск", "number_of_dns_query_to_safe_search": "Количество запросов DNS для поисковых систем, для которых был применён Безопасный поиск", "average_processing_time": "Среднее время обработки запроса", - "processing_time": "Время обработки", + "average_upstream_response_time": "Среднее время ответа upstream-сервера", + "response_time": "Время ответа", "average_processing_time_hint": "Среднее время для обработки запроса DNS в миллисекундах", "block_domain_use_filters_and_hosts": "Блокировать домены с использованием фильтров и файлов hosts", "filters_block_toggle_hint": "Вы можете настроить правила блокировки в «Фильтрах».", diff --git a/client/src/__locales/si-lk.json b/client/src/__locales/si-lk.json index 2ee469ab..4e31770b 100644 --- a/client/src/__locales/si-lk.json +++ b/client/src/__locales/si-lk.json @@ -122,7 +122,6 @@ "enforced_save_search": "ආරක්‍ෂිත සෙවීම බලාත්මක කළ", "number_of_dns_query_to_safe_search": "ආරක්‍ෂිත සෙවීම බලාත්මක කළ සෙවුම් යන්ත්‍ර සඳහා ව.නා.ප. ඉල්ලීම් ගණන", "average_processing_time": "සාමාන්‍ය සැකසුම් කාලය", - "processing_time": "සැකසුම් කාලය", "average_processing_time_hint": "ව.නා.ප. ඉල්ලීමක් සැකසීමේ සාමාන්‍ය කාලය මිලි තත්පර වලින්", "block_domain_use_filters_and_hosts": "පෙරහන් හා සත්කාරක ගොනු භාවිතයෙන් වසම් අවහිර කරන්න", "filters_block_toggle_hint": "ඔබට අවහිර කිරීමේ නීති පෙරහන් තුළ පිහිටුවිය හැකිය.", @@ -647,6 +646,20 @@ "log_and_stats_section_label": "විමසුම් සටහන හා සංඛ්‍යාලේඛන", "ignore_query_log": "විමසුම් සටහනට මෙම අනුග්‍රාහකය යොදන්න එපා", "ignore_statistics": "සංඛ්‍යාලේඛනයට මෙම අනුග්‍රාහකය යොදන්න එපා", + "schedule_invalid_select": "ආරම්භක වේලාව අවසන් වේලාවට කලින් විය යුතුය", + "schedule_select_days": "දවස් තෝරන්න", + "schedule_timezone": "වේලා කලාපයක් තෝරන්න", + "schedule_current_timezone": "වත්මන් වේලා කලාපය: {{value}}", + "schedule_time_all_day": "දවස පුරාම", + "schedule_from": "සිට", + "schedule_to": "දක්වා", + "sunday": "ඉරිදා", + "monday": "සඳුදා", + "tuesday": "අඟහරුවාදා", + "wednesday": "බදාදා", + "thursday": "බ්‍රහස්පතින්දා", + "friday": "සිකුරාදා", + "saturday": "සෙනසුරාදා", "sunday_short": "ඉරිදා", "monday_short": "සඳුදා", "tuesday_short": "අඟහ", diff --git a/client/src/__locales/sk.json b/client/src/__locales/sk.json index c3800be5..53c00d69 100644 --- a/client/src/__locales/sk.json +++ b/client/src/__locales/sk.json @@ -1,6 +1,7 @@ { "client_settings": "Nastavenie klienta", "example_upstream_reserved": "upstream <0>pre konkrétne domény;", + "example_multiple_upstreams_reserved": "viaceré upstreamy pre <0>konkrétne domény;", "example_upstream_comment": "komentár.", "upstream_parallel": "Používať paralelné dopyty na zrýchlenie súčasným dopytovaním všetkých upstream serverov súčasne.", "parallel_requests": "Paralelné dopyty", @@ -143,7 +144,8 @@ "enforced_save_search": "Vynútené bezpečné vyhľadávanie", "number_of_dns_query_to_safe_search": "Počet DNS dopytov na vyhľadávače, pri ktorých bolo vynútené bezpečné vyhľadávanie", "average_processing_time": "Priemerný čas spracovania", - "processing_time": "Doba spracovania", + "average_upstream_response_time": "Priemerný čas odozvy upstreamu", + "response_time": "Čas odozvy", "average_processing_time_hint": "Priemerný čas spracovania DNS dopytu v milisekundách", "block_domain_use_filters_and_hosts": "Blokovať domény pomocou filtrov a zoznamov adries", "filters_block_toggle_hint": "Pravidlá blokovania môžete nastaviť v nastaveniach Filtre.", diff --git a/client/src/__locales/sl.json b/client/src/__locales/sl.json index 1d25aefb..d26f994d 100644 --- a/client/src/__locales/sl.json +++ b/client/src/__locales/sl.json @@ -1,6 +1,7 @@ { "client_settings": "Nastavitve odjemalca", "example_upstream_reserved": "gorvodni <0>za določene domene;", + "example_multiple_upstreams_reserved": "več gorvodnih <0>za določene domene;", "example_upstream_comment": "komentar.", "upstream_parallel": "Uporabite vzporedne zahteve za pospešitev reševanja s hkratnim poizvedovanjem vseh gorvodnih strežnikov.", "parallel_requests": "Vzporedne zahteve", @@ -143,7 +144,8 @@ "enforced_save_search": "Prisilno varno iskanje", "number_of_dns_query_to_safe_search": "Število zahtev DNS za iskalnike, za katere je bilo uveljavljeno varno iskanje", "average_processing_time": "Povprečni čas obdelave", - "processing_time": "Čas obdelave", + "average_upstream_response_time": "Povprečni gorvodni odzivni čas", + "response_time": "Odzivni čas", "average_processing_time_hint": "Povprečni čas v milisekundah pri obdelavi zahteve DNS", "block_domain_use_filters_and_hosts": "Onemogoči domene s filtri in gostiteljskimi datotekami", "filters_block_toggle_hint": "Pravila zaviranja lahko nastavite v nastavitvah Filtri.", diff --git a/client/src/__locales/sr-cs.json b/client/src/__locales/sr-cs.json index 4406104e..2e0aadf6 100644 --- a/client/src/__locales/sr-cs.json +++ b/client/src/__locales/sr-cs.json @@ -1,6 +1,7 @@ { "client_settings": "Postavke klijenta", "example_upstream_reserved": "upstream <0>za određene domene;", + "example_multiple_upstreams_reserved": "nekoliko DNS servera <0>za određene domene;", "example_upstream_comment": "komentar.", "upstream_parallel": "Koristite paralelne upite da biste ubrzali rešavanje tako što ćete istovremeno ispitati sve uzvodne servere.", "parallel_requests": "Paralelni zahtevi", @@ -143,7 +144,8 @@ "enforced_save_search": "Nametni sigurno pretraživanje", "number_of_dns_query_to_safe_search": "Broj DNS zahteva ka pretraživačima za koje je nametnuto sigurno pretraživanje", "average_processing_time": "Prosečno vreme obrade", - "processing_time": "Vreme obrade", + "average_upstream_response_time": "Prosečno vreme odziva upstream-servera", + "response_time": "Vreme odziva", "average_processing_time_hint": "Prosečno vreme u milisekundama za obradu DNS zahteva", "block_domain_use_filters_and_hosts": "Blokiraj domene koristeći filtere i hosts datoteke", "filters_block_toggle_hint": "Možete postaviti pravila blokiranja u Filters postavkama.", diff --git a/client/src/__locales/sv.json b/client/src/__locales/sv.json index 90834a8a..457859f6 100644 --- a/client/src/__locales/sv.json +++ b/client/src/__locales/sv.json @@ -1,7 +1,8 @@ { "client_settings": "Klientinställningar", "example_upstream_reserved": "uppström <0>för en specifik domän;", - "example_upstream_comment": "du kan ange en kommentar.", + "example_multiple_upstreams_reserved": "flera uppströmsservrar <0>för specifika domäner;", + "example_upstream_comment": "en kommentar.", "upstream_parallel": "Använd parallella förfrågningar för att snabba upp dessa genom att fråga alla uppströmsservrar samtidigt.", "parallel_requests": "Parallella förfrågningar", "load_balancing": "Lastbalansering", @@ -143,7 +144,8 @@ "enforced_save_search": "Aktivering av Säker surf", "number_of_dns_query_to_safe_search": "Antalet DNS-förfrågningar mot sökmotorer där Säker surf tvingats", "average_processing_time": "Genomsnittlig processtid", - "processing_time": "Bearbetningstid", + "average_upstream_response_time": "Genomsnittlig svarstid uppströmsserver", + "response_time": "Svarstid", "average_processing_time_hint": "Genomsnittlig processtid i millisekunder för DNS-förfrågning", "block_domain_use_filters_and_hosts": "Blockera domäner med filter- och värdfiler", "filters_block_toggle_hint": "Du kan ställa in egna blockerings regler i Filterinställningar.", diff --git a/client/src/__locales/tr.json b/client/src/__locales/tr.json index 64f61bed..82ad2c70 100644 --- a/client/src/__locales/tr.json +++ b/client/src/__locales/tr.json @@ -1,6 +1,7 @@ { "client_settings": "İstemci ayarları", "example_upstream_reserved": "<0>belirli alan adları için bir üst sunucusu;", + "example_multiple_upstreams_reserved": "<0>belirli alanlar için birden fazla üst kaynaklar;", "example_upstream_comment": "bir yorum.", "upstream_parallel": "Tüm üst sunucuları eş zamanlı sorgulayarak çözümlemeyi hızlandırmak için paralel sorgular kullanın.", "parallel_requests": "Paralel istekler", @@ -143,7 +144,8 @@ "enforced_save_search": "Uygulanan güvenli arama", "number_of_dns_query_to_safe_search": "Güvenli Aramanın uygulandığı arama motorlarına gönderilen DNS isteklerinin sayısı", "average_processing_time": "Ortalama işlem süresi", - "processing_time": "İşlem süresi", + "average_upstream_response_time": "Ortalama üst kaynak yanıt süresi", + "response_time": "Yanıt süresi", "average_processing_time_hint": "Bir DNS isteğinin milisaniye cinsinden ortalama işlem süresi", "block_domain_use_filters_and_hosts": "Filtre ve hosts dosyalarını kullanarak alan adlarını engelle", "filters_block_toggle_hint": "Filtreler ayarlarında engelleme kuralları oluşturabilirsiniz.", @@ -180,7 +182,7 @@ "enabled_save_search_toast": "Güvenli Arama etkinleştirildi", "updated_save_search_toast": "Güvenli Arama ayarları güncellendi", "enabled_table_header": "Etkin", - "name_table_header": "Ad", + "name_table_header": "Adı", "list_url_table_header": "Liste URL'si", "rules_count_table_header": "Kural sayısı", "last_time_updated_table_header": "Son güncelleme zamanı", @@ -435,7 +437,7 @@ "settings_global": "Genel", "settings_custom": "Özel", "table_client": "İstemci", - "table_name": "Ad", + "table_name": "AdAdı", "save_btn": "Kaydet", "client_add": "İstemci Ekle", "client_new": "Yeni İstemci", @@ -449,7 +451,7 @@ "form_enter_id": "Tanımlayıcı girin", "form_add_id": "Tanımlayıcı ekle", "form_client_name": "İstemci ismi girin", - "name": "Ad", + "name": "Adı", "client_global_settings": "Genel ayarları kullan", "client_deleted": "\"{{key}}\" istemcisi başarıyla silindi", "client_added": "\"{{key}}\" istemcisi başarıyla eklendi", diff --git a/client/src/__locales/uk.json b/client/src/__locales/uk.json index 5817278b..1f38d597 100644 --- a/client/src/__locales/uk.json +++ b/client/src/__locales/uk.json @@ -143,7 +143,6 @@ "enforced_save_search": "Примусовий безпечний пошук", "number_of_dns_query_to_safe_search": "Кількість DNS-запитів до пошукових систем, для яких примусово застосований безпечний пошук", "average_processing_time": "Середній час обробки", - "processing_time": "Час обробки", "average_processing_time_hint": "Середній час обробки DNS запиту в мілісекундах", "block_domain_use_filters_and_hosts": "Блокування доменів за допомогою фільтрів та hosts-файлів", "filters_block_toggle_hint": "Ви можете налаштувати правила блокування в розділі Фільтри.", @@ -683,7 +682,7 @@ "disable_notify_for_minutes_plural": "Вимкнення захисту на {{count}} хвилин", "disable_notify_for_hours": "Вимкнення захисту на {{count}} годину", "disable_notify_for_hours_plural": "Вимкнення захисту на {{count}} годин", - "disable_notify_until_tomorrow": "Відключення захисту до завтра", + "disable_notify_until_tomorrow": "Вимкнути захист до завтра", "enable_protection_timer": "Захист буде ввімкнено о {{time}}", "custom_retention_input": "Введіть час в годинах", "custom_rotation_input": "Введіть час в годинах", @@ -701,7 +700,7 @@ "schedule_current_timezone": "Поточний часовий пояс: {{value}}", "schedule_time_all_day": "Увесь день", "schedule_modal_description": "Цей розклад замінить усі наявні розклади на той самий день тижня. Кожен день тижня може мати тільки один період бездіяльності.", - "schedule_modal_time_off": "Блокування сервісів відключена:", + "schedule_modal_time_off": "Вимкнення блокування сервісів:", "schedule_new": "Новий розклад", "schedule_edit": "Редагувати розклад", "schedule_save": "Зберегти розклад", diff --git a/client/src/__locales/vi.json b/client/src/__locales/vi.json index 66d69538..29c49769 100644 --- a/client/src/__locales/vi.json +++ b/client/src/__locales/vi.json @@ -1,6 +1,7 @@ { "client_settings": "Cài đặt thiết bị", "example_upstream_reserved": "ngược dòng <0>cho các miền cụ thể;", + "example_multiple_upstreams_reserved": "nhiều máy chủ thượng nguồn <0>cho các miền cụ thể;", "example_upstream_comment": "một lời bình luận.", "upstream_parallel": "Sử dụng truy vấn song song để tăng tốc độ giải quyết bằng cách truy vấn đồng thời tất cả các máy chủ ngược tuyến", "parallel_requests": "Yêu cầu song song", @@ -143,7 +144,8 @@ "enforced_save_search": "Bắt buộc tìm kiếm an toàn", "number_of_dns_query_to_safe_search": "Số yêu cầu DNS tới công cụ tìm kiếm đã chuyển thành tìm kiếm an toàn", "average_processing_time": "Thời gian xử lý trung bình", - "processing_time": "Thời gian xử lý", + "average_upstream_response_time": "Thời gian phản hồi trung bình từ máy chủ thượng nguồn", + "response_time": "Thời gian đáp ứng", "average_processing_time_hint": "Thời gian trung bình cho một yêu cầu DNS tính bằng mili giây", "block_domain_use_filters_and_hosts": "Chặn tên miền sử dụng các bộ lọc và file hosts", "filters_block_toggle_hint": "Bạn có thể thiết lập quy tắc chặn tại cài đặt Bộ lọc.", diff --git a/client/src/__locales/zh-cn.json b/client/src/__locales/zh-cn.json index 825ad7d2..26a2c3a0 100644 --- a/client/src/__locales/zh-cn.json +++ b/client/src/__locales/zh-cn.json @@ -1,6 +1,7 @@ { "client_settings": "客户端设置", "example_upstream_reserved": "指定为<0>特定域名的上游服务器;", + "example_multiple_upstreams_reserved": "<0>特定域名的多个上游服务器;", "example_upstream_comment": "注释。", "upstream_parallel": "使用并行请求以同时查询所有上游服务器来加快解析速度。", "parallel_requests": "并行请求", @@ -143,7 +144,8 @@ "enforced_save_search": "强制安全搜索", "number_of_dns_query_to_safe_search": "启用强制安全搜索后对搜索引擎的 DNS 请求总数", "average_processing_time": "平均处理时间", - "processing_time": "处理时间", + "average_upstream_response_time": "上游服务器的平均响应时间", + "response_time": "响应时间", "average_processing_time_hint": "处理 DNS 请求的平均时间(毫秒)", "block_domain_use_filters_and_hosts": "使用过滤器和 Hosts 文件以拦截指定域名", "filters_block_toggle_hint": "你可以在 过滤器 设置中添加过滤规则。", diff --git a/client/src/__locales/zh-tw.json b/client/src/__locales/zh-tw.json index 5e7ccb40..26b0ed6c 100644 --- a/client/src/__locales/zh-tw.json +++ b/client/src/__locales/zh-tw.json @@ -1,6 +1,7 @@ { "client_settings": "用戶端設定", "example_upstream_reserved": "<0>供特定的網域之上游;", + "example_multiple_upstreams_reserved": "<0>特定網域的多個上游伺服器;", "example_upstream_comment": "註解。", "upstream_parallel": "透過同時地查詢所有上游的伺服器,使用並行的查詢以加速解析。", "parallel_requests": "並行的請求", @@ -8,9 +9,9 @@ "load_balancing_desc": "每次查詢一個上游伺服器。AdGuard Home 使用它的加權隨機的演算法來選擇伺服器,以便最快的伺服器被更常使用。", "bootstrap_dns": "自我啟動(Bootstrap)DNS 伺服器", "bootstrap_dns_desc": "DNS 伺服器的 IP 位址,用於解析您指定為上游伺服器的 DoH/DoT 解析器的 IP 位址。不允許註釋。", - "fallback_dns_title": "備援 DNS 伺服器", - "fallback_dns_desc": "當上游 DNS 伺服器未回應時使用的備援 DNS 伺服器清單。語法與上面的主要上游欄位相同。", - "fallback_dns_placeholder": "每行輸入一個備援 DNS 伺服器", + "fallback_dns_title": "應變 DNS 伺服器", + "fallback_dns_desc": "當上游 DNS 伺服器未回覆時被使用的應變 DNS 伺服器之清單。此語法與在上面主要上游欄位中的相同。", + "fallback_dns_placeholder": "每行輸入一個應變 DNS 伺服器", "local_ptr_title": "私人反向的 DNS 伺服器", "local_ptr_desc": "AdGuard Home 用於區域指標(PTR)查詢之 DNS 伺服器。這些伺服器被用於解析有關在私人 IP 範圍的位址之區域指標查詢,例如,\"192.168.12.34\",使用反向的 DNS。如果未被設定,AdGuard Home 使用您的作業系統之預設 DNS 解析器的位址。", "local_ptr_default_resolver": "預設下,AdGuard Home 使用以下反向的 DNS 解析器:{{ip}}。", @@ -131,7 +132,7 @@ "top_clients": "熱門用戶端", "no_clients_found": "無已發現之用戶端", "general_statistics": "一般的統計資料", - "top_upstreams": "經常請求的上游伺服器", + "top_upstreams": "熱門上游", "no_upstreams_data_found": "找不到上游伺服器資料", "number_of_dns_query_days": "在最近的 {{count}} 日內已處理的 DNS 查詢之數量", "number_of_dns_query_days_plural": "在最近的 {{count}} 日內已處理的 DNS 查詢之數量", @@ -143,7 +144,8 @@ "enforced_save_search": "已強制執行的安全搜尋", "number_of_dns_query_to_safe_search": "安全搜尋已被強制執行之屬於搜尋引擎的 DNS 請求之數量", "average_processing_time": "平均的處理時間", - "processing_time": "處理時間", + "average_upstream_response_time": "平均的上游回應時間", + "response_time": "回應時間", "average_processing_time_hint": "在處理一項 DNS 請求時以毫秒(ms)計的平均時間", "block_domain_use_filters_and_hosts": "透過過濾器和主機檔案封鎖網域", "filters_block_toggle_hint": "您可在過濾器設定中設置封鎖規則。", @@ -288,7 +290,7 @@ "blocking_ipv4": "封鎖 IPv4", "blocking_ipv6": "封鎖 IPv6", "blocked_response_ttl": "已封鎖的回應之存活時間(TTL)", - "blocked_response_ttl_desc": "指定客戶端應將過濾後的回應存入快取的秒數", + "blocked_response_ttl_desc": "對用戶端應快取受過濾的回應,指定多少秒數", "form_enter_blocked_response_ttl": "請輸入已封鎖回應的存活時間(秒)", "dnscrypt": "DNSCrypt", "dns_over_https": "DNS-over-HTTPS", diff --git a/client/src/components/App/index.css b/client/src/components/App/index.css index 91cd1749..a64cd488 100644 --- a/client/src/components/App/index.css +++ b/client/src/components/App/index.css @@ -118,6 +118,11 @@ body { overflow-y: auto; } +.modal-body--filters { + max-height: 600px; + overflow-y: auto; +} + .modal-body__item:not(:first-child) { padding-top: 1.5rem; } diff --git a/client/src/components/Dashboard/UpstreamAvgTime.js b/client/src/components/Dashboard/UpstreamAvgTime.js index eb198189..bac27931 100644 --- a/client/src/components/Dashboard/UpstreamAvgTime.js +++ b/client/src/components/Dashboard/UpstreamAvgTime.js @@ -38,7 +38,7 @@ const UpstreamAvgTime = ({ subtitle, }) => ( processing_time, + Header: response_time, accessor: 'count', maxWidth: 190, Cell: TimeCell, diff --git a/client/src/components/Filters/Form.js b/client/src/components/Filters/Form.js index 5619580b..ee610b9f 100644 --- a/client/src/components/Filters/Form.js +++ b/client/src/components/Filters/Form.js @@ -28,7 +28,7 @@ const renderIcons = (iconsData) => iconsData.map(({ }) => - + ); @@ -110,7 +110,7 @@ const Form = (props) => { const openAddFiltersModal = () => openModal(MODAL_TYPE.ADD_FILTERS); return
-
+
{modalType === MODAL_TYPE.SELECT_MODAL_TYPE &&