├── .gitattributes ├── .github └── images │ ├── config.png │ ├── logs.png │ └── status.png ├── LICENSE ├── Makefile ├── README.md ├── files ├── luci-menu.d.json ├── luci.adguardhome └── rcp-acl.d.json ├── htdocs ├── config.js ├── logs.js └── status.js └── po ├── ar └── adguardhome.po ├── bg └── adguardhome.po ├── bn └── adguardhome.po ├── ca └── adguardhome.po ├── cs └── adguardhome.po ├── da └── adguardhome.po ├── de └── adguardhome.po ├── el └── adguardhome.po ├── es └── adguardhome.po ├── fi └── adguardhome.po ├── fr └── adguardhome.po ├── he └── adguardhome.po ├── hi └── adguardhome.po ├── hu └── adguardhome.po ├── it └── adguardhome.po ├── ja └── adguardhome.po ├── ko └── adguardhome.po ├── lt └── adguardhome.po ├── mr └── adguardhome.po ├── ms └── adguardhome.po ├── nb └── adguardhome.po ├── nl └── adguardhome.po ├── pl └── adguardhome.po ├── pt └── adguardhome.po ├── ro └── adguardhome.po ├── ru └── adguardhome.po ├── sk └── adguardhome.po ├── sv └── adguardhome.po ├── templates └── adguardhome.pot ├── tr └── adguardhome.po ├── uk └── adguardhome.po ├── vi └── adguardhome.po └── zh └── adguardhome.po /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xptsp/luci-app-adguardhome/0cfce355a254c25b8e8d8b0f24a88a6e5fb2fe51/.github/images/config.png -------------------------------------------------------------------------------- /.github/images/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xptsp/luci-app-adguardhome/0cfce355a254c25b8e8d8b0f24a88a6e5fb2fe51/.github/images/logs.png -------------------------------------------------------------------------------- /.github/images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xptsp/luci-app-adguardhome/0cfce355a254c25b8e8d8b0f24a88a6e5fb2fe51/.github/images/status.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2024- Douglas Orend 2 | # This is free software, licensed under the Apache License, Version 2.0 3 | 4 | include $(TOPDIR)/rules.mk 5 | 6 | PKG_LICENSE:=Apache-2.0 7 | PKG_NAME:=luci-app-adguardhome 8 | PKG_VERSION:=2.2 9 | PKG_RELEASE:=1 10 | PKG_MAINTAINER:=Douglas Orend 11 | 12 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) 13 | 14 | include $(INCLUDE_DIR)/package.mk 15 | 16 | define Package/luci-app-adguardhome 17 | SECTION:=luci 18 | CATEGORY:=LuCI 19 | SUBMENU:=3. Applications 20 | TITLE:=LuCI support for AdguardHome 21 | PKGARCH:=all 22 | DEPENDS:=+adguardhome +luci-base +twin-bcrypt-js +curl 23 | endef 24 | 25 | define Package/luci-app-adguardhome/description 26 | LuCI Support for AdGuardHome 27 | endef 28 | 29 | define Build/Configure 30 | endef 31 | 32 | define Build/Compile 33 | endef 34 | 35 | define Package/luci-app-adguardhome/install 36 | $(INSTALL_DIR) $(1)/www/luci-static/resources/view/adguardhome/ 37 | $(INSTALL_DATA) ./htdocs/*.js $(1)/www/luci-static/resources/view/adguardhome/ 38 | 39 | $(INSTALL_DIR) $(1)/usr/libexec/rpcd/ 40 | $(INSTALL_BIN) ./files/luci.adguardhome $(1)/usr/libexec/rpcd/ 41 | 42 | $(INSTALL_DIR) $(1)/usr/share/luci/menu.d/ 43 | $(INSTALL_DATA) ./files/luci-menu.d.json $(1)/usr/share/luci/menu.d/luci-app-adguardhome.json 44 | 45 | $(INSTALL_DIR) $(1)/usr/share/rpcd/acl.d 46 | $(INSTALL_DATA) ./files/rcp-acl.d.json $(1)/usr/share/rpcd/acl.d/luci-app-adguardhome.json 47 | endef 48 | 49 | $(eval $(call BuildPackage,luci-app-adguardhome)) 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LuCI App AdGuardHome 2 | 3 | **NOTE:** Original Source found for LUCI app [here](https://github.com/openwrt/luci/tree/3253c2644215a1ea8136199044e06ad5e4fd9de9/applications/luci-app-adguardhome) by Duncan Hill (). 4 | 5 | This LuCI app provides basic integration with the [AdGuard Home](https://github.com/AdguardTeam/AdGuardHome) [package](https://openwrt.org/packages/pkgdata/adguardhome) for OpenWrt. Note that the AdGuard Home package installation and configuration requires interaction with the OpenWrt command line; this app does not remove any of that interaction. 6 | 7 | See also: [AdGuard Home @ AdGuard](https://adguard.com/en/adguard-home/overview.html) 8 | 9 | ## Using/installing this app 10 | 11 | First, install the AdGuard Home package - either via the web UI for software package management, or 12 | ``` 13 | opkg install adguardhome 14 | ``` 15 | 16 | Follow the [installation instructions](https://openwrt.org/docs/guide-user/services/dns/adguard-home) for AdGuard Home, and make a note of the username and password for authenticating to the web UI. 17 | 18 | Next, install this package - either via the web UI for software package management, or 19 | ``` 20 | opkg install luci-app-adguardhome 21 | ``` 22 | 23 | This package is unable to automatically determine the username and password (the password is encrypted in AdGuard Home's configuration file), so you'll need to go to `Services > AdGuard Home > Configuration` and provide these credentials. The credentials will be stored **unencrypted** in `/etc/config/adguardhome`. 24 | 25 | With the credentials saved, the `Services > AdGuard Home > Status` page should now work, and show you the general status of AdGuard Home. 26 | 27 | If you go to `Services > AdGuard Home > Logs`, you can see the last 50 log lines from both the supporting script used by this package, and the AdGuard Home software. 28 | 29 | This app provides a link to the AdGuard Home web UI, making it easy to see more detailed statistics, and the query log. 30 | 31 | ## Dependencies 32 | 33 | Dependencies are declared in the Makefile, but are 34 | 35 | * adguardhome, as this app is useless without it 36 | 37 | ## Screenshots 38 | 39 | ### Status Tab 40 | ![Status Tab](https://github.com/xptsp/luci-app-adguardhome/blob/main/.github/images/status.png?raw=true) 41 | 42 | ### Logs Tab 43 | ![General Tab](https://github.com/xptsp/luci-app-adguardhome/blob/main/.github/images/logs.png?raw=true) 44 | 45 | ### Configuration Tab 46 | ![MAC Filter Tab](https://github.com/xptsp/luci-app-adguardhome/blob/main/.github/images/config.png?raw=true) 47 | 48 | ## Package History 49 | 50 | - v1.0 - Initial release 51 | - v2.0 - Freed package from most dependancies except for AdGuardHome. 52 | - v2.0.1 - Added forgotten dependency, plus minor fix in rpcd/luci.adguardhome 53 | - v2.0.2 - Fixed issue in rpcd/luci.adguardhome so it works for older versions of AdGuardHome binary 54 | - v2.1 - Added ability to change AdGuardHome password from LuCI app 55 | 56 | -------------------------------------------------------------------------------- /files/luci-menu.d.json: -------------------------------------------------------------------------------- 1 | { 2 | "admin/services/adguardhome": { 3 | "title": "AdGuard Home", 4 | "action": { 5 | "type": "firstchild" 6 | }, 7 | "depends": { 8 | "acl": [ 9 | "luci-app-adguardhome" 10 | ], 11 | "uci": { 12 | "adguardhome": true 13 | } 14 | } 15 | }, 16 | "admin/services/adguardhome/status": { 17 | "title": "Status", 18 | "order": 1, 19 | "action": { 20 | "type": "view", 21 | "path": "adguardhome/status" 22 | } 23 | }, 24 | "admin/services/adguardhome/logs": { 25 | "title": "Logs", 26 | "order": 11, 27 | "action": { 28 | "type": "view", 29 | "path": "adguardhome/logs" 30 | } 31 | }, 32 | "admin/services/adguardhome/config": { 33 | "title": "Configuration", 34 | "order": 21, 35 | "action": { 36 | "type": "view", 37 | "path": "adguardhome/config" 38 | } 39 | } 40 | } -------------------------------------------------------------------------------- /files/luci.adguardhome: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . /usr/share/libubox/jshn.sh 3 | 4 | ############################################################################################ 5 | # Functions to parse AdGuardHome YAML file: 6 | ############################################################################################ 7 | parse_yaml() { 8 | local prefix=$2 9 | local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034') 10 | sed -ne "s|,$s\]$s\$|]|" \ 11 | -e ":1;s|^\($s\)\($w\)$s:$s\[$s\(.*\)$s,$s\(.*\)$s\]|\1\2: [\3]\n\1 - \4|;t1" \ 12 | -e "s|^\($s\)\($w\)$s:$s\[$s\(.*\)$s\]|\1\2:\n\1 - \3|;p" $1 | \ 13 | sed -ne "s|,$s}$s\$|}|" \ 14 | -e ":1;s|^\($s\)-$s{$s\(.*\)$s,$s\($w\)$s:$s\(.*\)$s}|\1- {\2}\n\1 \3: \4|;t1" \ 15 | -e "s|^\($s\)-$s{$s\(.*\)$s}|\1-\n\1 \2|;p" | \ 16 | sed -ne "s|^\($s\):|\1|" \ 17 | -e "s|^\($s\)-$s[\"']\(.*\)[\"']$s\$|\1$fs$fs\2|p" \ 18 | -e "s|^\($s\)-$s\(.*\)$s\$|\1$fs$fs\2|p" \ 19 | -e "s|^\($s\)\($w\)$s:$s[\"']\(.*\)[\"']$s\$|\1$fs\2$fs\3|p" \ 20 | -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" | \ 21 | awk -F$fs '{ 22 | indent = length($1)/2; 23 | vname[indent] = $2; 24 | for (i in vname) {if (i > indent) {delete vname[i]; idx[i]=0}} 25 | if(length($2)== 0){ vname[indent]= ++idx[indent] }; 26 | if (length($3) > 0) { 27 | vn=""; for (i=0; i /dev/null) 57 | check_if_empty "Username not found in uci adguardhome" ${AGH_USER} || exit 1 58 | AGH_PASS=$(uci get adguardhome.config.web_password 2> /dev/null) 59 | check_if_empty "Password not found in uci adguardhome" ${AGH_PASS} || exit 1 60 | CODE=$(curl --silent -L -k -u ${AGH_USER}:${AGH_PASS} ${PROTO}://${HOST}:${PORT}/control/$1 -o $TFILE -w "%{http_code"}) 61 | if [[ "${CODE}" == "200" ]]; then 62 | cat $TFILE | tr -d '\n' 63 | else 64 | MSG="REST call failed with '$(cat ${TFILE})'. Are the credentials correct?" 65 | log_error "$MSG" 66 | echo "{\"error\":\"$MSG\"}" > ${TFILE} 67 | fi 68 | } 69 | 70 | ############################################################################################ 71 | # Function that groups variables starting with specified string into a single JSON object: 72 | ############################################################################################ 73 | group_vars() { 74 | local LOOK_FOR=${1/_1/} 75 | echo -n "\"$LOOK_FOR\":[" 76 | cat ${TFILE} | grep "${LOOK_FOR}" | while read FOUND; do 77 | sed -i "/${FOUND%=*}/d" ${TFILE} 78 | echo "${FOUND##*=}" 79 | done | sed '$!s/$/,/' | tr -d '\n' 80 | echo -n "]," 81 | } 82 | 83 | ############################################################################################ 84 | # Parse AGH yaml file and determine necessary variables in order to function: 85 | ############################################################################################ 86 | TFILE=/tmp/rpcd-adguardhome-$(date -Ins).tmp 87 | trap 'rm ${TFILE}; exit' EXIT 88 | read_config > ${TFILE} 89 | source ${TFILE} 90 | HOST=${http_address%:*} 91 | [[ "${HOST}" == "0.0.0.0" ]] && HOST=$(uci get system.@system[0].hostname).$(uci get dhcp.@dnsmasq[0].domain) 92 | HOST=$(echo ${HOST} | awk '{print tolower($0)}') 93 | PORT=${http_address##*:} 94 | PROTO="http" 95 | if [[ "${tls_enabled}" == "true" ]]; then 96 | PROTO="https" 97 | HOST=${tls_server_name} 98 | PORT=${tls_port_https} 99 | fi 100 | [[ -z "${http_address}" ]] && http_address=${bind_host}:${bind_port} 101 | 102 | ############################################################################################ 103 | # Decision-making cade: 104 | ############################################################################################ 105 | case "$1" in 106 | list) 107 | echo '{ "get_config": {}, "get_statistics": {}, "get_status": {}, "set_passwd": {"username":"string", "hash":"string"} }' 108 | ;; 109 | call) 110 | case "$2" in 111 | get_config) 112 | # Start the JSON array: 113 | echo -n "{" 114 | # Group any variables starting with "dns_" together: 115 | grep "_1=\"" ${TFILE} | grep dns_ | while read LINE; do group_vars ${LINE%=*}; done 116 | # Return the AGH configuration as a JSON table: 117 | cat ${TFILE} | sed "s|^|\"|g" | sed "s|=\"|\":\"|g" | sed "s|\"$|\",|g" | tr -d '\n' 118 | # Include web url, then close the JSON array: 119 | echo -n "\"bcrypt-tool\":\"$(whereis bcrypt-tool | awk '{print $2}')\"," 120 | echo "\"web_url\":\"${PROTO}://${HOST}:${PORT}\"}" 121 | ;; 122 | 123 | get_statistics) 124 | # Return the AGH statistics as a JSON table: 125 | call_rest_api stats 126 | ;; 127 | 128 | get_status) 129 | # Return the AGH status as a JSON table: 130 | call_rest_api status 131 | ;; 132 | 133 | set_passwd) 134 | # Check if bcrypt-tool is available for use: 135 | check_if_empty "bcrypt-tool is missing." "$(whereis bcrypt-tool)" 136 | # Read and load the argument into JSON array: 137 | read input 138 | json_load "$input" 139 | # Get username and password from JSON array and verify they aren't empty: 140 | json_get_var AGH_USER "username" 141 | check_if_empty "username parameter missing." "${AGH_USER}" || exit 1 142 | json_get_var AGH_HASH "hash" 143 | check_if_empty "hash parameter missing." "${AGH_HASH}" || exit 1 144 | # Change the username in the AGH configuration file: 145 | sed -i "s|\- name: .*|\- name: ${AGH_USER} |" /etc/adguardhome.yaml 146 | # Calculate and replace password hash in the AGH configuration file: 147 | sed -i "s|\password: .*|\password: ${AGH_HASH}|" /etc/adguardhome.yaml 148 | # Restart AdGaurdHome: 149 | service adguardhome restart 150 | # Return success to caller: 151 | echo "{\"success\":true}" 152 | ;; 153 | esac 154 | ;; 155 | esac 156 | -------------------------------------------------------------------------------- /files/rcp-acl.d.json: -------------------------------------------------------------------------------- 1 | { 2 | "luci-app-adguardhome": { 3 | "description": "Grant permissions for the AdGuard Home LuCI app", 4 | "read": { 5 | "ubus": { 6 | "luci.adguardhome": [ 7 | "get_config", 8 | "get_status", 9 | "get_statistics", 10 | "set_passwd", 11 | ] 12 | }, 13 | "uci": [ 14 | "adguardhome" 15 | ], 16 | "file": { 17 | "/sbin/logread": [ 18 | "stat", 19 | "exec" 20 | ], 21 | "/sbin/logread -e AdGuardHome": [ 22 | "exec" 23 | ] 24 | } 25 | }, 26 | "write": { 27 | "uci": [ 28 | "adguardhome" 29 | ] 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /htdocs/config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 'require rpc'; 3 | 'require form'; 4 | 'require view'; 5 | 6 | return view.extend({ 7 | render: function () { 8 | // A basic configuration form; the luci.adguardhome script that 9 | // powers the other UI pages needs a username and password to 10 | // communicate with the AdguardHome REST API. 11 | var s, o; 12 | var m = new form.Map('adguardhome', _('AdGuard Home Configuration'), 13 | _('This application requires the username and password that were configured when you set up AdGuard Home, ' + 14 | 'as the REST API for AdGuard Home is password protected. The password cannot be read from the YAML ' + 15 | 'configuration file for AdGuard Home, as it is encrypted in that store. The credentials supplied here will ' + 16 | 'be stored unencrypted in /etc/config/adguardhome on your device.') 17 | ); 18 | 19 | s = m.section(form.TypedSection, 'adguardhome', _('General settings')); 20 | s.anonymous = true; 21 | 22 | o = s.option(form.Value, 'web_username', _('Username for AdGuard Home'), _('The username you configured when you set up AdGuard Home')); 23 | o.placeholder = 'adguard'; 24 | 25 | o = s.option(form.Value, 'web_password', _('Password for AdGuard Home'), _('The password you configured when you set up AdGuard Home')); 26 | o.password = true; 27 | 28 | var ChangePassword = form.Button.extend({ 29 | set_passwd: rpc.declare({ 30 | object: 'luci.adguardhome', 31 | method: 'set_passwd', 32 | params: [ 'username', 'hash' ], 33 | }), 34 | onclick: function() { 35 | var username = document.getElementById("widget.cbid.adguardhome.config.web_username").value; 36 | var password = document.getElementById("widget.cbid.adguardhome.config.web_password").value; 37 | var hash = TwinBcrypt.hashSync(password); 38 | return Promise.all([ this.set_passwd( username, hash ) ]); 39 | }, 40 | }); 41 | o = s.option(ChangePassword, 'change_password', _('Change Password')); 42 | 43 | var BCryptInclude = form.DummyValue.extend({ 44 | renderWidget: function(section_id, option_index, cfgvalue) { 45 | return E('script', { 'type':'text/javascript', 'src':'/luci-static/resources/view/twin-bcrypt.min.js' }); 46 | } 47 | }); 48 | o = s.option(BCryptInclude, 'misc'); 49 | 50 | return m.render(); 51 | }, 52 | }) 53 | -------------------------------------------------------------------------------- /htdocs/logs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 'require dom'; 3 | 'require fs'; 4 | 'require poll'; 5 | 'require ui'; 6 | 'require view'; 7 | 8 | return view.extend({ 9 | load: function() { 10 | return Promise.all([ 11 | L.resolveDefault(fs.stat('/sbin/logread'), null), 12 | L.resolveDefault(fs.stat('/usr/sbin/logread'), null) 13 | ]).then(function(stat) { 14 | var logger = stat[0] ? stat[0].path : stat[1] ? stat[1].path : null; 15 | 16 | return fs.exec_direct(logger, [ '-e', 'AdGuardHome' ]).catch(function(err) { 17 | ui.addNotification(null, E('p', {}, _('Unable to load log data: ' + err.message))); 18 | return ''; 19 | }); 20 | }); 21 | }, 22 | 23 | render: function(logdata) { 24 | var loglines = logdata.trim().split(/\n/).reverse().slice(0, 50); 25 | 26 | return E([], [ 27 | E('h2', {}, [_('System Log (AdGuard Home)')]), 28 | E('div', {}, [_('Showing last 50 lines')]), 29 | E('div', { 'id': 'content_syslog' }, [ 30 | E('textarea', { 31 | 'id': 'syslog', 32 | 'style': 'font-size:12px', 33 | 'readonly': 'readonly', 34 | 'wrap': 'off', 35 | 'rows': loglines.length + 1 36 | }, [ loglines.join('\n') ]) 37 | ]) 38 | ]); 39 | }, 40 | 41 | handleSave: null, 42 | handleSaveApply: null, 43 | handleReset: null 44 | }); 45 | -------------------------------------------------------------------------------- /htdocs/status.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 'require rpc'; 3 | 'require view'; 4 | 5 | return view.extend({ 6 | load_adguardhome_config: rpc.declare({ 7 | object: 'luci.adguardhome', 8 | method: 'get_config' 9 | }), 10 | load_adguardhome_status: rpc.declare({ 11 | object: 'luci.adguardhome', 12 | method: 'get_status' 13 | }), 14 | load_adguardhome_statistics: rpc.declare({ 15 | object: 'luci.adguardhome', 16 | method: 'get_statistics' 17 | }), 18 | 19 | generic_failure: function(message) { 20 | return E('div', {'class': 'error'}, [_('RPC call failure: '), message]) 21 | }, 22 | render_list: function ( agh_list ) { 23 | var table = E('ul', {}); 24 | for (var i = 0; i < agh_list.length; i++) { 25 | table.appendChild(E('li', {}, agh_list[i])); 26 | } 27 | return table; 28 | }, 29 | render_status_table: function (status, agh_config) { 30 | if (status.error) { 31 | return this.generic_failure(status.error) 32 | } 33 | // Take a hint from the base LuCI module for the Overview page, 34 | // declare the fields and use a loop to build the tabular status view. 35 | // Written out as key/value pairs, but it's just an iterable of elements. 36 | const weburl = agh_config.web_url; 37 | const listen_addresses = L.isObject(status.dns_addresses) ? this.render_list(status.dns_addresses) : _('Not found'); 38 | const bootstrap_dns = L.isObject(agh_config.dns_bootstrap_dns) ? this.render_list(agh_config.dns_bootstrap_dns) : _('Not found'); 39 | const upstream_dns = L.isObject(agh_config.dns_upstream_dns) ? this.render_list(agh_config.dns_upstream_dns) : _('Not found'); 40 | const fields = [ 41 | _('Running'), status.running ? _('Yes') : _('No'), 42 | _('Protection enabled'), status.protection_enabled ? _('Yes') : _('No'), 43 | _('Statistics period (days)'), agh_config.statistics_interval, 44 | _('Web interface'), E('button', { 'class': "cbi-button cbi-button-button" }, E('a', { 'href': weburl, 'target': '_blank' }, weburl)), 45 | _('DNS listen port'), status.dns_port, 46 | _('DNS listen addresses'), listen_addresses, 47 | _('Bootstrap DNS addresses'), bootstrap_dns, 48 | _('Upstream DNS addresses'), upstream_dns, 49 | _('Version'), status.version, 50 | ]; 51 | 52 | var table = E('table', { 'class': 'table', 'id': 'status' }); 53 | for (var i = 0; i < fields.length; i += 2) { 54 | table.appendChild(E('tr', { 'class': 'tr' }, [ 55 | E('td', { 'class': 'td left', 'width': '33%', 'vertical-align': 'text-top' }, [fields[i]]), 56 | E('td', { 'class': 'td left' }, [(fields[i + 1] != null) ? fields[i + 1] : _('Not found')]) 57 | ])); 58 | } 59 | return table; 60 | }, 61 | render_statistics_table: function (statistics) { 62 | // High level statistics 63 | if (statistics.error) { 64 | return this.generic_failure(statistics.error) 65 | } 66 | const fields = [ 67 | _('DNS queries'), statistics.num_dns_queries, 68 | _('DNS blocks'), statistics.num_blocked_filtering, 69 | _('DNS replacements (safesearch)'), statistics.num_replaced_safesearch, 70 | _('DNS replacements (malware/phishing)'), statistics.num_replaced_safebrowsing, 71 | _('Average processing time (seconds)'), statistics.avg_processing_time, 72 | ]; 73 | 74 | var table = E('table', { 'class': 'table', 'id': 'statistics' }); 75 | for (var i = 0; i < fields.length; i += 2) { 76 | table.appendChild( 77 | E('tr', { 'class': 'tr' }, [ 78 | E('td', { 'class': 'td left', 'width': '33%' }, [fields[i]]), 79 | E('td', { 'class': 'td left' }, [(fields[i + 1] != null) ? fields[i + 1] : _('Not found')]) 80 | ])); 81 | } 82 | return table; 83 | }, 84 | render_top_table: function(table_id, objects) { 85 | var table = E('table', { 'class': 'table', 'id': table_id }); 86 | for (var i = 0; i < objects.length; i++) { 87 | table.appendChild( 88 | E('tr', { 'class': 'tr' }, [ 89 | E('td', { 'class': 'td left', 'width': '33%' }, Object.keys(objects[i])[0]), 90 | E('td', { 'class': 'td left' }, Object.values(objects[i])[0]) 91 | ]) 92 | ); 93 | } 94 | return table; 95 | }, 96 | render_top_queries_table: function (statistics) { 97 | // Top 5 queried domains table view 98 | if (statistics.error) { 99 | return this.generic_failure(statistics.error) 100 | } 101 | if (typeof statistics.top_queried_domains === 'undefined') { return ""; } 102 | const top_queries = statistics.top_queried_domains.slice(0, 5); 103 | return this.render_top_table('top_queries', top_queries) 104 | }, 105 | render_top_blocked_table: function (statistics) { 106 | // Top 5 blocked domains table view 107 | if (statistics.error) { 108 | return this.generic_failure(statistics.error) 109 | } 110 | if (typeof statistics.top_blocked_domains === 'undefined') { return ""; } 111 | const top_blocked = statistics.top_blocked_domains.slice(0, 5); 112 | return this.render_top_table('top_blocked', top_blocked) 113 | }, 114 | // Core LuCI functions from here on. 115 | load: function () { 116 | return Promise.all([ 117 | this.load_adguardhome_status(), 118 | this.load_adguardhome_statistics(), 119 | this.load_adguardhome_config() 120 | ]); 121 | }, 122 | render: function (data) { 123 | // data[0] should be load_adguardhome_status() result 124 | var status = data[0] || {}; 125 | // data[1] should be load_adguardhome_statistics() result 126 | var statistics = data[1] || {}; 127 | // data[2] should be load_adguardhome_config() result 128 | var agh_config = data[2] || {}; 129 | 130 | // status.auth_error is only filled in when the config fetch failed 131 | // to get the credentials. That stops all activity, since the user must 132 | // first configure the username and password. Don't even bother trying 133 | // to make REST API calls without credentials. 134 | if (status.auth_error) { 135 | return E('div', { 'class': 'cbi-map', 'id': 'map' }, [ 136 | E('div', { 'class': 'cbi-section' }, [ 137 | E('div', { 'class': 'left' }, [ 138 | E('h2', _('AdGuard Home Status - Error')), 139 | E('div', { 'class': 'error' }, status.auth_error), 140 | E('div', { 'class': 'info' }, _('Please open the Configuration section, and provide the credentials.')) 141 | ]) 142 | ]), 143 | ]); 144 | } 145 | 146 | // Render all the status tables as one big block. 147 | return E('div', { 'class': 'cbi-map', 'id': 'map' }, [ 148 | E('div', { 'class': 'cbi-section' }, [ 149 | E('div', { 'class': 'left' }, [ 150 | E('h2', _('AdGuard Home Status')), 151 | this.render_status_table(status, agh_config) 152 | ]), 153 | E('div', { 'class': 'left' }, [ 154 | E('h3', _('AdGuard Home Statistics')), 155 | this.render_statistics_table(statistics) 156 | ]), 157 | E('div', { 'class': 'left' }, [ 158 | E('h3', _('Top Queried Domains')), 159 | this.render_top_queries_table(statistics) 160 | ]), 161 | E('div', { 'class': 'left' }, [ 162 | E('h3', _('Top Blocked Domains')), 163 | this.render_top_blocked_table(statistics) 164 | ]) 165 | ]), 166 | ]); 167 | }, 168 | handleSave: null, 169 | handleSaveApply: null, 170 | handleReset: null 171 | }) 172 | -------------------------------------------------------------------------------- /po/ar/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: ar\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/bg/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: bg\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/bn/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: bn\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/ca/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: ca\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/cs/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: cs\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/da/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: da\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/de/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: de\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/el/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: el\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/es/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: es\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/fi/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: fi\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/fr/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: fr\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/he/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: he\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/hi/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: hi\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/hu/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: hu\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/it/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: it\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/ja/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: ja\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=1; plural=0;\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/ko/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: ko\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=1; plural=0;\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/mr/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: mr\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/ms/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: ms\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /po/nb/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: nb\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/nl/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: nl\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/pt/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: pt\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/sk/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: sk\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/sv/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: sv\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/templates/adguardhome.pot: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Content-Type: text/plain; charset=UTF-8" 3 | 4 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 5 | msgid "AdGuard Home" 6 | msgstr "" 7 | 8 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 9 | msgid "AdGuard Home Configuration" 10 | msgstr "" 11 | 12 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 13 | msgid "AdGuard Home Statistics" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 17 | msgid "AdGuard Home Status" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 21 | msgid "AdGuard Home Status - Error" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 25 | msgid "Average processing time (seconds)" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 29 | msgid "Bootstrap DNS addresses" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 33 | msgid "Configuration" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 37 | msgid "DNS blocks" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 41 | msgid "DNS listen addresses" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 45 | msgid "DNS listen port" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 49 | msgid "DNS queries" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 53 | msgid "DNS replacements (malware/phishing)" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 57 | msgid "DNS replacements (safesearch)" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 61 | msgid "General settings" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 65 | msgid "Grant permissions for the AdGuard Home LuCI app" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 69 | msgid "Logs" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 73 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 74 | msgid "No" 75 | msgstr "" 76 | 77 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 78 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 82 | msgid "Not found" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 86 | msgid "Password for AdGuard Home" 87 | msgstr "" 88 | 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 90 | msgid "Please open the Configuration section, and provide the credentials." 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 94 | msgid "Protection enabled" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 98 | msgid "RPC call failure:" 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 102 | msgid "Running" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 106 | msgid "Showing last 50 lines" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 110 | msgid "Statistics period (days)" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 114 | msgid "Status" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 118 | msgid "System Log (AdGuard Home)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 122 | msgid "The password you configured when you set up AdGuard Home" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 126 | msgid "The username you configured when you set up AdGuard Home" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 130 | msgid "" 131 | "This application requires the username and password that were configured " 132 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 133 | "protected. The password cannot be read from the YAML configuration file for " 134 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 135 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 136 | msgstr "" 137 | 138 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 139 | msgid "Top Blocked Domains" 140 | msgstr "" 141 | 142 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 143 | msgid "Top Queried Domains" 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 147 | msgid "Unable to load log data:" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 151 | msgid "Upstream DNS addresses" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 155 | msgid "Username for AdGuard Home" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 159 | msgid "Version" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 163 | msgid "Web interface" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 167 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 168 | msgid "Yes" 169 | msgstr "" 170 | -------------------------------------------------------------------------------- /po/tr/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: tr\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/vi/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: vi\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=1; plural=0;\n" 11 | 12 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 13 | msgid "AdGuard Home" 14 | msgstr "" 15 | 16 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 17 | msgid "AdGuard Home Configuration" 18 | msgstr "" 19 | 20 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 21 | msgid "AdGuard Home Statistics" 22 | msgstr "" 23 | 24 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 25 | msgid "AdGuard Home Status" 26 | msgstr "" 27 | 28 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 29 | msgid "AdGuard Home Status - Error" 30 | msgstr "" 31 | 32 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 33 | msgid "Average processing time (seconds)" 34 | msgstr "" 35 | 36 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 37 | msgid "Bootstrap DNS addresses" 38 | msgstr "" 39 | 40 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 41 | msgid "Configuration" 42 | msgstr "" 43 | 44 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 45 | msgid "DNS blocks" 46 | msgstr "" 47 | 48 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 49 | msgid "DNS listen addresses" 50 | msgstr "" 51 | 52 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 53 | msgid "DNS listen port" 54 | msgstr "" 55 | 56 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 57 | msgid "DNS queries" 58 | msgstr "" 59 | 60 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 61 | msgid "DNS replacements (malware/phishing)" 62 | msgstr "" 63 | 64 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 65 | msgid "DNS replacements (safesearch)" 66 | msgstr "" 67 | 68 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 69 | msgid "General settings" 70 | msgstr "" 71 | 72 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 73 | msgid "Grant permissions for the AdGuard Home LuCI app" 74 | msgstr "" 75 | 76 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 77 | msgid "Logs" 78 | msgstr "" 79 | 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 81 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 82 | msgid "No" 83 | msgstr "" 84 | 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 89 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 90 | msgid "Not found" 91 | msgstr "" 92 | 93 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 94 | msgid "Password for AdGuard Home" 95 | msgstr "" 96 | 97 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 98 | msgid "Please open the Configuration section, and provide the credentials." 99 | msgstr "" 100 | 101 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 102 | msgid "Protection enabled" 103 | msgstr "" 104 | 105 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 106 | msgid "RPC call failure:" 107 | msgstr "" 108 | 109 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 110 | msgid "Running" 111 | msgstr "" 112 | 113 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 114 | msgid "Showing last 50 lines" 115 | msgstr "" 116 | 117 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 118 | msgid "Statistics period (days)" 119 | msgstr "" 120 | 121 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 122 | msgid "Status" 123 | msgstr "" 124 | 125 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 126 | msgid "System Log (AdGuard Home)" 127 | msgstr "" 128 | 129 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 130 | msgid "The password you configured when you set up AdGuard Home" 131 | msgstr "" 132 | 133 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 134 | msgid "The username you configured when you set up AdGuard Home" 135 | msgstr "" 136 | 137 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 138 | msgid "" 139 | "This application requires the username and password that were configured " 140 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 141 | "protected. The password cannot be read from the YAML configuration file for " 142 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 143 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 144 | msgstr "" 145 | 146 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 147 | msgid "Top Blocked Domains" 148 | msgstr "" 149 | 150 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 151 | msgid "Top Queried Domains" 152 | msgstr "" 153 | 154 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 155 | msgid "Unable to load log data:" 156 | msgstr "" 157 | 158 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 159 | msgid "Upstream DNS addresses" 160 | msgstr "" 161 | 162 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 163 | msgid "Username for AdGuard Home" 164 | msgstr "" 165 | 166 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 167 | msgid "Version" 168 | msgstr "" 169 | 170 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 171 | msgid "Web interface" 172 | msgstr "" 173 | 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 175 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 176 | msgid "Yes" 177 | msgstr "" 178 | -------------------------------------------------------------------------------- /po/zh/adguardhome.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Last-Translator: Automatically generated\n" 6 | "Language-Team: none\n" 7 | "Language: zh\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | 11 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:3 12 | msgid "AdGuard Home" 13 | msgstr "" 14 | 15 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:13 16 | msgid "AdGuard Home Configuration" 17 | msgstr "" 18 | 19 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:150 20 | msgid "AdGuard Home Statistics" 21 | msgstr "" 22 | 23 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:146 24 | msgid "AdGuard Home Status" 25 | msgstr "" 26 | 27 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:134 28 | msgid "AdGuard Home Status - Error" 29 | msgstr "" 30 | 31 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:69 32 | msgid "Average processing time (seconds)" 33 | msgstr "" 34 | 35 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:45 36 | msgid "Bootstrap DNS addresses" 37 | msgstr "" 38 | 39 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:33 40 | msgid "Configuration" 41 | msgstr "" 42 | 43 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:66 44 | msgid "DNS blocks" 45 | msgstr "" 46 | 47 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:44 48 | msgid "DNS listen addresses" 49 | msgstr "" 50 | 51 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:43 52 | msgid "DNS listen port" 53 | msgstr "" 54 | 55 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:65 56 | msgid "DNS queries" 57 | msgstr "" 58 | 59 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:68 60 | msgid "DNS replacements (malware/phishing)" 61 | msgstr "" 62 | 63 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:67 64 | msgid "DNS replacements (safesearch)" 65 | msgstr "" 66 | 67 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:22 68 | msgid "General settings" 69 | msgstr "" 70 | 71 | #: applications/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json:3 72 | msgid "Grant permissions for the AdGuard Home LuCI app" 73 | msgstr "" 74 | 75 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:25 76 | msgid "Logs" 77 | msgstr "" 78 | 79 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 80 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 81 | msgid "No" 82 | msgstr "" 83 | 84 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:35 85 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:36 86 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:37 87 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:54 88 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:77 89 | msgid "Not found" 90 | msgstr "" 91 | 92 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:35 93 | msgid "Password for AdGuard Home" 94 | msgstr "" 95 | 96 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:136 97 | msgid "Please open the Configuration section, and provide the credentials." 98 | msgstr "" 99 | 100 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 101 | msgid "Protection enabled" 102 | msgstr "" 103 | 104 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:21 105 | msgid "RPC call failure:" 106 | msgstr "" 107 | 108 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 109 | msgid "Running" 110 | msgstr "" 111 | 112 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:27 113 | msgid "Showing last 50 lines" 114 | msgstr "" 115 | 116 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:41 117 | msgid "Statistics period (days)" 118 | msgstr "" 119 | 120 | #: applications/luci-app-adguardhome/root/usr/share/luci/menu.d/luci-app-adguardhome.json:17 121 | msgid "Status" 122 | msgstr "" 123 | 124 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:26 125 | msgid "System Log (AdGuard Home)" 126 | msgstr "" 127 | 128 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:36 129 | msgid "The password you configured when you set up AdGuard Home" 130 | msgstr "" 131 | 132 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:29 133 | msgid "The username you configured when you set up AdGuard Home" 134 | msgstr "" 135 | 136 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:14 137 | msgid "" 138 | "This application requires the username and password that were configured " 139 | "when you set up AdGuard Home, as the REST API for AdGuard Home is password " 140 | "protected. The password cannot be read from the YAML configuration file for " 141 | "AdGuard Home, as it is encrypted in that store. The credentials supplied " 142 | "here will be stored unencrypted in /etc/config/adguardhome on your device." 143 | msgstr "" 144 | 145 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:158 146 | msgid "Top Blocked Domains" 147 | msgstr "" 148 | 149 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:154 150 | msgid "Top Queried Domains" 151 | msgstr "" 152 | 153 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/logs.js:16 154 | msgid "Unable to load log data:" 155 | msgstr "" 156 | 157 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:46 158 | msgid "Upstream DNS addresses" 159 | msgstr "" 160 | 161 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/config.js:28 162 | msgid "Username for AdGuard Home" 163 | msgstr "" 164 | 165 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:47 166 | msgid "Version" 167 | msgstr "" 168 | 169 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:42 170 | msgid "Web interface" 171 | msgstr "" 172 | 173 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:39 174 | #: applications/luci-app-adguardhome/htdocs/luci-static/resources/view/adguardhome/status.js:40 175 | msgid "Yes" 176 | msgstr "" 177 | --------------------------------------------------------------------------------